



/*banner*/
/*banner*/


.banner-slider{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    width: 100%;
    height: 100%;
    transform: scale(1);
}

.each-banner-slide{
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    height: 650px;
}

.swiper-slide-active .each-banner-slide .banner-slider{
    animation: bannerZoom 6s ease-in-out forwards;
}



@keyframes bannerZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}



.each-banner-slide:before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(11, 27, 43, 0.51);
    z-index: 1;
}


.banner-content{
    padding: 100px;
    width: 600px;
    position: relative;
    z-index: 2;
}

.banner-text *{
    font-size: var(--title-size);
    color: #fff;
    font-family: "Maven-Regular";
}

.banner-title *{
    font-size: var(--mega-title-size);
    color: #fff;
    font-family: "Maven-Bold";
}





/*banner*/
/*banner*/





/*business*/
/*business*/

.our-business{
    position: relative;
    padding-block: 90px;
}

.col-business{
    margin-bottom: 60px;
}

.all-businesses{
    margin-top: 50px;
}


.each-business-box{
    border-style: solid;
    border-width: 2px 0px 0px 2px;
    border-color: var(--secondary-color);
    box-shadow: 8px 8px 30px -10px rgba(0, 0, 0, 0.2);
    transition: background 1s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 35px;
    position: relative;
    border-radius: 5px;
}

.business-icon{
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    top: -35px;
    left: 23px;
}

.business-icon svg{
    width: 40px;
    height: 40px;
}

.business-icon svg path{
    fill: #fff;
}

.business-content{
    padding-top: 10px;
}

.business-text p{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}


.business-title *{
    font-size: var(--title-size);
    font-family: "Maven-Bold";
}

.business-link span{
    color: var(--secondary-color);
    font-family: "Maven-Medium";
}

.business-link svg path{
    fill: var(--secondary-color);
    stroke: var(--secondary-color);
}

/*business*/
/*business*/





/*future*/
/*future*/

.our-future{
    padding-block: 50px 90px;
}

.card-future{
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.future-image{
    width: 100%;
    height: 237px;
    border-radius: 10px;
    overflow: hidden;
}

.future-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: .5s;
}

.future-image:hover img{
    transform: scale(1.1);
    transition: .5s;
}

.future-box{
    position: relative;
    background: var(--back-color);
    box-shadow: 0 4px 28px rgba(142, 147, 166, 0.15);
    border-radius: 8px;
    padding: 30px 40px;
    flex-direction: column;
    display: flex;
    background-image: url("../images/back.png");
    background-repeat: repeat;
    background-size: contain;
    transition: .5s;
}

.col-middle{
    margin-top: 70px;
}


.future-box:hover{
    background-image: url("../images/back2.png");
    transition: .5s;
}

.future-title{
    display: flex;
    align-items: center;
    gap: 10px;
}

.future-icon{
    background-color: rgba(176, 50, 54, 0.17);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.future-icon svg{
    width: 30px;
    height: 30px;
}


.future-icon svg path{
    fill: var(--primary-color);
}

.future-title span{
    font-family: "Maven-Medium";
    font-size: var(--title-size);
    color: var(--text-color);
}

.our-future .business-link span{
    color: var(--primary-color);
    font-family: "Maven-Medium";
}

.our-future .business-link svg path{
    fill: var(--primary-color);
    stroke: var(--primary-color);
}

/*future*/
/*future*/





/*about*/
/*about*/

.about {
    position: relative;
    height: 100%;
    background-image: url(../images/about.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    padding-block: 70px;
}

.about::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(11, 27, 43, 0.62);
    z-index: 2;
    top: 0;
}

.about-bg {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    opacity: 0;
    transform: scale(1.08);

    transition:
            opacity 0.6s ease,
            transform 1s ease;

    z-index: 1;
}

.about-bg.active {
    opacity: 1;
    transform: scale(1);
}

.about .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.about-row {
    height: 100%;
    align-items: center;
}

.container .container{
    position: relative;
}

.col-about-content .small-title {
    text-align: start;
}

.col-about-content .main-title {
    text-align: start;
}

.col-about-content .title-text *{
    text-align: start;
}

.col-about-content .small-title *, .col-about-content .main-title *, .col-about-content .title-text *{
    color: #fff;
}

.col-about-content{
    padding-right: 80px;
}

.each-about-item{
    display: flex;
    flex-direction: column;
    background: rgba(50, 68, 86, 0.24);
    backdrop-filter: blur(19px);
    border-radius: 12px;
    padding: 15px;
    padding-left: 54px;
    position: relative;
}

.each-about-item::before{
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
    left: 26px;
    top: 22px;
}

.about-title{
    margin-bottom: 10px;
}

.about-title span{
    color: #fff;
    font-family: "Maven-Medium";
    font-size: var(--title-size);
}

.about-text p{
    color: #fff;
    font-size: var(--text-size);
    margin-bottom: 0;
}

.col-about-items{
    display: flex;
    flex-direction: column;
    gap: 20px;
}




/*about*/
/*about*/





/*figures*/

.figures{
    padding-block: 110px;
    background-color: #EFF0EF;
    position: relative;
}


.figures::before{
    content: "";
    position: absolute;
    background-image: url(../images/map3.png);
    background-size: contain;
    background-position: right;
    width: 757px;
    height: 633px;
    background-repeat: no-repeat;
    right: 0;
    top: -49px;
}

.figure-boxes{
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.each-figure-box{
    width: 168px;
    height: 168px;
    display: flex;
    flex-direction: column;
    background-image: url(https://new.creativemox.com/oeelco/wp-content/uploads/sites/11/2025/07/diagonal-lines-2.png);
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.figure-no{
    color: var(--primary-color);
    font-family: "Maven-Bold";
    font-size: 33px;
}

.figure-text *{
    color: var(--text-color);
    font-family: "Maven-Bold";
    font-size: var(--text-size);
}

.figure-text{
    text-align: center;
    line-height: 20px;
    height: 38px;

}

.col-figure-content .small-title {
    text-align: start;
}

.col-figure-content .main-title {
    text-align: start;
}

.col-figure-content .title-text *{
    text-align: start;
}


/*figures*/









/*responsive*/
/*responsive*/
/*responsive*/

@media screen and (max-width: 1399px){

    .figures::before {
        width: 547px;
        height: 617px;
    }

}

@media screen and (max-width: 1199px){

    .each-banner-slide {
        align-items: center;
        justify-content: center;
        height: 591px;
    }

    .banner-content {
        padding: 20px;
        width: 80%;
        position: relative;
        z-index: 2;
    }

}

@media screen and (max-width: 991px){


    .figures::before {
        width: 393px;
        height: 485px;
        background-repeat: no-repeat;
        right: 0;
        bottom: -100px;
        top: unset;
    }


    .col-middle {
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .card-future {
        gap: 20px;
    }

    .our-future {
        padding-block: 9px 69px;
    }

    .figures .container{
        margin-bottom: 161px;
    }

    .figures {
        padding-block: 50px 70px;
    }

    .col-about-content {
        padding-right: 15px;
    }


    .col-middle .card-future{
        flex-direction: column-reverse;
    }


}

@media screen and (max-width: 767px){


    .figures::before {
        width: 393px;
        height: 298px;
        bottom: -100px;
    }

    .figure-no {
        font-size: 23px;
    }

    .each-figure-box {
        gap: 8px;
        width: 130px;
        height: 130px;
    }

    .figure-boxes {
        gap: 12px;
    }

}

@media screen and (max-width: 575px){

    .each-banner-slide {
        height: 482px;
    }

    .col-about-content {
        margin-bottom: 24px;
    }


    .each-about-item {
        padding-left: 37px;
    }

    .each-about-item::before {
        width: 14px;
        height: 14px;
        left: 12px;
        top: 22px;
    }

    .future-image {
        height: 190px;
    }

    .our-business {
        position: relative;
        padding-block: 52px 69px;
    }

    .col-business {
        margin-bottom: 47px;
    }

    .col-business:last-child {
        margin-bottom: 20px;
    }

    .figure-no {
        font-size: 19px;
    }


    .figure-boxes{
        flex-wrap: wrap;
    }

    .each-figure-box {
        gap: 8px;
        width: 100%;
        height: 107px;
    }

    .figures::before {
        width: 302px;
        height: 262px;
        bottom: -86px;
    }

    .figures .container {
        margin-bottom: 112px;
    }

}

@media screen and (max-width: 425px){


    .banner-content {
        width: 100%;
    }


    .future-image {
        height: 170px;
    }

}

@media screen and (max-width: 375px){

    .figures::before {
        width: 257px;
        height: 219px;
        bottom: -86px;
    }


    .future-image {
        height: 150px;
    }

}

@media screen and (max-width: 320px){

}






/*responsive*/
/*responsive*/
/*responsive*/



