/*======================= CSS Start =======================*/
:root {
    --primary: #72b378;
    --secondary: #2972a9;
    --tertiary: #555555;
    --light: #DFE4FD;
    --dark: #011A41;
    --green: green;
    --blue: #4482ec;
    --animation-curve: cubic-bezier(0.12, 0.7, 0.74, 0.71);
}


/********** Body **********/

body{
    margin-top:7.8rem;
    box-sizing: border-box;
}

body a{ 
    text-transform: capitalize; 
}

*[title], .inner-prod-col p strong,.post-detail p strong{
    text-transform: capitalize;
}

/*.cap-a{*/
/*     text-transform: capitalize; */
/*}*/

body p{
    text-align:justify;
}

.txt-dis{
    color: var(--secondary);
    font-family: "Jost",sans-serif;
    font-size: 2rem;
    font-weight:600;
}

/********** Spinner And Back To Top Button ***************/

#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;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 34px;
    bottom: 215px;
    z-index: 99;
    
}

/********** Spinner And Back To Top Button ***************/

/********** Whatsapp And Call Icon ***************/

.phone {
  z-index: 2;
  /*background-color: var(--green);*/
  animation: phone 1s var(--animation-curve) infinite alternate-reverse;
  display: grid;
  justify-content: center;
  align-items: center;
  border: 0.5px white solid;
}

.material-icons i{
  color: white;
    font-size:1.7rem;
    display:flex;
    justify-content: center;
    align-items: center;
}

.phone {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  position: fixed;
  bottom:135px;
  left:40px;
  z-index: 5;
  border:none !important;
}

.circle1,.circle2 {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  position: fixed;
  animation: scaling 2s var(--animation-curve) infinite;
 bottom:135px;
  left:40px;
  z-index: 4;
}

@keyframes scaling {
  0% {
    transform: scale(1);
    background-color: var(--green);
  }
  100% {
    transform: scale(3);
    background-color: rgba(245, 0, 182, 0);
  }
}

@keyframes phone {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}
.circle1 {
  animation-delay: 0s;
}
.circle2 {
  animation-delay: 1s;
}

.en-head p{
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.en-icon i{
    background: #2972a9;
    color: #fff;
    font-size: 1.5rem;
    padding: 0.6rem 0.4rem 0.4rem 0.4rem; 
    border-radius: 6px;
    margin: 0 0.5rem;
}

.call {
  z-index: 2;
  animation: call 1s var(--animation-curve) infinite alternate-reverse;
  display: grid;
  justify-content: center;
  align-items: center;
  border: 0.5px white solid;
}

.material-icons-1 i{
  color: white;
    font-size:1.7rem;
    display:flex;
    justify-content: center;
    align-items: center;
}

.call {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  position: fixed;
  bottom:130px;
  right:40px;
  z-index: 5;
  border:none !important;
}

.circle3,.circle4 {
  height: 30px;
  width: 40px;
  /*border-radius: 50%;*/
  position: fixed;
  animation: scaling1 2s var(--animation-curve) infinite;
 bottom:135px;
  right:40px;
  z-index: 4;
}

@keyframes scaling1 {
  0% {
    transform: scale(1);
    background-color: var(--blue);
  }
  100% {
    transform: scale(3);
    background-color: rgba(245, 0, 182, 0);
  }
}

@keyframes call {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}
.circle3 {
  animation-delay: 0s;
}
.circle4 {
  animation-delay: 1s;
}

/********** Whatsapp And Call Icon End ***************/

/********** Arrow Icon ***************/
.arrow::after{
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5rem;
    transition: 0.9s;
}

.buy-cart-box{
    display:flex;
    align-items:center;
    justify-content:center;
}

.buy-cart-box i{
    font-size: 1.5rem;
    color:#000000;
}

.buy-cart{
    margin:2rem 1rem;
    padding:0.8rem 1.6rem ;
    background:darkred;
    color:#fff;
    border-radius: 2px;
    font-weight:500;
    position:relative;
}

.buy-cart:after{
    position:absolute;
    content:"";
    top:50%;
    transform:translateY(-50%);
    left: -16px ;
    background:darkred;
    width: 20px;
	height: 30px;
    clip-path: polygon(100% 0, 0 50%, 100% 100%);


}

.buy-cart:hover{
    color:#fff;
}

/********** Arrow Icon End ***************/

/********** Spacing Padding ***************/

.section-entry {
    padding: 5rem 0 5rem;
  }
  .section-entry-top {
    padding-top: 5rem;
  }
  .section-entry-bottom {
    padding-bottom: 5rem;
  }
  .section-entry-meet{
    padding: 2rem 0;
  }
  
/********** Spacing Padding End ***************/

/********** Header ***************/

.logo-meet{
    height: 60px;
    width: auto;
}

.top-bar small>i
{
    color: #fff;
}

.top-bar small>a{
    color:#fff ;
}

.bg-meet{
    background-color:#72b378;
    color: #fff;
}

.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(53, 94, 252, .07);
}

.navbar-expand-lg .navbar-nav .dropdown-menu {
    left: -80px !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: var(--tertiary);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {

    body {
        margin-top: 6rem;
    }
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/********** Header End ***************/

/********** Breadcrumb ***************/

.page-header {
    background: url(../img/header.jpg)  no-repeat;
    background-size: cover;
    padding: 5rem 0;
    background-position: right;
}

.page-header .display-3{
    color:#fff;
    text-transform: capitalize;
}

.page-header .breadcrumb-item a {
    font-weight: 500;
    border-bottom:3px solid var(--primary);
    color:var(--primary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
    font-weight: 500;
}

.breadcrumb-item.active{
    font-weight: 600;
    color: #fff9;
    letter-spacing: 1px;
    text-transform: capitalize;
}

/********** Breadcrumb End ***************/

/********** Carousel ***************/

.carousel-by-meet{
    position: relative;
    border: 20px solid transparent;
    border-top: none;
    border-bottom: none;
    border-radius: 64px;
}

.carousel-inner {
    border-radius: 15px;
}

.carousel-control-prev, .carousel-control-next{
    width:8% !important;
}

/********** Carousel End ***************/

/********** About Section ***************/

.bakground-services{
  background-image: radial-gradient(500px 500px at 95% 0%, rgb(253 186 43 / 41%) 0%, rgba(253, 186, 43, 0) 100%), radial-gradient(1000px 700px at 0% 95%, rgba(120, 213, 242, 0.3) 0%, rgba(253, 186, 43, 0) 100%);
    padding: 3rem 0;
}

.color-red{
    color: #b50000;
    font-weight: bold;
}
.padd-serv{
    padding: 1rem 0.5rem;
    height: 100%;
}

.padd-serv img{
    width: 50px;
    height: auto;
}

.en-head{
    padding-left: 1rem;
}
.ser-1{
    background-color: rgb(233, 250, 238);
}

.ser-2{
    background-color:#fbeadf;
}


.ser-3{
    background-color:rgb(241, 237, 253);
}

.ser-4{
    background-color:rgb(252, 237, 242);
}

.about-short-des{
    padding: 1rem;
    background-color:#009688;
    font-weight: 500;
    color: white;
}

.more-about{
    padding: 1rem;
    border: 5px soild black;
    height: 100%;
    font-weight: 600;
    font-size: 1rem;
}

.more-about img{
    width: 60px;
    height: 60px;
    animation: float 3s ease-in-out infinite;
}


.clr-cap-1{
    background: white;
    border-radius: 50px 0 0 50px;
    border: 1px solid black;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.clr-cap-1 img{
    margin-left: 1rem;
}
.clr-cap-2{
    background:#faffcc;
    border-radius: 0 50px 50px 0;
    border: 1px solid black;
    border-left: none;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.clr-cap-2 img{
    margin-right: 1rem;
}

/********** About Section End ***************/

/********** Product Section ***************/

.bg-pro{
    background-image:linear-gradient(#ecf4fade,#ecf4fade);
    background-size: contain;
}

.product-box{
    padding: 1rem;
    background-color: white;
    border-radius: 25px;
    height: 100%;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    background-image: radial-gradient(150px 150px at 95% 0%, rgba(253, 186, 43, 0.3) 0%, rgba(253, 186, 43, 0) 100%), radial-gradient(150px 150px at 0% 95%, rgba(120, 213, 242, 0.3) 0%, rgba(253, 186, 43, 0) 100%);
}

.product-box img{
    border-radius: 15px;
   
}

.prod-name{
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    padding-top: 1rem ;
    color: var(--secondary);
}

.arrow::after {

    color: var(--primary);
}

.product-box i{
    font-size: 2.5rem;
    border: 4px solid #0005;
    border-radius: 100%;
    padding: 2rem;
    margin-bottom:1rem;
    color:var(--secondary);
}

.product-box .all-pro-box{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.product-box .all-pro-btn{
    display:block;
    font-size:1.5rem;
    font-weight: 600;
}

/********** Product Section End ***************/

/********** Choose Section ***************/

.back-why-color{
     background: #ffc078;
}
.why-chooses{
    height:100%;
    padding: 1rem;
}

.why-border{
    border: 1px solid #f5c895;
}

.why-section-entry{
    padding: 2rem 1rem;
    background:#f5e7ba;
}

.why-chooses img{
    width: 100px;
    height: 100px;
    margin-right: 1rem;
    animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0% {
    transform: translatey(0px);
  }
  30% {
    transform: translatey(-10px);
  }
  70% {
    transform: translatey(10px);
  }
   100% {
    transform: translatey(0px);
  }
}

.why-choose-points{
    padding: 1rem;
    background-color: white;
}

.why-choose-points p:nth-child(1){
    font-weight:bold;
    color:#2972a9;
}
.why-choose-head p:nth-child(1){
  font-size: 1.5rem;   
}

.why-choose-head p:nth-child(2){
  font-weight:500;   
}

.points-why p:nth-child(1){
    padding: 0.5rem 1rem;
    margin-right: 0.5rem;
    background-color:#b50000;
    color: white;
    font-weight: bolder;
    border-radius: 20px;
}

/********** Choose Section End ***************/

/********** All Products Section ***************/

.allprod-wrapper{
    /*background-image:linear-gradient(rgb(255, 248, 227) 0%, rgba(255, 255, 255, 0) 100%);*/
    background-image: linear-gradient(rgb(245 231 186) 40%, rgba(255, 255, 255, 0) 60%);
}

.allprod-box {
    position:relative;
    text-align:center;
    padding: 0 0.5rem;
    background:#fff;
    border-radius: 10px;
}

.allprod-box a{
    color: #fff;
    background: #7bbd3f;
    padding: 0.4rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 1rem 0 0 0;
    display: inline-block;
}

.allprod-box a::after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 0.5rem;
    transition: 0.9s;
    color: #fff;
}

.owl-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #dc3545;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.inner-choose .owl-carousel .owl-nav .owl-prev{
    position:absolute;
    top:50%; left:-35px;
    transform:translateY(-50%);
}
.inner-choose .owl-carousel .owl-nav .owl-next{
    position:absolute;
    top:50%; right:-35px;
    transform:translateY(-50%);
}

.owl-carousel .owl-nav .owl-prev:hover,
.owl-carousel .owl-nav .owl-next:hover {
    background: #ba0f1f;
    color: #fff;
}

.carousel-control-next-icon,
.carousel-control-prev-icon 
{
    filter: brightness(0.1);
}

/********** All Products Section End ***************/

/********** Testimonials Section ***************/

.product-sec .para-txt{
    text-align:justify;
    color: white;
}
.btn-new {
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    text-align: center;
    background-color: var(--secondary);
    color: white;
    display: inline-block;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.btn-new:hover{
    background-color: #2972a9;
    color:white!important;
}

.btn-new p{
    margin-bottom:0;
}

.product-sec{
position: relative;    
padding: 1.5rem 0;
z-index:1;
}

.product-sec:before{
    content: "";
    width: 160%;
    z-index: -1;
    left: -3rem;
    top: -1rem;
    position: absolute;
    background-color: #3fbbc0;
    height: 105%;
}

@media only screen and (max-width: 991px){
    .product-sec:before {
        width: 116%;
    }
}

@media only screen and (max-width: 991px){
    .clr-cap-1{
        border-radius: 50px;
    }
    .clr-cap-2 {
       border-radius: 50px;
       border: 1px solid black;
    }
}

.project-item{
    border-radius:8px;
    background-color: white;
    padding: 1rem;
}

.testi-name{
    color: var(--secondary);
    font-size: 1.25rem;
    font-weight: 600;
}

.project-item small{
    font-weight: 600;
    padding: 0 1.5rem;
    color: grey;
}

/********** Testimonials Section End ***************/

/********** Company Profile Page ***************/

.page-me{
    background: linear-gradient( #ffffffe3 , #ffffffe3 );
    background-size: contain;
}

/********** Company Profile Page End ***************/

/********** Our Product Page ***************/

.card{
    padding:1rem;
    height:100%;
    background: linear-gradient( #ffffffe3 , #ffffffe3 );
}

/********** Our Product Page End ***************/

/********** Single Product Page ***************/
/********** Single Product Page End ***************/

/********** SiteMap ***************/

.meet-business{
    display: block;
    color:#fff;
    font-size: 1.2rem;
    font-weight: 500;
    background: linear-gradient( #2972a9c4 , var(--secondary) );
    background-repeat: repeat;
    padding: 0.5rem;
    border-radius: 14px;
    border: 1px solid lightgrey;
    height: 100%;
    background-size: 450px 450px;
}

.meet-business:hover{
    color:#fff;
    transition:0.3s;
    background-size: 650px 650px;
}

/********** SiteMap End ***************/

/********** Contact Page ***************/

.contact-box{
    padding:2rem 0.8rem;
    border-radius:8px;
    background: linear-gradient( #72b378f2 , #72b378f2 );
    height:100%;
}

.contact-box i{
    font-size: 2rem;
    color: #fff;
}

.contact-box a ,
.contact-box a:hover{
    color:#000 !important;
    font-weight: 500;
}

.contact-box .contact-h4{
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
    padding: 0.8rem 0;
}

/********** Contact Page End ***************/

/********** Footer ***************/

footer{
    background-repeat: no-repeat;
    background: linear-gradient(45deg, black 30%, transparent) ;
    background-size: cover;
}

.footer-bg p a{
    color: white;
}

.footer .row{
    padding:1rem 0;
}

.footer , .f-contact-link , .btn-link{
    font-size:1.15rem;
}

.f-contact-link{
    background-color:var(--primary);
    color:#000;
    border-radius:0;
    box-shadow:7px 7px 0px #fff;
}

.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 {
    text-decoration: underline;
    box-shadow: none;
}

.footer-link{
    display:inline-block;
    color:#fff;
    font-size:1.05rem;
    font-weight:600;
    padding: 0 1rem;
    /*margin: 0 1rem;*/
    border-left: 3px solid #fff;
    border-radius:0;
}

.footer-link:hover{
    color:#fff9;
}

.footer-link:nth-child(1){
    border-left:none;
}

.img-fluid.icons{
    height: 40px;
    padding:0.2rem;
    border-radius:6px;
    background-color:#fff;
}

.ft-logo-meet{
    height: 90px;
    width: auto;
    padding: 0.8rem 1rem;
    background-color: #fff;
    border-radius: 8px;
}


.copyright {
    color: var(--light);
    border-top:2px solid #fff;
}

.copyright a {
    color: var(--light);
}

.copyright a:hover {
    color: var(--primary);
}

.content-pro-below{
    background-color:#17414f;
    border-radius: 20px;
    padding: 1rem;
}

.content-pro-below h3{
    text-align: center;
}

/********** Footer End ***************/

.display-3.blog{
        font-size: 2.5rem;
}