/*//////// HTML TAGS ////////*/

html, body, div, nav, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
  font-family: "GolosText";
	vertical-align: baseline;
  list-style: none;
  
    
}

strong{
  font-weight: 600;
}


a:hover{
  text-decoration: none;
}

input::placeholder{
  color: #727272;
}

/*
display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
*/

html{
  overflow: visible;
  width: 100%;
  min-width: 300px;

  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;

  position:relative;
}

body{
    overflow-x: hidden;
    height: 100%;
    width: 100vw;
    max-width: 1920px;
    min-height: calc(100vh - 268px);

    /*background-color: blueviolet;
    display: flex;
    flex-flow: column nowrap;
    min-height: 100vh;*/
}

.body_for_footer{
  margin-bottom: 268px;
}

body::-webkit-scrollbar {
  width: 3px;
}

body::-webkit-scrollbar-track {
  -webkit-box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.2) inset;
  background-color: #f9f9fd;
  border-radius: 10px;
}

body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(180deg, #fb4700, #ea0000);
}



.all_button{  
  -webkit-box-shadow: 0px 4px 8px 2px rgba(34, 60, 80, 0.09);
  -moz-box-shadow: 0px 4px 8px 2px rgba(34, 60, 80, 0.09);
  box-shadow: 0px 4px 8px 2px rgba(34, 60, 80, 0.09);
  cursor: pointer;
  transition: .5s;

  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;

  color: white;
  background-color: #FF1E30;
}

.all_button:hover{
  color: rgb(245, 245, 245);
  background-color: #ae2121;
} 

.all_button:focus {
  outline: none;
  border: none;
}

.grey_button{
  color: #727272;
}
.grey_button:hover{
  color: #414141 !important;
}
.grey_button:focus {
  outline: none;
  border: none;
}
.grey_button:visited{
  color: #727272;
}

.red_button{
  color: #FF1E30;
}
.red_button:hover{
  color: #812020 !important;
}
.red_button:focus {
  outline: none;
  border: none;
}
.red_button:visited{
  color: #FF1E30;
}

.back_button {
  color: #575757;
  font-size: 14px;
  margin-top: 18px;
  text-decoration: none;
  width: 80px;
}


/*Переключатель cлайдер*/

.input_switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.input_switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.input_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.input_slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .input_slider {
  background-color: #ee4352;
}

input:focus + .input_slider {
  box-shadow: 0 0 1px #ee4352;
}

input:checked + .input_slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Закругленные ползунки */
.input_slider.input_round {
  border-radius: 34px;
}

.input_slider.input_round:before {
  border-radius: 50%;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .mobile_ver{
    display: none !important;
  }

  .mobile_ver_big{
    display: none !important;
  }

  body {
    font-family: sans-serif;
    width: 100%;
    height: 100%;
    background-color: rgb(248, 248, 248);
    color: white;
    
  }  
  
  header {
    
    --percent-height: 100%;
    width: 100%;
    max-width: 1920px;

    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    z-index: 2000;
    background-color: rgb(248, 248, 248);
  }
  
  nav {
    width: 94%;
    max-width: 1440px;
    max-height: 60px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content:space-between;

  }

  nav.info_nav{
    width: 94%;
    max-width: 1440px !important;
    max-height: 200px;
    margin: 0 auto;

    flex-direction: column;
    align-items: unset;
    justify-content: unset;
  }

  nav.auth{
    display: flex;
    align-items: center;
    justify-content:space-between;
  }

  nav .nav_up_panel{
    display: flex;
    align-items: center;
    justify-content:space-between;
  }
  
  nav .nav_down_panel{
    border-top: 0px solid #e3e3e3;
    padding-top: 0px;
    margin-top: 0px;
  }
  
  nav > a img {
    width: 100px;
  }

  .header_button{
    min-width: 210px;
    border-radius: 24px;
    height: 40px;
  }
  
  .header__list {
    width: 100%;
    display: flex;
    grid-gap: 8px;
    justify-content:space-between;
    transition: .7s;
  }
  
  li a {
    margin-left: 3px;
    margin-right: 3px;
    white-space: nowrap;
    color: black;
    text-decoration: none;
    font-size: min(calc(12px + 0.4vw), 20px);

    transition: 0.4s;
  }

  li a:hover{
    color: #ab3232;
  }
  
  .nav_logo{
    display: flex;
  }

  .nav_logo_img{
    margin-top: auto;
    margin-bottom: auto;
    height: auto;
    width: 380px; /*min(calc(75px + 10vw), 320px);*/
    /*filter: invert(14%) sepia(32%) saturate(6799%) hue-rotate(337deg) brightness(102%) contrast(90%);*/
  }

  .burger_label {
    display: none;
  }
  
  #burger-toggle {
    display: none;
  }


  .account_container{
    position:relative;
    display: flex;
  }

  .account{
    
    /*width: min(calc(2px + 3.15vw), 40px);*/
    /*height: min(calc(2px + 3.15vw), 40px);*/
    height: 100%;
    right: 0;
    margin-left: auto;
    background-color: none;
    border-radius: 26px;
    cursor: pointer;

    display: flex;
    flex-wrap: nowrap;
    align-items: center;

    background-color: #fff;

    padding: 10px 10px;

    max-width: 240px;

    -webkit-box-shadow: 0px 3px 11px -1px rgba(34, 60, 80, 0.14);
    -moz-box-shadow: 0px 3px 11px -1px rgba(34, 60, 80, 0.14);
    box-shadow: 0px 3px 11px -1px rgba(34, 60, 80, 0.14);
  }
  
  .account_img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color:#FF1E30;
    object-fit: contain;

    margin-right: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
  }

  .account_FIO{
    color: black;
    max-width: 140px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .account_chevron{
    background-color: unset;
    transform: rotate(90deg);
    margin-right: 0px;
    margin-left: 6px;
  }

  .account_dropdawn_container{
    position: absolute;
    right: 0;
    top: 110%;
    /*width: 15vw;*/
    max-width: 260px;
    min-width: 260px;
    max-height: 0px;
    overflow: hidden;
    transition: max-height 0.5s;
    z-index: 1000;
  }

  .account_dropdawn_container.open_dropdawn{
    max-height: 400px;
    -webkit-box-shadow: 0px 4px 8px 2px rgba(34, 60, 80, 0.09);
    -moz-box-shadow: 0px 4px 8px 2px rgba(34, 60, 80, 0.09);
    box-shadow: 0px 4px 8px 2px rgba(34, 60, 80, 0.09);
  }

  .account_dropdawn{
    

    background-color: #fff;

    padding-left: 24px;
    padding-right: 24px;
    padding-top: 14px;
    padding-bottom: 14px;

    border-radius: 8px;

    -webkit-box-shadow: 0px 4px 8px 2px rgba(34, 60, 80, 0.09);
    -moz-box-shadow: 0px 4px 8px 2px rgba(34, 60, 80, 0.09);
    box-shadow: 0px 4px 8px 2px rgba(34, 60, 80, 0.09);
  }

  .account_dropdawn hr{
    border-top: 1px solid #d6d6d6;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .user_info{
    color: #000;
    display: flex;
    align-items: center;
    grid-gap: 10px;
    overflow: hidden;
  }

  .user_info_text_container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    white-space: nowrap;
    overflow: hidden;

    row-gap: 6px;
  }

  .account_dropdawn_img{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color:#FF1E30;

    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;

    color: white;
  }

  .account_username{
    color: #000;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: start;
    width: 100%;
  }

  .user_control{
    color: #000;
    display: flex;
    flex-direction: column;

  }

  .user_control_el{
    font-size: 16px;
    color: #000;
    cursor: pointer;

    margin-top: 8px;
    margin-bottom: 8px;

    display: flex;
    align-items: center;

  }

  .user_control_el:hover{
    font-weight: 700;
    color: #812020;
  }

  .user_control_el:hover .user_control_link{
    font-weight: 700;
    color: #812020;
  }

  .user_control_el:hover .dashboard_list_icon{
    font-weight: 700;
    color: #812020;
  }

  .exit_control_el .user_control_link{
    color: #FF1E30;
  }

  .exit_control_el .dashboard_list_icon{
    color: #FF1E30;
  }

  .user_control_el:hover .user_control_link{
    font-weight: 700;
    color: #812020;
  }

  .user_control_el:hover .dashboard_list_icon{
    font-weight: 700;
    color: #812020;
  }

  .user_control_link{
    margin-left: 12px;
    text-decoration: none;
    color: #000;
  }

  .invisible {
    display: none;
  }

  .button_account{
    display: none;
  }

  .reg_auth_button{
    font-size: min(calc(8px + 0.6vw), 20px);
    width: 100%;

    max-width: 400px;

    height: 25%;
    max-height: 50px;
    min-height: 35px;
    border: none;
    border-radius: 8px;

    padding-left: 30px;
    padding-right: 30px;
  }

  main{
    min-height: 100px;
    max-width: 1920px;
    height: 100%;
    width: 100%;
    background-color: rgb(248, 248, 248);
  }

.main_section{
  width: 92%;
  max-width: 1440px;
  /*min-height: 100vh;*/
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.main_white_block{
  color: #000;
  background-color: #fff;
  border-radius: 24px;
  min-height: 100px;

  padding: 32px 32px;


  -webkit-box-shadow: 0px 4px 8px 2px rgba(34, 60, 80, 0.09);
  -moz-box-shadow: 0px 4px 8px 2px rgba(34, 60, 80, 0.09);
  box-shadow: 0px 4px 8px 2px rgba(34, 60, 80, 0.09);
}


.main_section_h2_inbox{
  font-size: min(calc(16px + 2vw), 44px);
  color: #000;
  font-weight: 600;

}



/* GREETINGS */
.greetings{
  margin-top: 30px;
  position: relative;
}

.greetings_video{
  height: 80vh;
  max-height: 640px;

  overflow: hidden;

}

.greetings_video_media{
  height: 100%;
  width: 100%;
  filter: brightness(0.74);
  object-fit: cover;
  object-position: 50% 50%;

  
}

.greetings_text{
  color: #fff;
  
  left: 32px;
  bottom: 50%;/*148px;*/
  transform: translateY(50%);

  position: absolute;

  font-size: min(calc(14px + 3vw), 72px);
  font-weight: 600;

  white-space: nowrap;
  opacity: 0;
  animation: greetings 2.5s forwards;
}

.greetings_button{

  left: 32px;
  bottom: 48px;

  position: absolute;
  color: #fff;
  border: 2px solid #fff;
  font-size: 24px;

  border-radius: 48px;

  padding: 16px 76px;
}

.greetings_button:focus {
    outline: none;
    border: none;
  }

.greetings_button:hover{
    outline: 2px solid #9E2032;
    background-color: #9E2032;
    color: #fff;
    border: 2px solid #ffffff00;
}


.greetings_img{
  justify-self: end;
  grid-area: img;

  background-size: no-repeat;
  background-position: center;
  background-size: cover;

  width: calc(30px + 30vw);
  height: calc(60px + 35vw);
  max-width: 550px;
  max-height: 650px;
  box-shadow: 0 0 32px 32px rgb(248, 248, 248) inset;
  background-image: url("../img/greetings_page.png");

  opacity: 0;
  animation: greetings 2.5s forwards;
}
@keyframes greetings {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

/* reception company */

.reception_company{
  margin-top: 20px;
  display: flex;
  gap: 16px;
}


.reception_company_links_container{
  display: flex;
  flex-direction: column;

  font-size: 18px;
}

.reception_company_links_container a{
  margin-top: 12px;
  color: #9E2032;

  display: flex;
  flex-direction: row;
  align-items: center;

  transition: ease-in-out .2s;
}

.reception_company_links_container h5{
  font-size: 30px;
  margin-bottom: 6px;
}

.reception_company_links_container a:hover{
  color: #812020;
}

.reception_company_links_container a img{
  height: 18px;
  width: 18px;
  filter: invert(16%) sepia(85%) saturate(2163%) hue-rotate(332deg) brightness(93%) contrast(95%);

  margin-right: 12px;
  transform: rotate(270deg);

  transition: ease-in-out .2s;
}

.reception_company_links_container a:hover img{
  filter: invert(19%) sepia(20%) saturate(7155%) hue-rotate(348deg) brightness(85%) contrast(85%);
}




.RC_red a{
  color: #fff;
}

.RC_red a img{
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(61deg) brightness(103%) contrast(102%);
}

.RC_red a:hover{
  color: #dfdfdf;
}

.RC_red a:hover img{
  filter: invert(99%) sepia(4%) saturate(0%) hue-rotate(170deg) brightness(96%) contrast(90%);
}

/* CHOICE OF DIRECTION */

.choice_of_direction{
  /*border: 1px solid #dee2e6;*/
  margin-top: 120px;
  border-radius: 0rem;
  background-color: white;
  padding-top: 2rem;
  padding-bottom: 2rem;

  /*
  -webkit-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
  */
}

.choice_of_direction_text{
  
  padding: 1.5rem;
  font-size: min(calc(16px + 2vw), 52px);
  color: black;
  
}
  

.tab_container {
  
  padding: 1.5rem;
  
}

.tab {

  height: 100%;
  display: grid;
  grid-template-areas: "label_1  label_2 label_3 label_4" /*label_5*/
    "content content content content";

  /*display: flex;
  flex-wrap:wrap;*/

  justify-content: space-evenly;
  gap: 1rem;
}

.input_radio[type="radio"] {
  display: none;
}

.tab-content {
  grid-area: content;
  display: none;
  width: 100%;
  margin-top: 1rem;
  color: black;
  padding-left: 50px;
  padding-right: 50px;
  
}

#tab-btn-1:checked~#content-1,
#tab-btn-2:checked~#content-2,
#tab-btn-3:checked~#content-3,
#tab-btn-4:checked~#content-4,
#tab-btn-5:checked~#content-5 {
  display: grid;
  grid-template-columns: 0.75fr 0.25fr;
  grid-column-gap: 40px;
  height: 100%;

  animation: ani 1s forwards;
}

#tab-btn-1:checked~#tab-lbl-1,
#tab-btn-2:checked~#tab-lbl-2,
#tab-btn-3:checked~#tab-lbl-3,
#tab-btn-4:checked~#tab-lbl-4,
#tab-btn-5:checked~#tab-lbl-5 {
  color:#ea0000;
}

#tab-btn-1:checked~#tab-lbl-1::after,
#tab-btn-2:checked~#tab-lbl-2::after,
#tab-btn-3:checked~#tab-lbl-3::after,
#tab-btn-4:checked~#tab-lbl-4::after,
#tab-btn-5:checked~#tab-lbl-5::after {
  position: absolute;

  content: '';
  bottom: -2px;
  margin-top: 0px;
  display: block;
  width: 0%;
  left: 50%;
  transform: translateX(-50%);
  height: 0.125rem;
  background: #ea0000;
  transition: width 0.4s ease-out;

  width: 100%;
}








@keyframes ani {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

.label_1{
  grid-area: label_1;
}

.label_2{
  grid-area: label_2;
}

.label_3{
  grid-area: label_3;
}

.label_4{
  grid-area: label_4;
}

.label_5{
  grid-area: label_5;
}


.label_tab {

  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  cursor: pointer;
  /*transition: color .15s ease-in-out, border-color .15s ease-in-out;*/
  color: black;
  background: 0 0;
  font-size: calc(12px + 0.3vw);

  text-align: center;

  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  position: relative;

  border-bottom: 0.125rem solid #dee2e6;
  border: 100%;

  display: flex;
  justify-content: center;

  flex-shrink: 1;
  flex-grow: 1;
  word-break: normal;


}
.label_tab::after{
  position: absolute;

  content: '';
  bottom: -2px;
  margin-top: 0px;
  display: block;
  width: 0%;
  left: 50%;
  transform: translateX(-50%);
  height: 0.125rem;
  background: #000;
  transition: width 0.4s ease-out;
}


.label_tab:hover:after,
.label_tab:focus:after {
  width: 100%;  
}




.label_tab:hover {
  /*border-bottom-color: black;
}

.input_radio[type="radio"]:checked + label {
  cursor: default;
  font-weight: bold;
  color: #212529;
  /*border-bottom-color: #212529;*/
}

.tab-content-img{
  width: 100%;
  height: 100%;
}


.tab-content-info{
  position: relative;
}

.tab-content-info-text{
  font-size: min(calc(1.5vw), 32px);
}

.tab-content-info-button{

  max-width: 400px;
  width: 70%;
  height: 25%;
  max-height: 60px;
  min-height: 30px;
  border: none;
  border-radius: 28px;
  font-size: min(calc(6px + 1vw), 24px);
  

  position: absolute;
  bottom: 0;


  color: white;
  
}


/* TEST */

.details {
  color: #000;
  position: relative;
  display: block;
  max-width: 650px;
  margin: 0 auto 18px;
  background: rgba(255,255,255,0.5);
  border-radius: 5px;
  transition: .6s;
  overflow: hidden;
}

.details::after {
  position: absolute;
  right: 24px;
  top: 22px;
  bottom: 0;
  content: "";
  width: 14px;
  height: 14px;
  border-right: 3px solid #ab3232;
  border-bottom: 3px solid #ab3232;
  transform: rotate(-45deg);
  transform-origin: center;
  transition: .6s;
  
}

.details[open]::after {
  transform: rotate(45deg);
}

.details[open] {
  padding-bottom: 100px;
}

.details[open] .details__title {
  margin-bottom: 32px;
}

.details__title {
  background: #fff;
  border-radius: 5px;
  padding: 12px 24px;
  font-size: calc(8px + 2vw);
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  transition: .6s;
  min-height: 60px;
  display: flex;
  align-items: center;
}

.details__title::-webkit-details-marker {
  display: none;
}

.details__content {
  padding: 0 32px;
  font-size: 18px;
  margin-bottom: -50px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.details__content p:last-child {
  margin-bottom: 0;
}
.details__content p:first-child {
  margin-top: 0;
}

/* MOBILE TAB CONTENT*/

.choice_of_direction_mob{
  display: none;
}

.tab-content-img_mod{
  max-width: 400px;
  width: 100%;
  height: 100%;
}

.tab-content-info_mod{
  position: relative;
  display: flex;
  flex-flow: wrap;
  position: relative;
  justify-content: center;
  order: 2;
}

.tab-content-info-text_mod{
  text-align: center;
  margin-top: 35px;
  font-size: calc(4px + 3vw);
  width: 100%;
}

.tab-content-info-button_mod{


  margin-top: 30px;
  width: 100%;
  height: 60px;
  border: none;
  border-radius: 28px;
  max-width: 400px;
  position: relative;
  bottom: 0;

  max-width: 400px;
  max-height: 60px;
  min-height: 30px;
  font-size: calc(8px + 2vw);

  color: white;
  
}








.news{
  margin-top: 10rem;
  margin-bottom: 2rem;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}



.news_h2{
  color: #000;
  font-size: min(calc(16px + 2vw), 52px);
}

.news_button{
  max-width: 300px;
  min-width: 130px;
  width: 22%;
  height: 100%;
  max-height: 60px;
  min-height: 45px;
  border: none;
  border-radius: 28px;
  font-size: min(calc(6px + 1vw), 24px);
  bottom: 0;

  justify-self: flex-end;
  align-self: flex-end;

  color: white;
  
  
}

.slider{

  width: 100%;
  color: #000;
  /*background-color: #fb4700;*/
  margin-left: auto;
  margin-right: auto;
  margin-top: min(calc(32px + 4vw),150px);

  margin: 0px auto;
  position: relative;
  overflow: hidden;

}

.slider_line{

  position: absolute;
  display: flex;

  transition: all ease 1s;
}

.slider_elem{
  
  /*background-color: aqua;
  border:5px solid black;*/
  padding: min(calc(4px + 3vw),24px) min(calc(4px + 3vw),24px) min(calc(4px + 3vw),24px) min(calc(4px + 3vw),24px);
  
}

.slider_elem_content{
  height: 100%;
  width: 100%;
  background-color: white;
  
  overflow: hidden;
  border-radius: 24px;

  -webkit-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
}

.slider_elem_info{
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  margin-left: 14px;
  margin-right: 14px;
  font-size: min(calc(4px + 0.7vw), 16px);
}

.slider_elem_date{
  color: #6e6e6e;
  display: flex;
  align-items: center;
}

.slider_elem_type{
  background-color: #ab3232;
  color: white;
  border-radius: 16px;
  padding-right: 10px;
  padding-left: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.slider_elem_img_container{
  background-color: blue;
  overflow: hidden;
  width: 100%;
  height: 25vw;
  max-height: 480px;
  display:flex;
  justify-content: center;
  align-items: center;
}

.slider_elem_img{
  width: 100%;
  object-fit: cover;
  display: block;
  /*
  width: 100%;
  height: 60%;
  max-height: 360px;
  object-fit: cover;
  */
}

.slider_elem_text{
  margin-left: 18px;
  margin-right: 18px;
  margin-top: 16px;
  margin-bottom: 20px;
  font-size: min(calc(6px + 1vw), 22px);
  font-weight: bold;
  color: #000;
}



.slider-prev{
  margin-right: 32px;
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
}

.slider-next{
  margin-left: 32px;
  padding: 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
}


.slider-prev:focus {
  outline: none;
  border: none;
}

.slider-next:focus {
  outline: none;
  border: none;
}

.long-arrow-right,
.long-arrow-left{
  display: block;
  margin: 0px auto;
  height: 100%;/*
  border-top: 2px solid #000;
  border-left: 2px solid #000;
  */
  transition: .25s;
  cursor: pointer;
}

.long-arrow-right:hover,
.long-arrow-left:hover{
  filter: invert(17%) sepia(31%) saturate(3378%) hue-rotate(336deg) brightness(107%) contrast(96%);
}

/*
.long-arrow-right::after,
.long-arrow-left::after{
  content: "";
  display: block;
  width: 2px;
  height: 45px;
  background-color: black;
  transform: rotate(-45deg) translate(15px, 4px);
  left: 0;
  top: 0;

  transition: .5s;
}

.slider-next:hover .long-arrow-right{
  border-top: 2px solid #ab3232;
  border-left: 2px solid #ab3232;
}
.slider-next:hover .long-arrow-right::after{
  background-color: #ab3232;
}

.slider-prev:hover .long-arrow-left{
  border-top: 2px solid #ab3232;
  border-left: 2px solid #ab3232;
}
.slider-prev:hover .long-arrow-left::after{
  background-color: #ab3232;
}

.long-arrow-right{
  transform: rotate(135deg);
}

.long-arrow-left{
  transform: rotate(-45deg);
}
*/



/* Новый слайдер */

.new_news{
  
  margin-top: 130px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: 100%;
  min-width: 0px;
  max-width: 1920px;
  overflow-x: hidden;
  min-height: 0px;
  max-height: 1440px;
  
}

.slider_up_panel{
  display: flex;
  justify-self: center;
  justify-content: space-between;
  margin-top: 18px;
  margin-left: min(calc(4px + 2vw),38px);
  margin-right: min(calc(4px + 2vw),38px);
  font-size: min(calc(6px + 1vw), 24px);
  width: 80%;
}

.slider_new{
  margin-top: 45px;
  position: relative;
  width: 115%;
  
  margin-left: 60px;
}

.slider_new .slick-track {
  display: flex;
  height: 100%;
}
.slider_new .slick-track .slick-slide {
  display: flex;
  height: auto;
  align-items: center;
  justify-content: center;
  
}

.slider_new .slick-slide{
  width: auto;
}


.slider_item_content{
  display: flex;
  height: 100%;
  align-items: stretch;
  /*
  max-width: 360px;
  max-height: 504px;
  width: 25vw;
  height: 35vw;
  */
  
}

.slider_item_card{
  background-color: white;
  
  overflow: hidden;
  border-radius: 24px;

  -webkit-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);

  
  width: 40vw;
  height: 100%; /*38vw;*/

  /*
  padding-left: 10px;
  padding-right: 10px;
  */

  margin-right: 20px;
  /*
  min-width: 476px;
  min-height: 489px;
  */
}

.slider_buttons{
  margin-top: 42px;
  height: 34px;
  display: flex;
  justify-content: flex-end;
  margin-right: 14%;
}

.new_news .slick-arrow{
  position: absolute;
  top: 106%;
  z-index: 10;
  left: 0; 
  right: 0; 
  margin-inline: auto;
  width: 100px;


}

.new_news .slick-prev{
  margin-left: 100px;
}

/* Слайдер для банеров*/

.slider_banner{
  position: relative;
  width: 100%;

  border-radius: 24px;
  overflow: hidden;
}

/*Версия с сохранением сторон*/
.slider_banner_contant_container{
  
  width: 100%;


  position: relative;
  overflow: hidden;

  aspect-ratio: 2 / 1;

}

.slider_banner_contant_img{
  width: 100%;
  height: auto;

  margin: auto;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;

}

/*Версия с обрезанием по бокам
.slider_banner_contant_container{
  
  width: 100%;
  height: 460px;

  position: relative;
  overflow: hidden;

  display: grid;
  place-items: center;
}

.slider_banner_contant_img{
  width: 100%;
  min-width: 1110px;
  height: auto;

  
  position: absolute;
  
}*/


.slider_banner_contant_text{
  font-size: 24px;
  position: absolute;
  width: 100%;
  height: 40%;
  bottom: 0;
  background: linear-gradient(rgba(154, 52, 4, 0.25), rgb(0, 0, 0, 0.8));
  box-shadow: 0px 0px 40px 40px rgba(154, 52, 4, 0.25);

  padding-left: 8%;
  padding-right: 8%;

  z-index: 20;

  font-family: 'centurygothic';
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  color: white;
}

.slider_banner_contant_text h3{
  margin-bottom: 10px;
  font-size: min(calc(16px + 2vw), 48px);
}

.slider_banner_contant_text p{
  font-size: min(calc(8px + 1vw), 24px);
  margin-bottom: 32px;
}

.slider_banner_contant_text p{
  font-family: 'centurygothic';
}

.slider_banner_button{
  position: absolute;
  
  width: 44px;
  height: 44px;
  
  top: calc(50% - 22px);
  bottom: calc(50% - 22px);

  border-radius: 50%;

  background-color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0%;
  transition: .5s;

  cursor: pointer;

  -webkit-box-shadow: 0px 0px 8px -1px rgba(34, 60, 80, 0.2);
  -moz-box-shadow: 0px 0px 8px -1px rgba(34, 60, 80, 0.2);
  box-shadow: 0px 0px 8px -1px rgba(34, 60, 80, 0.2);
  
}

.slider_banner_button:hover{
  opacity: 100%;
  filter: brightness(93%)
}

.slider_banner:hover ~ .slider_banner_button{
  opacity: 100%;
}

.slider_banner_button_next{
  right: -22px;
}
.slider_banner_button_next_img{
  filter: brightness(0) saturate(100%) invert(23%) sepia(78%) saturate(5123%) hue-rotate(345deg) brightness(100%) contrast(100%);
  background: url(../img/chevron_right.svg) 0 0 / 100% no-repeat;
  width: 70%;
  height: 70%;
}

.slider_banner_button_prev{
  left: -22px;
}
.slider_banner_button_prev_img{
  filter: brightness(0) saturate(100%) invert(23%) sepia(78%) saturate(5123%) hue-rotate(345deg) brightness(100%) contrast(100%);
  background: url(../img/chevron_right.svg) 0 0 / 100% no-repeat;
  transform: rotate(180deg);
  width: 70%;
  height: 70%;
}

.slider_banner_dots{
  display: flex;
  justify-content: center;
}
.slider_banner_dots .slick-dots{
  height: 25px;
  
  display: flex;
  column-gap: 12px;

  bottom: 20px;
  /* коррекция положения элемента */
}
.slider_banner_dots .slick-dots li{
  list-style: none;
}

.slider_banner_dots .slick-dots button{
  font-size: 0;
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background-color: #bbbbbb;
  transition: .3s;

  cursor: pointer;
}

.slider_banner_dots .slick-dots button:focus{
  outline: none;
  border: none;
}

.slider_banner_dots .slick-dots li.slick-active button{
  background-color: #FF1E30;
  width: 14px;
  height: 14px;
}





.slider_banner .slick-arrow{
  position: absolute;
  top: 0;
  z-index: 10;
  font-size: 0;
  width: 60px;
  height: 60px;
  
  background-color: transparent;
  border: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  appearance: none;
  
  cursor: pointer;
  
  opacity: 50%;
  transition: .5s;

  top: calc(50% - 30px);
  bottom: calc(50% - 30px);

}

.slider_banner .slick-arrow:hover{
  opacity: 100%;
}

.slider_banner .slick-arrow:focus {
  outline: none;
  border: none;
}


.slider_banner .slick-arrow.slick-prev{
  background: url(../img/chevron_round_right.svg) 0 0 / 100% no-repeat;
  background-color: #FF1E30;
  transform: rotate(180deg);

  left: -30px;
}
.slider_banner .slick-arrow.slick-next{
  background: url(../img/chevron_round_right.svg) 0 0 / 100% no-repeat;
  background-color: #FF1E30;
  right: -30px;
}

.slider_banner .slick-track {
  display: flex;
  height: 100%;
}

.slider_banner .slick-list{
  overflow: hidden;
  height: 100%;
}

.slider_banner .slick-list:active{
  cursor: grabbing;
}

.slider_banner .slick-dots{
  height: 25px;
  
  display: flex;
  column-gap: 12px;

  position: absolute;
  bottom: 20px;
  left: 50%;
  /* коррекция положения элемента */
  transform: translate(-50%, -50%);
}

.slider_banner .slick-dots li{
  list-style: none;
}

.slider_banner .slick-dots button{
  font-size: 0;
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background-color: #fff;

  cursor: pointer;
}

.slider_banner .slick-dots button:focus{
  outline: none;
  border: none;
}

.slider_banner .slick-dots li.slick-active button{
  background-color: #FF1E30;
  width: 14px;
  height: 14px;
}




.additional_programs{
  margin-top: 20px;
  color: #000;
  height: auto;
}

.additional_programs_h2{
  margin-bottom: 75px;
  text-align: center;
  font-size: min(calc(16px + 2vw), 44px);
}

.additional_programs_blocks_list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: calc(4px + 2vw);
}

.additional_programs_block{
  position: relative;
  transition: 0.5s;
}


.additional_programs_block_img{
  position: relative;
  width: 100%;
  height: auto;
  transition: 0.5s;
}

.additional_programs_block:hover{
  transform: scale(1.07, 1.07);
}
.additional_programs_block:hover .additional_programs_block_img{
  filter: brightness(75%);
}

.additional_programs_block_text_container{
  position: absolute;
  /* остальные стили (left, top, right и padding) */
  background: linear-gradient(to top, rgb(0, 0, 0), transparent);
  width: 100%;
  height: 40%;
  bottom: 0;
}

.additional_programs_block_text{
  word-break: normal;
  position: absolute;
  width: 90%;
  left: 8px;
  padding-right: 15px;
  bottom: 16px;
  font-size: min(calc(10px + 1.5vw), 30px);
  color: rgb(243, 243, 243);
}



/* STUDY WITH US */

.study_with_us{
  border-radius: 0.375rem;
  background-color: white;
  color: black;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 4rem;
  margin-top: 100px;
}

.study_with_us_h2{
  padding: 1.5rem;
  font-size: min(calc(16px + 2vw), 46px);
  
}



.study_with_us_container{
  display: grid;
  grid-template-areas: "study_img study_text"
  "study_img study_button";
  margin-top: calc(4px + 2vw);
  padding-left: 7%;
  padding-right: 7%;
}

.study_with_us_h3{
  color: #000;
  grid-area: study_text;

  font-size: min(calc(8px + 1.5vw), 32px);
  align-self: flex-start;
  padding-top: 12px;

  margin-left: calc(5px + 2.2vw);
}

.study_with_us_button{
  grid-area: study_button;
  margin-bottom: calc(4px + 0.5vw);

  max-width: 400px;
  min-width: 200px;
  width: 60%;
  height: 13%;
  max-height: 80px;
  min-height: 40px;
  border: none;
  border-radius: 28px;
  font-size: min(calc(6px + 1vw), 24px);
  bottom: 0;

  justify-self: flex-end;
  align-self: flex-end;

  color: white;
  

  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.study_with_us_img{
  
  margin-left: 6px;
  grid-area: study_img;

  /*
  width: calc(30px + 30vw);
  height: auto;
  max-width: 700px;*/

  background-size: no-repeat;
  background-position: center;
  background-size: cover;

  width: calc(0px + 40vw);
  height: calc(0px + 26vw);
  max-width: 600px;
  max-height: 390px;
  box-shadow: 0 -12px 16px 16px rgb(255, 255, 255) inset;
  background-image: url("../img/photo_10.png");

  opacity: 0;
  animation: greetings 2.5s forwards;
  
}



.top{
  display: none;
}

footer{
  position: absolute;
  margin-top: 40px;
  bottom: 0;
  width: 100%;
  min-height: 140px;
  background-color: white;
  color: black;
  display: flex;
  flex-direction: column;
  align-items: center;

  left: 50%;
  /* коррекция положения элемента */
  transform: translate(-50%);
}

.footer_container{
  min-height: 140px;
  width: 94%;
  max-width: 1440px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-column-gap: 40px;
}

.footer_security_container{
  min-height: 68px;
  width: 94%;
  max-width: 1440px;
  display: flex;
  align-self: center;
}

.footer_security_link{
  margin-right: 48px;
  font-size: min(calc(8px + 0.5vw), 18px);
  margin-top: 16px;
}

.footer_security_container_links{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer_info{
  margin-top: 8px;
  display: grid;
  grid-template-columns: 35% auto;
}

.footer_info_email_and_phone{
  margin-top: 8px;
  font-size: min(calc(10px + 0.5vw), 24px);
  display: grid;
  min-width: 300px;
}

.footer_info_link_mail{
  text-underline-offset: 8px;
  text-decoration: underline; /* Добавляем подчёркивание */
  text-decoration-color: #ab3232;
  transition: 0.4s;
  cursor: pointer;
}

.footer_info_link_mail:hover{
  color: #ab3232;
}

.footer_link_list{
  margin-top: 8px;
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: 38px;
}

.footer_link_list_link{
  margin-top: 8px;
  font-size: min(calc(12px + 0.5vw), 24px);
  width: 100%;
  text-underline-offset: 8px;
  text-decoration: underline; /* Добавляем подчёркивание */
  text-decoration-color: #ab3232;
  color: #000;
  transition: 0.4s;
  cursor: pointer;
  
}

.footer_link_list_link:hover{
  color: #ab3232;
}

.footer_link_list_link.text:active{
  text-decoration: none;
}

.footer_info_link_img_container_fullscreen{
  display: flex;
  column-gap: 4px;
}

.footer_info_link_img{
  display: inline-block;

  width: 30px;
  height: 30px;

  border-radius: 50%;
  text-decoration: none;
  background-color: #ab3232;

  display: flex;
  align-items: center;
  justify-content: center;

  padding-right: 2px;
}

.footer_info_link_img_file{
  fill:white;
  width: auto;
  height: 75%;

}

.footer_info_adress{
  margin-top: 8px;
  min-width: 150px;
  max-width: 280px;
  font-size: min(calc(12px + 0.5vw), 24px);
}

.footer_info_link_img_container_mobilescreen{
  display: none;
}

.Notifications_list{
  position: fixed;
  z-index: 1005;
  top: 16px;
  right: 16px;
}

.Notification_container{
  max-width: 300px;
  min-width: 300px;
  min-height: 40px;

  padding-left: 16px;
  padding-right: 16px;
  padding-top: 16px;
  padding-bottom: 16px;

  margin-bottom: 16px;

  border-radius: 16px;

  background-color: rgba(57, 216, 57, 0.85);

  display: flex;
  align-items: center;
  column-gap: 12px;
  font-size: 20px;

  position: relative;
  right: -320px;

  cursor: pointer;

  transition: all 1s;
}

.Notification_container.Notification_show{
  right: 0px;
}

.info_path_container{
  color: #000000;
  display: flex;
  font-size: 18px;

  margin-top: 50px;
  margin-bottom: 56px;
}


.master_class_list{

  display: grid; /* 1 */
  grid-template-columns: repeat(4, 1fr); /* 2 */
  grid-gap: 1.5rem; /* 3 */
  justify-content: space-between; /* 4 */
  /*
  display: flex;
  flex-wrap: wrap;

  justify-content: space-between;*/
}

.master_class_card{
  width: 100%;
  min-width: 200px;
  height: 100%;
  min-height: 440px;

  background-color: white;
  border-radius: 16px;

  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;

  justify-content:space-between;

  border: #e6e6e6 solid 1px;

}

.master_class_card_img{
  width: 100%;
  position: relative;
}

.master_class_card_text{
  color: #000;
  font-size: 18px;
  margin-top: 12px;
  width: 80%;
  text-align: center;
}

.master_class_card_button{

  background-color: #fff;
  border: 2px solid #FF1E30;
  border-radius: 8px;
  padding-left: 8px;
  padding-right: 8px;

  font-size: 20px;
  width: 80%;
  height: 46px;
  color: #FF1E30;
  justify-self: flex-end;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  margin-top: 32px;
  margin-bottom: 24px;

  transition: all 0.3s;
}

.master_class_card_button:hover{
  background-color: #FF1E30;
  border: 2px solid #fff;
  color: #fff;
}


.contacts_section{
  width: 92%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
}

.contacts_container{
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content:space-between;

  background-color: #fff;
  border-radius: 24px;

  padding: 48px 32px;

  grid-gap:45px;
}

.contacts_info_container{
  align-self: flex-start;
  width: 45%;
}

.contacts_info_container h1{
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 38px;
  width: 70%;
}

.contacts_info_container h3{
  font-size: 16px;
  font-weight: 500;
  color: #888888;
  margin-bottom: 12px;
}

.contacts_info_container p{
  font-size: 28px;
  color: #202020;
  margin-bottom: 28px;
}

.contacts_map_container{
  width: 460px;
  height: 350px;
}

.contacts_info_el{
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.contacts_info_icon{
  width: 50px;
  height: 50px;
  font-size: 18px;
  background-color: #FF1E30;
  color: #fff;
  text-align: center;
  display: flex;
  align-content: center;
  flex-shrink: 0;
}

.contacts_info_text{
  margin-left: 20px;
  padding-top: 2px;
  padding-bottom: 2px;
  height: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.select_container_out_table{
  display: flex;
  justify-content: end;
  justify-self: flex-end;

  margin-bottom: 32px;
  width: 35%;
  left: 0;
}

.select_container_in_table{
  width: 35%;
}

.select2 {
  font-size: 24px;
}

.select2-container--default .select2-selection--single {
  /*background-color: #FF1E30;*/
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  /*color: #fff;*/
}

.select2-container--default .select2-selection--single{
  border: none;
}

.select2-dropdown{
  border: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
  height: 40px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  /*border-color: #fff transparent transparent transparent;*/
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  /*border-color: transparent transparent #FF1E30 transparent;*/
}

.select2-results__options{
  
  /*
  background-color: #fff;
  
  */
}

.select2-selection__rendered {
  line-height: 38px !important;
}

.select2-selection {
  height: 40px !important;
}

.preview_avatar{
  border-radius: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit:cover;
  border: 5px solid #ff1e31;

  font-size: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #FF1E30;

  
}

.invalidImageSrc{
  display: flex;
  text-align: center;
  padding-top: 50px;
}

.preview_avatar_input{
  display: none;
}

.preview_avatar_input_label{
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  
  cursor: pointer;
  bottom: 10px;
  right: -5px;
  
  background-color: #FF1E30 !important;

  display: flex;
  align-items: center;
  justify-content: center;

}



@media screen and (max-width: 1440px) {
.master_class_list{

  display: grid; /* 1 */
  grid-template-columns: repeat(3, 1fr); /* 2 */
  grid-gap: 1.5rem; /* 3 */
  justify-content: space-between; /* 4 */
  /*
  display: flex;
  flex-wrap: wrap;

  justify-content: space-between;*/
}  
}




@media screen and (max-width: 1090px) {
.master_class_list{
  /*
  display: grid; 
  grid-template-columns: repeat(auto-fill, 35vw); 
  grid-gap: 1rem;
  justify-content: space-between; */
  /*
  display: flex;
  flex-wrap: wrap;

  justify-content: space-between;*/
}
/*
.account_FIO{
  display: none;
  color: black;
  max-width: 140px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.account_chevron{
  display: none;
}

.account{
  border-radius: 0px;
  background-color: unset;
  padding: 0px 0px;

  -webkit-box-shadow: unset;
  -moz-box-shadow: unset;
  box-shadow: unset;
}

.account_img{
  margin-right: 0px;
  height: 45px;
  width: 45px;
}
*/
}

@media screen and (max-width: 760px) {

.info_path_container{
  margin-left: 5%;
  margin-top: 64px;
  margin-bottom: 32px;
}

.master_class_list{

  display: grid; /* 1 */
  grid-template-columns: repeat(2, 1fr);; /* 2 */
  grid-gap: 1.5rem; /* 3 */
  justify-content: space-between; /* 4 */
  /*
  display: flex;
  flex-wrap: wrap;

  justify-content: space-between;*/
}  

.select_container_out_table{
  width: 100%;
}

.select_container_in_table{
  width: 50%;
}

.contacts_section{
  width: 100%;
  margin-top: 82px;
  width: 100%;
  min-height: 100px;
  margin-left: auto;
  margin-right: auto;
}

.contacts_container{
  flex-direction: column;
  grid-gap: 0px;
  border-radius: 0px;
}

.contacts_info_container{
  width: 100%;
}

.contacts_map_container{
  width: 100%;
}

}

@media screen and (max-width: 600px) {

.nav_logo_img{
    width: 220px !important; /* min(calc(170px + 15vw), 320px);*/
  }

.master_class_list{

  display: grid; /* 1 */
  grid-template-columns: repeat(auto-fill, 80vw); /* 2 */
  grid-gap: 1rem; /* 3 */
  justify-content: center; /* 4 */
  /*
  display: flex;
  flex-wrap: wrap;

  justify-content: space-between;*/
}  
}

.prepForAdmiss_section{
  color: black; 
  width: 80%; 
  max-width: 1000px; 
  display:flex; 
  flex-direction: column;
  align-items: center;
}

.prepForAdmiss_img_container{
  width: 100%;
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;

  font-size: 48px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;

  
}

.prepForAdmiss_section h2{
  font-size: 38px;
  text-align: center;
  margin-bottom: 32px;
  width: 80%;
}

.prepForAdmiss_section h3{
  font-size: 28px;
  align-self: flex-start;
  margin-top: 32px;
  margin-bottom: 32px;
}

.prepForAdmiss_section h4{
  font-size: 24px;
  font-style: italic;
  color: #555555;

  text-align: center;
  margin-bottom: 32px;
  width: 80%;
}

.prepForAdmiss_section p{
  align-self: flex-start;
  font-size: 20px;
}

.prepForAdmiss_section ul{
  text-decoration: solid;
  color: #000;
  display: flex;
  flex-direction: column;
  width: 100%;
  font-size: 20px;
  font-style: italic;
  padding-left: 24px;
}

.prepForAdmiss_section ul li{
  margin-top: 10px;
  padding-left: 12px;
  list-style-type: disc;
}

.prepForAdmiss_section ul li::marker {
  color: #cb1322;
}





@media screen and (max-width: 1000px){


  .info_header{
    position: fixed;
    padding: 10px 0;

    nav{
      width: 90%;/*
      padding-left: 32px;
      padding-right: 32px;*/
      max-width: 90%;
    }

    nav .nav_down_panel{
      border-top: unset;
      padding-top: 0px;
      margin-top: 0px;
    }

    nav.info_nav{
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }

    .non_mobile_ver{
      display: none !important;
    }

    .mobile_ver_big{
      display: block !important;
    }

    .header__list{
      
      height: 100vh;

      /*width: unset;
      overflow:scroll;*/

      width: 100%;
      display: block;
      justify-content: none;

      position: fixed;
      left: 0;
      right: 0;
      background-color: rgb(248, 248, 248);
      
      z-index: -1;
      flex-direction: column;
      text-align: left;
      top: 0;
      margin-top: calc(35px + 20px + 1vh);
      padding-top: 8px;

      padding-bottom: 30vh;
  
      left: 200vw;
      right: -100vw;

      overscroll-behavior-y: contain;
      overflow-y: auto;
    }

    .header_list_account_container{
      width: 90%;
        /*height: 60px;*/

      margin-left: auto;
      margin-right: auto;

      
    }

    .header_list_account_user{
      background-color: #fff;
      min-height: 20px;
      border-radius: 24px;

      padding: 18px 18px;

      display: flex;
      flex-direction: row;
      align-items: center;

      /*
      -webkit-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
      -moz-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
      box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
      */
    }

    .header_list_img_container{
      height: 100px;
      width: 100px;

      display: flex;
      align-items: center;
      justify-content: center;
    }

    .header_list_account_img{
      height: 100px;
      width: 100px;

      max-width: 110px;
      max-height: 110px;

      background-color: #FF1E30;
      border-radius: 50%;
      font-size: 34px;

      display: flex;
      align-items: center;
      justify-content: center;

      color: #fff;
    }

    .header_list_account_FIO_type_container{
      margin-left: 32px;
      flex-grow: 1;
    }

    .header_list_account_type{
      text-align: start;
      color: darkgray;
      font-size: calc(8px + 1.2vw);
      margin-top: 8px;
    }

    .header_list_account_FIO{
      color: #000;
      text-align: start;
      width: 80%;
      font-size: calc(12px + 1.6vw);
    }

    .header_list_account_control{
      color: #000;
      background-color: #fff;
      border-radius: 24px;

      padding: 18px 34px;

      margin-top: 8px;
      margin-bottom: 8px;

      display: flex;
      flex-direction: row;
      justify-content: space-between;

      font-size: min(calc(12px + 1.5vw), 24px);

      /*
      -webkit-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
      -moz-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
      box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
      */
    }

    .header_list_icon{
      color: #000;
    }
    .header_list_icon:active{
      color: #812020;
    }

    .main_section{
      width: 92%;
      min-height: 100px;
      margin-left: auto;
      margin-right: auto;
    
    }

    
    .nav_logo{
      content: unset;
      width: unset;
      height: unset;
    }

    .nav_logo_img{
      margin-top: auto;
      margin-bottom: auto;
      height: auto;
      width: 300px; /* min(calc(170px + 15vw), 320px);*/
      opacity: 1;
    }

    .account{
        display: none;
    }

    .account_dropdawn_container{
      position: absolute;
      right: 0;
      top: 110%;
      width: 320px;
      max-height: 0px;
      overflow: hidden;
      transition: max-height 0.5s;
    }
  
    .account_dropdawn_container.open_dropdawn{
      display: none;
    }

    .button_account{

        display: relative;
        font-size: 24px;
        border-radius: 32px;
        width: 85%;
        /*height: 60px;*/

        margin-left: auto;
        margin-right: auto;

        border: 0;
        
        color: white;
        padding: 1rem 1.5rem;
        text-align: center;
        /*padding-top: 2.2vh;*/
        margin-bottom: 35px;

    }

    .burger_label {
      position: relative;
      display: block;
      height: 25px;
      width: 30px;
      min-width: 30px;
      order: 999;
      margin-left: auto;

      
    }
  
    .burger_label::after, .burger_label::before, .burger_label span {
      position: absolute;
      width: 100%;
      height: 3px;
      background-color: black;
      transition: .3s;
    }
  
    .burger_label::before {
      content: "";
      top: 0;
    }
  
    .burger_label::after {
      content: "";
      bottom: 0;
    }
  
    .burger_label span {
      top: 11px;
    }
  
    #burger-toggle:checked ~ .burger_label::after {
      transform: rotate(45deg);
      bottom: 10px;
    }
  
    #burger-toggle:checked ~ .burger_label::before {
      transform: rotate(-45deg);
      top: 12px;
    }
  
    #burger-toggle:checked ~ .burger_label span {
      transform: rotate(-45deg);
      top: 12px;
    }

    .header__list {

      
    }
    

    .header_list_li {
        color: #000;
        position: relative;
        margin-bottom: 35px;
        padding-left: 8%;
        padding-right: 8%;
        transition: 0.4s;
    }

    .header_list_li:hover {
      color: #812020;
    }

    .header_list_li::after {
        position: relative;

        content: '';
        bottom: 0;
        margin-top: 5px;
        display: block;
        width: 100%;
        height: 0.125rem;
        background: #e6e6e6;
      
    }

    .no_after::after{
      display: none;
    }



    #burger-toggle:checked ~ .header__list {
      left: 0;
      right: 0;
    }

    
    #burger-toggle:checked ~ body {
        
        overflow: hidden;
        display: none;

    }

  
    li a {
      margin-left: 0;
      margin-right: 0;
      position: relative;
      font-size: calc(10px + 3.5vw);
    }

  }

  main{

    margin-top: 110px;
  }

}






@media screen and (max-width: 901px) {

  

  .nav_logo_img{
    /*opacity: 0;*/
  }

  .nav_logo{
    /*
    content: url("../img/KHU2_medkursi_min.png");
    width: min(calc(15px + 3.8vw), 50px);
    height: min(calc(15px + 3.8vw), 50px);
    */
  }

  .header__list{
    width: 70%;
  }

  .slider_new{
    width: 100%;
    
    margin-left: 0px;
  }

  .slider_item_card{
    width: 48vw;
    height: 100%;/*52vw;*/

    padding-left: 8px;
    padding-right: 8px;
    margin-right: 8px;
  }
  
  

}














  @media screen and (max-width: 760px) {

    nav{
      width: 90%;/*
      padding-left: 32px;
      padding-right: 32px;*/
      max-width: 90%;
    }

    html, body{
      scroll-behavior: smooth;
    }

    .body_for_footer{
      margin-bottom: 500px;
    }

    .non_mobile_ver{
      display: none !important;
    }

    .mobile_ver{
      display: block !important;
    }

    .reception_company{
      flex-direction: column;
    }

    .TP_tab_content{
      display: none;
    
      grid-template-columns: repeat(2, 1fr);
      gap: 20px 20px;
    }

    main{
      margin-top: unset;
    }

    ::-webkit-scrollbar { /* chrome based */
      width: 0px;  /* ширина scrollbar'a */
      background: transparent;  /* опционально */
    }

    body::-webkit-scrollbar-track {
      -webkit-box-shadow: none;
      background-color: none;
      border-radius: none;
    }
    
    body::-webkit-scrollbar-thumb {
      border-radius: none;
      background: none;
    }

    header{
      position: fixed;
      padding: 10px 0;
    }

    .header__list{
      
      height: 100vh;

      /*width: unset;
      overflow:scroll;*/

      width: 100%;
      display: block;
      justify-content: none;

      position: fixed;
      left: 0;
      right: 0;
      background-color: rgb(248, 248, 248);
      
      z-index: -1;
      flex-direction: column;
      text-align: left;
      top: 0;
      margin-top: calc(30px + 20px + 1vh);
      padding-top: 8px;

      padding-bottom: 30vh;
  
      left: 200vw;
      right: -100vw;

      overscroll-behavior-y: contain;
      overflow-y: auto;
    }

    .header_list_account_container{
      width: 90%;
        /*height: 60px;*/

      margin-left: auto;
      margin-right: auto;

      
    }

    .header_list_account_user{
      background-color: #fff;
      min-height: 20px;
      border-radius: 24px;

      padding: 18px 18px;

      display: flex;
      flex-direction: row;
      align-items: center;

      /*
      -webkit-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
      -moz-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
      box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
      */
    }

    .header_list_img_container{
      height: min(calc(50px + 5vw) ,80px);
      width: min(calc(50px + 5vw) ,80px);

      display: flex;
      align-items: center;
      justify-content: center;
    }

    .header_list_account_img{
      height: min(calc(50px + 5vw) ,80px);
      width: min(calc(50px + 5vw) ,80px);

      max-width: 110px;
      max-height: 110px;

      background-color: #FF1E30;
      border-radius: 50%;
      font-size: 26px;

      display: flex;
      align-items: center;
      justify-content: center;

      color: #fff;

    }

    .header_list_account_FIO_type_container{
      margin-left: 32px;
      flex-grow: 1;
    }

    .header_list_account_type{
      text-align: start;
      color: darkgray;
      font-size: calc(8px + 1.2vw);
      margin-top: 8px;
    }

    .header_list_account_FIO{
      color: #000;
      text-align: start;
      width: 80%;
      font-size: calc(12px + 1.6vw);
    }

    .header_list_account_control{
      color: #000;
      background-color: #fff;
      border-radius: 24px;

      padding: 18px 34px;

      margin-top: 8px;
      margin-bottom: 8px;

      display: flex;
      flex-direction: row;
      justify-content: space-between;

      font-size: min(calc(12px + 1.5vw), 24px);

      /*
      -webkit-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
      -moz-box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
      box-shadow: 0px 5px 8px 4px rgba(34, 60, 80, 0.2);
      */
    }

    .header_list_icon{
      color: #000;
    }
    .header_list_icon:active{
      color: #812020;
    }

    .main_section{
      width: 92%;
      min-height: 100px;
      margin-left: auto;
      margin-right: auto;
    
    }

    
    .nav_logo{
      content: unset;
      width: unset;
      height: unset;
    }

    .nav_logo_img{
      margin-top: auto;
      margin-bottom: auto;
      height: auto;
      width: 250px; /* min(calc(170px + 15vw), 320px);*/
      opacity: 1;
    }

    .account{
        display: none;
    }

    .account_dropdawn_container{
      position: absolute;
      right: 0;
      top: 110%;
      width: 320px;
      max-height: 0px;
      overflow: hidden;
      transition: max-height 0.5s;
    }
  
    .account_dropdawn_container.open_dropdawn{
      display: none;
    }

    .button_account{

        display: relative;
        font-size: 24px;
        border-radius: 32px;
        width: 85%;
        /*height: 60px;*/

        margin-left: auto;
        margin-right: auto;

        border: 0;
        
        color: white;
        padding: 1rem 1.5rem;
        text-align: center;
        /*padding-top: 2.2vh;*/
        margin-bottom: 35px;

    }

    .burger_label {
      position: relative;
      display: block;
      height: 25px;
      width: 30px;
      min-width: 30px;
      order: 999;
      margin-left: auto;

      
    }
  
    .burger_label::after, .burger_label::before, .burger_label span {
      position: absolute;
      width: 100%;
      height: 3px;
      background-color: black;
      transition: .3s;
    }
  
    .burger_label::before {
      content: "";
      top: 0;
    }
  
    .burger_label::after {
      content: "";
      bottom: 0;
    }
  
    .burger_label span {
      top: 11px;
    }
  
    #burger-toggle:checked ~ .burger_label::after {
      transform: rotate(45deg);
      bottom: 10px;
    }
  
    #burger-toggle:checked ~ .burger_label::before {
      transform: rotate(-45deg);
      top: 12px;
    }
  
    #burger-toggle:checked ~ .burger_label span {
      transform: rotate(-45deg);
      top: 12px;
    }

    .header__list {

      
    }
    

    .header_list_li {
        color: #000;
        position: relative;
        margin-bottom: 35px;
        padding-left: 8%;
        padding-right: 8%;
        transition: 0.4s;
    }

    .header_list_li:hover {
      color: #812020;
    }

    .header_list_li::after {
        position: relative;

        content: '';
        bottom: 0;
        margin-top: 5px;
        display: block;
        width: 100%;
        height: 0.125rem;
        background: #e6e6e6;
      
    }

    .no_after::after{
      display: none;
    }



    #burger-toggle:checked ~ .header__list {
      left: 0;
      right: 0;
    }

    
    #burger-toggle:checked ~ body {
        
        overflow: hidden;
        display: none;

    }

  
    li a {
      margin-left: 0;
      margin-right: 0;
      position: relative;
      font-size: calc(10px + 3.5vw);
    }

    /* GREETINGS */
    .greetings{
      
      margin-top: 130px;
      display: grid;
      grid-template-areas: "text"
      "img"
      "button";
    }

    .greetings_text{
    
      color: #fff;
    
      left: 5%;
      bottom: 50%;
      transform: translateY(50%);
    
      position: absolute;
    
      font-size: min(calc(8px + 3.5vw), 64px);
      font-weight: 600;
      
    
    }
    
    .greetings_img{
      justify-self: center;
    
      background-size: no-repeat;
      background-position: center;
      background-size: cover;
    
      width: calc(30px + 60vw);
      height: calc(60px + 85vw);

    }

     
    .greetings_button{
      
      
    }

    /* CHOICE OF DIRECTION */


    .choice_of_direction_mob{
      display: block;
    }

    .choice_of_direction{
      display: none;
      /*border: 1px solid #dee2e6;*/
      width: 100%;
      border-radius: 0.375rem;
      background-color: white;
      padding-top: 2rem;
      padding-bottom: 2rem;
    }

    .choice_of_direction_text{
      font-size: calc(18px + 2vw);
      
    }


    .news{
      margin-top: 4rem;
    }


    .tab{
      display: grid;
      grid-template-areas:"label_1"
      "label_2"
      "label_3"
      "label_4"
      /*"label_5"*/
      "content";
      grid-template-columns: auto;
      justify-items: start;
      
      gap: 0.2rem;
    }

    .label_tab{
      text-align: left;
      border-bottom: none;
      font-size: calc(10px + 1.5vw);
    }
    
    .label_tab::after{
      display: none;
    } 

    #tab-btn-1:checked~#content-1,
    #tab-btn-2:checked~#content-2,
    #tab-btn-3:checked~#content-3,
    #tab-btn-4:checked~#content-4,
    #tab-btn-5:checked~#content-5 {
      display: flex;
      flex-flow: wrap;
      justify-content: center;

      height: 100%;
    }


    .tab-content-info{
      display: flex;
      flex-flow: wrap;
      position: relative;
      justify-content: center;
      order: 2;
    }
    
    .tab-content-info-text{
      margin-top: 35px;
      font-size: calc(4px + 3.5vw);
      width: 100%;
    }
    
    .tab-content-info-button{
      margin-top: 30px;
      width: 100%;
      height: 60px;
      border: none;
      border-radius: 28px;
      max-width: 400px;
      position: relative;
      bottom: 0;
      font-size: calc(4px + 3vw);

    }

    .tab-content-img{
      max-width: 400px;
      width: 100%;
      height: auto;
      order: 1;
    }

    /*Новый слайдер мобильная версия*/

    .new_news{
      width: 97%;
    }

    .slider_new{
      display: flex;
      justify-content: center;

      width: 100%;

      margin-left: 0px;
    }

    .slider_item_card{
    
      max-width: 500px;
      /*max-height: 740px;*/
      width: 50vw;
      height: 100%;
    
      min-width: 240px;
      /*min-height: 100px;*/
    
      padding-left: unset;
      padding-right: unset;
      
      margin-right: unset;
    }

    .slider_elem_img_container{
      height: 50vw;
      min-height: 240px;
      max-height: 480px;
    }

    .slider_up_panel{
      width: 80%;
    }

    .slider_item_content{
      
      height: 100%;
    }

    .new_news .slick-list{
      width: 70vw;
    }

    .news_h2{
      display: flex;
      align-items: center;
      bottom: 0;
    }

    .news_button{
      max-width: 300px;
      min-width: 130px;
      width: 22%;
      height: 100%;
      max-height: 60px;
      min-height: 45px;
      border: none;
      border-radius: 28px;
      font-size: calc(6px + 1.8vw);
      bottom: 0;
    
      justify-self: flex-end;
      align-self: flex-end;
    
      color: white;
      background-color: #ab3232;
    }


    .slider_elem{
  
      /*background-color: aqua;
      border:5px solid black;*/
      padding: min(calc(4px + 13vw),170px) min(calc(4px + 13vw),170px) min(calc(4px + 13vw),170px) min(calc(4px + 13vw),170px);
      padding-bottom: min(calc(4px + 4vw),32px);
      
    }

    .slider_elem_text{
      margin-left: 18px;
      margin-right: 18px;
      margin-top: 16px;
      margin-bottom: 10px;
      font-size: min(calc(6px + 1.8vw), 16px);
      font-weight: bold;
    }

    .slider_buttons{
      justify-content: center;
      margin-right: 0px;
    }
    
    .slider-prev{
      margin-right: 15%;
      padding: 0;
      border: none;
      font: inherit;
      color: inherit;
      background-color: transparent;
    }
    
    .slider-next{
      margin-left: 15%;
      padding: 0;
      border: none;
      font: inherit;
      color: inherit;
      background-color: transparent;
    }

    .long-arrow-right,
    .long-arrow-left{

      display: block;
      /*margin: 30px auto;
      width: 15px;
      height: 15px;
      border-top: 2px solid #000;
      border-left: 2px solid #000;

      transition: .5s;
*/
    }
/*
    .long-arrow-right::after,
    .long-arrow-left::after{
      
      content: "";
      display: block;
      width: 2px;
      height: 45px;
      background-color: black;
      transform: rotate(-45deg) translate(15px, 6px);
      left: 0;
      top: 0;

      transition: .5s;
    }
*/

    .slider_banner{
      position: relative;
      width: 100%;

      border-radius: 0px;
      overflow: hidden;

      left: 0%;
      right: 0%;
      margin: auto;

    }
    
    /*
    .slider_banner_shadow{
      position: absolute;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }
    .slider_banner_shadow:before, .slider_banner_shadow:after {
      content: " ";
      height: 100%;
      position: absolute;
      top: 0;
      width: 100%;
      
      z-index: 9999;
    }

    .slider_banner_shadow:before {
      box-shadow: -15px 0 25px -5px inset rgb(248, 248, 248);
      right: 0px;
    }

    .slider_banner_shadow:after {
      box-shadow: 15px 0 25px -5px inset rgb(248, 248, 248);
      left: 0px;
    }
*/

    .slider_banner_contant_container{
      
      width: 100%;

      position: relative;
      overflow: hidden;

      aspect-ratio: 1 / 1.45;

    }

    .slider_banner_contant_img{
      width: auto;
      height: 100%;
    
      margin: 0;
      position: absolute;
      /*top: 0; left: 0; bottom: 0; right: 0;*/
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    
    }

    .slider_banner_button {
      display: none;
    }

    .additional_programs_h2{
      margin-bottom: 25px;
    }

    .additional_programs{
      color: #000;
      height: 100%;
      margin-top: 30px;
    }
    
    .additional_programs_blocks_list{
      display: grid;
      grid-template-columns: none;
      grid-template-rows: repeat(3, calc(100px + 14vw));
    }
    

    .additional_programs_block_img{
      position:relative;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .additional_programs_block_text{
      word-break: normal;
      position: absolute;
      width: 90%;
      left: 8px;
      padding-right: 15px;
      bottom: 16px;
      font-size: calc(14px + 2vw);
      color: rgb(243, 243, 243);
    }

    /* STUDY WITH US */

    .study_with_us{
      border-radius: 0rem;
      width: 100%;
      background-color: white;
      color: black;
      padding-top: 2rem;
      padding-bottom: 2rem;
      text-align: center;
    }
    
    .study_with_us_h2{
      padding: 1.5rem;
      font-size: calc(16px + 2vw);
      
    }
    
    .study_with_us_container{
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: calc(4px + 2vw);
      padding-left: 14px;
      padding-right: 14px;
    }

    .study_with_us_h3{
      color: #000;
      grid-area: study_text;
    
      font-size: calc(4px + 3vw);
      align-self: flex-start;
      padding-top: 12px;
    
      margin-left: 10px;
      margin-right: 10px;
    }

    .study_with_us_br{
      display: none;
    }
    
    .study_with_us_button{
      grid-area: study_button;
      margin-right: 0px;
      margin-left: 0px;
      margin-bottom: calc(42px + 8vw);
      margin-top: calc(42px + 8vw);
    
      max-width: 480px;
      min-width: 200px;
      width: 80%;
      height: 3vw;

      max-height: 80px;
      min-height: 60px;

      font-size: calc(12px + 2vw);

      justify-self: unset;
      align-self: center;

    }
    
    .study_with_us_img{
      grid-area: study_img;
    
      justify-self: center;

      width: calc(30px + 74vw);
      height: calc(30px + 55vw);
      max-width: 700px;
      
    }







    .top {
      
      display: none;

      --offset: 50px; 

      position: fixed;
      bottom: 20px;
      right: 14px;
      place-self: end;
      /* margin-top: calc(100vh + var(--offset)); */
      
      /* visual styling */
      text-decoration: none;
      padding: 10px;
      font-family: sans-serif;
      color: #fff;
      background: #ab3232e0;
      border-radius: 50%;
      width: calc(32px + 8vw);
      height: calc(32px + 8vw);
      white-space: nowrap;

      z-index: 100;

      -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }

    .show{
      display: block;
    }
    .reverse{
      display: block;
    }

    @keyframes wipe-enter {
      0% {
        transform: scale(0, 0);
      }
      100% {
        transform: scale(1, 1);
      }
    }

    @keyframes wipe-out{
      100% {
        transform: scale(0, 0);
      }
      0% {
        transform: scale(1, 1);
      }
    }

    

    @media (prefers-reduced-motion: no-preference) {
      .show {
        animation: wipe-enter 0.75s 1;
      }
      .reverse {
        animation: wipe-out 0.75s 1;
      }
    }

    .top_img{
      width: 100%;
      height: 100%;
    }

    footer{
      min-height: 380px;
    }

    .footer_container{
      display: grid;
      grid-template-columns: auto;
      grid-column-gap: 40px;
      width: 90%;
    }

    .footer_security_container{
      width: 90%;
    }

    .footer_info{
      display: grid;
      grid-template-columns: auto;
    }
    
    .footer_info_link{
      margin-top: 8px;
    }

    .footer_info_email_and_phone{
      margin-top: 12px;
      font-size: calc(16px + 2vw);
      display: grid;
      min-width: 300px;  
    }
    
    .footer_info_adress{
      max-width: 100%;
      margin-top: 12px;
      font-size: calc(16px + 1.75vw);
    }

    .footer_info_link_img_file{
      width: 70%;
      height: 70%;
    }

    .footer_link_list{
      display:grid;
      grid-template-columns: auto;
      max-width: 320px;
      min-width: 195px;
      width: 100%;
    }

    .footer_link_list_link{
      margin-top: 8px;
      font-size: calc(14px + 1.5vw);
      width: auto;
      color: #000;
    }
    .footer_link_list_link:hover{
      color: #ab3232;
    }
    
    .footer_link_list_link.text:active{
      text-decoration: none;
    }

    .footer_info_link_img_container_fullscreen{
      display: none;
    }

    .footer_info_link_img_container_mobilescreen{
      display: flex;
      column-gap: 6px;
      margin-top: 16px;
    }


}

@media screen and (max-width: 600px) {
  .new_news .slick-list{
    width: 80vw;
  }

  .greetings_text{
    color: #fff;
    
    left: 5%;
    bottom: 50%;
    transform: translateY(50%);
  
    position: absolute;
  
    font-size: min(calc(8px + 7vw), 72px);
    font-weight: 600;
  
    white-space: unset;
    opacity: 0;
    animation: greetings 2.5s forwards;
  }

  .greetings_button{
    left: 5%;
  }

  .greetings_video{
    height: 140vw;
    max-height: 640px;
    min-height: 410px;
  
    overflow: hidden;
  }
  
}

@media screen and (max-width: 460px) {
  
  
  .new_news .slick-list{
    width: 94vw;
  }
  
  .slider_elem{

    /*background-color: aqua;
    border:5px solid black;*/
    padding: min(calc(4px + 14vw),80px) min(calc(4px + 14vw),80px) min(calc(4px + 14vw),80px) min(calc(4px + 14vw),80px);
    padding-bottom: min(calc(4px + 4vw),32px);
    
  }

  
}

@media screen and (max-width: 390px) {
  .new_news .slick-list{
    width: 103vw;
  }
}

@media screen and (max-width: 340px) {
  .new_news .slick-list{
    width: 110vw;
  }
}









/* //// HEADER //// */
/*
header{
    
    margin-top: 20px;
        
    height: 100px;
    width: 90%;

    min-width: 30px;

    display: grid;
    grid-template-columns: 0.2fr 0.7fr 0.1fr;
    align-items: center;

    @media (min-width: 1020px) {

    }

}



.header_logo_container{
    
    display: grid;
    grid-template-columns: 100px 70px;
    align-items: center;
    margin-right: 10px;
}

.header_logo_text{
    font-size: 32px;
}

.header_logo_img{
    width: 100%;
    height: 100%;
}

.header_logo_img_file{
    max-width: 90px;
    max-height: 90px;

    min-width: 30px;
    min-height: 30px;
}



.header_text_container{
    margin-left: 100px;
    @media screen and (max-width: 1024px){
        opacity: 0;
    }
}

.header_text_nav{
    display: grid;
    grid-auto-columns: auto; /*minmax(0, 1fr);
    grid-auto-flow: column;
    align-items: center;
    
    @media screen and (max-width: 1024px){
        opacity: 0;
    }
}

.header_text_li{
    font-size: 20px;

    text-align: center;
}



.header_account_container{
    display: grid;
    grid-template-columns: 1fr;
    justify-items: end;

    margin-left: 10px;
    text-align: center;

    @media screen and (max-width: 1024px){
        opacity: 0;
    }
}

.header_account_img_file{

    max-width: 70px;
    max-height: 70px;

    min-width: 30px;
    min-height: 30px;

    border-radius: 50%;
}



.burger_menu{
    
    @media screen and (max-width: 1024px){
        width: 35px;
        height: 35px;
        padding: 30px;
        box-sizing: border-box;
        
        position: absolute;
        justify-self: right;


        background: #b39ddb;
    }
    
}

*/

main{
    
    
    /*flex: 1 1 auto;
    align-items: flex-start;
    padding-bottom: 100px;
    background-color: #e6e6e6;

    display: grid;
    grid-template-columns: 1fr;*/
}

footer{
    
    
    /*height: 100px;
    background-color: white;
    margin-top: -100px;
    Минус Высота футера
    height: 100px;
    Высота футера*/
}
