

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


/*H1
Min      Std      Max
25px              48px*/
h1 {
    
    font-size: clamp(1.5625rem, 1.2887rem + 1.369vw, 3rem);
    }


/*H2
Min      Std      Max
20px              38px*/
h2 {
    font-size: clamp(0.975rem, 0.394rem + 2.4051vw, 3.25rem);
    margin-bottom: 10px;
    
}

h2.heading {
  font-size: clamp(1.2rem, 0.494rem + 2.4051vw, 3.25rem);
  margin-bottom: 10px;
  
}

/*H3
Min      Std      Max
18px              30px */
h3 {
    font-size: clamp(0.875rem, 0.5459rem + 1.6456vw, 2.5rem);
    margin-bottom: 10px;
}


/*H4
Min      Std      Max
18px              26px*/
h4 {
    font-size: clamp(0.875rem, 0.5965rem + 1.3924vw, 2.25rem);
    margin-bottom: 10px;
}



/*H5
Min      Std      Max
17px              22px*/
h5 {
    font-size: clamp(0.875rem, 0.6725rem + 1.0127vw, 1.875rem);
    /* margin-bottom: 10px; */
}


/*P 
Min      Std      Max 
16px              20px*/
p {
    
    font-size: clamp(0.875rem, 0.7991rem + 0.3797vw, 1.25rem);
    margin-bottom: 8px;
    font-weight: 200;
}

div.container {
  text-align: center;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 300;
}

ul.myUL {
  display: inline-block;
  text-align: left;
}


.main-title {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }

  .white {
    color: white;
  }

/* todo button styles //////// */

.button {
    background-color: #04AA6D; /* Green */
    border: none;
    color: white;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
  }

  .button4 {background-color: #272425; color: white;
    border: 3px solid white; } 
    
    .button4:hover {
        /* box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19); */
        background-color: #0E5E9D;
      }

      /*todo  stripe on text box border left */
      .vl {
        border-left: 6px solid #2E75B6;
        height: auto;
        float:left;
      }

        /*todo  stripe on text box border right */
        .vlr {
        border-right: 6px solid #2E75B6;
        height: auto;
        float:right;
      }

    


      /* todo back to top */
      .cd-top {
        display: inline-block;
        height: 40px;
        width: 40px;
        position: fixed;
        bottom: 40px;
        right: 10px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
        /* image replacement properties */
        overflow: hidden;
        text-indent: 100%;
        white-space: nowrap;
        background: #0E5E9D url("../images/cd-top-arrow.svg") no-repeat center 50%;
        visibility: hidden;
        opacity: 0;
        -webkit-transition: opacity .3s 0s, visibility 0s .3s;
        -moz-transition: opacity .3s 0s, visibility 0s .3s;
        transition: opacity .3s 0s, visibility 0s .3s;
      }
      .cd-top.cd-is-visible, .cd-top.cd-fade-out, .no-touch .cd-top:hover {
        -webkit-transition: opacity .3s 0s, visibility 0s 0s;
        -moz-transition: opacity .3s 0s, visibility 0s 0s;
        transition: opacity .3s 0s, visibility 0s 0s;
      }
      .cd-top.cd-is-visible {
        /* the button becomes visible */
        visibility: visible;
        opacity: 1;
      }
      .cd-top.cd-fade-out {
        /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
        opacity: .5;
      }
      .no-touch .cd-top:hover {
        background-color: #F29E92;
        opacity: 1;
      }
      @media only screen and (min-width: 768px) {
        .cd-top {
          right: 20px;
          bottom: 20px;
        }
      }
      @media only screen and (min-width: 1024px) {
        .cd-top {
          height: 60px;
          width: 60px;
          right: 30px;
          bottom: 30px;
        }
      }