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

:root{
    --green: #0ca72d;
    --green2: rgb(0, 71, 27);
    --green3: #2a9002;
    --green4: #badd0c;
    --green5: #f5ffe1;
    --green6: #29651b;
    --blue: #ebfdff;
    --yellow: #1353b9;
    --orange: #ef7c00;
    --orange2: #8a4501;
    --bg: #f3fff6;
    --bg2:rgb(233, 255, 238);
    --bg3:rgb(209, 254, 220);
    --bg4: #fafcf1;
    --white: #ffffff;
    --black: #000000;
    --black2: #242423;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Exo 2", sans-serif;
    /* font-family: "Poppins", serif; */
    /* font-family: "Montserrat", sans-serif; */
    scroll-behavior: smooth;
}

/********* Header Section Start *********/

.navbar .navbar-brand img{
    width: 200px;
}
.navbar a{
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
}
.navbar ul{
    list-style: none;
    display: flex;
}
.navbar ul li{
    position: relative;
}
.navbar ul li a::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--green3);
    transition: .3s ease-in-out;
    z-index: -1;
}
.navbar ul li a:hover::after{
     width: 100% !important;
}
.navbar ul li a{
    font-size: 18px;
    color: #5e5e5e;
    padding: 10px 15px !important;
    transition: .3s ease-in-out;
    z-index: 2;
}
.navbar ul li a:hover{
    color: var(--white);
}
.navbar ul li{
    margin: 0 5px;
}
.navbar{
    background-color: #fff;
    position: fixed;
    z-index: 99999999;
}
.header-shadow{
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.2);
}
.navbar .sign{
    background-color: var(--green);
    padding: 10px 30px !important;
    color: var(--white);
    font-weight: 600;
    transition: .3s ease-in-out;
}
.navbar .sign:hover{
    background-color: var(--black);
    color: #fff;
}
.offcanvas {
    width: 250px !important;
}
.offcanvas-backdrop.show{
    opacity: .8;
}
.custom-toggler {
    border: none;
    background: transparent;
    padding: 10px;
}
.custom-toggler:focus{
    box-shadow: none;
}
.hamburger {
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}
.hamburger span {
    width: 30px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
    transition: all 0.4s ease-in-out;
}

/********* Header Section End *********/

/********* Banner Section Start *********/

@keyframes zoom {
    0% { transform: translateY(0); }
    50% { transform: translateY(40px); }
    100% { transform: translateY(0); }
}
#banner {
    overflow: hidden;
    background-image: url(./img/banner2.webp);
    background-size: cover;
    background-repeat: no-repeat;
    height: 955px;
    position: relative;
    background-position: top;
}
#banner span{
    color: var(--orange);
    font-weight: 600;
    font-size: 20px;
}
/* #banner .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
} */
#banner h1{
    font-weight: 500;
    color: var(--black);
    text-transform: capitalize;
    font-size: 60px;
    margin-bottom: 20px;
    line-height: 75px;
}
#banner .ban-pad{
    padding-bottom: 200px;
}
#banner h1 span{
    color: var(--green);
}
#banner h6{
    color: #fff;
    font-size: 19px;
    line-height: 30px;
}
#banner .ban-text{
    /* padding: 170px 0 50px 0 !important; */
    z-index: 2;
}

.heading{
    padding-bottom: 60px;
}
.heading h6{
    color: var(--orange);
    font-weight: 600;
    font-size: 18px;
}
.heading h1{
   font-size: 56px !important;
   position: relative;
   text-transform: capitalize;
   font-weight: 600;
   color: var(--black);
   margin: 20px 0 20px 0;
}
.heading p{
    font-size: 16px;
    font-weight: 500;
    color: #5c5c5c;
 }

/********* Banner Section End *********/

/********* Blocks Section Start *********/

#blocks .b-row{
    background-color: var(--green5);
}
#blocks .b-row2{
    background-color: var(--blue);
}
#blocks .tag span{
    display: inline;
    padding: 5px 35px 5px 25px;
    color: var(--black);
    text-transform: capitalize;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
    word-spacing: 2px;
}
#blocks h1{
    font-size: 40px;
    line-height: 60px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 10px 0 25px 0;
    color: var(--green3);
}
#blocks .b-row2 h1{
    color: var(--yellow);
}
#blocks h4{
    font-size: 18px;
    line-height: 1.6;
    color: var(--black2);
    opacity: 0.8;
    font-weight: 500;
    margin-bottom: 20px;
}
#blocks h5{
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 700;
    margin-top: 2px;
}
#blocks p{
    margin-bottom: 0;
    font-size: 16px;
    color: #616161;
}
#blocks .det i{
    font-size: 27px;
    color: var(--green);
}
#blocks .block-link a{
    text-decoration: none;
    background-color: var(--green6);
    color: var(--white);
    border: 1px solid var(--green6);
    font-size: 18px;
    padding: 14px 25px;
    font-weight: 600;
    margin-bottom: 0;
    transition: .3s ease-in-out;
}
#blocks .b-row2 .block-link a{
    background-color: var(--yellow);
    border-color: var(--yellow);
    color: var(--white);
}
#blocks .block-link a:hover{
    color: var(--white);
    border-color: var(--black2);
   background-color: var(--black2);
}
#blocks .block-link a:hover i{
   transform: translateX(8px);
   color: var(--white);
}

/********* Blocks Section End *********/

#infos h6{
    font-size: 22px;
    margin-bottom: 0;
}
#infos .block-link a{
    text-decoration: none;
    background-color: var(--black);
    color: #fff;
    border: 1px solid var(--black);
    font-size: 20px;
    padding: 16px 40px;
    font-weight: 600;
    margin-bottom: 0;
    transition: .3s ease-in-out;
}
#infos .block-link a:hover{
    color: var(--white);
    border-color: var(--green3);
   background-color: var(--green3);
}
#block{
    background-color: #f7f7f7;
}
#block .block-link a{
    text-decoration: none;
    background-color: var(--orange);
    color: var(--white);
    border: 1px solid var(--orange);
    font-size: 20px;
    padding: 18px 40px;
    font-weight: 600;
    margin-bottom: 0;
    transition: .3s ease-in-out;
}
#block .block-link a:hover{
    color: var(--white);
    border-color: var(--black);
   background-color: var(--black);
}
#block h6{
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
}
#block h1{
    color: var(--orange);
    font-weight: 600;
    font-size: 50px;
}
#block h5{
    opacity: 0.8;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 8px !important;
}
#block i{
    margin-right: 20px;
    font-size: 30px;
    color: var(--orange);
}


#info .block-link a{
    text-decoration: none;
    background-color: var(--green3);
    color: #fff;
    border: 1px solid var(--green3);
    font-size: 18px;
    padding: 14px 40px;
    font-weight: 600;
    margin-bottom: 0;
    transition: .3s ease-in-out;
}
#info .block-link a:hover{
    color: var(--white);
    border-color: var(--black);
   background-color: var(--black);
}

#help h1{
    font-size: 70px !important;
}
#help h1 i{
    transform: translateY(-5px);
    font-size: 40px !important;
}

/********* FAQ Section Start *********/

#faq .accordion-item{
    background-color: transparent;
}
#faq .accordion-item{
    margin: 10px 0 !important;
    border: none;
    background-color: none;
}
#faq .accordion-button{
    border-bottom: 1px solid #d0d0d0;
    background-color: transparent;
    opacity: 0.8;
    font-weight: 600;
    font-size: 19px;
}
#faq .accordion-button:not(.collapsed){
    background-color: transparent !important;
    border-color: var(--green3);
    color: var(--green3);
    box-shadow: none;
}
#faq .accordion-button:focus{
    box-shadow: none;
}
.accordion-button:not(.collapsed)::after{
    filter: brightness(0) saturate(100%) invert(61%) sepia(91%) saturate(553%) hue-rotate(26deg) brightness(87%) contrast(101%);
}
#faq .accordion-button::after {
  content: '\f138'; /* Unicode for FontAwesome down arrow */
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  background-image: none !important; /* Remove Bootstrap default arrow */
  transform: rotate(0deg);
  font-size: 22px;
  opacity: 1;
  filter: brightness(0) saturate(100%) invert(61%) sepia(91%) saturate(553%) hue-rotate(26deg) brightness(87%) contrast(101%);
  transition: transform 0.3s ease;
}

#faq .accordion-button:not(.collapsed)::after {
  content: "\f138"; /* Unicode for FontAwesome up arrow */
  transform: rotate(90deg);
  opacity: 1;
}

/********* FAQ Section End *********/

/********* Footer Section Start *********/
#footer{
    background-color: #e7e7e7;
}
#footer .menu li{
    list-style: none;
    margin: 14px 0;
}
#footer .menu li a{
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    opacity: 0.8;
    transition: .3s ease-in-out;
}
#footer .menu li a:hover{
    opacity: 1;
    text-decoration: underline;
}
#footer h4{
    font-weight: 700;
    color: var(--green6);
    opacity: 0.7;
}
#footer form {
  justify-content:center;
}
#footer form .form-control {
  background:#ffffff;
  border:none;
  border-radius:3px;
  box-shadow:none;
  outline:none;
  color:inherit;
  text-indent:9px;
  height:45px;
  margin-right:10px;
  min-width:200px;
}
#footer form .btn{
    background-color: var(--green6) !important;
    color: #fff;
    margin-top: 10px;
    padding:16px 32px;
    border:none;
    background:none;
    box-shadow:none;
    text-shadow:none;
    opacity:0.8;
    text-transform:uppercase;
    font-weight:bold;
    font-size:13px;
    letter-spacing:0.4px;
    line-height:1;
}

#footer form .btn:hover {
  opacity:1;
  background-color: #000 !important;
}

#footer form .btn:active {
  transform:translateY(1px);
}

#footer form .btn-primary {
  background-color:#055ada !important;
  color:#fff;
  outline:none !important;
}
#footer .social{
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
#footer .social li a{
    text-decoration: none;
}
#footer .social i{
     width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--bg4);
    color: var(--green6);
    font-size: 18px;
    margin: 0 10px;
    display: flex;
    opacity: 0.7;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
}
#footer .social li a:hover i{
    background-color: var(--green6);
    color: #fff;
    opacity: 1;
}

#copy{
    background-color: var(--white);
}
footer a {
    color: var(--black);
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    font-weight: 500;
    opacity: 0.5;
}
footer p{
    font-weight: 500;
    opacity: 0.5;
    color: var(--black);
}

footer a:hover {
    opacity: 1;
    text-decoration: underline;
}

/********* Footer Section End *********/

@media (max-width: 992px) {
    #banner {
        height: auto;
    }
    #banner .ban-text{
        padding: 0 !important;
        padding-top: 100px !important;
        padding-bottom: 40px !important;
    }
    #banner .b-left a {
        padding: 12px 20px;
        font-size: 16px;
    }
    .b-btn{
        justify-content: center;
    }
    .section-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    #feature .section-header h2::after {
        left: 0;
        transform: translateX(0);
    }
    .g-btn{
        margin: 30px 0 20px 0;
    }
    #why .w-top {
        margin-top: 0;
    }
    #banner .ban-img{
        padding: 0;
        padding-bottom: 50px;
    }
}
@media (max-width: 800px) {
    
}
@media (max-width: 500px) {
    .heading{
        padding-bottom: 30px;
    }
    .heading h1{
        font-size: 26px;
    }
    #features .fe-text .feature{
        padding: 20px;
    }
    #features .fe-text .feature h3{
        font-size: 26px;
    }
    #banner h1{
        font-size: 30px;
        margin-bottom: 10px;
        line-height: 40px;
    }
    #banner .ban-img{
        padding: 0;
        padding-bottom: 50px;
    }
    .b-btn{
        flex-direction: column;
    }
    .b-right{
        margin-top: 50px;
    }
    #banner h6 {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 10px !important;
    }
    #details h2 {
        font-size: 20px;
    }
    #blocks h1{
      font-size: 23px;
      line-height: 35px;
      margin-bottom: 15px;
    }
    #blocks h5 {
      line-height: 1.6;
      font-size: 15px;
      margin-left: 10px;
      text-align: left !important;
    }
    #blocks p{
        text-align: left !important;
    }
    #blocks h4{
        font-size: 14px;
    }
    #blocks ul {
      font-size: 16px;
      padding-bottom: 20px;
    }
    #blocks .det i{
        font-size: 20px;
    }
    #blocks ul li{
        margin: 6px 0;
    }
    #blocks .block-link a {
        font-size: 14px;
        padding: 12px 25px;
    }
    #blocks .tag span {
        font-size: 10px;
    }
    #why .why-textt{
        padding: 20px;
    }
    #feature .b-left a {
        display: inline-block;
        font-size: 12px;
        padding: 10px;
        text-align: center;
    }
    #feature h2{
        width: 200px;
    }
    #faq .accordion-button {
        font-size: 15px;
    }
    .accordion-body {
        font-size: 12px;
    }
    #why .why{
        padding: 20px;
    }
    #why .w-top{
        margin-top: 0;
    }
    #features .feature{
        padding: 20px;
    }
}

