*{
    font-family: Inter, sans-serif;
}


/* Header */

.main-header-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: transparent;
    transition: .4s;
}

.main-header-area.open {
    background: #000;
    transition: .4s;
}

.main-header .main-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 48px;
    padding-bottom: 34px;
    max-width: 100%;
}

.main-header-logo a {
    display: block;
}


.main-header-button-and-language-selector {
    display: flex;
    align-items: center;
    column-gap: 54px;
}

.main-header-button button, .main-header-button a {
    font-family: Open Sans;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #F3F3F3;
    padding: 16px 24px;
    background: #D1000F;
    border: 1px solid #D1000F;
    text-decoration: none;
}

.main-header-user-button a svg, .main-header-user-button a i {
    width: 20px;
    height: 20px;
    font-size: 20px;
    color: red;
}

    .main-header-user-button a svg path {
        fill: #D1000F;
    }


.main-header-bottom {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 24px;
    justify-content: space-between;
    max-width: 100%;
    padding: 0 48px;
}



.main-header-social-media-language-and-search {
    display: flex;
    align-items: center;
    column-gap: 36px;
}

.main-header-social-media ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    column-gap: 32px;
}

    .main-header-social-media ul li a {
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        color: var(--main-header-social-media-color);
        text-decoration: none;
    }

.main-header-search button {
    border: none;
    padding: 0;
    margin: 0;
    color: var(--main-color);
    background: none;
    outline: none;
    font-size: 20px;
}

.main-header-language-and-search {
    display: flex;
    align-items: center;
    column-gap: 64px;
}

.main-header-logo {
    display: flex;
    align-items: center;
}

    .main-header-logo a {
        display: flex;
        padding: 8.5px 0;
        padding-right: 24px;
        border-right: 1px solid #E0E0E0;
    }

.main-header-logo-text {
    padding-left: 24px;
    font-family: Open Sans;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    color: #fff;
}

.custom-dropdown {
    position: relative;
}

.custom-dropdown-button {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
    color: #fff;
    cursor: pointer;
}

.custom-dropdown-inner {
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    max-width: 250px;
    padding: 16px 20px;
    background: #000000f5;
    transform: translate(0, 25px);
    opacity: 0;
    visibility: hidden;
    transition: .4s;
    z-index: 1;
    border: 1px solid #63656a;
}

.custom-dropdown-inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
}

.custom-dropdown-inner ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.custom-dropdown:hover .custom-dropdown-inner
{
    transform: translate(0, 0);
    opacity: 1;
    visibility: visible;
    transition: .4s;
}

.main-header-top-area {
    border-bottom: 1px solid #727272;
}

.main-header-bottom-pages-area ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 40px;
}

    .main-header-bottom-pages-area ul li ul {
        align-items: start;
    }

        .main-header-bottom-pages-area ul li ul li {
            width: 100%;
        }

            .main-header-bottom-pages-area ul li ul li span, .main-header-bottom-pages-area ul li ul li a {
                display: flex;
                align-items: center;
                width: 100%;
            }


.main-header-bottom-pages-area {
    padding: 0;
}

    .main-header-bottom-pages-area ul li a {
        font-weight: 700;
        font-size: 14px;
        line-height: 20px;
        color: var(--main-header-title-color);
        text-decoration: none;
        padding: 32px 0;
        display: flex;
        text-transform: uppercase;
    }

.main-header-bottom {
    position: relative;
}

.custom-mega-dropdown-inner {
    position: absolute;
    width: 100%;
    left: 0;
    background: #000;
    height: 380px;
    top: 100%;
    transform: translate(0,24px);
    visibility: hidden;
    opacity: 0;
    transition: .4s;
    padding: 0 36px;
}

.mega-dropdown-image-area img {
    height: 380px;
    object-fit: cover;
}

.mega-dropdown-pages-area ul {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    height: 100%;
    justify-content: start;
}

    .mega-dropdown-pages-area ul li a, .mega-dropdown-pages-area ul li span {
        padding: 12px 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #fff;
        transition: .4s;
        text-transform: none;
        cursor: pointer;
    }

        .mega-dropdown-pages-area ul li a.active, .mega-dropdown-pages-area ul li span.active {
            color: var(--main-color);
            transition: .4s;
        }

.mega-dropdown-pages-area {
    height: 100%;
}

.custom-mega-dropdown:hover .custom-mega-dropdown-inner
{
    transform: translate(0,0);
    visibility: visible;
    opacity: 1;
    transition: .4s;
}

.custom-mega-dropdown-button {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: var(--main-header-title-color);
    text-decoration: none;
    padding: 32px 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    column-gap: 12px;
}

    .custom-mega-dropdown-button::after {
        content: "\f078";
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 14px;
        width: 20px;
        height: 20px;
        color: #D1000F;
    }

.mega-dropdown-image-area {
    position: relative;
}

.mega-dropdown-image-area .mega-dropdown-image-text {
    position: absolute;
    bottom: 0;
    font-family: Inter;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: #FFFFFF;
    width: 100%;
    padding: 13px;
    padding-bottom: 45px;
}


.mega-dropdown-inner-pages-area .mega-dropdown-inner-page-list:not(.active) {
    display: none;
}

.mega-dropdown-inner-pages-area .mega-dropdown-inner-page-list.active {
    display: block;
}

.mega-dropdown-inner-page-list ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    row-gap: 8px;
}

.mega-dropdown-inner-page-list ul li a {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 0;
    display: flex;
    transition: .4s;
    text-transform: none;
}

    .mega-dropdown-inner-page-list ul li a:hover {
        color: var(--main-color);
        transition: .4s;
    }

.main-mobile-header {
    display: none;
    position: absolute;
    top: 32px;
    left: 0;
    width: 100%;
    z-index: 3;
    padding: 12px 16px;
}

.mobile-header-area {
    display: flex;
    column-gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.mobile-header-button button {
    width: 40px;
    height: 40px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    outline: none;
    box-shadow: none;
}

.mobile-sidenav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #000000;
    transition: .4s;
}

.mobile-sidenav.show
{
    right: 0;
    transition: .4s;
}

.mobile-sidenav-top {
    padding: 20px 12px;
    display: flex;
    column-gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.mobile-sidenav-close-button button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    box-shadow: none;
    outline: none;
}

/* .mobile-sidenav-pages-list {
    padding: 0 12px;
} */

.mobile-sidenav-pages-list .accordion {
    display: flex;
    flex-direction: column;
    background: none;
}

.mobile-sidenav-pages-list .accordion .mobile-sidenav-page {
    border-bottom: 1px solid #3e3e3e;
}
.mobile-sidenav-pages-list .accordion .mobile-sidenav-page:last-child {
    border-bottom: 0;
}

.mobile-sidenav-pages-list .accordion .accordion-item {
    background-color: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    border-bottom: 1px solid #3e3e3e;
}

.mobile-sidenav-pages-list .accordion .accordion-item .accordion-body .accordion .accordion-item:last-child {
    border-bottom: none;
}

.mobile-sidenav-pages-list .accordion .accordion-item .accordion-button {
    background-color: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    padding: 0;
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #FFFFFF;
}

.mobile-sidenav-pages-list .accordion .accordion-item .accordion-body .accordion-button {
    padding: 16px 0;
}

.mobile-sidenav-pages-list > .accordion > .accordion-item > .accordion-header > .accordion-button {
    padding: 16px 12px;
    background: #1a1a1a;
}

.mobile-sidenav-pages-list .accordion .accordion-item .accordion-button::after {
    background: none;
     content: "\f068";
    font-weight: 900;
    font-family: 'Font Awesome 6 Free';
    transform: none;
}

.mobile-sidenav-pages-list .accordion .accordion-item .accordion-button.collapsed::after {
    content: "\2b";
}

.mobile-sidenav-page a {
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #fff;
    text-decoration: none;
    padding: 16px 12px;
    width: 100%;
    display: flex;
    background: #1a1a1a;
    align-items: center;
    column-gap: 6px;
}

.mobile-header-button {
    display: flex;
    align-items: center;
    column-gap: 6px;
}

.mobile-search-button svg path
{
    fill: #fff;
}

.mobile-header-search-input {
    position: absolute;
    top: 24px;
    right: 16px;
    width: calc(70% - 32px);
    height: calc(100% - 32px);
    background: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
}

    .mobile-header-search-input.show {
        opacity: 1;
        visibility: visible;
        width: calc(100% - 32px);
        transition: .4s;
    }

    .mobile-header-search-input input {
        width: 100%;
        height: 100%;
        border: none;
        box-shadow: none;
        outline: none;
        font-size: 14px;
        line-height: 22px;
        color: #a3a3a3;
        padding: 4px 12px;
    }

.mobile-header-search-close-button {
    border: 0;
    padding: 0;
    margin: 0;
    color: var(--main-color);
    background: none;
    outline: 0;
    font-size: 20px;
}


.mobile-sidenav-pages-list .accordion .accordion-item .accordion-body {
    padding-right: 12px;
    padding-bottom: 0;
    padding-top: 0;
}

    .mobile-sidenav-pages-list .accordion .accordion-item .accordion-body .accordion-body {
        padding-top: 0;
        padding-bottom: 20px;
    }

.mobile-sidenav-pages-list .accordion .accordion-item .accordion-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 0;
}

    .mobile-sidenav-pages-list .accordion .accordion-item .accordion-body ul li a {
        font-family: Inter;
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
        color: #bcbdc0;
        text-decoration: none;
        justify-content: space-between;
    }

.mobile-sidenav-pages-list .accordion ul li a {
    padding: 16px 0;
    display: flex;
    align-items: center;
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #fff !important;
    border-bottom: 1px solid #3e3e3e;
    text-decoration: none;
}

.mobile-sidenav-pages-list .accordion ul li:last-child a {
    border-bottom: 0;
}

.main-header-language-selector ul a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.main-header-search {
    position: relative;
}

.main-header-search-input {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0,-50%);
    background: #fff;
    padding: 10px;
    width: 205px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: .4s;
}

    .main-header-search-input.show {
        opacity: 1;
        visibility: visible;
        transition: .4s;
        width: 405px;
    }

    .main-header-search-input input {
        width: 100%;
        border: 0;
        outline: 0;
        box-shadow: none;
        font-size: 14px;
        line-height: 22px;
        color: #a3a3a3;
        padding: 4px 12px;
    }

/*Footer*/

footer {
    background: #000000;
}

.footer-top {
    max-width: 1320px;
    margin: auto;
    padding: 0 12px;
    padding-top: 72px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    max-width: 1320px;
    margin: auto;
    padding: 0 12px;
    justify-content: space-between;
    column-gap: 20px;
    padding-top: 24px;
    margin-top: 72px;
    border-top: 1px solid #434647;
    padding-bottom: 60px;
}

.footer-pages-list-area {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    row-gap: 42px;
    column-gap: 42px;
}

.footer-pages {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.footer-pages-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-bottom: 38px;
    display: flex;
    flex-direction: column;
    row-gap: 18px;
}

    .footer-pages-list ul li a {
        font-family: 'Open Sans';
        font-weight: 600;
        font-size: 12px;
        line-height: 22px;
        text-decoration: none;
        color: #bcbdc0;
        text-transform: uppercase;
    }

.footer-pages-title {
    font-family: Open Sans;
    font-weight: 800;
    font-size: 15px;
    line-height: 23px;
    color: #fff;
    text-transform: uppercase;
}

    .footer-pages-title a {
        color: #fff;
        text-decoration: none;
    }

.footer-logo-and-social-media-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
    padding-top: 72px;
}

.footer-social-media-list ul {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    column-gap: 24px;
}

    .footer-social-media-list ul li a {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 24px;
        color: var(--main-footer-social-media-color);
    }

.footer-copyright {
    font-family: Open Sans;
    font-weight: 700;
    font-size: 12px;
    line-height: 20px;
    color: #BDBDBD;
}

.footer-bottom-pages ul {
    display: flex;
    align-items: center;
    column-gap: 22px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .footer-bottom-pages ul li a {
        font-family: Open Sans;
        font-weight: 600;
        font-size: 12px;
        line-height: 20px;
        color: #bdbdbd;
        text-decoration: none;
        text-transform: uppercase;
    }

.footer-pages-list-area .footer-pages:nth-child(4n) {
    align-items: end;
}

.mobile-footer-pages-list
{
    display: none;
}

.mobile-footer-pages-list .accordion {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.other-mobile-footer-pages ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.other-mobile-footer-pages ul li a {
    font-family: Inter;
    font-weight: 800;
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    text-decoration: none;
}

.mobile-footer-pages-list .accordion .accordion-item {
    background-color: transparent;
    border: none;
    border-radius: 0;
}

.mobile-footer-pages-list .accordion .accordion-item .accordion-button {
    background-color: transparent!important;
    border: none;
    padding: 0;
    box-shadow: none;
    outline: none;
    font-family: Inter;
    font-weight: 800;
    font-size: 18px;
    line-height: 26px;
    color: #FFFFFF;
}

.mobile-footer-pages-list .accordion .accordion-item .accordion-body {
    padding: 0;
}

.mobile-footer-pages-list .accordion .accordion-item .accordion-body ul {
    padding: 0;
    margin: 0;
    list-style: none;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.mobile-footer-pages-list .accordion .accordion-item .accordion-body ul li a {
    font-family: Inter;
    font-weight: 600;
    font-size: 13px;
    line-height: 21px;
    color: #BCBDC0;
    text-decoration: none;
}

.mobile-footer-pages-list .accordion .accordion-item .accordion-button::after {
    background: none;
     content: "\f068";
    font-weight: 900;
    font-family: 'Font Awesome 6 Free';
    transform: none;
}

.mobile-footer-pages-list .accordion .accordion-item .accordion-button.collapsed::after {
    content: "\2b";
}


.page-content-area {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
    margin-bottom: 32px;
    margin-top: 0px;
}

/*Breadcrumb*/

.page-breadcrumb {
    padding: 24px 0;
}

.page-breadcrumb .custom-container {
    padding: 0;
}

    .page-breadcrumb ul {
        display: flex;
        list-style: none;
        padding: 0;
        margin: 0;
        align-items: center;
        column-gap: 3px;
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow: hidden;
        overflow-x: auto;
    }

        .page-breadcrumb ul::-webkit-scrollbar
        {
            display: none;
        }

        .page-breadcrumb ul li {
            font-family: Inter;
            font-weight: 400;
            font-size: 14px;
            line-height: 24px;
            color: #2F2F2F;
        }

    .page-breadcrumb ul li a {
        display: flex;
        align-items: center;
        column-gap: 3px;
        font-family: Inter;
        font-weight: 400;
        font-size: 14px;
        line-height: 22px;
        color: #2F2F2F;
        text-decoration: none;
    }

    .page-breadcrumb ul li:not(:first-child) svg {
        width: 14px;
        height: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .page-breadcrumb ul li:not(:first-child) svg path {
            fill: #D1000F;
        }


        /*Category Tabs*/

.category-tabs ul {
    display: flex;
    align-items: center;
    column-gap: 4px;
    padding: 0;
    margin: 0;
    list-style: none;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: auto;
}

    .category-tabs ul li a {
        padding: 8px 12px;
        font-family: Inter;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        color: #344054;
        text-decoration: none;
    }

    .category-tabs ul li:first-child a {
        padding-left: 0;
    }

    .category-tabs ul li a.active {
        font-weight: 700;
    }

.main-mobile-header {
    top: 0;
    background: #000;
    padding: 20px 12px;
    position: relative;
}

.mobile-header-logo {
    display: flex;
    align-items: center;
}

    .mobile-header-logo a {
        padding: 10px 0;
        padding-right: 14px;
        border-right: 1px solid #fff;
        margin-right: 14px;
    }

.mobile-header-logo-text {
    font-family: Open Sans;
    font-weight: 700;
    font-size: 13px;
    line-height: 18px;
    color: #fff;
}


footer {
    background-color: #303335;
    padding: 96px 0;
    display: flex;
    flex-direction: column;
    row-gap: 46px;
}

.footer-title {
    margin-bottom: 2rem;
    font-family: Poppins;
    font-size: 15px;
    font-weight: 800;
    line-height: 24px;
    letter-spacing: 0em;
    color: #FFFFFF !important;
}

    .footer-title a {
        font-family: Poppins;
        font-size: 15px;
        font-weight: 800;
        line-height: 24px;
        letter-spacing: 0em;
        color: #FFFFFF !important;
        text-decoration: none;
    }

.footer-detay {
    font-family: Poppins;
    font-size: 15px;
    font-weight: 600;
    line-height: 19px;
    letter-spacing: 0px;
    color: #BCBDC0;
    text-decoration: none;
}

.iletisims {
    margin-top: 3rem;
}

    .iletisims a {
        font-family: Poppins;
        font-size: 15px;
        font-weight: 800;
        line-height: 24px;
        letter-spacing: 0em;
        color: #FFFFFF !important;
        text-decoration: none;
    }

.medyas {
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-family: Poppins;
    font-size: 15px;
    font-weight: 800;
    line-height: 24px;
    letter-spacing: 0em;
    color: #FFFFFF !important;
}

.footer-bosluk {
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
}

.footerLogo {
    width: 24%;
}


.footerTop {
    display: flex;
    flex-direction: column;
    row-gap: 200px;
}

.footerMenuItemLists {
    display: flex;
    flex-direction: column;
    row-gap: 60px;
}

.footerMenuItemList {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.footerMenuItemListTitle {
    font-family: Inter;
    font-size: 16px;
    font-weight: 800;
    line-height: 22px;
    color: #fff;
}

    .footerMenuItemListTitle a {
        color: #fff;
        text-decoration: none;
    }

.footerMenuListItem ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    row-gap: 24px;
}

    .footerMenuListItem ul li a {
        font-family: Inter;
        font-size: 14px;
        font-weight: 600;
        line-height: 20px;
        text-decoration: none;
        color: #BCBDC0;
    }

.footerLogoAndSocialMedia {
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.footerSocialMedia ul {
    display: flex;
    align-items: center;
    list-style: none;
    column-gap: 32px;
    padding: 0;
    margin: 0;
}

    .footerSocialMedia ul li a {
        display: flex;
        width: 32px;
        height: 32px;
        font-size: 20px;
        text-decoration: none;
        align-items: center;
        justify-content: center;
        color: #fff;
    }

.footerCopyrightAndPages {
    display: flex;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 1px solid #434647;
    align-items: center;
}

.footerCopyright {
    font-family: Inter;
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
    color: #BDBDBD;
}

.footerPages {
    display: flex;
    column-gap: 24px;
    align-items: center;
}

    .footerPages ul {
        display: flex;
        align-items: center;
        list-style: none;
        column-gap: 24px;
        padding: 0;
        margin: 0;
    }

        .footerPages ul li a {
            font-family: Inter;
            font-size: 12px;
            font-weight: 600;
            line-height: 14.52px;
            text-decoration: none;
            color: #BDBDBD;
        }

.mobileFooter {
    display: none;
}

    .mobileFooter footer {
        padding: 60px 40px;
        row-gap: 64px;
    }

.mobileFooterPageLists .accordion {
    background: transparent;
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

    .mobileFooterPageLists .accordion .accordion-item {
        border-radius: 0;
        background: transparent;
        border: none;
    }

        .mobileFooterPageLists .accordion .accordion-item .accordion-button {
            background: transparent;
            border: none;
            box-shadow: none;
            padding: 0;
            font-family: Inter;
            font-size: 17px;
            font-weight: 800;
            line-height: 24px;
            color: #fff;
        }

        .mobileFooterPageLists .accordion .accordion-item .accordion-body {
            padding: 0;
        }

.mobileFooterPageLink a {
    font-family: Inter;
    font-size: 17px;
    font-weight: 800;
    line-height: 24px;
    color: #fff;
    text-decoration: none;
}

.mobileFooterPageLists .accordion .accordion-item .accordion-button::after {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f068";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: none;
}

.mobileFooterPageLists .accordion .accordion-item .accordion-button.collapsed::after {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\2b";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.mobileFooterPageLists .accordion .accordion-item .accordion-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

    .mobileFooterPageLists .accordion .accordion-item .accordion-body ul li a {
        font-family: Inter;
        font-size: 13px;
        font-weight: 600;
        line-height: 19px;
        text-decoration: none;
        color: #BCBDC0;
    }

.mobileFooterLogoAndSocialMedia {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.mobileFooterSocialMedia ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    column-gap: 16px;
}

    .mobileFooterSocialMedia ul li a {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #fff;
        font-size: 22px;
    }

.mobileFooterBottom {
    display: flex;
    flex-direction: column;
    row-gap: 32px;
}

.mobileFooterCopyrightAndPages {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
    padding-top: 32px;
    border-top: 1px solid #434647;
}

.mobileFooterCopyright {
    font-family: Inter;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    color: #BDBDBD;
}

.mobileFooterPages {
    display: flex;
    column-gap: 24px;
    flex-wrap: wrap;
    row-gap: 24px;
}

    .mobileFooterPages a {
        font-family: Inter;
        font-size: 14px;
        font-weight: 700;
        line-height: 20px;
        color: #BDBDBD;
        text-decoration: none;
    }

.page-banner-image, .page-banner-image img {
    height: 525px;
}

    @media only screen and (max-width: 1780px)
    {
        .main-header-bottom-pages-area ul {
            column-gap: 24px;
        }
    }

    @media only screen and (max-width: 1660px)
    {
        .main-header-bottom-pages-area ul {
            column-gap: 16px;
        }

            .main-header-bottom-pages-area ul li a {
                font-size: 12px;
                line-height: 20px;
            }

        .custom-mega-dropdown-button {
            font-size: 12px;
            line-height: 20px;
        }
    }

    @media only screen and (max-width: 1460px)
    {
        .main-header-social-media ul {
            column-gap: 20px;
        }

        .main-header-bottom-pages-area ul {
            column-gap: 10px;
        }
    }

    @media only screen and (max-width: 1399px)
    {
        .mobile-main-header-social-media
        {
            display: block;
        }

        .desktop-main-header-social-media
        {
            display: none;
        }

        .main-header-bottom-pages-area
        {
            width: 100%;
        }
    }

    @media only screen and (max-width: 1280px)
    {
        .main-header-language-and-search {
            column-gap: 24px;
        }

        .main-header-logo a {
            padding-right: 16px;
        }

        .main-header-logo-text {
            padding-left: 16px;
            font-size: 12px;
            line-height: 20px;
        }

        .main-header-button button, .main-header-button a {
            font-size: 12px;
            line-height: 20px;
            padding: 12px 16px;
        }

        .main-header-button-and-language-selector {
            column-gap: 32px;
        }
    }

    @media only screen and (max-width: 1199px)
    {
        .main-header-area {
            display: none;
        }

        .main-mobile-header {
            display: block;
        }

        .mobile-sidenav-logo a img {
            width: 103px;
        }

        .page-banner-image, .page-banner-image img {
            height: 350px;
        }

        .page-banner-text {
            padding: 0 20px!important;
            padding-top: 0!important;
        }

        .page-banner-breadcrumb {
            padding: 30px 20px!important;
            width: 100%;
        }
    }

@media only screen and (max-width: 991px)
{
 
 
.footer-pages-list-area {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    row-gap: 42px;
    column-gap: 24px;
}

.footer-pages-list-area .footer-pages:nth-child(4n) {
    align-items: start;
}

    .page-breadcrumb .custom-container {
        width: 100%;
        max-width: 100%;
        padding: 0 12px;
    }

    .desktopFooter {
        display: none;
    }

    .mobileFooter {
        display: block;
    }

}

@media only screen and (max-width: 767px)
{
    .footer-bottom {
    flex-direction: column;
    row-gap: 24px;
    align-items: start; 
}

.footer-bottom-pages {
    width: 100%;
    
}

    .page-banner-title {
        font-size: 32px!important;
        line-height: 42px!important;
    }


}

@media only screen and (max-width: 575px)
{
    .desktop-footer-pages-list
    {
        display: none;
    }

    .mobile-footer-pages-list
    {
        display: block;
    }

    .footer-logo-and-social-media-list {
    flex-direction: column;
    align-items: start;
    row-gap: 24px;
}
.footer-bottom-pages ul {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    row-gap: 24px;
}
}

@media only screen and (max-width: 475px) {
    .mobileFooterPages {
        display: grid;
        row-gap: 24px;
        column-gap: unset;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 425px)
{
    .mobileFooterPageLists .accordion .accordion-item .accordion-button {
        font-size: 15px;
        line-height: 22px;
    }

    .mobileFooterPageLink a {
        font-size: 15px;
        line-height: 22px;
    }

    .mobileFooter footer {
        padding: 47px 20px;
    }
}

@media only screen and (max-width: 375px)
{
    .mobile-header-logo a img {
        width: 95px;
        height: auto;
    }

    .mobile-header-logo-text {
        font-size: 12px;
        line-height: 16px;
    }

    .mobileFooterPages {
        grid-template-columns: repeat(1, 1fr);
    }
}