@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
html, body{
    margin: 0;
    padding: 0 !important;
    font-family: 'Poppins';
    font-weight: normal;
    font-style: normal;
    font-size: 16px;
    overflow-x: hidden !important;
}
a:hover {
  color: #000000;
}
#section-ads {
  padding: 30px 0;
}
:root{
  --primaryColor: #24B24B;
  --secondaryColor: #F0F1FC;
}
/* Common */
span{
  color: var(--primaryColor);
}
/* Start as hidden */
fieldset{
  display: none;
}
.active{
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
/* NAV */
.nav{
  padding: 30px 0 35px;
}

/* Section 1 */
.section1{
  padding: 25px 0 0;
  background: url(/img/section1_bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom; 
}
.section1 h1{
  font-weight: 700;
  font-size: 40px;
}

/* Custom select */  
.dropdown {
  width: 100%; 
  font-weight: 300; 
  border: 1px solid #999; 
  border-radius: 8px;
}  
.dropdown__select{
  box-shadow: 0 0 15px #0000007a;
}
.dropdown__filter-selected.option-selected {
    font-weight: 700;
    color: var(--primaryColor); 
}

.dropdown__switch{display:none!important;}

.dropdown__switch:checked+.dropdown__options-filter .dropdown__select {
  transform: scaleY(1);
  opacity: 1;
} 
.dropdown__switch:checked+.dropdown__options-filter .dropdown__filter:after {
  transform: rotate(-135deg);
} 
.dropdown__options-filter {
  width: 100%;
  cursor: pointer;
} 
.dropdown__filter {
  list-style: none;
  justify-content: center;
  position: relative;
  display: flex;
  padding: 12px 0;
  color: #595959;
  background-color: #fff;
    background-image: url('/img/icons/chevronDown.svg');
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: 95%;
  border-radius: 18px;
  font-size: 14px;
  transition: 0.3s;
  margin: 0;
} 
.dropdown__filter:focus {
  outline: none;
}  
.dropdown__select {
  position: absolute;
  top: 100%;
  padding: 0;
  left: 0;
  width: 100%;
  margin-top: 5px;
  overflow: hidden;
  transform: scaleY(0);
  transform-origin: top;
  border-radius: 18px;
  opacity: 0;
  transition: 0.2s ease-in-out;
  list-style: none;
  z-index: 99;
} 
.dropdown__select-option {
  padding: 20px;
  background-color: #fff;
  color: #595959;
  border-bottom: 1px solid #e9ecef;
  transition: 0.3s;
} 
.dropdown__select-option:last-of-type {
  border-bottom: 0;
} 
.dropdown__select-option:hover {
  background-color: var(--primaryColor);
  color: #fff;
  font-weight: 700;
}
/* Form */
#contactform{
  display: flex;
  justify-content: center;
}
.forms-wrapper{
  background-color: #fff;
  padding: 40px 0 35px;
  border-radius: 30px;
  box-shadow: 0px 12px 6px 0px rgba(59, 67, 147, 0.15);
}
fieldset input[type="text"]{
  width: 100%;
  padding: 5px 10px;
  border-radius: 5px;
  border: 1px solid #999;
}
fieldset input[type="text"]:focus-visible{
  outline: 1px solid var(--primaryColor);
}
fieldset h4{
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}
fieldset button{
  width: 100%;
  padding: 10px 0;
  background-color: var(--primaryColor);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  text-transform: uppercase;
  margin-top: 25px;
  transition: all 0.6s ease;
}
fieldset button:hover {
  transform: scale(1.04);
}
/* General pop-up styles */
.popup {
  display: none;
  /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/img/popUp_BG.png'); 
  background-size: cover; 
  background-position: top; 
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.popup img{
    max-width: 250px;
}
#adLogo{
    width: 150px;
    margin-top: 20px;
}
/* Pop-up content box */
.popup-content {
  background-color: white; 
  width: 90%;
  max-width: 500px;
  border-radius: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 40px;
}
 
.close-btn:hover {
  color: #000;
}
.form-title{
  background-color: var(--primaryColor);
  color: #fff;
  padding: 20px;
  border-radius: 30px 30px 0 0;
  font-size: 20px;

  font-weight: 700;
}
#popup input{
  padding: 10px 15px;
  font-size: 14px;
  border-radius: 10px;
  border: 2px solid var(--secondaryColor);
}
#popup h5{ 
  margin: 25px auto 25px;
  font-size: 18px;
  font-weight: 400;
  max-width: 400px;
}
.input-block label{
  text-align: center;
}
.input-block{
  max-width: 400px;
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 0 auto 10px;
}
#popup button {
  width: 100%;
  max-width: 400px;
  border: none;
  outline: none;
  font-weight: 700;
  background-color: var(--primaryColor);
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px auto 0;
  color: #fff;
  padding: 10px;
  gap: 10px;
  border-radius: 15px;
  transition: all 0.6s ease;
}
#popup button:hover {
  transform: scale(1.04);
}
label.error{
  color: red;
  font-size: 12px;
  text-align: center;
  width: 100%;
  margin: 5px auto 0 auto;
}
/* Section 2 */
.section2{
  padding: 70px 0 50px;
}
.section2 h1{
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 35px;
}
.section2 ul{
  list-style: none;
}
.section2 img{
  object-fit: contain;
}
.section2 li{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 10px 0 0;
  color: #999;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
}
.section2 li span{
  display: flex;
  height: 40px;
  justify-content: center;
  align-items: center;
  color: #fff;
  width: 40px;
  margin-right: 15px;
  background-color: var(--primaryColor);
  border-radius: 100px;
  font-size: 30px;
}
.section2 .current{
    box-shadow: -5px 0px 30px 5px #35b24b33;
    border-radius: 30px;
    font-weight: 700;
    color: var(--primaryColor);
}
.section2 button{
  margin-top: 35px;
  font-size: 20px;
  background-color: var(--primaryColor);
  font-weight: 600;
  color: #fff;
  padding: 10px 5px;
  width: 100%;
  border: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
  text-transform: uppercase;
  border-radius: 10px;
  max-width: 180px;
  transition: all 0.6s ease
} 
.section2 button:hover {
  transform: scale(1.04);
}
/*Term animation */
.termContainer {
  width: 100%;
  font-size: 12px;
  color: #000;
  margin-top: 5px;
  cursor: pointer;
}

.termContainer a {
  color: #000;
}

.termContainer input {
  display: none;
}

.termContainer a:hover {
  color: var(--primaryColor) !important;
}

.termContainer svg {
  overflow: visible;
  max-height: 15px;
  max-width: 15px;
  margin-right: 5px;
  margin-top: 1px;
  vertical-align: baseline;
  translate: 0 2px;
}
.path {
  fill: none;
  stroke: var(--primaryColor);
  stroke-width: 5px;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dasharray 0.5s ease, stroke-dashoffset 0.5s ease;
  stroke-dasharray: 241 9999999;
  stroke-dashoffset: 0;
}
.termContainer input:checked~svg .path {
  stroke-dasharray: 70.5096664428711 9999999;
  stroke-dashoffset: -262.2723388671875;
}
/* message */
.message-page {
  background-image: url('/img/popUp_BG.png'); 
  background-size: cover; 
  background-position: center;
  display: flex; 
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 40px 0;
}
.message-box {
  background-color: #fff;
  padding: 20px 0 45px 0;
  border-radius: 30px;
  box-shadow: 0px 12px 6px 0px rgba(59, 67, 147, 0.15);
  text-align: center;
}
.message-box h1 {
  color: var(--primaryColor);
}
.message-box h5 {
  max-width: 45%;
  font-size: 18px;
  margin: 0 auto;
}
#happy-emoji {
  height: 120px;
  margin-top: -80px;
  margin-bottom: 30px;
}
#sad-emoji {
  height: 90px;
  margin-top: -80px;
  margin-bottom: 30px;
}
.message-box a {
  text-decoration: none;
}
.call {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0 auto;
  transition: all 0.5s ease;
  cursor: pointer;
}
.call:hover {
  transform: scale(1.1);
}
.call:hover .call-me h6 {
  display: none;
}
.call:hover .call-me h5 {
  display: flex;
}
.phone-icon {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  background:var(--primaryColor);
}
.phone-icon img {
  height: 35px;
  filter: brightness(0) invert(1);
}
.ty-box a {
  text-decoration: none;
}
.call-me {
  background: var(--secondaryColor);
  width: 230px;
  height: 50px;
  border-radius: 0 30px 30px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 0 0 -20px;
  transition: all 0.3s ease;
  color: var(--primaryColor);
}
.call-me h6 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto;
}
.call-me h5 {
  font-size: 20px;
  max-width: 100%;
  font-weight: 700;
  margin: 0 auto;
  display: none;
}
/* Footer */
footer{
  background-color: var(--primaryColor);
  padding: 45px 0;
}
footer h1{
  font-size: 30px;
  color: #fff;
  font-weight: 700;
  margin: 0;
}
footer button{
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  max-width: 190px;
  border-radius: 10px;
  text-transform: uppercase;
  background-color: #fff;
  color: var(--primaryColor);
  border: 2px solid #fff;
  padding: 10px 0;
  ;
}
footer button:hover {
  transform: scale(1.04);
}
@media (max-width: 1200px){
  footer h1{
    font-size: 26px;
  }
  .section1 h1{
    font-size: 36px;
  }
  .section2 li{
    font-size: 16px;
  }  
  footer button{
    margin-top: 25px;
  }
  .message-box h5 {
    max-width: 75%;
  }
}
@media (max-width: 992px){

  .section1 h1{
    font-size: 32px;
    margin-bottom: 25px;
  }
  .section1 .col-xxl-4 img{
    display: block;
    margin: auto;
  }
  .section2 h1, footer h1, .section1 h1{
    text-align: center;
  }
  .section2 button{
    margin: 35px auto 40px;
  }
  .section2 li{
    margin: 5px auto 5px;
    max-width: 410px;
    padding-right: 10px;
    width: 100%;
  } 
}
@media (max-width: 768px){
  .section1 {
    background-color: #f0f1fc;
  }
  .section1 .col-xxl-4 img{
    margin-top: 60px;
  }
  .forms-wrapper{
    padding: 40px 30px 35px;
  }
  .section1 h1{
    font-size: 34px;
  }
  .section2 img{
    max-width: 300px;
  }
  .popup-content{
    width: 100%;
  }
  .message-box {
    margin-top: 60px;
  }
}
@media (max-width: 500px){ 
  .nav{
    padding: 15px;
  }
  .nav img{
      width: 200px;
  } 
  .message-box h5 {
    max-width: 100%;
  }
  .section1 .col-xxl-4 img{
      max-height: 200px;
      object-fit: contain;
      margin-top: 40px;
  }
}
@media (max-width: 450px){
  .section2 h1{
    font-size: 36px;
  }
  .input-block{
    width: 90%;
  }
  .section2 li{
      padding: 0;
  }
  .section2 li span{
    width: 30px;
    height: 30px;
    font-size: 20px;
  } 
  .section1 .col-xxl-4 img{
    width: 100%;
  }
  .nav img{
    width: 200px;
  }
  .section2{
    padding: 70px 20px 50px;
  }
  .message-box h5 {
    font-size: 16px;
  }
}
@media (max-width: 400px){
  .forms-wrapper{
    width: 95%;
  }
  fieldset h4{
    font-size: 18px;
    text-align: center;
  }
  .section2 h1, .section1 h1{
    font-size: 30px;
  }
}
@media (max-width: 340px){
  .section2 li span{
    min-width: 30px;
    min-height: 30px;
  }
  .section2 h1, .section1 h1 {
    font-size: 28px;
  }
}