@font-face {
    font-family: "Montserrat";
    src: url('../fonts/Montserrat-MediumItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url('../fonts/Montserrat-BoldItalic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Display";
    src: url('../fonts/FontsFree-Net-SFProDisplay-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "SF Pro Display";
    src: url('../fonts/FontsFree-Net-SFProDisplay-BoldItalic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "SF Compact Text";
    src: url('../fonts/FontsFree-Net-SFCompactText-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

:root {
    --main-dark: #212a34;
    --main-light: #6e7884;
    --white: #fff;
    --background-light: #f0f2f7;
    --background-grey: #e0e3e9;
    --light-grey: #bfc8cf;
    --accent-color: #356197;

    --font-family: "Montserrat", sans-serif;
    --second-family: "SF Pro Display", sans-serif;
    --third-family: "SF Compact Text", sans-serif;
}

body {
    font-family: var(--font-family);
    background-color: #F0F2F7;
}

/*  Payment */

.peyment-container {
    max-width: 1394px;
    margin: 0 auto;
    padding-inline: 67px;
    margin-bottom: 80px;
}

.payment-title {
    font-weight: 700;
    font-size: clamp(32px, 6vw, 88px);
    line-height: 110%;
    letter-spacing: 0em;
    text-align: center;
    color: #1d1d1f;
    margin-bottom: 40px;
}

.payment-col {
    max-width: 896px;
    margin: 0 auto;
}

.payment-col-title {
    font-weight: 700;
    font-size: clamp(24px, 2.5vw, 36px);
    line-height: 110%;
    letter-spacing: 0.01em;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.payment-col-descr {
    margin-bottom: 40px;
}

.payment-col-descr p {
    font-weight: 500;
    font-size: clamp(13px, 1.25vw, 18px);
    line-height: 110%;
    letter-spacing: -0.01em;
    color: #1d1d1f;
}

.payment-col-descr p:not(:last-child) {
    margin-bottom: 15px;
}

.payment-cards {
    display: flex;
    justify-content: space-between;
    column-gap: 24px;
}

.payment-card {
    padding: 25px 44px;
    border-radius: 20px;
    max-width: 403px;
    max-height: 182px;
    width: 100%;
    background: var(--white);
}

.payemnt-card-title {
    font-weight: 700;
    font-size: clamp(16px, 1.67vw, 24px);
    line-height: 110%;
    letter-spacing: 0.01em;
    color: #1d1d1f;
    margin-bottom: 13px;
}

.payment-span {
    display: block;
    margin-bottom: 13px;
    font-weight: 700;
    font-size: clamp(16px, 1.67vw, 24px);
    line-height: 110%;
    letter-spacing: 0.01em;
    color: #1d1d1f;
}

.payment-card-descr p {
    font-weight: 500;
    font-size: clamp(11px, 1.11vw, 16px);
    line-height: 110%;
    letter-spacing: -0.01em;
    color: #1d1d1f;
}

.payment-card:last-child .payemnt-card-title {
    padding-block: 15px;
}

/*  Help  */

.help-container {
    max-width: 1394px;
    margin: 0 auto;
    padding-inline: 67px;
    margin-bottom: 80px;
}

.help-wrap {
    max-width: 896px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.help-title {
    font-weight: 700;
    font-size: clamp(24px, 2.5vw, 36px);
    line-height: 110%;
    letter-spacing: 0.01em;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.help-descr p {
    font-weight: 500;
    font-size: clamp(13px, 1.25vw, 18px);
    line-height: 110%;
    letter-spacing: -0.01em;
    color: #1d1d1f;
}

.help-content {
    border-radius: 20px;
    width: 100%;
    padding: 25px 23px;
    background-color: var(--white);
}

.help-col-cont {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    padding-bottom: 15px;
    border-bottom: 1.50px solid #22323b;
}

.help-col:not(:first-child) .help-col-cont {
    border-top: 1.50px solid #22323b;
    padding-top: 15px;
}

.help-col-title {
    font-weight: 700;
    font-size: clamp(18px, 1.67vw, 24px);
    color: #22323b;
}

.help-btn {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.help-btn.rotated {
    transform: rotate(0deg);
}

.help-col-cont-2 {
    padding-block: 15px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s ease-out;
}

.hidden {
    display: none;
}

.help-col-cont-2.open {
    max-height: 5000px;
}

.help-col-content:not(:last-child) {
    margin-bottom: 15px;
}

.help-col-cont-title {
    font-weight: 700;
    font-size: clamp(13px, 1.25vw, 18px);
    color: #22323b;
    margin-bottom: 15px;
}

.help-col-cont-descr p {
    font-weight: 500;
    font-size: clamp(13px, 1.25vw, 18px);
    line-height: 110%;
    letter-spacing: -0.01em;
    color: #1d1d1f;
}

.help-col-cont-descr p:not(:last-child) {
    margin-bottom: 15px;
}

/*  Contact  */

.contact-container {
    max-width: 1394px;
    margin: 0 auto;
    padding-inline: 67px;
    margin-bottom: 125px;
}

.contact-wrap {
    max-width: 896px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.contact-title {
    font-weight: 700;
    font-size: clamp(32px, 2.5vw, 36px);
    line-height: 110%;
    letter-spacing: 0.01em;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.contact-descr p {
    font-weight: 500;
    font-size: clamp(14px, 1.25vw, 18px);
    line-height: 110%;
    letter-spacing: -0.01em;
    color: #1d1d1f;
}

.contact-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 24px;
}

.contact-card {
    max-width: 403px;
    width: 100%;
    padding: 25px 44px;
    background: var(--white);
    border-radius: 20px;
}

.contact-card-title {
    font-weight: 700;
    font-size: clamp(20px, 1.67vw, 24px);
    line-height: 110%;
    letter-spacing: 0.01em;
    color: #1d1d1f;
    margin-bottom: 13px;
}

.contact-card-descr p {
    font-weight: 500;
    font-size: clamp(14px, 1.1vw, 16px);
    line-height: 110%;
    letter-spacing: -0.01em;
    color: #1d1d1f;
}

.contact-card-descr p:not(:last-child) {
    margin-bottom: 15px;
}

.contact-card-descr {
    margin-bottom: 13px;
}

.contact-card-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    border: 1px solid var(--accent-color);
    border-radius: 20px;
    width: 162px;
    height: 38px;
}

.contact-card-sp {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-align: center;
    color: var(--accent-color);
}

.contact-card-number {
    font-weight: 700;
    font-size: clamp(18px, 1.67vw, 24px);
    line-height: 110%;
    letter-spacing: 0.01em;
    color: #1d1d1f;
}

.contact-card-btn-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    border: 1px solid var(--accent-color);
    border-radius: 20px;
    width: 198px;
    height: 38px;
}

@media (max-width:1200px) {
    .payment-cards {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 26px;
    }
}

@media (max-width:900px) {
    .payment-title {
        text-align: start;
    }
}

@media (max-width:800px) {
    .peyment-container {
        max-width: 1288px;
        padding-inline: 14px;
    }

    .help-container {
        max-width: 1288px;
        padding-inline: 14px;
    }

    .contact-container {
        max-width: 1288px;
        padding-inline: 14px;
        margin-bottom: 92px;
    }

    .contact-card {
        padding: 19px 32px;
    }

}