@import url('https://fonts.googleapis.com/css2?family=Karla:wght@200;400;600;700;800&family=Oswald:wght@200;400;500;600;700&family=Work+Sans:wght@400;700;800;900&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");
@import url('variables.css');
@import url('media.css');

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}
/*
    font-family: 'Karla', sans-serif;
    font-family: 'Oswald', sans-serif;
    font-family: 'Work Sans', sans-serif;
*/

/* BASE */
::selection {
    background-color: #181a1b;
    color: #fff;
}

/*::placeholder {
    color: #BCBCBC;
}*/


::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #5b5b5b;
    opacity: 1; /* Firefox */
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #5b5b5b;
    :: -ms-input-placeholder
}


*,
*::before,
*::after {
    border: none;
    outline: none;
    list-style: none;
    box-sizing: border-box;
    border-collapse: inherit;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

html, body {
    scroll-behavior: smooth;
    /*overflow-x: hidden;*/
    height: 100%;
}

    html.js-hidden-layout {
        overflow-y: hidden;
    }


body {
    margin: 0;
    font-size: 20px;
    line-height: 1.6667;
    background-color: #f7f7f7;
    color: #222;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Karla', sans-serif;
    text-align: justify;
    overflow-x: hidden;
}


    body.hidescroll {
        overflow: hidden;
    }

a {
    color: inherit;
    text-decoration: none;
}

    a:hover {
        color: inherit;
        text-decoration: none;
    }

h1, h2, h3,
h4, h5, h6 {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    line-height: inherit;
}

p {
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
}

button, input {
    box-shadow: none;
    outline: none !important;
    margin: 0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

[type="button"], [role="button"] {
    -webkit-appearance: none;
    border-radius: 0;
}

.btn {
    padding: 8px 36px;
    border-radius: 8px;
    transition: .15s background-color ease, .15s color ease, .15s transform ease, .15s border-color ease;
    will-change: background-color, color, transform, border-color;
}

.btn-xs {
    padding: 6px 12px
}

.btn-sm {
    padding: 6px 16px !important
}

.btn-main {
    font-weight: 600;
}

.btn-white {
    background-color: var(--light-100)
}

    .btn-white:hover {
        background-color: var(--light-200)
    }

.btn-blue {
    background-color: var(--primary);
    color: #fff;
}

    .btn-blue:hover {
        background-color: var(--primary-darker);
        color: #fff;
    }

    .btn-blue.btn-bordered {
        background: transparent;
        border: 1px solid var(--primary);
        color: var(--primary);
    }

        .btn-blue.btn-bordered:hover {
            background-color: var(--primary);
            color: #fff;
        }

ul, ol, li {
    list-style-type: none;
    margin-block-start: 0;
    margin-block-end: 0;
    margin-inline-start: 0;
    margin-inline-end: 0;
    padding-inline-start: 0;
}

p {
    margin: 0
}

textarea {
    resize: none;
}

img[data-image-type="icon"] {
    width: 100%;
    height: auto;
    cursor: pointer
}

img[data-layout-type="cover-w"] {
    width: 100%;
    height: auto
}

img[data-layout-type="cover-h"] {
    width: auto;
    height: 100%
}

img[data-layout-type="cover-f"] {
    width: 100%;
    height: 100%;
    object-fit: cover
}

img[data-layout-type="contain-w"] {
    width: 100%;
    object-fit: contain
}

img[data-layout-type="contain-h"] {
    height: 100%;
    object-fit: contain
}

img[data-layout-type="contain-f"] {
    width: 100%;
    height: 100%;
    object-fit: contain
}

.p10 {
    padding: 10px;
}

.glightbox-open {
    height: auto !important;
}

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

.container-fluid{padding:0;}

.cursor-pointer{
    cursor:pointer;
}

fw-3{
    font-weight:300;
}
fw-4 {
    font-weight: 400;
}
fw-5 {
    font-weight: 500;
}
fw-6 {
    font-weight: 600;
}
fw-7 {
    font-weight: 700;
}
fw-8 {
    font-weight: 800;
}
fw-9 {
    font-weight: 900;
}
/* END BASE*/


.breadcrumb-item {
    font-size: 1rem;
}


.upper-header {
    padding: 10px 0;
}

    .upper-header ul {
        display: flex;
        gap: 20px;
        flex-direction: row;
        justify-content: flex-end;
    }

        .upper-header ul li i {
            margin-right: 5px;
            color: var(--primary);
            font-size:.9em;
        }
        .upper-header ul li a {
            font: 400 .9em var(--karla);
        }

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

    .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: #222;
        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: #143e77;
    }

        .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.desktop {
    background-color: var(--primary);
    
}

    header.desktop .mobile-ui {
        display: none;
    }

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

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

header.showbg .header-wrapper .menu-wrapper .menu ul li a {
    padding: 10px 20px;
    color: #222 !important;
}
    header.desktop.showbg {
        position: sticky;
        top: 0;
        z-index: 100;
    }
header.desktop.showbg .logo img {
    max-height: 80px;
}

        header.desktop.showbg .menu ul li a {
            /* padding: 20px; */
            text-decoration: none;
            color: inherit;
            text-transform: uppercase;
            color: #FFF;
            font: 400 1em var(--oswald);
            padding: 20px 0 20px 20px;
            transition: .2s;
        }

    header.desktop .container {
        display: flex;
        align-items: center;
        flex-direction: row;
        position: relative;
        align-content: center;
        justify-content: space-between;
    }

    header.desktop .logo {
        padding: 10px 0;
    }

header .logo a {
    display: block;
}

header .logo img {
    max-height: 100px;
}

header.desktop .menu {
    display: flex;
    padding: 20px 0;
}

    header.desktop .menu ul {
        list-style-type: none;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
        margin: 0;
    }

        header.desktop .menu ul li a {
            /* padding: 20px; */
            text-decoration: none;
            color: inherit;
            text-transform: uppercase;
            color: #FFF;
            font: 400 1.18em var(--oswald);
            padding: 20px 0 20px 20px;
             transition:.2s;
        }
     header.desktop .menu ul li a:hover {
           
            color: var(--gold);
         transition:.2s;
        }

    header.desktop .menu a.active > span {
        padding-bottom: 3px;
        border-bottom: 2px solid var(--sky-blue);
    }



.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: 50px;
    margin-top: -30px;
    text-align: center;
    border: 2px solid #000;
    border-radius: 55px;
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    background: var(--gold);
}

.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: #000000;
        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: #000000;
        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: 3.49 / 1;
    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%;
}



.page-home section.search {
    display: flex;
    justify-content: center;
    margin-top: -50px;
    position: relative;
}

    .page-home section.search .search-wrapper {
        background: #fff;
        /* width: 80%; */
        /* border: 1px solid; */
        box-shadow: -1px 26px 20px -26px rgba(0,0,0,0.75);
        -webkit-box-shadow: 0px 16px 20px -20px rgba(0,0,0,0.75);
        -moz-box-shadow: -1px 26px 20px -26px rgba(0,0,0,0.75);
        display: flex;
        align-items: center;
        justify-content: center;
    }




            .page-home section.search .search-wrapper  .wrapper-column .form .form-group {
                position: relative;
            }

                .page-home section.search .search-wrapper .wrapper-column .form .form-group select {
                    padding: 10px 30px;
                }
                    .page-home section.search .search-wrapper .wrapper-column .form .form-group select option {
                        font-size: 1.2rem;
                    }

                .page-home section.search .search-wrapper  .wrapper-column .form .form-group .form-arrow {
                    position: absolute;
                    top: 1.2rem;
                    right: 0.7rem;
                    z-index: 10;
                    font-size: 1.35rem;
                    line-height: inherit;
                    color: var(--color-darks);
                }

            .page-home section.search .search-wrapper  .wrapper-column .form .dropdown {
                position: relative;
                max-width: 300px;
                width: 30vw;
            }

            .page-home section.search .search-wrapper  .wrapper-column .form .dropdown-select {
                position: relative;
                font-family: var(--oswald);
                font-size: 1.25rem;
                font-weight: 500;
                line-height: 1.5;
                cursor: pointer;
                user-select: none;
                width: 100%;
                height: auto;
                padding: 20px 30px 20px 20px;
                border: none;
                outline: none;
                border-radius: 0.50rem;
                color: var(--color-black);
                background-clip: padding-box;
                background-color: var(--color-white);
                box-shadow: var(--shadow-medium);
                transition: all 0.3s ease-in-out;
            }

            .page-home section.search .search-wrapper  .wrapper-column .form .dropdown-menu {
                position: absolute;
                display: none;
                top: 100%;
                left: 0;
                width: 100%;
                z-index: 10;
                border-radius: 0.25rem;
                background-color: var(--color-white);
                box-shadow: var(--shadow-large);
                transition: all 0.3s ease-in-out;
            }

            .page-home section.search .search-wrapper  .wrapper-column .form .dropdown-menu-inner {
                max-height: 16rem;
                overflow-y: scroll;
                overflow-x: hidden;
            }

                .page-home section.search .search-wrapper  .wrapper-column .form .dropdown-menu-inner::-webkit-scrollbar {
                    width: 5px;
                    height: auto;
                }

                .page-home section.search .search-wrapper  .wrapper-column .form .dropdown-menu-inner::-webkit-scrollbar-thumb {
                    border-radius: 0.25rem;
                    background-color: var(--color-greys);
                    box-shadow: var(--shadow-small);
                }

            .page-home section.search .search-wrapper  .wrapper-column .form .dropdown-menu-item {
                font-family: inherit;
                font-size: 1rem;
                font-weight: normal;
                line-height: inherit;
                cursor: pointer;
                user-select: none;
                padding: 0.65rem 1.25rem;
                background-color: var(--color-white);
                transition: all 0.2s ease-in-out;
            }

                .page-home section.search .search-wrapper  .wrapper-column .form .dropdown-menu-item:hover {
                    color: var(--color-black);
                    background-color: var(--color-greys);
                }

                .page-home section.search .search-wrapper  .wrapper-column .form .dropdown-menu-item.is-select,  .wrapper-column .form .dropdown-menu-item.is-select:hover {
                    color: var(--primary);
                    background-color: var(--gold);
                }

            .page-home section.search .search-wrapper  .wrapper-column .form .dropdown-menu-search {
                display: block;
                font-family: inherit;
                font-size: 1rem;
                font-weight: 400;
                line-height: 1.5;
                width: 100%;
                height: auto;
                padding: 0.65rem 1.25rem;
                border: none;
                outline: none;
                color: var(--color-black);
                background-clip: padding-box;
                background-color: var(--color-light);
            }

        .page-home section.search .search-wrapper  .wrapper-column {
            max-width: 40rem;
            height: auto;
            /* margin: 0 auto; */
            padding: 30px 0px 30px 50px;
            border-radius: 0.5rem;
            background-color: var(--color-white);
        }

.btn-search {
    font-size: 1.25rem;
    font-family: var(--oswald);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;
    padding: 20px 30px 20px 30px;
    border: none;
    outline: none;
    border-radius: 0.50rem;
    background:var(--primary);
    color:#FFF;
    margin: 0 50px;
    transition:.2s;
}

.btn-search:hover {
    
    color:var(--gold);
    transition:.2s;
}

.page-home section.vitrin{
    padding:100px 0;
    width: 100%;
    position: relative;
}

    .page-home section.vitrin h1 {
        font: 700 2.5rem var(--oswald);
        text-transform: uppercase;
        text-align: center;
        padding-bottom: 50px;
    }
    .page-home section.vitrin .vitrinSwiper {
        width: 100%;
        padding-left: 10vw; 
        padding-right: 10vw;
        position: relative;
    }

    .page-home section.vitrin .vitrinSwiper .swiper-slide {
        background-color: #fff;
        /* text-align: center; */
        font-size: 24px;
        /*line-height: 300px;
        height: 300px;*/
        border-radius: 1rem;
        border: 1px solid #eee;
        -webkit-box-shadow: 0px 10px 20px -21px rgba(0, 0, 0, 0.75);
    }

        .page-home section.vitrin .vitrinSwiper .swiper-slide .item {
            padding: 20px;
            height: auto;
            display: flex;
            flex-direction: column;
        }

        .page-home section.vitrin .vitrinSwiper .swiper-slide .item .image {
           /* height:300px; */
           border-radius: .6rem;
           overflow:hidden;
           /* aspect-ratio: 16 / 9; */
           width: 100%;
        }
            .page-home section.vitrin .vitrinSwiper .swiper-slide .item .image img {
                aspect-ratio: 16 / 11;
                width: 100%;
                object-fit: cover;
                max-height: 320px;
            }

            .page-home section.vitrin .vitrinSwiper .swiper-slide .item .text-wrapper {
                padding: 20px 0;
            }

                .page-home section.vitrin .vitrinSwiper .swiper-slide .item .text-wrapper .title {
                    font-weight: 700;
                    font-size: 1.3rem;
                    font-family: var(--karla);
                }

                .page-home section.vitrin .vitrinSwiper .swiper-slide .item .text-wrapper .subtitle {
                    font-weight: 500;
                    font-size: 1.1rem;
                    font-family: var(--karla);
                    padding-bottom: 10px;
                }

                .page-home section.vitrin .vitrinSwiper .swiper-slide .item .text-wrapper ul.feats {
                    display: flex;
                    gap: 10px;
                    flex-wrap: wrap;
                }

                    .page-home section.vitrin .vitrinSwiper .swiper-slide .item .text-wrapper ul.feats li {
                        font-size: 0.8rem;
                        background: #f3f3f3;
                        padding: 3px 7px;
                        border-radius: 5px;
                    }

            
        .page-home section.vitrin .vitrinSwiper .swiper-slide .item .price {
            font-size: 1.5rem;
            font-weight: 700;
            font-family: var(--karla);
        }

        .page-home section.vitrin .vitrinSwiper .swiper-slide + :not(.swiper-slide-prev):not(.swiper-slide-active):not(.swiper-slide-next) {
            opacity: 0.3;
        }

    .page-home section.vitrin .vitrinSwiper .swiper-button-next, .page-home section.vitrin .vitrinSwiper .swiper-button-prev {
        background: transparent;
        width: 55px;
        height: 55px;
        line-height: 50px;
        margin-top: -30px;
        text-align: center;
        border: 1px solid #222;
        border-radius: 55px;
        opacity: 0;
        visibility: hidden;
        transition: all .3s ease;
    }

    .page-home section.vitrin .vitrinSwiper:hover .swiper-button-prev,
    .page-home section.vitrin .vitrinSwiper:hover .swiper-button-next {
        transform: translateX(0);
        opacity: 1;
        visibility: visible;
    }

    .page-home section.vitrin .vitrinSwiper .swiper-button-prev {
        left: 25px;
        transform: translateX(50px);
    }

        .page-home section.vitrin .vitrinSwiper .swiper-button-prev:before {
            font-family: "Font Awesome 5 Free";
            content: "\f060";
            font-size: 15px;
            color: #222;
            font-style: normal;
            display: inline-block;
            vertical-align: middle;
            font-weight: 900;
        }

    .page-home section.vitrin .vitrinSwiper .swiper-button-next {
        right: 25px;
        transform: translateX(-50px);
    }

        .page-home section.vitrin .vitrinSwiper .swiper-button-next:before {
            font-family: "Font Awesome 5 Free";
            content: "\f061";
            font-size: 15px;
            color: #000000;
            font-style: normal;
            display: inline-block;
            vertical-align: middle;
            font-weight: 900;
        }

.page-home section.markalar h2 {
    font: 700 2.5rem var(--oswald);
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 50px;
    }
.page-home section.markalar ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

    .page-home section.markalar ul li {
        list-style-type: none;
        width: calc((100% - 120px) /5)
    }

        .page-home section.markalar ul li a.item {
            /* background: red; */
            padding: 10px;
            border-radius: 10px;
            -webkit-box-shadow: 0px 0px 14px -10px rgba(0, 0, 0, 0.75);
            display: block;
            transition:.2s;
            background: #fff;
        }
 .page-home section.markalar ul li a.item:hover {
             background: var(--gold);
     transition:.2s;
        }

            .page-home section.markalar ul li a.item img {
                max-height: 35px;
                max-width: 24px;
            }

 .page-home section.markalar ul li a.item span {padding-left: 20px;font-size: 1.1rem;font-weight: 600;}


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

    .page-home section.hakkimizda .container {
        display: flex;
        gap: 100px;
        padding: 50px 0;
    }

        .page-home section.hakkimizda .container .left, section.hakkimizda .container .right {
            width: 50%;
        }

            .page-home section.hakkimizda .container .left h2 {
                font-size: 1.4rem;
                color: #fff;
            }

            .page-home section.hakkimizda .container .left h3 {
                font-size: 1.8rem;
                color: #fff;
                font-weight: 700;
                padding-bottom: 50px;
            }

                .page-home section.hakkimizda .container .left h3 span {
                    color: var(--gold)
                }

            .page-home section.hakkimizda .container .left .text {
                color: #fff;
            }

            .page-home section.hakkimizda .container .left .image {
                padding-top: 100px
            }

                .page-home section.hakkimizda .container .left .image img {
                    width: 100%;
                }

        .page-home section.hakkimizda .container .right .wrapper {
            background: #fff;
            margin-bottom: 50px;
            padding: 20px;
            border-radius: 10px;
            position: relative;
        }

            .page-home section.hakkimizda .container .right .wrapper:last-child {
                margin-bottom: 0 !important;
            }

            .page-home section.hakkimizda .container .right .wrapper h4 {
                color: transparent;
                position: absolute;
                right: 20px;
                font-size: 3rem;
                font-weight: 600;
                text-transform: uppercase;
                font-family: 'Oswald', sans-serif;
                -webkit-text-stroke-width: 2px;
                -webkit-text-stroke-color: var(--gold);
                top: 0;
            }

            .page-home section.hakkimizda .container .right .wrapper h3 {
                font-family: var(--oswald);
            }

            .page-home section.hakkimizda .container .right .wrapper .text {
                font-size: 1rem;
                margin-top: 20px;
            }

.page-home section.sss h2 {
    font: 700 2.5rem var(--oswald);
    text-transform: uppercase;
    text-align: center;
    padding-bottom: 50px;
}
.page-home section.sss .faq {
    list-style: none;
    padding-left: 40px;
    padding-right: 20px;
}

    .page-home section.sss .faq li {
        border-bottom: 1px solid #999999;
        margin-bottom: 15px;
    }

        .page-home section.sss .faq li.active .answer {
            max-height: 4000px !important;
            padding-bottom: 25px;
            transition: max-height 0.5s ease, padding-bottom 0.5s ease;
            background: #ececec;
            padding: 20px 40px;
            border-radius: 20px;
            margin-bottom: 20px;
            visibility: visible;
            opacity: 1;
            font-size: 1rem;
        }

        .page-home section.sss .faq li.active .question {
            transition: color 0.5s ease;
        }

    .page-home section.sss .faq .answer {
        max-height: 0;
        overflow: hidden;
        transition: 0.5s ease, padding-bottom 0.5s ease;
        background: #f7f7f7;
        padding: 0px 40px;
        border-radius: 20px;
        /* margin-bottom: 20px; */
        visibility: hidden;
        opacity: 0;
    }

    .page-home section.sss .faq .plus-minus-toggle {
        cursor: pointer;
        height: 14px;
        position: absolute;
        width: 14px;
        left: -40px;
        top: 45%;
        z-index: 2;
        font-size: 14px;
    }

        .page-home section.sss .faq .plus-minus-toggle:before, .faq .plus-minus-toggle:after {
            background: #000;
            content: '';
            height: 5px;
            left: 0;
            position: absolute;
            top: 0;
            width: 18px;
            transition: transform 500ms ease;
        }

        .page-home section.sss .faq .plus-minus-toggle:after {
            transform-origin: center;
        }

        .page-home section.sss .faq .plus-minus-toggle.collapsed:after {
            transform: rotate(90deg);
        }

        .page-home section.sss .faq .plus-minus-toggle.collapsed:before {
            transform: rotate(180deg);
        }

    .page-home section.sss .faq .question {
        font-size: 18px;
        font-weight: 600;
        position: relative;
        cursor: pointer;
        padding: 20px 0;
        transition: color 0.5s ease;
        text-align: left;
    }



.page-arac-liste {
    padding: 40px 3%;
}

    .page-arac-liste .filter-menu {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 50vw;
        height: 100vh;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        padding: 1.5rem;
        background-color: #fff;
        box-shadow: 4px 0 12px rgba(0, 0, 0, .17);
        z-index: 1001;
        transform: translate3d(-110%, 0, 0);
        -webkit-transition: .35s transform ease;
        -moz-transition: .35s transform ease;
        -o-transition: .35s transform ease;
        transition: .35s transform ease;
        padding-bottom: 60px;
    }

        .page-arac-liste .filter-menu.visible {
            transform: translate3d(0, 0, 0)
        }




        .page-arac-liste .filter-menu::-webkit-scrollbar {
            width: 6px;
        }

        .page-arac-liste .filter-menu::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .page-arac-liste .filter-menu::-webkit-scrollbar-thumb {
            background: #b0b0b0;
            border-radius: 6px;
        }

            .page-arac-liste .filter-menu::-webkit-scrollbar-thumb:hover {
                background: #999;
            }


        .page-arac-liste .filter-menu .filter-menu-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-bottom: 3rem;
        }

            .page-arac-liste .filter-menu .filter-menu-header .filter-menu-title {
                font-size: 1.625rem;
                font-weight: 600;
                color: #181a1b;
            }

            .page-arac-liste .filter-menu .filter-menu-header .filter-menu-close {
                font-size: 1.375rem;
            }

                .page-arac-liste .filter-menu .filter-menu-header .filter-menu-close .btn {
                    border: 1px solid;
                    border-radius: 50%;
                    padding: 10px 15px;
                }

   


    .page-arac-liste .filter-menu .item {
        border-bottom: 1px solid #cfcfcf;
        padding: 20px 0;
    }

        .page-arac-liste .filter-menu .item .title {
            font-weight: 500;
            padding-bottom: 10px;
        }

        .page-arac-liste .filter-menu .item li {
            font-size: 12px;
        }

            .page-arac-liste .filter-menu .item li input {
                margin-right: 10px;
            }

            .page-arac-liste .filter-menu .item li label {
                display: inline;
            }

    .page-arac-liste .filter-menu .button {
        display: flex;
        gap: 30px;
        margin-top: 20px;
        padding-bottom: 30px;
    }

    .page-arac-liste .filter-menu .but-filtrele {
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        border: 1px solid #222;
        padding: 10px 20px;
        border-radius: 20px;
        transition: 0.3s;
    }

        .page-arac-liste .filter-menu .but-filtrele:hover {
            background: #222;
            color: #fff;
        }

    .page-arac-liste .filter-menu .but-temizle {
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        border: 1px solid #222;
        padding: 10px 20px;
        border-radius: 20px;
        transition: 0.3s;
    }

        .page-arac-liste .filter-menu .but-temizle:hover {
            background: #222;
            color: #fff;
        }

    .page-arac-liste .filter-menu-open-cta {
        background-color: var(--gold);
        color: #222;
        border: none;
        padding: 10px 15px;
    }

        .page-arac-liste .filter-menu-open-cta:hover {
            background-color: var(--color-black);
            color: #FFF;
            border: none;
        }

    .page-arac-liste .filter-menu .item {
        border-bottom: 1px solid #cfcfcf;
        padding: 20px 0;
    }

        .page-arac-liste .filter-menu .item .title {
            font-weight: 500;
            padding-bottom: 10px;
        }

        .page-arac-liste .filter-menu .item li {
            font-size: 12px;
        }

            .page-arac-liste .filter-menu .item li input {
                margin-right: 10px;
            }

            .page-arac-liste .filter-menu .item li label {
                display: inline;
            }

    .page-arac-liste .filter-menu .button {
        display: flex;
        gap: 30px;
        margin-top: 20px;
        padding-bottom: 30px;
    }

    .page-arac-liste .filter-menu .but-filtrele {
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        border: 1px solid #222;
        padding: 10px 20px;
        border-radius: 20px;
        transition: 0.3s;
    }

        .page-arac-liste .filter-menu .but-filtrele:hover {
            background: #222;
            color: #fff;
        }

    .page-arac-liste .filter-menu .but-temizle {
        font-size: 12px;
        font-weight: 500;
        text-align: center;
        border: 1px solid #222;
        padding: 10px 20px;
        border-radius: 20px;
        transition: 0.3s;
    }

        .page-arac-liste .filter-menu .but-temizle:hover {
            background: #222;
            color: #fff;
        }




    .page-arac-liste .filter-menu .filtre-button {
        position: sticky;
        bottom: 0;
        background: #222;
        width: 100%;
        display: inline-block;
        padding: 20px;
        color: #fff;
        z-index: 10;
        font-size: 1rem;
    }

    .page-arac-liste .filter-menu .accordion-button {
        font-size: 1rem;
        font-weight: 600;
    }

        .page-arac-liste .filter-menu .accordion-button:not(.collapsed) {
            color: #000;
            background-color: var(--gold);
            box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--gold);
        }

        .page-arac-liste .filter-menu .accordion-button:focus {
            z-index: 3;
            outline: 0;
            box-shadow: none;
        }

    .page-arac-liste .filter-menu .accordion-item .accordion-body {
        max-height: 300px;
        overflow: auto;
    }

        .page-arac-liste .filter-menu .accordion-item .accordion-body ul li {
            display: flex;
            align-items: center;
        }

        .page-arac-liste .filter-menu .accordion-item .accordion-body input[type=checkbox] {
            width: 1.25rem;
            height: 1.25rem;
        }

        .page-arac-liste .filter-menu .accordion-item .accordion-body label {
            font-size: 1rem;
            margin-left: 10px;
        }

        .page-arac-liste .filter-menu .accordion-item .accordion-body input[type=text], .page-arac-liste .filter-menu .accordion-item .accordion-body input[type=number] {
            width: calc(50% - 3px);
            border: 1px solid #d5d5d5;
            border-radius: 5px;
            padding: 5px 10px;
            font-size: 1rem;
        }


.page-arac-liste .breadcrumb-wrapper {
    padding: 20px 0;
}

.page-arac-liste .page-wrapper {
   display: flex;
   gap: 20px;
   position: relative;
}
    .page-arac-liste .page-wrapper .left {
        width: 250px;
        /* position: sticky; */
        top: 150px;
        align-self: flex-start;
    }

        .page-arac-liste .page-wrapper .left .filtre-button {
            position: sticky;
            bottom: 0;
            background: #222;
            width: 100%;
            display: inline-block;
            padding: 20px;
            color: #fff;
            z-index:10;
            font-size: 1rem;
        }

        .page-arac-liste .page-wrapper .left .accordion-button {
            font-size: 1rem;
            font-weight: 600;
        }

            .page-arac-liste .page-wrapper .left .accordion-button:not(.collapsed) {
                color: #000;
                background-color: var(--gold);
                box-shadow: inset 0 calc(-1* var(--bs-accordion-border-width)) 0 var(--gold);
            }

            .page-arac-liste .page-wrapper .left .accordion-button:focus {
                z-index: 3;
                outline: 0;
                box-shadow: none;
            }

        .page-arac-liste .page-wrapper .left .accordion-item .accordion-body {
            max-height: 300px;
            overflow: auto;
        }
        .page-arac-liste .page-wrapper .left .accordion-item .accordion-body ul li {
            display:flex;
            align-items:center;

        }

            .page-arac-liste .page-wrapper .left .accordion-item .accordion-body input[type=checkbox] {
                width:1.25rem;
                height:1.25rem;
            }
            .page-arac-liste .page-wrapper .left .accordion-item .accordion-body label {
                font-size: 1rem;
                margin-left:10px;
            }

        .page-arac-liste .page-wrapper .left .accordion-item .accordion-body input[type=text], .page-arac-liste .page-wrapper .left .accordion-item .accordion-body input[type=number] {
            width: calc(50% - 3px);
            border: 1px solid #d5d5d5;
            border-radius: 5px;
            padding: 5px 10px;
            font-size: 1rem;
        }

    .page-arac-liste .page-wrapper .right {
        width: calc(100% - 270px);
    }

    .page-arac-liste .page-wrapper .right h1 {
        font: 700 2.2rem var(--oswald);
        text-transform: uppercase;
    }

    .page-arac-liste .page-wrapper .right h2 {
        font: 400 1.3rem var(--oswald);
        padding-bottom: 20px;
    }

        .page-arac-liste .page-wrapper .right h2 span {
            font: 400 1.7rem var(--oswald);
        }

    .page-arac-liste .page-wrapper .right .list-wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
    }
        .page-arac-liste .page-wrapper .right .list-wrapper .wrapper {
            background-color: #fff;
            /* text-align: center; */
            font-size: 24px;
            /*line-height: 300px;
        height: 300px;*/
            border-radius: 1rem;
            border: 1px solid #eee;
            -webkit-box-shadow: 0px 10px 20px -21px rgba(0, 0, 0, 0.75);
            width: calc((100% - 40px) /3);
            transition:.2s;
            cursor:pointer;
        }
 .page-arac-liste .page-wrapper .right .list-wrapper .wrapper:hover {
            -webkit-box-shadow: 0px 10px 20px -11px rgba(0, 0, 0, 0.75);
     transition:.2s;
        }


            .page-arac-liste .page-wrapper .right .list-wrapper .wrapper .item a {
                padding: 20px;
                display: flex;
                flex-direction: column;
                height: 100%;
            }

                .page-arac-liste .page-wrapper .right .list-wrapper .wrapper .item .image {
                    /* height:300px; */
                    border-radius: .6rem;
                    overflow: hidden;
                    /* aspect-ratio: 16 / 9; */
                    width: 100%;
                }

                    .page-arac-liste .page-wrapper .right .list-wrapper .wrapper .item .image img {
                        aspect-ratio: 16 / 10;
                        width: 100%;
                        object-fit: cover;
                        /* max-height: 320px; */
                    }

                .page-arac-liste .page-wrapper .right .list-wrapper .wrapper .item .text-wrapper {
                    padding: 20px 0;
                }

                    .page-arac-liste .page-wrapper .right .list-wrapper .wrapper .item .text-wrapper .title {
                        font-weight: 700;
                        font-size: 1.2rem;
                        font-family: var(--karla);
                        text-align: left;
                    }

                    .page-arac-liste .page-wrapper .right .list-wrapper .wrapper .item .text-wrapper .subtitle {
                        font-weight: 500;
                        font-size: 1.1rem;
                        font-family: var(--karla);
                        padding-bottom: 10px;
                    }

                    .page-arac-liste .page-wrapper .right .list-wrapper .wrapper .item .text-wrapper ul.feats {
                        display: flex;
                        gap: 10px;
                        flex-wrap: wrap;
                    }

                        .page-arac-liste .page-wrapper .right .list-wrapper .wrapper .item .text-wrapper ul.feats li {
                            font-size: .8rem;
                            background: #f3f3f3;
                            padding: 3px 7px;
                            border-radius: 5px;
                        }

            .page-arac-liste .page-wrapper .right .list-wrapper .wrapper .item {
               height:100%;
            }

                .page-arac-liste .page-wrapper .right .list-wrapper .wrapper .item .price {
                    font-size: 1.5rem;
                    font-weight: 700;
                    font-family: var(--karla);
                    margin-top: auto;
                }


.page-arac-detay {
    padding: 40px 3%;
}

.page-arac-detay .breadcrumb-wrapper{
    padding: 20px 0;
}

    .page-arac-detay .page-wrapper {
        display: flex;
        gap: 2%;
    }

        .page-arac-detay .page-wrapper .left {
            width: 65%;
        }

        .page-arac-detay .page-wrapper .right {
            width: 33%;
            position: sticky;
            top: 150px;
            align-self: flex-start;
        }

        .page-arac-detay .page-wrapper .right-col {
            width: 100%;
            border-radius: 15px;
            -webkit-box-shadow: 0px 0px 20px -13px rgba(0, 0, 0, 0.75);
            padding: 20px;
            background: #fff;
        }


            .page-arac-detay .page-wrapper .right-col .wrapper-row {
                display: flex;
                justify-content: space-between;
                flex-direction: row;
                border-bottom: 1px solid #d9d7d7;
                padding: 10px;
                font-size: 16px;
                font-variant-numeric: tabular-nums;
            }

                .page-arac-detay .page-wrapper .right-col .wrapper-row:nth-child(2) {
                    background: #efeded;
                }

                .page-arac-detay .page-wrapper .right-col .wrapper-row span:nth-child(2) {
                    font-weight: bold
                }


        .page-arac-detay .page-wrapper .left .swiper {
            width: 100%;
            height: 100%;
        }

        .page-arac-detay .page-wrapper .left .swiper-slide {
            text-align: center;
            font-size: 18px;
            background: #fff;
            /* display: flex; */
            /* justify-content: center; */
            /* align-items: center; */
        }


        .page-arac-detay .page-wrapper .left .swiper {
            width: 100%;
            /* height: 616px; */
            margin-left: auto;
            margin-right: auto;
            /* aspect-ratio: 16 / 11; */
        }

        .page-arac-detay .page-wrapper .left .swiper-slide {
            background-size: cover;
            background-position: center;
        }

        .page-arac-detay .page-wrapper .left .swiperMain {
            max-height: 620px;
            width: 100%;
            height: auto;
        }

        .page-arac-detay .page-wrapper .left .swiperThumbs {
            max-height: 100px;
            box-sizing: border-box;
            padding: 10px 0;
        }

            .page-arac-detay .page-wrapper .left .swiperThumbs .swiper-slide {
                width: 25%;
                height: 100%;
                opacity: 0.4;
            }

            .page-arac-detay .page-wrapper .left .swiperThumbs .swiper-slide-thumb-active {
                opacity: 1;
            }

        .page-arac-detay .page-wrapper .left .swiper-slide img {
            display: block;
            width: 100%;
            /* height: 100%; */
            object-fit: contain;
            aspect-ratio: 4 / 3;
        }

        .page-arac-detay .page-wrapper .left .swiperMain:hover > .swiper-button-next,
        .page-arac-detay .page-wrapper .left .swiperMain:hover > .swiper-button-prev {
            opacity: 1;
            visibility: visible;
        }

        .page-arac-detay .page-wrapper .left .swiper .swiper-button-next, .page-arac-detay .page-wrapper .left .swiper .swiper-button-prev {
            width: 40px;
            height: 40px;
            line-height: 40px;
            /* margin-top: -29px; */
            text-align: center;
            border: 1px solid #000;
            border-radius: 35px;
            opacity: 0;
            visibility: hidden;
            transition: all .3s ease;
            background: #fff;
        }

    .page-arac-detay .page-wrapper .left .swiper .swiper-button-next:after {
        font-family: "Font Awesome 5 Free";
        content: "\f054";
        font-size: 15px;
        color: #000000;
        font-style: normal;
        display: inline-block;
        vertical-align: middle;
        font-weight: 900;
    }

            .page-arac-detay .page-wrapper .left .swiper .swiper-button-prev:after {
                font-family: "Font Awesome 5 Free";
                content: "\f053";
                font-size: 15px;
                color: #000000;
                font-style: normal;
                display: inline-block;
                vertical-align: middle;
                font-weight: 900;
            }

        .page-arac-detay .page-wrapper .right .marka-logo{
            width:50px;
            aspect-ratio:1;
            align-content: center;
        }

        .page-arac-detay .page-wrapper .right .wrapper ul.feats {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

            .page-arac-detay .page-wrapper .right .wrapper ul.feats li {
                font-size: 1rem;
                background: #f3f3f3;
                padding: 3px 7px;
                border-radius: 5px;
            }

        .page-arac-detay .page-wrapper .right .wrapper .button {
            display: flex;
            align-items: center;
            justify-content: space-between;
            background-color: var(--gold);
            border-radius: .5rem;
            padding: 5px 15px;
            font-family: var(--oswald);
        }

        .page-arac-detay .page-wrapper .left .tabs .nav-tabs {
            --bs-nav-link-color: inherit;
            --bs-nav-tabs-link-active-bg: var(--gold);
            border-bottom: 2px solid var(--gold);
            --bs-nav-tabs-link-hover-border-color: transparent;
            --bs-nav-tabs-link-active-border-color: #d9ad00;
        }
        .page-arac-detay .page-wrapper .left .tabs .nav-link:focus, .page-arac-detay .page-wrapper .left .tabs .nav-link:hover {
            color: inherit;
        }
        .page-arac-detay .page-wrapper .left .tabs .nav-link {
            padding: 5px 20px;
            font-size: 1.2rem;
            font-weight: 400;
            font-family: var(--oswald);
        }

        .page-arac-detay .page-wrapper .left .tab-content .text {
            background: #fff;
            padding: 50px 20px;
            font-size: 1rem;
            line-height: 1.6rem;
        }


            .page-arac-detay .page-wrapper .left .tab-content .text h2 {
                font-size: 1.4rem;
                font-weight: 600;
                border-bottom: 1px solid #dddddd;
                padding-bottom: 10px;
            }

            .page-arac-detay .page-wrapper .left .tab-content .text ul.teknik {
                padding: 30px 0 50px;
            }

                .page-arac-detay .page-wrapper .left .tab-content .text ul.teknik li {
                    display: flex;
                    padding: 10px 10px;
                    text-align: left;
                    gap: 10px;
                    flex-wrap: wrap;
                    flex-direction: row;
                }

                    .page-arac-detay .page-wrapper .left .tab-content .text ul.teknik li span {
                        /* width: 50%; */
                        margin-left: auto;
                        text-align: right;
                    }
                    .page-arac-detay .page-wrapper .left .tab-content .text ul.teknik li small {
                        text-align: left;
                        opacity: 0.5;
                        font-size: 0.9rem;
                    }

                    .page-arac-detay .page-wrapper .left .tab-content .text ul.teknik li:nth-child(even) {
                        background-color: #f5f5f5;
                    }

            .page-arac-detay .page-wrapper .left .tab-content .text ul.donanim {
                display: flex;
                gap: 20px;
                flex-wrap: wrap;
                padding: 50px 0;
            }

            .page-arac-detay .page-wrapper .left .tab-content .text ul.donanim li {
                width: calc((100% - 30px) / 2);
                line-height: .7rem;
            }

                .page-arac-detay .page-wrapper .left .tab-content .text ul.donanim li:before {
                    font-family: "Font Awesome 5 Free";
                    content: "\f219";
                    font-size: .6rem;
                    color: #00000036;
                    font-style: normal;
                    display: inline-block;
                    vertical-align: middle;
                    font-weight: 900;
                    margin-right: 10px
                }

.page-hakkimizda .page-wrapper {
    padding: 100px 0;
    font-size: 1.2rem;
    line-height: 1.5rem;
}

    .page-hakkimizda .page-wrapper h1 {
        font: 500 1.7rem var(--oswald);
        text-transform: uppercase;
        padding-bottom: 30px;
    }


    .page-kredi{
        padding:100px 0;
    }
.page-kredi .form-wrapper {
    display: flex;
    gap: 100px;
}

.page-kredi .form, .page-kredi .text {
    width: calc((100% - 100px) / 2);
}


        footer {
            margin-top: 50px;
            padding: 30px 0 0;
            background: #000;
        }

    footer .container {
        display: flex;
        gap: 50px;
    }

        footer .container .logo {
            color: #FFF;
            width: calc((100% - 100px) / 3);
            font-size: 1.2rem;
        }

            footer .container .logo img {
                width: 100%;
            }

        footer .container .logo ul.adres {
            padding:30px 0;
            /*border-top:1px solid #eee;
            border-bottom:1px solid #eee;*/
            font-size: 1.1rem;
        }

            footer .container .logo ul.adres li.telefon {
                font-size: 1.5rem;
                color:var(--gold);
            }

                footer .container .logo ul.adres li.telefon i {
                    margin-right: 20px;
                }

            footer .container .logo ul.sosyal-medya {
                list-style-type: none;
                display: flex;
                gap: 20px;
                font-size: 1.4rem;
                padding-top: 10px;
                justify-content: center;
            }

        footer .container .menu {
            width: calc((100% - 100px) / 3);
            color:#fff;
            text-align:center;
        }
            footer .container .menu h3 {
                color: var(--gold);
            }

footer .footer-sub {
    background-color: var(--gold);
    padding: 10px 0;
}

    footer .footer-sub .container {
        display: flex;
        justify-content: space-between;
    }

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