html {
  scroll-behavior: smooth;

}

::-webkit-scrollbar {
    width: 10px;
}

::selection {
    background-color: #0cb79d;
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
}

::-moz-selection {
    background-color: #0cb79d;
    color: #ffffff;
    -webkit-text-fill-color: #ffffff;

}

::-webkit-selection {
    background-color: #0cb79d;
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, rgba(12,183,157,1) 0%, rgba(153,206,108,1) 80%);
}

/* ::-webkit-scrollbar-thumb:hover {
    background: #ddd;
} */

body {
    font-family: 'Montserrat', sans-serif;
}

.main-color {
    color: #0cb79d;
}

/* any link to read */
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: inherit;
}

p {
    line-height: 1.8;
}

.btn {
    padding: 0.65rem 2.5rem;
    box-shadow: none;
    color: #fff;
    background: linear-gradient(90deg, rgba(12,183,157,1) 0%, rgba(153,206,108,1) 80%);
    border: none;
}

.btn:focus {
    outline: 0;
    box-shadow: none;
}

.btn .svg-inline--fa {
    vertical-align: middle;
    margin-left: 10px;
}

.btn:hover {
    background: transparent;
}


.mini-title {
    position: relative;
    font-size: 13px;
    font-weight: 700;
    line-height: 1em;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-left: 1.75rem;
}

.mini-title::before {
    position: absolute;
    content: '';
    left: 0px;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50px;
    background-color: #0cb79d;
    z-index: 1;
}


.mini-title::after {
    position: absolute;
    content: '';
    left: 5px;
    top: 0px;
    width: 14px;
    height: 14px;
    z-index: 0;
    border-radius: 50px;
    background-color: #99ce6c;
}

.title {
    font-size: 2.7rem;
    font-weight: 800;
}


.section-link a {
    font-size: 1.2rem;
    font-weight: 400;
    color: #0cb79d;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    position: relative;
    padding-bottom: 3px;
}

.section-link a::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    transition: all 0.3s ease-in-out;
    background: #0cb79d;

}

.section-link a span {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 0;
    font-weight: 700;
}

.section-link svg {
    max-width: 25px;
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}

.section-link a:hover::before {
    width: 100%;
}

.section-link a:hover svg {
    transform: rotate(360deg);
}
@keyframes linkColorAnimation {
    0% {
        background-size: 400% 400%;
        background-position: 0 100%
    }

    15% {
        background-size: 170% 400%;
        background-position: 100% 100%
    }

    100% {
        background-size: 240% 400%;
        background-position: 100% 100%
    }
}


/*--- navbar styling ---*/
header.navbar {
    background-color: transparent;
    padding: 0;
}

header .navbar-toggler {
    border-radius: 0;
}

header .navbar-toggler:focus {
    box-shadow: none;
}

header.navbar .navbar-brand {
    margin-left: 1rem;
}
.navbar-brand::before {
    content: "";
    position: absolute;
    background: #fff;
    width: 250px;
    transform: skew(-26deg);
    height: 85px;
    top:0 ;
    left: 0;
    z-index: -1;
    -webkit-transform-origin-y: top;
}
header.navbar .navbar-brand img {
    height: 100%;
    width: 130px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

header.navbar-light .navbar-nav .nav-link {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 600;
    margin: 0 0.75rem;
    padding: 5px 0;
    transition: all .3s ease-in-out;
    position: relative;
    font-size: 15px;
    color: #fff;
}

header.navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(12,183,157,1) 0%, rgba(153,206,108,1) 80%);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

header.navbar-light .navbar-nav .nav-link:hover::before {
    width: 100%;
}

header.navbar-light .navbar-nav .active .nav-link::before {
    width: 100%;
}

/*header.navbar.navbar-light .navbar-nav .active .nav-link,*/
/*header.scroll.navbar-light .navbar-nav .active .nav-link {*/
/*    color: #0cb79d;*/

/*}*/
header.navbar-light .navbar-nav .nav-link:focus,
header.navbar-light .navbar-nav .nav-link:hover,
header.navbar-light.scroll .navbar-nav .nav-link:focus,
header.navbar-light.scroll .navbar-nav .nav-link:hover {
    background: linear-gradient(90deg, rgba(12,183,157,1) 0%, rgba(153,206,108,1) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: 5s forwards linkColorAnimation;

}
header .dropdown:hover .dropdown-menu {
    display: block;
}

header .dropdown-item {
    font-weight: 700;
    transition: all .3s ease-in-out;
}

header .dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item.active {
    color: black !important;
    background: #0cb79d;
    padding-left: 30px;
}

header.navbar .search svg {
    text-transform: uppercase;
    font-size: 1.1rem;
    font-weight: 900;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
    color: #ffffffbf;
}

header.navbar .search:hover svg {
    color: #0cb79d;
}

header.scroll {
    background-color: #fff;
    box-shadow: 0 0 10px #00000029;
    color: black !important;
}

header.scroll .navbar-brand img {
    content: url('../images/logo.png');
    width: 125px;
}

header.scroll.navbar-light .navbar-nav .nav-link {
    color: black;
}

/*header.navbar.scroll .search {*/
/*    color: black;*/

/*}*/

.contain {
    display: flex;
    flex-wrap: inherit;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 85px;
}


.form-control {
    border: 0;
    border-radius: 0;
    font-size: 1.5rem;
    text-align: center;
    padding: 20px;

}

.form-control:focus {
    box-shadow: none;
    border: 0;

}

/*------------ inner header ----------*/
.inner-header figure {
    margin: 0;
    position: relative;
}

.inner-header figure img {
    height: 65vh;
    width: 100%;
    object-fit: cover;
}

.inner-header figure::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000b3;
    z-index: 1;
}

.inner-header figure figcaption {
    position: absolute;
    padding: 20px;
    right: 15%;
    left: 15%;
    bottom: 20%;
    z-index: 1;
    text-align: center;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f2f3f4;
    /* text-shadow: 0 3px 20px rgba(0,0,0,.9); */
}

.inner-header figure figcaption .breadcrumb-item {
    display: flex;
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.51);

}

.inner-header figure figcaption h2 {
    color: #fff;
    font-weight: 900;

}

.inner-header figure figcaption .breadcrumb-item a {
    padding: 0 5px;
    transition: all 0.3s ease-in-out;
    background: transparent;
}

.inner-header figure figcaption .breadcrumb-item a:hover {
    color: #0cb79d;

    animation: 6s forwards linkColorAnimation;
}

.inner-header figure figcaption .breadcrumb-item.active {
    color: #0cb79d;

}

.inner-header figure figcaption .breadcrumb-item+.breadcrumb-item::before {
    color: #99ce6c;
}

/*-------- slider ----------*/

.slider .item figure {
    width: 100%;
    overflow: hidden;
    margin: 0;
    position: relative;
}

.slider .item figure img {
    height: 100vh;
    object-fit: cover;
}

@keyframes zoomEffect {
    from {
        transform: scale(1, 1)
    }

    to {
        transform: scale(2)
    }
}

.slider .active img {
    animation: 45s ease normal none infinite zoomEffect;
    /* transform: translate3d(0px, 0px, 0px) scale(1); */
}

.slider .item figure:after {
    background: #01010166;
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slider .item figcaption {
    /* width: 80%;
    margin: auto; */
    z-index: 2;
    position: absolute;
    top: 40%;
    left: 10%;
    right: 0;
    text-transform: capitalize;
    color: #fff;
    overflow: hidden;
    /* text-shadow: 5px 1px 9px black; */
}

.slider .item figcaption .slide-title-1 {
    padding-left: 30px;
    position: relative;
}

.slide-title-1::before {
    position: absolute;
    content: '';
    left: 0px;
    top: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50px;
    background-color: #0cb79d;
}

.slide-title-1::after {
    position: absolute;
    content: '';
    left: 5px;
    top: 0px;
    width: 14px;
    height: 14px;
    z-index: -1;
    /* opacity: 0.40; */
    border-radius: 50px;
    background-color: #99ce6c;
}

.slider .owl-item.active .slide-title-1 {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.3s;
}

.slider .item figcaption .slide-title-2 {
    font-weight: 800;
    font-size: 65px;
    /* width: 533px; */
}

.slider .owl-item.active .slide-title-2 {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeInDown;
    animation-delay: 0.5s;
}

.slider .item figcaption .slide-text {
    font-size: 20px;
}

.slider .owl-item.active .slide-text {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: slideInDown;
    animation-delay: 0.4s;
}

.slider .owl-item.active figcaption::before {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: slideInDown;
    animation-delay: 0.5s;
}

.owl-theme .owl-dots .owl-dot span {
    /* border: 2px solid linear-gradient(90deg, rgb(129, 21, 255) 0px, rgb(255, 42, 208) 50%, rgb(255, 143, 42) 100%) ;; */
    width: 13px !important;
    height: 13px !important;
}

.owl-theme .owl-nav {
    margin-top: 0 !important;
}

.slider .owl-nav .owl-prev,
.slider .owl-nav .owl-next {
    position: absolute;
    opacity: 0;
    transition: all 0.4s ease-out;
    background-color: transparent !important;

}

.slider .owl-nav .owl-prev {
    left: 40px;
}

.slider .owl-nav .owl-next {
    right: 40px;
}

.slider:hover .owl-prev {
    left: 20px;
    opacity: 1;
}

.slider:hover .owl-next {
    right: 20px;
    opacity: 1;
}

.slider .owl-nav span {
    font-size: 3.3em;
    color: #0cb79d;
}

.slider .owl-nav span:hover {
    color: #0cb79d;

}

.slider .owl-nav:focus {
    outline: 0;
}

.slider .owl-theme .owl-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #99ce6c !important;
}

/*------ about us section ------*/
.counters {
    background: #f2f3f4;
}

/*------- brands section ------*/
/*.category{*/
        /*box-shadow: 0 0 10px 0 rgba(0,0,0,.5);*/
        /*border-radius: 1.5rem;*/
/*        position:relative;*/
/*}*/
/*figcaption.content {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    right: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    top: 0;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    flex-direction: column;*/
/*    background: rgb(0 0 0 / 70%);*/
/*    color: #fff;*/
/*    transition: 0.3s ease-in-out;*/
/*    text-align: center;*/
/*}*/
/*.hover-border {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    overflow: hidden;*/
/*}*/

/*.hover-border div {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    top: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*}*/

/*.hover-border div::before {*/
/*    position: absolute;*/
/*    content: "";*/
/*    background: #0cb79d;*/
/*    height: 4px;*/
/*    width: 100%;*/
/*    left: 0;*/
/*    top: 0;*/
/*    transform: translateX(-100%);*/
/*    transition: 0.3s;*/
/*}*/

/*.hover-border::after {*/
/*    position: absolute;*/
/*    content: "";*/
/*    background: #0cb79d;*/
/*    width: 4px;*/
/*    height: 100%;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    transform: translateY(-100%);*/
/*    transition: 0.3s 0.3s;*/
/*}*/

/*.hover-border div::after {*/
/*    position: absolute;*/
/*    content: "";*/
/*    background: #0cb79d;*/
/*    width: 100%;*/
/*    height: 4px;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    transform: translateX(100%);*/
/*    transition: 0.3s 0.5s;*/
/*}*/

/*.hover-border::before {*/
/*    position: absolute;*/
/*    content: "";*/
/*    background: #0cb79d;*/
/*    width: 4px;*/
/*    height: 100%;*/
/*    left: 0;*/
/*    top: 0;*/
/*    transform: translateY(100%);*/
/*    transition: 0.3s 0.9s;*/
/*}*/
/*.category:hover .hover-border::before,*/
/*.category:hover .hover-border::after,*/
/*.category:hover .hover-border div::before,*/
/*.category:hover .hover-border div::after {*/
/*    transform: translateX(0);*/
/*}*/
/*.category:hover figcaption.content{*/
/*        background: rgb(0 0 0 / 50%);*/

/*}*/
/*.category:hover img {*/
/*    transform: scale(1.09);*/
/*}*/
/*.category img{*/
/*    height: 400px;*/
/*    width: 100%;*/
/*    object-fit: cover;*/
/*    transition: 0.3s ease-in-out;*/
/*}*/

.category {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 1.25rem;


}

.category img {
    width: 100%;
    height: 375px;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.22, .61, .36, 1);
    transform: scale(1.01);

}

.category .category-content {
    position: absolute;
    left: 1.25rem;
    bottom: 1.25rem;
    width: calc(100% - 2.5rem);
    color: #fff;
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(14px) brightness(92%);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 1.25rem;
    padding: 1.35rem 2rem 1.5rem;
}

.category:hover img {
    transform: scale(1.1);
}

.arrow svg {
    transform: rotate(-50deg);
    opacity: 0.7;
}

.arrow {
    border: 1px solid rgba(255, 255, 255, .1);
    font-weight: 200;
    width: 2rem;
    height: 2rem;
    border-radius: 0.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #0cb79d;
    color: #fff;
}
.category-title{
    font-size: 1.15rem;
}
/*----- blogs section & blogs details------*/

.blogs figure,
.blog-details figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    border-radius: 1.25rem;

}

.date {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    width: 100px;
    height: 100px;
    background: #0a0a0a;
    text-align: center;
    color: #fff;
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(14px) brightness(92%);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 1.25rem;
}



.date .day {
    font-size: 1.75rem;
    font-weight: 600;
    font-family: "Sora", system-ui;

}

.blog-details figure img {
    object-fit: cover;
    width: 100%;
    height: 500px;
    object-position: center;
    transition: transform .8s cubic-bezier(.22, .61, .36, 1);
}

.blogs figure img {
    object-fit: cover;
    width: 100%;
    height: 325px;
    object-position: center;
    transition: transform .8s cubic-bezier(.22, .61, .36, 1);
}

.blogs .figcaption {
    position: relative;
    min-height: 150px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
}

.blog-title {
    font-weight: 800;
    transition: all 0.3s ease-in-out;
}

.blogs .see {
    display: block;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    position: relative;
    padding-bottom: 0.35rem;
}

.blogs .see::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 40%;
    height: 3px;
    background-color: #0cb79d;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

.blogs .blog:hover figure img {
    transform: scale(1.1);
}

.blog:hover .see {
    color: #0cb79d;
}

/*----- Events section ------*/

/*.events figure {*/
/*    position: relative;*/
/*    overflow: hidden;*/
/*    margin: 0;*/
/*}*/

/*.events .date {*/
/*    position: absolute;*/
/*    left: 0;*/
/*    bottom: 0;*/
/*    width: 75px;*/
/*    height: 75px;*/
    /* background: linear-gradient(90deg, rgb(129, 21, 255) 0px, rgb(255, 42, 208) 50%, rgb(255, 143, 42) 100%) ; */
/*    background: #0a0a0a;*/
/*    text-align: center;*/
/*    color: #fff;*/

/*}*/

/*.events .date .day {*/
/*    font-size: 1.75rem;*/
/*    font-weight: 600;*/
/*    font-family: Merriweather, serif;*/

/*}*/

/*.events figure img {*/
/*    object-fit: cover;*/
/*    width: 100%;*/
/*    height: 275px;*/
/*    object-position: center;*/
/*    transition: 0.4s ease-in-out;*/
/*}*/

/*.events .figcaption {*/
/*    position: relative;*/
/*    min-height: 150px;*/
/*    display: flex;*/
/*    justify-content: space-between;*/
/*    flex-direction: column;*/
/*    align-items: flex-start;*/
/*}*/

/*.event-title {*/
/*    font-weight: 800;*/
/*    transition: all 0.3s ease-in-out;*/
/*}*/

/*.events .see {*/
/*    display: block;*/
/*    padding-top: 10px;*/
/*    font-weight: 600;*/
/*    transition: all 0.3s ease-in-out;*/

/*}*/

/*.events .see .fa-angle-double-right {*/
/*    margin-bottom: -2px;*/
/*    transition: all 0.3s ease-in-out;*/
/*}*/

/*.events .event:hover figure img {*/
/*    transform: scale(1.1);*/
/*}*/

/*.event:hover .see {*/
/*    color: #0cb79d;*/
/*    margin-right: 30px;*/
/*}*/

/*----- Products section -----*/
/* .events{
    background-image: url(../images/h1-background-img-2.jpg);
    background-position: bottom center;
} */

/*.products::before {*/
/*    position: absolute;*/
/*    content: "";*/
/*    background: #0a0a0abd;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    left: 0;*/
/*    top: 0;*/
/*    background-attachment: fixed;*/
/*    z-index: -1;*/
/*}*/

.nav-pills .nav-link {
    background-color: #f2f3f4;
    color: black;
    /*border: 2px solid transparent;*/
    border-radius: 0;
    margin: 15px 0 10px 20px;
    padding: 10px;
    min-width: 170px;
    border-radius: .25rem;
    
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    /* border: 2px solid #fff; */
    background: linear-gradient(90deg, rgba(12,183,157,1) 0%, rgba(153,206,108,1) 80%);
    color: #fff;
}

.products-page .nav-pills .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 20px;
    padding: 1rem;
}

.products-page .nav-pills .nav-link svg {
    transition: all 0.2s ease-in-out;
}

.products-page .nav-pills .nav-link:hover svg,
.nav-pills .nav-link.active svg,
.nav-pills .show>.nav-link svg {
    transform: rotate(-50deg);
}
.card figure img {
     height: 350px;
    object-fit: cover;
    width: 100%;
    background: #f2f3f4;
    transition: 0.3s ease-in-out;
}
.card figure:hover img {
    transform: scale(1.15);
}
.card figure{
    overflow: hidden;
}


/* .products .tab-pane {
    min-height: 430px;
} */

.product-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    background: #fff;
}

.pro-caption {
    position: absolute;
    padding: 30px 20px;
    bottom: 0;
}

.product-btn {
    display: inline-block;
    color: white;
    padding: 5px 10px;
    background: #0cb79d;
    margin-bottom: 0;
    transition: all 0.1s ease-in-out;
}

.pro-caption h5 {
    padding: 5px 20px;
    transition: all 0.1s ease-in-out;
    background: #0cb79d;
    color: #fff;
}

.products .section-link a {
    color: #fff;
}
.main-img img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    background: #f2f3f4;
}
.project-gallery{
    background: #f2f3f4;
    padding: 40px;
}
.project-gallery .prev,
.next {
    cursor: pointer;
    position: absolute;
    bottom: 50%;
    color: #0cb79d;
    font-weight: 700;
    font-size: 40px;
    margin: 0 10px;
    text-decoration: none;
    user-select: none;
}

.project-gallery .next {
    right: 0;
}

.project-gallery .prev {
    left: 0;
}

.project-gallery .prev:hover,
.project-gallery .next:hover {
    color: #0cb79d;
}

.project-gallery .mySlides {
    height: 400px;

}
.project-gallery .mySlides img{
        height: 400px;
        object-fit: contain;
}
.project-gallery .column {
    display: flex;
    justify-content: space-around;
    width: 20%;
    margin: 0;
    padding: 0 5px;
}

.project-gallery .row:after {
    content: "";
    display: table;
    clear: both;
}

.project-gallery .mySlides .slide {
    height: 100%;
    object-fit: contain;
    object-position: center;
    /*border-radius: 25px;*/
}

.project-gallery .demo {
    height: 125px;
    object-fit: cover;
    opacity: 0.6;
    margin-top: 10px;
    /* border-radius: 15px; */
    border: 2px solid green;
}

.project-gallery .active,
.demo:hover {
    opacity: 1;
}

.product-details-tabs iframe{
    width: 100%;
    height: 550px;
}
.product-details-tabs .form{
    border-radius: 0;
}
.product-details-tabs .form textarea{
    height: 250px;
}
/*------ counter -------*/

.counters {
    text-align: center;
}

.counter {
    color: #707070;
}

.counters .counter-no {
    color: #0cb79d;
    font-size: 50px;
    font-weight: bold;
}

.counters .counter-no span,
.counter h5 {
    color: #000;
}

/*------- contact section ------*/
.form {
    background-color: rgba(255, 255, 255, 0);
    backdrop-filter: blur(14px) brightness(92%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .06);
    overflow: hidden;
}

.form .form-data {
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    padding: 1rem 0;
    width: 100%;
    margin-bottom: 1.25rem;
    color: #fff;
    outline: 0;
    background: transparent;
}



.contact input::placeholder,
.contact textarea::placeholder {
    color: #fff;
}

.contact ul li {
    margin-bottom: 0.75rem;
}

.contact .contact-title {
    color: #0cb79d;
    font-weight: 700;
}

.social-media a {
    padding-right: 0.75rem;
    font-size: 25px;
}

/*.contact.page {*/
/*    background: none;*/
/*    color: #40403f;*/
/*}*/

.contact.page input::placeholder,
.contact.page textarea::placeholder {
    color: #40403f;
}

.contact.page .form {
    backdrop-filter: none;
    background: #f2f3f4;

}

.contact.page .form .form-data {
    border-bottom: 1px solid #7575755e;
    color: #40403f;
}

.contact textarea.form-data,
.contact.contact.page textarea.form-data {
    min-height: 175px;
    border-bottom: none;
}

input:-internal-autofill-selected {
    background: transparent !important;
}

.contact-map {
    height: 450px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.social-media a {
    padding-right: 10px;
    font-size: 25px;
}

/*------ projects section ----------*/
.projects{
    color:#FFF!important ;
}
.projects figure {
    position: relative;
    overflow: hidden;
}

.projects img {
    width: 100%;
    height: 375px;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.projects figure:hover .magnify {
    opacity: 1;
}

.projects figure:hover img {
    transform: scale(1.1);
}

.lightbox .lb-image,
.lightbox .lb-outerContainer {
    border: 0 !important;
}

.lb-data .lb-details {
    text-align: center !important;
    width: 100% !important;
    padding: 10px !important;
}

.lb-data .lb-caption {
    font-size: 16px !important;
}

.lb-closeContainer .lb-close {
    position: absolute !important;
    top: -30px !important;
    right: 5rem !important;
}

.magnify {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    background: #0a0a0a75;
    transition: 0.3s ease-in-out;
    flex-direction: column;
    text-align: center;
}

.magnify svg {
    font-size: 1.5rem;
    margin: 10px;
}

/*------ clients logos ------*/
.our-clients{
    background: #f2f3f4;
}
.our-clients .clients-logos img {
    object-fit: contain;
    height: 100px;
    width: 100px !important;
    /* border: 3px solid #d7d6e14a; */
}

.client-carousel.owl-carousel .owl-nav .owl-prev,
.projects .owl-carousel .owl-nav .owl-prev {
    left: -2%;
}

.client-carousel.owl-carousel .owl-nav .owl-next,
.projects .owl-carousel .owl-nav .owl-next {
    right: -2%;
}

.owl-carousel .owl-nav .owl-prev {
    position: absolute;
    background-color: transparent !important;
    top: 0;
    bottom: 0;
    margin: auto;
}

.owl-carousel .owl-nav .owl-next {

    position: absolute;
    background-color: transparent !important;
    top: 0;
    bottom: 0;
    margin: auto;
}

.owl-nav span {
    font-size: 4rem;
    color: #fff;
    margin: 10px -5px;
}

/* products page */
.products-page .product-name h5{
    position: relative;
    width: fit-content;
    padding-bottom: 0.25rem;
}
.products-page .product-name h5:hover {
    background: linear-gradient(90deg, rgba(12, 183, 157, 1) 0%, rgba(153, 206, 108, 1) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: 5s forwards linkColorAnimation;
    position: relative;
    
}
.products-page .product-name h5::before {

    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(12, 183, 157, 1) 0%, rgba(153, 206, 108, 1) 80%);
    transition: all 0.3s ease-in-out;
    z-index: 1;
}
.products-page .product-name h5:hover::before {
    width: 100%;
}
.product-details-item {
    margin-bottom: 20px;
    background: #f2f3f4;
    padding: 20px;
}

.product-details-item-img img {
    min-width: 100%;
    object-fit: contain;
    height: 335px;

}

.product-details-text h3 {
    font-weight: 700;
    margin-bottom: 16px;
}

.product-item {
    margin-bottom: 50px;
    border: 1px solid #252525;
    padding: 20px;
    background: #f2f3f4;
    display: inline-block;
}

.product-item:hover img {
    transform: scale(1.05);
}

.product-item:hover .product-item-text a {
    color: #0cb79d;

}

.product-item-img {
    position: relative;
    overflow: hidden;
    margin: 0;
}

.product-item-img img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.product-item-text {
    text-align: center;
    padding-top: 15px;
    color: #000;
}

.product-item-text a {
    transition: all 0.3s ease-in-out;
}

.share a {
    margin: 0 20px;
}
.product-details-item-slider img {
    height: 110px;
    object-fit: cover;
    cursor: pointer;

}
/*----- footer -----*/
footer {
    position: relative;
    background-color: #f2f3f4;
}

footer figure img {
    height: 100%;
    width: 150px;
    object-fit: contain;

}

/* footer::before {
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
} */
.footer-title {
    padding-left: 1.25rem;
    margin: 0;
}

footer .footer-title::before {
    position: absolute;
    content: '';
    left: 0px;
    top: 10px;
    width: 14px;
    height: 14px;
    border-radius: 50px;
    background-color: #0cb79d;
    z-index: 2;

}

footer .footer-title::after {
    position: absolute;
    content: '';
    left: 5px;
    top: 7px;
    width: 14px;
    height: 14px;
    z-index: 1;
    /* opacity: 0.40; */
    border-radius: 50px;
    background-color: #99ce6c;
}

footer li {
    padding-bottom: 15px;
}

footer .copy {
    border-top: 1px solid #252525;
}

footer .copy div {
    width: 35%;
    padding-top: 20px;
    margin: auto;
}

footer * a:hover {
    color: #0cb79d;

}

@media(max-width: 1024px) {}

@media(max-width: 768px) {}

@media(max-width: 640px) {}

@media(max-width: 480px) {
    .slider .item figcaption .slide-title-2 {
        font-size: 40px;
        /* width: 305px; */
    }
}

@media(max-width: 360px) {}

/*------------ about page ------------*/
.about-img {
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
}

.about-img img {
    width: 100%;
    height: 500px;
    object-fit: cover;
        border-radius: 27px;
}

.about-img figcaption {
    background: linear-gradient(90deg, rgb(129, 21, 255) 0px, rgb(255, 42, 208) 50%, rgb(255, 143, 42) 100%);
    text-align: center;
    position: absolute;
    bottom: 25px;
    left: -50px;
    color: white;
    display: flex;
    width: 160px;
    height: 160px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.icon {
    font-size: 2.2rem;
    width: 100px;
    margin: 20px auto;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    position: relative;
    background: #fff;
    border: 2px dotted #fff;
}

.icon::before {
    content: "";
    background: linear-gradient(90deg, rgb(95 41 94) 0px, rgb(189 60 75) 50%, rgb(241 159 85) 100%);
    /* animation: 30s linear infinite counterRotateInfinitely; */
    /* transition: .3s; */
    position: absolute;
    width: 110px;
    height: 110px;
    z-index: -1;
    border-radius: 50%;
    /* border: 2px dashed #0cb79d; */
}

.icon img  {
    background: linear-gradient(90deg, rgb(95 41 94) 0px, rgb(189 60 75) 50%, rgb(241 159 85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}


.icon-box {
    border: 1px solid #d4e1e6;
    border-radius: 27px;
    height: 105px;
    width: 105px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-vision img,
.value img {
    width: auto;
    height: 55px;
    object-fit: cover;
}

.mission-vision {
    padding: 1rem 2.2rem;
    height: 100%;
    width: 100%;
    box-shadow: 0 0 6px #00000029;
    border-radius: 27px;
    background: #fff;
}
.values{
    background: url(../images/values-bg.jpg) no-repeat center; 
    color: #f8f8f8;
    position: relative; 
    z-index: 2;
    background-attachment: fixed;
}
.values::after{
    left: 0;
    content: "";
    position: absolute;
    background-color: #51515140;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
}
.value {
    border-radius: 27px;
    padding: 1rem 2.2rem;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(14px) brightness(.92);
    border: 1px solid #ffffff0f;
}
.owl-carousel.certificate-carousel .owl-item img{
        width: 100%;
    height: 100%;
    object-fit: contain;
}
.owl-carousel.certificate-carousel  .item {
    height: 125px;
    width: 250px;
    background: #f9f9f9;
    padding: 15px;
}

/* @keyframes counterRotateInfinitely {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
} */