@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');
@import url('app-media.css?v1');

html.glightbox-open {
    overflow: initial;
}

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

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

.btn.bg-orange:hover {
    background: var(--orange-hover);
    color: #fff;
}

.btn.bg-grey:hover {
    background: #222;
    color: #fff;
}

.text-white {
    color: #fff;
}

.pt-100{
    padding-top:100px;
}

.pb-30 {
    padding-bottom: 30px;
}
.pb-50 {
    padding-bottom: 50px;
}
.pb-100{
    padding-bottom:100px;
}
.page {
    flex: 1;
}

.container-fluid {
    padding: 0;
}

.breadcrumb-container {
    padding: 20px 5%;
}

header {
    position: sticky;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    /* -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16); */
    background: #fff;
    width: 100%;
    margin: 0 auto;
    padding: 0 5%;
    box-shadow: 0px 2px 12px -5px rgba(0, 0, 0, 0.75);
    transition: .3s transform ease-out;
}

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

        header .header-container .logo {
            height: 80px;
            padding: 10px 0;
            display:flex;
            align-items:center;
        }

            header .header-container .logo img {
                width: 28vw;
            }

        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 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: #222;
                        height: 120px;
                        align-content: center;
                        transition: .3s;
                        text-align: center;
                    }

                    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-araclar {
                        position: absolute;
                        top: 120px;
                        left: 0;
                        width: 90%;
                        display: none;
                        transition: .3s;
                    }

                    header .header-container .menu-container .menu ul li.active .menu-araclar {
                        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-araclar .item-container {
                            display: flex;
                            /* gap: 70px; */
                            padding: 40px 5%;
                            background: #f3f3f3;
                            transition: .3s;
                            flex-wrap: wrap;
                            justify-content: center;
                        }

                            header .header-container .menu-container .menu ul li.active .menu-araclar .item-container.column-6 > div {
                                width: calc(100% / 4);
                                padding: 20px 40px;
                                display: flex;
                                justify-content: center;
                            }

                            header .header-container .menu-container .menu ul li.active .menu-araclar .item-container .item-wrapper:hover img {
                                transform: scale(1.2);
                                transition: .2s;
                            }

                            header .header-container .menu-container .menu ul li.active .menu-araclar .item-container .item-wrapper a {
                                background-color: transparent;
                                display: flex;
                                flex-direction: column;
                                align-content: center;
                            }

                            header .header-container .menu-container .menu ul li.active .menu-araclar .item-container .item-wrapper .image {
                                aspect-ratio: 4/3;
                                text-align: center;
                                height: 128px;
                            }

                                header .header-container .menu-container .menu ul li.active .menu-araclar .item-container .item-wrapper .image img {
                                    height: 100%;
                                    aspect-ratio: 4/3;
                                    object-fit: contain;
                                    transition: .2s;
                                }

                            header .header-container .menu-container .menu ul li.active .menu-araclar .item-container .item-wrapper .text {
                                font-weight: 500;
                                text-align: center;
                                padding-top: 30px;
                            }


                    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(--orange);
                            transition: .3s;
                            flex-wrap: wrap;
                            gap: 50px;
                            justify-content: center;
                        }

                            header .header-container .menu-container .menu ul li.active .menu-full .item-container > div {
                                width: calc((100% - 150px) / 4);
                                padding: 20px 40px 20px 0;
                                border-right: 1px solid #fefefe;
                            }
                            header .header-container .menu-container .menu ul li.active .menu-full .item-container.column-3 > div {
                                width: calc((100% - 100px) / 3);
                                padding: 20px 40px 20px 0;
                                border-right: 1px solid #fefefe;
                            }

                                header .header-container .menu-container .menu ul li.active .menu-full .item-container > div:last-child {
                                    border-right: none;
                                }


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

                                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: #fff;
                                /* display: flex; */
                                justify-content: space-between;
                                align-items: top;
                                /*text-transform: uppercase;*/
                                text-align: center;
                            }

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

                                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: relative;
            }

                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;
                    }

/* FLEX */
.flex-wrapper {
    display: flex;
    flex: 1
}

.fw-row {
    flex-direction: row
}

.fw-column {
    flex-direction: column
}

.fw-j-sb {
    justify-content: space-between
}

.fw-j-center {
    justify-content: center
}

.fw-j-end {
    justify-content: flex-end;
}

.fw-a-center {
    align-items: center
}

.fw-a-end {
    align-items: flex-end
}

/* MOBILE MENU */
.mobile-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    transition: .75s transform cubic-bezier(0.23, 1, 0.32, 1);
    transform: translate3d(0, -100%, 0);
    overflow: hidden;
    z-index: 1001;
}

    .mobile-drawer.visible {
        transform: translate3d(0, 0, 0);
    }

    .mobile-drawer .mobile-drawer-main {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        bottom: 1.56vw;
        display: flex;
        flex: 1;
        flex-direction: column;
        background-color: #000;
        padding: 1.5rem;
        overflow-y: auto;
        transition: 1s transform cubic-bezier(0.23, 1, 0.32, 1);
        transition-delay: .05s;
        transform: translate3d(0, -100%, 0);
    }

    .mobile-drawer.visible .mobile-drawer-main {
        transform: translate3d(0, 0, 0);
    }

        .mobile-drawer.visible .mobile-drawer-main .drawer-header {
            padding-bottom: 1.5rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid rgba(244, 234, 239, .15);
        }

    .mobile-drawer .mobile-drawer-main .drawer-header .drawer-title {
        font-size: 1.625rem;
        font-weight: 500;
        color: var(--white-secondary);
    }

    .mobile-drawer .mobile-drawer-main .drawer-header .btn-mobile-drawer-close {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        background-color: #ffffff;
        font-size: 1.625rem;
        color: #222222;
        transition: .15s background-color ease, .15s color ease;
        margin-right: 10px;
    }

        .mobile-drawer .mobile-drawer-main .drawer-header .btn-mobile-drawer-close:hover {
            /* color: #F44336; */
        }

    .mobile-drawer .mobile-drawer-main .drawer-body .mobile-nav {
        display: flex;
        flex: 1;
        flex-direction: column;
        width: 100%;
    }

    .mobile-drawer .mobile-drawer-main .drawer-body .routes .route {
        padding: 1rem .625rem;
        border-bottom: 1px solid rgba(244, 234, 239, .09);
        color: var(--white-secondary);
        background-color: transparent;
    }

    .mobile-drawer .mobile-drawer-main .drawer-body .routes li.diller a {
        color: #FFF;
    }

    .mobile-drawer .mobile-drawer-main .drawer-body .routes .route.active {
        background-color: var(--primary-dark);
        color: var(--white-secondary);
        font-weight: 500;
    }

    .mobile-drawer .mobile-drawer-main .drawer-body .routes .route a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mobile-drawer .mobile-drawer-main .drawer-body .routes .collapse-route a {
        font-size: 14px
    }

    .mobile-drawer .mobile-drawer-main .drawer-body .routes .route a .collapse-arrow {
        transition: .15s transform ease;
    }

    .mobile-drawer .mobile-drawer-main .drawer-body .routes .route a[aria-expanded="true"] .collapse-arrow {
        transform: rotate(180deg);
    }

    .mobile-drawer .mobile-drawer-main .drawer-body .routes .route .collapse-menu {
        margin-top: 1rem;
        background-color: #222;
    }

        .mobile-drawer .mobile-drawer-main .drawer-body .routes .route .collapse-menu .collapse-menu {
            margin-top: 1rem;
            background-color: #7e7e7e;
        }

    .mobile-drawer .mobile-drawer-main .drawer-body .routes .route .collapse .route:last-child {
        border-bottom: 0;
    }

    .mobile-drawer .mobile-drawer-main .drawer-body li.diller {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: row;
        justify-content: center;
        gap: 30px;
        margin: 30px 0;
        border-bottom: 1px solid #757575;
        padding-bottom: 20px;
    }

        .mobile-drawer .mobile-drawer-main .drawer-body li.diller img {
            height: 45px;
        }

    .mobile-drawer .mobile-drawer-main .drawer-body .mobile-search {
        position: relative;
        display: flex;
        width: 100%;
        margin-bottom: 1rem;
    }

        .mobile-drawer .mobile-drawer-main .drawer-body .mobile-search .mobile-search-input {
            display: flex;
            padding: .875rem 4rem .875rem 1rem;
            width: 100%;
            background-color: rgb(255 255 255 / 80%);
            color: #222;
        }

        .mobile-drawer .mobile-drawer-main .drawer-body .mobile-search .mobile-search-submit {
            position: absolute;
            right: 0;
            top: 0;
            bottom: 0;
            width: 60px;
            background-color: rgb(53 53 53 / 81%);
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 21px;
        }

 header .mobile-ui {
    display: none;
}

     header .mobile-ui .btn-mobile-drawer-open {
        height: 44px;
        width: 49px;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0;
        border-radius: 3px;
        background: var(--orange);
        color: #fff;
        font-size: 19px;
    }

         header .mobile-ui .btn-mobile-drawer-open button i {
            font-size: 26px;
        }


section.banner {
    /* padding:0 5%; */
}

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



.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; */
}


.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: #1818185e;
    position: absolute;
    height: 100%;
    width: 100%;
}


.page-home section.about {
    padding: 100px 5%;
}

    .page-home section.about .about-container {
        display: flex;
        gap: 100px;
        justify-content: center;
    }

        .page-home section.about .about-container .about-wrapper:first-child {
            width: 26%;
        }

        .page-home section.about .about-container .about-wrapper {
            width: 50%;
        }

            .page-home section.about .about-container .about-wrapper h2 {
                font-weight: 900;
                font-size: 62px;
                text-align: right;
                line-height: 1.2;
                color: var(--grey);
            }

                .page-home section.about .about-container .about-wrapper h2 span {
                    font-weight: 500;
                    font-size: 37px;
                    display: block;
                    text-align: right;
                    color: var(--orange);
                }

            .page-home section.about .about-container .about-wrapper .text {
                font-size: 18px;
                line-height: 2
            }

            .page-home section.about .about-container .about-wrapper .button {
                padding-top: 25px;
            }

                .page-home section.about .about-container .about-wrapper .button .btn {
                    padding: 10px 30px;
                    font-size: 20px;
                    font-weight: 400;
                    font-family: 'Open Sans', sans-serif;
                }

                    .page-home section.about .about-container .about-wrapper .button .btn:hover {
                        color: #fff;
                        background: var(--grey)
                    }



.page-home section.vehicles {
    padding: 100px 5%;
    background: #f3f3f3;
}

    .page-home section.vehicles h2 {
        font-weight: 900;
        font-size: 40px;
        text-align: center;
        padding-bottom: 50px;
        color: var(--grey);
    }

    .page-home section.vehicles .vehicles-container {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
        justify-content: center;
        width: 100%;
        margin: 0 auto;
    }

        .page-home section.vehicles .vehicles-container .item-wrapper {
            width: calc((100% - 100px) / 3);
            text-align: center;
            background: #fff;
            transition: .3s;
        }

            .page-home section.vehicles .vehicles-container .item-wrapper .image {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

                .page-home section.vehicles .vehicles-container .item-wrapper .image img {
                    width: 60%;
                    aspect-ratio: 4/3;
                }

            .page-home section.vehicles .vehicles-container .item-wrapper a {
                /* background: #fff; */
                display: block;
                padding: 40px;
            }

            .page-home section.vehicles .vehicles-container .item-wrapper:hover {
                box-shadow: 0px 5px 35px 0px rgb(0 0 0 / 25%);
            }

            .page-home section.vehicles .vehicles-container .item-wrapper .text {
                font-weight: 700;
                padding: 50px 0 0;
                font-size: 21px;
                font-family: 'Montserrat';
            }

.page-home section.feats {
    padding: 100px 5%;
}


    .page-home section.feats .feat-container {
        display: flex;
        /* gap: 100px; */
        align-items: center;
        justify-content: center;
        flex-direction: row;
        /* padding: 50px 0; */
    }

        .page-home section.feats .feat-container:nth-of-type(odd) {
            flex-direction: row-reverse;
        }

        .page-home section.feats .feat-container .image {
            width: 50%;
        }

            .page-home section.feats .feat-container .image img {
                width: 100%;
            }

        .page-home section.feats .feat-container .text-wrapper {
            width: 50%;
            padding: 0 5%;
        }

            .page-home section.feats .feat-container .text-wrapper h3 {
                font-size: 40px;
            }

            .page-home section.feats .feat-container .text-wrapper .text {
                font-size: 18px;
            }


.page-home section.parallax-1 {
    /* padding: 100px 0; */
    position: relative;
}

    .page-home section.parallax-1 .block {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
        font-size: 16px;
    }


        .page-home section.parallax-1 .block .img-parallax {
            width: 100vmax;
            z-index: -1;
            position: absolute;
            top: 0;
            left: 50%;
            transform: translate(-50%,0);
            pointer-events: none
        }

        .page-home section.parallax-1 .block .overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background: #00000061;
            top: 0;
            left: 0;
        }

        .page-home section.parallax-1 .block .flex-wrapper {
            padding: 300px 200px;
            display: flex;
            justify-content: space-around;
            font-size: 50px;
            font-weight: 900;
            color: #fff;
            z-index: 100;
            position: relative;
        }


.page-home section.news {
    padding: 100px 5%;
}

    .page-home section.news h2 {
        font-weight: 900;
        font-size: 62px;
        text-align: center;
        line-height: 1.2;
        color: var(--grey);
    }

        .page-home section.news h2 span {
            font-weight: 500;
            font-size: 37px;
            display: block;
            text-align: center;
            color: var(--orange);
        }

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

        .page-home section.news .news-slider a:hover img {
            transform: scale(1.1);
            transition: .3s;
        }

        .page-home section.news .news-slider .image {
            width: 100%;
            aspect-ratio: 4/3;
            overflow: hidden;
        }

            .page-home section.news .news-slider .image img {
                width: 100%;
                aspect-ratio: 4/3;
                object-fit: cover;
                transition: .3s;
            }

        .page-home section.news .news-slider .text {
            font-size: 18px;
            font-weight: 500;
            padding: 20px;
        }

.page-product-detail section.product-info {
    padding: 100px 5%;
}

    .page-product-detail section.product-info .info-container {
        display: flex;
        gap: 100px;
    }

        .page-product-detail section.product-info .info-container .image {
            width: calc(50% - 50px);
            text-align: center;
        }

            .page-product-detail section.product-info .info-container .image .wrapper {
                position: -webkit-sticky;
                position: sticky;
                top: 200px;
            }

                .page-product-detail section.product-info .info-container .image .wrapper .gallery-container {
                    position: relative;
                    width: 90%;
                    display: flex;
                    justify-content: space-between;
                    overflow: hidden;
                    flex-direction: column;
                }

                    .page-product-detail section.product-info .info-container .image .wrapper .gallery-container .slider-galeria {
                        width: 100%;
                    }


                        .page-product-detail section.product-info .info-container .image .wrapper .gallery-container .slider-galeria div, .page-product-detail section.product-info .info-container .image .wrapper .gallery-container .slider-galeria-thumbs div {
                            outline: 0;
                        }

                        .page-product-detail section.product-info .info-container .image .wrapper .gallery-container .slider-galeria img {
                            width: 100%;
                            aspect-ratio: 4/3;
                            object-fit: contain;
                        }



                    .page-product-detail section.product-info .info-container .image .wrapper .gallery-container .slider-galeria-thumbs img {
                        width: 70%;
                        aspect-ratio: 4/3;
                        object-fit: contain;
                        place-self: center;
                    }

        .page-product-detail section.product-info .info-container .description {
            width: calc(40% - 50px);
        }

            .page-product-detail section.product-info .info-container .description .title h1 {
                font-size: 31px;
                font-weight: 900;
                padding-bottom: 20px;
            }

            .page-product-detail section.product-info .info-container .description .subtitle {
                font-size: 21px;
                font-weight: 500;
                padding-bottom: 20px;
                color: var(--orange);
            }

            .page-product-detail section.product-info .info-container .description .shortdesc {
                line-height: 2;
            }

            .page-product-detail section.product-info .info-container .description .documents {
                padding-top: 50px;
                display: flex;
                gap: 20px;
            }

                .page-product-detail section.product-info .info-container .description .documents .btn {
                    padding: 15px 40px;
                    display: inline-flex;
                    align-items: center;
                    font-size: 16px;
                }


                    .page-product-detail section.product-info .info-container .description .documents .btn i {
                        margin-right: 20px;
                        font-size: 24px;
                    }

    .page-product-detail section.product-info .specs {
        padding: 100px 0;
    }

        .page-product-detail section.product-info .specs table {
            width: 100%;
            border-radius: 29px;
            overflow: hidden;
            border: 1px solid #eee;
            margin: 0 auto;
        }

        .page-product-detail section.product-info .specs table tr.top td {
            background: var(--grey);
            color: #fff;
            font-weight: 900;
            border: 1px solid;
            font-size: 16px;
        }

        .page-product-detail section.product-info .specs table td.first {
            background: var(--orange);
            color: #fff;
            text-transform: uppercase;
            font-weight: 900;
            border: 1px solid;
            font-size: 16px;
        }

            .page-product-detail section.product-info .specs table thead tr {
                background: var(--grey);
                color: #FFF;
            }

            .page-product-detail section.product-info .specs table tr td, .specs table tr th {
                padding: 10px 20px;
                border: 1px solid;
                font-size: 16px;
            }

            .page-product-detail section.product-info .specs table tbody tr:nth-child(odd) {
                background: #f2f2f2;
            }

            .page-product-detail section.product-info .specs table tbody tr td:first-child {
                /* font-weight: 700; */
            }

    .page-product-detail section.product-info .feats {
        padding: 100px 5%;
    }


        .page-product-detail section.product-info .feats .feat-container {
            display: flex;
            /* gap: 100px; */
            align-items: center;
            justify-content: center;
            flex-direction: row;
            /* padding: 50px 0; */
        }

            .page-product-detail section.product-info .feats .feat-container:nth-of-type(odd) {
                flex-direction: row-reverse;
            }

            .page-product-detail section.product-info .feats .feat-container .image {
                width: 50%;
            }

                .page-product-detail section.product-info .feats .feat-container .image img {
                    width: 100%;
                }

            .page-product-detail section.product-info .feats .feat-container .text-wrapper {
                width: 50%;
                padding: 0 5%;
            }

                .page-product-detail section.product-info .feats .feat-container .text-wrapper h3 {
                    font-size: 40px;
                }

                .page-product-detail section.product-info .feats .feat-container .text-wrapper .text {
                    font-size: 18px;
                }

    .page-product-detail section.product-info .cizimler ul {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .page-product-detail section.product-info .cizimler ul li img {
        height: 250px;
    } 

.page-corporate #rootDiv {
    padding: 0 5% 100px;
}

.page-corporate h1 {
    font-weight: 900;
    font-size: 40px;
    text-align: center;
    padding-bottom: 50px;
    color: var(--grey);
    padding-top: 50px;
}

.page-corporate .page-banner .image {
    width: 100%;
}

    .page-corporate .page-banner .image img {
        width: 100%;
    }

.page-corporate section.section-1 {
    /* padding: 0 5%; */
}




    .page-corporate section.section-1 .text {
        width: 70%;
        margin: 0 auto;
        line-height: 2;
        padding-bottom: 50px;
        text-align: center;
        font-size: 18px;
    }

        .page-corporate section.section-1 .text p {
            padding: 20px 0;
        }

.page-corporate section.section-2 {
    display: flex;
    gap: 100px;
    align-items: center;
    padding: 100px 0;
    font-size: 18px;
    line-height: 2;
}

    .page-corporate section.section-2 .left {
        width: calc(50% - 50px);
    }

    .page-corporate section.section-2 .right {
        width: calc(50% - 50px);
    }

        .page-corporate section.section-2 .right video {
            width: 100%;
        }

.page-corporate section.section-3 {
    display: flex;
    gap: 100px;
    align-items: center;
    padding: 0px 0 60px 0;
}

    .page-corporate section.section-3 .left {
        width: calc(50% - 50px);
    }

    .page-corporate section.section-3 .right {
        width: calc(50% - 50px);
    }

    .page-corporate section.section-3 .left img {
        width: 100%;
    }

    .page-corporate section.section-3 h2 {
        font-size: 30px;
        padding-bottom: 20px;
    }


.page-corporate section.section-4 {
    display: flex;
    gap: 100px;
    align-items: center;
    padding: 0px 0 100px;
}

    .page-corporate section.section-4 .left {
        width: calc(50% - 50px);
    }

    .page-corporate section.section-4 .right {
        width: calc(50% - 50px);
    }

        .page-corporate section.section-4 .right img {
            width: 100%;
        }

    .page-corporate section.section-4 h2 {
        font-size: 30px;
        padding-bottom: 20px;
    }

.page-corporate #rootDiv .content ul {
    padding-left: 20px;
    line-height: 2;
    font-size: 18px;
}

    .page-corporate #rootDiv .content ul li {
        list-style-type: disc;
    }


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

    .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: 50px;
                flex-wrap: wrap;
            }
                .page-contact section.contact-info .text-wrapper .text.phone-wrapper .item {
                    width: calc((100% - 50px) /2);
                }

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

    .page-contact section.contact-info h2 {
        padding-bottom: 20px;
    }


.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: 900;
            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 div .but {
            background-color: var(--grey) !important;
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
        }

.page-spare-parts #rootDiv {
    padding: 0 5%;
}

.page-spare-parts h1 {
    padding: 100px 0 50px 0;
    font-weight: 900;
    font-size: 40px;
    text-align: center;
    color: var(--grey);
}

.page-spare-parts .select {
    width: 100%;
    display: inline-block;
    position: relative;
    margin-bottom: 30px;
}

    .page-spare-parts .select:before {
        content: "\f0dd";
        width: auto;
        font-family: FontAwesome;
        display: inline-block;
        float: right;
        line-height: 9px;
        margin-left: 6px;
        z-index: 2;
        color: #9e9e9e;
        position: absolute;
        top: 50%;
        margin-top: -7px;
        right: 20px;
    }


    .page-spare-parts .select select {
        width: 100%;
        display: inline-block;
        background: #f7f7f7;
        border: 1px solid #e1e1e1;
        height: 55px;
        line-height: 55px;
        padding: 0 20px;
        font-size: 17px;
        /* color: #868686; */
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        cursor: pointer;
        position: relative;
        z-index: 0;
        font-weight: 600;
    }

.page-spare-parts .servisListe {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

    .page-spare-parts .servisListe .listitem {
        width: 31.33%;
        background: #f7f7f7;
        padding: 20px;
        margin: 0 3% 3% 0;
    }

        .page-spare-parts .servisListe .listitem:nth-child(3n + 3) {
            margin: 0 0 3% 0;
        }

        .page-spare-parts .servisListe .listitem span.title {
            font-weight: 600;
            font-size: 17px;
        }

    .page-spare-parts .servisListe .listitem {
        font-size: 16px;
    }

        .page-spare-parts .servisListe .listitem .maps {
            margin-top: auto;
            display: flex;
        }

        .page-spare-parts .servisListe .listitem .text {
            display: flex;
            flex-direction: column;
            flex: 1;
            height: 100%;
        }

            .page-spare-parts .servisListe .listitem .text a:hover {
                color: var(--orange);
            }

        .page-spare-parts .servisListe .listitem .maps a {
            width: 50%;
            background: var(--grey);
            color: #fff;
            padding: 5px 10px;
            text-decoration: none;
            text-align: center;
            margin: 3px;
        }

            .page-spare-parts .servisListe .listitem .maps a:hover {
                background: var(--orange);
                color: #fff;
            }

    .page-spare-parts .servisListe ul {
        margin-bottom: 22px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

.page-founder h1 {
    font-weight: 900;
    font-size: 40px;
    text-align: center;
    padding-bottom: 50px;
    color: var(--grey);
    padding-top: 50px;
}

.page-founder .item {
    display: flex;
    padding-bottom: 100px;
    align-items: center;
}

    .page-founder .item:nth-child(2n) {
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
    }

    .page-founder .item .image {
        width: 50%;
    }

        .page-founder .item .image img {
            width: 100%;
        }

    .page-founder .item .text {
        width: 50%;
        padding: 50px;
    }

    .page-founder .item:nth-child(2n) .text {
        width: 50%;
        padding: 50px;
        text-align: right
    }

    .page-founder .item .text .title {
        font-size: 46px;
        font-weight: 900;
        color: var(--orange);
    }


.page-certificates h1 {
    font-weight: 900;
    padding-bottom: 50px;
    text-align: center;
}


.page-certificates .list {
    padding: 100px 5%;
}

.page-certificates .certificates-list {
    /* padding: 100px 5%; */
    /* background: #f3f3f3; */
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

    .page-certificates .certificates-list a {
        width: calc((100% - 40px) / 3);
        display: flex;
    }

    .page-certificates .certificates-list .item-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        /* gap: 30px; */
        padding: 20px;
        border: 1px solid #d9d9d9;
        cursor: pointer;
        transition: .2s;
        flex-grow: 1;
    }

        .page-certificates .certificates-list .item-wrapper:hover {
            border: 1px solid var(--orange);
            border-left: 6px solid var(--orange);
            transition: .2s;
        }

        .page-certificates .certificates-list .item-wrapper .item .title {
            font-weight: 700;
            font-size: 18px
        }

        .page-certificates .certificates-list .item-wrapper .icon i {
            color: var(--light-blue);
            font-size: 28px
        }


.page-gallery h1 {
    font-weight: 900;
    font-size: 40px;
    text-align: center;
    padding-bottom: 50px;
    color: var(--grey);
    padding-top: 50px;
}

.page-gallery .wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 50px 5% 100px;
}

    .page-gallery .wrapper .item {
        width: calc((100% - 80px)/3); /* padding: 10px; */
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        position: relative;
    }

        .page-gallery .wrapper .item .image {
            aspect-ratio: 16/9;
            overflow: hidden;
        }

            .page-gallery .wrapper .item .image:hover img {
                transform: scale(1.1);
                transition: .3s;
            }

            .page-gallery .wrapper .item .image .overlay {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: #0000007a;
            }

                .page-gallery .wrapper .item .image .overlay i {
                    font-size: 50px;
                    color: #ffffff;
                    position: absolute;
                    top: 40%;
                    left: 45%;
                }

            .page-gallery .wrapper .item .image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: .3s;
            }

.page-news h1 {
    font-weight: 900;
    font-size: 40px;
    text-align: center;
    padding-bottom: 50px;
    color: var(--grey);
    padding-top: 50px;
}

.page-news .container-fluid {
    padding: 50px 5% 100px;
}

    .page-news .container-fluid .wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 50px;
    }

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

            .page-news .container-fluid .wrapper .item:hover .image img {
                transform: scale(1.1);
                transition: .3s;
            }

            .page-news .container-fluid .wrapper .item .image {
                aspect-ratio: 4/3;
                overflow: hidden;
            }

                .page-news .container-fluid .wrapper .item .image img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: .3s;
                }

            .page-news .container-fluid .wrapper .item .text {
                font-size: 18px;
                font-weight: 500;
                padding: 20px;
            }

.page-news-detail .container {
    padding: 50px 0;
}

.page-news-detail section.news-detail {
    display: inline-block;
}

    .page-news-detail section.news-detail ul li {
        list-style-type: disc;
        list-style-position: inside;
        padding-bottom: 20px;
    }

    .page-news-detail section.news-detail ol, .page-news-detail section.news-detail ul {
        margin-left: 30px;
    }

        .page-news-detail section.news-detail ol li {
            list-style-type: decimal;
            list-style-position: inside;
            padding-bottom: 20px;
        }

        .page-news-detail section.news-detail ul ul, .page-news-detail section.news-detail ol ul {
            list-style-type: circle;
            list-style-position: inside;
            margin-left: 15px;
        }

        .page-news-detail section.news-detail ol ol, .page-news-detail section.news-detail ul ol {
            list-style-type: lower-latin;
            list-style-position: inside;
            margin-left: 15px;
        }

    .page-news-detail section.news-detail .text img {
        text-align: right;
        width: 50%;
        float: right;
        padding-left: 40px;
        padding-bottom: 20px;
    }

    .page-news-detail section.news-detail .text h1 {
        font-family: 'Oswald',sans-serif;
        font-size: 30px;
        padding-bottom: 10px;
    }

    .page-news-detail section.news-detail .text .date {
        font-weight: 700;
        color: var(--orange);
    }

.page-news-detail section.other-news {
    padding: 50px 0 100px;
}

    .page-news-detail section.other-news h2 {
        font-family: 'Oswald', sans-serif;
        padding-bottom: 30px;
    }

    .page-news-detail section.other-news .container .wrapper .image {
        height: 250px;
        width: 100%;
        margin-bottom: 20px
    }

        .page-news-detail section.other-news .container .wrapper .image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .page-news-detail section.other-news .container .wrapper .title {
        font-family: 'Work Sans',sans-serif;
        font-size: 18px;
        font-weight: 700;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2; /* number of lines to show */
        line-height: 24px; /* fallback */
        max-height: 48px; /* fallback */
    }

    .page-news-detail section.other-news .container .wrapper .text {
        font-size: 17px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3; /* number of lines to show */
        line-height: 24px; /* fallback */
        max-height: 72px; /* fallback */
        margin-top: 15px;
    }

footer {
    padding: 50px 0 0;
    background: #f4f4f4;
    position: relative;
    margin-top: 100px;
}

    footer .contact {
        background: var(--grey);
        width: 80%;
        margin: 0 auto;
        /* top: -90px; */
        /* left: 10%; */
        display: flex;
        align-items: center;
        padding: 50px;
        justify-content: space-around;
        margin-top: -150px;
    }

        footer .contact h3 {
            color: #fff;
            font-size: 50px;
            font-weight: 900;
        }

        footer .contact span {
            color: #fff;
            font-size: 20px;
            font-weight: 500;
        }

        footer .contact .button a {
            padding: 15px 40px;
            font-size: 21px;
            font-weight: 500;
        }

            footer .contact .button a:hover {
                color: #FFF;
                text-decoration: none;
                background-color: var(--orange-hover);
            }

    footer .menu-container {
        margin-top: 100px;
        display: flex;
        justify-content: center;
        gap: 100px;
        padding: 0 5% 50px;
    }

    footer .footer-sub {
        background: #ffffff;
        display: flex;
        padding: 20px 5%;
        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;
            }

