@import url('https://fonts.googleapis.com/css2?family=Mukta+Mahee:wght@200;300;400;500;600;700;800&family=Quicksand:wght@300;400;500;600;700&display=swap');
/* @import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,500;0,600;0,700;1,300;1,400;1,600;1,700&family=Quicksand:wght@300;600;700&display=swap");  */
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,500;0,600;0,700;1,300;1,400;1,600;1,700&family=Mukta+Mahee:wght@200;300;500;600;700;800&display=swap");
*{
    margin: 0;
    padding: 0;
    box-shadow: 0;
    font-Family:'Quicksand', sans-serif;
    
}
a{
    /* text-decoration: none; */
    text-decoration: none !important;

}
:root{
    --Mfont-family: 'Mukta Mahee', sans-serif;
    --TextColor:#009961;
    --navberBackground:#fff;
    --qfontFamily:'Quicksand', sans-serif;
    background:#ddd;
    --LinkColor: #333;
    --rfont-family: 'Josefin Sans', sans-serif;
}

body{
    --tfont-family: 'Mukta Mahee';
}
/* =================Start Navbar=========================== */
.navbar{
    background: white;
    padding: 22px 50px;
    position: fixed;
    z-index: 5;
    width: 100%;
    border-bottom: 2px solid #3236320f;
}

.navbar .navbar-brand img{
    max-height: 40px;
}
.navbar .nav-item{
    margin: right 14px;
    position: relative;
    padding: 0 1rem;
}

.navbar .nav-item::before , .navbar .nav-item::after{
    position: absolute;
    font-size: 22px;
    color: var(--textColor);
    top: 0.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease;
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
  }
  .navbar .nav-item::before{
    content: "[";
    left: -10%;
  
  }
  .navbar .nav-item::after{
    content: "]";
    right:-10%;
  }
  .navbar .nav-item:hover{
      color: var(--TextColor);
  }
  .navbar .nav-item:hover::before{
    opacity: 1;
    visibility: visible;
    left: 0px;
    color: #009961;
}
.navbar .nav-item:hover::after{
    opacity: 1;
    visibility: visible;
    right: 0px;
    color: #009961;
    
}
.navbar .nav-item .nav-link{
    color: var(--textColor); 
    font-size: 1.3rem;
    font-weight:bold;
    text-transform: uppercase;
    font-family: var(--rfont-family);
}
.dropdown-toggle::after{
    display: none;
}
.navbar .nav-item.active .nav-link{
    color: var(--TextColor);
}
.navbar .nav-item.active::after{
    opacity: 1;
    visibility: visible;
    right: 0;
    color: var(--TextColor);
}
.navbar .nav-item.active::before{
    opacity: 1;
    visibility: visible;
    left: 0;
    color: var(--TextColor);
}
.navbar .dropdown-menu{
    display: block;
    background: var(--TextColor);
    position:absolute;
    top: 3.1rem;
    transform: scaleY(0);
    -webkit-transform:scaleY(0);
    -moz-transform:scaleY(0);
    -ms-transform:scaleY(0);
    -o-transform:scaleY(0);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transform-origin: top;
    box-shadow: 0px 7px 7px 0px rgb(48 51 50 / 9%) ;
}
.navbar .nav-item:hover .dropdown-menu{
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    visibility: visible;
    opacity: 1;
}
.navbar .dropdown-menu .dropdown-item:hover{
    background-color: transparent;
    color: #ccc;
}
/* .navbar .dropdown-menu .dropdown-item{
     
} */
.pupulic{
    background: var(--TextColor);
    font-size: 20px;
    color: #fbfbfb;
    padding: 6px 15px;
    display: block;
    border-radius: 7px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    position: relative;
    overflow: hidden;
    z-index: 1;
} 
.pupulic::before{
    content: "";
    position: absolute;
    width: 2.2rem;
    background: #fff;
    z-index: -2;
    height: 4rem;
    right: 9rem;
    transform: rotate(318deg);
    top: 0rem;
    -webkit-transform: rotate(318deg);
    -moz-transform: rotate(318deg);
    -ms-transform: rotate(318deg);
    -o-transform: rotate(318deg);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
.pupulic:hover:before{
    width: 10rem;
    background: #fff;
    height: 10rem;
    right: 0rem;
    top: -3rem;
;
}
.pupulic:hover{
    color: var(--TextColor);
}
.dropdown-toggle .fa-caret-square-down{
    display: none;
}
.navbar span .fas{
 display: none;   
}
@media (max-width:991px) {
.navbar {
        padding: 10px 6px;
}
.navbar .navbar-toggler{
    font-size: 2rem;
    color: var(--TextColor);
}
.navbar .nav-item::after ,.navbar .nav-item::before {
    display: none;
}
.navbar .dropdown-menu .dropdown-item {
    width: 80%;
}
.navbar .navbar-collapse {
    position: fixed;
    background: #fafafa;
    width: 15rem;
    right: 0rem;
    top: 0rem;
    padding: 0px 11px;
    height: 100% !important;
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    z-index: 10;
}
.dropdown-toggle{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.dropdown-toggle .fa-caret-square-down{
    display: inline-block;
    color: var(--TextColor);
    background: #ffffff;
    font-size: 1.4rem;
}
.navbar .navbar-nav {
    padding: 0.5rem 0;
}
.navbar .nav-item{
    border: .2rem solid #fafafa;
}
.navbar .nav-item .nav-link{
    padding: 1rem;
    font-size: 1rem;
    font-weight: 300;
}
.navbar .dropdown-menu {
    position: unset;
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
    -webkit-transform: scaleY(1);
    -moz-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    box-shadow: unset;
    border: 0;
    background: #fff;
    display: none;
}
.navbar:hover .dropdown-menu .dropdown-item{
    color: #333;
border-bottom:1px solid #f0f0f0 ;
}
.navbar:hover .dropdown-menu .dropdown-item:first-child{
    border-bottom: 0;
}
.navbar .nav-item.show .dropdown-menu{
    display: block;
}

.navbar .closeIcon {
    width: 5rem;
    height: 5rem;
    display: block;
    border-radius: 5rem;
    -webkit-border-radius: 5rem;
    -moz-border-radius: 5rem;
    -ms-border-radius: 5rem;
    -o-border-radius: 5rem;
    line-height: 50px;
    text-align: center;
    color: #fff;
    background: var(--TextColor);
    margin: 1rem 0;
    padding: 2rem;
}
.navbar .closeIcon i {
font-size: 1.3rem;
    display: block;
}

.navbar .icons a i{
    color: var(--TextColor);
font-size: 1.5rem;
}
.navbar .icons a i:hover{
    transform: rotateY(45deg);
    -webkit-transform: rotateY(45deg);
    -moz-transform: rotateY(45deg);
    -ms-transform: rotateY(45deg);
    -o-transform: rotateY(45deg);

}
}
/* * =================End Navbar ===========================  * */

/*<!--=================Start Header========================= --> */
header{
background: #fff;
padding: 4rem 0;
position: relative;

}
header::before{
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../img/leaf2.png) ;
    position: absolute;
    background-repeat:no-repeat ;
    background-size:contain;
    background-size: 15rem;
    animation: headerImg 3s alternate infinite;
    -webkit-animation: headerImg 3s alternate infinite;
}
@keyframes headerImg {
    0%{
        transform: translateY(10%);
        -webkit-transform: translateY(10%);
        -moz-transform: translateY(10%);
        -ms-transform: translateY(10%);
        -o-transform: translateY(10%);
}
    
}
header .container-lg{
z-index: -5;
}
header .row{
 align-items: center;
 justify-content: space-between;
}
.row .content p{
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.2rem;
    font-family: var(--tfontFamily);
}
.row .content h1{
    font-size: 2.6rem;
    font-weight: 600;
    /* font-family: Mukta 'Mukta Mahee'; */
    text-transform: uppercase;
    font-family: var(--tfontFamily);
}
.row .content h1 span{
    color: var(--TextColor);
    font-family: var(--tfontFamily);
}
.image-1{
    position: relative;
    padding: 4rem 0;
}
 .image-1 .main-image{
     width: 32rem;
     transform: scale(1.4);
     -webkit-transform: scale(1.4);
     -moz-transform: scale(1.4);
     -ms-transform: scale(1.4);
     -o-transform: scale(1.4);
     z-index: 0;
}
.image-1::before{
    content: "";
    position: absolute;
    background-image: url(../img/sl_5.png);
    width: 12rem;
    height: 24rem;
    z-index: 1;
    background-size: contain;
    background-repeat: no-repeat;
    bottom: 7rem;
    left: 12.8rem;
    animation: headerImg 1s alternate infinite;
    -webkit-animation: headerImg 1s alternate infinite;
}
.image-1::after{
    content: "";
    position: absolute;
    background-image: url(../img/sl_4.png);
    width: 10rem;
    height: 14rem;
    background-size: contain;
    background-repeat: no-repeat;
    top: 0rem;
    left: 25rem;
    animation: imgBox 2s alternate infinite;
  -webkit-animation: imgBox 2s alternate infinite;
}

@keyframes imgBox {
  0%{
    transform:perspective(1000px) rotateY(50deg) translate3d(0,0,0) ;
    -webkit-transform:perspective(1000px) rotateY(50deg) translate3d(0,0,0) ;
    -moz-transform:perspective(1000px) rotateY(50deg) translate3d(0,0,0) ;
    -ms-transform:perspective(1000px) rotateY(50deg) translate3d(0,0,0) ;
    -o-transform:perspective(1000px) rotateY(50deg) translate3d(0,0,0) ;
}
100%{
  transform:perspective(1000px) rotateY(-50deg)  ;
  -webkit-transform:perspective(1000px) rotateY(-50deg)  ;
  -moz-transform:perspective(1000px) rotateY(-50deg)  ;
  -ms-transform:perspective(1000px) rotateY(-50deg)  ;
  -o-transform:perspective(1000px) rotateY(-50deg)  ;
}
}
.image-1 .img-header{
    position: absolute;
    top: 4rem;
    /* font-size: 0.1rem; */
    width: 12rem;
    left: 0;
}
/* <!--=================end Header========================= --> */

/* <!--=================media start Header========================= --> */
@media (max-width:575px) {
    .container-lg .row .col-6{
        margin: auto;
        /* padding-left: 3rem; */
    }

    .image-1 .main-image {
        width: 10rem;
    }
    .image-1::before{
        width: 4rem;
        bottom: 5rem;
        left: 2.8rem;
        height: 8rem;
    }
    .image-1 .img-header {
        top: 2rem;
        width: 4rem;
    }
    .image-1::after {
        width: 3rem;
        height: 5rem;
        top: 3rem;
        left: 8rem;
    
    }
    .row .content p {
        font-size: 1.5rem;
    }
    .row .content h1{
        font-size: 2rem;
    }
    .content button.pupulic{
        padding: 0.7rem 0.5rem;
        font-size: 1.1rem;
    }
    header::before {
        width: 7rem;
        height: 10rem;
        background-size: 4rem;
    }

}
/* <!--=================media end Header========================= --> */


/* <!--=================start Session-1========================= --> */
.session-1{ 
    width: 70rem;
    margin: auto;
}
.session-1 .card{
    background: #ffffff;
    border-radius: 10px 10px 10px 10px;
    padding: 2rem 1.3rem 3.5rem 1.3rem;
    box-shadow: 0px 0px 150px 0px #eeeeee;
    border: 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-border-radius: 3rem;
    -moz-border-radius: 3rem;
    -ms-border-radius: 3rem;
    -o-border-radius: 3rem;
    text-align: center;
    width: 16rem;
}
@media (max-width:500px) {
    .session-1 .card{
        border: 1px solid black;
        margin-bottom: 60px;
    }
    .forCheck{
        display: none;
    }
}
.session-1 .card:hover{
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
    transform: translateY(-2rem);
    -webkit-transform: translateY(-2rem);
    -moz-transform: translateY(-2rem);
    -ms-transform: translateY(-2rem);
    -o-transform: translateY(-2rem);
    background: var(--TextColor);
}

.session-1 .card .card-body{
    padding: 0;
}
.session-1 .card .card-text{
    color: #333;

}
.session-1 .card .card-title a{
    font-size: 1.2rem;
    font-weight: bolder;
    font-family: var(--Mfont-family);
    color: #333;
    text-decoration: none;


}
.session-1 .card:hover .card-body .card-text ,
.session-1 .card:hover .card-body .card-title a{
    color: #fff ;
}

@media (max-width:991px) {
    
.session-1 {
    width: 37rem;
}
}
@media (max-width:575px) {

.session-1 {
    width: 20rem;

}
} 

/* <!--=================end Session-1========================= --> */


/* <!-- ===================start about-us==================== --> */
.about-us{
padding: 3rem 0 ;
/* text-align: center; */
}
.about-us .row{
    justify-content: center;
}

.title span{
    color: var(--TextColor);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--TextColor);
}
.about-us .about-content .title h3{
    font-size: 2.4rem;
    font-weight: 500;
    color: #303745;
    padding-bottom: 2rem;
}
/* .title::after , .title-services::after{
    width: 4rem;
    height: 0.3rem;
    content: "";
    background: var(--TextColor);
    position: absolute;
    top: 8rem;
    left: 1rem;
} */
.about-us .about-content p{
    color: #6e6e6e;
    font-weight: 500;
}
.about-us .about-content ul{
list-style: none;
margin-bottom: 0;
}
.about-us .about-content ul li{
    line-height: 2rem;
    padding-left: 1rem;
}
.about-us .about-content ul li i{
    margin: 0 .5rem 0 0;
    color: var(--TextColor);
}
/* <!-- ===================end about-us==================== --> */

/* <!-- ===================start session-3==================== --> */
.session-2{
    background-image: url(../img/call-to-action-2.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 5.5rem 0 11.25rem;
    /* position: relative; */
    
}
.session-2 .title-session-2{
    width: 46rem;
    margin: auto;
    text-align: center;

}
.session-2 .title-session-2 h2{
    font-size: 2.4rem;
    font-weight: 700;
    font-family: var(--qfontFamily);
    color: #fff;
    margin-bottom: 3rem;
}
.session-2 .title-session-2 .btn{
    margin: auto;
}
@media (max-width: 991px) {

}
@media (max-width: 575px) {
    .session-2 .title-session-2 {
        width: 20rem;
        /* padding: 0 1rem; */
    }
    .session-2 .title-session-2 h2{
        font-size: 1.4rem;
        line-height: 2.4rem;
    }
}

/* <!-- ===================End session-3==================== --> */

/* <!-- ===================start session-animatad==================== --> */
.session-animatad{
    /* position: absolute; */
    box-shadow: 0 0.02rem 0.1rem 0 #5881d3;
    padding: 1.5rem 0;
    width: 80%;
    margin:-80px auto;
    background: #fff;
    text-align: center;
    border-radius: 1.5rem;
    -webkit-border-radius: 1.5rem;
    -moz-border-radius: 1.5rem;
    -ms-border-radius: 1.5rem;
    -o-border-radius: 1.5rem;
}
.session-animatad span{
    color: var(--TextColor);
    font-size: 3rem;
    font-weight: 700;

}
.session-animatad p{
    color: #282828;
    font-size: 1.5rem;
    font-weight: 600;
}


/* <!-- ===================End session-animatad==================== --> */


/* <!-- ===================stert session-services==================== --> */
.services{
    padding: 10rem 0;
}
.title-services{
    width: 100%;
    margin: auto;
    text-align: center;
    position: relative;
}
 .title-services h3::after{
    top: 9rem;
    left: 22rem;
}  
.title-services h3{
    font-size: 1.7rem;
    font-family: var(--qfont-family);
    font-weight: 600;
    /* color: var(--TextColor); */
}
.services .nav-services{
margin-top: 4rem;
}
.services .nav-services .nav-pills{
    justify-content: center;

}
.services .nav-services .nav-pills .nav-item{
    margin-right: 2rem;
}
.services .nav-services .nav-pills .nav-item .nav-link{
    /* box-shadow: 0 0 0.2rem #303745; */
    background-color: #fff;
    padding: 1rem;
    border-radius: 1rem;
    -webkit-border-radius: 0.7rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    text-align: center;
    color: #282828;

}
.services .nav-services .nav-pills .nav-item .nav-link i{
    display: block;
    font-size: 3.5rem;
    color: var(--TextColor);
    margin-bottom: 2rem;
}
.nav-pills .nav-link.active{
    background-color: transparent;
    color: #282828;
    border-bottom: 0.4rem solid  var(--TextColor);
}
.services .tab-content{
margin-top: 6rem;
}

.services .tab-content .tab-pane .img-services img{
    width: 100%;
}
.services .tab-content .tab-pane .doc-services h3{
font-size: 3rem;
color: #282828;
font-weight: 700;
margin-bottom: 1rem;

}
.services .tab-content .tab-pane .doc-services p{
    color: #a7a7a7;

}
.services .tab-content .tab-pane .doc-services ul {
list-style: none;
}
.services .tab-content .tab-pane .doc-services ul  li{
    line-height: 2;
    color: #a7a7a7;
}
.services .tab-content .tab-pane .doc-services ul  li i{
color: var(--TextColor);
margin-right: 1rem;
}
.services .tab-content .tab-pane .doc-services .pupulic{
    font-weight: 800;
    font-size: 1rem;
    padding: 0.6rem;
    /* background: #fff; */
    /* color: var(--TextColor); */
    /* z-index: 3; */
    /* border: 1px solid var(--TextColor); */
}
/* <!-- ===================end session-services==================== --> */

/* <!-- ===================start session-PROJECT==================== --> */
.project{
background: #f7f7f7;
padding: 1.5rem 0;
}
.project .title{
margin-bottom: 50px;
} 
.project .card{
    border: 0;
    /* margin-bottom: 57px; */
    margin-bottom: 3rem !important;
    /* border-radius: 10px !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    -ms-border-radius: 10px !important;
    -o-border-radius: 10px !important;  */
    position: relative;
}
.project .card .overflow-hidden{
    border-radius: 10px !important;
    -webkit-border-radius: 10px !important;
    -moz-border-radius: 10px !important;
    -ms-border-radius: 10px !important;
    -o-border-radius: 10px !important;
}
    .project .card .card-img-top{
   
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
}
.project .card:hover .card-img-top{
    transform: scale(1.1);
    -webkit-transform:scale(1.1);
    -moz-transform:scale(1.1);
    -ms-transform:scale(1.1);
    -o-transform:scale(1.1);
}

.project .card .card-body{
    position: absolute;
    width: 80%;
    background: #fff;
    text-align: center;
    left: 1.5rem;
    bottom: -2.5rem;
    box-shadow: 0 6px 25px rgb(0 0 0 / 7%);
    padding: 14px 0 22px;
    border-radius: 5px;
    -webkit-border-radius:5px;
    -moz-border-radius:5px;
    -ms-border-radius:5px;
    -o-border-radius:5px;
}
.project .card .card-body a{
    display: block;
    margin: 0;
    color: var(--LinkColor);
}

.project .card .card-body:hover a{
    color: var(--TextColor);


}

.project .card .card-body .card-title{
    color: #282828;
    font-size: 20px;
    font-weight: 700;
}
.project .card .card-body .card-text{
    margin-top: -21px;
    opacity: 0;
    visibility: hidden;
    transition: all .4s ease-in;
    -webkit-transition: all .4s ease-in;
    -moz-transition: all .4s ease-in;
    -ms-transition: all .4s ease-in;
    -o-transition: all .4s ease-in;
}
.project .card:hover .card-body .card-text{
    margin-top: 0;
    opacity: 1;
    visibility: visible;

}
.project .owl-nav{
    display: none ;
}
.project .owl-dots{
    /* background: rgb(185, 21, 21); */
    margin: auto;
    width: 40%;
    text-align: center;

}
.project button.owl-dot{
    width: 30px;
    /*background: #333;
    */height: 8px;
    border-radius:5px ;
    -webkit-border-radius:5px ;
    -moz-border-radius:5px ;
    -ms-border-radius:5px ;
    -o-border-radius:5px ;
    margin: 0 3px;
    background-color: var(--TextColor);
    transition: all 0.3s ease-in;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -ms-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    opacity: .5;
}
.project button.owl-dot.active {
    width: 40px;
    opacity: 1;
    /* background-color:hsl(158, 100%, 30%) */
}

/* <!-- ===================end session-PROJECT==================== --> */

/* <!-- ===================start session-request==================== --> */
.request{
    padding: 5rem 0;
}
.request .request-form form{
    margin-top: 2rem;
}
.request .request-form form .form-control{
    width: 100%;
    background: #fff;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    color: #646464;
    border: 0;
    box-shadow: 0 0 35px #e4eae4;
}






/* <!-- ===================end session-request==================== --> */

/* <!-- ===================start session-TEAM-MEMBERS==============--> */
.team{
    background: #fff;
    padding: 4.5rem 0;
}
.team .card{
    border: 0;
    position: relative;
    margin-top: 2rem;
}
.team .card .img-team{
    transition: all .3s ease-in;
    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -ms-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    width: 80%;
}
.team .card:hover .img-team{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.team .card .card-body{
    background: var(--TextColor);
    text-align: center;
    color: #fff;
    position: absolute;
    width: 100%;
    bottom: -3.5rem;
    transition: all .2s ease;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
}
.team .card:hover .card-body{
    bottom: -1rem;
    transform: translate(1.5);
    -webkit-transform:translate(1.5);
    -moz-transform:translate(1.5);
    -ms-transform:translate(1.5);
    -o-transform:translate(1.5);
    box-shadow: rgb(223, 215, 215) 2px 2px ;
}
.team .card .card-body .card-title{
color: #fff;
}

.team .card .card-body .icons{
    transform:scale(.5) ;
    -webkit-transform:scale(.5) ;
    -moz-transform:scale(.5) ;
    -ms-transform:scale(.5) ;
    -o-transform:scale(.5) ;
    transition:all .3s ease ;
    -webkit-transition:all .3s ease ;
    -moz-transition:all .3s ease ;
    -ms-transition:all .3s ease ;
    -o-transition:all .3s ease ;
}
.team .card .card-body:hover .icons{
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}
.team .card .card-body .icons a{
    color: #fff;
}





/* <!-- ===================end session-TEAM-MEMBERS==============--> */
/* <!--================= start testimonials=================  --> */
.testimonials{
    padding: 10rem 0 5rem 0;
    background-image: url("../img/test_2.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-bottom: 7rem;
}
.testimonials .carousel{
    position: relative;
    width: 70%;
    margin: auto;
    text-align: center;
}
.testimonials .carousel img{
    width: 5rem;
    border-radius: 50%;
     -webkit-border-radius: 50%;
     -moz-border-radius: 50%;
     -ms-border-radius: 50%;
     -o-border-radius: 50%;
    }
    .testimonials .carousel .content p{
        color: #505050;
        font-size: 20px;
        font-weight: 400;
        line-height: 35px;
    }
    .testimonials .carousel .content h4{
        color: #282828;
        font-size: 25px;
        font-weight: 600;
        line-height: 35px;
        font-family: var(--rfont-family);
        /* margin: 0px 0px 11px 0px; */
    }
    
    .testimonials .carousel .content span{
        color: #505050;
        font-size: 17px;
        font-weight: 600;
        line-height: 26px;
        
    }
    .testimonials .carousel-indicators{
        bottom: -50%;
        /* background: #009961; */
    }
.testimonials .carousel-indicators li{
    border: 1px solid var(--TextColor);
    width: 1rem;
    height: 0.75rem;
    border-radius: 5rem;
    -webkit-border-radius: 5rem;
    -moz-border-radius: 5rem;
    -ms-border-radius: 5rem;
    -o-border-radius: 5rem;
    background: #009961;
}
@media (max-width: 992px) {
    .testimonials .carousel{
        width: 100%;
    }
}
/* <!--================= end testimonials=================  --> */

/* <!-- ======================== Start BLOG ========================= --> */
.blog{
    padding: 5rem 5rem 0;
    background: #fafafa;
}
.blog .card{
    border: 0;
    box-shadow: 0 6px 25px rgb(0 0 0 / 5%);
}
.blog .card .card-top{
    position: relative;
}
.blog .card .card-top .deta{
    position: absolute;
    background: var(--TextColor);
    padding: 0px 12px 17px;
    width: 18%;
    bottom: 0;
    left: 0;
    color: #fff;
    font-size: 15px;
    text-align: center;

}
.blog .card .card-top .deta span:nth-child(1){
    font-size: 40px;
    font-weight: 700;
    padding-bottom: 4px;
}
.blog .card .card-top .deta span:nth-child(2){
font-weight: 700;
font-size: 18px;
}

.blog .card .card-body .card-title a{
    color: #282828;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
    display: inline-block;
}
.blog .card .card-body .card-text {
    color: #646464;
}
/* <!-- ======================== End BLOG ========================= --> */

/* <!-- ======================== start brand ========================= --> */
.brand{
    padding: 3rem 0;
}
.brand .box-brand{
height: 100px ;
/* position: relative;  */
display: flex;
justify-content: center;
}
.brand .box-brand .top{
    position: absolute;
    top: -100%;
    transition:all 0.3s ease ;
    -webkit-transition:all 0.3s ease ;
    -moz-transition:all 0.3s ease ;
    -ms-transition:all 0.3s ease ;
    -o-transition:all 0.3s ease ;
}
.brand .box-brand .bottom{
      position: absolute;
      bottom: 0;
      transition:all 0.3s ease-in ;
      -webkit-transition:all 0.3s ease-in ;
      -moz-transition:all 0.3s ease-in ;
      -ms-transition:all 0.3s ease-in ;
      -o-transition:all 0.3s ease-in ;
}
.brand .box-brand:hover .top{
    top: 0;
}
.brand .box-brand:hover .bottom{
    bottom: -100%;
}
/* <!-- ======================== end brand ========================= --> */



/* <!-- ======================== start footer ========================= --> */
footer{
    background-image: url("../img/footer-bg.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0;
  }
  footer .icons{
    margin-top: 20px;
  }
  footer .icons a{
    margin-right: 25px;
    font-size: 17px;
    color: #fff;
  }
  footer .icons a:hover {
      color: var(--TextColor);
  }

  footer .box-footer{
    margin-bottom:40px;
  }
  footer .box-footer .title h2{
    font-size: 25px;
    color: #fff;
  }
  footer .box-footer ul{
    list-style: none;
    color: #fff;
    list-style: none;
    color: #fff;
    margin: 25px 0 0 0;
  }
  footer .box-footer ul li{
    margin-bottom: 20px;
  }
  footer .box-footer ul li i{
    color: var(--TextColor);
    margin-right: 10px;
  }
  footer .box-footer .card{
    background-color:transparent;
    color: #fff;
    margin-top: 20px;
  }
  footer .box-footer .card img{
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
  }
  footer .box-footer .card .card-body{
    padding :0 0 0 10px;
  }
  footer .box-footer .card .card-body .card-title{
    font-size: 14px;
  }
  footer .box-footer .card .card-body .card-text{
    color: #aaa;
  }
  footer .box-footer .card .card-body .card-text i{
    color: var(--TextColor);
    margin-right: 10px;
  }
  footer .box-footer p{
    color: #fff;
    font-size: 14px;
  }
  footer .box-footer .form-group {
    position: relative;
  }
  footer .box-footer .form-group .form-control{
    border: none;
    width: 100%;
    font-size: 13px;
    padding: 23px;
    margin: 0;
    border-radius: 7px;
    background: #fff;
    color: #212121;
  }
  footer .box-footer .form-group .btn{
    background-color: var(--TextColor);
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 20%;
    padding: 0;
    color: #fff;
    border-radius: 0 5px 5px 0;
    -webkit-border-radius: 0 5px 5px 0;
    -moz-border-radius: 0 5px 5px 0;
    -ms-border-radius: 0 5px 5px 0;
    -o-border-radius: 0 5px 5px 0;
  }
  /* ================end footer  ================ */
  
  .btnTop{
    width: 40px;
    height: 40px;
    background-color: var(--TextColor);
    border-radius:50%;
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    -ms-border-radius:50%;
    -o-border-radius:50%;
    position: fixed;
    right: 2%;
    top: -100%;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    z-index: 99999;
    color: #fff !important;
  }
  .btnTop.active{
    top: calc(100% - 8%);
  }
  .loding{
    width: 100%;
    height: 100%;
    background-color: var(--TextColor);
    position:fixed;
    inset: 0;
    z-index: 999999999;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .spinner {
    width: 40px;
    height: 40px;
  
    position: relative;
    margin: 100px auto;
  }
  
  .double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #fff;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
    animation: sk-bounce 2.0s infinite ease-in-out;
}
  
  .double-bounce2 {
    -webkit-animation-delay: -1.0s;
    animation-delay: -1.0s;
  }
  
  @-webkit-keyframes sk-bounce {
    0%, 100% { -webkit-transform: scale(0.0) }
    50% { -webkit-transform: scale(1.0) }
  }
  
  @keyframes sk-bounce {
    0%, 100% { 
      transform: scale(0.0);
      -webkit-transform: scale(0.0);
    } 50% { 
      transform: scale(1.0);
      -webkit-transform: scale(1.0);
    }
  }
  p.foter-end {
    background-color: #009961;
    padding: 15px;
    text-align: center;
    text-transform: capitalize;
    color: white;
    font-size: 25px;
    display: block;
    width: 100%;
    margin-top: 50px;
}
/* <!-- ======================== end footer ========================= --> */