* {
  box-sizing: border-box;
}

/* Первый контейнер */
.main_page {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    width: 100%;
    background-color: var(--background-color-white);
}



.main_content {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    margin: 0 auto;

}

/* Стили левой части */
.hero_content {
  column-gap: 0px;
  margin-bottom: 10px;
}

.zigzag_content_left {
  position: absolute;
  top: 30px;
  right: 160px;
}



.hero_title_neo {
    font-family: FiraGo, sans-serif;
    font-size: clamp(80px, 10vw, 100px);
    line-height: 1.2; 
    font-weight: 800;
    color: var(--color-text-lightgrey);
 }


 .hero_title_school {
    font-family: FiraGo, sans-serif;
    font-size: clamp(80px, 10vw, 100px);
    line-height: 1.2;
    font-weight: 800;
    color: var(--color-text-grey)
 }

 @media screen and (min-width: 425px) and (max-width: 991px) {
    .hero_title_neo,
    .hero_title_school {
    font-size: clamp(90px, 18vw, 200px);
  }
}


 .container_for_absolute{
    display: flex;
}

 .container_for_absolute p{
    margin: 0px;
    padding: 0px;
}

.hero_subtitle_container {
    position: block;
    font-family: Pacifico, sans-serif;
    display: flex;
    font-size: clamp(24px, 5vw, 30px);
    font-weight: 400;
    color: var(--color-accent-yellow);
    z-index: 1;
}


@media screen and (min-width: 1024px) {
  .container_for_absolute {
    height: 60px;
  }
  .hero_subtitle_container {
    position: absolute;
    width: 190%;
  }
  /* .text_white_description {
    color: var(--color-text-white);
  } */
}


@media screen and (min-width: 1024px) and (max-width: 1095px) {
  .text_white_description {
    color: var(--color-text-white);
  }
}


.text_gold {
    color: var(--color-accent-yellow);
}

.text_white {
    color: var(--color-text-white);
}

.mobile_break {
    display: none;
}

.text_gold_description {
    color: var(--color-accent-yellow);
}


.text_white_description {
  display: inline;
  white-space: nowrap;
}


.hero_description {
    font-family: FiraGo, sans-serif;
    color: var(--color-text-grey);
    font-size: clamp(16px, 3vw, 16px);
    font-weight: 700;
    margin: 0;
} 

.hero_title_neo,
.hero_title_school {
    display: block;
    line-height: 1;
}

.content_left,
.content_right {
  flex: 1 1 50%;
  box-sizing: border-box;
  height: 100%;
  gap: 20px;
}

.content_left {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}



/* Стили правой части */
.content_right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
}   

 .media_content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: auto;
    width: 100%;
    flex: 1 1 auto;
}

.registration_button {
    margin-top: 35px;
    width: var(--button-width);
    height: var(--button-height);
    background: var(--gradient-button-orange);
    color: var(--color-text-white);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-button);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.registration_button:hover {
    background:var(--background-color-white);
    color: var(--color-accent-yellow);
    border: 1px solid var(--color-accent-yellow);
}

.right_block_content {
    position: relative;
    justify-content: flex-start;
    top: -40px;
    left: 0;
    width: 130%;
}



.social_icons {
  position: absolute;
  width: 12%;
  height: 17%;
  top: 8%;
  right: 5%;
  z-index: 4;
  margin-top: var(--spacing-medium);
  display: flex;
  flex-direction: column;
  gap: 0px;
  justify-content: center;
  align-items: center;
}

.social_icon_container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
}

.social_icon_container a {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  border: 2px solid var(--color-accent-yellow);
  border-radius: 40%;
  background-color: var(--background-color-white);
  color: var(--color-accent-yellow);
  transition: background-color 0.3s ease,
              border-color 0.3s ease,
              color 0.3s ease,
              transform 0.2s ease;
}

.social_icon_container a:hover {
  background-color: var(--color-accent-yellow);
  border-color: var(--color-accent-yellow);
  color: var(--background-color-white);
  transform: translateY(-1px);
}

.social_icon_container a:active {
  transform: translateY(0);
}

/* для inline SVG */
.social_icon_container .icon {
  width: 100%;
  height: auto;
  display: block;
}





/*второй контейнер*/
.second_container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.promo_title {
    text-align: center;
    width: 100%;
    font-family: 'FiraGo', sans-serif;
}

.first_word {
    font-size: 36px;
    color: var(--h2-first-word-color);
}

.second_word {
    font-size: 36px;
    color: var(--h2-second-word-color);
}


.container_for_promo{
    display: flex;
    justify-content: center;
}

.promo_title {
    margin: 60px 0;
}

.promo_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    /* gap: 50px; */
}


.promo_image_girl {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 0px 5px;
}

.promo_image_girl img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.promo_column {
    padding: 0px 5px;
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    min-width:0;
    box-sizing: border-box;
}

.first_col,
.second_col,
.promo_image_girl {
  height: 100%;
}




.first_col {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 0;
    gap: clamp(4px, 2vh, 10px);
}

.block_1 {
    position: relative;
    padding: 10px;
    flex-wrap: wrap;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-accent-yellow);
    border-top-left-radius: 50px;
    border-top-right-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    border-bottom-left-radius: var(--border-radius);
    align-items: center;
}

.container_for_zigzag{
    position: absolute;
    top: -10px;
    left: -15px;
    width: 19%;
    height: auto; 
    border-radius: 100%;
    background-color: var(--background-color-white);
}


.zigzag_top {
    padding: 10px 10px 5px 0px;
    width: 100%;
}


h2.title_innovation {
    font-family: 'Pacifico', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: var(--color-text-white);
    margin: 4px  0;
}

h2.title_innovation_description {
    font-family: 'FiraGO', sans-serif;
    font-size: clamp(14px, 1.4vw, 16px);
    font-weight: 700;
    color: var(--color-text-grey);
    text-align: center;
    margin: 0 0 6px;
}


.innovation_list li {
    margin-bottom: 10px;
}


.innovation_list {
    font-family: 'FiraGO', sans-serif;
    font-size: clamp(14px, 1vw, 18px);
    font-weight: 200;
    color: var(--color-text-grey);
    margin: 0;
    margin-left: 20px;
    padding: 4px 0;
}

.block_2 {
    border: 2px solid var(--color-accent-yellow);
    border-radius: var(--border-radius);
    font-family: 'Pacifico', sans-serif;
    color: var(--color-text-grey);
    font-weight: 400px;
    width: 100%;
    font-size:clamp(16px, 1.8vw, 24px);
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 15px;
}


.block_border {
    border: 2px solid var(--color-accent-yellow);
    border-radius: var(--border-radius);
    width: 100%;
    height:auto;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.block_border p {
    font-family: 'Pacifico', sans-serif;
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 400;
    color: var(--color-text-grey);
    margin: 0;
    padding: 35px;
}

.second_col {
    height: 100%;
    border: var(--color-accent-yellow);
    border-radius: var(--border-radius);
    flex-direction: column;
    justify-content: space-between;
    display: flex;
    gap: clamp(6px, 2vh, 12px);
}



.block_1_last {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(148, 173, 151, 1);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    overflow: hidden;
}

.top_row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 2;
}

.corner_number {
    font-size: 26px;
    font-weight: bold;
    color: var(--color-text-white);
    font-family: 'Pacifico', sans-serif;
}

.corner_text {
    font-family: 'Pacifico', sans-serif;
    color: var(--color-text-grey);
    font-size: clamp(13px, 2vw, 17px);
    font-weight: 400;
    line-height: 1.2;
    white-space: pre-line;
    text-align: left;
}

.top_row p {
    font-family: 'Pacifico', sans-serif;
    color: var(--color-text-grey);
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 400;
    margin: 0;
    z-index: 2;
}

.text_white_col3 {
    font-family: 'Pacifico', sans-serif;
    color: var(--color-text-white);
    font-size: clamp(14px, 1.8vw, 18px);
    font-weight: 400;
    z-index: 2;
}

.bg_zigzag_middle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}


/* третий контейнер */
.third_container {
    width: 100%;
    display: flex;
    justify-content: center;
}


.third_container_content {
    background-color: var(--color-text-lightgrey);
    border-radius: var(--border-radius);
    display: flex; 
    flex-direction: column;
    align-items: center; 
    text-align: center;  
    margin: 40px auto;
    padding: 0 20px;
    padding-bottom: 60px;
    width: 100%;
}

.first_word_big {
    font-family: 'Pacifico', sans-serif;
    font-size:32px;
    font-weight: 700;
    color: var(--color-text-white);
    margin-bottom: 10px;
}

.second_word_small {
    font-family: 'FiraGo', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: var(--background-color-white);
}



.blocks_info {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    z-index: 2;
}

.block_info_1, .block_info_2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    width: calc(50% - 15px);
    box-sizing: border-box;
}


.info_item {
    background-color: var(--background-color-white);
    border-radius: var(--border-radius);
    font-family: 'Pacifico', sans-serif;
    color: var(--color-text-grey);
    font-size: clamp(18px, 2vw, 22px);
    width: 100%;
    padding: 10px 10px;
    z-index: 3;
}


.zigzag_large {
    position: absolute;
    z-index: 1;
    object-fit: cover;
    display: block;
    width: 100%;
    margin-top: 90px;
}



/* Четвертый контейнер */
.fourth_container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /* border: 2px solid black; */
}

.comments_title {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0 80px 0;
    font-family: 'FiraGo', sans-serif;
}

.comments_title .second_word {
    margin-left: 10px;
}

.fourth_container_content {
    display: flex;
    position: relative;
    width: 100%;
    justify-content: space-between;
    flex-direction: column;
}

.center_for_comments {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 100;
    /* border: 2px solid red; */
}

.container_for_comments {
    position:relative;
    overflow: hidden;
    width: 80%;
    margin-inline: auto;
    /* border: 1px solid blue; */
    border-radius: var(--border-radius);
    display: flex;
    padding: 10px 50px;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}

.comments_container {
    width: 100%; 
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: row;
    gap: 15px; 
    padding: 0px 30px; 
    box-sizing: border-box; 
    overflow: hidden;
    /* border: 2px solid red; */
    border-radius: var(--border-radius);
    transition: transform 0.5s ease;
    will-change: transform;
}

.comments_container > div {
    flex: 0 0 calc((100% - 30px) / 3); 
    box-sizing: border-box;
}

.high_blocks {
    display: flex;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
}

.high_block {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius);
}

.split_blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-shrink: 0;
    width: 100%;
}

.split_block {
    width: 100%;
    height: 180px;
    border-radius: var(--border-radius);
}

.high_block video,
.split_block video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.carousel_controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.carousel_button {
    width: 44px;
    height: 44px;
    border: 2px solid var(--color-text-lightgrey);
    background: var(--background-color-white);
    color: var(--color-text-lightgrey);
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
}

.carousel_button:hover {
    background-color: var(--color-text-lightgrey);
    color: var(--color-text-white);
}

.zigzag_comments_blog {
    position: absolute;
    width: 150%;
    left: -25%;
    top: 15%;
    z-index: 0;
}




/* пятый контейнер*/
.fifth_container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}


.div_gallery {
    position:relative;
    width: 100%;
    padding: 0 0;
    box-sizing: border-box;
    z-index: 1;
}

.gallery_first_row,
.gallery_second_row,
.gallery_third_row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;    
    margin-top: 16px;
    margin-bottom: 16px;

}



.photo_card {
    position: relative;
    width: 100%; 
    max-height: 100%;
    overflow: hidden;  
    padding: 10px 10px;
    box-sizing:border-box;
}



.photo_card_container{
    position: relative;
    height: 100%;
    border-radius: var(--border-radius);
}


.photo_card img {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius);  
}

.zigzag_invite_large {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 40%;
    left: 3%;
    z-index: 0;
}



.invite_card_item {
    position: relative;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--background-color-white);
    border-radius: var(--border-radius);
    border: 2px solid var(--color-accent-yellow);
}


.title_innovation_invite {
    font-family: 'Pacifico', sans-serif;
    color: var(--color-text-grey);
    font-size: clamp(22px, 20vh, 22px);
    font-weight: 400;
    text-align: center;
    align-items: center;
    width: min(280px, 80%);
}


.registration_button_invite {
    width:clamp(180px, 2vw, 280px);
    height: 40px;
    background: var(--gradient-button-orange);
    color: var(--color-text-white);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    border-radius: 13px;
    box-shadow: var(--shadow-button);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    margin: auto;
    margin-bottom: 10px;
    box-sizing: border-box;
}


.registration_button_invite:hover {
    background:var(--background-color-white);
    color: var(--color-accent-yellow);
    border: 1px solid var(--color-accent-yellow);
}

.container_for_zigzag_invite {
    position: absolute;
    top: -10px;
    left: -15px;
    width: 20%;
    height: auto;
    border-radius: 100%;
    background-color: var(--background-color-white);
    z-index: 2; 
}


.zigzag_invite_small {
    padding: 10px 10px 5px 0px;
    width: 100%;
    height: auto;
}




/* шестой контейнер, продукты */
.sixth_container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.price_title {
    width: 100%;
    text-align: center;
    font-family: 'FiraGo', sans-serif;
}

.price_title span {
    display: block;
}


.price_wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; 
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-top: 80px;
}



.container_for_product_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width:  100%;
    padding: 10px 10px;
}


.product_card {
    display: flex;
    flex-direction: column;
    border-radius: var(--border-radius);
    border: 1px solid var(--color-text-lightgrey);
    width: 100%;
    min-height: 550px;
}

.alt_border {
    border: 1px solid var(--color-accent-yellow);
}


.price_top_content {
    width: 100%;
}


.top_content {
    position: relative;
    width: 100%;
}



.price_card_bg{
    border-top-left-radius: var(--border-radius);
    border-top-right-radius: var(--border-radius);
    width: 100%;
    min-height: 160px;
    max-height: 180px;
    background-color: var(--color-text-lightgrey);
}
.price_card_bg.yellow {
    background-color: var(--color-accent-yellow);
}

.alt_bg_top .price_card_bg {
    background-color: var(--color-accent-yellow);
}


.price_card_photo{
    position: absolute;
    bottom: -5px;
    left: 55%;
    transform: translateX(-50%);
    object-fit: cover;
    width: clamp(280px, 2vw, 300px);
}

.price_card_photo img{
    width: 90%;
}

.price_card_bottom_content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 16px;
}

h2.product_title,
p.product_price,
p.period,
p.product_description {
    margin: 0;
}

p.product_description {
    font-family: 'FiraGo', sans-serif;
    font-weight: 500;
    color: var(--color-text-grey);
    flex-grow: 1;
    padding: 10px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 100px;
}

.card_footer {
  margin-top: auto;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}



h2.product_title {
    font-family: 'FiraGo', sans-serif;
    color: var(--color-text-grey);
    font-size: clamp(16px, 2vw, 24px);
    font-weight: 100;
    text-align: center;
    margin-top: 0;
    min-height: 48px;
    padding: 0 8px;
}

p.product_price {
    font-family: 'Pacifico',sans-serif;
    color: var(--color-text-lightgrey);
    font-size: 24px;
    font-weight: 100;
    text-align: center;
}

p.period {
    font-family: 'Pacifico',sans-serif;
    color: var(--color-text-lightgrey);
    font-size: 20px;
    text-align: center;
}



.card_footer .join_button {
    background: var(--gradient-button-orange);
    color: var(--color-text-white);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    height: 40px;
    width: clamp(180px, 2vw, 240px);
    border: none;
    text-decoration: none;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-button);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.join_button:hover {
    background:var(--background-color-white);
    color: var(--color-accent-yellow);
    border: 1px solid var(--color-accent-yellow);
}




/* седьмой контейнер FAQ*/
.seventh_container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 30px;
}

.faq_container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  width: 100%;
  margin-top: 50px;
}

.faq_box { 
    width: 100%;
    padding: 10px;
 }


.faq_title { text-align: center; }
.faq_title .second_word { margin-left: 10px; }
.faq_title {
    font-family: 'FiraGo', sans-serif;
}

.faq_question {
  width: 100%;
  background-color: rgba(245, 245, 245, 1);  
  border-radius: var(--border-radius, 12px);
  color: var(--color-text-grey);   
  margin-bottom: 10px;
  padding: 0 16px;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}


.faq_question[open] {
  background-color: var(--color-text-lightgrey);
  color: var(--color-text-white);
}



.faq_header {
    list-style: none;
    -webkit-user-select: none;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    padding: 12px 0;
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
}

/* убрать маркер summary */
.faq_header::-webkit-details-marker { display: none; }
.faq_header::marker { content: ""; }

.faq_header h3 {
    margin: 0;
    font-size:clamp(12px, 4vw, 26px);
    font-weight: 400;
    font-family: 'Pacifico', sans-serif;
    transition: color 0.3s ease;
}

/* ===== Arrow ===== */
.faq_arrow_svg {
    width: 26px; 
    height: 26px;
    padding: 3px;
    background-color: var(--color-text-lightgrey);
    border-radius: 50%;
    flex: 0 0 auto;

    color: var(--color-text-white);
    transition: transform 0.3s ease,
              background-color 0.3s ease,
              border-color 0.3s ease,
              color 0.3s ease;
}


.faq_question[open] .faq_arrow_svg {
    transform: rotate(180deg);
    background-color: var(--color-text-white);
    color: var(--color-text-lightgrey); 
}



/* ===== Answer ===== */
.faq_answer {
    font-family: 'FiraGo', sans-serif;
    font-size: 14px;
    font-weight: 100;
    color: var(--color-text-grey); 
    line-height: 1.5;
    max-height: 0; 
    overflow: hidden;
    transition: max-height 0.3s ease, color 0.3s ease, padding 0.3s ease;
    padding: 0;
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 0 12px;
}

.faq_question[open] .faq_answer {
    max-height: 500px;
    padding-top: 8px;
    color: var(--color-text-grey);
}

/* ===== Focus ===== */
.faq_header:focus-visible {
    box-shadow: 0 0 0 3px rgba(0,0,0,.15);
    border-radius: 8px;
}

.modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 2;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
  user-select: none;
}

.modal-nav.left {
  left: 30px;
}

.modal-nav.right {
  right: 30px;
}




/* 
* {
  outline: 1px solid rgba(255, 0, 0, 0.3);
}
html, body {
  overflow-x: hidden;
} */




@media (prefers-reduced-motion: reduce) {
  .faq_answer, .faq_arrow_svg, .faq_question { transition: none; }
}



@media (max-width: 460px) {
  .price_card_photo {
    bottom: 0px; 
    width: 145%; 
    max-width: 250px;
  }

  .price_card_bg {
    min-height: 150px;
    /* max-height: 140px; */
  }
}

@media screen and (min-width: 991px) and (max-width: 1200px) {
  .zigzag_content_left {
    left: 200px;
  }
    
}

@media (max-width: 425px) {
  .text_gold_description {
    display: block;
    white-space: nowrap;
    margin-bottom: 4px;
  }

  .text_white_description {
    display: block !important;
    white-space: normal !important;
    word-break: break-word;
    overflow-wrap: break-word;
    width: 100%;
  }

  .hero_subtitle_container {
    flex-wrap: wrap;
  }
}





@media screen and (max-width: 1024px) {
  .content_right {
    overflow: hidden;
  }

  .social_icon_container {
    width: 100%;
    height: 100%;
    gap: 6px;
  }

  .social_icons {
    top: 5%;
  }
}



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

  .text_gold,
  .text_white {
    color: var(--color-accent-yellow);
  }

  .right_block_content {
    object-fit: cover;
    margin-top: 35px;
  }

 
  .comments_container {
    width: 240%;
    
  }

  .social_icons {
    top: 12%;
  }

}




@media screen and (min-width: 992px) {
  .main_content {
    overflow: visible;
  }


  .container_for_comments {
    width: 100%;
  }
}



@media screen and (max-width: 767px) {
  .promo_column {
    flex: 1  100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .container_for_zigzag_invite {
        width: 13%;
        left: 1%;
    }
    .promo_image_girl {
        margin-bottom: 20px;

    }

  .first_col  {
        /* margin-top: 5px; */
        /* margin-bottom: 10px; */
    }

    .block_1 {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .block_2 {
        margin-top: 10px;
        margin-bottom: 10px;
    }


    .second_col {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    
    .block_border {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .block_1_last {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .scoail_icon_container {
        gap: 110px;
    }


    .social_icons {
        top: 11%;
    }

    .column_2 {
        padding-left: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: 0 auto;
        max-width: 90%;
    }

    .column_2 p,
    .column_2 .text_white {
        text-align: center;
    }

    .block_info_1,
    .block_info_2 {
        width: 100%;
        padding: 20px 10px; 
    }

    .zigzag_large {
        display: none;
    }

}

@media (min-width: 768px) {
  .br768::before {
    content: "\A";
    white-space: pre;
  }
}


@media (max-width: 425px) {
    .registration_button_invite {
        margin-top: 20px;
    }

    .social_icons {
        top: 8%;
    }

    .block_border {
    order: 2;
  }

  .block_1_last {
    order: 1;
  }
}


@media (min-width: 992px) and (max-width: 1023px) {
  .social_icons {
    top: 20%; 
  }
}

@media (min-width: 1024px) and (max-width: 1080px) {
  .social_icons {
    top: 15%;  
  }
}

@media (min-width: 1081px) and (max-width: 1230px) {
  .social_icons {
    top: 12%;
  }
}


@media (min-width: 768px) and (max-width: 991px) {
  .container_for_zigzag_invite {
    width: 10%;
  }
}


@media (min-width: 992px) and (max-width: 1140px){
    .title_innovation_invite {
        font-size: 16px;
    }
}


@media (min-width: 1142px) and (max-width: 1440px){
    .title_innovation_invite {
        font-size: 19px;
    }
}

@media (min-width: 1440px) and (max-width: 1920px){
    .title_innovation_invite {
        font-size: 25px;
    }
}