@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600&display=swap');

:root {
    --blue-deep: #00003c;
    --blue-deeper: #010125;
    --green: #00ffaa;
    --turquoise: #28f0f0;
    --purple: #b496ff;
    --pink: #ff8c96;
    --yellow: #ffd264;
}

body {
    color: #fff;
    font-family: 'Lexend', sans-serif;
    font-weight: 400;
    background: var(--blue-deeper) url('../images/background.svg') no-repeat center -150px/1698px;
    color: #000;
    padding: 0 0 100px 0;
}

header {
    min-height: 160px;
    padding: 0 120px;
    display: flex;
    align-items: center;
}

h1 {
    text-align: center;
    font-size: 225%;
    font-weight: 600;
    line-height: 1.3;
    padding-top: 436px;
    margin-bottom: 100px;
    color: #fff;
    font-weight: 400;
}
    h1 strong {
        font-weight: 500;
    }

h2 {
    font-size: 150%;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.2px;
    padding-top: 20px;
    margin-bottom: 22px;
}

h3 {
    font-weight: 500;
    margin-bottom: 3px;
}

p {
    line-height: 1.5;
    margin-bottom: 22px;
}

a {
    text-decoration: underline;
    color: var(--blue-deep)
}

a:hover {
    text-decoration: underline;
}

.logotype {
    width: 160px;
    height: 41px;
}

.preable {
    font-weight: 500;
}

.wrapper {
    max-width: 1520px;
    min-width: 320px;
    padding: 0 40px;
    margin: 0 auto;
}

.section {
    display: flex;
    background-color: #fff;
    border-radius: 20px;
    min-height: 150px;
    margin-bottom: 100px;
    overflow: hidden;
    flex-direction: row-reverse;
}

.n-section {
    flex-direction: row;
}

.section .text {
    padding: 50px 80px 50px 90px;
    flex: 1;
}

.section .image_wrapper {
    position: relative;
    width: 50%;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

.section img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    
}

.image_company img {
    object-fit: contain;
    padding-left: 10px;
}

footer {
    background-color: #fff;
    border-radius: 20px;
    padding: 50px 50px 50px 120px;
}

footer .logotype_footer {
    width: 160px;
    height: 41px;
    margin-bottom: 34px;
}

@media (max-width: 1600px) {
    .image_company img {
        object-fit: cover;
    }
}

@media (max-width: 1225px) {

    header {
        padding: 0 70px;
    }

    .section {
        margin-bottom: 60px;
    }

    .section .text,
    footer {
        padding: 40px 60px 40px 70px;
    }

    .section .image_wrapper {
        width: 30%;
    }

    .section img {
        object-fit: cover;
    }

    .image_company img {
        object-fit: cover;
    }
}

@media (max-width: 900px) {
    h1 {
        margin-bottom: 60px;
    }

    .wrapper {
        padding: 0 10px;
    }

    .section,
    .section:first-of-type,
    .section:last-of-type {
        flex-direction: column;
    }

    .section .image_wrapper {
        width: 100%;
        height: 400px;
    }

    .section img {
        object-position: center -200px;
    }

    .image_company img {
        object-fit: cover;
    }
}

@media (max-width: 600px) {
    body {
        background: var(--blue-deep) url('/images/background.svg') no-repeat center -145px/1600px;
    }

    h1 {
        padding-top: 335px;
        font-size: 187.5%;
    }

    header {
        padding: 0 20px;
    }

    .section .text,
    footer {
        padding: 30px 30px 30px 40px;
    }

    .section img {
        object-position: center;
    }

    .image_company img {
        object-fit: cover;
    }
}