
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html,body{
    overflow-x: hidden;
}


/* Fonts */

  @font-face {
    font-family: Pop-100;
    src: url('fonts/Poppins/Poppins-Thin.ttf');
  }
  @font-face {
    font-family: Pop-200;
    src: url('fonts/Poppins/Poppins-ExtraLight.ttf');
  }
  @font-face {
    font-family: Pop-300;
    src: url('fonts/Poppins/Poppins-Light.ttf');
  }
  @font-face {
    font-family: Pop-400;
    src: url('fonts/Poppins/Poppins-Regular.ttf');
  }
  @font-face {
    font-family: Pop-500;
    src: url('fonts/Poppins/Poppins-Medium.ttf');
  }
  @font-face {
    font-family: Pop-600;
    src: url('fonts/Poppins/Poppins-SemiBold.ttf');
  }
  @font-face {
    font-family: Pop-700;
    src: url('fonts/Poppins/Poppins-Bold.ttf');
  }
  @font-face {
    font-family: Amarante;
    src: url('fonts/Amarante/Amarante-Regular.ttf');
  }


  .pop-200{
    font-family: Pop-200;
  }
  .pop-300{
    font-family: Pop-300;
  }
  .pop-400{
    font-family: Pop-400;
  }
  .pop-500{
    font-family: Pop-500;
  }
  .pop-600{
    font-family: Pop-600;
  }
  .pop-700{
    font-family: Pop-700;
  }
  .amr-font{
    font-family: Amarante;
  }




  /* colors */

  :root {
    --first: #5EB441;
    --second: #22A96A;
    --third:#2B2B2B;
    --gray1:#1E1E1E;
    --gray2:#7E7E7E;
    --gray3:#868686;
  }


  .bg-1{
    background-color: var(--first);
  }
  .bg-2{
    background-color: var(--second);
  }
  .bg-3{
    background-color: var(--third);
  }

  .text1{
    color: #ffffff;
  }
  .text90{
     color: #58B345;
     font-weight: 700;
    font-size: larger;
  }
  .text2{
    color: var(--second);
  }
  .text3{
    color: var(--third);
  }
  .text4{
    color: var(--gray1);
  }
  .text5{
    color: var(--gray2);
  }
  .text6{
    color: var(--gray3);
  }



/* common css */



.text-justify{
  text-align: justify;
}
.p-relative{
    position: relative;
}
.text-up{
  text-transform: uppercase;
}
.w-fit{
    width: fit-content;
}
.flex-col{
    flex-direction: column;
}
a{
    text-decoration: none;
}
.fs-10{
    font-size: 10px;
}
.fs-9{
    font-size: 9px;
}
.fs-13{
    font-size: 13px;
}
.fs-12{
    font-size: 12px;
}
.fs-14{
    font-size: 14px;
}
.fs-15{
    font-size: 15px;
}
.fs-16{
    font-size: 16px;
}
.fs-20{
    font-size: 20px;
}
.fs-23{
    font-size: 23px;
}
.text-green{
    color: #8AA03E;
}
.obj-cover{
    object-fit: cover;
}
.br-10{
    border-radius: 10px;
}
.show-all{
  width: 160px;
  padding-top: 0.8rem ;
  padding-bottom: 0.8rem ;
}
.shad{
  box-shadow: 0px 0px 10px 0px #0000001A;
}
.sec-head{
  font-size: 40px;
}
.br-20{
  border-radius: 20px;
}

.cmn-btn{
  width: 200px;
  font-size: 14px;
  border-radius: 5px;
  display: block;
  text-align: center;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

.border1{
  width: 180px;
  height: 5px;
}
.border2{
  width: 320px;
  height: 5px;
  
}





/* ================================================================= */

/* *******Navbar********* */

.nav-link{
  color: #4E4D4B;
  font-size: 14px;
  transition: 0.3s ease-in-out;
}
.nav-item .active-tab , .nav-item .active ,.nav-link:hover{
  color: #22A96A !important;
  border-bottom: 2px solid #22A96A;
}


.dropdown-toggle::after {

  color: var(--first);
}

.nav-link:hover{
  color: #0C8CEF;
  
}
/* .nav-btn:hover{
  color: #0C8CEF;

} */
.nav-btn{
  background: linear-gradient(90deg, #5EB441 0%, #22A96A 100%);
  border-radius: 50px;
}


/* ********pop-up form*********** */
.quote-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-form-wrapper {
  width: 100%;
}

.quote-form {
  position: relative;
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #000;
  cursor: pointer;
}



.dropdown select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #ffffff;
    padding: 10px 20px;
    border: 1px solid #ccc;
    font-size: 14px;
    color: #959595;
    width: 10rem;
    box-sizing: border-box;
    position: relative;
    background-repeat: no-repeat;
    background-position: calc(100% - 15px) center;
    background-size: 10px;
}

.con-drop {
    width: 100% !important;
    /* height: 45px; */
    border-radius: 5px;
    background-color: #fff !important;
    font-size: 1rem !important;
    color: #5e6062 !important;
    padding: 6px 12px !important;
    border-color: #0C8CEF80 !important;
}


.pop-up-form .form-control{
  border: 0.5px solid #0C8CEF80;
}




/* #nav{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
} */









/* *********Hero********* */

.carousel-item img{

  object-fit: cover;

}
.carousel-item {
  /* border-radius: 20px; */
  overflow: hidden;


  .right-box{
    position: absolute;
    top: 0;
    right: 0;
    background-color: #0000008c;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);

    .cta-search {
      width: 200px;
      border: 1px solid #22A96A;
      border-radius: 5px;
    }

  }

}

.right-box2{
  background-color: #000000ba;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);

  .cta-search {
    width: 200px;
    border: 1px solid #22A96A;
    border-radius: 5px;
  }

}

.carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 0;
    left: 5%;
    top: 15%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    padding: 2.5rem;
    color: #000;
    text-align: start;
    height: fit-content;
    /* width: 65%; */
    width: 60%;
    /* background-color: #000000CC; */
    border-radius: 20px;
    /* background: linear-gradient(270deg, rgba(229, 244, 255, 0) -1.17%, #E5F4FF 65.85%); */
}

.carousel-control-prev {
    left: 82%;
}

.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: 80%;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;

}

.carousel-control-next{
  right: 7%;
}


.carousel-caption {
  display: flex;
  align-items: center;


  h1{
    /* font-size: 64px; */
    font-size: 40px;
    margin-top: -1rem;
  }
 .carousel-caption {
    h2 {
        COLOR: #58B345;
        /* font-size: 46px; */
        font-size: 40px;
    }
}
  p{
    font-size: 24px;
  }

  .btn{
    width: 300px;

  }
}
.use-boxs{
    
    a {
         /*border: 0.5px solid #848484 !important; */
         border-radius: 5px; 
        /* padding-left: 2rem; */
        padding-right: 2rem;
        color: var(--first);
    
}
    
}

.carousel-control-next-icon {
    background-image: url(images/next1.png) !important;
    width: 50px;
    height: 50px;
}
.carousel-control-prev-icon {
    background-image: url(images/prev1.png) !important;
    width: 50px;
    height: 50px;
}

.carousel-control-next, .carousel-control-prev{
  opacity: 0.8 !important;
}

.carousel-control-next:hover{
  opacity: 1 !important;
  z-index: 99;
}

.carousel-control-prev:hover{
  opacity: 1 !important;
  z-index: 99;
}



.service-box{
  border-radius: 10px;

  .col-lg-cus{
    text-wrap-mode: wrap;
    
    h4{
      text-wrap-mode: wrap;
    }
    .ser{
      max-width: 50px;
      max-height: 50px;
    }
  }
}


.hero-btn-box{
  margin-top: 2rem;
  .btn{
    width: 180px;
    border-radius: 5px;
    color: #fff;
  }
  .bg-1:hover{
    background-color: #54a03a;
  }
  .bg-2:hover{
    background-color: #1c8f59;
  }
}







/* ********About us******* */

#about{
  border-radius: 20px;
}

.owner-about{
  width: 380px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 2px 8px 0px #00000040;
  position: relative;
  z-index: 10;
  margin-top: -3rem;

  h6{
    background-color: #0C8CEF;
  }
  h4{
    font-size: 24px;
    background-color: #fff;
  }
}



/* count section */
.count-cont{
  border-radius: 10px;
  background-color: #000;
}
.count-cont .text3{
  color: #fff;
}

.counter{
  color: #22a86b;
}




/* benfits */

.benefits{
  width: 100%;
  height: fit-content;
  /* background-image: url(images/service-bg.png); */
  background-color: #5EB4411A;


  .btn{
    width: 160px;
    border-radius: 5px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}


.service-box{
  border-radius: 10px;
  box-shadow: 0px 0px 15px 0px #00000033;
  aspect-ratio: 1 / 1; 
  /* padding: 2rem ; */
  height: 100%;
  border: 3px solid #fff;

  img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
  }

  .info1{
    background:linear-gradient(180deg, rgba(94, 180, 65, 0) -0.93%, rgba(94, 180, 65, 0.9) 43.59%);
    bottom: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    border-radius: 10px;
    transition: 0.3s ease-in;
  }

  .info2{
    background-color: #1C3973CC;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    opacity: 0;
    transition: 0.3s ease-in;
  }

}

/* .service-box:hover{

  .info1{
    opacity: 0;
  }

  .info2{
    opacity: 1;
  }
} */

.ser-head{
  font-size: 40px;
  letter-spacing: 6px;
}





/* product section */
.pro-card{
  width: 100%;
  height: 100%;
  text-wrap-mode: wrap;

  img{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 10px;
  }
}



/* advantages */

.adv{
  width: 100%;
  height: fit-content;
  background-image: url(images/adv.webp);
  background-position: center;
  /* background-repeat: repeat-x; */
  background-size: cover;
}

.adv-box{
  background-color: #00000066;
  border: 3px solid #000000;
  border-radius: 10px;
  height: 100%;
}





/* card carousel */

.item-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.scroll-btn {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  /* background-color: #00000025; */
  cursor: pointer;
  font-size: 1.5rem; /* Size of the arrow */
  font-weight: 800;
  color: #030303; /* Grey color for the arrow */
  transition: color 0.3s ease; /* Smooth transition for hover effect */
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.scroll-btn img {
  width: 50px;
  height: 50px;
}

.scroll-btn:hover {
  color: #000000; /* Darker grey when hovering */
}

.card-wrapper {
  display: flex;
  overflow: hidden; /* Hide scrollbar */
  scroll-behavior: smooth;
  white-space: nowrap;
  width: 100%;
  max-width: 85vw; /* Adjust based on your design */
  box-sizing: border-box;
  position: relative; /* For positioning scroll buttons */
  flex-wrap: nowrap !important;
}

.card-wrapper::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Webkit browsers */
}

.prev{
  left: 4%;
  top: 40%;
}
.next{
  right: 4%;
  top: 40%;
}



/* usage */

.use-box{

  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 15px 0px #00000033;
  border-radius: 10px;
  text-wrap-mode: wrap;

  h6{
    line-height: 20px;
  }

  /* img{
    width: 100%;
    height: 200px;
    object-fit: cover;
  } */

  img{
    width: 100%;
    height: 110px;
    object-fit: contain;
  }


  a{
    border: 0.5px solid #848484 !important;
    border-radius: 5px;
    padding-left: 2rem;
    padding-right: 2rem;
    color: var(--first);
  }
  .view i{
    color: var(--first);
    rotate: 40deg;
  }
  .view p{
    color: var(--first);
  }
  a:hover{
    background-color: var(--first);

    .view i, .view p{
      color: #fff;
    }
  }
}



/* ral */
.ral{
  width: 100%;
  height: fit-content;
  background-image: url(images/ral-bg.webp);
  background-position: center;
  background-size: cover;
}


/* project */
.tabs{
  display: flex;
  justify-content: center;
  gap: 10px;
}

.tabs a{
  border: 0.5px solid #959595;
  border-radius: 50px;
  font-size: 12px;
  color: #000000;
  display: flex;
  align-items: center;
  transition: all 0.3s ease; 
  background-color: #fff;
}

.tabs a:hover , .tabs .active-tab{
  background-color: var(--second);
  border: none;
  color: #fff;
}

.proj-prev{
  left: -4%;
  top: 40%;
}
.proj-next{
  right: -4%;
  top: 40%;
}


/* testimonial */
.test-slider .card-wrapper{
  max-width: 80vw;
}

.testimonial{
  width: 100%;
  height: fit-content;
  background-color: #5EB44180;
}

.test-slider .card-wrapper{
  max-width: 80vw;
}

.test-box{
  box-shadow: 0px 0px 20px 0px #0000001A;
  /* width: 330px; */
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: #fff;
  padding: 1.8rem 1rem;
  text-wrap-mode: wrap;

  .client{
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
  }

  .star{
    i{
      font-size: 20px;
      color: #DAB858;
    }
  }

  .quote{
    /*width: 40px;*/
    /*height: 30px;*/
    width: 30px;
    height: 22px;
  }

}

.test-prev {
    left: 3%;
    top: 40%;
}
.test-next {
    right: 3%;
    top: 40%;
}



/* contact section */

.con-form .form-control{
  border: 0.5px solid #5EB441;
}
.con-form .form-control::placeholder{
  color: #6F7171;
  font-family: Pop-300;
  font-size: 14px;

}




/* *****cta section***** */

.cta-search{
  width: 500px;
  border: 1px solid #22A96A;
  border-radius: 5px;
}
.cta-search::placeholder{
  color: #8B8B8B;
  font-family: Pop-300;
  font-size: 14px;

}
.sub-btn:hover{
  background-color: #1c8f59;
}





/* *******inner pages******* */




/* /////About us Page\\\\\\ */

  .about-ban{
    width: 100%;
    height: 300px;
    background-image: url(images/about-ban.webp);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;

    h1{
      font-size: 96px;
      letter-spacing: 50px;
    }
  }


  .about-tab{
    width: 100%;
    height: 400px;
    background-image: url(images/hero.jpg);
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;


    .over{
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #0000008e;
    }



    .custom-tabs .tab-btn {
      border: none;
      background: #f1f1f1a8;
      padding: 12px 20px;
      font-weight: 600;
      cursor: pointer;
      border-radius: 5px;
      transition: 0.3s ease;
      -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }

    .custom-tabs .tab-btn.active {
      background: #5eb4416d;
      color: white;
    }

    .tab-content-box {
      display: none;
      padding: 20px;
      background: #ffffff63;
      border: 1px solid #ddd;
      margin-top: 10px;
      border-radius: 5px;
      -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    }

    .tab-content-box.active {
      display: block;
    }


    .tab-box{
      position: relative;
      z-index: 1;
    }



  }

  .about-text{
    h2{
      font-size: 32px;
      letter-spacing: 10px;
    }

    ul{
      list-style-type: none;
      padding-left: 0px;
    }
    h3{
      font-size: 32px;
    }

    .btn:hover{
      background-color: #1c8f59;
    }
  }

  .feat-box{
    box-shadow: 0px 0px 15px 0px #00000033;
    border-radius: 10px;

    .w-fit{
      border-right: 0.5px solid #A6A6A6;
    }
  }


  .vision{
    background-color: #5EB44166;
  }

  .certificate{
    width: 100%;
    height: fit-content;
    background-image: url(images/cer-bg.webp);
    background-position: center;
    background-size: cover;
  }

  .cer-box{
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 15px 0px #00000033;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 250px;
    height: 100%;
  }

  .colour{
    width: 100%;
    height: fit-content;
    background-image: url(images/color-bg.webp);
    background-position: center;
    background-size: cover;
  }

  .colour-text{
    h2{
      font-size: 34px;
    }
    p{
      color: #4E4E4E;
    }
  }







/* /////Product PAge\\\\\\\ */
.drop-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 30px;
  background: white url(images/drop.png) no-repeat right center;
  border: 1px solid #ccc;
  font-size: 16px;
  width: 200px;
  height:50px;
  border-radius:5px;
}

.page-item{
  border-radius: 5px !important;
  margin-right: 10px;
}
.page-link{
  border-radius: 5px !important;
}

.pagination{
  .active{
    background-color: var(--first) !important;
    color: #fff !important;
    border: none;
  }
  .page-item{
    border-color: var(--gray3);
    a{
      color: var(--gray3);
    }
  }
}




/* /////////project page\\\\\\\ */
.client{
  background-color: #5EB4411A;
}


.use-box{
  background-color: #fff;

  .img-box{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 220px;
    overflow: hidden;
    box-shadow: 0px 0px 8px 0px #00000026;


    img{
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
}


.proj-gall{
  width: 100%;
  height: 300px;
  border: 3px solid var(--second);
  overflow: hidden;
  border-radius: 5px;
  position: relative;

  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in;
  }
  
  .name{
    position: absolute;
    z-index: 10;
    bottom: 0%;
    left: 0px;
    background: linear-gradient(180deg, rgba(94, 180, 65, 0) -7.93%, rgba(94, 180, 65, 0.9) 42.59%);

    h6{
      font-size: 22px;
    }

  }

}
.proj-gall:hover img {
  transform: scale(1.1);
}





/* project detail */

.detail-head{
  background-color: #5EB44133;
}

.cmn-shad{
  box-shadow: 0px 0px 15px 0px #00000033;
}

.br-10{
  border-radius: 10px;
}

.tabs-det{
  border-bottom: 5px solid #22A96A;
}

.tabs-det a{
  border: 0.5px solid #959595;
  border-radius: 10px;
  font-size: 14px;
  color: #000000;
  display: flex;
  align-items: center;
  transition: all 0.3s ease; 
}

.tabs-det a:hover , .tabs-det .active-tab{
  background-color: var(--first);
  border: none;
  color: #fff;
}

.det-2{
  background-color: #fff;
  
  h2{
    font-size: 24px;
    border-bottom: 2px solid #22A96A;
  }

  .img-2{
    width: 100%;
    height: 450px;
    object-fit: contain;
  }

}

.big-img{
    img{
        max-width: 100%;
        height: auto;
    }
}




/* ////Service Page\\\\ */

.gallery-section {
      max-width: 850px;
      margin: 50px auto;
    }

    .main-image {
      width: 100%;
      height: 450px;
      object-fit: contain;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.2);
      cursor: pointer;
      transition: 0.3s;
    }

    /* Scrollable Thumbnails */
    
    /* Thumbnail wrapper */
    .thumbs-container {
      position: relative;
      margin-top: 15px;
      overflow: hidden;
    }

    .thumbs-wrapper {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      scroll-behavior: smooth;
      scrollbar-width: none; /* Hide scrollbar */
    }

    .thumbs-wrapper::-webkit-scrollbar {
      display: none;
    }

    .thumbs-wrapper img {
      flex: 0 0 auto;
      height: 100px;
      object-fit: cover;
      border-radius: 8px;
      cursor: pointer;
      opacity: 0.7;
      border: 2px solid transparent;
      transition: 0.3s;
    }

    .thumbs-wrapper img.active {
      opacity: 1;
      border: 3px solid var(--first);
    }

    .thumbs-wrapper img:hover {
      opacity: 1;
    }

    /* Prev/Next buttons */
    .thumbs-container{
      .scroll-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(255,255,255,0.9);
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        z-index: 5;
        transition: 0.3s;
      }

      .scroll-btn:hover {
        background-color: #0d6efd;
        color: #fff;
      }

      .scroll-btn.prev {
        left: 3px;
      }

      .scroll-btn.next {
        right: 3px;
      }
      .scroll-btn img {
          width: 40px;
          height: 40px;
      }
    }

    @media (max-width: 768px) {
      .main-image {
        height: 300px;
      }
      .thumbs-wrapper img {
        height: 80px;
      }
      .thumbs-container{
        .scroll-btn {
          width: 35px;
          height: 35px;
        }
      }
    }


  .left-det{
    border-right: 1.5px solid #c1c1c1;

    a{
      border-radius: 5px;
    }
    a:hover{
      background-color: #1c8f59;
    }

  }



/* ///case studt//// */

.lt-green{
  background-color: #5EB44133;
}

.case-img{
  height: 300px;
}

.case-stud{
  .main-image {
    width: 100%;
    height: 300px;
  }
}
  




/* //////////Contact Page\\\\\\\\\\ */

.cmn-p2 {
  padding: 3rem 2.5rem 3rem 2.5rem;
}
.con-box{
  background-color: #fff;

  h3{
    font-size: 24px;
  }
  h6{
    height: 40px;
  }

  img{
    width: 120px;
    height: 120px;
  }

  .form-row{
    margin-top: 6rem;

    button{
      border-radius: 50px;
    }
    button:hover{
      background-color: #1c8f59;
    }
  }

}

.s-btn{
  padding-right: 4.5rem ;
  padding-left: 4.5rem ;
  padding-top: .7rem ;
  padding-bottom: .7rem ;
}
.s-btn:hover{
  background-color: #0861a5;
}

.contact-form .form-control{
  border: 0.5px solid #0C8CEF80;
}

.contact-form .form-control::placeholder{
  font-size: 14px;
  font-family: Pop-300;
  color: #6F7171;
}





/* ////Thank you -Sorry Page */

.thanks{
  width: 45%;
}

.thank-btn:hover{
  background-color: #0861a5;
}








































/* ====+++++++++++================++++++++++++++===============++++++++++++=========== */
/* ====+++++++++++================++++++++++++++===============++++++++++++=========== */

/* ************Media Query************** */

  /* Max widths */

  @media(max-width:1400px){
    .bus-opt {
      width: 360px;
      height: 420px;
      padding: 2rem;
    }
    .kick-box {
      width: 350px;
      height: 500px;

      p{
        font-size: 13px !important;
      }
    }
  }

  @media(max-width:1100px){
    .nav-link {
      color: #4E4D4B;
      font-size: 11px;
    }
    .logo{
      width: 80%;
    }
    .owner-about {
      width: 340px;
    }
    .test-slider .card-wrapper {
      max-width: 82vw;
    } 
    .test-prev {
    left: 3%;
    top: 40%;
    }
    .test-next {
        right: 3%;
        top: 40%;
    }
    .bus-opt {
      width: 300px;
      height: 420px;
      padding: 2rem;
    }
    .first h4, .second h5 {
      font-size: 20px;
    }
    .second p{
      font-size: 12px !important;
    }


    .cer-box{
      img{
        max-width: 75%;
      }
    }


  .carousel-caption {
      left: 0%;
      top: 8%;

      h1{
        font-size: 64px;
      }
      h2{
        font-size: 55px;
      }
    }

    .carousel-item {
      .right-box {
          max-width: 500px;
      }
    }




  }



  @media(max-width:900px){

    .carousel-caption {
      /* left: 5%; */
      left: 0%;
      top: 5%;
      /* width: 70%; */
      width: 55%;

      h2 {
        font-size: 38px;
      }
      h1 {
        font-size: 50px;
        margin-top: 0rem;
      }
    }

    .carousel-item {
      .right-box {
          max-width: 400px;

          .cta-search{
            height: 40px;
            margin-bottom: 1rem;
          }
      }
    }

    .carousel-caption{
      .sec-head {
        font-size: 30px;
      }
      .head1 {
        font-size: 50px;
      }
      .head2 {
        font-size: 55px;
      }
    }
    .carousel-control-prev {
      left: 75%;
    }
    .owner-about {
        width: 240px;

        h4 {
        font-size: 20px;
        background-color: #fff;
      }
    }
    .test-slider .card-wrapper {
        max-width: 85vw;
    }
    .proj-slider .card-wrapper {
      max-width: 80vw;
    }
    .test-box {
      h6{
        font-size: 12px;
      }
    }
    .test-box p i {
        font-size: 20px;
    }
    .test-prev {
    left: 1%;
    top: 40%;
    }
    .test-next {
        right: 1%;
        top: 40%;
    }
    .pro-prev {
    left: 1%;
    top: 40%;
    }
    .pro-next {
        right: 1%;
        top: 40%;
    }
    .proj-prev {
      left: -5%;
      top: 40%;
    }
    .proj-next {
      right: -5%;
      top: 40%;
    }
    .quote {
      height: 20px;
      width: 25px;
    }
    .bus-opt {
      width: 325px;
      height: 400px;
      padding: 2rem;
    }
    .kick-box {
        width: 335px;
        height: 475px;

      .first h4, .second h5 {
        font-size: 22px;
      }
      .second p {
        font-size: 13px !important;
      }
    }

    .con-box {
      h1 {
          font-size: 45px;
      }
      h6{
        font-size: 14px;
      }
      a{
        width: 100%;

        .fs-20{
          font-size: 15px;
        }
        .fs-15 {
          font-size: 12px;
        }
      }
    }

    .faq-text {
      h1 {
          font-size: 60px;
      }
    }

    .about-ban {
      h1 {
          font-size: 70px;
          letter-spacing: 50px;
      }
    }
    .colour-text {
      h2 {
          font-size: 26px;
      }
      .fs-20{
        font-size: 16px;
      }
    }

    .det-2 {
      .img-2 {
          width: 100%;
          height: auto;
          object-fit: contain;
      }
    }
    .con-box {
      img {
          width: 90px;
          height: 90px;
      }
    }

  }


  @media(max-width:800px){
    
    .content-box {
      padding: 2rem 1rem 2rem 1rem;

      .fs-14{
        font-size: 12px;
      }
    }
    .call-btn{
      .fs-20 {
        font-size: 15px;
      }
    }
    .proj-prev {
      left: -3%;
      top: 40%;
    }
    .proj-next {
      right: -3%;
      top: 40%;
    }
    .about-ban {
      h1 {
          font-size: 50px;
          letter-spacing: 40px;
      }
    }
    .con-box {
      img {
          width: 75px;
          height: 75px;
      }

      .fs-20{
        font-size: 18px;
      }
    }

    .carousel-item {
      .right-box {
          max-width: 360px;

          .fs-20{
            font-size: 16px;
          }
          h6, li{
            font-size: 14px;
          }
      }
    }

  }


  @media(max-width:576px){
    .carousel-caption {
      padding-left: 1rem;
      width: 90%;
  
        h2 {
          /* font-size: 24px; */
          font-size: 34px;
        }
        h1 {
          /* font-size: 35px; */
          font-size: 50px;
          margin-top: 0rem;
        }
        .fs-14{
          font-size: 12px;
        }
    }
    .ser-head {
      /*font-size: 32px;*/
      font-size: 26px;
    }

    .carousel-item img {
      height: 450px;
    }

    .carousel-control-prev {
        left: 65%;
    }
    .owner-about {
        /* width: 300px; */
        width: auto;
    }
    .scroll-btn img {
      width: 40px;
      height: 40px;
    }
    .prev {
      left: 1%;
      top: 40%;
    }
    .next {
      right: 1%;
      top: 40%;
    }
    .proj-prev {
      left: -3%;
      top: 40%;
    }
    .proj-next {
      right: -3%;
      top: 40%;
    }
    .test-prev {
      left: 1%;
      top: 45%;
    }
    .test-next {
      right: 1%;
      top: 45%;
    }
    .cta-search {
      width: 350px;
      height: 45px;
    }
    .bus-text {
      position: absolute;
      z-index: 10;
      top: 0%;
      left: 5%;
      height: 100%;
      width: 90%;
    }
    .bus-text {
      h1 {
          font-size: 40px;
      }
      h6{
        font-size: 14px;
        line-height: 20px;
      }
    }
    .bus-opt {
        width: 360px;
        height: 420px;
        padding: 2rem;
    }
    .second p {
        font-size: 14px !important;
    }
    .doc-check{
      flex-direction: column;
    }
    .choose-box {
      img {
          width: 85px;
          height: 85px;
      }
    }
    .choose-1st , .choose-4th{
      margin-left: 0rem;
    }
    .choose-2nd , .choose-3rd{
      margin-left: 0rem;
    }
    .con-box {
      & a {
          .fs-20 {
            font-size: 16px;
          }
          .fs-15 {
            font-size: 13px;
          }
      }
      h1 {
        font-size: 40px;
      }
    }

    .cmn-p2 {
      padding: 3rem 1rem 3rem 1rem;
    }
    .kick-p {
      padding-right: 0.5rem;
      padding-left: 0.5rem;
    }
    .cmn-24 {
      font-size: 20px;
    }

    .px-cus-2{
      padding-left: 2rem;
      padding-right: 2rem;
    }

    .top-right{
      display: flex !important;
      justify-content: center;
      /* width: 100% !important; */
    }

    .about-ban {
      height: 185px;


      h1 {
          /*font-size: 35px;*/
          /*letter-spacing: 19px;*/
          /*width: fit-content;*/
          font-size: 28px;
            letter-spacing: 6px;
            width: fit-content;
      }
    }
  
    .search-row{
      flex-direction: column;
    }
    .left-det{
      border-right: 0px;
    }
    .case-img{
      height: auto;
    }
  }