@font-face {
    font-family: 'Gilroy';
    src: url('/assets/fonts/Gilroy-Bold.ttf') format('ttf'), url('/assets/fonts/Gilroy-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('/assets/fonts/Gilroy-SemiBold.ttf') format('ttf'), url('/assets/fonts/Gilroy-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('/assets/fonts/Gilroy-Medium.ttf') format('ttf'), url('/assets/fonts/Gilroy-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Gilroy';
    src: url('/assets/fonts/Gilroy-Regular.ttf') format('ttf'), url('/assets/fonts/Gilroy-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
.page {
    overflow-x: hidden !important;
}
body {
    background: #080707;
    margin: 0;
    position: relative;
}
.container {
    max-width: 1476px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}
*,
*:after,
*:before {
	box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6 {
	margin: 0;
}
/* modal */
.modal {
    display: none;
}
.modal.show {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    width: 100%;
    height: 100vh;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    -webkit-backdrop-filter: blur(45px);
    backdrop-filter: blur(45px);
}
.modal .title {
    font-family: var(--font-gilr);
    font-style: normal;
    font-weight: 500;
    font-size: 36px;
    line-height: 42px;
    color: #FFFFFF;
}
.modal form {
    padding-top: 70px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    max-width: 800px;
}
.modal form button {
    cursor: pointer;
    width: 100%;
    max-width: 187px;
    height: 56px;
    background: rgba(235, 28, 35, 0.15);
    border: 1px solid #EB1C23;
    border-radius: 6px;
    text-align: center;
    font-family: var(--font-gilr);
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
    color: #FFFFFF;
}
:root {
    --font-gilr: 'Gilroy';
}
@media (max-width: 1440px) {
    .container {
        max-width: 760px;
    }
    /* modal */
    .modal .title {
        font-size: 19px;
        line-height: 22px;
    }
    .modal form button {
        max-width: 100px;
        height: 30px;
        font-size: 13px;
        line-height: 15px;
    }
    .modal form {
        max-width: 500px;
        padding-top: 30px;
    }
}
@media (max-width: 768px) {
    .container {
        max-width: 400px;
    }
    /* modal */ 
    .modal .title {
        font-size: 24px;
        line-height: 28px;
    }
    .modal form {
        padding-top: 20px;
        flex-direction: column;
        width: 100%;
        max-width: 238px;
    }
    .modal form button {
        margin-top: 25px;
        max-width: 154px;
        height: 47px;
        font-size: 16px;
        line-height: 19px;
    }
}