body.no-scroll {
    overflow: hidden !important;
    height: 100vh;
}

.ae-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 20px;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

.align-center {
    align-items: center;
}

.space-between {
    justify-content: space-between;
}

header {
    background-color: rgb(248 249 250);
    position: relative;
    z-index: 999;
}

header .col-left {
    width: 18%;
}

header .col-right {
    width: 82%;
    justify-content: flex-end;
}

header .col-right,
header .top-icon,
header .destination-box,
header .verified-box {
    display: flex;
    align-items: center;
}

header nav ul {
    margin: 0;
    padding: 0;
}

header nav ul li {
    list-style: none;
}

header nav ul li {
    position: relative;
    margin-right: 20px;
    padding: 30px 0;
}

header nav ul li a {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    transition: all .4s ease-in-out;
}

header nav ul li a:hover {
    color: #27bdbe;
}

header .destination-box,
header .verified-box {
    margin-left: 20px;
}

header .top-icon .verified-box {
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid rgb(221, 221, 221);
}

header .top-icon span {
    font-size: 12px;
    font-weight: 600;
    margin-left: 4px;
}

header .dropdown-list .dropdown_menu {
    width: 200px;
    padding: 0 8px;
    background-color: #FFFFFF;
    box-shadow: 2px 4px 4px 0 rgba(0, 0, 0, 0.15);

    position: absolute;
    top: 60px;
    left: -10px;

    opacity: 0;
    visibility: hidden;
    transform: translateY(60px);
    transition: all .4s ease-in-out;
}

header .dropdown-list:hover .dropdown_menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    z-index: 10;
}

header .dropdown-list:hover header .dropdown-list li {
    margin-right: 0;
}

header .dropdown-list .dropdown_menu li {
    padding: 7px 0 7px;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
}

header .dropdown-list .dropdown_menu li a {
    display: block;
}

header .dropdown-list .dropdown_menu li:hover a {
    color: #27bdbe;
    display: block;
}

.toggle-button {
    width: 30px;
    display: none;
    flex-wrap: wrap;
    cursor: pointer;
    margin-left: 10px;
    position: absolute;
    top: 34px;
    right: 20px;
    z-index: 11;
}

.toggle-button span {
    width: 26px;
    height: 3px;
    background-color: #000000;
    margin-bottom: 4px;
    transition: all 0.5s ease-in-out;
    z-index: 11;
}

.mobile-menu {
    display: none;
}


footer {
    background-color: #d9d9d9;
    padding: 32px 0 0;
    position: relative;
    margin-top: 15rem;
}

footer::before {
    content: "";
    display: block;
    width: 940px;
    height: 197px;
    background-image: url(https://dcsb59fztkcs1.cloudfront.net/arabiersLk/header-footer-imgs/footer-bg.png);
    background-repeat: no-repeat;
    position: absolute;
    left: 50%;
    translate: -50%;
    bottom: 99.8%;
    background-size: cover;
}

footer li {
    list-style: none;
}

footer .col-left {
    width: 503px;
}

footer .col-right {
    width: calc(100% - 660px);
}


footer .col-right .inner-col {
    width: 31.33%;
}

footer .col-right .inner-col ul {
    margin-bottom: 0;
    padding: 0;
}

footer .map-text {
    padding-left: 110px;
}

footer .map-text p {
    margin: 20px 0;
}

footer .office-address {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-weight: 600;
}

footer h4 {
    font-size: 16px;
    font-weight: 600;
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #adaaaa;
}

footer .association {
    padding: 20px 0;
    margin: 20px 0;
    border-top: 1px solid #828282;
    border-bottom: 1px solid #828282;
}

footer .col-right .inner-col ul li {
    font-size: 14px;
    margin-bottom: 10px;
}

footer .col-right .inner-col ul li a {
    color: #000000;
}

footer .association p,
footer .payment p {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

footer .association ul,
footer .payment ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 30px;
    column-gap: 20px;
    margin-bottom: 0;
    padding: 0;
}

footer .copy-right {
    width: 100%;
    background-color: #27bdbe;
    padding: 10px 0 10px;
    margin-top: 30px;
}

footer .copy-right ul {
    align-items: center;
    gap: 20px;
    margin-bottom: 0;
}

footer .copy-right ul li a {
    width: 25px;
    height: 25px;
    display: block;
}

footer .copy-right p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-align: right;
    margin-bottom: 0;
}

@media (max-width:1240px) {
    header {
        padding: 10px 0;
    }

    header .destination-box,
    header .verified-box {
        margin-left: 0;
    }

    header nav ul li {
        margin-right: 10px;
    }

    header .top-icon .verified-box {
        margin-left: 6px;
        padding-left: 6px;
    }
}

@media (max-width:1180px) {
    header .logo {
        position: relative;
        z-index: 3;
    }

    header .col-right {
        width: auto;
    }

    header .top-icon {
        padding-right: 60px;
    }

    header nav {
        display: none;
    }

    .toggle-button {
        display: flex;
    }

    header .toggle-button.active span {
        transform: rotate(45deg);
        margin: 5px 0 0 0;
    }

    header .toggle-button.active span:nth-of-type(2) {
        display: none;
    }

    header .toggle-button.active span:nth-last-of-type(1) {
        transform: rotate(-45deg);
        margin: -3px 0 0 0;
    }

    /* Hide desktop nav */
    header nav {
        display: none;
    }

    /* Adjust layout */
    header .col-right {
        width: auto;
    }

    /* Show mobile toggle */
    .toggle-button {
        display: flex;
        width: 32px;
        height: 24px;
        flex-direction: column;
        justify-content: space-between;
        position: absolute;
        top: 28px;
        right: 20px;
        z-index: 20;
        cursor: pointer;
    }

    .toggle-button span {
        width: 100%;
        height: 3px;
        background: #000;
        transition: 0.4s;
    }

    /* Toggle icon animation (X icon) */
    .toggle-button.active span:nth-child(1) {
        transform: rotate(45deg) translate(11px, 11px);
    }

    .toggle-button.active span:nth-child(2) {
        opacity: 0;
    }

    .toggle-button.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* ============================
       MOBILE MENU WRAPPER
    ============================= */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        transform: translateX(100%);
        transition: transform 0.45s ease;
        z-index: 15;
        overflow-y: auto;
        padding-top: 90px;
        display: block;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    /* ============================
       MENU LIST
    ============================= */
    .mobile-menu ul {
        list-style: none;
        padding: 0 25px 40px;
        margin: 0;
    }

    .mobile-menu li {
        border-bottom: 1px dashed #000;
    }

    .mobile-menu li:first-child {
        border-top: 1px dashed #000;
    }

    .mobile-menu a {
        display: block;
        padding: 10px 0;
        font-size: 16px;
        font-weight: 600;
        color: #000;
        position: relative;
    }

    /* ============================
       SUB MENU ARROWS
    ============================= */
    .angle-arrow::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        translate: 0 -50%;
        width: 22px;
        height: 22px;
        background-image: url("images/angle-down-arrow.png");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        transition: 0.3s ease;
    }

    .angle-arrow.active::after {
        transform: rotate(180deg);
    }

    /* ============================
       SUB MENU
    ============================= */
    .sub-categories-list,
    .inside-categories-list {
        display: none;
        padding-left: 25px;
    }

    .sub-categories-list li a,
    .inside-categories-list li a {
        font-size: 16px;
        font-weight: 500;
        padding: 14px 0;
    }

    .sub-categories-list {
        background: #d9d9d9;
        padding: 0 25px 0 !important;
    }

    .sub-categories-list li {
        border: none !important;
    }

    .sub-categories-list li a {
        padding: 8px 0;
        font-size: 15px;
    }

    /* Hide header icons in mobile */
    header .top-icon {
        display: none;
    }

    footer .col-right {
        width: calc(100% - 560px);
    }

    footer::before {
        width: 100%;
        height: 95px;
        left: unset;
        translate: unset;
    }
}

@media (max-width:992px) {
    header .logo img {
        max-width: 250px;
    }

    footer .col-left {
        width: 100%;
    }

    footer .col-right {
        width: 100%;
        margin-top: 30px;
    }

    footer .map-text {
        padding-left: 0;
    }

    footer .f-logo img,
    footer .map-img img {
        display: block;
        margin: 0 auto;
    }

    footer .f-logo img {
        max-width: 250px;
    }

    footer .office-address {
        justify-content: center;
        font-size: 12px;
        line-height: 120%;
        font-weight: bold;
    }

}

@media (max-width:767px) {

    footer .copy-right ul {
        padding-left: 0;
    }
}

@media (max-width:767px) {
    header .top-icon {
        display: none;
    }

    footer .map-text p {
        font-size: 14px;
    }

    footer .copy-right .inner-row {
        flex-direction: column;
        gap: 10px;
    }

}