@font-face {
	font-family: 'DEC Terminal Modern';
	src: url('../fonts/dec_terminal_modern.eot'); /* IE 9 Compatibility Mode */
	src: url('../fonts/dec_terminal_modern.eot?#iefix') format('embedded-opentype'), /* IE < 9 */
		url('../fonts/dec_terminal_modern.woff2') format('woff2'), /* Super Modern Browsers */
		url('../fonts/dec_terminal_modern.woff') format('woff'), /* Firefox >= 3.6, any other modern browser */
		url('../fonts/dec_terminal_modern.ttf') format('truetype'), /* Safari, Android, iOS */
		url('../fonts/2ka15q3k_1.svg#dec_terminal_modern') format('svg'); /* Chrome < 4, Legacy iOS */
}

:root {
    --font-main: "DEC Terminal Modern", sans-serif;
    --max-width: 1920px;
    --background: #F4FFF0;
    --head-foot: #1D6657;
    --bg2: #3DC596;
    --bg3: #FFE4B9;
    --bg4: linear-gradient(90deg, #1E8A6B 0%, #1EAF67 50%, #254E06 100%);
    --between-block: #FFAF1A;
    --card1: #E5AC0D;
    --card2: #AECBF5;
    --card3: #09B4A6;
    --text1: #FF6200;
    --text2: #21344E;
    --text3: #2C4030;
    --text4: #1E8A25;
    --text5: #D77D00;
    --text6: #19454A;
    --link: #19454A;
    --button1: #FF5151;
    --button1-hover: #C53A3A;
    --button2: #00BCC3;
    --button2-hover: #00888D;
    --button3: #3A4C66;
    --button3-hover: #273343;
    
    
    --bcg1: url("../img/background_1.png");
    --bcg2: url("../img/background_2.png");
    --bcg3: url("../img/background_3.png");
    --bcg4: url("../img/background_4.png");
    --bcg5: url("../img/background_5.png");
}

html {
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    font-family: var(--font-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
}

a {
    text-decoration: none;
    color: var(--text);
}

body {
    display: flex;
    max-width: 1920px;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;

    box-sizing: border-box;
    background: var(--background);
    color: var(--background);
    margin: 0;
}

section {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: flex-start;
    padding: 80px 15%;

    @media (max-width: 1550px) {
        padding: 80px 5%;
    }

    @media (max-width: 700px) {
        padding: 80px 15px 80px 15px;
    }
}

img {
    display: inline-block;
}

h1 {
    font-weight: 400;
    font-size: 46px;
    line-height: 120%;
}

h2 {
    font-weight: 400;
    font-size: 34px;
    line-height: 120%;
    width: 100%;
    text-align: center;
}

h3 {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    text-transform: uppercase;
}

h4 {
    font-weight: 400;
    font-size: 20px;
}

h5 {
    font-weight: 400;
    font-size: 18px;
}

p {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    margin-bottom: 0;
}

.xbgpw54 {
    font-weight: 400;
    font-size: 14px;
}

footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 40px 15%;
    text-align: center;
    background-color: var(--head-foot);

    @media (max-width: 1550px) {
        padding: 40px 5%;
    }

    @media (max-width: 700px) {
        padding: 40px 15px;
    }
}

button {
    color: var(--text);
}

ol {
    margin-bottom: 30px;
}

ul:where(:not([class])) {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 20px;
}

header {
    display: flex;
    padding: 10px 15%;
    align-items: center;
    justify-content: space-between;
    background-color: var(--head-foot);
    width: 100%;

    @media (max-width: 1550px) {
        padding: 10px 5%;
    }

    @media (max-width: 700px) {
        padding: 10px 15px;
    }
}

nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;

    @media (max-width: 900px) {
        display: none;
    }
}

.xvcf11 {
    display: none;

    @media (max-width: 900px) {
        display: block;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }
}

.x5rci2 {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--head-foot);
    z-index: 1000;
    flex-direction: column;
    padding: 10px 16px;
    gap: 40px;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.x5rci2.active {
    opacity: 1;
    visibility: visible;
}

.x5rci2__header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.x5rci2__nav {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.x5rci2__nav a {
    color: var(--background);
    font-size: 18px;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.x5rci2__nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.xtq205 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background: var(--bg4);
}

.xfpln6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 9px;
}

.x0p1047 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    background-color: var(--button1);
    border-radius: 4px;
    font-size: 18px;
    font-weight: 400;
    height: 52px;
}

.x0p1047:hover {
    background-color: var(--button1-hover);
}

.xe4307 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background-color: #F3F3F3;

    h2 {
        color: var(--text2);
    }
}

.xynjn8 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;

    @media (max-width: 1400px) {
        flex-direction: column;
    }
}

.xqbi29 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.xqbi29:nth-child(2) .xqbi29__header {
    background-color: var(--card2);
}

.xqbi29:nth-child(2) .xqbi29__content {
    background-color: white;
}

.xqbi29:nth-child(3) .xqbi29__header {
    background-color: var(--card3);
}

.xqbi29:nth-child(3) .xqbi29__content {
    background-color: white;
}

.xqbi29__header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 60px;
    background-color: var(--card1);
    position: relative;
    border-radius: 10px 10px 0 0;
    color: var(--text2);
}

.x1r1p11 {
    width: 90px;
    height: 90px;
    position: absolute;
    top: -45px;
    right: -16px;
}

.xqbi29__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background-color: #FACC1533;
    width: 100%;
    border-radius: 0 0 10px 10px;
}

.xqbi29__features {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
    flex-wrap: wrap;

    @media (max-width: 700px) {
        flex-direction: column;
        align-items: center;
    }
}

.xqbi29__feature {
    font-size: 14px;
    padding-left: 25px;
    background-image: url("../img/i5esm3i6_10.svg");
    background-repeat: no-repeat;
    background-position: left center;
    color: var(--text3);
}

.xqbi29__logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.xqbi29__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    font-weight: 500;
    font-size: 20px;
    color: var(--text1);
}

.xqbi29__bonus {
    font-size: 18px;
    color: var(--text4);
    text-align: center;
}

.xqbi29__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    width: 100%;
    background-color: var(--button2);
    border-radius: 4px;
    font-size: 20px;
    font-weight: 400;
    height: 52px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.xqbi29__btn:hover {
    background-color: var(--button2-hover);
}

.xvrzu48 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    background-color: var(--bg2);
    color: var(--text4);
}

.xocdp49 {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    width: 100%;

    @media (max-width: 700px) {
        flex-direction: column;
    }
}

.xg14a50 {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    background-color: var(--background);
}

.xg14a50__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.xg14a50__text {
    font-size: 16px;
    line-height: 20px;
    color: var(--text3);
}

.x8bs120 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 23px;
    width: 100%;
    padding: 40px 15px;
    background-color: var(--bg3);
    color: var(--text5);
    border-top: 1px solid var(--between-block);
}

.x8bs120__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.x8bs120__links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.xjyxd28 {
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.x7tq227 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;

    @media (max-width: 700px) {
        flex-wrap: wrap;
    }
}

.x0du823 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    @media (max-width: 700px) {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;

        .xsh7w24 {
            grid-column: 1 / 3;
            align-items: center;
            justify-content: center;
        }
    }
}

.xl7yo26 {
    list-style: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.xe3ox25 {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

/* Модальные окна */
.x27t129 {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.x27t129.active {
    opacity: 1;
    visibility: visible;
}

.x27t129__content {
    background-color: var(--head-foot);
    color: var(--background);
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.x27t129.active .x27t129__content {
    transform: scale(1);
}

.x27t129__header {
    margin-bottom: 20px;
    text-align: center;
}

.x27t129__header h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.x27t129__body {
    margin-bottom: 25px;
}

.x27t129__body p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.x27t129__footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.x27t129__btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.x27t129__btn--primary {
    background-color: var(--button1);
    color: var(--background);
}

.x27t129__btn--primary:hover {
    background-color: var(--button1-hover);
}

.x27t129__btn--secondary {
    background-color: var(--button3);
    color: var(--background);
}

.x27t129__btn--secondary:hover {
    background-color: var(--button3-hover);
}

.x27t129__link {
    color: var(--text1);
    text-decoration: underline;
    font-size: 14px;
    margin-top: 10px;
}

.x27t129__link:hover {
    color: var(--text6);
}

@media (max-width: 600px) {
    .x27t129__content {
        padding: 20px;
        margin: 20px;
    }
    
    .x27t129__header h3 {
        font-size: 20px;
    }
    
    .x27t129__body p {
        font-size: 14px;
    }
    
    .x27t129__btn {
        min-width: 180px;
        padding: 10px 20px;
        font-size: 14px;
    }
}

.xez5j53 {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: start;
    gap: 10px;
}

.x4bqu46 {
    background-color: #E9912D1A;
    padding: 14px 0 14px 20px;
    border-left: 3px solid var(--text6);
    color: var(--text6);
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    width: 100%;
    margin-top: 30px;
}

.x6hwp38 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: start;
    justify-content: center;
    gap: 60px;
    width: 100%;
    color: var(--text3);
    background-color: #F3F3F3;

    @media (max-width: 700px) {
        grid-template-columns: 1fr;
    }
}

.x1hx140 {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

.xlxnb39 {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 2px;
    width: 100%;
    margin-top: 20px;
}

.x0a1u41 {
    background-color: var(--head-foot);
    padding: 20px;
    border-radius: 10px;
    color: var(--background);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    width: 100%;
}

.x0a1u41-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.xnxl543 {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

input {
    width: 100%;
    padding: 13px 20px;
    margin-top: 4px;
}

.xnxl543-submit {
    color: var(--background);
    border: none;
}

.x8nqm44 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;

    @media (max-width: 700px) {
        grid-template-columns: 1fr;
    }
}

.x2r7r45 {
    background-color: var(--background);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    color: var(--text3);
    gap: 20px;

    h5 {
        padding-bottom: 20px;
        border-bottom: 1px solid var(--text3);
        color: var(--text4);
        width: 100%;
    }
}