/*** Custom Variables Start ***/
:root{
    --gradient-primary: -webkit-linear-gradient(bottom left, #d3e186, #4edc7d, #1beeaf);
    --gradient-primary-b: linear-gradient(bottom left, #d3e186, #4edc7d, #1beeaf);
    --gradient-secondary: linear-gradient(to right, #185a9d, #43cea2);
}

/*** Custom Variables End ***/

/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

.spinner-border {
    width: 3rem; 
    height: 3rem;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

.whatsapp-btn {
    position: fixed;
    left: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    background: var(--gradient-primary);
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: #00164f;
    color: var(--bs-white);
}

.btn.btn-secondary {
    background: var(--gradient-secondary);
    color: var(--bs-white);
    border: none;
}

.btn.btn-secondary:hover {
    background: #00164f;
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}
/*** Button End ***/

/*** Logo Img Start ***/
.logo-img {
    height: 50px;
}
/*** Logo Img End ***/

/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 11px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

/*** Topbar End ***/



/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Roboto', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-white);
    font-size: 17px;
    font-weight: 400;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link,
.sticky-top.navbar-light .navbar-nav .nav-item .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-item .nav-link {
    color: var(--bs-white);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-item .nav-link:hover,
.navbar-light .navbar-nav .nav-item .nav-link.active  {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-nav .nav-item .nav-link {
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-light);
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link::after {
        position: absolute;
        content: "";
        width: 0;
        height: 0;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::after,
    .navbar-light .navbar-nav .nav-link.active::after {
        width: 2px;
        height: 12px;
    }
}
/*** Navbar End ***/

/*** Carousel Hero Header Start ***/

.text-primary {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
}

.text-secondary {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent !important;
}

.header-carousel .header-carousel-item video {
    object-fit: cover;
}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item video {
        height: 700px;
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    padding-top: 120px;
    background: rgba(0, 0, 0, 0.466);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }
}


@keyframes image-zoom {
    0%  {height: 100%; opacity: 0.9;}

    25% {height: 110%; opacity: 0.50;}

    50% {height: 115%; opacity: 1;}

    75% {height: 110%; opacity: 0.50;}

    100% {height: 100%; opacity: 0.9;}
}
/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start  ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background-color: #383838;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 140px 0 60px 0;
    transition: 0.5s;
}

@media (min-width: 992px) {
    .bg-breadcrumb{
        padding: 140px 0 60px 0;
    }
    .bg-breadcrumb img {
        height: 50%;
        width: 50%;
    }
}

@media (max-width: 991px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
    .bg-breadcrumb img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** About Start ***/

.text-b{
    text-align: end;
}

@media screen and (max-width:990px){
	.wrap{
        flex-direction:column-reverse;
    }
    .text-t, .text-b{
        text-align: center;
    }
}
/*** About End ***/


/*** About us Blauemeer Start ***/
.about-us-b{
    display: flex;
}

.about-us-b .about-us-b-img{
    width: 40%;
    flex-grow: 1;
}

.about-us-b .about-us-b-text{
    flex-grow: 1;
}
/*** About us Blauemeer End ***/

/*** About Us Ecoterra Start ***/
.about-us-e {
    text-align: justify;
}

.about-us-e .about-us-e-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; 
}

.youtube-player-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .6);
    opacity: 0;
    pointer-events: none;
    transition: all 400ms ease;
}

.youtube-player-overlay.active {
    opacity: 1;
    pointer-events: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.youtube-player-popup {
    position: absolute;
    width: 80%;
    left: 50%;
    transform: translate(-50%, -100%);
    transition: all 400ms ease;
}

.youtube-player-overlay.active .youtube-player-popup {
    transform: translate(-50%, 0);
}
@media screen and (min-width:1500px){
	.youtube-player-popup {
        width: 60%;
    }
}
.youtube-player-popup iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--bs-primary) 50%, color-mix(in srgb, var(--bs-primary), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: absolute;
    overflow: hidden;
    cursor: pointer;
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--bs-primary);
    transform: scale(20);
}
/*** About Us Ecoterra End ***/


/*** Service Start ***/
.service .service-item {
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
    height: 100%;
    text-align: justify;
    box-shadow: 0 0 45px rgba(0, 0, 0, .2);
    border: 1px solid #00164f3f;
    
}

.service .service-item:hover {
    background: var(--gradient-primary);
}
.service .service-item:hover h4, .service .service-item:hover p{
    color: var(--bs-white);
    transition: 0.2s;
}

@media (min-width: 992px) {
    .service .service-item {
    max-width: 70%;
    float: none;
    margin: auto;
  }
}
/*** Service End ***/

/*** Product Start ***/
.product .product-item {
    background-color: var(--bs-white);
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
    border: 1px solid #00164f13;
    padding: 60px 20px;
    height: 100%;
}

.product .product-item .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
    transform-style: preserve-3d;
}

.product .product-item .icon i {
    color: var(--bs-light);
    font-size: 28px;
}

.product .product-item .icon::before {
    position: absolute;
    content: "";
    left: -8px;
    top: -8px;
    height: 100%;
    width: 100%;
    background: color-mix(in srgb, var(--bs-primary), transparent 80%);
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-1px);
}

.product .product-item h3 {
    font-weight: 700;
    margin: 10px 10px 10px 10px;

}

.product .product-item p {
    line-height: 24px;
    margin: 20px 10px 10px 10px;
}

.product .product-item:hover {
    background: var(--gradient-primary);
}

.product .product-item:hover .icon {
    background: var(--bs-light);
}

.product .product-item:hover .icon i {
    color: var(--bs-primary);
}

.product .product-item:hover h3,
.product .product-item:hover p {
    color: var(--bs-light);
}

.product .product-item:hover .icon::before {
    background: color-mix(in srgb, var(--bs-light), transparent 70%);
}


/*** Product End ***/


/*** Process Start ***/
.process .process-img{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process .flex-column {
    gap: 5px;
}

.process .nav-btns{
    border-right: 2px solid rgba(0, 0, 0, 0.103);
    padding-right: 20px;
    height: 270px;
}

.process .nav-link {
    border: 0;
    transition: 0.3s;
    border-radius: 10px;
    color:#383838;
    font-weight: 600;
    padding-top: 10px;
    padding-bottom: 10px;
}
.process .tab-content {
    padding-left: 20px;
}

.process .nav-link:hover {
    color: var(--bs-primary);
    background-color: var(--bs-light);
}

.process .nav-link.active {
    color: var(--bs-light);
    background: var(--gradient-primary);
}

@media (max-width: 992px) {
    .process .flex-column {
        margin-bottom: 10px;
        padding-bottom: 20px;
        text-align: center;
    }

    .process .nav-btns{
        border-right: 0;
        border-bottom: 2px solid rgba(0, 0, 0, 0.103);
        height: 100%;
    }

    .process .tab-content {
        padding-top: 20px;
        margin-top: 20px;
    }

    .process .nav-link {
        padding: 15px;
    }

    .process .nav-link.active {
        color: var(--bs-light);
        background: var(--gradient-primary);
    }

    .process .tab-pane {
        text-align: center;
    }

    .process .process-img{
        width: 100%;
        padding-top: 20px;
    }
}
/*** Process End ***/

/*** Gallery Start ***/
.gallery .gallery-item {
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);

}

.gallery .gallery-item .caption {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
}
/*** Gallery End ***/

/*** Contact Start ***/
.contact {
    background-position: center; 
    background-repeat: no-repeat; 
    background-size: cover;
}
/*** Contact End ***/

/*** Scrapping Challenge Start ***/
.scrachall .scrachall-item {
    background: var(--bs-white);
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, .2);
}

.scrachall .scrachall-item:hover {
    background: var(--gradient-primary);
    color: var(--bs-white);
}

.scrachall .scrachall-item:hover .rounded-bottom h4 {
    color: var(--bs-white);
}
/*** Scrapping Challenge End ***/

/*** Work Attributes Start ***/
.workattr .owl-carousel {
	.owl-stage {
		display: flex;
	}
	.owl-item {
		display: flex;
		flex: 1 0 auto;
	}
}

.workattr .workattr-carousel .workattr-item {
    background: var(--bs-white);
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .2);
    margin: 15px;
}

.workattr .workattr-item .workattr-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

}

.workattr .workattr-carousel .workattr-item .workattr-text i{
    color: var(--bs-primary);
}

.workattr .workattr-item .workattr-img img {
    transition: 0.5s;
}

.workattr .workattr-item:hover .workattr-img img {
    transform: scale(1.2);
}

.workattr .workattr-carousel .workattr-item:hover {
    background: var(--gradient-primary);
    color: var(--bs-white);
}

.workattr .workattr-carousel .workattr-item:hover h4,
.workattr .workattr-carousel .workattr-item:hover .workattr-text i{
    color: var(--bs-white);
}


.workattr .workattr-item .workattr-img .workattr-title {
    position: absolute;
    bottom: 5px;
    left: 25px;
    z-index: 5;
}

.workattr .workattr-item .workattr-img .workattr-title p {
    color: var(--bs-white);
    transition: 0.5s;
}

.workattr .workattr-item .workattr-img .workattr-title .btn {
    background: var(--gradient-primary);
    cursor: default;
}

.workattr .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--gradient-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.workattr .owl-nav .owl-prev:hover {
    background: #00164f;
    color: var(--bs-white);
}

.workattr .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--gradient-primary);
    color: var(--bs-white);
    padding: 6px 35px;
    border-radius: 30px;
    transition: 0.5s;
}

.workattr .owl-nav .owl-next:hover {
    background: #00164f;
    color: var(--bs-white);
}
/*** Work Attributes End ***/

/*** Team Start ***/
.team .team-item {
    position: relative;
    padding: 0 25px 25px 25px;
    border-radius: 10px;
    transition: 0.5s;
}

.team .team-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    background: var(--bs-light);
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::before {
    height: 0;
}

.team .team-item::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
    z-index: -1;
}

.team .team-item:hover::after {
    height: 100%;
    background: var(--bs-primary);
}

.team .team-item .team-img {
    width: 100%; 
    height: 100%;
    border-radius: 100%;
    position: relative;
    margin-top: 50%;
    transform: translateY(-50%);
    margin-bottom: -50%;
    display: flex;
    justify-content: center;
    border: 4px solid var(--bs-primary);
    border-style: dotted;
    padding: 4px;
    background: var(--bs-white);
    transition: 0.5s;
}

.team .team-item:hover .team-img {
    border: 4px solid var(--bs-white);
    border-style: dotted;
    background: 0;
}

.team .team-item .team-img img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    transition: 0.5s;
}

.team .team-item .team-title {
    padding: 25px 0 25px 0;
    text-align: center;
}

.team .team-item .team-title h4,
.team .team-item .team-title p {
    transition: 0.5s;
}

.team .team-item:hover .team-title h4,
.team .team-item:hover .team-title p {
    color: var(--bs-white);
}

.team .team-item .team-icon {
    display: flex;
    justify-content: center;
}

.team .team-item .team-icon a {
    transition: 0.5s;
}

.team .team-item:hover .team-icon a {
    color: var(--bs-dark);
    background: var(--bs-white);
}

.team .team-item:hover .team-icon a:hover {
    color: var(--bs-primary);
    background: var(--bs-dark);
}
/*** Team End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .border-start-0 {
    border: 1px solid; 
    border-color: rgb(255, 255, 255, 0.08);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
    color: #787878;
}

.footer .footer-item img{
    height: 47px;
}

.footer .footer-item a {
    color: #787878;
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    color: #787878;
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}
/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
}
/*** copyright end ***/


