body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 400;

    margin: 0;
}

p {
    margin: 0;
}

/*#0f111d*/

.content-container {
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

header {
    background-color: #080a1b;
    position: sticky;
    top: 0;
    z-index: 10;
}

header .content-container {
    padding: 0;
}

.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px;
    position: relative;
}

.logotype {
    font-weight: 700;
    font-size: 48px;
    color: #fff;
    text-decoration: none;

    display: inline-flex;
}

.logotype img {
    width: 82px;
    height: auto;
}

nav {
    display: flex;
    align-items: center;
}

.nav-link {
    font-weight: 400;
    font-size: 24px;
    color: #fff;
    text-decoration: none;

    padding: 12px 16px;
    margin: 0 4px;
}

.nav-link.active,
.menu-button.active {
    background-color: #1b1d29;
    box-shadow: 0 0 0 1px #656A83;
    border-radius: 16px;
}

.menu-button {
    display: none;
    background-color: transparent;

    font-weight: 400;
    font-size: 24px;
    color: #fff;

    padding: 12px 16px;
    border: none;
}

.start-section {
    background-color: #080a1b;
}

.start-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 100px 0;
}

.start-information {
    max-width: 530px;
    width: 100%;
}

h1 {
    font-weight: 700;
    font-size: 48px;
    color: #fff;
    margin: 0;
    padding-bottom: 24px;
}

.start-information p {
    color: #fff;
}

.large-image-wrapper {
    max-width: 440px;
    width: 100%;
    height: auto;
    border-radius: 40px;
    overflow: hidden;
}

.large-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-section {
    padding-top: 42px;
    padding-bottom: 58px;
}

.section-title {
    font-weight: 700;
    font-size: 64px;
    color: #000;

    margin: 0;
}

.about-section .section-title {
    padding-bottom: 24px;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-us-information {
    max-width: 530px;
    width: 100%;
}

.about-us-information h1,
.about-us-information p {
    color: #000;
}

.partners-section {
    background-color: #43475C;
    padding-top: 42px;
}

.partners-section .section-title {
    color: #fff;
    text-align: center;
    padding-bottom: 84px;
}

.partners-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.partner {
    margin: 0 25px;
    padding-bottom: 80px;
}

.partner-image {
    background-color: #F2F2F2;

    display: flex;
    align-items: center;
    justify-content: space-around;

    width: 160px;
    height: 160px;

    border-radius: 50%;
    overflow: hidden;
}

.fanatic {
    background-color: #fff;
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.partner p {
    font-size: 32px;
    color: #fff;
    text-align: center;
    padding-top: 20px;
}

.contacts-section {
    background-color: #F3F4F8;
    padding-top: 42px;
    padding-bottom: 135px;
}

.contacts-section .section-title {
    padding-bottom: 16px;
}

.contacts-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contacts-detail {
    max-width: 440px;
}

.map-container {
    border-radius: 40px;
    overflow: hidden;
}

.map-container iframe {
    width: 530px;
    height: 530px;
}

.contacts-content p {
    font-size: 32px;
    color: #000;
    padding-bottom: 12px;
}

.contacts-content p span {
    font-weight: 700;
}

footer {
    background-color: #3B3F56;
    color: #fff;
    text-align: center;
    padding: 26px 0;
}

@media screen and (max-width: 1160px) {
    .menu-button {
        display: block;
    }

    .navigation nav {
        display: none;

        position: absolute;
        left: 0;
        right: 0;
        top: 100%;

        flex-direction: column;
        justify-content: center;
        padding-bottom: 16px;

        background-color: #3B3F56;
    }
}

.mail-link {
    color: #000;
    text-decoration: none;
}

@media screen and (max-width: 1160px) {
    .navigation.responsive nav {
        display: flex;
    }

    .start-content {
        flex-direction: column;
        align-items: center;
    }

    .start-information {
        text-align: center;
        padding-top: 40px;
        order: 2;
    }

    .start-content .large-image-wrapper {
        order: 1;
    }

    .about-content {
        flex-direction: column;
    }

    .about-us-information {
        padding-top: 40px;
        text-align: center;
    }

    .about-section .section-title {
        text-align: center;
    }

    .contacts-content {
        flex-direction: column;
    }

    .contacts-section .section-title {
        padding-bottom: 24px;
        text-align: center;
    }
}

@media screen and (max-width: 550px) {
    .logotype {
        font-size: 32px;
    }

    .navigation {
        padding: 20px;
    }

    .large-image-wrapper {
        height: auto;
    }

    .large-image-wrapper img {
        height: auto;
    }

    .start-content {
        padding: 18px 0 42px;
    }

    .start-information {
        text-align: left;
        padding-top: 24px;
    }

    h1 {
        font-size: 36px;
    }

    .section-title {
        font-size: 48px;
    }

    .about-section .section-title {
        text-align: left;
    }

    .about-us-information {
        text-align: left;
        padding-top: 24px;
    }

    .partners-section .section-title {
        padding-bottom: 42px;
    }

    .partner {
        margin: 0 10px;
        padding-bottom: 40px;
    }

    .partner-image {
        width: 150px;
        height: 150px;
    }

    .map-container {
        width: 100%;
    }

    .map-container iframe {
        width: 100%;
        height: 320px;
    }

    .contacts-section {
        padding-bottom: 42px;
    }

    .contacts-content p {
        font-size: 24px;
    }
}
