/***** Hero component *****/
.hero {
    background-position: center;
    background-size: cover;
    height: 580px;
    padding: 0 20px;
    text-align: center;
    width: 100%;
    margin: 0;
}

.hero-inner {
    margin: 32px auto 0;
}

.hero-title {
    font-weight: 700;
    font-size: 64px;
    line-height: 83px;
    padding-top: 32px;
}

.hero-description {
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    padding-top: 6px;
}

.hero-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 81px;
    width: 100%;
    max-width: 1240px;
    margin: -180px auto 200px auto;
}

.hero-buttons .hero-buttons-item  {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 360px;
    height: 365px;
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    flex-direction: column;
    text-align: center;
    padding: 0 32px;
    cursor: pointer;
}

.hero-buttons .hero-buttons-item:first-child {
    justify-self: end;
}

.hero-buttons .hero-buttons-item-image {
    width: 100px;
    height: 100px;
}

.hero-buttons .hero-buttons-item-title {
    padding-top: 24px;
    font-weight: 700;
    font-size: 32px;
    line-height: 42px;
}

.hero-buttons .hero-buttons-item-description {
    padding-top: 8px;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
}

.help-center-articles {
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 5%;
    align-items: center;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.help-center-section {
    border: 1px solid #EAEAEA;
    border-radius: 10px;
    padding: 40px;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-weight: 400;
    font-size: 24px;
    line-height: 31px;
    flex-direction: column;
}

.help-center-section:hover,
.help-center-section.active {
    border-color: #1F63FF;
}

.help-center-section-name {
    width: 100%;
    background-repeat: no-repeat;
    background-position: right center;
    cursor: pointer;
    background-size: 30px;
}

.help-center-section-name.active {
    color: #1F63FF;
    font-weight: 700;
}

.help-center-section ::selection,
.help-center-section ::-moz-selection {
    background-color: transparent;
}

.help-center-section-articles {
    display: none;
    flex-direction: column;
    width: 100%;
}

.help-center-section.active .help-center-section-articles {
    display: flex;
}

.help-center-section-articles-item {
    font-weight: 400;
    font-size: 24px;
    line-height: 31px;
    color: #000;
    width: 100%;
    border-bottom: 1px solid #EAEAEA;
    padding-top: 32px;
    padding-bottom: 12px;
}

.help-center-section-articles-item:first-child {
    padding-top: 64px;
}

.help-center-section-articles-item:last-child {
    border-bottom: none;
}

@media (max-width: 1240px) {
    .hero-buttons {
        margin-bottom: 150px;
        grid-gap: 32px;
        margin-top: -120px;
    }

    .hero-buttons .hero-buttons-item,
    .hero-buttons .hero-buttons-item:first-child {
        width: 225px;
        height: 225px;
        justify-self: center;
    }

    .hero-buttons .hero-buttons-item-image {
        width: 62px;
        height: 62px;
    }

    .hero-buttons .hero-buttons-item-title {
        padding-top: 18px;
        font-size: 24px;
        line-height: 31px;
    }

    .hero-buttons .hero-buttons-item-description {
        font-size: 14px;
        line-height: 24px;
    }
}

@media (max-width: 767px) {
    .hero {
        height: 700px;
        padding: 0 8px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 52px;
        padding-top: 28px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 24px;
    }

    .hero-buttons {
        grid-template-columns: 1fr;
        margin-top: -379px;
    }

    .help-center-section {
        padding: 12px 10px;
        font-size: 14px;
        line-height: 18px;
    }

    .help-center-section-name {
        background-size: 12px;
    }

    .help-center-section-articles-item {
        font-size: 14px;
        line-height: 18px;
        padding-top: 18px;
        padding-bottom: 6px;
    }

    .help-center-section-articles-item:first-child {
        padding-top: 18px;
    }
}
