@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&display=swap');

header+.product-hero .product-hero__inner {
    padding: 193px 0 158px;
}

.product-hero {
    font-family: "Epilogue", sans-serif;
    overflow: hidden;
    margin-bottom: 130px;
}

.product-hero .product-hero__inner {
    position: relative;
    z-index: 2;
    padding: 85px 0 158px;
}

.product-hero .product-hero__background {
    display: block;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-hero .product-hero__background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-hero .product-hero__wrapper {
    width: 100%;
    max-width: 1032px;
    padding: 0 20px;
    margin: 0 auto;
}

.product-hero .product-hero__content {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
}

.product-hero .product-hero__block {
    width: 100%;
    max-width: 532px;
    padding-top: 46px;
}

.product-hero .product-hero__content-title {
    font-weight: 700;
    line-height: 1.25;
    font-size: 50px;
    color: #FFFFFF;
}

.product-hero .product-hero__content-button {
    display: flex;
    justify-content: flex-start;
    margin-top: 25px;
    gap: 15px;
}

.product-hero .product-hero__content-button a,
.product-hero .product-hero__content-button button {
    font-family: 'Epilogue';
    font-weight: 700;
    line-height: 1;
    font-size: 18px;
    color: #22333B;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px 10px;
    min-width: 226px;
    min-height: 46px;
    background-color: #E6E24A;
}

.product-hero .product-hero__content-button a.play-btn {
    border: 2px solid #E6E24A;
    color: #E6E24A;
    background: rgba(255, 255, 255, 0);
}
.product-hero .product-hero__content-button a.play-btn:hover {
    background: #E6E24A;
    color: #22333B;
}
.product-hero .product-hero__text {
    width: 100%;
    max-width: 433px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #FFFFFF;
}

.product-hero .product-hero__text *:not(li, span, strong, a, b, i) {
    margin-bottom: 20px;
}

.product-hero .product-hero__text *:last-child {
    margin-bottom: 0;
}

.product-hero .product-hero__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-top: 87px;
}

.product-hero .product-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:991px) {
    header+.product-hero .product-hero__inner {
        padding: 120px 0 115px;
    }

    .product-hero {
        margin-bottom: 85px;
    }

    .product-hero .product-hero__inner {
        padding: 45px 0 115px;
    }

    .product-hero .product-hero__wrapper {
        max-width: 768px;
    }

    .product-hero .product-hero__content {
        justify-content: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .product-hero .product-hero__block {
        max-width: 100%;
        padding-top: 0px;
    }

    .product-hero .product-hero__content-title {
        font-size: 35px;
        text-align: center;
    }

    .product-hero .product-hero__content-button {
        justify-content: center;
        margin-top: 35px;
    }

    .product-hero .product-hero__text {
        max-width: 100%;
        font-weight: 400;
        text-align: center;
    }

    .product-hero .product-hero__image {
        margin-top: 50px;
        max-width: 370px;
    }

}

@media screen and (max-width: 600px) {
    .product-hero .product-hero__content-button {
        width: 100%;
    }
    .product-hero .product-hero__content-button a{
        min-width: 0;
        width: calc(50% - (15px / 2));
    }
}
.modal {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    padding: 1.5625vw;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, .6);
    overflow-y: auto;
    overscroll-behavior-y: contain;
    z-index: 999;
    visibility: hidden;
    -webkit-transition: visibility .4s, opacity .4s;
    transition: visibility .4s, opacity .4s;
    cursor: pointer;
    opacity: 0
}

.modal .modal-dialog {
    width: calc(100% - 1.5625vw);
    max-width: 60.9375vw;
    cursor: default;
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    position: relative;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0 auto
}

.modal.visible {
    visibility: visible;
    opacity: 1
}

.modal.visible .modal-dialog {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
    visibility: visible
}

.modal.video-modal .modal-dialog {
    width: auto;
    max-width: 49vw
}

@media screen and (max-width: 991px) {
    .modal.video-modal .modal-dialog {
        max-width: 90vw
    }
}

.modal.video-modal .modal-content {
    background: 0 0;
    padding: 0;
    width: 100%
}

.modal.video-modal .modal-video {
    width: 100%;
    position: relative
}

.modal.video-modal .modal-video::after {
    position: absolute;
    content: "";
    width: calc(100% + 3.125vw);
    height: calc(100% + 3.125vw);
    top: -1.5625vw;
    left: -1.5625vw;
    background-color: #fff;
    z-index: -1
}

.modal.video-modal .modal-video:before {
    content: "";
    display: block;
    padding-top: 56.25%
}

.modal.video-modal .modal-video iframe, .modal.video-modal .modal-video video {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    border: 0;
    -o-object-fit: cover;
    object-fit: cover
}

.modal.video-modal .modal-video.vimeo:before {
    padding-top: 52%
}

.modal .modal-content {
    background: #fff;
    position: relative;
    padding: 3.125vw 5.20833vw
}

.modal .modal-text {
    text-align: center
}

.modal.small .modal-dialog {
    max-width: 21.875vw
}

.modal.small .modal-content {
    padding: 2.08333vw 2.60417vw 2.60417vw
}

@media screen and (max-width: 575px) {
    .modal.small .modal-content {
        padding: 2.08333vw 1.5625vw 2.60417vw
    }
}

@media screen and (max-width: 1229px) {
    .modal .modal-content {
        padding: 2.08333vw 1.5625vw
    }
}

@media screen and (max-width: 575px) {
    .modal .modal-content {
        padding-left: 1.04167vw;
        padding-right: 1.04167vw
    }
}

.modal-close {
    position: absolute;
    right: 0;
    top: 0;
    width: 2.29167vw;
    height: 2.29167vw;
    opacity: 1;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: 0 0;
    border: 0;
    cursor: pointer
}

.modal-close:after, .modal-close:before {
    content: "";
    display: block;
    width: 1.04167vw;
    height: .10417vw;
    background: #000;
    position: absolute;
    left: calc(50% - .520835vw);
    top: calc(50% - .052085vw);
    -webkit-transition: all .3s;
    transition: all .3s;
    border-radius: .05208vw
}

.modal-close:before {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.modal-close:after {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.video-modal .modal-close {
    right: -1.82292vw;
    top: -1.77083vw;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none
}
.video-modal {
    z-index: 100000000;
}
.video-modal .modal-close:after, .video-modal .modal-close:before {
    background: #000
}

@media screen and (max-width: 970px) {
    .video-modal .modal-close {
        top: -2.08333vw;
        right: -.625vw
    }
}