:root {
    --font-family-title: "DM Serif Display", serif;
    --font-family-txt: "DM Sans", sans-serif;
    --primary-color: #ffffff;
}

body {
    background-color: #060706;
}

.wrapper {
    overflow: hidden;
}

.container {
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    padding: 46px 0;
}

.primary-btn {
    display: inline-block;
    font-family: var(--font-family-txt);
    font-size: 36px;
    background-color: #be1c16;
    color: var(--primary-color);
    border-radius: 36px;
    padding: 12px 96px;
    cursor: pointer;
    border: none;
}

.section-title {
    color: var(--primary-color);
    font-family: var(--font-family-title);
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
}

/* header */

.header {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100vh;
    color: var(--primary-color);
    padding: 30px 0;
}

.header__txt-wrapper {
    padding: 22px 48px;
}

.header__title {
    position: relative;
    font-family: var(--font-family-title);
    font-weight: 400;
    font-size: 182px;
    text-transform: uppercase;
}

.header__title::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "Triumph awaits";
    color: var(--primary-color);
    font-family: var(--font-family-title);
    font-weight: 400;
    font-size: 182px;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    filter: blur(10px);
}

.header__title_back {
    position: absolute;
    filter: blur(10px);
}

.header__subtitle {
    max-width: 550px;
    font-family: var(--font-family-txt);
    font-size: 48px;
    font-weight: 500;
    line-height: 62px;
}

.header__img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    // max-width: 1536px;
    pointer-events: none;
}

.header .primary-btn {
    z-index: 1;
}

/* about */

.about {
    background: radial-gradient(82.37% 50% at 50% 50%, #be1c16 0%, #5a0b11 100%);
    color: var(--primary-color);
}

.faq {
    background: radial-gradient(82.37% 50% at 50% 50%, #be1c16 0%, #5a0b11 100%);
    color: var(--primary-color);
}

.about .container {
    max-width: 1024px;
    text-align: center;
}

.about__title {
    text-align: center;
    margin-bottom: 30px;
}

.about__img {
    margin-bottom: 40px;
}

.about__subtitle {
    font-size: 36px;
    font-family: var(--font-family-txt);
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
}

.about__txt {
    font-family: var(--font-family-txt);
    font-size: 20px;
    font-weight: 250;
    line-height: 26px;
    margin-bottom: 35px;
    margin: 0 auto 35px auto;
}

.about__btn {
    margin: 0 auto;
    background: none;
    font-size: 36px;
    line-height: 46px;
    font-family: var(--font-family-txt);
    padding: 16px 127px;
    border: 1px solid #ffffff;
    color: var(--primary-color);
}

/* calendar */

.calendar {
    padding: 0 30px;
}

.calendar .container {
    max-width: 1090px;
    color: var(--primary-color);
}

.calendar__subtitle {
    font-family: var(--font-family-txt);
    font-weight: 500;
    font-size: 36px;
    margin-top: 35px;
    margin-bottom: 72px;
}

.calendar__list-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border: 1px solid #ffffff;
    margin-bottom: 30px;
}

.calendar__list-item .primary-btn {
    padding: 7px 60px;
    font-size: 28px;
}

.calendar__list-item__img {
    max-width: 280px;
}

.calendar__list-item__part {
    width: 100%;
}

.calendar__list-item__title {
    font-size: 28px;
    font-weight: 500;
    font-family: var(--font-family-txt);
    margin-bottom: 10px;
}

.calendar__list-item__date {
    font-size: 18px;
    font-weight: 250;
    font-family: var(--font-family-txt);
    margin-bottom: 10px;
}

.calendar__list-item__actions {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.calendar__list-item__icons-block {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.calendar__list-item__icon-wrapper {
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.calendar__list-item__icon {
    width: 31px;
    height: 31px;
}

.calendar__list-item__icon-txt {
    text-align: center;
    font-weight: 250;
    font-size: 12px;
    font-family: var(--font-family-txt);
}

/* contact */
.contact {
    position: relative;
}

.contact .section-title {
    position: relative;
    font-size: 80px;
}
.contact .section-title::before {
    content: "Get Online Access";
    position: absolute;
    top: 0;
    left: 0;
    font-size: 80px;
    color: var(--primary-color);
    font-family: var(--font-family-title);
    font-size: 80px;
    font-weight: 400;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    filter: blur(10px);
}

.contact__img {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.contact-block {
    color: var(--primary-color);
    padding: 0 125px;
    font-family: var(--font-family-txt);
}

.contact__subtitle {
    font-weight: 500;
    font-size: 36px;
    margin-bottom: 16px;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact__form .primary-btn {
    max-width: 450px;
    width: 100%;
    height: 50px;
    padding: unset;
    font-size: 28px;
}

.contact__form-part {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.contact__form-input-wrapper {
    display: flex;
    flex-direction: column;
    width: 450px;
}

.contact__form-label {
    font-family: var(--font-family-txt);
    font-weight: 500;
    font-size: 24px;
    margin-left: 10px;
}

.contact__form-input {
    background: transparent;
    border: 1px solid #ffffff;
    padding: 11px 10px;
    border-radius: 5px;
    color: var(--primary-color);
    font-size: 20px;
}

.contact__form-select option {
    background: black;
}

.contact__list {
    padding: 20px 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-family: var(--font-family-txt);
    font-size: 36px;
}

.contact__list-item {
    width: 49%;
    list-style-type: disc;
}

/* footer */

.footer {
    color: var(--primary-color);
    background-image: url("2406122e_footer_bg.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    font-family: var(--font-family-txt);
}

.footer-container {
    padding: 0 30px;
    background: #000000e5;
}

.footer__txt {
    font-weight: 500;
    text-align: justify;
}

.footer__list {
    text-align: center;
    display: flex;
    gap: 40px;
    padding: 30px;
    justify-content: center;
    align-items: center;
}

.footer__list-item a {
   
    text-decoration: underline;
}

@media (max-width: 995px) {
    .header__txt-wrapper {
        padding: 0;
    }
    .header__title {
        text-align: center;
        font-size: 120px;
        line-height: 120px;
        margin-bottom: 20px;
    }

    .header__title::before {
        font-size: 120px;
        line-height: 120px;
    }

    .header__subtitle {
        text-align: center;
        margin: 0 auto;
        font-size: 30px;
        line-height: 40px;
    }

    .about__btn {
        width: 90%;
        padding: 16px 0;
    }

    .about__title,
    .about__txt {
        padding: 0 12px;
    }
    .contact__subtitle {
        text-align: center;
    }

    .contact__form {
        flex-direction: column;
    }

    .contact__form-part {
        flex-direction: column;
        align-items: center;
    }

    .contact__form .primary-btn {
        margin-top: 40px;
        max-width: 230px;
    }

    .contact__list-item {
        width: 100%;
    }
}

@media (max-width: 765px) {
    .header {
        padding: 30px;
    }
    .header__img {
        width: 150%;
    }
    .header__title {
        font-size: 80px;
        line-height: 80px;
    }
    .header__title::before {
        font-size: 80px;
        line-height: 80px;
    }
    .section-title {
        font-size: 32px;
    }
    .calendar__subtitle {
        font-size: 24px;
    }
    .calendar__list-item {
        flex-direction: column;
        align-items: center;
    }

    .calendar__list-item__part {
        text-align: center;
    }

    .calendar__list-item__actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .calendar__list-item__icons-block {
        width: fit-content;
    }

    .contact .section-title {
        font-size: 50px;
        text-align: center;
        margin-bottom: 20px;
    }

    .contact-block {
        padding: 0 50px;
    }

    .contact .section-title::before {
        font-size: 50px;
        text-align: center;
    }

    .contact__subtitle {
        font-size: 20px;
    }

    .contact__list {
        font-size: 20px;
    }

    .contact__form-input-wrapper {
        width: 90%;
    }

    .footer__list {
        flex-direction: column;
    }
}

@media (max-width: 595px) {
    .primary-btn {
        text-align: center;
        width: 100%;
        padding: 12px 0;
    }
    .header__img {
        width: 200%;
    }
    .contact-block {
        padding: 0 30px;
    }
    .contact__form-input-wrapper {
        width: 100%;
    }
}

/* modals */

.wrapper-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.wrapper-modal.show {
    display: block;
}

.wrapper-modal.show {
    display: block;
}

.modal {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 750px;
    max-height: 500px;
    width: 100%;
    height: 100%;
    background-image: url("a16b72ac_popup_bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    border-radius: var(--border-radius);
}

.modal_1.show {
    display: block;
}

.modal_2.show {
    display: block;
}

.modal_3.show {
    display: block;
}

.modal_4.show {
    display: block;
}

.modal_5.show {
    display: block;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    transition: transform 0.3s;
    cursor: pointer;
}

.modal-close:hover {
    transform: scale(1.1);
}

.modal-containter {
    height: 100%;
    padding: 50px 60px 20px 60px;
    background-color: rgba(241, 237, 238, 80%);
    color: #5a0b11;
    font-family: var(--font-family-txt);
}

.modal-content__title {
    position: relative;
    font-family: "Roboto", sans-serif;
    font-size: 32px;
    line-height: 28px;
    font-weight: 700;
    text-align: center;
    padding: 10px 0;
}

.modal-content__subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 16px;
    margin: 7px 0;
}

.modal-content__txt {
    font-weight: 300;
    text-align: justify;
    font-size: 12px;
}

.modal-content__txt-wrapper {
    margin-top: 15px;
    overflow-y: scroll;
    height: 340px;
    scrollbar-width: thin;
    scrollbar-color: #BE1C16 #E8E8E8;
}
.modal-content__txt-wrapper::-webkit-scrollbar {
    width: 15px;
}
.modal-content__txt-wrapper::-webkit-scrollbar-track {
    background: #E8E8E8;
}
.modal-content__txt-wrapper::-webkit-scrollbar-thumb {
    background-color: #BE1C16;
    border-radius: 20px;
    border: 3px solid #BE1C16;
}

.modal-content__txt-container {
    padding: 16px;
}

@media screen and (max-width: 595px) {
    .modal-containter {
        padding: 40px;
    }

    .modal-close {
        width: 30px;
        height: 30px;
    }

    .modal-content__txt-wrapper {
        height: 350px;
    }
}
/* --- injected clearfix (WaybackScraper) --- */
.clearfix::after{content:"";display:table;clear:both}
.clearfix{display:block}
