/********** Template CSS **********/
:root {
    --primary: #348E38;
    --secondary: #525368;
    --light: #E8F5E9;
    --dark: #0F4229;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

h1,
.h1,
h2,
.h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}
 ul{
    list-style: none;
 }
 li{
    padding:3px 0px;
    font-weight: 500;
 }

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


.pl-0{
    padding-left:0;
}

/*** Button ***/
.btn {
    transition: .2s;
    font-weight: 500;
}

.btn-primary{
        color: #fff;
        background-color: #46BB46;
        border-color: #0D6EFD;}
    .btn-primary:hover{
        background-color: #158915;
        color: whitesmoke;
        /* border: 2px solid; */
    }

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    /*top: -100px;*/
    transition: .5s;
     position: sticky;
  top: 0;
  z-index: 1030; /* Navbar always upar rahe */
}



.navbar .navbar-brand,
.navbar a.btn {
    height: 80px
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 16px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(15, 66, 41, .6);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(15, 66, 41, .6), rgba(15, 66, 41, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Top Feature ***/
@media (min-width: 991.98px) {
    .top-feature {
        position: relative;
        margin-top: -80px;
        z-index: 1;
    }
}


/*** Facts & Quote ***/
.facts,
.quote {
    background: rgba(15, 66, 41, .6);
}


/*** Service ***/
.service-item {
    position: relative;
    text-align: center;
}

.service-item .service-img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.service-item .service-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    object-fit: cover;
    transform: scale(1.2);
    transition: .3s;
    z-index: -1;
}

.service-item:hover .service-img img {
    transform: scale(1);
}

.service-item .service-text {
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .3s;
}

.service-item:hover .service-text {
    background: rgba(15, 66, 41, .6);
}

.service-item .service-text h4,
.service-item .service-text p {
    transition: .3;
}

.service-item:hover .service-text h4 {
    color: #FFFFFF;
}

.service-item:hover .service-text p {
    color: var(--light);
}

.service-item .service-text .btn-square {
    width: 100px;
    height: 100px;
    background: transparent;
    transition: .5s;
}

.service-item:hover .service-text .btn-square {
    background: var(--light);
}

.service-item .service-text .btn {
    width: 31px;
    height: 31px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: var(--light);
    white-space: nowrap;
    overflow: hidden;
    transition: .3s;
}

.service-item:hover .service-text .btn {
    width: 112px;
}


/*** Project Portfolio ***/
#portfolio-flters {
    display: inline-block;
    background: var(--light);
    padding: 10px 15px;
}

#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--primary);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--dark);
    border-color: var(--dark);
}

.portfolio-inner {
    position: relative;
    overflow: hidden;
}

.portfolio-inner::before,
.portfolio-inner::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(15, 66, 41, .6);
    transition: .5s;
}

.portfolio-inner::after {
    left: auto;
    right: 0;
}

.portfolio-inner:hover::before,
.portfolio-inner:hover::after {
    width: 50%;
}

.portfolio-inner .portfolio-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
    z-index: 3;
    opacity: 0;
}

.portfolio-inner:hover .portfolio-text {
    transition-delay: .3s;
    opacity: 1;
}

.portfolio-inner .portfolio-text .btn {
    background: var(--light);
    color: var(--primary);
}

.portfolio-inner .portfolio-text .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
    background:#e8f5e9;
}

.team-item p{
    font-size:13px; 
}




/*** Testimonial ***/

.testimonial-carousel .owl-item img {
    width: 80px;
    height: 80px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 4px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #072A19;
}

.copyright a {
    color: #FFFFFF;
}

.copyright a:hover {
    color: var(--primary);
}


.video-slider {
    width: 100%;
/*    height: calc(100vh - 130px);*/
    object-fit: cover;
    filter: brightness(1.2);
    overflow: hidden;
}

.video-slider video {
    width: 100%;
    filter: contrast(1.2);
    position: relative;
    top: 0px;
}
.fa-design{
    color: #348e38;
    font-size: 23px;
    padding-right: 10px;
}
.testimonial{
        background: #da85271f;
        background-image: url(../img/leaf.png);
        background-repeat: no-repeat;
        
}

.right-fix {
    position: fixed;
    right: -76px;
    top: 60%;
    background: rgb(195 111 29);
    border: 1px solid #fff;
    border-radius: 8px 8px 0 0px;
/*    background-image: linear-gradient(to bottom right, #777b2a, #bfa410);*/
    transform: rotate(-90deg);
    z-index: 999;
}

.right-fix a {
    padding: 10px 20px;
    display: inline-block;
    color: #fff;
    font-family: 'Merriweather', serif;
    letter-spacing: 1px;
}

.portfolio-heading {
    position: absolute; 
    bottom: 8px;
    left: 40%;
    transform: translate(-30%, -30%);
    color: #fff;
    z-index:999; 
    background:#0c4a2da1;
    padding:10px;
    font-size:13px;
}
    

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: none; 
    border-radius: 4px;
    box-shadow: 3px 3px 15px 0px #cbcaca!important;
}


.slide-arrow{
  position: absolute;
  top: 50%;
  margin-top: -15px;
}
.prev-arrow {
    left: -30px;
    width: 0;
    height: 0;
    border-left: 0 solid transparent;
    border-right: 17px solid #c36f1d;
    background: #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
.next-arrow{
  right: -30px;
  width: 0;
  height: 0;
  border-right: 0 solid transparent;
  border-left: 17px solid #c36f1d;
  background:#fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

/* form * {
    background-color: #E8F5E9 !important;
   }   */

 h5{
font-weight: 800;
color: green;
font-size: 17px}

.form-container {
    max-width: 500px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
}

.form-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 14px;
}
.form-group label {
    width: 150px;
    margin-right: 10px;
}
.form-group input,
.form-group select,
.form-group textarea {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.form-group textarea {
    resize: n;
}
.ff{
    display: flex;
}
 

#name{
    margin-right: 14px;
}
#gender{
    margin-right: 14px;
}
#phone{
    
    width: 100%;
   
}
#whatsapp{
    width: 100%;
    
    margin-top: 14px;
}

#phone::placeholder{
    font-size: 14px !important;
}
#whatsapp::placeholder{
    font-size: 14px !important;
}
.no{
    display: flex;
    align-items: center;
    background-color: white !important;
}
#wc{
    display: none;
    background-color: rgb(232, 245, 233) !important;
    width: 48%;
    height: 43px;
    margin-top: 14px;
    display: block;
    margin-right: 14px;
}

    .btn-primary{

        color: #fff;
        background-color: #46bb46;
        border-color: #0d6efd;}
    
    .btn-primary:hover{
        background-color: whitesmoke;
        color: rgb(104, 100, 100);
        
    }
    input:focus,
    select:focus,
    textarea:focus {
    border-color: green !important; 
    outline: none !important;
    box-shadow: 0 0 5px rgba(0, 128, 0, 0.5) !important;
}
.fc{
    flex-direction: column;
}
.redio{
display:flex;
justify-content: center;
align-items: center;
margin-top: 14px;
}

input.invalid,
select.invalid,
textarea.invalid {
    border-color: red !important;
    box-shadow: 0 0 5px rgba()}

    .modal.show .modal-dialog{
    position: relative;
   }

   #Whatsapp-lable{
    margin-right: 20px;
    color: crimson;
    font-weight: 700;
   }
   

    /* loder */
    /* HTML: <div class="loader"></div> */
    

    .hidden {
        display: none;
    }
.loader {
    position: absolute;
    bottom: 50%;
    left: 42%;
    width: 60px;
    --b: 8px; 
    aspect-ratio: 1;
    border-radius: 50%;
    padding: 1px;
    background: conic-gradient(#0000 10%,#f03355) content-box;
    -webkit-mask:repeating-conic-gradient(#0000 0deg,#000 1deg 20deg,#0000 21deg 36deg),
      radial-gradient(farthest-side,#0000 calc(100% - var(--b) - 1px),#000 calc(100% - var(--b)));
    -webkit-mask-composite: destination-in;
            mask-composite: intersect;
    animation:l4 1s infinite steps(10);
  }
  @keyframes l4 {to{transform: rotate(1turn)}}
      

/* media */

@media (max-width: 768px) {
    .form-group {
        flex-direction: column;
        align-items: stretch;
    }
    .form-group label {
        width: auto;
        margin-bottom: 5px;
    }
    #name,
    #gender,
    #phone {
        margin-right: 0;
        width: 100%;
        margin-bottom: 7px;
    }
    .no {
        flex-direction: column;
    }
    .iti{
        margin-bottom: 7px ;
    }       
  
}

@media (max-width: 786px) {
    .form-container {
        padding: 10px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 6px;
    }
    .submit-button input {
        padding: 8px 16px;
        font-size: 14px;
    }
    .iti{
        width: 100%;
    }
   
    
}
@media (min-width: 576px) and (max-width: 786px) {
    #name,
    #gender,
    #phone {
        margin-right: 0 !important;
        width: 100% !important;
        margin-bottom: 7px !important;
    }
}


.choices {
    margin-bottom: 0px !important;
    padding-right: 95px;
}

.choices_list--dropdown .choices_item--selectable {
    padding: 10px !important;
    cursor: pointer !important;
}
.choices__input {
   
    border-radius: 4px !important;
    border: 1px solid #ccc !important;
}

.choices__inner {
    border-radius: 6.5px !important;
    background-color: #fff !important;
    border: none !important;
}

.form-floating>.form-control,
.form-floating>.form-select {
    height: auto !important;
    padding: 1rem .75rem;
}

input[type="radio"] {
    outline: none !important;
}
/* This will remove the default focus outline when the radio button is focused */
input[type="radio"]:focus {
    outline: none !important;
    box-shadow: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.research_box {
    box-shadow: 0 4px 18px 0 rgb(0 0 0 / 13%);
    transition: .7s ease-in-out;
    margin-bottom: 20px;
    padding: 20px;
    min-height: 100%;
    /*max-width: 528px;*/
    margin: auto;
}
 .rp_imgg img {
    width: 100%;
}
.rp_imgg {
    
    position: relative;
}
 .research_head h1 {
    text-align: center;
    padding: 30px 0;
}
.rp_imgg a.read_rs_btn {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    top: 50%;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    padding: 15px 0;
    max-width: 170px;
    border-radius: 10px;
    opacity: 0
}
 .research_box:hover .rp_imgg a.read_rs_btn{opacity: 1}
.research_box:hover .rp_imgg:before {
    content: '';
    background-color: rgb(0 0 0 / 40%);
    width: 100%;
    position: absolute;
    height: 100%
}
 
.research_box h2 {
    color: #254a28;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    padding: 30px 0 10px;
    text-align: center;
    line-height:30px !important;
}
.section-holder .col-lg-6 {
    margin-bottom: 20px;
}
 
.research_box p {
    margin: 0;
    color: #777;
    font-size: 20px;
    text-align: center
}
@media (max-width:767px) {
.research_box {
    min-height: unset;
    max-width:528px;
}
.research_box h2{
    font-size:16px;
    line-height:25px !important;
}
}
}