@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
@import url('app-base.css');
@import url('app-variables.css');


.bg-red {
    background: var(--red);
}

.bg-grey {
    background: #f3f3f3;
}

.text-white {
    color: #fff;
}

.pb-30{
    padding-bottom:30px;
}
.pb-70 {
    padding-bottom: 70px;
}
.pt-30 {
    padding-top: 30px;
}
.pt-70 {
    padding-top: 70px;
}

.container-large{
    width:1600px;
    padding-left: 50px;
    padding-right: 50px;
    margin: auto;
    max-width: 100%;
}

.page{/* padding: 50px 50px 0; */flex:1;}


.btn-nav-container {
    position: absolute;
    top: 0;
    right: 50px;
    width: 50px;
    height: 20px;
    margin-top: 50px;
    cursor: pointer;
    z-index: 999;
    background: transparent;
    border: none;
    outline: none;
}

.btn-nav {
    width: 100%;
    height: 3px;
    position: relative;
    background: #fff;
    top: 0;
    transition: all ease 0.2s;
}

    .btn-nav:before, .btn-nav:after {
        content: '';
        position: absolute;
        left: 0;
        background: #fff;
        height: 100%;
        transition: all ease 0.3s;
    }

    .btn-nav:before {
        top: -8px;
        width: 50%;
    }

    .btn-nav:after {
        top: 8px;
        width: 75%;
    }

.btn-nav-container:hover .btn-nav:before, .btn-nav-container:hover .btn-nav:after {
    width: 100%;
}

.btn-nav-container.close-menu .btn-nav {
    transform: rotate(-45deg);
}

    .btn-nav-container.close-menu .btn-nav:after {
        opacity: 0;
        transition: all ease 0.2s;
    }

    .btn-nav-container.close-menu .btn-nav:before {
        top: 0;
        transform: rotate(90deg);
        width: 100%;
        transition: all ease 0.2s;
        background: #fff;
    }

.float-nav {
    position: fixed;
    top: 0;
    display: none;
    width: 100%;
    height: 100%;
    z-index: 99;
}

    .float-nav .bg1, .float-nav .bg2 {
        position: absolute;
        width: 100%;
        height: 100vh;
        background: #00000085;
        top: 0;
        left: 100%;
        transition: all 0.7s ease 0.3s;
    }

    .float-nav .bg2 {
        background: var(--red);
        transition-delay: 0s;
    }

    .float-nav .container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        max-width: none;
    }

    .float-nav ul {
        display: flex;
        flex-direction: column;
        max-height: 100vh;
        opacity: 0;
        transition: all 0.3s ease 0s;
        padding: 0;
    }

        .float-nav ul li {
            flex: 1;
            position: relative;
            margin-bottom: 20px;
            text-align: center;
            transition: all 0.2s ease 0.3s;
        }

            .float-nav ul li:hover {
                transition: all 0.2s ease 0s;
            }

            .float-nav ul li a:after {
                content: '';
                position: absolute;
                left: 100%;
                margin-left: 5px;
                top: 2px;
                width: 2px;
                height: 100%;
                background: #fff;
                transform: scaleY(0);
                transition: all ease 0.3s;
            }

            .float-nav ul li a:before {
                content: '';
                position: absolute;
                right: 100%;
                margin-right: 11px;
                top: 2px;
                width: 2px;
                height: 100%;
                background: #fff;
                transform: scaleY(0);
                transition: all ease 0.3s;
            }

            .float-nav ul li:hover a:before, .float-nav ul li:hover a:after {
                transform: scaleY(1);
            }

            .float-nav ul li:last-child {
                margin-bottom: 0;
            }

            .float-nav ul li a {
                font-size: 28px;
                position: relative;
                color: #fff;
                /* letter-spacing: 0.4em; */
                font-weight: 700;
                font-family: 'Montserrat';
            }

    .float-nav.active .bg1, .float-nav.active .bg2 {
        left: 0;
    }

    .float-nav.active .bg1 {
        transition-delay: 0s;
    }

    .float-nav.active .bg2 {
        transition-delay: 0.3s;
    }

    .float-nav.active ul {
        opacity: 1;
        transition-delay: 1s;
    }

.page h1 {
    font-size: 3.5vw;
    text-align: center;
    font-weight: 300;
    padding-bottom: 30px;
    font-family: 'Montserrat';
}



/* Banner */
.hero-slider {
    width: 100%;
    /* height: calc(100vh - 300px); */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
    padding: 0 5%;
}


@media (max-width: 991px) {
    .hero-slider {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 500px;
    }
}

.hero-slider .swiper-slide {
    overflow: hidden;
    color: #fff;
}

.hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

    .hero-slider .slide-inner img {
        position: absolute;
        width: 100%;
        height: auto;
    }

    .hero-slider .slide-inner video {
        position: absolute;
        width: 100%;
        height: auto;
    }

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    background: transparent;
    width: 55px;
    height: 55px;
    line-height: 53px;
    margin-top: -30px;
    text-align: center;
    border: 2px solid #d4d3d3;
    border-radius: 55px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }
}

.hero-slider .swiper-button-prev {
    left: 25px;
    transform: translateX(50px);
}

    .hero-slider .swiper-button-prev:before {
        font-family: "Font Awesome 5 Free";
        content: "\f060";
        font-size: 15px;
        color: #d4d3d3;
        font-style: normal;
        display: inline-block;
        vertical-align: middle;
        font-weight: 900;
    }

.hero-slider .swiper-button-next {
    right: 25px;
    transform: translateX(-50px);
}

    .hero-slider .swiper-button-next:before {
        font-family: "Font Awesome 5 Free";
        content: "\f061";
        font-size: 15px;
        color: #d4d3d3;
        font-style: normal;
        display: inline-block;
        vertical-align: middle;
        font-weight: 900;
    }

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: left;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 0.3;
    background: #fff;
    transition: all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
    bottom: 30px;
}

@media screen and (min-width: 992px) {
    .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
    .hero-slider .swiper-pagination-custom,
    .hero-slider .swiper-pagination-fraction {
        /*     display: none; */
    }
}

.swiper-pagination {
    text-align: left;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 50px;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}

}

@media (min-width: 767px) {
    .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
        bottom: 30px;
    }
}
/*--------------------------------------------------------------
	#hero-style
--------------------------------------------------------------*/
.hero-style {
    aspect-ratio: 2.3;
    transition: all .4s ease;
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
}

@media (max-width: 991px) {
    .hero-style {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-style {
        height: 500px;
    }
}

@media screen and (min-width: 992px) {
    .hero-style .container {
        /* padding-top: 95px; */
        /* width: 100%; */
    }
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
    max-width: 100%;
}

    .hero-style .slide-title h2 {
        font-size: 36px;
        font-weight: 600;
        line-height: 1.5;
        color: #ffffff;
        /* margin: 0 0 50px; */
        text-transform: capitalize;
        transition: all .4s ease;
        text-shadow: 0px 1px 11px #000000;
        font-family: 'Oswald',sans-serif;
    }


    .hero-style .slide-text p {
        opacity: 0.8;
        font-family: Rajdhani;
        font-size: 32px;
        font-weight: 500;
        line-height: 1.25;
        letter-spacing: normal;
        color: #ffffff;
        margin: 0 0 40px;
        transition: all .4s ease;
    }

@media (max-width: 767px) {
    .hero-style .slide-text p {
        font-size: 16px;
        font-size: 1rem;
        font-weight: normal;
        margin: 0 0 30px;
    }
}

.hero-style .slide-btns > a:first-child {
    margin-right: 10px;
}


/*--------------------------------------------------------------
	#button-style
--------------------------------------------------------------*/
.theme-btn, .theme-btn-s2 {
    background-color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color: #2b3b95;
    padding: 9px 32px;
    border: 0;
    border-radius: 3px;
    text-transform: uppercase;
    display: inline-block;
    line-height: initial;
    transition: all .4s ease;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

.theme-btn-s2 {
    background-color: rgba(255, 255, 255, 0.9);
    color: #131e4a;
}

    .theme-btn:hover, .theme-btn-s2:hover, .theme-btn:focus, .theme-btn-s2:focus, .theme-btn:active, .theme-btn-s2:active {
        background-color: var(--primary);
        color: #fff;
    }

.theme-btn-s3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    text-transform: uppercase;
}

i.fa-chevron-circle-right {
    height: 22px;
    width: 22px;
}

a:hover {
    text-decoration: none;
}

@media (max-width: 991px) {
    .theme-btn, .theme-btn-s2, .theme-btn-s3 {
        font-size: 13px;
        padding: 15px 25px;
    }
}

@media (max-width: 767px) {
    .theme-btn, .theme-btn-s2 {
        padding: 13px 20px;
        font-size: 13px;
    }
}

.hero-slider .slide-inner .overlay {
    /* background: #1818189c; */
    position: absolute;
    height: 100%;
    width: 100%;
}
/* Banner End */



    header

{
    background-color: var(--black);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    padding: 0 50px;
    z-index: 10;
}

.page-home header{
    background-color:transparent;
}



.main-nav, .sub-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .main-nav li, .sub-nav li {
        margin: 10px 0;
    }

        .main-nav li a, .sub-nav li a {
            display: block;
            /* padding: 10px 15px; */
            text-decoration: none;
            color: #fff;
            /* background-color: #333; */
        }

        .sub-nav li:first-child a {
            font-weight: 500;
            background-color: #222;
            border-radius: 20px;
            font-size: 26px;
        }



header.fixed {
    /* position:fixed; */
    /* top:0; */
    /* z-index: 10; */
}

    header .header-container {
        display: flex;
        height: 120px;
        align-items: center;
        justify-content: space-between;
    }

        header .header-container .logo {
            height: 100%;
            padding: 10px 0;
        }

            header .header-container .logo img {
                height: 100%;
            }

        header .header-container .menu-container {
            display: flex;
            width: 70%;
            justify-content: flex-end;
            gap: 30px;
            align-items: center;
        }
 header .header-container .menu-container .menu {
    margin-right: auto;
}
        header .header-container .menu-container .menu ul {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: end;
            -ms-flex-pack: end;
            justify-content: flex-end;
            list-style-type: none;
            padding: 0;
            margin: 0;
            margin-right: 50px;
            height: 120px;
        }

            header .header-container .menu-container .menu ul li:hover {
                border-bottom: 6px solid var(--red);
                transition: .3s;
            }

            header .header-container .menu-container .menu ul li {
                height: 119px;
                transition: .3s;
            }

            header .header-container .menu-container .menu ul li a.menu-link {
                display: block;
                font-size: 19px;
                line-height: 24px;
                padding: 0px 25px;
                -webkit-transition: all 0.45s ease-in-out;
                transition: all 0.45s ease-in-out;
                font-family: 'Montserrat', sans-serif;
                font-weight: 600;
                color: #ffffff;
                height: 120px;
                align-content: center;
                transition: .3s;
            }
 header .header-container .menu-container .menu ul li.active a.menu-link {
                /* background: #f3f3f3; */
                /* color:#FFF; */
                transition:.3s;
            }


                header .header-container .menu-container .menu ul li .menu-full {
                    position: absolute;
                    top: 120px;
                    left: 0;
                    width: 90%;
                    display: none;
                    transition: .3s;
                }

                header .header-container .menu-container .menu ul li.active .menu-full {
                    display: inline-block;
                    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
                    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
                    transition: .3s;
                    margin: 0 auto;
                    width: 100%;
                }

                    header .header-container .menu-container .menu ul li.active .menu-full .item-container {
                        display: flex;
                        /* gap: 70px; */
                        padding: 40px 5%;
                        background: var(--red);
                        transition: .3s;
                        flex-wrap: wrap;
                        gap: 50px;
                    }

                        header .header-container .menu-container .menu ul li.active .menu-full .item-container > div {
                            width: calc((100% - 150px) / 4);
                            padding: 20px 40px;
                        }

                       
                        header .header-container .menu-container .menu ul li.active .menu-full .item-container .item-wrapper a {
                            background-color: transparent;
                        }

                            header .header-container .menu-container .menu ul li.active .menu-full .item-container .item-wrapper a i.arrow {
                                /* transform: rotate(358deg); */
                                transition: .3s;
                                font-size: 28px;
                            }


                        header .header-container .menu-container .menu ul li.active .menu-full .item-container .item-wrapper .title {
                            font-size: 18px;
                            font-weight: 700;
                            color: #eee;
                            display: flex;
                            justify-content: space-between;
                            align-items: top;
                            text-transform: uppercase;
                        }


                        header .header-container .menu-container .menu ul li.active .menu-full .item-container .item-wrapper a:hover i.arrow {
                            transform: rotate(45deg);
                            transition: .3s;
                        }

                        header .header-container .menu-container .menu ul li.active .menu-full .item-container .item-wrapper .text {
                            font-weight: 300;
                            /* text-align: center; */
                            padding-top: 10px;
                            color: #eee;
                        }


        header .header-container .menu-container  .link-button > a {
            width: 130px;
            height: 40px;
            background: var(--orange);
            color: #fff;
            border-radius: 8px;
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-transition: all 0.45s ease-in-out;
            transition: all 0.45s ease-in-out;
            font-size: 16px;
            font-weight: 600;
        }

            header .header-container .menu-container .link-button > a:hover {
                background: var(--orange-hover);
                -webkit-transition: all 0.45s ease-in-out;
                transition: all 0.45s ease-in-out;
            }

        header .header-container .menu-container .language {
            position: absolute;
            right: 100px;
        }

            header .header-container .menu-container .language i {
                color: #fff;
                font-size: 21px;
            }

            header .header-container .menu-container .language > a {
                width: 95px;
                height: 40px;
                /* background-color: #fff; */
                display: -webkit-box;
                display: -ms-flexbox;
                display: flex;
                -webkit-box-align: center;
                -ms-flex-align: center;
                align-items: center;
                -webkit-box-pack: center;
                -ms-flex-pack: center;
                justify-content: center;
                color: #707070;
                font-size: 16px;
            }

                header .header-container .menu-container .language > a > span {
                    margin-right: 8px;
                }

                    header .header-container .menu-container .language > a > span img {
                        width: 21px;
                    }

            header .header-container .menu-container .language .language-content {
                position: absolute;
                left: 0;
                top: 100%;
                width: 100%;
                z-index: 10;
                opacity: 0;
                visibility: hidden;
                -webkit-transform: translateY(15px);
                transform: translateY(15px);
                -webkit-transition: all 0.45s ease-in-out;
                transition: all 0.45s ease-in-out;
            }

            header .header-container .menu-container .language:hover .language-content {
                opacity: 1;
                visibility: visible;
                -webkit-transform: translateY(0);
                transform: translateY(0);
            }

            header .header-container .menu-container .language .language-content ul {
                list-style-type: none;
                padding: 0;
                margin: 0;
                background: #fff;
                padding: 0;
                border-radius: 0;
                -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
                box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
            }

                header .header-container .menu-container .language .language-content ul li a {
                    padding: 8px 8px;
                    display: -webkit-box;
                    display: -ms-flexbox;
                    display: flex;
                    -webkit-box-align: center;
                    -ms-flex-align: center;
                    align-items: center;
                    color: #707070;
                    font-size: 16px;
                }

                header .header-container .menu-container .language .language-content ul li:nth-child(odd) a {
                    background-color: #F5F5F5;
                }
                header .header-container .menu-container .language .language-content ul li img {
                    width: 24px;
                }
                header .header-container .menu-container .language .language-content ul li a > span {
                    padding-left: 9px;
                }


section.banner{
    /* padding:0 5%; */
    /* margin-top: -120px; */
    height: 100vh;
}

.hero-slider {
    width: 100%;
    /* height: calc(100vh - 300px); */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 0;
    padding: 0 5%;
    height: 100%;
}


@media (max-width: 991px) {
    .hero-slider {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-slider {
        height: 500px;
    }
}

.hero-slider .swiper-slide {
    overflow: hidden;
    color: #fff;
}

.hero-slider .swiper-container {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.hero-slider .slide-inner {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

    .hero-slider .slide-inner img {
        position: absolute;
        width: 100%;
        height: auto;
    }

    .hero-slider .slide-inner video {
        position: absolute;
        width: 101%;
        height: auto;
    }

.hero-slider .swiper-button-prev,
.hero-slider .swiper-button-next {
    background: transparent;
    width: 55px;
    height: 55px;
    line-height: 53px;
    margin-top: -30px;
    text-align: center;
    border: 2px solid #d4d3d3;
    border-radius: 55px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.hero-slider:hover .swiper-button-prev,
.hero-slider:hover .swiper-button-next {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

@media (max-width: 767px) {
    .hero-slider .swiper-button-prev,
    .hero-slider .swiper-button-next {
        display: none;
    }
}

.hero-slider .swiper-button-prev {
    left: 25px;
    transform: translateX(50px);
}

    .hero-slider .swiper-button-prev:before {
        font-family: "Font Awesome 5 Free";
        content: "\f060";
        font-size: 15px;
        color: #d4d3d3;
        font-style: normal;
        display: inline-block;
        vertical-align: middle;
        font-weight: 900;
    }

.hero-slider .swiper-button-next {
    right: 25px;
    transform: translateX(-50px);
}

    .hero-slider .swiper-button-next:before {
        font-family: "Font Awesome 5 Free";
        content: "\f061";
        font-size: 15px;
        color: #d4d3d3;
        font-style: normal;
        display: inline-block;
        vertical-align: middle;
        font-weight: 900;
    }

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    text-align: left;
    line-height: 12px;
    font-size: 12px;
    color: #000;
    opacity: 0.3;
    background: #fff;
    transition: all .2s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.hero-slider .swiper-pagination-custom,
.hero-slider .swiper-pagination-fraction {
    bottom: 30px;
}

@media screen and (min-width: 992px) {
    .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets,
    .hero-slider .swiper-pagination-custom,
    .hero-slider .swiper-pagination-fraction {
        /*     display: none; */
    }
}

.swiper-pagination {
    text-align: left;
}

.hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 50px;
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
    left: 50%;
    transform: translateX(-50%);
}


@media (min-width: 767px) {
    .hero-slider .swiper-container-horizontal > .swiper-pagination-bullets {
        bottom: 30px;
    }
}
/*--------------------------------------------------------------
	#hero-style
--------------------------------------------------------------*/
.hero-style {
    /* aspect-ratio: 12/5; */
    transition: all .4s ease;
    /* position: absolute; */
    /* top: 0; */
    /* left: 0; */
}

@media (max-width: 991px) {
    .hero-style {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .hero-style {
        height: 500px;
    }
}

@media screen and (min-width: 992px) {
    .hero-style .container {
        /* padding-top: 95px; */
        /* width: 100%; */
    }
}

.hero-style .slide-title,
.hero-style .slide-text,
.hero-style .slide-btns {
    max-width: 100%;
}

    .hero-style .slide-title h2 {
        font-size: 81px;
        font-weight: 600;
        line-height: 1.5;
        color: #ffffff;
        /* margin: 0 0 50px; */
        text-transform: capitalize;
        transition: all .4s ease;
        text-shadow: 0px 1px 11px #000000;
        font-family: 'Montserrat';
        text-align: center;
        font-weight: 900;
    }


    .hero-style .slide-text p {
        opacity: 0.8;
        font-family: Rajdhani;
        font-size: 32px;
        font-weight: 500;
        line-height: 1.25;
        letter-spacing: normal;
        color: #ffffff;
        margin: 0 0 40px;
        transition: all .4s ease;
    }

@media (max-width: 767px) {
    .hero-style .slide-text p {
        font-size: 16px;
        font-size: 1rem;
        font-weight: normal;
        margin: 0 0 30px;
    }
}

.hero-style .slide-btns > a:first-child {
    margin-right: 10px;
}


/*--------------------------------------------------------------
	#button-style
--------------------------------------------------------------*/
.theme-btn, .theme-btn-s2 {
    background-color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    color: #2b3b95;
    padding: 9px 32px;
    border: 0;
    border-radius: 3px;
    text-transform: uppercase;
    display: inline-block;
    line-height: initial;
    transition: all .4s ease;
}

a {
    text-decoration: none;
    transition: all 0.2s ease;
}

.theme-btn-s2 {
    background-color: rgba(255, 255, 255, 0.9);
    color: #131e4a;
}

    .theme-btn:hover, .theme-btn-s2:hover, .theme-btn:focus, .theme-btn-s2:focus, .theme-btn:active, .theme-btn-s2:active {
        background-color: var(--primary);
        color: #fff;
    }

.theme-btn-s3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #ffffff;
    text-transform: uppercase;
}

i.fa-chevron-circle-right {
    height: 22px;
    width: 22px;
}

a:hover {
    text-decoration: none;
}

@media (max-width: 991px) {
    .theme-btn, .theme-btn-s2, .theme-btn-s3 {
        font-size: 13px;
        padding: 15px 25px;
    }
}

@media (max-width: 767px) {
    .theme-btn, .theme-btn-s2 {
        padding: 13px 20px;
        font-size: 13px;
    }
}

.hero-slider .slide-inner .overlay {
    /* background: #00000073; */
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
}




.page-home section.hizmetler {
    /* margin-top: 140px; */
    padding: 100px 0;
}

    .page-home section.hizmetler .top-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #d7d7d7;
        padding-bottom: 30px;
    }

        .page-home section.hizmetler .top-wrapper .item .title {
            font-family: 'Montserrat',sans-serif;
            font-size: 40px;
            font-weight: 500;
        }

        .page-home section.hizmetler .top-wrapper .item .button {
            font-size: 17px;
            border: 1px solid var(--red);
            padding: 10px 30px;
            border-radius: 30px;
            transition: .3s;
        }

            .page-home section.hizmetler .top-wrapper .item .button:hover {
                border: 1px solid var(--red);
                background: var(--red);
                color: #fff;
                transition: .3s;
            }

    .page-home section.hizmetler .text {
        margin-top: 30px;
        font-size: 26px;
        font-weight: 300;
    }

    .page-home section.hizmetler .hizmet-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        margin-top: 50px;
    }

        .page-home section.hizmetler .hizmet-wrapper .item {
            width: calc((100% - 100px) / 3);
            padding: 30px;
            border: 1px solid #d7d7d7;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
             transition:.5s;
            cursor:pointer;
        }
  .page-home section.hizmetler .hizmet-wrapper .item:hover {
           background: #000000e3;
           transition: .5s;
           color: #fff;
        }

            .page-home section.hizmetler .hizmet-wrapper .item .icon {
                height: 90px;
            }

                .page-home section.hizmetler .hizmet-wrapper .item .icon img {
                    height: 100%;
                }

            .page-home section.hizmetler .hizmet-wrapper .item .title {
                font-size: 24px;
                font-weight: 500;
                margin-top: 50px;
            }

            .page-home section.hizmetler .hizmet-wrapper .item .text {
                font-size: 18px !important;
                font-weight: 300 !important;
                margin-bottom: 20px;
            }

        .page-home section.hizmetler .hizmet-wrapper a.detay {
            color: var(--red);
            display: inline-block;
            margin-top: auto;
        }

.page-home section.hakkimizda {
    padding: 50px 0 100px;
}

    .page-home section.hakkimizda .wrapper {
        display: flex;
        gap: 50px;
        background: var(--red);
        color: #fff;
    }

        .page-home section.hakkimizda .wrapper .item:first-child {
            width: 50%;
            position: relative;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .page-home section.hakkimizda .wrapper .item {
            width: 50%;
            padding: 30px;
        }

            .page-home section.hakkimizda .wrapper .item video {
                position: absolute;
                right: 0;
                bottom: 0;
                min-height: 100%;
                min-width: 100%;
                z-index: 0;
            }

            .page-home section.hakkimizda .wrapper .item .title {
                font-size: 40px;
                font-family: 'montserrat';
                font-weight: 700;
            }

            .page-home section.hakkimizda .wrapper .item .text {
                font-size: 18px;
                font-weight: 300;
                line-height: 1.8;
            }

                .page-home section.hakkimizda .wrapper .item .text p {
                    margin-top: 30px;
                }

            .page-home section.hakkimizda .wrapper .item a {
                margin-top: 30px;
                color: #fff;
                display: inline-block;
                font-weight: 600;
                border: 1px solid #fff;
                border-radius: 30px;
                padding: 7px 30px;
            }
  .page-home section.hakkimizda .wrapper .item a:hover {
                background:#fff;
      color:var(--red);
            }
.page-home section.hakkimizda .wrapper .item .text-overlay {
    font-size: 40px;
    color: #fff;
    z-index: 1;
    text-align: center;
    font-family: 'Montserrat';
    font-weight: 900;
}


.page-home .stats {
    margin: auto;
    text-align: center;
}

    .page-home .stats .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .page-home .stats .stat-box {
        background-color: white;
        border-radius: 12px;
        padding: 30px 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        transition: transform 0.3s ease;
    }

        .page-home .stats .stat-box:hover {
            transform: translateY(-5px);
        }

    .page-home .stats .stat-icon {
        font-size: 36px;
        margin-bottom: 10px;
        color: var(--red);
    }

    .page-home .stats .stat-number {
        font-size: 36px;
        font-weight: bold;
        color: var(--red);
    }

    .page-home .stats .stat-title {
        font-size: 18px;
        margin: 10px 0;
        font-weight: 600;
       
    }

    .page-home .stats .stat-desc {
        font-size: 14px;
        font-weight:300;
    }


.page-home section.parallax {
    background-image: url('/images/parallax-1.webp');
    height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    margin-top: 100px;
}

    .page-home section.parallax .parallax-overlay {
        background-color: rgba(0, 0, 0, 0.5);
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

        .page-home section.parallax .parallax-overlay h2 {
            font-size: 40px;
            margin-bottom: 20px;
            font-weight: 900;
            font-family: 'montserrat';
        }

        .page-home section.parallax .parallax-overlay p {
            font-size: 40px;
            font-weight: 900;
            font-family: 'montserrat';
            line-height: 1.5;
        }


.page-home section.haberler  {
    padding:100px 0;
}

.page-home section.haberler .top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 30px;
}

.page-home section.haberler .top-wrapper .item .title {
    font-family: 'Montserrat',sans-serif;
    font-size: 40px;
    font-weight: 500;
}

.page-home section.haberler .top-wrapper .item .button {
    font-size: 17px;
    border: 1px solid var(--red);
    padding: 10px 30px;
    border-radius: 30px;
    transition: .3s;
}

.page-home section.haberler .top-wrapper .item .button:hover {
    border: 1px solid var(--red);
    background: var(--red);
    color: #fff;
    transition: .3s;
}

.page-home section.haberler .news-slider {
    padding-top: 50px;
}

    .page-home section.haberler .news-slider .text-wrapper {
        padding: 30px;
    }
        .page-home section.haberler .news-slider .text-wrapper .title {
            font-size: 18px;
            font-weight: 700;
            padding-bottom: 20px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
            font-family: 'Montserrat';
        }

        .page-home section.haberler .news-slider .text-wrapper .text {
            font-weight: 300;
            font-size: 18px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
    .page-home section.haberler .news-slider li:hover img {
        scale: 1.1;
        transition: .3s;
    }
    .page-home section.haberler .news-slider li:hover {
        border:1px solid var(--red);
    }

    .page-home section.haberler .news-slider .image {
        width: 100%;
        aspect-ratio: 4/2;
        overflow: hidden;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

        .page-home section.haberler .news-slider .image img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            transition: .3s;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
        }

    
    .page-home section.haberler .news-slider li {
        border-radius: 20px;
        border: 1px solid #d7d7d7;
    }

    .page-home section.haberler .news-slider .glide__slide {
        height: auto;
    }

.breadcrumb-container {
    margin-top: 120px;
    padding: 20px 50px 0;
}

.page-services .content h2 {
    font-size: 2.5vw;
    font-weight: 300;
    padding-bottom: 50px;
}

.page-services .content {
    font-size: 1vw;
    line-height: 1.8vw;
    padding-bottom: 100px;
}

.page-services .content .content-flex {
    display: flex;
    gap: 100px;
    padding:50px 0;
    align-items: center;
}

    .page-services .content .content-flex .left {
        width:50%;
    }
    .page-services .content .content-flex .left img {
        width:100%;
    }
    .page-services .content .content-flex .right {
        width: 50%;
    }


.page-about-us .content {
    font-size: 1vw;
    line-height: 1.8vw;
    padding-bottom: 100px;
}

    .page-about-us .content h2 {
        font-size: 2.5vw;
        font-weight: 300;
        padding-bottom: 50px;
    }

    .page-about-us .content .content-flex {
        display: flex;
        gap: 100px;
        padding: 50px 0;
        align-items: center;
    }

        .page-about-us .content .content-flex .left {
            width: 50%;
        }

            .page-about-us .content .content-flex .left img {
                width: 100%;
            }

        .page-about-us .content .content-flex .right {
            width: 50%;
        }



.page-about-us .parallax {
    background-image: url('/images/parallax-1.webp');
    height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    position: relative;
    margin: 100px 0;
}

.page-about-us .parallax .parallax-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 4vw;
    font-weight: 900;
    text-transform: uppercase;
    /* font-family: 'Opem Sans', sans-serif; */
    color: #ffffff;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #ffffff;
    /* line-height: 10rem; */
    /* color: #c8090969; */
}

.page-about-us .parallax .parallax-overlay h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 900;
    font-family: 'montserrat';
}

.page-about-us .parallax .parallax-overlay p {
    font-size: 40px;
    font-weight: 900;
    font-family: 'montserrat';
    line-height: 1.5;
}


.page-career .content h2 {
    font-size: 2.5vw;
    font-weight: 300;
    padding-bottom: 50px;
}

.page-career .content {
    font-size: 1.4vw;
    line-height: 2.4vw;
    padding-bottom: 100px;
    font-weight: 300;
}

.page-career .hr-wrapper ul.hr-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
}

    .page-career .hr-wrapper ul.hr-list li {
        border: 1px solid #e2e2e2;
        padding: 20px;
        width: calc(33.33% - 20px);
        display: flex;
        flex-direction: column;
        transition: .5s;
        border-radius: 20px;
        cursor: pointer;
    }

        .page-career .hr-wrapper ul.hr-list li .text {
            flex: 1;
            font-size: 18px;
            line-height: 2;
        }

        .page-career .hr-wrapper ul.hr-list li:hover {
            /* box-shadow: 0px 5px 20px 0px rgb(0 0 0 / 25%); */
            border: 1px solid var(--red);
        }

        .page-career .hr-wrapper ul.hr-list li:nth-child(3n+3) {
            margin-right: 0;
        }

        .page-career .hr-wrapper ul.hr-list li .date {
            margin-top: 10px;
            text-align: right;
        }

        .page-career .hr-wrapper ul.hr-list li .title {
            font-size: 22px;
            font-weight: 600;
            margin: 10px 0;
            /* Color: var(--dark-blue); */
            font-weight: 500;
        }

        .page-career .hr-wrapper ul.hr-list li .image {
            width: 100%;
            height: 300px;
        }

            .page-career .hr-wrapper ul.hr-list li .image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .page-career .hr-wrapper ul.hr-list li .btn-detay {
            background: var(--black);
            color: #fff;
            padding: 7px 20px;
            display: inline-block;
            text-align: center;
            border-radius: 20px;
            cursor: pointer;
            width: inherit;
            margin: 30px auto 0;
            font-size: 18px;
            line-height: 1.6;
        }

        .page-career .hr-wrapper ul.hr-list li:hover .btn-detay {
            background: var(--red);
            color: #fff;
        }

.page-news .wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    padding: 50px 0 100px;
}

.page-news .wrapper .item {
   width:calc((100% - 60px) /3);
}

 .page-news .wrapper .item  .text-wrapper {
    padding: 20px;
}

    .page-news .wrapper .item .text-wrapper .title {
        font-size: 18px;
        font-weight: 500;
        padding-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .page-news .wrapper .item .text-wrapper .text {
        font-weight: 300;
        font-size: 18px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .page-news .wrapper .item a:hover img {
        scale: 1.1;
        transition: .3s;
    }

    .page-news .wrapper .item:hover {
        border: 1px solid var(--red);
    }

    .page-news .wrapper .item .image {
        width: 100%;
        aspect-ratio: 4/2;
        overflow: hidden;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

        .page-news .wrapper .item .image img {
            width: 100%;
            aspect-ratio: 4/3;
            object-fit: cover;
            transition: .3s;
            border-top-left-radius: 20px;
            border-top-right-radius: 20px;
        }


    .page-news .wrapper .item {
        border-radius: 20px;
        border: 1px solid #d7d7d7;
    }


.page-contact section.contact-info {
    padding: 100px 5% 50px;
    display: flex;
    gap: 50px;
    background: #f3f3f3;
}

    .page-contact section.contact-info .map {
        height: 100%;
        width: 100%;
    }

    .page-contact section.contact-info .contact-wrapper {
        background: #fff;
        padding: 50px;
        width: 50%;
    }

    .page-contact section.contact-info .text-wrapper {
        padding: 30px 0;
        font-size: 18px;
    }

        .page-contact section.contact-info .text-wrapper .text {
            padding: 20px 0;
        }

            .page-contact section.contact-info .text-wrapper .text.phone-wrapper {
                display: flex;
                gap: 100px;
            }

        .page-contact section.contact-info .text-wrapper .title {
            font-weight: 700;
        }

    .page-contact section.contact-info h2 {
        padding-bottom: 20px;
        font-size: 32px;
        font-weight: 500;
    }


.page-contact section.form {
    padding: 50px 5% 100px;
    /* background: #f3f3f3; */
    margin: 0 auto;
}

    .page-contact section.form .wrapper {
        width: 70%;
        background: #fff;
        margin: 0 auto;
        padding: 50px;
    }

        .page-contact section.form .wrapper .title {
            font-size: 36px;
            font-weight: 700;
            text-align: center;
            padding-bottom: 40px;
        }

        .page-contact section.form .wrapper .f-row {
            display: flex;
            gap: 50px;
            justify-content: space-between;
        }

            .page-contact section.form .wrapper .f-row div {
                width: 50%;
            }

        .page-contact section.form .wrapper div input, div textarea {
            width: 100%;
            background-color: #f3f3f3;
            padding: 20px 20px;
        }

        .page-contact section.form .wrapper span {
            font-size: 18px;
        }

        .page-contact section.form .wrapper input, .page-contact section.form .wrapper textarea {
            margin-top: 10px;
        }


        .page-contact section.form .wrapper div .but {
            background-color: var(--black) !important;
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
              transition:.3s;
        }
   .page-contact section.form .wrapper div .but:hover {
            background-color: var(--red) !important;
       transition:.3s;
            
        }

.page-corporate .sectors {
    padding: 50px 0 100px;
}

.page-corporate .sectors .wrapper {
    display: flex;
    align-items: center;
}

    .page-corporate .sectors .wrapper:nth-child(even) {
        flex-direction: row-reverse;
    }

    .page-corporate .sectors .wrapper .image {
        width: 50%;
    }

        .page-corporate .sectors .wrapper .image img, .image video {
            width: 100%;
        }

    .page-corporate .sectors .wrapper .text {
        width: 50%;
        padding: 100px;
        font-size: 21px;
        font-weight: 300;
    }




footer {
    background: var(--black);
    /* margin: 0 50px; */
}

    footer .wrapper {
        padding: 50px;
        color: #fff;
        display: flex;
        justify-content: space-evenly;
    }

        footer .wrapper h2 {
            font-size: 24px;
            font-weight: 700;
            font-family: 'montserrat';
            padding-bottom: 10px;
        }

        footer .wrapper ul li a {
            font-size: 20px;
            font-weight: 300;
            font-family: 'montserrat';
        }

    footer .social-wrapper {
        padding: 50px 0 100px;
    }

        footer .social-wrapper h2 {
            text-align: center;
            padding-bottom: 20px;
            color: #fff;
            font-weight: 300;
            font-size: 28px;
        }

        footer .social-wrapper ul {
            display: flex;
            justify-content: center;
        }

            footer .social-wrapper ul li {
                padding: 0 20px;
            }


                footer .social-wrapper ul li a {
                    transition: .2s;
                    width: 50px;
                    height: 50px;
                    background: #ffffff;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    border-radius: 50%;
                    text-decoration: none;
                    font-size: 22px;
                    color: var(--black);
                    padding: 20px;
                }

                    footer .social-wrapper ul li a:hover {
                        transition: .2s;
                        background: var(--red);
                        color: #fff;
                    }

                footer .social-wrapper ul li i {
                    font-size: 24px
                }

footer .footer-sub {
    background: #ffffff;
    display: flex;
    padding: 20px 50px;
    justify-content: space-between;
    align-items: center;
}

    footer .footer-sub .lizbon {
        height: 14px;
        display: inline-block;
    }

        footer .footer-sub .lizbon img {
            height: 100%;
            display: flex;
        }
