.hero-main {
    max-width: 1134px;
    padding: 20px 15px 50px;
    margin: 0 auto;
}

.hero-main__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-main__content {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
    height: 100%;
}

.hero-main__content--right {
    max-width: 285px;
    margin-right: 41px;
}

.hero-main__content--left {
    padding-top: 34px;
}

.hero-main__list li {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 4px;
}

.hero-main__list ul {
    padding-left: 0;
    list-style: none;
}

.hero-main__button {
    background-color: #D70C0C;
    color: #FDFFFF;
    font-size: 24px;
    font-family: Inter, sans-serif;
    margin-top: 37px;
    display: inline-block;
    font-weight: 600;
    padding: 13px 100px;
    border-radius: 5px;
}

.hero-main__button:hover{
    color: #FDFFFF;
    opacity: .7;
}

body .hero-main__subtitle {
    color: #0A4B99;
    font-size: 20px;
    text-transform: uppercase;
    font-family: Inter, sans-serif;
    letter-spacing: .8px;
    padding-bottom: 23px;
}

.hero-main__title {
    line-height: 1.1;
}

.hero-main__text {
    font-size: 24px;
    font-family: Inter, sans-serif;
    color: rgba(0, 0, 0, .7);
    padding-left: 16px;
    letter-spacing: 0.01px;
}

.hero-main__list {
    padding-top: 21px;
}

.hero-main__bottom {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin-top: 44px;
    gap: 14px;
}

.hero-main__quote {
    max-width: 370px;
    font-size: 14px;
    font-family: Inter, sans-serif;
}

.hero-main__quote p {
    font-size: 14px;
    line-height: 1.3;
}

.hero-main__quote h6 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .046px;
}

.hero-main__video-title {
    background-color: #0A4B99;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 19px 11px;
    line-height: 1.4;
}

.hero-main__video {
    box-shadow: 0 4px 30px 20px rgba(10, 75, 153, 0.25);
    height: 608px;
    object-fit: cover;
}


.hero-main__video-wrapper {
    position: relative;
    width: 100%;
    max-width: 608px;
    height: 608px;
}

.hero-main__video {
    box-shadow: 0 4px 30px 20px rgba(10, 75, 153, 0.25);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-main__play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(10, 75, 153, 0.9);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 30px rgba(10, 75, 153, 0.5);
}

.hero-main__play-button:hover {
    background-color: rgba(10, 75, 153, 1);
}

.hero-main__play-button.hidden {
    display: none;
}

.hero-main__video::-webkit-media-controls {
    display: none !important;
}

.hero-main__video::-moz-media-controls {
    display: none !important;
}

.hero-main__video::media-controls {
    display: none !important;
}

body .hero-main__bottom-image {
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .hero-main__text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero-main__wrapper {
        flex-direction: column;
        align-items: center;
    }

    .hero-main__quote {
        max-width: 100%;
    }

    .hero-main__content--left {
        padding-top: 0;
    }

    .hero-main__button {
        font-size: 20px;
        padding: 13px 60px;
    }

    .hero-main__content--right {
        margin-right: 0;
    }
}
