/* Home page styles */

.hero {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
    padding: 32px 24px;
}

.hero--main {
    background-image: url(/assets/img/hp/banner.png);
}

.hero__title {
    margin: 8px 0;
    font-size: 36px;
}

.hero__text {
    color: var(--muted);
    max-width: 520px;
}

.hero__content img {
    width: 100%;
    max-width: 770px;
}

.hero__bottom {
    width: 100%;
    height: 50px;
    background: #144175;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__banner-descc {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: #fff;
    padding: 0px 20px;
}

.hero__banner-descc a {
    color: #fff;
    text-decoration: none;
}

.product-terms__note {
    color: var(--muted);
}
.section--info {
    background: transparent;
}

#about {
    background: #f5f6fb;
}

.about__info {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

.about-text {
    width: calc(50% - 24px);
    padding: 40px 50px 40px 40px;
    margin-right: 48px;
    background: #fff;
    border-radius: 15px;
}

.about-video {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(50% - 24px);
    border-radius: 15px;
}

.about-video-bg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    height: 80px;
    width: 80px;
    z-index: 2;
}

.about-video-play img {
    display: block;
    width: 100%;
}

.contacts-card {
    padding: 30px;
    background: #f5f6fb;
    border-radius: 16px;
}

.contacts__top {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

#contacts h2 {
    font-size: 28px;
    line-height: 120%;
    font-weight: 500;
    color: var(--title);
}

.contacts__bottom p {
    color: var(--title);
}

.product-terms__documents ul {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
}

.product-terms__documents li {
    margin-bottom: 20px;
}

.product-terms__title {
    font-size: 24px;
    font-weight: 500;
    color: var(--title);
    margin-bottom: 15px;
}

.product-terms--title {
    font-size: 28px;
    font-weight: 600;
    color: #2065e6;
    text-decoration: underline;
    padding: 20px 20px 0;
}

.product-terms--subtitle {
    color: #6e737d;
    padding: 0 20px;
    margin-bottom: 15px;
}

.product-terms--text {
    padding: 10px 20px;
    background: #fff;
}

.product-terms--text p {
    margin: 0 0 0 10px;
    color: var(--title);
}

.product-terms__note p {
    margin: 0;
    color: var(--title); 
}

@media (max-width: 1023px) {

    .about__info {
        flex-direction: column-reverse;
    }

    .about-text {
        width: 100%;
        margin: 0;
        border-radius: 0 0 15px 15px;
        margin-top: -15px;
    }

    .about-video {
        width: 100%;
    }
}

@media (max-width: 1023px) {
    .hero__bottom {
        flex-direction: column;
    }

    .hero__banner-descc {
        font-size: 14px;
        line-height: 18px;
        margin: 0;
        padding: 0 16px;
    }
}