:root {
    --text-color: #424242;
    --ci-color: #FF4444;
    --h-linie: rgba(5, 5, 5, .71);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Titillium Web", sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background: #F8F5F3;
    display: flex;
    justify-content: center;
}

.page-container {
    width: 100%;
    max-width: 2360px; /*  2360px */
    min-width: 363px;
    min-height: 703px;
    background-color: white;
}

/* Mobile menu */
.mobile-menu {
    position: fixed;
    right: 0;
    z-index: 2000;
    width: 393px;
    height: 852px;
    background-color: var(--ci-color);
    padding: 29px;
    display: none;
}

.mobile-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}


.mobile-head .logo {
    padding-left: 25px;
    text-align: left;
}

.mobile-head .close {
    padding-right: 25px;
    text-align: right;
}

.mobile-head svg {
    cursor: pointer;
}

menu {
    display: block;
    width: 100%;
    border-block: solid 2px white;
    padding: 30px 29px;
    margin-top: 35px;
}


menu li {
    text-align: right;
    list-style: none;
}

menu a {
    text-decoration: none;
    color: white;
    font-size: 25px;
    font-weight: bold;
    line-height: 70px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.mobile-foot {
    text-align: right;
    padding-block: 31px;
}

.mobile-menu .mobile-foot a {
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    font-size: 25px;
    line-height: 40px;
    font-weight: bold;
    display: block;
    cursor: pointer;
}

/* Hero Section */
.hero {
    /*            background: linear-gradient(135deg, #FF4444 0%, #FF6666 100%); */
    color: white;
    /*            padding: 80px 50px; */
    padding-block-start: 178px;
    padding-inline: 85px;
    position: relative;
    overflow: hidden;
    background-position: -113px top;
    max-height: 564px;
    min-height: 564px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    /*            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23ffffff" opacity="0.1" x="50" y="20" width="300" height="200"/><line stroke="%23ffffff" opacity="0.2" x1="50" y1="50" x2="350" y2="50"/><line stroke="%23ffffff" opacity="0.2" x1="50" y1="100" x2="350" y2="100"/></svg>') no-repeat center; */
    background-size: contain;
    opacity: 0.3;
}

.hero-content {
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.hero-content::before {
    content: '';
    position: absolute;

}

.hero-number {
    padding-inline: 50px;
    width: 100%;
    font-size: 120px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
    background-color: #FF4939;
}

.hero h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -1px;
    text-transform: uppercase;
}

/* Main Content */

.container {
    width: 100%;
    margin: 0 auto;
    padding-inline: 73px;
    background: white;

}

.section-flip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /*    gap: 60px; */
    /*    margin-bottom: 80px; */
    align-items: start;
    margin-top: 5px;
}

.first-flip {
    margin-top: 39px;
}

.section-flip:nth-child(odd) {
    grid-template-columns: 1fr 1fr;
}

.section-fip:nth-child(odd) .content {
    order: 2;
}

.section-flip:nth-child(odd) .image {
    order: 1;
}

.section-flip .content {
    background-color: #F2ECE9;
    height: 715px;
    padding: 95px;
}

.section-flip h2 {
    color: var(--text-color);
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    padding-block: 17px;
}

.section-flip p {
    color: var(--text-color);
    font-size: 20px;
    line-height: 30px;
}

.section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    /*    margin-bottom: 80px; */
    align-items: start;
    margin-top: 39px;
}

.section .image {
    height: auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section .image img {
    width: 100%;
    height: auto;
}

.section .placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 14px;
    border: 2px dashed #ccc;
}

.section .content {
    border-block-start: 2px solid #050505;
    border-bottom: 5px solid #050505;
    width: 100%;
    margin-top: 18px;
    padding-left: 5px;
}

.section .section-number {
    font-size: 48px;
    font-weight: bold;
    color: #FF4444;
    margin-bottom: 10px;
}

.section .content h2 {
    width: 100%;
    font-size: 20px;
    line-height: 37px;
    text-transform: uppercase;
    color: #353535;
    font-weight: 700;
    margin-top: -7px;
}


.section > .content p {
    color: #353535;
    font-size: 21px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 12px;
    height: 337px;
    width: 400px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 43px;
}

/* Fonts */
.titillium-web-extralight {
    font-family: "Titillium Web", sans-serif;
    font-weight: 200;
    font-style: normal;
}

.titillium-web-light {
    font-family: "Titillium Web", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.titillium-web-regular {
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.titillium-web-semibold {
    font-family: "Titillium Web", sans-serif;
    font-weight: 600;
    font-style: normal;
}

.titillium-web-bold {
    font-family: "Titillium Web", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.titillium-web-black {
    font-family: "Titillium Web", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.titillium-web-extralight-italic {
    font-family: "Titillium Web", sans-serif;
    font-weight: 200;
    font-style: italic;
}

.titillium-web-light-italic {
    font-family: "Titillium Web", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.titillium-web-regular-italic {
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.titillium-web-semibold-italic {
    font-family: "Titillium Web", sans-serif;
    font-weight: 600;
    font-style: italic;
}

.titillium-web-bold-italic {
    font-family: "Titillium Web", sans-serif;
    font-weight: 700;
    font-style: italic;
}

/* Responsive */
@media (max-width: 2361px) {
    /*
    .container {
        padding-inline: calc(100vw - 1526px) 40px;
    }
    .logos img:not(:first-of-type) {
        margin-left: 2%;
    }

     */
}

@media (max-width: 1600px) {
    .container {
        padding-inline: 14px;
    }

    .section {
        display: block;
    }

    .section:nth-child(even) .content,
    .section:nth-child(even) .image {
        order: initial;
    }
}

@media (max-width: 1060px) {
    /* Mobile start */
    .mobile-menu {
        display: block;
    }

    .hero {
        padding-left: 25px;
        padding-top: 25px;
        max-height: 396px;
        min-height: 396px;
    }

    .hero-content h1 {
        font-size: 22px;
        line-height: 22px;
    }

    .container {
        padding-inline: 14px;
    }

    .section {
        display: block;
        height: auto;
        margin-top: 0;
    }

    .section .content:last-child {
    }

    .section .content {
        border-block: 9px solid #050505;
        height: auto;
        margin-inline: 0;
        margin-block: 8px 18px;
        width: 100%;
    }

    .hero {
        padding: 50px 20px;
    }
}
