@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;500;600;700&display=swap');

/* varibles */

:root {
    --ff-noto-sans: 'Noto Sans', sans-serif;

    --color-white: #fff;
    --color-black: #222222;
    --color-green: #324B4E;
    --color-l-grey: #F4F5F9;
    --color-beige: #f0e362;
    --color-purple: #AD8DF8;
    --color-d-purple: #130d19;
    --color-h-gold: #ffbf00;


}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: var(--color-white);
    min-width: 320px;
    background-image: url(../img/SSC_Hero_04.png), linear-gradient(156.19deg, #0e0f13 3.2%, #360448 112.25%);
    background-repeat: no-repeat;
    background-position: right 0 top 16%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.btn {
    border: none;
    background: transparent;
    cursor: pointer;

}

.container {
    max-width: 1240px;
    margin: 0 auto;
}

.header {
    padding: 23px 0;

}

.header__wrapper {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.header-block {
    display: flex;
    gap: 20px;
}

.header-btn {
    background: var(--color-beige);
    border-radius: 6px;
    padding: 14px 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0.2px;
    color: var(--color-black);
}

.header-btn:first-child {
    width: 115px;
}

.header-btn:last-child {
    width: 225px;
}

.hero {
    max-width: 100%;
    padding: 30px 0 50px 0;

}

.hero-img {
    display: flex;
    justify-content: center;
}

.hero-img img {
    filter: drop-shadow(30px 50px 80px rgba(173, 172, 252, 0.2));
    border-radius: 30px;
}

.hero h1 {
    max-width: 1240px;
    margin: 50px auto 0px;
}


.hero-list li a {
    font-weight: 500;
    font-size: 20px;
    line-height: 40px;
    color: var(--color-white);
}


.link-color {
    color: var(--color-beige);
    text-decoration: underline;
}


h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 64px;
    text-align: left;
    text-transform: uppercase;
    color: var(--color-h-gold);
    word-wrap: break-word;
    margin: 50px 0;
    text-align: center;

}

h2 {
    font-weight: 700;
    font-size: 44px;
    line-height: 34px;
    text-align: left;
    color: var(--color-beige);
    margin: 40px 0 40px;
    text-align: center;
}

h3 {
    font-weight: 700;
    font-size: 32px;
    line-height: 34px;
    text-align: left;
    color: var(--color-beige);
    margin: 40px 0 40px;
    text-align: center;
}

p {
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    color: var(--color-white);
    text-indent: 20px;
    margin-bottom: 20px;
}

.content {
    padding: 0 0 30px 0;

}

.content ul {
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    color: var(--color-white);
    margin: 30px 0 30px 80px;
    list-style-type: circle;
}

.content ol {
    font-weight: 400;
    font-size: 18px;
    line-height: 34px;
    color: var(--color-white);
    margin: 30px 0 30px 80px;
    list-style-type: decimal;
}

.content img {
    display: block;
    margin: 30px auto;
    filter: drop-shadow(30px 50px 80px rgba(173, 172, 252, 0.2));
    border-radius: 30px;
}

/* table */

table {
    width: 100%;
    margin-top: 50px;
}

table tbody {
    display: flex;
    flex-direction: column;
    border-collapse: collapse;
    width: 100%;
}

.rou {
    display: grid;
    gap: 30px;
    align-items: center;
}

.four-colums {
    grid-template: auto/repeat(4, 1fr);
    color: var(--color-white);
    padding: 20px;
    border-top: 1px solid var(--color-white);
}

.four-colums:last-child {
    border-bottom: 1px solid var(--color-white);
}

.three-colums {
    grid-template: auto/repeat(3, 1fr);
    color: var(--color-white);
    padding: 20px;
    border-top: 1px solid var(--color-white);

}

.two-colums {
    grid-template: auto/repeat(2, 1fr);
    color: var(--color-white);
    padding: 20px;
    border-top: 1px solid var(--color-white);
}

.three-colums:last-child {
    border-bottom: 1px solid var(--color-white);
}

.two-colums:last-child {
    border-bottom: 1px solid var(--color-white);
}

.number {
    justify-self: center;
}

.textEnd {
    justify-self: flex-end;
    text-align: right;
}

/*  footer */

footer {
    background-color: transparent;
    padding: 46px 10px;
    display: flex;
    justify-content: center;
}

.footer_copyright {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: var(--color-beige);
    margin-bottom: 0;
    text-indent: 0;
    text-align: center;
}

@media(max-width:1200px) {

    body {
        background: var(--color-d-purple);
    }

    .header {
        padding: 28px 10px;
    }

    .hero {
        padding: 30px 14px 40px 14px;
    }

    .content {
        padding: 0 14px 40px 14px;

    }

    h1 {
        color: var(--color-white);
    }

    .hero-list li a {
        color: var(--color-white);
    }

    .footer_copyright {
        color: var(--color-beige);
    }
}

@media(max-width:850px) {

    h1 {
        font-weight: 600;
        font-size: 38px;
        line-height: 65px;
    }

    h2 {
        font-size: 34px;
        line-height: 26px;
        margin: 30px 0;
    }

    h3 {
        font-size: 30px;
        line-height: 26px;
        margin: 30px 0;
    }
}

@media(max-width:768px) {

    .hero h1 {
        margin: 40px 0 0px;
    }

    h1 {
        font-size: 32px;
        line-height: 50px;
    }

    h2 {
        font-size: 30px;
        line-height: 26px;
        margin: 30px 0;
    }

    h3 {
        font-size: 28px;
        line-height: 26px;
        margin: 30px 0;
    }


}

@media(max-width:590px) {


    .content {
        padding: 0 14px 50px 14px;
    }

    h1 {
        text-align: center;
    }

    .content ol,
    .content ul {
        margin: 30px 0 30px 20px;
    }



    .four-colums {
        padding: 20px 0 0;
        grid-template: min-content 1px min-content/repeat(2, 1fr);
        gap: 40px 0;
    }

    .four-colums .tx-right {
        justify-self: right;
    }

    .four-colums .tx-left {
        justify-self: left;
    }

    .three-colums {
        padding: 20px 0;
    }

    .two-colums {
        padding: 20px 0;
    }

    footer {
        padding: 40px 10px;
    }

}


@media(max-width:450px) {

    .header__wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .header-block {
        flex-direction: column;
        align-items: center;
    }

    .header-btn:first-child {
        width: 250px;
    }

    .header-btn:last-child {
        width: 250px;
    }

    .hero {
        padding: 0 14px 30px 14px;
    }

    .content {
        padding: 0 14px 50px 14px;

    }

    table {
        font-size: 14px;
        line-height: 20px;
    }
}

@media(max-width:380px) {
    .content {
        padding: 0 9px 50px 9px;

    }

    table {
        font-size: 12px;
        line-height: 20px;
    }
}