@import "/static/styles/variable.css";
@import "/static/styles/main.css";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
   
}
body{
    width: 100vw;
    overflow-x: hidden;
    font-family: 'Inter';
}
.bg-white{
    background-color: #fff;
}
.bg-light{
    background-color: var(--light-blue) !important;
}
.bg-dark-blue{
    background-color: var(--dark-blue) !important;
}
.bg-light-blue{
    background-color: var(--text-light-blue) !important;
}
.bg-accordion{
  background: #F9FAFB;
}
.text-white{
    color: #fff;
}
.text-black{
  color:  #101828;;
}
.text-grey{
  color: #475467;
}
.dark-heading{
  color: #292932;
}
.text-blue{
    color: var(--homepage-blue) !important;
}
.text-dark-blue{
    color: var(--dark-blue) !important;
}
.text-light-blue{
    color: var(--text-light-blue);
}
.border-radius{
    border-radius: 10px;
}
.white-border{
    border: 1px solid #fff;
}
.circle-light-blue{
    background-color: #d6e8f4;
}
.dark-homepage-blue{
  background-color: var(--homepage-blue) !important;
}
.lemon-background{
  background: #FADE7D;
  padding: 25px 30px;
  gap: 24px;
  isolation: isolate;
}
.grey-background{
  background: #F2F4F7;
}
.grey-border-bottom{
  border-bottom: 1px solid #DADADE;
}
.grey-border-top{
  border-top: 1px solid #DADADE;
}

a{
    text-decoration: none !important;
}
.position-relative{
  position: relative !important;
}
.position-absolute{
  position: absolute !important;
}
.left-0{
  left: 0 !important;
}
.bottom-0{
  bottom: 0 !important;
}
.left-5{
  left: 5%;
}
.bottom-5{
  bottom: 5%;
}
.right-0{
  right: 0 !important;
}
.top-0{
  top: 0 !important;
}
.btn-border{
  border: 1px solid #D0D5DD;
}
.btn-white:hover{
  color: #032F5E !important;
}

.round-shape{
    height: 30px;
    width: 30px;
    border-radius: 50%;
    background-color: #d6e8f4;
}
.fa-star{
   color: #61a5d4;
}
.fa-circle-arrow-right,
.fa-circle-arrow-left{
    color: var(--dark-blue);
    font-size: 30px;
}
.review-img{
    transform: rotate(3.142rad);
}

.pricing-w-box{
  border: 1.17442px solid #F0F0F0;
  box-shadow: 0px 1.17442px 3.52326px rgba(16, 24, 40, 0.1), 0px 1.17442px 2.34884px rgba(16, 24, 40, 0.06);
  border-radius: 12px;
}
  /* Toggler button */

  .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 25px;
  }
  
  .switch input { 
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #0680D7;;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 11px;
    bottom: 4px;
    background-color: #fff;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #0680D7;
    border: 1px solid #fff;
  }
  

  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

  select{
      padding: 5px 15px !important;
      border-color: var(--text-blue);
      border-radius: 8px;
  }

  .border-bottom-blue{
      border-bottom: .1px solid var(--light-blue);
  }
  .footer-text{
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 152%;
    /* or 21px */

    letter-spacing: 0.06em;

    color: #FFFFFF;
  }
  .buttonbase span a{
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    color: #FFFFFF !important;
  }
  .footercopyright{
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
  }

  .accordion-button {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding: 2rem 1.5rem;
    font-size: 22px;
    color:#101828;
    text-align: left;
    background: #F9FAFB !important;
    border: 0;
    border-radius: 0;
    overflow-anchor: none;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease;
}
.accordion-button:hover {
  color:#101828 !important;
}
.accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0,0,0,.125);
}
.accordion-body {
  background: #F9FAFB !important;
}
.faq-bottom-heading{
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 144%;
  text-align: center;
  color: #1A1A1A;
}
