:root {
    --black: #212121;
    --white: #FFFFFF;
    --dark-grey: #535151;
    --light-grey: #B3B3B3;
    --swiper-theme-color: #212121;
}

/* --- COMMON STYLES --- */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html, body, p, ul, ol {
    font-family: 'PT Sans', Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    letter-spacing: 0.03em;
}
@media (min-width: 1024px) {
    html, body, p, ul, ol {
        font-size: 16px;
        line-height: 24px;
    }
}

html,
body {
    height: 100%;
}

body {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 320px;
    color: var(--black);
}

img {
    display: block;
}

a {
    color: var(--black);
    text-decoration: none;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
    /*transition: border-bottom-color .5s ease;*/
}

a:hover {
    border-bottom-color: inherit;
}

button {
    background-color: unset;
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
}

.wa-wrapper {
    position: relative;
    flex: 1 0 auto;
}

.wa-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}
@media (min-width: 744px) {
    .wa-container {
        padding: 0 60px;
    }
}
@media (min-width: 1440px) {
    .wa-container {
        padding: 0;
    }
}


/* --- FONTS & TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6,
.wa-h1, .wa-h2, .wa-h3, .wa-h4,
.wa-btn-text {
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin: 0;
}

h2, .wa-h1 {
    font-size: 38px;
    line-height: 48px;
}

h3, .wa-h2 {
    font-size: 22px;
    line-height: 28px;
}

h4, .wa-h3 {
    font-size: 16px;
    line-height: 24px;
}

h5, .wa-h4 {
    font-size: 14px;
    line-height: 18px;
}

.wa-btn-text{
    font-size: 16px;
    line-height: 22px;
}

.wa-link-l {
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
}

.wa-link-s {
    font-size: 14px;
    line-height: 18px;
}

@media (min-width: 744px) {
    h2, .wa-h1 {
        font-size: 44px;
        line-height: 58px;
    }

    .wa-h3 {
        font-size: 20px;
        line-height: 28px;
    }

    .wa-link-l {
        display: inline-block;
        margin-bottom: 4px;
        font-size: 18px;
        line-height: 23px;
    }
}

@media (min-width: 1024px) {
    h2, .wa-h1 {
        font-size: 60px;
        line-height: 78px;
    }

    .wa-h2 {
        font-size: 24px;
        line-height: 32px;
    }

    .wa-h3 {
        font-size: 23px;
        line-height: 30px;
    }

    .wa-h4 {
        font-size: 24px;
        line-height: 38px;
    }

    .wa-btn-text {
        font-size: 18px;
        line-height: 24px;
    }

    .wa-link-s {
        font-size: 16px;
        line-height: 22px;
    }
}


/* --- BUTTONS & LINK BUTTONS --- */
.wa-link-bordered {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
    padding: 10px 24px;
    border: 2px solid var(--black);
}

.wa-link-bordered:hover {
    color: var(--white);
    background-color: var(--black);
    border-color: var(--black);
}

.wa-link-bordered:focus,
.wa-link-bordered:focus-within {
    color: var(--white);
    background-color: var(--dark-grey);
    border-color: var(--dark-grey);
}

.wa-link-bordered.disabled {
    color: var(--light-grey);
    border-color: var(--light-grey);
    pointer-events: none;
}


/* --- HEADER --- */
.wa-header {
    position: absolute;
    width: 100%;
    padding: 24px 0;
    /*background-color: var(--white);*/
    background-color: transparent;
    z-index: 1000;
    transition: top .5s ease, background-color .5s ease;
}
.wa-menu__active .wa-header {
    height: 100vh;
    overflow: hidden;
}
.wa-header.wa-header__static {
    position: absolute;
}
.wa-header.wa-header__fixed {
    position: fixed;
    top: 0;
    background-color: var(--white);
}
.wa-header.wa-header__hidden {
    top: -120px;
    background-color: transparent;
}

@media (min-width: 744px) {
    .wa-header {
        padding: 40px 0;
    }
}
@media (min-width: 1024px) {
    .wa-header {
        padding: 32px 0;
    }
    .wa-header.wa-header__fixed {
        padding: 24px 0;
    }
}

.wa-menu-content {
    display: flex;
    justify-content: space-between;
    position: static;
    width: 100%;
    /*background-color: var(--white);*/
}
.wa-menu__active .wa-menu-content {
    position: absolute;
    width: calc(100% - 32px);
    z-index: 2000;
}
@media (min-width: 744px) {
    .wa-menu__active .wa-menu-content {
        width: calc(100% - 120px);
    }
}

.wa-logo-img {
    width: 58px;
    /*transition: width .3s ease, margin .3s ease;*/
}
.wa-menu__active .wa-logo-img, .wa-header__fixed .wa-logo-img {
    width: 50px;
}
@media (min-width: 744px) {
    .wa-logo-img {
        width: 104px;
    }
    .wa-menu__active .wa-logo-img {
        width: 58px;
    }
}
@media (min-width: 1024px) {
    :not(.wa-header__fixed) .wa-logo-img {
        width: 300px;
        margin-left: 50px;
    }
    .wa-header__fixed .wa-logo-img {
        width: 50px;
        margin-left: 0;
    }
}

.wa-menu-right-col {
    display: flex;
    align-items: flex-start;
}
@media (min-width: 1024px) {
    .wa-menu-right-col {
        padding-top: 9px;
    }
}

.wa-header__fixed .wa-menu-right-col {
    align-items: center;
    padding-top: 0;
}

.wa-menu-desktop {
    display: none;
}
@media (min-width: 1024px) {
    .wa-menu-desktop {
        display: block;
    }
}

.wa-menu-link {
    margin-left: 24px;
}

.wa-menu-actions,
.wa-lang-switcher,
.wa-languages {
    display: flex;
}

/* Language Switcher */
.wa-lang-switcher {
    /*display: none;*/
    background-color: var(--white);
    margin-right: 16px;
}
.wa-link-lang__active
@media (min-width: 744px) {
    .wa-lang-switcher {
        margin-right: 22px;
    }
}
@media (min-width: 1024px) {
    .wa-lang-switcher {
        flex-direction: row;
        margin-top: 0;
        margin-right: 0;
        margin-left: 24px;
    }
}

.wa-languages {
    flex-direction: column;
}
@media (min-width: 1024px) {
    .wa-languages {
        flex-direction: row;
    }
}

.wa-link-lang.wa-link-lang__active {
    order: 0;
}
.wa-link-lang:not(.wa-link-lang__active) {
    order: 1;
}
@media (min-width: 1024px) {
    .wa-link-lang:last-child {
        margin-left: 16px;
    }
    .wa-link-lang.wa-link-lang__active {
        order: unset;
    }
    .wa-link-lang:not(.wa-link-lang__active) {
        order: unset;
    }
}

.wa-link-lang:hover {
    border-bottom-color: transparent;
}

.wa-link-lang__active {
    pointer-events: none;
}

:not(.wa-dropdown__active) .wa-link-lang:not(.wa-link-lang__active) {
    opacity: 0;
    transition: opacity .5s ease;
}
.wa-dropdown__active .wa-link-lang:not(.wa-link-lang__active) {
    pointer-events: initial;
    opacity: 1;
}
@media (min-width: 1024px) {
    .wa-link-lang:not(.wa-link-lang__active) {
        font-weight: 400;
    }
    :not(.wa-dropdown__active) .wa-link-lang:not(.wa-link-lang__active) {
        opacity: 1;
    }
}

.wa-lang-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 21px;
    height: 21px;
}
@media (min-width: 1024px) {
    .wa-lang-btn {
        display: none;
    }
}

.wa-lang-icon {
    display: block;
    width: 11px;
    height: 11px;
    transform: rotate(180deg);
    transition: transform .3s ease;
}

.wa-dropdown__active .wa-lang-icon {
    transform: rotate(0deg);
}

@media (min-width: 1024px) {
    .wa-menu-btn-wrapper {
        display: none;
    }
}

.wa-menu-toggler {
    position: relative;
    display: flex;
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    margin-top: -8px;
    margin-right: -5px;
}
@media (min-width: 744px) {
    .wa-menu-toggler {
        margin-top: -7px;
        margin-right: -1px;
    }
}

.wa-menu-toggler::before, .wa-menu-toggler::after {
    content: '';
    position: absolute;
    left: 14px;
    display: block;
    height: 1px;
    width: 13px;
    background-color: var(--black);
    transition: all .5s;
}
@media (min-width: 744px) {
    .wa-menu-toggler::before, .wa-menu-toggler::after {
        left: 8px;
        width: 24px;
    }
}

.wa-menu-toggler::before {
    top: 17px;
}
.wa-menu-toggler::after {
    bottom: 17px;
}
@media (min-width: 744px) {
    .wa-menu-toggler::before {
        top: 15px;
    }

    .wa-menu-toggler::after {
        bottom: 15px;
    }
}

.wa-menu__active .wa-menu-toggler::before {
    transform: rotate(45deg);
    top: 21px;
}
@media (min-width: 744px) {
    .wa-menu__active .wa-menu-toggler::before {
        top: 21px;
    }
}

.wa-menu__active .wa-menu-toggler::after {
    transform: rotate(-45deg);
    bottom: 18px;
}
@media (min-width: 744px) {
    .wa-menu__active .wa-menu-toggler::after {
        top: 21px;
    }
}

.wa-menu-mobile {
    position: absolute;
    top: 0;
    width: calc(100% - 32px);
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    visibility: hidden;
    opacity: 0;
    z-index: 1000;
    transition: top .5s ease, visibility .5s ease, opacity .5s ease;
}
@media (min-width: 744px) {
    .wa-menu-mobile {
        width: calc(100% - 80px);
    }
}
@media (min-width: 1024px) {
    .wa-menu-mobile {
        display: none;
    }
}

.wa-menu__active .wa-menu-mobile {
    top: 135px;
    height: fit-content;
    visibility: visible;
    opacity: 1;
}
@media (min-width: 744px) {
    .wa-menu__active .wa-menu-mobile {
        top: 225px;
    }
}


.wa-menu-mobile-link {
    width: fit-content;
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 10px 0;
    margin-bottom: 4px;
}
@media (min-width: 744px) {
    .wa-menu-mobile-link {
        font-size: 24px;
        line-height: 28px;
        margin-bottom: 30px;
    }
}


/* --- MAIN SECTION / SECTION WITH MAIN HEADING --- */
.wa-content {
    position: static;
    visibility: visible;
    transform: scaleY(1);
    padding-top: 168px;
    transition: scaleY .5s ease, padding-top .5s ease, visibility .5s ease;
}
@media (min-width: 744px) {
    .wa-content {
        padding-top: 280px;
    }
}
@media (min-width: 1024px) {
    .wa-content {
        padding-top: 192px;
    }
}
.wa-content.wa-content__hidden {
    position: absolute;
    visibility: hidden;
    transform: scaleY(0);
}

.wa-title-section {
    display: flex;
    margin-bottom: 46px;
}
@media (min-width: 744px) {
    .wa-title-section {
        margin-bottom: 91px;
    }
}
@media (min-width: 1200px) {
    .wa-title-section {
        margin-bottom: 117px;
    }
}

.wa-col-left,
.wa-col-right {
    display: flex;
}

.wa-col-right {
    display: flex;
    justify-content: flex-end;
}
@media (min-width: 1024px) {
    .wa-col-left {
        width: 63%;
        padding-top: 66px;
    }

    .wa-col-right {
        width: 37%;
        padding-top: 29px;
    }
}
@media (min-width: 1200px) {
    .wa-col-right {
        padding-right: 50px;
    }
}

.wa-title-img {
    display: none;
}
@media (min-width: 1024px) {
    .wa-title-img {
        display: block;
        height: fit-content;
    }

    .wa-col-right .wa-title-img:first-child {
        margin-top: 135px;
    }
}

@media (min-width: 1024px) {
    .wa-title-wrapper {
        max-width: 400px;
    }
    .wa-title-wrapper-eng {
        max-width: 450px;
    }
}

.wa-main-title {
    font-size: 30vw;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 100px;
}
.wa-main-title-eng {
    margin-bottom: 103px;
}
.wa-main-title-l,
.wa-main-title-s {
    font-size: 23vw;
    line-height: 1;
}
@media (min-width: 744px) {
    .wa-main-title {
        margin-bottom: 192px;
    }
    .wa-main-title-l,
    .wa-main-title-s {
        font-size: 21vw;
    }
}
@media (min-width: 1024px) {
    .wa-main-title {
        font-size: 139px;
        line-height: 130px;
        margin-top: -17px;
        margin-bottom: 20px;
    }
    .wa-main-title-l {
        font-size: 10vw;
    }
    .wa-main-title-s {
        font-size: 6.4vw;
        white-space: nowrap;
    }
    .wa-main-title-l,
    .wa-main-title-s {
        line-height: 1;
    }
}
@media (min-width: 1200px) {
    .wa-main-title-eng {
        margin-bottom: 78px;
    }
    .wa-main-title-l {
        font-size: 112px;
        line-height: 1.45;
        letter-spacing: 4px;
        margin-left: -6px;
    }
    .wa-main-title-s {
        font-size: 75px;
        line-height: 0.1;
        letter-spacing: -0.2px;
    }
}

.wa-word-wrapper {
    display: flex;
    justify-content: space-between;
}

.i-bg-1, .i-bg-2 {
    background-clip: text;
    -webkit-background-clip: text;
    background-repeat: no-repeat;
    background-size: contain;
    color: transparent;
}
@media (min-width: 1024px) {
    .i-bg-1, .i-bg-2 {
        background-image: none;
        color: var(--black);
    }
}

.i-bg-1 {
    background-image: url("/media/img/main_001.jpg");
}

.i-bg-2 {
    background-image: url("/media/img/main_002.jpg");
}

.wa-send-link {
    margin-top: 26px;
}
@media (min-width: 744px) {
    .wa-send-link {
        margin-top: 33px;
    }
}
@media (min-width: 1024px) {
    .wa-send-link {
        margin-top: 26px;
    }
}

.wa-col-left .wa-title-img {
    margin-right: 16px;
}
.wa-col-right .wa-title-img {
    margin-left: 16px;
}
@media (min-width: 1200px) {
    .wa-col-left .wa-title-img {
        margin-right: 50px;
    }

    .wa-col-right .wa-title-img {
        margin-left: 50px;
    }
}




/* --- GRIDS 4 COLUMNS --- */
.wa-col-2, .wa-col-3, .wa-col-4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.wa-col-2 .wa-col,
.wa-col-3 .wa-col,
.wa-col-4 .wa-col {
    width: 100%;
}
@media (min-width: 744px) {
    .wa-col-3 .wa-col {
        width: 31%;
    }
}
@media (min-width: 1024px) {
    .wa-col-2 .wa-col {
        width: 46%;
    }

    .wa-col-4 .wa-col {
        width: 24%;
    }
}
@media (min-width: 1200px) {
    .wa-col-2 {
        /*grid-template-columns: repeat(2, minmax(0, 1fr));*/
        /*grid-column-gap: 100px;*/
    }

    .wa-col-3 {
        /*grid-template-columns: repeat(3, minmax(0, 1fr));*/
        /*grid-column-gap: 56px;*/
    }

    .wa-col-4 {
        /*grid-template-columns: repeat(4, minmax(0, 1fr));*/
        /*grid-column-gap: 32px;*/
    }
}


/* --- ABOUT SECTION --- */
.wa-about-section {
    margin-bottom: 32px;
}
@media (min-width: 1024px) {
    .wa-about-section {
        margin-bottom: 80px;
    }
}

.wa-item .wa-col {
    width: 49%;
    margin-bottom: 20px;
}

@media (max-width: 1023px) {
    .wa-item .wa-col{
        width: 100%;
    }
}

.wa-item ul {
    margin-left: -40px;
    list-style-type: none;
}

.wa-item ul li:before {
    content: "\2014\00a0";
}

.wa-about-section .wa-article {
    margin-bottom: 38px;
}

.wa-columns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.wa-column {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    margin-right: 10px;
}

.wa-img-war {
    width: 100%;
    margin: 20px 0;
    object-fit: cover;
    object-position: center;
}

.wa-img-war-full-height {
    height: calc(100% - 40px);
}



@media (min-width: 1024px) {
    .texture-1 {
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .wa-about-section {
        margin-bottom: 80px;
    }

    .wa-funding-section {
        margin-bottom: 4em;
    }
}

.wa-about-section .wa-article {
    margin-bottom: 38px;
}

@media (min-width: 744px) {
    .wa-about-section .wa-article {
        margin-bottom: 32px;
    }
}
@media (min-width: 1024px) {
    .wa-about-section .wa-article:last-child, .wa-article:last-child p {
        margin-bottom: 0;
    }
}


/* --- NUMBERS SECTION --- */
.wa-numbers-section {
    margin-bottom: 40px;
}
@media (min-width: 744px) {
    .wa-numbers-section {
        margin-bottom: 31px;
    }
}
@media (min-width: 1024px) {
    .wa-numbers-section {
        margin-bottom: 80px;
    }
}

.wa-section-title {
    margin-bottom: 16px;
}
@media (min-width: 1024px) {
    .wa-section-title {
        margin-bottom: 20px;
    }
}

.wa-numbers-section .wa-col {
    margin-bottom: 16px;
}
.wa-numbers-section .wa-col:last-child {
    margin-bottom: 0;
}
@media (min-width: 1024px) {
    .wa-numbers-section .wa-col {
        margin-bottom: 0;
    }
}

.wa-number {
    font-size: 122px;
    line-height: 124px;
}
@media (min-width: 744px) {
    .wa-number {
        font-size: 94px;
        line-height: 90px;
    }
}
@media (min-width: 1024px) {
    .wa-number {
        font-size: 166px;
        line-height: 156px;
    }
}

/* --- NUMBERS SECTION --- */
.wa-number {
    font-size: clamp(50px, 10vw, 90px);
    white-space: nowrap;
    line-height: 1;
}

.text-number {
    margin-top: 10px;
    font-size: 1em;
    line-height: 1;
}

.wa-number span {
    font-size: 40%;
}

.text {
    margin-top: 10px;
    font-size: 1em;
    line-height: 1.2em;
}

.grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 3%;
    row-gap: 40px;
    margin: 100px auto;
}


.grid__item {
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- SEND MATERIALS SECTION --- */
.wa-send-section {
    margin-bottom: 39px;
}
@media (min-width: 1024px) {
    .wa-send-section {
        margin-bottom: 45px;
    }
}
@media (min-width: 1024px) {
    .wa-send-section {
        margin-bottom: 80px;
    }
}

.wa-send-section .wa-section-title {
    margin-bottom: 18px;
}
@media (min-width: 744px) {
    .wa-send-section .wa-section-title {
        margin-bottom: 0;
    }
}
@media (min-width: 1024px) {
    .wa-send-section .wa-section-title {
        margin-bottom: 26px;
    }
}

.wa-send-section .wa-col {
    margin-bottom: 17px;
}
.wa-send-section .wa-col:last-child {
    margin-bottom: 0;
}
@media (min-width: 744px) {
    .wa-send-section .wa-col-3 .wa-col {
        width: 100%;
    }
}
@media (min-width: 1024px) {
    .wa-send-section .wa-col-3 .wa-col {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
        width: 31%;
    }
}

.wa-send-section .wa-link-bordered {
    margin-top: 21px;
}
@media (min-width: 1024px) {
    .wa-send-section .wa-link-bordered {
        margin-top: 9px;
    }
}


/* --- PARTNERS SECTION --- */

.wa-partners {
    margin-top: 2em;
}

.wa-partners-section {
    margin-bottom: 30px;
}
@media (min-width: 744px) {
    .wa-partners-section {
        margin-bottom: 40px;
    }
}
@media (min-width: 1024px) {
    .wa-partners-section {
        margin-bottom: 60px;
    }
}

.wa-partners-section .wa-section-title {
    margin-bottom: 0;
}
@media (min-width: 1024px) {
    .wa-partners-section .wa-section-title {
        margin-bottom: 41px;
    }
}

.wa-authors {
    margin-bottom: 32px;
}

.wa-authors .wa-col {
    margin-bottom: 41px;
}

.wa-authors .wa-col:last-child {
    margin-bottom: 0;
}

.wa-author-article p {
    margin-top: 0;
}

.wa-partners-title {
    margin-bottom: 24px;
    margin-top: 4em;
}

@media (min-width: 420px) {
    .wa-partners .wa-col-4 {
        justify-content: space-evenly;
    }
}
@media (min-width: 520px) {
    .wa-partners .wa-col-4 {
        justify-content: unset;
    }
}
@media (min-width: 744px) {
    .wa-partners .wa-col-4 {
        justify-content: space-between;
    }
}
@media (min-width: 1024px) {
    .wa-partners .wa-col-4 {
        justify-content: space-between;
    }
}

.wa-partners .wa-col {
    width: 50%;
    display: flex;
    align-items: center;
    padding: 10px 0;
    transform: scale(0.9);
}
.wa-partners .wa-col {
    justify-content: space-around;
}
@media (min-width: 375px) {
    .wa-partners .wa-col {
        transform: scale(1);
    }
}
@media (min-width: 520px) {
    .wa-partners .wa-col {
        width: 33%;
    }
}
@media (min-width: 640px) {
    .wa-partners .wa-col {
        width: 25%;
    }
}
@media (min-width: 1024px) {
    .wa-partners .wa-col {
        width: 14.5%;
    }
}


.wa-author-slider {
    padding: 18px 0 35px;
}
@media (min-width: 1024px) {
    .wa-author-slider {
        padding: 5px 0 70px;
        margin-top: 32px;
    }
}

.swiper-wrapper {
    margin-bottom: 26px;
}
@media (min-width: 744px) {
    .swiper-wrapper {
        margin-bottom: 12px;
    }
}
@media (min-width: 1024px) {
    .swiper-wrapper {
        margin-bottom: 25px;
    }
}

.swiper-controls {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.swiper-buttons {
    display: flex;
}

.swiper-button-prev, .swiper-button-next {
    position: static;
    width: fit-content;
    height: fit-content;
    padding: 5px;
    margin-top: unset;
}

.swiper-button-prev::after, .swiper-button-next::after {
    content: '';
    font-size: 0;
}

.swiper-pagination {
    position: static;
    display: flex;
    align-items: center;
    width: fit-content;
    text-align: left;
}

.pagination-dash {
    width: 33px;
    height: 1px;
    background-color: var(--black);
    margin: 0 5px;
}
@media (min-width: 744px) {
    .pagination-dash {
        width: 53px;
    }
}
@media (min-width: 1024px) {
    .pagination-dash {
        width: 73px;
    }
}

.swiper-line {
    width: calc(100% - 190px);
    max-width: 900px;
    height: 1px;
    background: var(--black);
    opacity: .4;
}
@media (min-width: 744px) {
    .swiper-line {
        width: calc(100% - 240px);
    }
}
@media (min-width: 1024px) {
    .swiper-line {
        width: calc(100% - 300px);
    }
}
@media (min-width: 1200px) {
    .swiper-line {
        width: 70%;
    }
}

.wa-arrow-l.wa-arrow-m, .wa-arrow-l.wa-arrow-xl,
.wa-arrow-r.wa-arrow-m, .wa-arrow-r.wa-arrow-xl {
    display: none;
}
@media (min-width: 744px) {
    .wa-arrow-l.wa-arrow-m,
    .wa-arrow-r.wa-arrow-m {
        display: block;
    }
    .wa-arrow-l.wa-arrow-s, .wa-arrow-l.wa-arrow-xl,
    .wa-arrow-r.wa-arrow-s, .wa-arrow-r.wa-arrow-xl {
        display: none;
    }
}
@media (min-width: 1024px) {
    .wa-arrow-l.wa-arrow-xl,
    .wa-arrow-r.wa-arrow-xl {
        display: block;
    }
    .wa-arrow-l.wa-arrow-s, .wa-arrow-l.wa-arrow-m,
    .wa-arrow-r.wa-arrow-s, .wa-arrow-r.wa-arrow-m {
        display: none;
    }
}

/* --- FAQ SECTION --- */

.faq-section {
    margin-bottom: 100px;
}

.container {
    margin: 0 auto;
    width: 100%;
}

.container > h2 {
    margin-bottom: 20px;
}

@media (max-width: 743px) {
    .faqs.grid-container {
        display: flex;
        flex-direction: column-reverse;
    }

    .wa-faq-col {
        width: 100%;
    }
}

@media (min-width: 744px) and (max-width: 1179px) {
    .faqs.grid-container {
        display: flex;
        flex-direction: column-reverse;
    }

    .wa-faq-col {
        width: 100%;
    }
}

.grid-container {
    grid-column-gap: 16px;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    flex-direction: column-reverse;
    display: grid;
}

.wa-faq-col {
    grid-column: span 6;
}

.wa-faq-article {
    margin-top: 12px;
}

.wa-question-btn {
    display: flex;
    align-items: center;
    width: 100%;
    text-align: left;
    padding: 10px 5px;
    border-bottom: 2px solid var(--black);
    margin-bottom: 10px;
}

.font-btn {
    font-size: 18px;
    text-transform: uppercase;
    line-height: 23px;
}

.wa-faq-article .answer-row {
    height: 0;
    overflow: hidden;
    padding-left: 15px;
    transition: height 0.3s ease-out;
}

.wa-faq-article.open .answer-row {
    height: auto;
    padding-left: 15px;
}


/* --- FOOTER --- */
.wa-footer {
    display: flex;
    flex-shrink: 0;
    color: var(--white);
    background-color: var(--black);
    padding: 16px 0 26px;
}

.wa-menu__active + .wa-footer {
    display: none;
}

.wa-footer a {
    color: var(--white);
    font-weight: 700;
}

.wa-footer-content {
    display: flex;
    flex-direction: column;
}
@media (min-width: 1200px) {
    .wa-footer-content {
        flex-direction: row;
        justify-content: space-between;
    }
}

