body > main {
    overflow: hidden;
    font-size: 20px;
}

.about-us-page-header {
    height: calc(100vh - (var(--top-menu-height) + var(--padding-default)));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    text-align: center;
}

.about-us-page-header .header-logo {
    max-height: 40%;
    max-width: 40%;
}
.scroll-hint {
    margin-top: 16px;
    width: 32px;
    height: 48px;
    background: #fff7;
    border: 2px solid var(--color-dark-blue);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    animation: scroll-hint-animatian 1.5s infinite ease-in-out;
}

.scroll-crown {
    width: 4px;
    height: 16px;
    border-radius: 2px;
    background: var(--color-dark-blue);
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: scroll-hint-crown-animatian 1.5s infinite ease;
}

@keyframes scroll-hint-animatian {
    form {
        border: 2px solid var(--color-dark-blue);
    }

    to {
        border: 3px solid var(--color-red);
    }
}

@keyframes scroll-hint-crown-animatian {
    form {
        height: 16px;
        transform: translate(-50%, -50%);
    }

    to {
        height: 10px;
        transform: translate(-50%, -40%);
    }
}
main > section {
    margin-bottom: 48px;
}

main > section:last-child {
    margin-bottom: calc(var(--top-menu-height) + var(--padding-default));
}

section > .section-title {
    font-family: Kalameh-ExtraBold;
    font-size: 40px;
    color: var(--color-dark-blue);
    display: flex;
    flex-direction: column;
    margin-bottom: 32px;
}

section > .section-title::after {
    content: "";
    display: inline-block;
    width: 189px;
    height: 10px;
    background: var(--color-dark-blue);
    margin: 18px 0;
    filter: contrast(0.13);
}

.section-title-center {
    align-items: center;
    font-family: Kalameh-Bold !important;
    font-size: 32px !important;
}

.section-title-center::after {
    height: 5px !important;
    margin-top: 8px !important;
}

#about_us > p.content-text {
    columns: 2;
    gap: 32px;
    text-align: justify;
}

#licenses-section #licenses-list {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;
    list-style: none;
    overflow-x: auto;
    white-space: nowrap;
}

#licenses-section #licenses-list li {
    min-width: 100px;
    width: 100px;
    /* height: 100px; */
    /* background: red; */
}

#contact-with-us .side-by-side {
    display: flex;
    flex-direction: row;
    width: 100%;
}

#contact-with-us .side-by-side > .image {
    flex: 1;
    /* max-width: 40vw; */
}

#contact-with-us .side-by-side > .image img {
    width: 100%;
}

#contact-with-us .side-by-side > .context-holder {
    min-width: 500px;
    flex: 1;
    text-align: left;
    direction: ltr;
    display: flex;
    flex-direction: column;
    gap: 64px;
}

#contact-with-us .side-by-side > .context-holder ul {
    list-style: none;
}

#contact-with-us .side-by-side > .context-holder #mobile-list {
    font-family: Kalameh-SemiBold;
    font-size: 64px;
    color: var(--color-red);
    width: fit-content;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

#contact-with-us .side-by-side > .context-holder #mobile-list a {
    display: flex;
    flex-direction: column;
    height: fit-content;
    line-height: 64px;
}

#contact-with-us .side-by-side > .context-holder #mobile-list a::after {
    content: "";
    height: 2px;
    width: 100%;
    background: var(--color-red);
}

.social-media-list {
    display: flex;
    flex-direction: row;
    gap: 32px;
}

.social-media-list li {
    display: flex;
    width: 64px;
    height: 64px;
}

#contact-with-us .map {
    border-radius: 48px;
    overflow: hidden;
    aspect-ratio: 3/2;
}

#contact-with-us .map > * {
    width: 100%;
}

.branch-list {
    list-style: none;
}

.branch-list li {
    display: flex;
    gap: 32px;
}

.branch-list li .map {
    height: 20vh;
    aspect-ratio: 2/1;
    overflow: hidden;
    border-radius: 24px;
}
#other-branchs .map > * {
    width: 100%;
}

#other-branchs .social-media-list li {
    width: 40px;
    height: 40px;
}
#other-branchs .social-media-list li a {
    display: flex;
}

.branch-list li .content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 24px 0;
}
.branch-list li .content .branch-tel-list {
    display: flex;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
}
.branch-list li .content .branch-tel-list li {
    min-width: fit-content;
}
.branch-list li .content .branch-tel-list a {
    color: var(--color-red) !important;
    font-family: Kalameh-SemiBold;
    font-size: 24px;
    width: 100%;
    height: 100%;
    text-decoration: underline;
}
#other-branchs .social-media-list li a {
    height: 100% !important;
}

@media (max-width: 920px) {
    .about-us-page-header {
        padding-bottom: calc(64px + var(--padding-horizontal) * 4) !important;
        justify-content: end !important;
    }
    .about-us-page-header .header-logo {
        max-width: calc(100% - var(--padding-horizontal) * 2) !important;
    }
    #about_us > p.content-text {
        columns: 1 !important;
        gap: 0;
        text-align: justify;
    }
    #licenses-section #licenses-list {
        gap: 32px !important;
    }
    #contact-with-us .side-by-side > .context-holder {
        min-width: unset !important;
        width: 100%;
        text-align: center !important;
        direction: rtl !important;
        gap: 32px;
        align-items: center;
    }
    #contact-with-us .side-by-side > .context-holder > * {
        text-align: center;
    }

    #contact-with-us .side-by-side > .context-holder #mobile-list {
        font-size: 12vw;
        direction: ltr;
    }

    #contact-with-us .side-by-side > .context-holder #mobile-list a {
        line-height: normal !important;
    }
    #contact-with-us .map {
        width: 100%;
    }



    #contact-with-us .social-media-list li{
        width: 40px;
        height: 40px;

    }
    #contact-with-us .social-media-list li img{
        width: 100%;
        height: 100%;
    }
    .branch-list li {
        flex-direction: column;
        gap: 32px;
    }
    #other-branchs .social-media-list {
        gap: 24px;
    }
    .branch-list > li:not(:last-child) {
        border-bottom: 1px solid #0003;
    }
    .branch-list li .content .branch-tel-list{
        gap: 16px !important;
    }

}
