body {
    margin:0;
}


/* Image Transform Effect */
.img-hover-zoom--blur {
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-align: center;
}

.img-hover-zoom--blur img {   
    height: 100vh;
    width:100%;
    transition: transform 2s, filter 2s ease-in-out;
    filter: blur(2px);
    transform: scale(1.3);
}
  
/* ------------------------ */

.img-container {
    position: relative;
    z-index: 20;
}
  /* Landing Text */
.img-container .landing-page-text {
    position:absolute;
    text-align:center;
    max-width: 100%;
    bottom:0%;
    left:50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, .35);
    padding-bottom: 1%;
    padding-top: 0%;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 1.5s linear;
}
  
  
.img-container .landing-page-text .text-line1 {
    font-family: 'Roboto Slab', serif;
    font-size: 30px;
    font-weight: 200;
    font-stretch: 100%;
    color:rgb(255, 255, 255, 1);
    line-height: 1;
    letter-spacing: 2px;
    margin: 10px 0 15px 0;
}
  
.img-container .landing-page-text .text-line2 {
    font-family: 'Roboto', sans-serif;
    font-size: 35px;
    font-weight: 400;
    font-stretch: 100%;
    color: rgb(255, 255, 255, 1);
    line-height: 1;
    letter-spacing: 2px;
    margin: 15px 0 0 0;
}
  
.img-container .landing-page-text .text-line3 {
    font-family: 'Roboto', sans-serif;
    font-size: 35px;
    font-weight: 400;
    font-stretch: 100%;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 2px;
    margin: 0 0 5px 0;
}
  
.img-container .landing-page-text .text-line4 {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 100;
    font-stretch: 100%;
    color: white;
    line-height: 1;
    margin: 5px 0 5px 0;
}
.img-container .landing-page-text .text-line5 {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 100;
    font-stretch: 100%;
    color: white;
    line-height: 1;
    margin: 5px 0 15px 0;
}
   

button {
    padding: 1.3em 3em;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 500;
    background-color: #61993b;
    color: #fff;
    border: none;
    border-radius: 45px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease 0s;
    cursor: pointer;
    outline: none;
    margin-bottom: 5px;
  }

  
  
  button:hover {
    color: #000000;
    background-color: #ffffff;
    box-shadow: 0px 15px 20px rgba(97, 153, 59, 0.4);
    transform: translateY(-7px);
  }
  
  button:active {
    transform: translateY(-1px);
  }

/* Modal Classes */
/* -------------------------- */
/* CLASSES TO MAKE MODAL WORK */
.hidden {
  display: none;
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: justify;
  background-color: whitesmoke;
  padding: 0;
  box-shadow: 5px 5px 2px rgba(0, 0, 0, 0.3);
  z-index: 30;
}

.modal-header {
    position: relative;
}
.modal-header img {
    object-fit: cover;
    width: 100%;
    height:100px;
    display: block;
}

.disclaimer-heading {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 500;
  color: white;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  margin: 0;
  text-shadow: 1px 1px 2px #333333;
}

.modal-body {
    position: relative;
}

.disclaimer-text {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight:300;
  margin: 0;
  padding: 1%;
}


.modal-footer {
    position: relative;
    /*background-color: rgb(97,153,59,1);*/
    background-color: white;
}
.modal-footer img {
    object-fit: cover;
    width: 100%;
    height:90px;
    display: block;
    object-position: left bottom;
}

.modal-footer span {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

.material-symbols-outlined {
  font-variation-settings:
  'FILL' 1,
  'wght' 700,
  'GRAD' 0,
  'opsz' 48;
  color: white;
}

span.circle {
    display: inline-block;
    border-radius: 50px;
    box-shadow: 0 0 5px whitesmoke;
    padding: 15px 15px;
    cursor: pointer;
}



@media screen and (min-width:320px) and (max-width:  1000px) {
    .modal {
        position: absolute;
        top: 5%;
        width: 85%;
        transform: translate(-50%, 0%);
        text-align: justify;
        background-color: white;
        padding:0;
        border-radius: 5px;
        box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
        z-index: 30;
    }

      /*button {
        margin-bottom: 25px;
      }*/
    .img-container .landing-page-text {
        padding-bottom: 40px;
        padding-top:5px;
    }
}


@media screen and (max-width:319px) {
    .modal {
        position: absolute;
        top: 5%;
        width: 90%;
        transform: translate(-50%, 0%);
        text-align: justify;
        background-color: white;
        padding: 1% 1% 1% 1%;
        border-radius: 5px;
        box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
        z-index: 30;
      }
}

