html {
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}


:root {
    --text-color: #FFFFFF;
    --icinc-back-color: #3D1A59C9;
    --font-color: #6C25A4;

    --start-lin-grad-color: #5C5C5C;
    --end-lin-grad-color: #42424200;
}


body {
    margin: 0;
    padding: 0;
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--text-color);

}


p {
    display: block;
    padding: 0;
    margin: 0;
}


.container {
    margin: 0 auto;
}


.main {

    background-image:
        url(../images/main_page/osnova_new.png),
        linear-gradient(to right, var(--start-lin-grad-color), var(--start-lin-grad-color));
    background-repeat: no-repeat;
    max-width: 1440px;
    min-height: 1024px;
    background-size: cover;
    overflow: hidden;

}



/* подключаем шрифты */

.oswald-bold {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
}

.oswald-semibold {
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}



.rubik-regular {
    font-family: "Rubik", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}



.montserrat-medium {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
}


.header {
    display: flex;
    padding: 48px 0px 50px;
    justify-content: space-around;
    padding-right: 50px;
}

.header_contacts {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header_contacts_ellips {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--text-color);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    padding: 12px;
}

.header_contacts_ellips img {
    width: 100%;
}

.header_contacts_text {
    font-size: 36px;

}


.header_logo {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header_logo_img {
    width: 170px;
    height: 90px;
}

.header_logo_en,
.header_logo_ru {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 70px;
    height: 70px;
    font-size: 36px;
    color: var(--font-color);
    border-radius: 50%;
}



.section_club_name {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    right: 230px;
    top: 255px;
    font-size: 92px;
}

.section_info {
    display: flex;

    gap: 20px;
}

.info_all_items {
    display: flex;
    position: absolute;
    top: 563px;
    right: 180px;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    gap: 35px;
    align-items: center;
}

.info-item_rectangle {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #C4C4C4;
    width: 120px;
    height: 55px;
    color: black;
    font-size: 32px;
    border-radius: 20%;
}

.info-item-par {
    font-size: 36px;
}

.header_logo img {
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .header_logo_img {
        width: 140px;
        height: 70px;
    }

    .header_logo_en,
    .header_logo_ru {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .header_contacts_ellips {
        width: 60px;
        height: 60px;
        padding: 14px;
    }

    .section_club_name {
        top: 190px;
    }

    .info_all_items {
        top: 530px;
        right: 260px;
        gap: 60px;
    }

    .info-item-par {
        font-size: 44px;
    }
}

@media screen and (max-width: 767px) {


    .header_logo_img {
        width: 80px;
        height: 40px;
    }

    .header_logo_en,
    .header_logo_ru {
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    .header_contacts_ellips {
        width: 36px;
        height: 36px;
        padding: 10px;
    }

    .section_club_name {
        top: 90px;
        font-size: 38px;
        right: auto;
        padding-left: 15px;
    }

    .info_all_items {
        top: 500px;
        right: auto;
        gap: 25px;
        padding-left: 20px;
    }

    .info-item {
        gap: 18px;
    }

    .info-item-par {
        font-size: 28px;
    }

    .header_contacts_text {
        font-size: 22px;
        letter-spacing: 1.2px;
    }

    .header {
        display: flex;
        padding: 20px 0px 50px;
        justify-content: space-around;
        padding-right: 10px;
    }

    .header_logo {
        gap: 12px;
    }

    .model_img img {
        width: 100%;
        height: 100%;
    }


    .info-item_rectangle {

        width: 80px;
        height: 40px;
        font-size: 20px;
    }


}