body {
    background-color: #f3f4f5;

    margin: 0;
    padding: 0;

    display: flex;
    flex-direction: column;
    align-items: center;

    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

header {
    height: 84px;
    width: 80%;

    margin-top: 20px;

    background-color: black;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);

    border-radius: 50px;

    display: flex;
    align-items: center;
    
    justify-content: space-between;

    position: fixed;

    z-index: 1000;
}

header .logo {
    margin-left: 45px;
}

header .right_side {
    margin-right: 25px;

    display: flex;
    align-items: center;

    position: absolute;

    right: 0;
}

header .right_side ul {
    display: flex;
    list-style: none;    
}

header .right_side ul li a {
    font-size: 18px;
    font-weight: 700;
    color: white;

    text-decoration: none;

    cursor: pointer;

    margin-left: 15px;
    margin-right: 15px;

    transition: color 0.5s ease;
}

header .right_side ul li a:hover {
    color: #808080 ;
}

header .right_side .order_button {
    height: 54px;
    width: 250px;

    background-color: white;

    border-radius: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    outline: none;
    border: none;

    font-size: 18px;
    font-weight: 700;

    transition: background-color 0.5s ease, color 0.5s ease;
}

header .right_side .order_button:hover {
    color: white;
    background-color: #3b3b3b;

    cursor: pointer;
}

@media (max-width: 940px) {
    header .mobile_hamburger {
        display: none;
    }
}

@media (max-width: 660px) {
    header .right_side {
        display: none;
    }    

    header .mobile_hamburger {
        display: block;
    }

    header .mobile_menu {
        display: none;
    }

    header .mobile_menu.active {
        display: block;
    }

    header {
        width: 80%;
    }
}


.mobile_hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;

    margin-right: 50px;
}

.mobile_hamburger span {
    display: block;
    width: 40px;
    height: 3px;
    background: white;
    border-radius: 2px;
    margin-bottom: 5px;
}

.mobile_menu {
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background-color: black;
    z-index: 1000;

    border-radius: 25px;
}

.mobile_menu ul {
    display: flex;
    flex-direction: column;

    margin: 0;
    padding: 0;

    margin-left: 25px;
    margin-top: 25px;
    margin-bottom: 25px;

    gap: 15px;

    list-style: none;
}

.mobile_menu ul li a {
    color: white;
    text-decoration: none;
}

.content {
    min-height: 500px;
    width: 80%;

    margin-top: 120px;
}

.content .main_image {
    height: 600px;
    width: 100%;

    position: relative;
}

@media (max-width: 1220px) {

    header {
        width: 90%;
    }

    .content {
        width: 90%;
    }

    .content .main_image {
        height: 450px;
    }
}

@media (max-width: 400px) {
    .content .main_image {
        height: 400px;
        width: 100%;

        position: relative;
    }
}

.content .main_image img {
    height: 100%;
    width: 100%;
    object-fit: cover;   

    border-radius: 50px;
}

.content .main_image .gradient {
    height: 100%;
    width: 100%;

    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));

    border-radius: 50px;

    position: absolute;
    left: 0;
    top: 0;
}

.content .main_image .text {
    position: absolute; 
    left: 100px;
    top: 40px;

    display: flex;
    flex-direction: column;
}

.content .main_image .text .header {
    font-size: 61px;
    font-weight: 600;

    color: white;
}

.content .main_image .text .under_text {
    font-size: 26px;
    font-weight: 400;

    margin-top: 20px;

    color: white;
}

.content .main_image .text .under_date {
    font-size: 26px;
    font-weight: 400;

    color: white;
}

@media (max-width: 660px) {
    .content .main_image .text {
        left: 50px;
    }

    .content .main_image .text .header {
        font-size: 41px;
    }

    .content .main_image .text .under_text { 
        font-size: 18px;
    }

    .content .main_image .text .under_date {
        font-size: 18px;
        margin-top: 15px;
    }
}

@media (max-width: 660px) {
    .content .main_image .text {
        left: 25px;
    }

    .content .main_image .text .header {
        font-size: 36px;
    }

    .content .main_image .text .under_text { 
        font-size: 16px;
    }

    .content .main_image .text .under_date {
        font-size: 16px;
        margin-top: 15px;
    }
}

.content .main_image .left_button {
    height: 54px;
    width: 250px;
    
    background-color: #e96011;

    position: absolute;
    bottom: 50px;
    left: 100px;

    border-radius: 50px;

    border: 0;
    outline: none;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;

    color: white;
    font-weight: 600;

    transition: background-color 0.5s ease, color 0.5s ease;
}

@media (max-width: 660px) {

    .content .main_image {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .content .main_image .left_button {
        position: absolute;
        left: 25px;
        bottom: 50px;
    }
}

@media (max-width: 400px) {
    .content .main_image .left_button {
        position: absolute;
        left: 25px;
        bottom: 25px;
    }
}

.content .main_image .left_button:hover {
    cursor: pointer;

    background-color: #e7793a;
}

.content .main_image .timer {
    height: 100px;
    width: 400px;

    background-color: black;

    border-radius: 20px;

    position: absolute;
    right: 100px;
    bottom: 50px;

    display: flex;
    flex-direction: column;
}

@media (max-width: 660px) {
    .content .main_image .timer {
        height: 100px;
        width: 85%;
        right: 0;
        left: 25px;
        bottom: 125px;
    }
}

@media (max-width: 400px) {
    .content .main_image .timer {
        height: 100px;
        width: 85%;
        right: 0;
        left: 20px;
        bottom: 100px;
    }
}

.content .main_image .timer .top {
    margin-left: 15px;
    margin-top: 15px;

    color: grey;
    font-size: 18px;
}

@media (max-width: 660px) {
    .content .main_image .timer .top {
        font-size: 14px;
    }
}

.content .main_image .timer .time {
    color: white;

    margin-left: 15px;
    margin-top: 15px;

    font-size: 28px;
    font-weight: 600;
}

@media (max-width: 660px) {
    .content .main_image .timer .time {
        font-size: 21px;
    }
}


.content .about {
    height: 550px;
    width: 100%;

    margin-top: 50px;
    margin-bottom: 50px;
    display: flex;

    justify-content: center;

    flex-direction: row;

    gap: 20px;
}

@media (max-width: 1220px) {
    .content .about {
        height: 650px;
    }
}

@media (max-width: 940px) {
    .content .about {
        height: 850px;
    }
}

@media (max-width: 660px) {
    .content .about {
        height: auto;
        flex-direction: column;
    }
}

@media (max-width: 400px) {
    .content .about {
        height: auto;
        flex-direction: column;
    }
}


.content .about .image{
    width: 50%;
    height: 100%;
}

@media (max-width: 660px) {
    .content .about .image {
        height: 0;
        flex: 1;
        width: 100%;
    }
}

.content .about .image img{
    height: 100%;
    width: 100%;

    object-fit: cover;

    border-radius: 50px;
}

.content .about .info {
    height: 100%;
    width: 50%;

    background-color: white;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);

    border-radius: 50px;

    display: flex;
    flex-direction: column;
}

@media (max-width: 660px) {
    .content .about .info {
        height: auto;
        width: 100%;
        padding-bottom: 25px;
    }
}

@media (max-width: 400px) {
    .content .about .info {
        height: 65%;
        width: 100%;
        padding-bottom: 25px;
    }
}

.content .about .info .header {
    margin-left: 60px;
    margin-top: 50px;

    font-size: 36px;
    font-weight: 700;
}

@media (max-width: 400px) {
    .content .about .info .header {
        margin-left: 30px;
        margin-top: 25px;
    }
}

.content .about .info .text {
    width: 85%;

    margin-left: 60px;
    margin-top: 35px;

    line-height: 1.5;

    text-align: justify;
}

@media (max-width: 1220px) {
    .content .about .info .text {
        width: 78%;
    }
}


@media (max-width: 940px) {
    .content .about .info .text {
        width: 73%;
    }
}


@media (max-width: 400px) {
    .content .about .info .text {
        margin-left: 30px;
        width: 85%;
        margin-top: 17.5px;
    }
}

.content .about .info .contacts {
    height: 54px;
    width: 200px;

    background-color: #e96011;

    margin-left: 60px;
    margin-top: 25px;

    border: none;
    outline: none;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50px;

    color: white;
    font-size: 18px;
    font-weight: 700;

    transition: background-color 0.5s ease;
}

@media (max-width: 400px) {
    .content .about .info .contacts {
        margin-left: 30px;
    }
}

.content .about .info .contacts:hover {
    cursor: pointer;

    background-color: #e7793a;
}

.content .more {
    height: 500px;
    width: 100%;

    display: flex;
    flex-direction: column;

    margin-bottom: 25px;
}

@media (max-width: 1536px) {
    .content .more {
        height: auto;
    }
}

@media (max-width: 1220px) {
    .content .more {
        height: 600px;
    }
}

@media (max-width: 940px) {
    .content .more {
        height: 700px;
    }
}

@media (max-width: 660px) {
    .content .more {
        height: auto;
    }
}

@media (max-width: 400px) {
    .content .more {
        height: auto;
    }
}


.content .more .header {
    margin-left: 25px;
    margin-bottom: 25px;

    font-size: 36px;
    font-weight: 600;
}

.content .more .rows {
    flex: 1;
    width: 100%;

    display: flex;
    flex-direction: column;

    gap: 15px;
}

.content .more .rows .row1 {
    height: 225px;
    
    display: flex;
    flex-direction: row;

    gap: 15px;
}

@media (max-width: 1536px) {
    .content .more .rows .row1 {
        height: 265px;
    }
}


@media (max-width: 1220px) {
    .content .more .rows .row1 {
        height: 300px;
    }
}

@media (max-width: 940px) {
    .content .more .rows .row1 {
        height: 335px;
    }
}

@media (max-width: 660px) {
    .content .more .rows .row1 {
        flex-direction: column;
        height: auto;
        width: 100%;
    }
}

@media (max-width: 400px) {
    .content .more .rows .row1 {
        flex-direction: column;
        height: auto;
        width: 100%;
    }
}

.content .more .rows .row1 .item {
    height: 100%;

    background-color: white;
    border-radius: 25px;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
}

.content .more .rows .row1 .item:first-child {
    width: 60%;

    background-color: black;
}

.content .more .rows .row1 .item:last-child {
    width: 40%;
}

@media (max-width: 1220px) {
    .content .more .rows .row1 .item:last-child {
        width: 50%;
    }

    .content .more .rows .row1 .item:first-child {
        width: 50%;
    }
}

@media (max-width: 660px) {
    .content .more .rows .row1 .item:last-child {
        width: 100%;
        padding-bottom: 15px;
    }

    .content .more .rows .row1 .item:first-child {
        width: 100%;
        padding-bottom: 15px;
    }
}

@media (max-width: 400px) {
    .content .more .rows .row1 .item:last-child {
        padding-bottom: 15px;
    }

    .content .more .rows .row1 .item:first-child {
        padding-bottom: 15px;
    }
}

.content .more .rows .row1 .item .header {
    margin-left: 35px;
    margin-top: 20px;

    font-size: 24px;
    font-weight: 600;
}

@media (max-width: 940px) {
    .content .more .rows .row1 .item .header {
        font-size: 21px;
    }
}

@media (max-width: 400px) {
    .content .more .rows .row1 .item .header {
        margin-left: 20px; 
        font-size: 18px;       
    }
}

.content .more .rows .row1 .item .text {
    margin-left: 35px;
    margin-top: 20px;

    font-size: 16px;
    font-weight: 400;

    width: 90%;
    text-align: justify;
}

@media (max-width: 1220px) {
    .content .more .rows .row1 .item .text {
        width: 88%;
    }
}

@media (max-width: 940px) {
    .content .more .rows .row1 .item .text {
        width: 85%;
    }
}

@media (max-width: 400px) {
    .content .more .rows .row1 .item .text {
        width: 88%;
        margin-left: 20px;
    }
}

.content .more .rows .row1 .item:first-child .header {
    color: white;
}

.content .more .rows .row1 .item:first-child .text {
    color: white;
}

.content .more .rows .row2 {
    flex: 1;
    width: 100%;

    display: flex;
    flex-direction: row;
    gap: 15px;
}

@media (max-width: 660px) {
    .content .more .rows .row2 {
        flex-direction: column;
        width: 100%;
    }
}

.content .more .rows .row2 .item {
    height: 100%;
    width: 50%;

    background-color: white;

    border-radius: 25px;

    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
}

@media (max-width: 1536px) {
    .content .more .rows .row2 .item {
        padding-bottom: 15px;
    }
}

@media (max-width: 940px) {
    .content .more .rows .row2 .item {
        width: 100%;
    }
}

@media (max-width: 660px) {
    .content .more .rows .row2 .item {
        height: auto;
        padding-bottom: 15px;
    }
}

@media (max-width: 400px) {
    .content .more .rows .row2 .item {
        height: auto;
        padding-bottom: 15px;
    }
}

.content .more .rows .row2 .item .header {
    margin-left: 35px;
    margin-top: 20px;

    font-size: 24px;
    font-weight: 600;
}

@media (max-width: 400px) {
    .content .more .rows .row2 .item .header {
        margin-left: 17.5px;
        font-size: 18px;
    }
}

.content .more .rows .row2 .item .text {
    margin-left: 35px;
    /* margin-top: 15px; */

    font-size: 16px;
    font-weight: 400;

    width: 90%;
    text-align: justify;
}

@media (max-width: 940px) {
    .content .more .rows .row2 .item .text {
        width: 85%;
    }
}

@media (max-width: 400px) {
    .content .more .rows .row2 .item .text {
        margin-left: 17.5px;
        width: 90%;
    }
}

.content .advantages {
    height: 350px;
    width: 100%;

    margin-bottom: 25px;
    margin-top: 100px;

    display: flex;
    flex-direction: column;
}

@media (max-width: 1220px) {
    /* .content .advantages {
        height: 400px;
    } */
}

@media (max-width: 940px) {
    .content .advantages {
        height: 750px;
    }
}

@media (max-width: 660px) {
    .content .advantages {
        height: auto;
    }
}

@media (max-width: 400px) {
    .content .advantages {
        margin-top: 0;
        height: 850px;
    }
}

.content .advantages .header {
    margin-left: 25px;
    margin-bottom: 25px;

    font-size: 36px;
    font-weight: 600;
}

@media (max-width: 940px) {
    .content .advantages .header {
        text-align: center;
    }
}

@media (max-width: 660px) {
    .content .advantages .header {
        margin-left: 0;
    }
}

@media (max-width: 400px) {
    .content .advantages .header {
        margin-left: 0;
    }
}


.content .advantages .items {
    flex: 1;
    width: 100%;

    display: flex;
    flex-direction: row;

    align-items: center;
    justify-content: center;

    gap: 50px;
}

@media (max-width: 1220px) {
    .content .advantages .items {
        gap: 25px;
    }
}

@media (max-width: 940px) {
    .content .advantages .items {
        flex-direction: column;
    }
}

.content .advantages .items .item {
    height: 100%;
    width: 30%;

    background-color: white;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);

    border-radius: 25px;

    display: flex;
    flex-direction: column;
}

@media (max-width: 1536px) {
    .content .advantages .items .item {
        height: 90%;
        width: 40%;
    }
}

@media (max-width: 1220px) {
    .content .advantages .items .item {
        width: 40%;
    }
}

@media (max-width: 940px) {
    .content .advantages .items .item {
        width: 100%;
    }
}

@media (max-width: 660px) {
    .content .advantages .items .item {
        height: auto;
        padding-bottom: 15px;
    }
}

@media (max-width: 400px) {
    .content .advantages .items .item {
        height: auto;
        padding-bottom: 15px;
    }
}


.content .advantages .items .item .icon {
    margin-left: 25px;
    margin-top: 25px;
}

.content .advantages .items .item .header {
    font-size: 20px;
    font-weight: 600;

    margin-top: 50px;
    margin-left: 25px;
    margin-bottom: 0;
}

@media (max-width: 1536px) {
    .content .advantages .items .item .header {
        margin-top: 25px;
    }
}

@media (max-width: 1220px) {
    .content .advantages .items .item .header {
        margin-top: 25px;
    }
}

@media (max-width: 940px) {
    .content .advantages .items .item .header {
        margin-top: 15px;
        margin-left: 25px;

        text-align: start;
    }
}

.content .advantages .items .item .text {
    margin-left: 25px;
    margin-top: 10px;
    text-align: justify;

    font-size: 14px;

    width: 80%;
}

@media (max-width: 1536px) {
    .content .advantages .items .item .text {
        width: 85%;
    }
}

.content .b_member {
    height: 400px;
    width: 100%;

    margin-top: 100px;
    margin-bottom: 25px;

    position: relative;
}

@media (max-width: 940px) {
    .content .b_member {
        height: 350px;
    }
}

@media (max-width: 660px) {
    .content .b_member {
        margin-top: 45px;
    }
}

@media (max-width: 400px) {
    .content .b_member {
        height: 300px;
        margin-top: 0;
    }
}

.content .b_member img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50px;
}

.content .b_member .gradient {
    height: 100%;
    width: 100%;

    background: linear-gradient(to right, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));

    border-radius: 50px;

    position: absolute;
    left: 0;
    top: 0;
}

.content .b_member .header {
    position: absolute;
    left: 50px;
    top: 50px;

    color: white;

    font-size: 48px;
    font-weight: 700;
}

@media (max-width: 940px) {
    .content .b_member .header {
        font-size: 32px;
    }
}

@media (max-width: 660px) {
    .content .b_member .header {
        font-size: 24px;
        left: 25px;
    }
}


@media (max-width: 400px) {
    .content .b_member .header {
        font-size: 24px;
        left: 25px;
    }
}


.content .b_member .text {
    position: absolute;
    left: 50px;
    top: 120px;

    color: white;

    font-size: 24px;
    font-weight: 600;

    width: 70%;
}

@media (max-width: 660px) {
    .content .b_member .text {
        font-size: 21px;
        width: 90%;
        left: 25px;
        top: 35%;
        width: 90%;
    }
}

@media (max-width: 400px) {
    .content .b_member .text {
        font-size: 16px;
        width: 90%;
        left: 25px;
        top: 125px;
    }
}

.content .b_member .order {
    height: 54px;
    width: 300px;

    position: absolute;
    bottom: 50px;
    left: 50px;

    border: none;
    outline: none;

    background-color: #e96011;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 18px;
    font-weight: 700;

    border-radius: 50px;

    transition: background-color 0.5s ease;
}

@media (max-width: 660px) {
    .content .b_member .order {
        left: 10%;
        height: 44px;
        width: 80%;
        bottom: 25px;
    }
}


@media (max-width: 400px) {
    .content .b_member .order {
        left: 25px;
        height: 44px;
        width: 87%;
        bottom: 25px;
    }
}

.content .b_member .order:hover {
    cursor: pointer;

    background-color: #e7793a;
}

.content .presentation {
    height: 500px;
    width: 100%;

    margin-top: 50px;
    margin-bottom: 50px;

    background-color: white;

    border-radius: 50px;

    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 660px) {
    .content .presentation {
        height: auto;
        padding-bottom: 15px;
    }
}

@media (max-width: 400px) {
    .content .presentation {
        height: auto;
        padding-bottom: 15px;
    }
}

.content .presentation .header {
    position: absolute;

    left: 50px;
    top: 25px;

    font-size: 42px;
    font-weight: 700;
}

@media (max-width: 660px) {
    .content .presentation .header {
        font-size: 28px;
        left: 25px;
        top: 50px;
    }
}

@media (max-width: 400px) {
    .content .presentation .header {
        font-size: 21px;
        left: 25px;
        top: 50px;
    }
}

.content .presentation .text {
    position: absolute;
    left: 50px;
    top: 100px;

    font-size: 24px;
    font-weight: 500;
    width: 80%;
    line-height: 1.5;
}

@media (max-width: 660px) {
    .content .presentation .text {
        font-size: 18px;
        left: 25px;
        top: 120px;
        text-align: justify;
        width: 85%;
    }
}

@media (max-width: 400px) {
    .content .presentation .text {
        font-size: 16px;
        left: 25px;
        top: 100px;
        text-align: justify;
        width: 85%;
    }
}

@media (max-width: 940px) {
    .content .presentation {
        height: 350px;
    }
}

.content .presentation .bottom_block {
    height: 100px;
    width: 800px;

    position: absolute;
    bottom: 0;

    background-color: #f3f4f5;

    border-top-right-radius: 50px;
    border-top-left-radius: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;
}

@media (max-width: 660px) {
    .content .presentation .bottom_block {
        height: auto;
        width: 100%;
        border-radius: 0;
        background-color: white;
        flex-direction: column;
        gap: 0;
        padding-bottom: 15px;

        bottom: -15px;

        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
    }
}

@media (max-width: 400px) {
    .content .presentation .bottom_block {
        height: auto;
        flex-direction: column;
        padding-bottom: 15px;
        gap: 0px;
    }
}

.content .presentation .bottom_block a {
    height: 54px;
    width: 325px;

    margin-top: 15px;

    border-radius: 50px;

    background-color: green;

    display: flex;
    align-items: center;
    justify-content: center;

    text-decoration: none;
}

@media (max-width: 660px) {
    .content .presentation .bottom_block a {
        width: 90%;
        margin-bottom: 0;
    }
}

.content .presentation .bottom_block a:first-child {
    background-color: #d6d6d6;
    color: black;
    font-size: 16px;
    font-weight: 700;

    transition: background-color 0.5s ease;
}

.content .presentation .bottom_block a:first-child:hover {
    background-color: #aeaeae;
}

.content .presentation .bottom_block a:last-child {
    background-color: #e96011;
    color: white;
    font-size: 16px;
    font-weight: 700;

    transition: background-color 0.5s ease;
}

@media (max-width: 660px) {
    .content .presentation .bottom_block a:first-child {
        font-weight: 600;
        font-size: 14px;
    }

    .content .presentation .bottom_block a:last-child {
        font-weight: 600;
        font-size: 14px;
    }
}

.content .presentation .bottom_block a:last-child:hover {
    background-color: #e7793a;
}

.content .presentation .bottom_block a:first-child img {
    height: 30px;
    width: 30px;
    margin-right: 15px;
}

.content .presentation .bottom_block a:last-child img {
    height: 30px;
    width: 30px;
    margin-right: 15px;
}

.content .partners {
    height: 200px;
    width: 100%;
    margin-top: 150px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 940px) {
    .content .partners {
        margin-top: 100px;
    }
}

.content .partners .header {
    font-size: 32px;
    font-weight: 700;
}

.content .partners .glider-contain {
    flex: 1;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    margin-top: 15px;
}

.content .partners .glider-contain .glider {
    height: 100%;
    display: flex;
    align-items: center; 
}

.content .partners .glider-contain .glider-track {
    height: 100%;
}

.content .partners .glider-contain .glider .item {
    width: 250px;
    height: 100%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 8px;
    user-select: none;
    flex-shrink: 0;
}

.content .media_partners {
    height: 200px;
    width: 100%;
    margin-top: 150px;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 940px) {
    .content .media_partners {
        margin-top: 100px;
    }
}

.content .media_partners .header {
    font-size: 32px;
    font-weight: 700;

    text-align: center;
}

.content .media_partners .glider-contain {
    flex: 1;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    margin-top: 15px;
}

.content .media_partners .glider-contain .glider {
    height: 100%;
    display: flex;
    align-items: center; 
}

.content .media_partners .glider-contain .glider-track {
    height: 100%;
}

.content .media_partners .glider-contain .glider .item {
    width: 250px;
    height: 100%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 8px;
    user-select: none;
    flex-shrink: 0;
}

footer {
    height: 750px;
    width: 100%;

    margin-top: 150px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    background-color: rgb(35, 35, 35);
}

footer .top {
    height: 650px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 50px;
}

@media (max-width: 660px) {
    footer .top {
        width: 100%;
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: flex-start;
    }
}

@media (max-width: 400px) {
    footer .top {
        width: 100%;
        flex-direction: column-reverse;
        justify-content: flex-start;
        align-items: flex-start;
    }
}

footer .top .contacts {
    height: 100%;
    width: 450px;
}

@media (max-width: 660px) {
    footer .top .contacts {
        width: 100%;
    }
}

footer .top .contacts .header {
    font-size: 18px;
    font-weight: 700;

    display: flex;
    flex-direction: column;

    color: rgb(180, 180, 180);

    margin-top: 25px;
    margin-left: 25px;
}

footer .top .contacts ul {
    list-style: none;

    margin: 0;
    padding: 0;

    margin-top: 15px;
    margin-left: 25px;

    display: flex;
    flex-direction: column;
    gap: 15px;
}

footer .top .contacts ul li{
    color: white;
    font-size: 16px;
    font-weight: 700;
}

footer .top .contacts ul li a{
    color: white;
    text-decoration: none;

    transition: color 0.5s ease;
}   

footer .top .contacts ul li a:hover{
    color: #e96011;
}

footer .top .order-form {
    height: 100%;
    width: 450px;

    display: flex;
    flex-direction: column;
}

@media (max-width: 660px) {
    footer .top .order-form {
        width: 100%;
    }
}

@media (max-width: 400px) {
    footer .top .order-form {
        width: 100%;
    }
}

footer .top .order-form .header {
    font-size: 18px;
    font-weight: 700;

    display: flex;
    flex-direction: column;

    color: rgb(180, 180, 180);

    margin-top: 25px;
    margin-left: 25px;
}

footer .top .order-form .form {
    flex: 1;
    width: 100%;

    margin-top: 15px;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 15px;
}

footer .top .order-form .form input {
    height: 40px;
    width: 90%;

    border: none;
    outline: none;

    padding-left: 15px;

    color: white;
    font-size: 16px;
    font-weight: 600;

    background-color: rgb(65, 65, 65);
    border-radius: 5px;
}

footer .top .order-form .form input::placeholder {
    color: rgb(146, 146, 146);
}


footer .top .order-form .form textarea {
    height: 150px;
    width: 90%;

    resize: none;

    outline: none;
    border: none;

    border-radius: 5px;

    background-color: rgb(65, 65, 65);

    color: white;
    font-size: 16px;

    font-weight: 600;

    padding-left: 15px;
    padding-top: 5px;
    padding-right: 15px;
}

footer .top .order-form .form .send {
    height: 54px;
    width: 90%;

    border: none;
    outline: none;
    
    background-color: #e96011;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50px;

    color: white;
    font-size: 18px;
    font-weight: 700;
}

footer .top .order-form .form .send:hover {
    cursor: pointer;
    background-color: #e7793a;
}

footer .bot {
    flex: 1;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
}

footer .bot .logo {
    margin-right: 150px;   
}

@media (max-width: 660px) {
    footer .bot .logo {
        margin-right: 10px;
        margin-left: 15px;
    }
}

@media (max-width: 400px) {
    footer .bot .logo {
        margin-right: 10px;
        margin-left: 15px;
    }

    footer .bot .logo img {
        width: 80%;
    }
}

footer .bot .conf {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;
}

footer .bot .conf a {
    text-decoration: none;

    color: rgb(87, 87, 87);
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 660px) {
    footer .bot .conf a {
        font-size: 14px;
    }
}

footer .bot .conf a:hover {
    color: rgb(122, 122, 122);
}

.contacts_block {
    min-height: 500px;
    width: 90%;

    margin-top: 120px;

    display: flex;
    flex-direction: row;
    justify-content: center;

    gap: 20px;
}

@media (max-width: 660px) {
    .contacts_block {
        flex-direction: column;
        justify-content: flex-start;
    }
}

.contacts_block .form {
    height: 525px;
    width: 40%;

    margin-top: 25px;

    background-color: white;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);

    border-radius: 35px;

    display: flex;
    flex-direction: column;
}

@media (max-width: 1220px) {
    .contacts_block .form {
        width: 40%;
    }
}

@media (max-width: 660px) {
    .contacts_block .form {
        width: 100%;
    }
}

.contacts_block .form .header{
    font-size: 32px;
    font-weight: 600;

    margin-left: 25px;
    margin-top: 40px;
}

@media (max-width: 1220px) {
    .contacts_block .form .header {
        font-size: 28px;
    }
}

.contacts_block .form input {
    height: 45px;
    width: 90%;
    margin-top: 25px;
    margin-left: 25px;

    outline: none;
    border: none;

    border-radius: 5px;

    padding-left: 15px;

    background-color: #e4e4e4;

    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 1536px) {
    .contacts_block .form input {
        width: 88%;
    }
}

@media (max-width: 1220px) {
    .contacts_block .form input {
        width: 83%;
    }
}

.contacts_block .form textarea {
    height: 150px;
    width: 90%;

    margin-left: 25px;

    margin-top: 25px;

    resize: none;

    border-radius: 5px;

    padding-left: 15px;
    padding-top: 15px;

    background-color: #e4e4e4;

    outline: none;
    border: none;

    font-size: 16px;
    font-weight: 600;
}

@media (max-width: 1536px) {
    .contacts_block .form textarea {
        width: 88%;
    }
}

@media (max-width: 1220px) {
    .contacts_block .form textarea {
        width: 83%;
    }
}

.contacts_block .form input[type="submit"] {
    width: 93%;

    background-color: #e96011;
    color: white;

    transition: background-color 0.5s ease;
}

@media (max-width: 1536px) {
    .contacts_block .form input[type="submit"] {
        width: 91%;
    }
}

@media (max-width: 1220px) {
    .contacts_block .form input[type="submit"] {
        width: 88%;
    }
}


.contacts_block .form input[type="submit"]:hover {
    background-color: #e7793a;
    cursor: pointer;
}

.contacts_block .contacts {
    height: 600px;
    width: 40%;

    margin-top: 25px;

    background-color: white;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);

    border-radius: 35px;

    display: flex;
    flex-direction: column;
}

@media (max-width: 1220px) {
    .contacts_block .contacts {
        width: 100%;
    }
}

.contacts_block .contacts .header {
    font-size: 32px;
    font-weight: 600;

    margin-left: 25px;
    margin-top: 40px;
}

.contacts_block .contacts ul {
    list-style: none;
    margin: 0;
    padding: 0;

    margin-left: 25px;
    margin-top: 35px;

    display: flex;
    flex-direction: column;

    gap: 20px;
}

.contacts_block .contacts ul a {
    text-decoration: none;
    color: black;
}

.contacts_block .contacts ul li {
    font-size: 18px;
    font-weight: 600;

    display: flex;
    align-items: center;
    
    cursor: pointer;
}

.contacts_block .contacts ul li div {
    height: 30px;
    width: 30px;
    margin-right: 15px;
    padding: 8px;
    border-radius: 50px;

    background-color: hsl(0, 0%, 86%);
}

.contacts_block .contacts ul li div img {
    height: 100%;
}

.public-offer {
    min-height: 500px;
    width: 80%;

    margin-top: 120px;
}

.public-offer .header {
    font-size: 32px;
    font-weight: 700;

    margin-top: 50px;
    margin-left: 50px;
}

.public-offer .offer {
    margin-left: 50px;
    margin-top: 25px;
    text-align: justify;

    font-size: 18px;
}

@media (max-width: 660px) {
    .public-offer .header {
        font-size: 28px;
        margin-left: 0;
    }

    .public-offer .offer {
        margin-left: 0;

        font-size: 18px;
    }
}

@media (max-width: 400px) {
    .public-offer .header {
        font-size: 18px;
        margin-left: 0;
    }

    .public-offer .offer {
        margin-left: 0;

        font-size: 16px;
    }
}

.privacy {
    min-height: 500px;
    width: 80%;

    margin-top: 120px;
}

.privacy .header {
    font-size: 32px;
    font-weight: 700;

    margin-top: 50px;
    margin-left: 50px;
}

.privacy .policy {
    margin-left: 50px;
    margin-top: 25px;
    text-align: justify;

    font-size: 18px;
}

@media (max-width: 660px) {
    .privacy .header {
        margin-left: 0px;

        font-size: 28px;
    }

    .privacy .policy {
        margin-left: 0px;
        font-size: 18px;
    }
}


@media (max-width: 400px) {
    .privacy .header {
        font-size: 17px;
    }

    .privacy .policy {
        margin-left: 0px;
        font-size: 15px;
    }
}

.glider-track {
    width: 256px;
}

.news_block {
    min-height: 500px;
    width: 80%;

    margin-top: 125px;

    display: flex;
    flex-direction: column;
}

@media (max-width: 440px) {
    .news_block {
        width: 95%;
    }
}

.news_block .header {
    font-size: 42px;
    font-weight: 600;

    margin-left: 25px;
    margin-top: 25px;
}

.news_block .news {
    flex: 1;
    width: 100%;

    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;

    gap: 15px;

    margin-top: 25px;

}

.news_block .news .item {
    height: 200px;
    width: 32%;
    
    background-color: white;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);

    border-radius: 25px;

    transition: scale 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;

    display: flex;
    flex-direction: row;
    align-items: center;
}

@media (max-width: 940px) {
    .news_block .news {
        justify-content: flex-start;
    }
    
   .news_block .news .item {
        width: 49%;
   }
}

@media (max-width: 660px) {
    .news_block .news {
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
    }
    
   .news_block .news .item {
        width: 100%;
   }
}


.news_block .news .item:hover {
    scale: 1.02;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.5);
}

.news_block .news .item .img {
    height: 80%;
    width: 40%;
    margin-left: 25px;
}

.news_block .news .item .img img {
    height: 100%;
    width: 100%;
    object-fit: cover;

    border-radius: 25px;
}

.news_block .news .item .text {
    height: 80%;
    width: 50%;

    margin-left: 5px;
    margin-right: 15px;

}

.news_block .news .item .text .big {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;

    display: block;
    width: 100%;
    margin-left: 5px;
}

.news_block .news .item .text .small {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;

    overflow: hidden;
    text-overflow: ellipsis;

    font-size: 16px;
    line-height: 1.4em;
    margin-top: 10px;
    margin-left: 10px;
    
    width: 100%;
}

.exhibition_block {
    min-height: 500px;
    width: 70%;

    margin-top: 175px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 1220px) {
    .exhibition_block {
        width: 90%;
    }
}

@media (max-width: 440px) {
    .exhibition_block {
        width: 90%;
    }
}

.exhibition_block .exhibition {
    height: auto;
    width: 100%;

    background-color: white;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);

    border-radius: 25px;

    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;

    padding: 15px;
    padding-bottom: 35px;
}

@media (max-width: 940px) {
    .exhibition_block .exhibition {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
}

.exhibition_block .exhibition .left_side {
    height: 100%;
    width: 30%;

    display: flex;
    flex-direction: column;
}

.exhibition_block .exhibition .left_side .title {
    font-size: 32px;
    font-weight: 600;   

    margin-left: 35px;
    margin-top: 20px;
}

@media (max-width: 440px) {
    .exhibition_block .exhibition .left_side .title {
        margin-left: 10px;
        margin-top: 5px;
    }
}

.exhibition_block .exhibition .left_side .text_about {
    margin-left: 35px;
    margin-top: 25px;
    text-align: justify;
    line-height: 1.5;

    font-size: 18px;
}

@media (max-width: 440px) {
    .exhibition_block .exhibition .left_side .text_about {
        margin-left: 10px;
        margin-right: 10px;
    }   
}

.exhibition_block .exhibition .left_side .general_parnter {
    margin-left: 35px;
    margin-top: 25px;
    text-align: justify;
    line-height: 1.5;

    font-size: 18px;
}

@media (max-width: 440px) {
    .exhibition_block .exhibition .left_side .general_parnter {
        margin-left: 10px;
        margin-right: 10px;
    }   
}


.exhibition_block .exhibition .left_side .official_partners {
    margin-left: 35px;
    margin-top: 25px;
    text-align: justify;
    line-height: 1.5;

    font-size: 18px;
}

@media (max-width: 440px) {
    .exhibition_block .exhibition .left_side .official_partners {
        margin-left: 10px;
        margin-right: 10px;
    }   
}

.exhibition_block .exhibition .right_side {
    height: 100%;
    width: 70%;

    display: flex;
    flex-direction: column;
}

.exhibition_block .exhibition .right_side .description {
    margin-top: 20px;
    margin-left: 35px;
    margin-right: 35px;

    line-height: 1.5;

    font-size: 18px;

    text-align: justify;
}

@media (max-width: 440px) {
    .exhibition_block .exhibition .right_side .description {
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media (max-width: 940px) {
    .exhibition_block .exhibition .right_side {
        width: 100%;
        margin-top: 45px;
    }

    .exhibition_block .exhibition .left_side {
        width: 100%;
    }

    .exhibition_block .exhibition .text_about {
        margin-right: 35px;
    }
}

.exhibition_block .members {
    min-height: 500px;
    width: 100%;

    margin-top: 50px;
    padding: 15px;

    display: flex;
    flex-direction: column;
}

.exhibition_block .members .title {
    font-size: 32px;
    font-weight: 600;
}

@media (max-width: 440px) {
    .exhibition_block .members .title {
        font-size: 24px;
        text-align: center;
    }
}

.exhibition_block .members .items {
    flex: 1;
    width: 100%;

    margin-top: 25px;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    gap: 25px;
}

.exhibition_block .members .items .item {
    height: 200px;
    width: 49%;

    background-color: white;
    border-radius: 25px;

    display: flex;
    flex-direction: row;
    align-items: center;

    transition: box-shadow 0.5s ease;
}

@media (max-width: 940px) {
    .exhibition_block .members .items .item {
        width: 100%;
    }
}

@media (max-width: 440px) {
    .exhibition_block .members .items .item {
        height: 125px;
        width: 100%;

        padding-bottom: 25px;
    }
}

.exhibition_block .members .items .item:hover {
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
}

.exhibition_block .members .items .item a {
    height: 100%;
    width: 100%;

    display: flex;
    flex-direction: row;
    align-items: center;

    text-decoration: none;
    color: black;
}

.exhibition_block .members .items .item a img {
    height: 150px;
    width: 150px;
    margin-left: 25px;
}

@media (max-width: 440px) {
    .exhibition_block .members .items .item a {
        height: auto;
    }
}

@media (max-width: 440px) {
    .exhibition_block .members .items .item a img {
        height: 100px;
        width: 100px;
    }
}

.exhibition_block .members .items .item a .right_side {
    height: auto;
    flex: 1;

    margin-right: 35px;
}

@media (max-width: 440px) {
    .exhibition_block .members .items .item a .right_side {

        margin-right: 5px;
    }
}

.exhibition_block .members .items .item a .right_side .name{
    font-size: 21px;
    font-weight: 600;

    margin-left: 25px;
}

@media (max-width: 440px) {
    .exhibition_block .members .items .item a .right_side .name {
        font-size: 16px;
        margin-top: 25px;

        margin-left: 10px;
    }
}

.exhibition_block .members .items .item a .right_side .desc {
    margin-left: 25px; 
    margin-top: 25px;

    text-align: justify;
    line-height: 1.5;
}

@media (max-width: 440px) {
    .exhibition_block .members .items .item a .right_side .desc {
        font-size: 12px;
        line-height: 1;
        margin-top: 15px;

        margin-right: 15px;

        margin-left: 10px;
    }
}