@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');
html {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: inherit;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
body {
  position: relative;
}

body {
  color: #000000;
  font-family: "Bebas Neue", sans-serif;
  font-style: normal;
  line-height: normal;
  overflow-x: hidden;
  font-weight: 500;
  background: white;
}

input,
textarea {
  font-family: "Bebas Neue", sans-serif;
}

input:focus, textarea:focus{
  outline: none;
}

button {
  padding: 0;
}

a,
button {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  cursor: pointer;
  font-family: "Bebas Neue", sans-serif;
  border: none;
}

svg,
svg g,
svg g path,
svg path,
::before,
::after {
  -webkit-transition: 0.3s all ease;
  -moz-transition: 0.3s all ease;
  -ms-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

h1 {
  font-size: 150px;
  font-weight: 700;
  line-height: 100%;

  background-image: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;

  letter-spacing: calc(150px / 10);
}

h2 {
  font-size: 65px;
  font-weight: 700;
  line-height: 100%;

  background-image: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;

  letter-spacing: calc(65px / 10);
}

img {
  object-fit: cover;
}

ul {
  list-style: none;
}

.mobile {
  display: none !important;
}

.container {
  max-width: 1640px;
  padding: 0 20px;
  margin: 0 auto;
}

.header {
  background: url("../new-img/header__back.png") no-repeat center;
  position: fixed;
  top: -5px;
  width: 100%;
  z-index: 99;
  
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 21px;
}

.header__btn-auth {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  background-image: linear-gradient(90deg, #79cfff 0%, #00aeff 100%) !important;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;

  /*/  accent color /*/
}
.header__btn-exit {
  cursor:pointer;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 12px;
  background-image: linear-gradient(90deg, #79cfff 0%, #00aeff 100%) !important;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;

  /*/  accent color /*/
}


/*/ header-menu /*/

.header__menu, .popup__auth, .popup__note_1, .popup__lesson{
  position: fixed;
  width: 100%;
  top: 54px;
  z-index: 98;
  height: calc(100svh - 50px);
  background: #fff;
  transition: .3s all ease;
  transform: translateY(-110%);
  -webkit-transform: translateY(-110%);
  -moz-transform: translateY(-110%);
  -o-transform: translateY(-110%);
  -ms-transform: translateY(-110%);
}

.popup__note{
  position: fixed;
  width: 100%;
  top: 54px;
  z-index: 98;
  /* height: calc(100svh - 50px); */
  height: 100%;
  background: #fff;
  transition: .3s opacity ease;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all ease .3s;
}

.header__menu, .popup__auth{
  height: max-content;
}

.header__menu .container{
  position: relative;
  display: block;
}

.header__menu-back{
  position: absolute;
  bottom: -4px;
  z-index: -2;
  width: 100%;
}


.header__menu-close.active ~ .header__menu-open{
  position: absolute;
  opacity: 0;
  display: none;
}


.header__menu-close{
  position: absolute;
  opacity: 0;
}

.header__menu-close.active{
  opacity: 1;
  position: unset;
}

/*/ popup-note /*/

.popup__note{
  background: transparent;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  
}

.popup__note .container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.popup__note-inner{
  background: #fff;
  border-radius: 10px;
  padding: 38px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 55px;
  position: relative;
  z-index: 1;
}

.popup__note .popup__auth-subtitle{
  margin: 0px 0 13px;
}

.popup__note .popup__auth-form{
  width: 308px;
}
.popup__auth-form br{
 display: none !important;
}
.popup__secure-text{
  max-width: 213px;
  display: block;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  color: #b2b2b2;
  text-align: center;
}

.popup__note-secure{
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}

.popup__note-link{
  margin-top: 70px;
  background: #FFFFFF;
  border-radius: 40px;
  padding: 16px 23px;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #626262;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
}

.popup__note-link:hover{
  opacity: 0.7;
}

.popup__note .popup__auth-btn::after{
  content: '';
  color: #FE0000;
  font-size: 8px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  position: absolute;
  top: -14px;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  left: 50%;
  min-width: 205px;
  opacity: 0;
  transition: .3s all ease;

}
.popup__note .popup__auth-btn.error-name::after{
  content: 'ЗАПОЛНИТЕ ФОРМУ “Ф.И.О”';
  opacity: 1;
}
.popup__note .popup__auth-btn.error-tel::after{
  content: 'ЗАПОЛНИТЕ ФОРМУ “НОМЕР ТЕЛЕФОНА””';
  opacity: 1;
}
.popup__note .popup__auth-btn.error-inst::after{
  content: 'ЗАПОЛНИТЕ ФОРМУ “ССЫЛКА НА INSTAGRAM”';
  opacity: 1;
}
.popup__note .popup__auth-btn.success::after{
  content: 'Успешно!';
  opacity: 1;
  font-size: 10px;
  color: green;
}

/*/ popup-note /*/



/*/ popup-auth /*/


.popup__auth:before{
  content: '';
  position: absolute;
  background: url('../new-img/popup__plane.svg') no-repeat center;
  width: 170px;
  height: 152px;
  background-size: 100% 100%;
  top: 70px;
  left: 160px;
}
.popup__auth:after{
  content: '';
  position: absolute;
  background: url('../new-img/popup__plane.svg') no-repeat center;
  width: 170px;
  height: 152px;
  background-size: 100% 100%;
  top: 70px;
  right: 160px;
  transform: scale(-1, 1);
  transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
}

.popup__auth .container{
  display: flex;align-items: center;
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 30px;
}

.popup__auth .header__menu-back{
  z-index: -1;
  bottom: -5.5px;
  height: calc(100% + 5.5px);
}

.popup__auth-form{
  display: flex;
  flex-direction: column;
  width: 308px;

}

.popup__auth-title{
  font-size: 15px;
  background-image: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
  font-weight: 700;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: "Montserrat", sans-serif;
}

.popup__auth-subtitle{
  font-size: 10px;
  margin: 4px 0 13px;
  color: #626262;
  font-family: "Montserrat", sans-serif;
}

.popup__auth-input{
  width: 100%;
  border-radius: 20px;
  background: #eeee;
  color: #626262;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  border: 0;
  margin-bottom: 10px;
  padding: 20px 15px;
  font-weight: 700;
  position: relative;
  font-size: 18px;
}
.popup__auth-input::placeholder{
  font-size: 12px;
}
.popup__auth-input:focus::placeholder{
  display: none;
  opacity: 0;
}
.popup__auth-input:focus::-webkit-input-placeholder{
  display: none;
  opacity: 0;
}

.popup__auth-input::placeholder{
  transition: .3s all ease;
  text-align: center;
  text-transform: uppercase;
}
.popup__auth-input::-webkit-input-placeholder{
  transition: .3s all ease;
}

.popup__auth-btn{
  margin-top: 9px;
  background: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
  width: 100%;
  border-radius: 20px;
  padding: 21px 0;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #fff;
  position: relative;
  background-image: none !important;
  border-radius: 20px !important;
  background: linear-gradient(90deg, #79cfff 0%, #00aeff 100%) !important;
  border: none;
}
.wpcf7-spinner{
  display: none !important;
}

.popup__auth-btn::after{
  content: 'ДАННЫЕ БЫЛИ ВВЕДЕНЫ НЕВЕРНО';
  color: #FE0000;
  font-size: 8px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  position: absolute;
  top: -14px;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  left: 50%;
  min-width: 160px;
  opacity: 0;
  transition: .3s all ease;
}

.popup__auth-btn.error::after{
  opacity: 1;
}


.header__menu.active, .popup__auth.active, .popup__note_1.active, .popup__lesson.active{
  
  transform: translateY(0%);
  transform: translateY(0%);
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -o-transform: translateY(0%);
  -ms-transform: translateY(0%);
}

.popup__note.active{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}


/*/ popup-auth /*/

.header__menu:before{
  content: '';
  position: absolute;
  background: url('../new-img/popup__plane.svg') no-repeat center;
  width: 76px;
  height: 68px;
  background-size: 100% 100%;
  top: 40px;
  left: 160px;
}
.header__menu:after{
  content: '';
  position: absolute;
  background: url('../new-img/popup__plane.svg') no-repeat center;
  width: 76px;
  height: 68px;
  background-size: 100% 100%;
  top: 40px;
  right: 160px;
  transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
}

.popup__auth.active ~ .header .header__list{
  /* margin-left: 161px; */
}
.header__menu.active ~ .header .header__list{
  margin-right: 96px;
}

.header__menu .footer__nav-link:hover{
  opacity: 0.6;
}

.header__menu .footer__soc-link::before, .popup__lesson-link::before{
  opacity: 0;
  background: linear-gradient(355deg, #85d3ff 0%, #00aeff 100%);
  box-shadow: 13px -2px 22px rgba(255, 255, 255, 0.12) inset;
  filter: blur(25px);
  background-size: 100% 100%;
  content: "";
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  left: 0px;
}

.header__menu .footer__soc-link:hover::before, .popup__lesson-link:hover::before{
  opacity: 1;
}

.header__menu-btn span{
  transition: .3s all ease;
}


.header__menu .container{
  max-width: 734px;
  padding-top: 27px;
  padding-bottom: 31px;
}

.header__menu .footer__nav-link{
  color: #626262;
  font-size: 12px;
}

.header__menu .footer__top-line{
  background: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
}

.header__menu .footer__soc-link{
  background: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
  height: 100%;
}
.header__menu .footer__soc-text{
  font-size: 12px;
  color: #fff;
}


  /*/ header-menu  /*/

.header__list {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-right: 116px;
}


.header__item-text {
  font-size: 10px;
  font-weight: 600;
  color: #afafaf;
  display: block;
  margin-bottom: 3px;
  font-family: "Montserrat", sans-serif;
}

.header__item-line {
  width: 1px;
  height: 15px;
  background: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
}

.header__menu-btn {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  padding: 7px 18px;
  font-family: "Montserrat", sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  

  border-radius: 20px !important; 

  background: linear-gradient(90deg, #79cfff 0%, #00aeff 100%) !important;
  
}

.header__menu-btn svg{
  margin-top: -1px;
}

.main{
  margin-top: 63px;
}

.welcome {
  overflow: hidden;
  position: relative;
  margin-top: -7px;
}
.welcome:after{
  content: '';
  position: absolute;
  z-index: 10;
  background: url("../new-img/transition1.png") center no-repeat;
  height: 5px;
  width: 100%;
  bottom: 0;

}

.welcome::before {
  content: "";
  position: absolute;
  background: url("../new-img/welcome__back.webp");
  background-size: cover;
  background-position: center;
  z-index: -4;
  top: -60px;
  width: 100%;
  height: calc(100% + 60px);
  background-position-y: 50px;
}

.welcome .container {
  padding-top: 152px;
  padding-bottom: 158px;
}

.welcome__inner-toptitles {
  display: flex;
  justify-content: space-between;
  max-width: 1217px;
  margin-left: 110px;

  position: relative;
  z-index: -4;
}

.welcome__toptitle {
  font-size: 25px;
  font-weight: 700;
  line-height: 100.1%;
  letter-spacing: calc(25px / 10);

  background-image: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.welcome__inner-titles {
  display: flex;
  justify-content: space-between;
  max-width: 1235px;
  margin: -8px 0px 0px 105px;
  position: relative;
  z-index: -4;
}

.welcome__inner-subtitles {
  display: flex;
  justify-content: space-between;
  max-width: 1217px;
  margin: -14px 0px 0px 110px;

  position: relative;
  z-index: -4;
}

.welcome__subtitle {
  line-height: auto;
  font-family: "Corvetta", sans-serif;

  font-size: 16px;
  font-weight: 400;
  letter-spacing: calc(16px / 10);

  background-image: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.welcome__back-img {
  position: absolute;
  left: 51%;
  bottom: -54px;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  z-index: -3;
}

.welcome__btn {
  display: block;
  margin: 0 auto;
  margin-top: 289px;
  font-size: 30px;
  letter-spacing: calc(30px / 20);
  padding: 37px 100px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  background-color: transparent;
  background-position: center;
  background-image: url('../new-img/btn__big.png') !important;
  position: relative;
}

.welcome__btn-back {
  position: absolute;
  bottom: -3px;
  left: -0.5px;
  z-index: -1;
  cursor: pointer;
}

.for {
/*  margin-top: -5px;*/
  z-index: 5;
  padding: 20px 0 62px;
  background: url("../new-img/for__back.png");
  position: relative;
  background-size: 100%;
  margin-top: -5px;
}

.for::before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  background: url("../new-img/for__back-photo.png");
  width: 512px;
  height: 287px;
}

.for:after{
  content: '';
  position: absolute;
  z-index: 10;
  background: url("../new-img/transition2.png") center no-repeat;
  height: 5px;
  width: 100%;
  bottom: 0;

}

.for .container {
  max-width: 1556px;
}

.for__title-img {
  display: list-item;
  margin: 0px auto;
}

.for__toptitle {
  line-height: auto;
  font-family: "Corvetta", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: calc(10px / 10);
  color: #969696;
  margin-top: 16px;
  margin-bottom: 2px;

  text-align: center;
}

.for__title {
  text-align: center;
}

.for__list {
  display: grid;
  grid-template-columns: repeat(4, 20.7%);
  gap: 50px 87px;
  margin-top: 55px;
}

.for__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;

  &:nth-child(2){
    .for__item-title{
      transform: translate(calc(-50% + 2px), 0%);
    }    
  }
  /*&:nth-child(6){
    .for__item-title{
      transform: translate(calc(-50% - 2px), 0%);
    }    
  }*/
}

.for__item:nth-child(2),
.for__item:nth-child(3),
.for__item:nth-child(5),
.for__item:nth-child(8) {
  margin-top: 59px;
}

.for__item:nth-child(4) {
  margin-top: -8px;
}

.for__item-box {
  position: relative;
  display: flex;
  justify-content: center;
}

.for__item-title {
  position: absolute;
  bottom: 10.5px;
  z-index: 2;
  left: 50%;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  font-size: 22px;
  letter-spacing: calc(22px / 10);

  background-image: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.for__item-text {
  max-width: 295px;
  font-weight: 500;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: calc(15px / 20);

  text-align: center;
}

.for__item:nth-child(2) .for__item-text {
  max-width: 331px;
}
.for__item:nth-child(5) .for__item-text {
  min-width: 350px;
}
.for__item:nth-child(8) .for__item-text {
  min-width: 345px;
}

.for__btn {
  display: block;
  margin: 0 auto;
  margin-top: 5px;
  font-size: 25px;
  letter-spacing: calc(25px / 20);
  padding: 25px 77px;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  background-image: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
  position: relative;
  font-weight: 700;
}

.for__btn-back {
  position: absolute;
  bottom: -3px;
  left: -0.5px;
  z-index: -1;
  cursor: pointer;
}

.learn {
/*  margin-top: -5px;*/
  z-index: 5;
  padding: 28px 0 62px;
  background: url("../new-img/learn__back.png");
  position: relative;
  background-size: 100%;
}
.learn::before{
  content:'';
  position: absolute;
  z-index: -1;
  top: -5px;
  left: 0;
  display: block;
  width: 100%;
  height: 64px;
  background: url("../new-img/learn-top-bg.png") no-repeat;
  background-position:center;
}

.learn .for__title-img {
  width: 30px;
  height: 30px;
}

.learn .for__toptitle {
  margin: 28px 0px 2px;
}

.learn__inner {
  display: flex;
  margin-top: 150px;
}

.learn__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.learn__list:last-of-type {
  margin-right: -20px;
}

.learn__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.learn__item-text {
  font-size: 15px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  letter-spacing: calc(15px / 20);
  max-width: 350px;
}

.learn__list:first-of-type .learn__item:nth-child(4) .learn__item-text {
  max-width: 408px;
}
.learn__list:first-of-type .learn__item:nth-child(5) .learn__item-text {
  max-width: 416px;
}
.learn__list:first-of-type .learn__item:nth-child(6) .learn__item-text {
  max-width: 408px;
}
.learn__list:last-of-type .learn__item:nth-child(2) .learn__item-text {
  max-width: 368px;
}

.learn__inner-btn {
  display: none;
}

.learn__inner-img {
  
  margin: -100px auto 0 -9px;
}

.learn__inner:last-of-type {
  margin: 36px 0px 55px;
}

.learn__inner-left {
  width: 100%;
  margin-right: 68px;
  background: linear-gradient(90deg, #c7edff 0%, #00aeff 100%);
  padding: 5px;
  border-radius: 20px;
  overflow: hidden;
}

.learn__left-img {
  margin-bottom: -5px;
  transform: translateX(-5px);
}
.learn__left-img{
  width: 375px;
}
.learn__right-img {
  margin: 0px 20px -33px 12px;
  transform: translateY(5px);
  width: 337px;
}

.learn__border-box {
  background-position: center;
  background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml;utf8,<svg width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><rect rx='20' width='100%' height='100%' style='fill: none; stroke: white; stroke-width: 1.5; stroke-dasharray: 8'/></svg>");
  display: flex;
  align-items: center;
  height: 100%;
}

.learn__inner-article {
  display: flex;
  align-items: center;
}

.learn__inner-right {
  padding: 5px;
  width: 100%;
  background: linear-gradient(90deg, #ffdeb7 0%, #ff920e 100%);
  border-radius: 20px;
}
.about__descr:last-of-type .about__descr-list
.learn__article-box {
  margin-left: 5px;
}
.about__descr-list{
  position: relative;
  z-index: 4;

    @media(min-width: 769px) and (max-width: 1080px) {  
      &:nth-child(1){
        height: 174px;
      }
      &:nth-child(2){
        height: 226px;
      }
      
    }
}
 @media(min-width: 769px) and (max-width: 1080px){
  .about__descr:last-child .about__descr-list:nth-child(2) .about__descr-item:last-child .about__descr-img{
    margin-top: 43px;
  }
 }

.about__descr-item{
  @media(min-width: 769px) and (max-width: 1080px) {  
      
      &:nth-child(2){
        display: flex;
        flex-direction: column;
        /* margin-top: auto; */
      }

      
    }
}
.learn__article-title {
  font-weight: 700;
  font-size: 30px;
  letter-spacing: calc(30px / 20);
  color: #fff;
  max-width: 282px;
  line-height: 30px;
}

.learn__article-subtitle {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: calc(15px / 20);
  color: #fff;
  max-width: 228px;
  font-family: "Montserrat", sans-serif;
}

.learn__inner-right .learn__article-subtitle {
  max-width: 266px;
}

.learn__inner-article .learn__article-img:first-of-type {
  height: 90px;
}
.learn__inner-article .learn__article-img:last-of-type {
  height: 93px;
  margin-left: 5px;
}

.program .for__toptitle {
  margin-top: 36px;
  font-size: 11px;
  letter-spacing: calc(11px / 20);
}

.program__list {
  display: flex;
  flex-direction: column;
  gap: 57px;
  margin: 37px auto 0;
  max-width: 1109px;
}

.program__item-inner:first-of-type {
  padding: 6px 0 20px;
  margin-bottom: -17px;
  background: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
  border-radius: 20px 20px 0px 0px;
}

.program__inner-title {
  text-align: center;
  color: #fff;
  font-weight: 700;
  line-height: 100%;
  font-size: 17px;
  letter-spacing: calc(17px / 15);
}

.program__item-inner:last-of-type {
  background: #f2f1f3;
  padding: 5px;
  border-radius: 20px;
}

.program__descr-item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.program__descr-item:nth-child(10) .program__descr-lesson,
.program__descr-item:nth-child(11) .program__descr-lesson,
.program__descr-item:nth-child(12) .program__descr-lesson {
  width: 91px;
}

.program__border-box {
  background-position: center;
  background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml;utf8,<svg width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><rect rx='20' width='100%' height='100%' style='fill: none; stroke: skyblue; stroke-width: 1.5; stroke-dasharray: 8'/></svg>");
  display: flex;
  justify-content: space-between;
  height: 100%;
  width: 100%;
  padding: 30px 47px 30px 40px;
}

.program__item-line {
  height: auto;
  width: 1px;
  background: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
}

.program__descr-line {
  background: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
  height: 1px;
  width: 100%;
  margin: 5px 0;
}

.program__item-title {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: calc(25px / 10);
}

.program__item-descr {
/*  min-width: 561px;*/
  width: calc(58.4% - 30px);
}

.program__item-content {
/*  max-width: 389px;*/
  width: calc(41.6% - 30px);
}

.program__descr-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 14px;
    @media (max-width: 767.98px) {  
      gap: 24px;
    }
}

.program__descr-lesson {
  background: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);

  font-size: 14px;
  font-weight: 600;
  letter-spacing: calc(14px / 20);
  font-family: "Montserrat", sans-serif;
  border-radius: 20px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 26px;
  width: 81px;
}

.program__descr-name {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: calc(14px / 20);
  font-family: "Montserrat", sans-serif;
  border-radius: 20px;
}

.program__content-item {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: calc(16px / 20);
  font-family: "Montserrat", sans-serif;
  position: relative;
  margin: 12px 0px 0px 17px;
  display: block;
  line-height: 20px;
}

.program__content-item::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
  position: absolute;
  left: -16px;
  top: 5px;
}

.tariffs {
  margin: 66px 0 147px;
}

.tariffs__list {
  display: flex;
  justify-content: space-between;
  margin-top: 132px;
}

.tariffs__item {
  position: relative;
  background: #f2f1f3;
  padding: 20px 47px 23px;
  max-width: 443px;
}

.tariffs__item::before {
  top: -35px;
  left: 0px;
  content: "";
  position: absolute;
  background: url("../new-img/tariffs__item-back.png") no-repeat center;
  width: 100%;
  height: 35px;

  @media (max-width: 1080px) {
    top: -28px;
    height: 28px;
  }
}

.tariffs__item-img {
  position: absolute;
  top: -90px;
  z-index: 2;
  left: 50%;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
  height: auto;
}

.tariffs__item:last-child .tariffs__item-img {
  width: 203px;
  top: -60px;
  @media (max-width: 1280px) {
  }
}
.tariffs__item:first-child .tariffs__item-img{
  top: -85px;
  width: 206px;
  @media (max-width: 1280px) {
    width: 165px; 
    top: -75px;
  }
}
.tariffs__item:nth-child(2) .tariffs__item-img{
  width: 249px;
  @media (max-width: 1280px) {
    width: 234px; 
  }
}

.tariffs__item h3,
.tariffs__item h4,
.tariffs__item h5 {
  background-image: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.tariffs__item-title {
  text-align: center;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: calc(35px / 10);
}

.tariffs__item-subtitle {
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: calc(15px / 10);
  margin: -5px 0px 26px;
}

.tariffs__list-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: calc(18px / 20);
  font-family: "Montserrat", sans-serif;
  margin-bottom: 8.5px;
}

.tariffs__list-item {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: calc(15px / 15);
  font-family: "Montserrat", sans-serif;
  margin: 0px 0px 22px 9px;
}

ul .tariffs__list-item:last-child {
  margin-bottom: 0px;
}

.tariffs__list-item::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
  position: absolute;
  left: -16px;
  top: 5px;
}

.tariffs__list-eco {
  margin-bottom: 26px;
}

.tariffs__list-eco .tariffs__list-item:first-of-type {
  max-width: 262px;
}

.tariffs__item:nth-child(1) .tariffs__list-basic,
.tariffs__item:nth-child(1) .tariffs__list-prem,
.tariffs__item:nth-child(2) .tariffs__list-prem {
  opacity: 0.3;
}

.tariffs__list-basic {
  margin-bottom: 26px;
}
.tariffs__list-basic .tariffs__list-item:first-of-type {
  max-width: 262px;
}

.price__text-old {
  text-decoration: line-through;
  color: #c8c8c8;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: calc(25px / 20);
  font-family: "Montserrat", sans-serif;
  text-align: center;
  margin: 33px 0 -6px;
}

.price__text-new {
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  font-family: "Montserrat", sans-serif;
  letter-spacing: calc(40px / 15);
  background-image: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.tariffs__btn {
  background: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
  padding: 28px 76px 23px;
  font-weight: 700;
  font-size: 25px;
  letter-spacing: calc(25px / 20);
  border-radius: 15px;
  margin: 18px auto 0px;
  display: block;
  color: #fff;
}

.about {
  background: url("../new-img/about__back.png") no-repeat center;
  background-position: 0 29%;
  background-size: 100% 100%;
  min-height: 890px;
  position: relative;
  overflow: hidden;
  margin-bottom: -5px;
}

.about__inner {
  display: flex;
  justify-content: space-between;
  margin-top: 142px;
}

.about__descr {
  border-radius: 30px;
  background: #fff;
  backdrop-filter: blur(100px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 57px 30px 30px;
}

.about__descr.numbers{
  display: none;
}

.about__descr:last-child {
  max-width: 425px;
}

.about__descr-list {
  display: flex;
  gap: 6px;
  justify-content: flex-start;

  @media (min-width: 769px) and(max-width: 1280px) {

    &:nth-child(1){
      height: 168px;
    }

    &:nth-child(2){
      height: 207px;
    }

  }

  li:first-child{
    padding-right: 16px;
    position: relative;
    
    &:before{
      position: absolute;
      display: block;
      content: '';
      right: 0;
      top: 0;
      /* background: url(../new-img/plane-decor.svg) right top no-repeat; */
      height: calc(100% - 20px);
      max-height: 160px;
      width: 10px;
    }
  }
  li:last-child{
    flex: 1 auto;
  }

}

.about__descr-title {
  font-weight: 700;
  font-size: 25px;
  letter-spacing: calc(25px / 12);
  background-image: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: -5px;
}

.about__descr-text {
  font-weight: 500;
  font-size: 13px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: calc(13px / 9);
  line-height: 100%;
  max-width: 290px;
}

.about__descr .about__descr-list:nth-child(2) .about__descr-text {
  max-width: 300px;
}

.about__article-title {
  font-weight: 700;
  font-size: 35px;
  letter-spacing: calc(35px / 10);
  background-image: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.about__article-subtitle {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: calc(15px / 10);
  background-image: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 12px;
}

.about__descr-bottom {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.about__content {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
}

.about__content-img {
  position: absolute;
  bottom: -28px;
  z-index: -2;

  left: calc(50% - 5px);
  width: 452px;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
  -moz-transform: translate(-50%, 0%);
  -o-transform: translate(-50%, 0%);
  -ms-transform: translate(-50%, 0%);
}

.about__content .welcome__btn {
  margin: 0;
  position: relative;
  bottom: 79px;
}

.about__descr-article {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -5px;
}

.footer {
  position: relative;
  z-index: 9;
}

.footer__inner-top {
  background: url("../new-img/footer__top-back.png") no-repeat center;
  background-size: 100% 100%;

  color: #fff;
  padding: 24px 0 36px;
}

.footer__inner-top .container {
  max-width: 1017px;
}

.footer__rights {
  text-align: center;
  font-size: 10px;
  font-weight: 500;

  font-family: "Jost", sans-serif;
}

.footer__rights.numbers, .footer__title.numbers{
  display: none;
}

.footer__title {
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  line-height: 21px;
  font-family: "Jost", sans-serif;
  margin-bottom: 25px;
}

.footer__nav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__nav-link {
  font-weight: 700;
  font-size: 15px;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

.footer__top-line {
  width: 100%;
  height: 1px;
  background: #fff;
  margin: 20px 0 18px;
}

.footer__soc-list {
  display: flex;
  justify-content: space-between;
}

.footer__soc-text {
  display: flex;
  align-items: center;
  gap: 6px;

  font-weight: 700;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  line-height: 100%;

  background-image: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.footer__soc-link {
  background: #fff;
  border-radius: 20px;
  padding: 10px 19px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer__inner-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #242424 0%, #131313 100%);
}

.footer__bottom-toptitle {
  font-family: "Nebula", sans-serif;
  font-size: 10px;
  font-weight: 400;
  text-align: center;
  color: #575757;
  letter-spacing: calc(10px / 10);
}

.footer__bottom-title {
  font-family: "Nebula", sans-serif;
  font-size: 25px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  background-image: linear-gradient(90deg, #cbbb8c 0%, #937e55 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: calc(25px / 10);
}

.header__btn-auth::before{
  content: unset;
}
.header__btn-exit::before{
  content: unset;
}

button{
  background-image: url('../new-img/btn__small.png') !important;
  border-radius: 0px !important;
  background-color: transparent !important;
}

button:hover::before,
button:hover p::before,
button:hover p::after, .footer__soc-link:hover::before, .footer__nav-link:hover::before {
  opacity: 1;
}

button,
button p {
  position: relative;
}

.welcome__btn p::before {
  width: 19px;
  height: 19px;

  left: -70px;

  top: 8px;
}
.welcome__btn p::after {
  width: 19px;
  height: 19px;

  right: -80px;

  top: 8px;
}

button p::before {
  background: url("../new-img/btn__hover-img.svg") no-repeat center;
  width: 15px;
  height: 15px;
  position: absolute;
  left: -55px;
  content: "";
  top: 8px;
  opacity: 0;
}
button p::after {
  background: url("../new-img/btn__hover-img.svg") no-repeat center;
  width: 15px;
  height: 15px;
  position: absolute;
  right: -55px;
  content: "";
  top: 8px;
  opacity: 0;
}

button::before {
  opacity: 0;
/*  background: linear-gradient(355deg, #85d3ff 0%, #00aeff 100%);*/
  box-shadow: 13px -2px 22px rgba(255, 255, 255, 0.12) inset;
  filter: blur(25px);
  background-size: 100% 100%;
  content: "";
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  left: 0px;
}

.footer__soc-link{
  position: relative;
}

.footer__soc-link::before, .footer__nav-link::before{
  opacity: 0;
  background: linear-gradient(355deg, #fff 0%, #fff 100%);
  box-shadow: 13px -2px 22px rgba(255, 255, 255, 0.12) inset;
  filter: blur(35px);
  background-size: 100% 100%;
  content: "";
  position: absolute;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  left: 0px;
}

.footer__inner-top{
  z-index: -2;
  position: relative;
}

.footer__soc-list{
  z-index: 5;
}

@media (max-width: 1280px) {
  .header__inner {
    padding-top: 19px;
  }
  .header__item-logo {
    width: 58px;
  }
  .header__item-link {
    display: block;
  }
  .welcome .container {
    padding-top: 86px;
    padding-bottom: 114px;
  }
  .welcome__inner-toptitles {
    max-width: 754px;
    margin-left: 182px;
  }
  .welcome__toptitle {
    font-size: 20px;
    letter-spacing: calc(20px / 10);
  }
  .welcome__inner-titles {
    max-width: 767px;
    margin: -4px 0px 0px 179px;
  }
  .welcome__title {
    font-size: 100px;
    letter-spacing: calc(100px / 10);
  }
  .welcome__inner-subtitles {
    max-width: 751px;
    margin: 0px 0px 0px 184px;
  }
  .welcome__subtitle {
    font-size: 11px;
    letter-spacing: calc(11px / 10);
  }
  .welcome__back-img {
    width: 396px;
  }
  .welcome__back-img {
    left: 51.7%;
    bottom: -6px;
  }
  .welcome::before{
    background: url(../new-img/welcome__back-laptop.jpg);
    top: -99px;

    height: calc(100% + 100px);
    background-repeat: no-repeat;
    background-size: cover;
  }

  .welcome__btn {
    margin-top: 319px;
    font-size: 25px;
    letter-spacing: calc(25px / 19);
    padding: 26px 77px;
    border-radius: 10px;
    background-size: 100% 100%;
  }
 
  .about__content .welcome__btn::after{
    width: calc(100% + 0.5px);
  }
  
  .welcome__btn-back {
    width: 100%;
    height: 100%;
  }
  h2 {
    font-size: 50px;
    letter-spacing: calc(50px / 10);
  }
  /* .for{
    background-image: url('../new-img/for__back-laptop.png');
  } */
  .for__toptitle {
    margin-top: 12px;
  }
  .for__list {
    grid-template-columns: repeat(3, 22.7%);
    gap: 41px 184px;
    margin-top: 38px;
    padding: 0 10px;
  }
  .for__item-title {
    font-size: 20px;
    letter-spacing: calc(20px / 10);
    padding-top: 10px;
  }
  .for__item-text {
    font-size: 13px;
    letter-spacing: calc(13px / 20);
    max-width: unset;
  }
  .for__item-img {
    width: 220px;
  }
  .for__item:nth-child(2),
  .for__item:nth-child(3),
  .for__item:nth-child(5),
  .for__item:nth-child(8) {
    margin-top: 0px;
  }
  .for__item:nth-child(2) {
    gap: 18px;
  }

  .for__item:nth-child(4) {
    grid-column-start: 1;
    grid-column-end: 3;
    margin-left: -30px;
    margin-bottom: 10px;
  }
  .for__item-text {
    max-width: 262px;
  }
  .for__item:nth-child(5) {
    margin-left: -163%;
    margin-bottom: 10px;
  }
  .for__item:nth-child(8) .for__item-text {
    min-width: unset;
  }
  .for__item:nth-child(8) .for__item-img {
    width: 245px;
  }
  .for__btn {
    margin-top: 16px;
    font-size: 22px;
    letter-spacing: calc(22px / 20);
    padding: 23px 66px;
  }
  .for__btn-back {
    width: 100%;
    bottom: -3px;
    left: 0.5px;
  }
  .for {
    padding-bottom: 53px;
  }
  .learn{
/*    background-image: url('../new-img/learn__back-laptop.png');*/
  }
  .learn .for__title-img {
    width: 22px;
    height: 22px;
  }
  .learn {
    padding: 21px 0 5px;
  }
  .learn .for__toptitle {
    margin: 14px 0px 2px;
  }
  .learn__inner-img {
    width: 447px;
    height: 439px;
  }
  .learn__item {
    flex-direction: column;
    align-items: start;
  }
  .learn__item-text {
    font-size: 13px;
    letter-spacing: calc(13px / 20);
  }
  .learn__inner {
    margin-top: 40px;
    position: relative;
  }
  .learn__list:last-of-type {
    margin-left: 55px;
  }
  .learn__list {
    gap: 16px;
  }
  .learn__inner-img {
    margin: 0px auto 0px -63px;
  }
  .learn__list:last-of-type .learn__item:nth-child(2) .learn__item-text {
    max-width: 319px;
  }
  .learn__list:first-of-type .learn__item:nth-child(4) .learn__item-text {
    max-width: 365px;
  }
  .learn .for__btn {
    display: none;
  }
  .for__btn.learn__inner-btn {
    display: block;
    position: absolute;
    bottom: 3px;
    padding: 24px 68px;
    left: 50%;
    transform: translate(-50%, 0%);
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
  }
  .learn__inner-btn .for__btn-back {
    bottom: -2px;
    height: 100%;
    border-radius: 10px;
  }
  .learn__inner:last-of-type {
    margin: 46px 0px 55px;
  }
  .learn__left-img {
    width: 266px;
  }
  .learn__right-img {
    width: 266px;
  }
  .learn__inner-article .learn__article-img:first-of-type {
    width: 20.5px;
    height: 70px;
  }
  .learn__inner-article .learn__article-img:last-of-type {
    height: 71px;
    width: 16px;
    margin-left: 5px;
    margin-top: -5px;
  }
  .learn__article-title {
    font-size: 20px;
    letter-spacing: calc(20px / 20);
    line-height: normal;
  }
  .learn__article-subtitle {
    font-size: 13px;
    letter-spacing: calc(13px / 20);
    line-height: normal;
  }
  .learn__inner-article {
    margin-left: 15px;
    margin-top: 5px;
  }
  .learn__inner-left {
    margin-right: 26px;
  }
  .learn__inner-right,
  .learn__inner-left {
    overflow: hidden;
    min-height: 210px;
  }
  .learn__right-img {
    margin: 0px -58px -33px 12px;
  }
  .learn__inner-right .learn__inner-article .learn__article-img:first-of-type {
    width: 33px;
    height: 70px;
  }
  .learn__article-title {
    max-width: 198px;
  }
  .learn__inner-right .learn__article-subtitle {
    max-width: 240px;
  }
  .program .for__toptitle {
    font-size: 10px;
    letter-spacing: calc(10px / 20);
  }
  .program__list {
    margin-top: 41px;
    max-width: 1000px;
    gap: 40px;
  }
  .program__inner-title {
    font-size: 13px;
    letter-spacing: calc(13px / 15);
  }
  .program__item-title {
    font-size: 20px;
    letter-spacing: calc(20px / 10.1);
  }
  .program__descr-lesson {
    font-size: 10px;
    letter-spacing: calc(10px / 20);
    width: 69px;
    height: 21px;
  }
  .program__descr-name {
    font-size: 13px;
    letter-spacing: calc(13px / 20);
  }
  .program__border-box {
    padding: 30px 30px 35px 36px;
  }
  .program__descr-list {
    margin-top: 15px;
  }
  .program__item-descr {
/*    min-width: 492px;*/
  }
  .program__descr-line {
    margin: 9px 0;
  }
  .program__item-content {
    max-width: 381px;
  }
  .program__content-item {
    font-size: 13px;
    letter-spacing: calc(13px / 20);
    margin: 11px 0px 0px 15px;
    line-height: 16px;
  }
  .program__content-item::before {
    left: -15px;
    top: 7px;
  }
  

  .tariffs {
    margin: 96px 0 85px;
  }
  .tariffs__item {
    padding: 24px 14px 27px 20px;
    max-width: 360px;
  }
  .tariffs__item-title {
    font-size: 30px;

    letter-spacing: calc(30px / 10);
  }
  .tariffs__list-item {
    font-size: 13px;
    margin: 0px 0px 13px 9px;
    letter-spacing: calc(13px / 16);
  }
  .tariffs__item-subtitle {
    font-size: 13px;

    letter-spacing: calc(13px / 10);
  }
  .tariffs__list-title {
    font-size: 13px;

    letter-spacing: calc(13px / 10);
  }
  .tariffs__list-eco {
    margin-bottom: 23px;
  }
  .tariffs__item::before {
    background-size: 100% 100%;
    width: 102%;
  }
  .price__text-old {
    font-size: 20px;
    margin: 22px 0 0px;
    letter-spacing: calc(20px / 10);
   
  }
  .price__text-new {
    font-size: 30px;

    letter-spacing: calc(30px / 10);
  }
  .tariffs__btn {
    padding: 26px 66px 22px;
    background-size: 100% 100%;
    font-size: 22px;
    letter-spacing: calc(22px / 20);
    
    margin: 22px auto 0px;
  }
  .tariffs__item:last-child .tariffs__item-img {
    width: 160px;
    top: -60px;
    left: 53%;
  }
  .about__inner {
    margin-top: 61px;
  }
  .about__descr {
    padding: 40px 19px 30px 22px;
  }
  .about__descr:first-of-type {
    border-radius: 0px 30px 30px 0px;
    margin-left: -20px;
  }
  .about__descr:last-of-type {
    border-radius: 30px 0px 0px 30px;
    margin-right: -26px;
    gap: 15px;
    padding: 40px 25px 29px 23px;
  }
  .about__content-img {
    width: 396px;
    bottom: -9px;
    left: calc(50% + 18px);
  }

  .about__descr:first-of-type .about__descr-bottom {
    gap: 78px;
  }
  .about__descr:last-of-type .about__descr-bottom {
    gap: 50px;
    margin-top: 28px;
  }
  .about__descr:first-of-type
    .about__descr-list:nth-child(2)
    .about__descr-text {
/*    margin-left: -10px;*/
  }
  .about {
    min-height: 768px;
  }
  .about__content .welcome__btn {
    bottom: 37px;
  }
  .footer__inner-top {
    padding: 18px 0 33px;
  }
  .footer__inner-top .container {
    max-width: 735px;
  }
  .footer__nav-link {
    font-size: 12px;
    letter-spacing: calc(12px / 20);
  }
  .footer__top-line {
    margin: 16px 0 20px;
  }
  .footer__soc-text {
    font-size: 12px;
    letter-spacing: calc(12px / 20);
  }
  .footer__bottom-img {
    height: 88px;
  }
  .footer__bottom-title {
    font-size: 23px;
    margin-top: -2px;
    letter-spacing: calc(23px / 20);
  }
  
  .welcome__btn p::after{
    right: -55px;
    top: 5px;
  }
  .welcome__btn p::before{
    left: -50px;
    top: 5px;
  }
  button p::after{
    right: -50px;
    top: 5px;
  }
  button p::before{
    left: -50px;
    top: 5px;
  }

  .header__menu:before{
    width: 100px;
    height: 90px;
    left: 20px;
    top: 30px;
  }
  .header__menu:after{
    width: 100px;
    height: 90px;
    right: 20px;
    top: 30px;
  }
  .popup__auth:before{
    width: 100px;
    height: 90px;
    top: 107px;
  }
  .popup__auth:after{
    width: 100px;
    height: 90px;
    top: 107px;
  }
  button{
    background-size: 100% 100%;
  }
  .footer__inner-top{
    background-image: url('../new-img/footer__top-back--laptop.png');
  }
  .welcome__mobile-title{
    padding-top: 20px;
  }
}

@media (max-width: 1080px) {
  .mobile {
    display: block !important;
  }
  .header__item-text,
  .header__item-line,
  .welcome__inner-toptitles,
  .welcome__inner-titles,
  .learn__inner-img,
  .learn .for__btn.learn__inner-btn,
  .tariffs__list,
  .about__content {
    display: none;
  }
  .header__list {
    margin-right: 130px;
  }
  .header__inner {
    padding-top: 21px;
  }
  .welcome__inner-subtitles {
    max-width: unset;
    margin-left: 0;
    justify-content: center;
    gap: 6px;
    margin-top: -7px;
  }
  .welcome__mobile-title {
    margin: 0 auto;
    font-size: 90px;
    letter-spacing: calc(90px / 10);
    max-width: 440px;
    line-height: 96%;
  }
  .welcome .container {
    padding-top: 23px;
    padding-bottom: 204px;
  }
  .welcome__back-img {
    width: 507px;
    bottom: -14px;
    left: 52.7%;
  }
  .welcome::before {
    background-size: cover;
    background-position: center; 
    top: -59px;
  }
  .welcome__btn {
    margin-top: 577px;
  }
  .welcome__subtitle {
    font-size: 10px;
    letter-spacing: calc(10px / 10);
  }
  .for__toptitle {
    font-size: 8px;
    letter-spacing: calc(8px / 10);
    margin-top: 17px;
    margin-bottom: 5px;
  }
  h2 {
    font-size: 40px;
    letter-spacing: calc(40px / 10);
  }
  .for {
    padding-bottom: 77px;
    /* background-image: url('../new-img/for__back-laptop_v.png');  */
  }
  .for__list {
    grid-template-columns: repeat(2, 39%);
    gap: 63px 130px;
    justify-content: center;
    margin: 44px 43px 56px;
  }
  .for__item:nth-child(4),
  .for__item:nth-child(5) {
    grid-column: unset;
    grid-column-end: unset;
    margin: 0px;
  }

  .for__item-text {
    letter-spacing: calc(13px / 18);
  }
  .for__item:nth-child(8) .for__item-text {
    min-width: 297px;
  }
  .learn {
/*    background-image: url('../new-img/learn__back-laptop_v.png');*/
  }
  .learn .for__toptitle {
    margin: 16px 0px 5px;
  }
  .learn__inner {
    justify-content: space-between;
  }
  .learn__list:first-of-type {
    position: relative;
    padding-left: 10px;
    max-width: 100%;
    width: 100%;
  }
  .learn__list:last-of-type {
    margin: 0;
  }
  .learn__list:last-of-type .learn__item-text {
    max-width: 324px;
  }
  .learn__list:first-of-type::before {
    content: "";
    height: 514px;
    width: 1px;
    background: linear-gradient(90deg, #79cfff 0%, #00aeff 100%) no-repeat
      center;
    position: absolute;
    right: 0px;
  }
  .learn__inner-img {
    margin: 10px auto 0px;
    width: 478px;
    height: 470px;
  }
  .learn__inner {
    margin-top: 53px;
  }
  .learn__item-text {
    max-width: 283px;
  }
  .learn__border-box {
    flex-direction: column-reverse;
    justify-content: space-between;
    padding-top: 36px;
  }
  .learn__inner:last-of-type {
    margin: 52px 0px 55px;
  }
  .learn__left-img {
    width: 391px;
  }
  .learn__inner-left,
  .learn__inner-right {
    min-height: 451px;
  }
  .learn__right-img {
    margin: 0;
    width: auto;
  }
  .learn__inner-left {
    margin-right: 11px;
  }
  .learn .for__btn {
    display: block;
  }
  .learn__inner:last-of-type {
    margin: 52px 0px 49px;
  }
  .program .for__toptitle {
    margin-top: 94px;
    font-size: 8px;
    letter-spacing: calc(8px / 20);
  }
  .program__inner-title {
    font-size: 11px;
    letter-spacing: calc(11px / 20);
  }

  .swiper-tariffs {
    margin-top: 117px;
    padding-right: 50px;
    position: relative;
    padding-bottom: 41px;
  }
  .swiper-tariffs .swiper-slide {
    min-width: 355px;
  }
  .swiper-tariffs .swiper-slide{
    .tariffs__item-img{
      top: -77px;
    }
  }
  .swiper-tariffs .swiper-slide:nth-child(3) .tariffs__item-img{
    top: -54px;
  }
  .swiper-tariffs .swiper-slide:nth-child(2){
    .tariffs__item-img{
      width: 234px;
      top: -84px;
    }
  }

  .tariffs__item {
    list-style-type: none;
    padding: 27px 0px 19px 0px;
    min-width: 355px;
  }
  .tariffs__list-eco, .tariffs__list-basic, .tariffs__list-prem{
    margin-left: 17px;
  }
  .tariffs__item::before {
    left: -2px;
    width: 102%;
  }
  .swiper-tariffs .swiper-pagination {
    bottom: 0px;
  }
  .swiper-tariffs .swiper-pagination-bullet {
    width: 39px;
    height: 6px;
    border-radius: 20px;
    background: #e6e6e6;
    margin: 0 !important;
    opacity: 1;
  }
  .swiper-tariffs .swiper-pagination-bullet:first-of-type {
    margin-right: -2px !important;
  }
  .swiper-tariffs .swiper-pagination-bullet:last-of-type {
    margin-left: -2px !important;
  }
  .swiper-tariffs .swiper-pagination-bullet-active {
    background: linear-gradient(90deg, #79cfff 0%, #00aeff 100%) no-repeat
      center;
    position: relative;
    z-index: 5;
  }
  .tariffs {
    margin: 96px 0 69px;
  }

  .program__item-descr {
/*    min-width: none;*/
    width: calc(66.5% - 25px);
  }
  .program__item-content {
/*    max-width: none;*/
    width: calc(33.5% - 25px);
  }
  .about__content.mobile {
    position: unset;
    width: 100%;

    transform: unset;
    -webkit-transform: unset;
    -moz-transform: unset;
    -o-transform: unset;
    -ms-transform: unset;
    left: unset;
    position: relative;
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
  }
  .about__content-img {
    position: unset;

    transform: unset;
    -webkit-transform: unset;
    -moz-transform: unset;
    -o-transform: unset;
    -ms-transform: unset;
    width: 384px;

    z-index: 0;
  }
  .about__descr {
    border-radius: 0px 0px 0px 0px !important;
    width: 100%;
    padding: 28px 0px 29px 18px;
    gap: 24px;
    display: flex;
    flex-direction: column;
    flex: 0 0 50%;
  }
  .about__inner {
    margin-top: 25px;
    position: relative;
    justify-content: center;
    overflow: visible;
  }

  .about__inner::before {
    content: "";
    background: url("../new-img/about__back-mobile.png") no-repeat;
    background-size: 100% 490px;
    top: -60px;
    left: -20px;
    width: calc(100% + 40px);
    height: 490px;
    position: absolute;

    z-index: 0;
  }
  .about__descr:last-of-type {
    padding: 30px 23px 24px 40px;
    width: 50%;
    max-width: 100%;
  }
  .about__descr-text ~ .about__descr-img {
    margin-top: 30px;
  }
  .about__content .welcome__btn {
    margin-top: -210px;
  }
  .about__descr-text {
    max-width: 308px;
  }
  .about__descr:last-of-type {
    gap: 22px;
  }
  .about__descr:last-of-type .about__descr-list {
    gap: 6px;
  }
  .about__descr:first-of-type
    .about__descr-list:nth-child(2)
    .about__descr-text {
   /* min-width: 333px;
    max-width: unset;*/
  }
  .about__descr:first-of-type .about__descr-bottom {
    gap: 60px;
    justify-content: start;
    margin-left: 51px;
  }
  .about__descr:last-of-type .about__descr-bottom {
    gap: 46px;
    justify-content: start;
    margin-left: 60px;
    margin-top: 0;
  }
  .about__descr .about__descr-bottom{
    margin-top: auto;
  }
  .footer {
    margin-top: 31px;
  }
  .footer__inner-top {
    background: url("../new-img/footer__top-back--mobile.png");
    background-size: 100% 100%;
    padding: 18px 0 28px;
  }
  .about__descr .about__descr-list:nth-child(2) .about__descr-text {
    max-width: 372px;
    min-width: 320px;
  }
  .about__descr:last-of-type {
    padding: 31px 23px 28px 27px;
  }
  .footer__rights {
    font-size: 8px;
    letter-spacing: 0px;
  }
  .footer__title {
    font-size: 20px;
    margin-bottom: 19px;
  }
  .footer__bottom-title {
    font-size: 20px;
    letter-spacing: calc(20px / 20);
  }
  .footer__bottom-toptitle {
    font-size: 8px;
    letter-spacing: calc(8px / 20);
  }
  .footer__bottom-img {
    height: 78px;
  }
  .header__menu.active ~ .header .header__list{
    margin-right: 109px;
  }

  .header__menu:before{
    content: unset;
  }
  .header__menu:after{
    content: unset;
  }
  .header__menu .container {
    padding-top: 33px;
}
  .popup__auth:before{
    left: 55px;
  }
  .popup__auth:after{
    right: 55px;
  }

  .welcome::before{
    background-image: url(../new-img/welcome__back-ipad.jpg) ;
    background-size:cover;
   
  }
  .header__menu-back{
    height: calc(100% + 10px);
  }
 
}

@media (max-width: 736px) {
  .header__btn-auth span,
  .header__menu-btn span {
    display: none;
  }
  .header__list {
    margin-right: 0px;
    
  }
  .header__menu.active ~ .header .header__list{
    margin-right: 0px;
  }
  .popup__auth.active ~ .header .header__list{
    margin-left: 0px;
  }
  .header__btn-auth {
    background: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
    padding: 7px 16px;
    border-radius: 20px !important;
  }
  .header__btn-exit {
    background: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
    padding: 7px 16px;
    border-radius: 20px !important;
  }
  .header_btn-img {
    width: 12px;
    height: 13px;
  }
  .header_btn-img path {
    fill: #fff;
  }
  .welcome__mobile-title {
    font-size: 60px;
    letter-spacing: calc(60px / 10);
    max-width: 297px;
    line-height: 88%;
  }
  .welcome::before {
    background: url("../new-img/welcome__back-mobile.png") !important;
    top: -117px;
    /* height: calc(100% + 117px); */
    height: 850px;
  }
  .welcome__back-img {
    width: 329px;
  }
  .welcome__inner-subtitles {
    margin-top: 1px;
    gap: 6px;
  }
  .welcome__btn {
    margin-top: 386px;
    padding: 23px 66px;
    font-size: 22px;
    letter-spacing: calc(22px / 19);
  }
  .welcome .container {
    padding-bottom: 100px;
  }
  .welcome__back-img {
    left: 54.7%;
  }
  h2 {
    font-size: 35px;
    letter-spacing: calc(35px / 10);
  }
  .for .for__title {
    margin: 0 auto;
    max-width: 215px;
  }
  .for__list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 34px 0px 59px;
    gap: 82px;
  }
  .for__item {
    max-width: 265px;
  }
  .for__item:nth-child(3) {
    margin-top: -15px;
  }
  .for__item:nth-child(4) {
    margin-top: -23px;
    margin-bottom: -15px;
  }
  .for__item:nth-child(6) {
    margin-top: -15px;
    margin-bottom: -30px;
    gap: 15px;
  }
  .for__item:nth-child(7) {
    margin-top: -15px;
  }

  .for::before {
    background-size: 341px 212px;
    background-repeat: no-repeat;
    width: 341px;
    right: -22px;
    height: 212px;
  }
  .for {
    padding-bottom: 65px;
    background-image: url('../new-img/for__back-mobile.png'); 
  }
  .learn {
/*    background-image: url('../new-img/learn__back-mobile.png');*/
  }
  .learn .for__toptitle {
    margin: 19px 0px 5px;
  }
  .learn__inner-img{
    width: 346px;
    height: 341px;
    margin: 0;
  }
  .learn__list:first-of-type{
    padding-left: 0px;
  }
  .learn__list:first-of-type::before{
    content: unset;
  }
  .learn__inner{
    flex-direction: column;
    margin-top: 24px;
  }
  .learn__list:first-of-type .learn__item:nth-child(5) .learn__item-text{
    min-width: 360px;
  }
  .learn__list:first-of-type{
    margin-bottom: 16px;
  }
  .learn__inner:last-of-type {
    margin: 18px 0px 30px;
}
.learn__inner-article {
  margin-left: 35px;
}
.learn__article-box {
  margin-left: 0px;
}
.learn__left-img{
  width: 347px;
  height: 289px;
}
.learn__inner-left {
  margin: 0px 0px 39px 0px;
}
.learn__border-box{
  min-height: 442px;
}
.learn__inner,
.learn__list,
.learn__item{
  max-width: 100%;
}
.learn .container{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.learn__inner:last-of-type {
  width: 100%;
}
.learn__inner-right .learn__inner-article {
  margin-left: 10px;
  margin-top: 5px;
}
.learn__right-img {
  margin-left: 64px;
  margin-bottom: -20px;
  height: 283px;
}
.learn__left-img {
  margin-left: 6px;
}
.about h2,
.for__toptitle{
  position: relative;
  z-index: 1;
}
.program .for__toptitle {
  margin-top: 70px;
}
.program__list {
  margin-top: 25px;
}
.program__item-inner:first-of-type {
  padding: 6px 0 21px;
}
.program__border-box{
  flex-direction: column;
}
.program__item-title{
  text-align: center;
}
.program__item-descr{
  min-width: unset;
}
.program__border-box {
  padding: 0;

  height: 100%;
  width: 100%;
  position: relative;
  background-image: none;
}
.program__item-descr{
  position: relative;
  z-index: 5;
}
.program__item-content{
  position: relative;
  z-index: 5;
  overflow: hidden;
}
.program__border-box::after {
  content: '';
  position: absolute;
  top:5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='20' ry='20' stroke='%234DC4FBFF' stroke-width='1.5' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");
  border-radius: 20px;
  z-index: 1;
}
.program__item-content::before {
  content: '';
  position: absolute;
  bottom:5px;
  left: 5px;
  width: calc(100% - 10px);
  height: 150%;
  background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='20' ry='20' stroke='white' stroke-width='1.5' stroke-dasharray='6%2c 14' stroke-dashoffset='0' stroke-linecap='square'/%3e%3c/svg%3e");  border-radius: 20px;
  z-index: 0;
  border-top: none;
}

.program__item-content{
  background: linear-gradient(90deg, #79cfff 0%, #00aeff 100%);
  border-radius: 20px;
  color: #fff;
}
.program__content-item::before{
  content: unset;
}
.program__item-inner:last-of-type{
  padding: 0;
}
.program__item-descr{
  padding: 20px 17px 19px 26px;
  margin-left: auto;
  margin-right: auto;
  max-width: 353px;
  width: 100%;
}
.program__item-title{
  max-width: 230px;
  margin: 0 auto;
  line-height: 100%;
}
.program__descr-line{
  background: url(../new-img/program__descr-back--mobile.svg);
  background-size: 100% 100%;
  height: 13px;
  margin: 8px 0px;
}
.program__item-content{
  position: relative;
  padding: 14px 26px 28px;
  width: 100%;
  max-width: unset;
}

.program__descr-lesson{
  min-width: 69px;
  min-height: 25px;
}
.program__content-item{
  margin: 0;
}
.program__item-content .program__descr-line{
  background: url(../new-img/program__content-back--mobile.png);
  background-size: 100% 100%;
  height: 13px;
  margin: 5px 0px;
}
.program__list {
  gap: 60px;
}

.program__item:nth-child(2) .program__item-title{
  max-width: unset;
}
.program__descr-item:nth-child(10) .program__descr-lesson, .program__descr-item:nth-child(11) .program__descr-lesson, .program__descr-item:nth-child(12) .program__descr-lesson{
  width: 77px;
}
.tariffs {
  margin: 72px 0 35px;
}
.tariffs__list{
  display: flex;
  flex-direction: column;
  margin-top: 100px;
  gap: 149px;
}
.tariffs__item{
  padding: 27px 19px 27px 19px;
}
.swiper-tariffs.mobile{
  display: none !important;
}
.tariffs__item{
  min-width: 100%;
  max-width: 100%;
}
.about__content .welcome__btn{
  display: none;
}
.about__content-img{
  width: 329px;

}
.about__content.mobile{
  margin-top: 11px;
  margin-bottom: -80px;
}
.about__inner{
  display: none;
}
.about__descr.numbers{
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  gap: 45px;
}
.about .container{
  padding: 0;
}
.about h2{
  padding: 0 20px;
}
.about__descr.numbers::before {
  content: "";
  background: url(../new-img/about__back-mobile.png) no-repeat;
  background-size: 100% 490px;
  top: -60px;
  left: -20px;
  width: calc(100% + 40px);
  height: 490px;
  position: absolute;
  z-index: 1;
}
.about__descr-text ~ .about__descr-img {
  margin-top: 8px;
}
.about__descr:last-of-type {
  padding: 31px 23px 28px 21px;
}
.about__descr:last-of-type .about__descr-list {
/*  gap: 14px;*/
}
.about__descr .about__descr-list:nth-child(2) .about__descr-text {
  max-width: unset;
  min-width: unset;
}

.about__descr:last-of-type .about__descr-bottom{
  display: grid;
  grid-template-columns: repeat(2, 35%);
  gap: 50px 100px;
  margin: -10px 0px 0px;
  padding: 0px 20px;
  background: url(../new-img/about__bottom-back.png) no-repeat;
  background-size: 100% 100%;
  
 
}
.about__descr:last-child, .about__descr-text{
  max-width: unset;
}
.footer__inner-top .container{
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}
.footer__soc-list{
  flex-direction: column;
  gap: 42px;
  margin-left: 15px;
}
.footer__nav-list{
  flex-direction: column;
  align-items: start;
  gap: 30px;
}
.footer__rights, .footer__title{
  display: none;
}
.footer__top-line{
  width: 10px;
  height: auto;
  margin: 0 20px;
}
.footer__inner-top{
  background: url(../new-img/footer__top-back--mobile1.png);
  background-size: 100% 100%;
  padding: 18px 0 28px;
}
.footer__rights.numbers, .footer__title.numbers{
  display: block;
}
.footer__top-line{
  background: url(../new-img/footer__line-back--mobile.png) no-repeat;
  background-size: 100% 100%;
}
.footer__soc-link{
  padding: 11px 15px;
}
.footer__inner-top {
  padding: 18px 0 34px;
}
.footer__bottom-img{
  width: 39px;
}
.footer__bottom-title {
  font-size: 16px;
  letter-spacing: calc(16px / 10);
}

.popup__auth:before{
 content: unset;
}
.popup__auth:after{
  content: unset;
}
.header__menu .container{
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
}
.header__menu .footer__top-line{
  width: 1px;
  min-width: 1px;
  margin-right: 27px;
}
.header__menu .footer__soc-link {
  padding: 0;
  width: 137px;
  height: 30px;
  justify-content: center;
}
.header__menu .footer__nav-list{
  gap: 29px;
  margin-top: -5px;

}
.welcome__mobile-title{
  padding-top: 20px;
}
.tariffs__item:first-child .tariffs__item-img {
  top: -75px;
}
.header__menu-btn::before{
  display: none;
}
.header__menu .footer__soc-link::before, .popup__lesson-link::before,
button::before {
  background: linear-gradient(355deg, #85d3ff 0%, #00aeffd4 100%);
  filter: blur(10px);
}
.footer__soc-link::before, .footer__nav-link::before {
  background: linear-gradient(355deg, #fff 0%, #ffffffc7 100%);
  filter: blur(15px);
}
.about{
  background-position-y: -180px;
  background-size: cover;
}
.header__menu-btn{
  height: 27px;
}
.header__btn-auth{
  height: 27px;
}
.header__btn-exit{
  height: 27px;
}
.for {
    padding-bottom: 65px;
    background: url('../new-img/about-bg-mob.png') no-repeat;
    margin-top: -5px;
     background-size:cover;
  }
  .learn::before {
  background: url("../new-img/learn-top-bg-mob.png") no-repeat;
  background-size:cover;

}
.popup__auth-input::placeholder{
  font-size: 10px;
}
.welcome::before{
  background-size:cover;
}
.popup__note-inner{
  margin-top: 0;
}
.popup__note-link{
  margin-top: 50px;
}
.header__menu-back{
  bottom:-6px;
}
}
.wpcf7 form .wpcf7-response-output{
  display: none !important;
}
html::-webkit-scrollbar {
    display: none;
}

/* Для Firefox */
html {
    scrollbar-width: none;
}
@media(min-width:1601px){
  .welcome__inner-titles h1:first-child{
    padding-left: 111px;
  }
  .welcome__inner-toptitles{
    padding-left: 111px;
  }
  .welcome__inner-subtitles{
    padding-left: 111px;
  }
  /* .welcome::before{
    top: -106px;
  } */
  .header{
    top: -1px;
  }
  .welcome__back-img{
    bottom: -45px;
  }
  .learn__inner{
    margin-top: 144px;
  }
  .learn__inner-img{
    margin-right: 64px;
  }
  .learn__inner:last-of-type{
    margin-top: 32px;
  }
  .learn__left-img {
    width: 363px;
  }
  .learn__inner-article .learn__article-img:last-of-type {
    margin-left: 3px;
  }
  .program__list{
    margin-top: 33px;
  }
  .program__descr-list{
    margin-top: 16px;
  }
  .program__descr-item {
    gap: 6px;
  }
  .program__item-title{
    white-space: nowrap;
  }
  .tariffs{
    margin-top: 40px;
  }
}
@media(max-width:1080px){
  .about {
  background: url("../new-img/about__back-tablet.png") no-repeat center;
  background-size: cover;
    background-position-y: -122px;
  }
}
@media(max-width:736px){
  .header__btn-exit svg path{
    fill: #fff;
  }
  .header__btn-exit span{
    display: none;
  }
  .for{
    background-position-x:center;
  }
  
  .for__toptitle{
    margin-top: 38px;
  }
}
.header__list{
  position: absolute;
  left: 50.4%;
  transform: translateX(-50%);
}
@media(max-width:375px){
  .about__article-subtitle{
    font-size: 13px;
  }
}
@media (min-width: 1440px) and (max-width: 1600px){
  .welcome::before{
    background: url("../new-img/main-bg-1600.png");
    /* background-size: cover; */
    background-position: center;
    background-position-y: center;
    background-position-y: 50px;
  }
  .welcome__inner-toptitles{
    max-width: 970px;
    margin-left: 260px;
  }
  .welcome__inner-titles{
    max-width: 990px;
    margin: -8px 0px 0px 260px;
  }
  .welcome__inner-subtitles{
    max-width: 970px;
    margin: -14px 0px 0px 260px;
  }
  .welcome__back-img{
    width: 470px;
  }
  .welcome__title{
    font-size: 114px;
  }
  .welcome__toptitle{
    font-size: 20px;
  }
  .welcome__subtitle{
    font-size: 14px;
  }
}
@media (min-width: 1360px) and (max-width: 1440px){
  .welcome::before{
    background: url("../new-img/main-bg-1440.png") no-repeat;
    /* background-size: cover; */
    background-position: center;
    background-position-y: center;
    background-position-y: 50px;
  }
  .welcome__inner-toptitles{
    max-width: 906px;
    margin-left: 224px;
  }
  .welcome__inner-titles{
    max-width: 930px;
    margin: -8px 0px 0px 220px
  }
  .welcome__inner-subtitles{
    max-width: 906px;
    margin: -14px 0px 0px 224px;
  }
  .welcome .container{
    padding-bottom: 56px;
  }
  .welcome__title{
    font-size: 114px;
  }
  .welcome__toptitle{
    font-size: 20px;
  }
  .welcome__subtitle{
    font-size: 14px;
  }
  .welcome__back-img {
    width: 410px;
  }
}
@media screen and (max-width: 1366px) and (max-height: 768px) {
   .welcome::before{
    background: url("../new-img/main-bg-1366.png") no-repeat;
    /* background-size: cover; */
    background-position: center;
    background-position-y: center;
    background-position-y: 50px;
  }
}

@media (min-width: 1280px) and (max-width: 1360px){

  .welcome__inner-toptitles{
    max-width: 844px;
    margin-left: 224px;
  }
  .welcome__inner-titles{
    max-width: 865px;
    margin: -8px 0px 0px 220px
  }
  .welcome__inner-subtitles{
    max-width: 844px;
    margin: -14px 0px 0px 224px;
  }
  .welcome .container{
    padding-bottom: 56px;
  }
  .welcome__title{
    font-size: 100px;
  }
  .welcome__toptitle{
    font-size: 20px;
  }
  .welcome__subtitle{
    font-size: 14px;
  }
  .welcome__back-img {
    width: 380px;
  }
  .for__list {
    gap: 50px 50px;
    grid-template-columns: repeat(4, 21.7%)
  }
  .for__item:nth-child(8) .for__item-text{
    min-width: unset;
  }
  .for__item:nth-child(5) .for__item-text {
  min-width: unset;
}
}
/* @media screen and (max-width: 1280px) and (max-height: 1024px) {
   .welcome::before{
    background: url("../new-img/main-bg-1280x1024.png") no-repeat;
    background-position: center;
    background-position-y: center;
    background-position-y: 50px;
  }
} */
/* @media screen and (max-width: 1280px) and (max-height: 800px) {
   .welcome::before{
    background: url("../new-img/main-bg-1280x800.png") no-repeat;
    background-position: center;
    background-position-y: center;
    background-position-y: 50px;
  }
} */
@media(max-width:1194px){
  .for {
    background: url("../new-img/for__back-laptop-new.png") no-repeat;
    background-size: auto;
    position: relative;
    background-size: 100%;
    margin-top: -5px;
  }
}
@media (max-width: 1080px) {
  .for {
    background-image: url('../new-img/for__back-laptop_v-new.png');
    background-size:cover;
  }
}
/* @media screen and (max-width: 1024px) and (max-height: 768px) {
   .welcome::before{
    background: url("../new-img/main-bg-1024.png") no-repeat;
    background-position: center;
    background-position-y: center;
    background-position-y: 50px;
  }
}
@media screen and (max-width: 800px) and (max-height: 600px) {
   .welcome::before{
    background: url("../new-img/main-bg-800.png") no-repeat;
    background-position: center;
    background-position-y: center;
    background-position-y: 50px;
  }
} */
@media(max-width:736px){
   .for {
    padding-bottom: 65px;
    background: url('../new-img/about-bg-mob.png') no-repeat;
    margin-top: -5px;
    background-size: cover;
  }
  .about__descr-list li:first-child{
    padding-right: 16px;
  }
  .about__descr.numbers{
    width: 100%;
  }
}