* {
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

section {
    padding: 80px;

}

section:nth-child(2n+1) {
    background: #d4ebff4d;
    width: 100%;
    height: auto;
    /* background: black; */
}

.container {
    max-width: 1352px;
    margin: 0 auto;
}

.flex {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.flex>div {
    width: calc(50% - 80px);
}

img {
    max-width: 100%;
}

h1 {
    font-size: 70px;
    line-height: 100%;
    margin: 0;
}

h2 {
    font-size: 50px;
    margin: 0;
    line-height: 100%;
    margin-bottom: 40px;
}

p {
    font-size: 24px;
    line-height: 150%;
    margin-bottom: 20px;
}

.text {
    padding: 40px;
    margin: 20px;
    box-shadow: 0 0 20px 10px #1e222e29;
    border-radius: 20px;
    background: white;
}

.header img {
    width: 96px;
}

section.header {
    padding: 20px;
}

.header .container.flex {
    align-items: center;
}

a {
    font-size: 20px;
    text-decoration: none;
    color: #1e222e;
    display: inline-block;
}

a:hover {
    color: #2335d7;
}

section.footer {
    background: #1e222e;
    padding: 20px;
}

.footer p,
.footer a {
    color: #c2c2c2;
    font-size: 20px;
}

.footer a:hover {
    color: #ffffff;
}

strong {
    margin: 20px 0 10px;
    display: block;
}

@media screen and (max-width: 1280px) {
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 24px;
    }
    p {
        font-size: 16px;
    }
}

@media screen and (max-width: 900px) {
    .flex {
        flex-direction: column;
        gap: 32px;
    }

    .flex>div {
        width: 100%;
    }
}