body {
  overflow-x: hidden;
}

:root {
  --bg:#F8F9FF;
  --2:#3F45C1;
  --3:#263F53;
  --white:#FFF;
  --4:#7D8C98;
  --grey:#999;
  --5:#565656;
}

.container {
  max-width: 1156px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.row {
  margin: 0;
}

header {
  background: var(--bg);
  position: fixed;
  width: 100%;
  z-index: 3;
  top:0;
}
header .container {
  padding-top: 38.44px;
  padding-bottom: 30.88px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--2);
}
header nav ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 17px;
}
header nav ul li a {
  text-decoration: none;
  color: var(--3);
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
header nav ul li a:hover{
    text-decoration:underline;
}
header .call {
  color: var(--2);
  font-family: "Nunito";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: block;
  padding-top: 12.5px;
  padding-bottom: 12.5px;
  padding-left: 29px;
  padding-right: 29px;
  border-radius: 40px;
  border: 1px solid var(--2);
  /* box-shadow: 0px 4px 14px 0px rgba(250, 138, 144, 0.4); */
  transition: background 0.4s ease;
  transition: color 0.4s ease;
}
header .call:hover{
    background: var(--2);
    color: var(--bg);
}
header .phones {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6px;
  position: relative;
}
header .phones span svg{
    cursor:pointer;
}
header .phones.open {
  position: relative;
  top: 0;
  height: 24.5px;
}
header .phones.open ul li {
  display: block !important;
}
header .phones.open span svg {
  transform: rotate(180deg);
}
header .phones ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  max-height: 23px;
  overflow: hidden;
}
header .phones.open ul{
    max-height: 600px;
    transition: max-height 1.2s linear; 
}
header .phones ul li {
  display: none;
}
header .phones ul li:first-child {
  display: block;
}
header .phones ul li a {
  color: var(--3);
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

#main{
  background: var(--bg);
  padding-bottom: 92px;
  position: relative;
  margin-top: 119px;
  overflow: hidden;
}
#main .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 63px;
}
#main .container .left {
  width: 45.28%;
  padding-top: 92.5px;
}
#main .container .left h1 {
  color: var(--3);
  font-family: "Nunito";
  font-size: 72px;
  font-style: normal;
  font-weight: 600;
  line-height: 97.222%;
  margin-bottom: 24px;
}
#main .container .left p {
  padding: 0;
  margin: 0;
  color: var(--3);
  font-family: "Nunito Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#main .container .left .buttons {
  margin-top: 43px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
#main .container .left .buttons a {
  display: block;
}
#main .container .left .buttons a.lesson {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 35px;
  padding-right: 35px;
  color: var(--bg);
  font-family: "Nunito";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 40px;
  border: 1px solid var(--2);
  background: var(--2);
  /* box-shadow: 0px 4px 14px 0px rgba(250, 138, 144, 0.4); */
  transition: background 0.4s ease;
  transition: color 0.4s ease;
}
#main .container .left .buttons a.lesson:hover{
  color: var(--2);
  background:none;
}
#main .container .left .buttons a:last-child {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
#main .container .left .buttons a:last-child:hover svg circle {
    fill:var(--2);
    transition: fill .4s ease;
}
#main .container .left .buttons a:last-child:hover svg path {
    fill:var(--bg);
    transition: fill .4s ease;
}
#main .container .left .buttons a:last-child span {
  max-width: 95px;
  color: var(--3);
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 100% */
}
#main .container .left .socials {
  margin-top: 73px;
  display: flex;
  flex-direction: row;
  gap: 17px;
}
#main .container .left .socials span {
  max-width: 129px;
  color: var(--3);
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 112.5% */
}
#main .container .left .socials ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6.43px;
}
#main .container .left .socials ul li a {
  width: 32.884px;
  height: 32.884px;
  background: #E4DD2A;
  border-radius: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#main .container .left .socials ul li a:hover{
    opacity:0.8;
}
#main .container .right {
  padding-top: 28px;
      position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
}
#main .container .right .img {
  position: relative;
  z-index: 2;
}
#main .container .right #scene {
  position: absolute;
  z-index: 0;
}
#main .container .right #scene img:nth-child(1) {
  left: -60px !important;
    top: 420px !important;
  z-index: 1;
}
#main .container .right #scene img:nth-child(2) {
      left: -87px !important;
    top: 130px !important;
}
#main .container .right #scene img:nth-child(3) {
  left: 447px !important;
    top: 404px !important;
}
#main .container .right #scene img:nth-child(4) {
      left: 230px !important;
    top: -31px !important;
}

#programs {
  margin-top: 47px;
  position: relative;
}
#programs #scene1 {
  position: absolute;
  width: 100%;
}
#programs #scene1 img:nth-child(1) {
  top: 342px !important;
  left: 208px !important;
}
#programs #scene1 img:nth-child(2) {
  left: auto !important;
  right: 281px !important;
  top: 113px !important;
}
#programs .container {
  display: flex;
  flex-direction: column;
}
#programs .title {
  color: var(--3);
  font-family: "Nunito";
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px;
  margin-bottom: 34px;
}
#programs .row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 28px;
}
#programs .items-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 25px;
  height: 561px;
  overflow: hidden;
  width: 51.8%;
}
#programs .items-wrap .item {
  width: calc(50% - 10px);
  background: var(--bg);
  border-radius: 30px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#programs .items-wrap .item .title {
  color: var(--3);
  font-family: "Nunito Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.44px;
  margin-bottom: 8px;
}
#programs .items-wrap .item .description {
  color: var(--3);
  font-family: "Nunito Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.28px;
  margin-bottom: 38px;
  padding-right: 45px;
}
#programs .items-wrap .item .bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#programs .items-wrap .item .bottom a {
  text-decoration: none;
  color: var(--bg);
  font-family: "Nunito";
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  letter-spacing: -0.36px;
  border-radius: 15px;
  background: var(--2);
  padding: 3px 20px;
  transition: background 0.2s ease;
  transition: color 0.2s ease;
  border:1px solid transparent;
}
#programs .items-wrap .item .bottom a:hover{
  color: var(--2);  
  background: var(--bg);
  border:1px solid var(--2);
}
#programs .more-info {
  width: calc(48.2% - 28px);
}
#programs .more-info .title {
  padding-top: 65px;
  color: var(--3);
  font-family: "Nunito Sans";
  font-size: 33px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  padding-bottom: 39px;
  border-bottom: 1px solid #d3d8dc;
  margin-bottom: 18px;
}
#programs .more-info .description {
  color: var(--3);
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
  margin-bottom: 40px;
}
#programs .more-info .button {
  text-decoration: none;
  padding: 15px 61px;
  color: var(--2);
  font-family: "Nunito";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 40px;
  border: 1px solid var(--2);
  /* box-shadow: 0px 4px 14px 0px rgba(250, 138, 144, 0.4); */
  display: block;
  width: fit-content;
  transition: color 0.2s ease;
  transition: background 0.2s ease;
}
#programs .more-info .button:hover{
    color: var(--bg);
    background: var(--2);
}
#about {
  margin-top: 40px;
  position: relative;
}
#about #scene2 {
  position: absolute;
  width: 100%;
}
#about #scene2 img:nth-child(1) {
  left: auto !important;
  right: 131px !important;
  top: 219px !important;
  position: absolute !important;
}
#about #scene2 img:nth-child(2) {
  left: auto !important;
  right: 146px !important;
  top: 345px !important;
}
#about #scene2 img:nth-child(3) {
  top: 730px !important;
  left: 288px !important;
}
#about .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
#about .title {
  color: var(--3);
  font-family: "Nunito";
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px;
  margin-bottom: 40px;
}
#about .img {
  position: relative;
}
#about .img img {
  border-radius: 20px;
  position: relative;
  z-index: 1;
  
}
#about .img .back-layer {
  width: 662.667px;
  height: 487.667px;
  border-radius: 35px;
  border: 15px solid #E4DD2A;
  /* box-shadow: 0px 0px 10px 0px rgba(255, 156, 161, 0.5); */
  position: absolute;
  top: -24px;
  left: 33.33px;
  z-index: 0;
}
#about .row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 37px;
  gap: 20px;
}
#about .row .left {
  display: flex;
  flex-direction: column;
  width: 274px;
  border-radius: 30px;
  background: var(--2);
  padding: 24px;
}
#about .row .left .title {
  color: var(--bg);
  font-family: "Nunito";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%; /* 36px */
  letter-spacing: -0.4px;
  margin-bottom: 8px;
}
#about .row .left .description {
  color: var(--white);
  font-family: "Nunito Sans";
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 115.385% */
  letter-spacing: -0.52px;
}
#about .row .left img {
      margin-top: 34px;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
#about .row .right {
  width: calc(100% - 294px);
  display: flex;
  flex-direction: column;
  padding-top: 40px;
}
#about .row .right .visiable-text, #about .row .right .hidden-text {
  color: var(--3);
  font-family: "Nunito Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
}
#about .row .right .visiable-text p, #about .row .right .hidden-text p {
  margin-bottom: 22px;
}
#about .row .right .hidden-text {
  display: none;
}
#about .row .right .hidden-text.open {
  display: block;
}
#about .row .right .show-more {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  cursor:pointer;
}
#about .row .right .show-more span {
  color: var(--2);
  font-family: "Nunito";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#about .row .right .show-more .onopen {
  display: none;
}
#about .row .right .show-more .standart {
  display: block;
}
#about .row .right .show-more.open .onopen {
  display: block;
}
#about .row .right .show-more.open .standart {
  display: none;
}
#about .row .right .show-more.open svg {
  transform: rotate(180deg);
}

#process {
  margin-top: 44px;
  background: var(--bg);
  padding-bottom: 62px;
  position: relative;
}
#process #scene3 {
  z-index: 0;
  width: 100%;
  position: relative;
  height: 0;
}
#process #scene3 img:nth-child(1) {
  top: 177px !important;
  z-index: -1;
  position: absolute !important;
  left: auto !important;
  right: 43% !important;
}
#process #scene3 img:nth-child(2) {
  left: 180px !important;
  top: 355px !important;
}
#process #scene3 img:nth-child(3) {
  left: auto !important;
  top: 107px !important;
  right: 260px !important;
}
#process .container {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
#process .title {
  margin-top: 73px;
  color: var(--3);
  font-family: "Nunito";
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 50px; /* 96.154% */
}
#process .row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 100px;
}
#process .row .img {
  margin-left: 34px;
  margin-top: 72px;
}
#process .row .items-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 52%;
  margin-top: -6px;
  gap: 38px;
  position: relative;
}
#process .row .items-wrap::before {
  content: "";
  position: absolute;
  display: block;
  width: 2px;
  height: 80%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2' height='648' viewBox='0 0 2 648' fill='none'%3E%3Cpath d='M1.00146 0L0.999822 647.5' stroke='%237D8C98' stroke-width='2' stroke-dasharray='8 8'/%3E%3C/svg%3E");
  left: 35px;
}
#process .row .items-wrap .item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 81px;
  position: relative;
}
#process .row .items-wrap .item::before {
  content: "";
  position: absolute;
  display: block;
  width: 61px;
  height: 9px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='81' height='9' viewBox='0 0 81 9' fill='none'%3E%3Cg clip-path='url(%23clip0_322_614)'%3E%3Cline x1='-10' y1='5' x2='81' y2='5' stroke='%237D8C98' stroke-width='2' stroke-dasharray='8 8'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_322_614'%3E%3Crect width='81' height='9' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  left: 77px;
  margin-top: -3px;
}
#process .row .items-wrap .item span {
  width: 69.916px;
  height: 69.916px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='70' height='70' viewBox='0 0 70 70' fill='none'%3E%3Ccircle cx='35.042' cy='34.9581' r='34.1725' fill='%23FF9CA1' stroke='white' stroke-width='1.57115' stroke-dasharray='3.14 3.14'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  font-family: "Nunito Sans";
  font-size: 21.996px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.44px;
}
#process .row .items-wrap .item .column {
  width: calc(100% - 69.916px - 81px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  border-radius: 18.423px;
  border: 2px dashed var(--2);
  background: var(--white);
  padding: 30px 28px;
}
#process .row .items-wrap .item .column .title {
  color: var(--3);
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 18.859px;
  letter-spacing: -0.32px;
  margin-top: 0;
  margin-bottom: 9px;
}
#process .row .items-wrap .item .column .description {
  color: var(--3);
  font-family: "Nunito Sans";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 21.761px;
}

#teachers {
  position: relative;
}
#teachers #scene4 {
  position: absolute;
  z-index: 0;
  width: 100%;
}
#teachers #scene4 img:nth-child(1) {
  left: 365px !important;
  top: 135px !important;
  z-index: -1;
}
#teachers #scene4 img:nth-child(2) {
  left: auto !important;
  top: 587px !important;
  right: 300px !important;
}
#teachers .swiper-button-lock {
  display: block;
}
#teachers .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
#teachers .title {
  margin-top: 54px;
  color: var(--3);
  font-family: "Nunito";
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px; /* 166.667% */
}
#teachers .teacher-slider {
  margin-top: 48px;
  width: 100%;
  padding-bottom: 55px;
}
#teachers .teacher-slider .teacher-slider-button-prev {
  top: 0;
  position: absolute;
  left: auto;
  right: 36px;
  z-index: 1;
  cursor:pointer;
}
#teachers .teacher-slider .swiper-pagination {
  bottom: 2px;
  left: 110px;
  width: fit-content;
}
#teachers .teacher-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  opacity: 0.5;
  background: var(--3);
}
#teachers .teacher-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}
#teachers .teacher-slider .teacher-slider-button-next {
  top: 0;
  position: absolute;
  left: auto;
  right: -4px;
  z-index: 1;
  cursor:pointer;
}
#teachers .teacher-slider .swiper-slide {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 34px;
}
#teachers .teacher-slider .swiper-slide .img {
  max-width: 471px;
}
#teachers .teacher-slider .swiper-slide .img img {
  width: 100%;
  height: auto;
  border-radius: 50px;
}
#teachers .teacher-slider .swiper-slide .right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: calc(100% - 471px - 34px);
}
#teachers .teacher-slider .swiper-slide .right .title {
  margin-top: 40px;
  color: var(--3);
  font-family: "Nunito Sans";
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 180%; /* 46.8px */
  letter-spacing: -0.52px;
}
#teachers .teacher-slider .swiper-slide .right span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  color: var(--4);
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
}
#teachers .teacher-slider .swiper-slide .right span::after {
  content: "";
  display: block;
  margin-top: 15px;
  width: 58px;
  height: 1px;
  background: var(--4);
}
#teachers .teacher-slider .swiper-slide .right .description {
  padding-top: 28px;
  color: var(--4);
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 166.667% */
}
#teachers .teacher-slider .swiper-slide .right .button {
  margin-top: 27px;
  padding: 16px 44px;
  color: var(--2);
  font-family: "Nunito";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 40px;
  border: 1px solid #3F45C1;
  display: block;
  text-decoration: none;
  -webkit-transition: background 0.4s ease, color 0.4s;
  -moz-transition: background 0.4s ease, color 0.4s;
  -ms-transition: background 0.4s ease, color 0.4s;
  -o-transition: background 0.4s ease, color 0.4s;
  transition: background 0.4s ease, color 0.4s;
}
#teachers .teacher-slider .swiper-slide .right .button:hover{
  background:var(--2);
  color: var(--bg);
}
.gallery-mobile{
    display:none;
}
.gallery-mobile a{
    width:100%;
}
.gallery-mobile a.hidden{
    display:none !important;
}
.gallery-mobile a img{
    height:100% !important;
    object-fit: cover;
}
.gallery-mobile a{
  height: 273px;
  overflow: hidden;
  border-radius: 20px;
}
#gallery {
  margin-top: 59px;
}
#gallery .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
#gallery .container .gallery-slider-button-prev {
  position: absolute;
  top: 24px;
  left: auto;
  right: 35px;
  cursor:pointer;
}
#gallery .container .gallery-slider-button-next {
  position: absolute;
  top: 24px;
  left: auto;
  right: -4px;
  cursor:pointer;
}
#gallery .title {
  color: var(--3);
  font-family: "Nunito";
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px; /* 166.667% */
}
#gallery .gallery-slider {
  width: 100%;
  padding-top: 59px;
  padding-bottom: 59px;
}
#gallery .gallery-slider .swiper-slide.swiper-slide-next {
  scale: 1.2;
  z-index: 1;
  transition: scale 2.5s ease;
}
#gallery .gallery-slider .swiper-slide a {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0px 4px 16px 0px rgba(38, 63, 83, 0.2);
  width: 100%;
  display: block;
}
a.video-block {
  position: relative;
  background: black;
}
a.video-block svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
a.video-block img {
  opacity: 0.5;
}
#gallery .gallery-slider .swiper-slide a.video-block {
  position: relative;
  background: black;
}
#gallery .gallery-slider .swiper-slide a.video-block svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#gallery .gallery-slider .swiper-slide a.video-block img {
  opacity: 0.5;
}
#gallery .gallery-slider .swiper-slide a img {
  width: 100%;
  height: auto;
}

#certificates {
  margin-top: 30px;
  position: relative;
}
#certificates #scene5 {
  position: absolute;
  z-index: 0;
  width: 100%;
}
#certificates #scene5 img:nth-child(1) {
  left: auto !important;
  top: 54px !important;
  right: 280px !important;
  position: absolute !important;
}
#certificates #scene5 img:nth-child(2) {
  left: 319px !important;
  top: 353px !important;
}
#certificates .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
}
#certificates .title {
  color: var(--3);
  font-family: "Nunito";
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px; /* 166.667% */
}
#certificates .certificates-slider {
  width: 100%;
  margin-top: 45px;
}
#certificates .certificates-slider .swiper-slide a {
  display: block;
  width: 100%;
}
#certificates .certificates-slider .swiper-slide a img {
  width: 100%;
  height: auto;
}

#reviews {
  margin-top: 184px;
  overflow:hidden;
}
#reviews .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 96px;
}
#reviews .left {
  min-width: 297px;
  width: 297px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
#reviews .left .title {
  color: var(--3);
  font-family: "Nunito";
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px; /* 134.615% */
  margin-bottom: 20px;
}
#reviews .left .description {
  color: var(--4);
  font-family: "Nunito Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 25.2px */
  letter-spacing: -0.36px;
}
#reviews .left .reviews-slider-pagination {
  color: var(--3);
  font-variant-numeric: lining-nums proportional-nums;
  font-family: "Nunito";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 22px; /* 137.5% */
  margin-top: 45px;
}
#reviews .left .swiper-pagination-current {
  font-size: 48px;
}
#reviews .left .slider-buttons {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 7px;
}
#reviews .left .buttons-group {
  margin-top: 26px;
  gap: 37px;
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: flex-start;
}
#reviews .left .buttons-group .button {
  border-radius: 15px;
  background: #3F45C1;
  padding: 3px 20px;
  color: var(--bg);
  font-family: "Nunito";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%; /* 36px */
  letter-spacing: -0.4px;
  -webkit-transition: background 0.4s ease, color 0.4s;
  -moz-transition: background 0.4s ease, color 0.4s;
  -ms-transition: background 0.4s ease, color 0.4s;
  -o-transition: background 0.4s ease, color 0.4s;
  transition: background 0.4s ease, color 0.4s;
  border:1px solid transparent;
}
#reviews .left .buttons-group .button:hover{
  color: var(--2);
  background:var(--bg);
  border:1px solid var(--2);
}
#reviews .right {
  width: 100%;
}
#reviews .right .reviews-slider {
  width: 100%;
}
#reviews .right .reviews-slider .swiper-wrapper {
  gap: 20px;
}
#reviews .right .reviews-slider .swiper-slide {
  padding: 48px 25px;
  border-radius: 30px;
  background: var(--bg);
  min-height: 330px;
}
#reviews .right .reviews-slider .swiper-slide .name {
  color: var(--3);
  font-family: "Nunito";
  font-size: 19.765px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%; /* 35.576px */
  letter-spacing: -0.395px;
}
#reviews .right .reviews-slider .swiper-slide .age {
  margin-top: -3px;
  color: var(--grey);
  font-family: "Nunito Sans";
  font-size: 13.176px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 23.718px */
  letter-spacing: -0.264px;
}
#reviews .right .reviews-slider .swiper-slide .text {
  color: var(--4);
  font-family: "Nunito Sans";
  font-size: 13.176px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%; /* 22.4px */
  margin-top: 35px;
  max-width: 225.301px;
}

#news {
  margin-top: 143px;
  position: relative;
}
#news #scene6 {
  position: absolute;
  z-index: 0;
  width: 100%;
}
#news #scene6 img:nth-child(1) {
  left: auto !important;
  top: 446px !important;
  right: 150px !important;
  position: absolute !important;
}
#news .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-bottom: 80px;
  border-bottom: 1px solid #e5e8ea;
}
#news .top {
  position: relative;
  width: 100%;
}
#news .top .title {
  color: var(--3);
  font-family: "Nunito";
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px; /* 166.667% */
}
#news .top .news-slider-button-prev {
  position: absolute;
  left: auto;
  right: 38px;
  top: 25px;
  cursor:pointer;
}
#news .top .news-slider-button-next {
  position: absolute;
  left: auto;
  right: -2px;
  top: 25px;
  cursor:pointer;
}
#news .news-slider {
  width: 100%;
  margin-top: 53px;
}
#news .news-slider .swiper-wrapper {
  gap: 17px;
}
#news .news-slider .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
#news .news-slider .swiper-slide .img {
  width: 100%;
  max-height: 202.376px;
  border-radius: 4.976px;
  overflow: hidden;
}
#news .news-slider .swiper-slide .img img {
  width: 100%;
  height: auto;
}
#news .news-slider .swiper-slide .date {
  color: var(--4);
  font-family: "Nunito Sans";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%; /* 15.4px */
  margin-top: 11px;
}
#news .news-slider .swiper-slide .title {
  color: var(--3);
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 140%; /* 22.4px */
  margin-top: 3px;
}

#products {
  margin-top: 68px;
  position: relative;
}
#products #scene7 {
  position: absolute;
  z-index: 0;
  width: 100%;
}
#products #scene7 img:nth-child(1) {
  left: 211px !important;
  top: 149px !important;
  position: absolute !important;
}
#products #scene7 img:nth-child(2) {
  left: 174px !important;
  top: 279px !important;
  position: absolute !important;
}
#products .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
#products .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 276px;
}
#products .left .title {
  color: var(--3);
  font-family: "Nunito";
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
}
#products .left .slider-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  margin-bottom: 67px;
}
#products .products-slider {
  width: calc(100% - 296px);
}
#products .products-slider .swiper-slide {
  border-radius: 60px;
  background: var(--bg);
  height: 499px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
}
#products .products-slider .swiper-slide .main-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
#products .products-slider .swiper-slide .img {
  width: 100%;
  height: 161px;
}
#products .products-slider .swiper-slide .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#products .products-slider .swiper-slide .cost {
  color: var(--2);
  font-family: "Nunito Sans";
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 18.117px; /* 60.389% */
  display: block;
  margin-top: 36px;
}
#products .products-slider .swiper-slide .title {
  color: var(--3);
  text-align: center;
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.32px;
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 15px;
}
#products .products-slider .swiper-slide .description {
  color: var(--5);
  text-align: center;
  font-family: "Nunito Sans";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px; /* 160% */
  padding-left: 51px;
  padding-right: 51px;
  margin-top: 12px;
}
#products .products-slider .swiper-slide .button {
  width: 169.693px;
  height: 39.857px;
  border-radius: 36.233px;
  padding-left: 17px;
  padding-right: 3px;
  background: var(--3);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: opacity 0.4s ease;
}
#products .products-slider .swiper-slide .button:hover{
  opacity:0.85;
}
#products .products-slider .swiper-slide .button span {
  color: var(--white);
  font-family: "Nunito Sans";
  font-size: 12.078px;
  font-style: normal;
  font-weight: 400;
  line-height: 18.117px;
}

#partners {
  margin-top: 115px;
}
#partners .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
#partners .top {
  width: 100%;
  position: relative;
}
#partners .top .title {
  color: var(--3);
  font-family: "Nunito";
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px; /* 166.667% */
}
#partners .top .partners-slider-button-prev {
  position: absolute;
  left: auto;
  right: 40px;
  top: 22px;
  cursor:pointer;
}
#partners .top .partners-slider-button-next {
  position: absolute;
  left: auto;
  right: 0px;
  top: 21px;
  cursor:pointer;
}
#partners .partners-slider {
  width: 100%;
  margin-top: 60px;
}
#partners .partners-slider .swiper-slide {
  border-radius: 26px;
  border: 1px solid var(--4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 166.087px;
}
#partners .partners-slider .swiper-slide img {
  width: 71.893px;
  height: 71.893px;
  width: auto;
  height: auto;
}

#faq {
  margin-top: 78px;
}
#faq .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
#faq .title {
  color: var(--3);
  font-family: "Nunito";
  font-size: 52px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px;
}
#faq .question-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 34px;
  gap: 18px;
}
#faq .question-wrapper .question {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--4);
}
#faq .question-wrapper .question.hidden {
  display: none;
}
#faq .question-wrapper .question.open .description {
  display: block;
}
#faq .question-wrapper .question.open svg.when-open {
  display: block !important;
}
#faq .question-wrapper .question.open svg.when-close {
  display: none !important;
}
#faq .question-wrapper .question .title {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
#faq .question-wrapper .question .title span {
  color: var(--3);
  font-family: "Nunito";
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  cursor:pointer;
}
#faq .question-wrapper .question .title svg.when-open {
  display: none;
}
#faq .question-wrapper .question .title svg.when-close {
  display: block;
}
#faq .question-wrapper .question .description {
  display: none;
  color: var(--4);
  font-family: "Nunito";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-top: 20px;
  padding-bottom: 13px;
}
#faq .show-more {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: var(--2);
  font-family: "Nunito";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 34px;
  cursor:pointer;
}
#faq .show-more .when-close {
  display: block;
}
#faq .show-more .when-open {
  display: none;
}
#faq .show-more.open .when-close {
  display: none;
}
#faq .show-more.open .when-open {
  display: block;
}
#faq .show-more.open svg {
  transform: rotate(180deg);
}

#contacts {
  margin-top: 78px;
  position: relative;
}
#contacts #scene8 {
  position: absolute;
  z-index: 0;
  width: 100%;
}
#contacts #scene8 img:nth-child(1) {
  left: auto !important;
  top: 138px !important;
  position: absolute !important;
  right: 181px !important;
}
#contacts .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
#contacts .title {
  color: var(--3);
  font-family: "Nunito";
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 70px; /* 166.667% */
}
#contacts .row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
#contacts .row:nth-child(2) {
  margin-top: 10px;
}
#contacts .row:nth-child(3) {
  margin-top: 30px;
}
#contacts .row iframe {
  border-radius: 5px;
}
#contacts .left {
  width: 50%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 27px;
  margin-top: 23px;
}
#contacts .left .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 42%;
}
#contacts .left .item .title {
  color: var(--3);
  font-family: "Nunito";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#contacts .left .item a, #contacts .left .item span {
  display: block;
  text-decoration: none;
  color: var(--4);
  font-family: "Nunito Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#contacts .right {
  width: 49%;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 45px;
  padding-right: 199px;
  border-radius: 30px;
  background: var(--2);
  position: relative;
}
#contacts .right .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
#contacts .right .text .title {
  color: var(--bg);
  font-family: "Nunito";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%; /* 36px */
  letter-spacing: -0.4px;
}
#contacts .right .text .description {
  color: var(--white);
  font-family: "Nunito Sans";
  font-size: 26px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px; /* 115.385% */
  letter-spacing: -0.52px;
}
#contacts .right img {
  position: absolute;
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}

#form {
  background: var(--bg);
  margin-top: 41px;
  padding-top: 91px;
  position: relative;
}
#form #scene9 {
  z-index: 0;
  width: 100%;
  position: relative;
  height: 0;
}
#form #scene9 img:nth-child(1) {
  top: 23px !important;
  position: absolute !important;
  left: auto !important;
  right: 44% !important;
}
#form .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  padding-bottom: 51px;
  border-bottom: 1px solid #e5e8ea;
}
#form .img {
  width: 62%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#form form {
  width: 34%;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 36px;
  padding-bottom: 37px;
  padding-left: 25px;
  padding-right: 25px;
  border-radius: 15px;
  border: 2px dashed var(--2);
  background: var(--white);
}
#form form .title {
  color: var(--3);
  text-align: center;
  font-family: "Nunito";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#form form .description {
  padding-top: 1px;
  margin-bottom: 22px;
  color: var(--3);
  text-align: center;
  font-family: "Nunito";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#form form input {
  padding-top: 18px;
  padding-bottom: 18px;
  padding-left: 24px;
  padding-right: 24px;
  border-radius: 56px;
  border: 1px solid #97a3ad;
  width: 100%;
  color: var(--4);
  font-family: "Nunito";
  font-size: 12.02px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 12px;
}
#form form input[type=submit] {
  color: var(--bg);
  font-family: "Nunito";
  font-size: 15.025px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  border-radius: 56px;
  background: var(--2);
  border: none;
  outline: none;
  cursor:pointer;
  transition:background 0.4s ease, color 0.4s ease;
  border: 1px solid transparent;
}
#form form input[type=submit]:hover{
    color:var(--2);
    background:var(--bg);
    border: 1px solid var(--2);
}
form .politica-checkbox a:hover{
    text-decoration:underline !important;
}
#form form .politica-checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  margin-bottom: 5px;
  width: 80%;
}
#form form .politica-checkbox input {
  width: 11px;
  height: 11px;
  margin-bottom: 0;
}
#form form .politica-checkbox label {
  color: var(--4);
  font-family: "Nunito";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
#form form .politica-checkbox label a {
  text-decoration: none;
  color: var(--2);
}

footer {
  padding-top: 47px;
  padding-bottom: 45px;
  background: var(--bg);
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
}
footer .column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  border-right: 1px solid #e5e8ea;
}
footer .column:nth-child(1) {
  padding-right: 47px;
}
footer .column:last-child {
  border-right: none;
  padding-left: 47px;
  width: 21%;
}
footer .column .logo {
  margin-bottom: 8px;
}
footer .column .footer-numbers {
  display: flex;
  flex-direction: row;
  gap: 2px;
}
footer .column .footer-numbers a, footer .column .footer-numbers span {
  text-decoration: none;
  color: var(--4);
  font-family: "Nunito Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
footer .column .footer-numbers a:hover{
    text-decoration:underline;
}
footer .column .mail {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
}
footer .column .mail a {
  color: var(--4);
  font-family: "Nunito";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration:none;
}
footer .column .mail a:hover{
    text-decoration:underline;
}
footer .column nav ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 22px;
}
footer .column nav ul li {
  width: 50%;
}
footer .column nav ul li a {
  color: var(--3);
  font-family: "Nunito Sans";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-decoration:none;
}
footer .column nav ul li a:hover{
    text-decoration:underline;
}
footer .column .socials {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
      overflow: hidden;
}
footer .column .socials a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 38.267px;
  height: 38.267px;
  background: #E4DD2A;
  border-radius: 19px;
}
footer .column .socials a:hover{
    opacity:0.85;
}
footer .column .politica-link {
  color: #bec6cc;
  font-family: "Nunito";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding-top: 37px;
}

.modal-dialog {
  max-width: 511px;
}

.modal-header {
  border-bottom: none !important;
}

.modal-content {
  border-radius: 26px;
}

.modal-title {
  margin-top: 2.25rem;
}

.modal-body label, .modal-body small {
  display: none;
}

.modal-body .form-check label, .modal-body .form-check small {
  display: block;
}

.modal-title {
  width: 100%;
  text-align: center;
  color: var(--3);
  font-family: "Nunito";
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form-control {
  width: 83%;
  margin-left: auto;
  margin-right: auto;
  border-top: none;
  border-left: none;
  border-right: none;
  border-radius: unset;
  outline: none;
  color: var(--4);
  font-family: "Nunito Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.form-check {
  width: 83%;
  margin-left: auto;
  margin-right: auto;
}

.modal-footer {
  display: none !important;
}

.form-group {
  margin-bottom: 2rem;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.modal-body form {
  display: flex;
  flex-direction: column;
}

#YaMaps {
  height: 400px;
  width: 100%;
}
.ajax_form .error{
    border-color: brown !important;
}
#form span.error{
    margin-top: -10px;
    margin-bottom: 15px;
}
.btn.btn-primary {
  margin-right: auto;
  margin-left: auto;
  border-radius: 15px;
  background: var(--2);
  border: none;
  color: var(--bg);
  font-family: Nunito;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 180%;
  letter-spacing: -0.4px;
  padding-left: 20px;
  padding-right: 20px;
  cursor:pointer;
  transition:color 0.2s ease;
  transition:background 0.2s ease;
  border:1px solid transparent;
}
.btn.btn-primary:hover{
    color: var(--2);
    background: var(--bg);
    border:1px solid var(--2);
}
.burger-button {
  display: none;
}

@media (max-width: 1200px) {
  #faq {
    margin-top: 39px;
  }
  #partners {
    margin-top: 50px;
  }
  .container {
    width: 90%;
  }
  header nav {
    display: none;
  }
  .burger-button {
    display: block;
  }
  header nav ul {
    padding: 49px;
    display: flex;
    flex-direction: column;
  }
  #process .row .img {
    width: 30%;
  }
  #scene4 {
    display: none;
  }
  #reviews {
    margin-top: 40px;
  }
  #news {
    margin-top: 40px;
  }
}
@media (max-width: 1200px) {
  #main .container {
    align-items: center;
  }
  #about .img {
    width: 100%;
  }
  #about .img img {
    width: 100%;
  }
  #about .img .back-layer {
    width: 46%;
    height: 100%;
  }
  #contacts .row {
    align-items: flex-end;
  }
  #contacts .left {
    flex-direction: column;
  }
  #contacts .left .item {
    width: 100%;
  }
  #contacts {
    margin-top: 38px;
  }
}
@media (max-width: 1024px) {
  footer .container {
    flex-wrap: wrap;
  }
  footer .column:last-child {
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  footer .column:nth-child(1) {
    width: 50%;
    padding: 0 !important;
    border: none !important;
  }
  footer .column:nth-child(2) {
    width: 50%;
    padding: 0 !important;
    border: none !important;
  }
  footer .column .politica-link {
    padding: 0;
  }
  #form form {
    width: 50%;
  }
  #form .img {
    width: 45%;
  }
  #main .container {
    flex-direction: row;
    
  }
  #contacts .right {
    padding-right: 40px;
    padding-bottom: 108px;
  }
  #contacts .right img {
    width: 30%;
  }
  #main .container .left {
    width: 50%;
  }
  #main .container .right {
    position: absolute;
    width: 44%;
    left: auto;
    right: 0;
    top: auto;
    bottom: -90px;
  }
  #main .container .right #scene {
    display: none;
  }
  #main .container .right .img {
    width: 100%;
  }
  #main .container .right .img img {
    width: 100%;
  }
  #programs .row {
    flex-direction: column;
  }
  #programs .items-wrap {
    width: 100%;
  }
  #programs .more-info {
    width: 100%;
  }
  #teachers .title {
    line-height: 100%;
  }
  #teachers .teacher-slider .swiper-slide {
    align-items: center;
  }
  #teachers .teacher-slider .swiper-slide .right {
    width: fit-content;
  }
  #gallery .gallery-slider .swiper-slide a.video-block svg {
    width: 25%;
  }
  #products #scene7 {
    display: none;
  }
  #products .container {
    flex-direction: column;
  }
  #products .left {
    width: 100%;
    flex-direction: column-reverse;
  }
  #products .products-slider {
    width: 100%;
  }
  #products .left .slider-buttons {
    margin-bottom: 0;
    margin-top: 25px;
  }
}
@media (max-width: 900px) {
  #process #scene3 {
    display: none;
  }
  #process .row {
    position: relative;
  }
  #process .row .img {
    position: absolute;
  }
  #process .row .items-wrap {
    width: 100%;
    margin-top: 55px;
  }
  #process .row .img {
    left: 0;
    right: auto;
    top: auto;
    bottom: 0;
  }
  #process .row .img img {
    width: 100%;
  }
}
#reviews .right .reviews-slider .swiper-wrapper {
  gap: 0 !important;
}
.show-more {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: var(--2);
  font-family: "Nunito";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 34px;
}
.show-more .when-close {
  display: block;
}
.show-more .when-open {
  display: none;
}
.show-more.open .when-close {
  display: none;
}
.show-more.open .when-open {
  display: block;
}
.show-more.open svg {
  transform: rotate(180deg);
}
@media (max-width: 768px) {
  #main{
    margin-top:114px;
  }
  #gallery-slider{
    display:none;
  }
  footer .container {
    flex-direction: column;
    gap: 15px;
  }
  .gallery-mobile{
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  footer .column .footer-numbers {
    flex-direction: column;
    gap: 15px;
  }
  footer .column .footer-numbers span {
    display: none;
  }
  footer .column:last-child {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  footer .column {
    width: 100% !important;
  }
  footer .column:nth-child(1) {
    gap: 15px;
  }
  footer .column nav ul {
    padding: 0;
  }
  #contacts .row:nth-child(2) {
    flex-direction: column;
  }
  #contacts .left {
    width: 100%;
  }
  #contacts .right {
    width: 100%;
    margin-top: 25px;
    padding-left: 20px;
    padding-right: 20px;
  }
  #partners .top .title {
    font-size: 32px;
  }
  #partners .partners-slider {
    margin-top: 30px;
  }
  #about .title, #reviews .left .title {
    font-size: 32px;
  }
  #about .row {
    flex-direction: column;
  }
  #about .row .left {
    width: 100%;
    box-sizing: border-box;
  }
  #about .row .right {
    width: 100%;
  }
  #main {
    position: relative;
  }
  header .phones {
    display: none;
  }
  #main .container .left h1 {
    font-size: 48px;
  }
  #main .container .left {
    padding-top: 46px;
  }
  #main {
    padding-bottom: 46px;
  }
  #main .container .right {
    width: 33%;
    bottom: 0;
  }
  header .call {
    display: none;
  }
  #programs {
    margin-top: 23px;
  }
  #programs .title {
    font-size: 32px;
  }
  #programs .items-wrap .item {
    width: 100%;
  }
  #programs .more-info .title {
    padding-top: 32px;
  }
  #programs .more-info .title {
    font-size: 28px;
  }
  #programs .more-info .button {
    margin-left: auto;
    margin-right: auto;
  }
  #about .row .left .description {
    font-size: 18px;
  }
  #process .title {
    font-size: 32px;
    margin-top: 37px;
    line-height: 100%;
  }
  #process .title br {
    display: none;
  }
  #teachers .title {
    font-size: 32px;
  }
  #teachers .teacher-slider .swiper-slide {
    display: flex;
    flex-direction: column;
  }
  #teachers .teacher-slider .swiper-slide .img {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
  }
  #teachers .teacher-slider .swiper-slide .img img {
    max-width: 300px;
  }
  #teachers .teacher-slider .swiper-slide .right {
    width: 100%;
  }
  #teachers .teacher-slider .swiper-pagination {
    left: 50%;
    transform: translate(-50%, 0);
  }
  #teachers .teacher-slider .swiper-slide .right .button {
    margin-left: auto;
    margin-right: auto;
  }
  #teachers .teacher-slider .swiper-slide .right .title {
    margin-top: 0;
    line-height: 100%;
  }
  #gallery .gallery-slider .swiper-slide.swiper-slide-next {
    scale: inherit;
    z-index: inherit;
  }
  #gallery .title {
    font-size: 32px;
  }
  #gallery .gallery-slider {
    padding-bottom: 30px;
    padding-top: 30px;
  }
  #certificates .title {
    font-size: 32px;
    line-height: 100%;
  }
  #certificates .certificates-slider {
    margin-top: 20px;
  }
  #reviews .left .reviews-slider-pagination {
    display: none;
  }
  #reviews .container {
    flex-direction: column;
    gap: 35px;
  }
  #news .news-slider {
    margin-top: 25px;
  }
  #news .top .title {
    font-size: 32px;
  }
  #news .container {
    padding-bottom: 40px;
  }
  #products .left .title {
    font-size: 32px;
    line-height: 100%;
  }
  #faq .title {
    font-size: 32px;
    line-height: 100%;
  }
  #faq .question-wrapper .question .title span {
    font-size: 20px;
    line-height: 100%;
  }
  #faq .question-wrapper .question.open .description {
    font-size: 18px;
    line-height: 100%;
  }
  #scene5, #scene2, #scene6, #scene8 {
    display: none;
  }
}
#news .news-slider .swiper-wrapper {
  gap: 0 !important;
}

@media (max-width: 664px) {
  #form .img {
    display: none !important;
  }
  #form form {
    width: 100%;
  }
  #form {
    padding-top: 0;
  }
}
@media (max-width: 480px) {
  #main{
      margin-top: 84px;
  }
  #faq {
    margin-top: 80px;
  }
  #scene1 {
    display: none;
  }
  header .call {
    display: none;
  }
  #main .container .left{
      padding-top: 20px;
      width:100%;
  }
  #main .container .left h1{
      margin-top: 0;
      margin-bottom: 20px;
  }
  #main .container .left .buttons{
      margin-top: 20px;
      gap:20px;
  }
  #main .container .left .socials{
      margin-top: 20px;
  }
  header .container{
      padding-top: 20px;
      padding-bottom: 20px;
  }
  #main{
      padding-bottom: 20px;
  }
  #programs{
      margin-top: 20px;
  }
  #programs .title{
      margin-bottom: 20px;
  }
  #programs .row{
      gap:20px;
  }
  #programs .more-info .title{
      padding-top: 0;
      padding-bottom: 10px;
      margin-bottom: 10px;
  }
  #programs .more-info .description{
      margin-bottom: 20px;
  }
  #about{
      margin-top: 20px;
  }
  #about .title, #reviews .left .title{
      margin-bottom: 20px;
  }
  #about .row{
      margin-top: 20px;
  }
  #about .row .right{
      padding-top: 0;
  }
  #main .container .left h1 {
    font-size: 32px;
  }
  #process{
      margin-top: 20px;
  }
  #process .title{
      margin-top: 20px;
  }
  #process{
      padding-bottom: 20px;
  }
  #teachers .title{
      margin-top: 20px;
  }
  #main .container .right {
    display: none;
  }
  #main .container .left .buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  #programs .title {
    line-height: 100%;
  }
  #programs .more-info .button {
    padding: 15px 25px;
  }
  #process .row .items-wrap .item {
    gap: 25px;
  }
  #process .row .items-wrap .item .column {
    width: calc(100% - 25px);
  }
  #process .row .img {
    display: none;
  }
  #process .row .items-wrap .item {
    flex-direction: column;
  }
  #process .row .items-wrap::before {
    height: 99%;
    left: 0;
  }
  #process .row .items-wrap .item::before {
    width: 100px;
    left: 0px;
  }
  #process .row .items-wrap .item span {
    margin-top: -34px;
  }
  #process .row .items-wrap .item {
    margin-bottom: 25px;
  }
  #teachers .teacher-slider {
    margin-top: 24px;
  }
  #teachers .teacher-slider .swiper-slide .img img {
    margin-top: 35px;
  }
  #teachers .teacher-slider .swiper-pagination {
    width: 100%;
  }
  #teachers .teacher-slider .swiper-slide .right .button {
    padding: 16px 18px;
    font-size: 18px;
  }
  #partners .top .partners-slider-button-prev {
    position: absolute;
    left: 0;
    right: auto;
    top: 270px;
  }
  #partners .top .partners-slider-button-next {
    position: absolute;
    left: 50px;
    right: auto;
    top: 270px;
  }
  #teachers .teacher-slider{
      margin-top: 20px;
  }
  #teachers .teacher-slider .swiper-slide{
      gap:20px;
  }
  #teachers .teacher-slider .swiper-slide .right .description{
      padding-top: 20px;
  }
  #teachers .teacher-slider .swiper-slide .right .button{
      margin-top: 20px;
  }
  #gallery{
      margin-top: 20px;
  }
  #gallery .gallery-slider{
      padding-top: 20px;
      padding-bottom: 0px;
  }
  #certificates{
      margin-top: 20px;
  }
  #reviews{
      margin-top: 20px;
  }
  #reviews .left .buttons-group{
      margin-top: 20px;
  }
  #reviews .right .reviews-slider .swiper-slide{
      padding: 20px;
      min-height:auto;
  }
  #news{
      margin-top: 20px;
  }
  #news .news-slider{
      margin-top: 20px;
  }
  #news .container{
      padding-bottom: 20px;
  }
  #products{
      margin-top: 20px;
  }
  #products .products-slider .swiper-slide{
      height:auto;
  }
  #reviews .right .reviews-slider .swiper-slide .text{
      margin-top: 20px;
  }
  #partners{
      margin-top: 20px;
  }
  #partners .partners-slider{
      margin-top: 20px;
  }
  #faq{
      margin-top: 58px;
  }
  #faq .show-more{
      margin-top: 20px;
  }
  #contacts{
      margin-top: 20px;
  }
  #contacts .left{
      margin-top: 0;
      gap:20px;
  }
}
.burger-button {
  cursor: pointer;
  padding: 12px 0;
  z-index: 3;
}
.burger-button span {
  position: relative;
  display: block;
  width: 25px;
  height: 4px;
  background: var(--2);
  transition: all 0.2s ease-in-out;
}
.burger-button span:before, .burger-button span:after {
  position: absolute;
  background: var(--2);
  content: "";
  width: 25px;
  height: 4px;
  transition: all 0.2s ease-in-out;
}
.burger-button span:before {
  top: -8px;
}
.burger-button span:after {
  top: 8px;
}

header nav.open {
  position: absolute;
  display: block;
  width: 100%;
  left: 0px;
  top: 0;
  background: var(--bg);
  height: 100vh;
  z-index: 2;
}

body.open section {
  display: none !important;
}

body.open footer {
  display: none;
}

a.active span {
  background: transparent;
}
a.active span:before {
  transform: rotate(45deg) translate(5px, 6px);
}
a.active span:after {
  transform: rotate(-45deg) translate(5px, -6px);
}

#programs .items-wrap .item, #about .img .back-layer, #process .row .items-wrap .item .column, #reviews .right .reviews-slider .swiper-slide, #form form, #contacts .right {
  box-sizing: border-box;
}

#form form input {
  width: 80%;
}

header .phones ul li a {
  text-decoration: none;
}
header .phones ul li a:hover{
    text-decoration:underline;
}

#reviews .left .buttons-group .button {
  text-decoration: none;
}

#products .products-slider .swiper-slide .button span {
  padding-left: 35px;
}

.form-control {
  width: 100%;
}

#partners .partners-slider .swiper-slide {
  box-sizing: border-box;
}

.certificates-slider .swiper-pagination {
  margin-top: 25px;
}

#certificates .certificates-slider {
  padding-bottom: 25px;
}

#certificates .certificates-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 10px;
  opacity: 0.5;
  background: var(--3);
}
#certificates .certificates-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

/*# sourceMappingURL=style.css.map */
@import url('./components/ajaxform/css/lib/jquery.jgrowl.min.css');
.af-message-success { background-color: green !important; }
.af-message-error { background-color: brown !important; }
.af-message-info { background-color: black !important; }
.ajax_form.af_example {
    width: 100%;
}
.ajax_form.af_example .controls input,
.ajax_form.af_example .controls textarea {
    width: 100%;
}
.ajax_form .error {
    color: brown;
}
@media screen and (min-width: 320px) {
    .ajax_form.af_example .controls button[type="submit"] {
        float: right;
    }
}
@media screen and (max-width: 320px) {
    .ajax_form.af_example .controls button {
        width: 100%;
        margin-top: 5px;
    }
}
@charset "UTF-8";*{padding:0;margin:0;border:0}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box}body,html{height:100%;min-width:320px}body{color:#263f53;line-height:1;font-family:"";font-size:1rem;-ms-text-size-adjust:100%;-moz-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}button,input,textarea{font-family:"";font-size:inherit}button{cursor:pointer;color:inherit;background-color:inherit}a{color:inherit}a:link,a:visited{text-decoration:none}a:hover{text-decoration:none}ul li{list-style:none}img{vertical-align:top}h1,h2,h3,h4,h5,h6{font-weight:inherit;font-size:inherit}.lock body{overflow:hidden;-ms-touch-action:none;touch-action:none}.wrapper{min-height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;overflow:hidden}.wrapper>main{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.wrapper>*{min-width:0}[class*=__container]{max-width:87rem;-webkit-box-sizing:content-box;box-sizing:content-box;margin:0 auto;padding:0 .9375rem}[class*=-ibg]{position:relative}[class*=-ibg] img{position:absolute;width:100%;height:100%;top:0;left:0;-o-object-fit:cover;object-fit:cover}[class*=-ibg_contain] img{-o-object-fit:contain;object-fit:contain}.breadcrumbs{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap;gap:1.3125rem}.breadcrumbs__item{color:#263f53;font-size:.875rem;font-weight:400;letter-spacing:0;text-align:left;position:relative}.breadcrumbs__item:hover{text-decoration:underline}.breadcrumbs__item:not(:first-child)::before{content:"-";display:inline-block;position:absolute;line-height:0;left:-.8125rem;top:45%}._active{color:#a771fe}.page-content{font-family:Nanito;background-color:#fff4f0}.typical-content{letter-spacing:0;text-align:left;color:#263f53}.typical-content h1{font-weight:600;line-height:1.19}.typical-content h2{font-weight:600;line-height:1.19}.typical-content h3{font-weight:400;margin-bottom:16px;line-height:1.04}.typical-content h4{font-weight:600;line-height:1.19}.typical-content p{line-height:1.44}.typical-content ul{line-height:1.38;padding-left:1.25rem}.typical-content li{position:relative}.typical-content li:not(:first-child){margin-top:.5rem}.typical-content li::before{content:"";display:inline-block;width:.5rem;height:.5rem;border-radius:50%;background-color:#ff9ca1;position:absolute;left:-1.25rem;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.typical-content img{float:left;max-width:700px}.typical-content :last-child{margin:0}.content-more{background-color:#fff}.content-more td{padding:20px 24px 20px 24px}.content-more th{padding:20px 24px 20px 24px}.content-more th:nth-child(1){width:45%}.content-more th:nth-child(2){width:35%}.content-more thead{font-weight:700;line-height:1.56;color:#fff;background-color:#a771fe;border-radius:1.5rem}.content-more table{overflow:hidden;width:100%;text-align:left;border-radius:1.5rem;background-color:transparent;border:1px solid #a771fe}.content-more tr:nth-child(2n){outline:1px solid #a771fe}.content-img{display:-ms-grid;display:grid;gap:20px;grid-template-columns:repeat(auto-fill,minmax(340px,1fr));position:relative;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.content-img img{width:100%;height:100%;max-height:18.5rem;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;border-radius:20px}.documents h2{font-weight:400;line-height:1.35}.documents div{margin-top:1rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-wrap:wrap;flex-wrap:wrap}.documents a{cursor:pointer;color:#fff;display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;padding:13px 24px;border-radius:40px;gap:.5rem;-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#ff9ca1;line-height:1.31;-webkit-box-shadow:0 4px 14px 0 rgba(250,138,144,.4);box-shadow:0 4px 14px 0 rgba(250,138,144,.4)}.documents a:hover{background-color:#fcabaf}.lg-image{max-width:55%!important;width:55%!important}.page{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.page__element{margin:0 auto;height:100vh}@font-face{font-family:lg;src:url(data:font/woff2;base64,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) format("woff2"),url(data:font/woff;base64,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) format("woff");font-weight:400;font-style:normal;font-display:block}.lg-icon{font-family:lg!important;speak:never;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.lg-container{font-family:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.lg-next,.lg-prev{background-color:rgba(0,0,0,.45);border-radius:2px;color:#999;cursor:pointer;display:block;font-size:22px;margin-top:-10px;padding:8px 10px 9px;position:absolute;top:50%;z-index:1080;outline:0;border:none}.lg-next.disabled,.lg-prev.disabled{opacity:0!important;cursor:default}.lg-next:hover:not(.disabled),.lg-prev:hover:not(.disabled){color:#fff}.lg-single-item .lg-next,.lg-single-item .lg-prev{display:none}.lg-next{right:20px}.lg-next:before{content:"\e095"}.lg-prev{left:20px}.lg-prev:after{content:"\e094"}@-webkit-keyframes lg-right-end{0%{left:0}50%{left:-30px}100%{left:0}}@keyframes lg-right-end{0%{left:0}50%{left:-30px}100%{left:0}}@-webkit-keyframes lg-left-end{0%{left:0}50%{left:30px}100%{left:0}}@keyframes lg-left-end{0%{left:0}50%{left:30px}100%{left:0}}.lg-outer.lg-right-end .lg-object{-webkit-animation:lg-right-end .3s;animation:lg-right-end .3s;position:relative}.lg-outer.lg-left-end .lg-object{-webkit-animation:lg-left-end .3s;animation:lg-left-end .3s;position:relative}.lg-toolbar{z-index:1082;left:0;position:absolute;top:0;width:100%}.lg-media-overlap .lg-toolbar{background-image:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,0)),to(rgba(0,0,0,.4)));background-image:linear-gradient(0deg,rgba(0,0,0,0),rgba(0,0,0,.4))}.lg-toolbar .lg-icon{color:#999;cursor:pointer;float:right;font-size:24px;height:47px;line-height:27px;padding:10px 0;text-align:center;width:50px;text-decoration:none!important;outline:medium none;will-change:color;-webkit-transition:color .2s linear;transition:color .2s linear;background:0 0;border:none;-webkit-box-shadow:none;box-shadow:none}.lg-toolbar .lg-icon.lg-icon-18{font-size:18px}.lg-toolbar .lg-icon:hover{color:#fff}.lg-toolbar .lg-close:after{content:"\e070"}.lg-toolbar .lg-maximize{font-size:22px}.lg-toolbar .lg-maximize:after{content:"\e90a"}.lg-toolbar .lg-download:after{content:"\e0f2"}.lg-sub-html{color:#eee;font-size:16px;padding:10px 40px;text-align:center;z-index:1080;opacity:0;-webkit-transition:opacity .2s ease-out 0s;transition:opacity .2s ease-out 0s}.lg-sub-html h4{margin:0;font-size:13px;font-weight:700}.lg-sub-html p{font-size:12px;margin:5px 0 0}.lg-sub-html a{color:inherit}.lg-sub-html a:hover{text-decoration:underline}.lg-media-overlap .lg-sub-html{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,.6)));background-image:linear-gradient(180deg,rgba(0,0,0,0),rgba(0,0,0,.6))}.lg-item .lg-sub-html{position:absolute;bottom:0;right:0;left:0}.lg-error-msg{font-size:14px;color:#999}.lg-counter{color:#999;display:inline-block;font-size:16px;padding-left:20px;padding-top:12px;height:47px;vertical-align:middle}.lg-closing .lg-next,.lg-closing .lg-prev,.lg-closing .lg-sub-html,.lg-closing .lg-toolbar{opacity:0;-webkit-transition:-webkit-transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear;-webkit-transition:opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear,-webkit-transform .08 cubic-bezier(0,0,.25,1) 0s;transition:opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear,-webkit-transform .08 cubic-bezier(0,0,.25,1) 0s;transition:transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear;transition:transform .08 cubic-bezier(0,0,.25,1) 0s,opacity .08 cubic-bezier(0,0,.25,1) 0s,color .08 linear,-webkit-transform .08 cubic-bezier(0,0,.25,1) 0s}body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-img-wrap,body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable) .lg-video-cont{opacity:0;-ms-transform:scale3d(.5,.5,.5);-webkit-transform:scale3d(.5,.5,.5);transform:scale3d(.5,.5,.5);will-change:transform,opacity;-webkit-transition:-webkit-transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;-webkit-transition:opacity 250ms cubic-bezier(0,0,.25,1),-webkit-transform 250ms cubic-bezier(0,0,.25,1) 0s!important;transition:opacity 250ms cubic-bezier(0,0,.25,1),-webkit-transform 250ms cubic-bezier(0,0,.25,1) 0s!important;transition:transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1)!important;transition:transform 250ms cubic-bezier(0,0,.25,1) 0s,opacity 250ms cubic-bezier(0,0,.25,1),-webkit-transform 250ms cubic-bezier(0,0,.25,1) 0s!important}body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-img-wrap,body:not(.lg-from-hash) .lg-outer.lg-start-zoom .lg-item:not(.lg-zoomable).lg-complete .lg-video-cont{opacity:1;-ms-transform:scale3d(1,1,1);-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}.lg-group:after{content:"";display:table;clear:both}.lg-container{display:none;outline:0}.lg-container.lg-show{display:block}.lg-on{scroll-behavior:unset}.lg-hide-sub-html .lg-sub-html,.lg-next,.lg-pager-outer,.lg-prev,.lg-toolbar{opacity:0;will-change:transform,opacity;-webkit-transition:-webkit-transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s;-webkit-transition:opacity .25s cubic-bezier(0,0,.25,1) 0s,-webkit-transform .25s cubic-bezier(0,0,.25,1) 0s;transition:opacity .25s cubic-bezier(0,0,.25,1) 0s,-webkit-transform .25s cubic-bezier(0,0,.25,1) 0s;transition:transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s;transition:transform .25s cubic-bezier(0,0,.25,1) 0s,opacity .25s cubic-bezier(0,0,.25,1) 0s,-webkit-transform .25s cubic-bezier(0,0,.25,1) 0s}.lg-show-in .lg-next,.lg-show-in .lg-pager-outer,.lg-show-in .lg-prev,.lg-show-in .lg-toolbar{opacity:1}.lg-show-in.lg-hide-sub-html .lg-sub-html{opacity:1}.lg-show-in .lg-hide-items .lg-prev{opacity:0;-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}.lg-show-in .lg-hide-items .lg-next{opacity:0;-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}.lg-show-in .lg-hide-items .lg-toolbar{opacity:0;-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}.lg-show-in .lg-hide-items.lg-hide-sub-html .lg-sub-html{opacity:0;-webkit-transform:translate3d(0,20px,0);transform:translate3d(0,20px,0)}.lg-outer{width:100%;height:100%;position:fixed;top:0;left:0;z-index:1050;text-align:left;opacity:.001;outline:0;will-change:auto;overflow:hidden;-webkit-transition:opacity .15s ease 0s;transition:opacity .15s ease 0s}.lg-outer *{-webkit-box-sizing:border-box;box-sizing:border-box}.lg-outer.lg-zoom-from-image{opacity:1}.lg-outer.lg-visible{opacity:1}.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-current,.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-next-slide,.lg-outer.lg-css3 .lg-item:not(.lg-start-end-progress).lg-prev-slide{-webkit-transition-duration:inherit!important;transition-duration:inherit!important;-webkit-transition-timing-function:inherit!important;transition-timing-function:inherit!important}.lg-outer.lg-css3.lg-dragging .lg-item.lg-current,.lg-outer.lg-css3.lg-dragging .lg-item.lg-next-slide,.lg-outer.lg-css3.lg-dragging .lg-item.lg-prev-slide{-webkit-transition-duration:0s!important;transition-duration:0s!important;opacity:1}.lg-outer.lg-grab img.lg-object{cursor:-webkit-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.lg-outer.lg-grabbing img.lg-object{cursor:move;cursor:-webkit-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}.lg-outer .lg-content{position:absolute;top:0;left:0;right:0;bottom:0}.lg-outer .lg-inner{width:100%;position:absolute;left:0;top:0;bottom:0;-webkit-transition:opacity 0s;transition:opacity 0s;white-space:nowrap}.lg-outer .lg-item{will-change:transform,opacity;display:none!important}.no-webp .lg-outer .lg-item:not(.lg-start-end-progress){background:url(data:image/gif;base64,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) no-repeat scroll center center transparent}.lg-outer.lg-css3 .lg-current,.lg-outer.lg-css3 .lg-next-slide,.lg-outer.lg-css3 .lg-prev-slide{display:inline-block!important}.lg-outer.lg-css .lg-current{display:inline-block!important}.lg-outer .lg-img-wrap,.lg-outer .lg-item{display:inline-block;text-align:center;position:absolute;width:100%;height:100%}.lg-outer .lg-img-wrap:before,.lg-outer .lg-item:before{content:"";display:inline-block;height:100%;vertical-align:middle}.lg-outer .lg-img-wrap{position:absolute;left:0;right:0;top:0;bottom:0;white-space:nowrap;font-size:0}.lg-outer .lg-item.lg-complete{background-image:none}.lg-outer .lg-item.lg-current{z-index:1060}.lg-outer .lg-object{display:inline-block;vertical-align:middle;max-width:100%;max-height:100%;width:auto;height:auto;position:relative}.lg-outer .lg-empty-html .lg-sub-html,.lg-outer .lg-empty-html.lg-sub-html{display:none}.lg-outer.lg-hide-download .lg-download{opacity:.75;pointer-events:none}.lg-outer .lg-first-slide .lg-dummy-img{position:absolute;top:50%;left:50%}.lg-outer.lg-components-open:not(.lg-zoomed) .lg-components{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}.lg-outer.lg-components-open:not(.lg-zoomed) .lg-sub-html{opacity:1;-webkit-transition:opacity .2s ease-out .15s;transition:opacity .2s ease-out .15s}.lg-backdrop{position:fixed;top:0;left:0;right:0;bottom:0;z-index:1040;background-color:#000;opacity:0;will-change:auto;-webkit-transition:opacity 333ms ease-in 0s;transition:opacity 333ms ease-in 0s}.lg-backdrop.in{opacity:1}.lg-css3.lg-no-trans .lg-current,.lg-css3.lg-no-trans .lg-next-slide,.lg-css3.lg-no-trans .lg-prev-slide{-webkit-transition:none 0s ease 0s!important;transition:none 0s ease 0s!important}.lg-css3.lg-use-css3 .lg-item{-webkit-backface-visibility:hidden;backface-visibility:hidden}.lg-css3.lg-fade .lg-item{opacity:0}.lg-css3.lg-fade .lg-item.lg-current{opacity:1}.lg-css3.lg-fade .lg-item.lg-current,.lg-css3.lg-fade .lg-item.lg-next-slide,.lg-css3.lg-fade .lg-item.lg-prev-slide{-webkit-transition:opacity .1s ease 0s;transition:opacity .1s ease 0s}.lg-css3.lg-use-css3 .lg-item.lg-start-progress{-webkit-transition:-webkit-transform 1s cubic-bezier(.175,.885,.32,1.275) 0s;transition:-webkit-transform 1s cubic-bezier(.175,.885,.32,1.275) 0s;transition:transform 1s cubic-bezier(.175,.885,.32,1.275) 0s;transition:transform 1s cubic-bezier(.175,.885,.32,1.275) 0s,-webkit-transform 1s cubic-bezier(.175,.885,.32,1.275) 0s}.lg-css3.lg-use-css3 .lg-item.lg-start-end-progress{-webkit-transition:-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s;transition:-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s;transition:transform 1s cubic-bezier(0,0,.25,1) 0s;transition:transform 1s cubic-bezier(0,0,.25,1) 0s,-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s}.lg-css3.lg-slide.lg-use-css3 .lg-item{opacity:0}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-current,.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-next-slide,.lg-css3.lg-slide.lg-use-css3 .lg-item.lg-prev-slide{-webkit-transition:-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;-webkit-transition:opacity .1s ease 0s,-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s;transition:opacity .1s ease 0s,-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s;transition:transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s;transition:transform 1s cubic-bezier(0,0,.25,1) 0s,opacity .1s ease 0s,-webkit-transform 1s cubic-bezier(0,0,.25,1) 0s}.lg-container{display:none}.lg-container.lg-show{display:block}.lg-container.lg-dragging-vertical .lg-backdrop{-webkit-transition-duration:0s!important;transition-duration:0s!important}.lg-container.lg-dragging-vertical .lg-css3 .lg-item.lg-current{-webkit-transition-duration:0s!important;transition-duration:0s!important;opacity:1}.lg-inline .lg-backdrop,.lg-inline .lg-outer{position:absolute}.lg-inline .lg-backdrop{z-index:1}.lg-inline .lg-outer{z-index:2}.lg-inline .lg-maximize:after{content:"\e909"}.lg-components{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);will-change:transform;-webkit-transition:-webkit-transform .35s ease-out 0s;transition:-webkit-transform .35s ease-out 0s;transition:transform .35s ease-out 0s;transition:transform .35s ease-out 0s,-webkit-transform .35s ease-out 0s;z-index:1080;position:absolute;bottom:0;right:0;left:0}@media (min-width:88.875em){.content-section{padding-top:3.5rem}.content-section{padding-bottom:2.5rem}.typical-content{font-size:1.5rem}.typical-content{margin-top:1.5rem}.typical-content h1{font-size:4rem}.typical-content h1{margin-bottom:1.5rem}.typical-content h1+p{margin-bottom:2.5rem}.typical-content h2{font-size:3rem}.typical-content h2{margin-bottom:2.5rem}.typical-content h3{font-size:1.625rem}.typical-content h4{font-size:1.5rem}.typical-content h4{margin-bottom:1.5rem}.typical-content p{font-size:1rem}.typical-content p{margin-bottom:1.5rem}.typical-content p:nth-last-of-type(1){margin-bottom:2.5rem}.typical-content ul{font-size:1rem}.typical-content ul{margin-bottom:2.5rem}.typical-content img{margin-bottom:1.5rem}.typical-content img{margin-right:2.5rem}.content-more{border-radius:3.125rem}.content-more{padding-top:2.5rem}.content-more{padding-bottom:5rem}.content-more thead{font-size:1.125rem}.content-more table{margin-top:3.5rem}.documents{margin-top:2.5rem}.documents h2{font-size:1.625rem}.documents div{gap:1.5rem}.documents a{font-size:1rem}}@media (max-width:20em){.content-section{padding-top:1.5rem}.content-section{padding-bottom:1.5rem}.typical-content{font-size:1rem}.typical-content{margin-top:1rem}.typical-content h1{font-size:2rem}.typical-content h1{margin-bottom:1rem}.typical-content h1+p{margin-bottom:1.5rem}.typical-content h2{font-size:1.5rem}.typical-content h2{margin-bottom:1.5rem}.typical-content h3{font-size:1.25rem}.typical-content h4{font-size:1.125rem}.typical-content h4{margin-bottom:1rem}.typical-content p{font-size:.875rem}.typical-content p{margin-bottom:1rem}.typical-content p:nth-last-of-type(1){margin-bottom:1.5rem}.typical-content ul{font-size:.875rem}.typical-content ul{margin-bottom:1.5rem}.typical-content img{margin-bottom:1rem}.typical-content img{margin-right:1.5rem}.content-more{border-radius:1.5rem}.content-more{padding-top:1.5rem}.content-more{padding-bottom:2.5rem}.content-more thead{font-size:1rem}.content-more table{margin-top:1.5rem}.documents{margin-top:1.5rem}.documents h2{font-size:1.25rem}.documents div{gap:1rem}.documents a{font-size:.875rem}}@media (max-width:61.99875em){.typical-content img{float:none}}@media (max-width:47.99875em){.typical-content img{width:100%}.content-more table{border-radius:.75rem}.content-more td{padding:10px 12px 10px 12px}.content-more th{padding:10px 12px 10px 12px}.content-img{grid-template-columns:repeat(auto-fill,minmax(260px,1fr))}}@media (min-width:20em) and (max-width:88.875em){@supports (padding-top:clamp(1.5rem ,0.9192377495rem + 2.9038112523vw ,3.5rem)){.content-section{padding-top:clamp(1.5rem ,.9192377495rem + 2.9038112523vw ,3.5rem)}}@supports not (padding-top:clamp(1.5rem ,0.9192377495rem + 2.9038112523vw ,3.5rem)){.content-section{padding-top:calc(1.5rem + 2 * (100vw - 20rem)/ 68.875)}}@supports (padding-bottom:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)){.content-section{padding-bottom:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)}}@supports not (padding-bottom:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)){.content-section{padding-bottom:calc(1.5rem + 1 * (100vw - 20rem)/ 68.875)}}@supports (font-size:clamp(1rem ,0.8548094374rem + 0.7259528131vw ,1.5rem)){.typical-content{font-size:clamp(1rem ,.8548094374rem + .7259528131vw ,1.5rem)}}@supports not (font-size:clamp(1rem ,0.8548094374rem + 0.7259528131vw ,1.5rem)){.typical-content{font-size:calc(1rem + .5 * (100vw - 20rem)/ 68.875)}}@supports (margin-top:clamp(1rem ,0.8548094374rem + 0.7259528131vw ,1.5rem)){.typical-content{margin-top:clamp(1rem ,.8548094374rem + .7259528131vw ,1.5rem)}}@supports not (margin-top:clamp(1rem ,0.8548094374rem + 0.7259528131vw ,1.5rem)){.typical-content{margin-top:calc(1rem + .5 * (100vw - 20rem)/ 68.875)}}@supports (font-size:clamp(2rem ,1.4192377495rem + 2.9038112523vw ,4rem)){.typical-content h1{font-size:clamp(2rem ,1.4192377495rem + 2.9038112523vw ,4rem)}}@supports not (font-size:clamp(2rem ,1.4192377495rem + 2.9038112523vw ,4rem)){.typical-content h1{font-size:calc(2rem + 2 * (100vw - 20rem)/ 68.875)}}@supports (margin-bottom:clamp(1rem ,0.8548094374rem + 0.7259528131vw ,1.5rem)){.typical-content h1{margin-bottom:clamp(1rem ,.8548094374rem + .7259528131vw ,1.5rem)}}@supports not (margin-bottom:clamp(1rem ,0.8548094374rem + 0.7259528131vw ,1.5rem)){.typical-content h1{margin-bottom:calc(1rem + .5 * (100vw - 20rem)/ 68.875)}}@supports (margin-bottom:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)){.typical-content h1+p{margin-bottom:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)}}@supports not (margin-bottom:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)){.typical-content h1+p{margin-bottom:calc(1.5rem + 1 * (100vw - 20rem)/ 68.875)}}@supports (font-size:clamp(1.5rem ,1.0644283122rem + 2.1778584392vw ,3rem)){.typical-content h2{font-size:clamp(1.5rem ,1.0644283122rem + 2.1778584392vw ,3rem)}}@supports not (font-size:clamp(1.5rem ,1.0644283122rem + 2.1778584392vw ,3rem)){.typical-content h2{font-size:calc(1.5rem + 1.5 * (100vw - 20rem)/ 68.875)}}@supports (margin-bottom:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)){.typical-content h2{margin-bottom:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)}}@supports not (margin-bottom:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)){.typical-content h2{margin-bottom:calc(1.5rem + 1 * (100vw - 20rem)/ 68.875)}}@supports (font-size:clamp(1.25rem ,1.141107078rem + 0.5444646098vw ,1.625rem)){.typical-content h3{font-size:clamp(1.25rem ,1.141107078rem + .5444646098vw ,1.625rem)}}@supports not (font-size:clamp(1.25rem ,1.141107078rem + 0.5444646098vw ,1.625rem)){.typical-content h3{font-size:calc(1.25rem + .375 * (100vw - 20rem)/ 68.875)}}@supports (font-size:clamp(1.125rem ,1.016107078rem + 0.5444646098vw ,1.5rem)){.typical-content h4{font-size:clamp(1.125rem ,1.016107078rem + .5444646098vw ,1.5rem)}}@supports not (font-size:clamp(1.125rem ,1.016107078rem + 0.5444646098vw ,1.5rem)){.typical-content h4{font-size:calc(1.125rem + .375 * (100vw - 20rem)/ 68.875)}}@supports (margin-bottom:clamp(1rem ,0.8548094374rem + 0.7259528131vw ,1.5rem)){.typical-content h4{margin-bottom:clamp(1rem ,.8548094374rem + .7259528131vw ,1.5rem)}}@supports not (margin-bottom:clamp(1rem ,0.8548094374rem + 0.7259528131vw ,1.5rem)){.typical-content h4{margin-bottom:calc(1rem + .5 * (100vw - 20rem)/ 68.875)}}@supports (font-size:clamp(0.875rem ,0.8387023593rem + 0.1814882033vw ,1rem)){.typical-content p{font-size:clamp(.875rem ,.8387023593rem + .1814882033vw ,1rem)}}@supports not (font-size:clamp(0.875rem ,0.8387023593rem + 0.1814882033vw ,1rem)){.typical-content p{font-size:calc(.875rem + .125 * (100vw - 20rem)/ 68.875)}}@supports (margin-bottom:clamp(1rem ,0.8548094374rem + 0.7259528131vw ,1.5rem)){.typical-content p{margin-bottom:clamp(1rem ,.8548094374rem + .7259528131vw ,1.5rem)}}@supports not (margin-bottom:clamp(1rem ,0.8548094374rem + 0.7259528131vw ,1.5rem)){.typical-content p{margin-bottom:calc(1rem + .5 * (100vw - 20rem)/ 68.875)}}@supports (margin-bottom:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)){.typical-content p:nth-last-of-type(1){margin-bottom:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)}}@supports not (margin-bottom:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)){.typical-content p:nth-last-of-type(1){margin-bottom:calc(1.5rem + 1 * (100vw - 20rem)/ 68.875)}}@supports (font-size:clamp(0.875rem ,0.8387023593rem + 0.1814882033vw ,1rem)){.typical-content ul{font-size:clamp(.875rem ,.8387023593rem + .1814882033vw ,1rem)}}@supports not (font-size:clamp(0.875rem ,0.8387023593rem + 0.1814882033vw ,1rem)){.typical-content ul{font-size:calc(.875rem + .125 * (100vw - 20rem)/ 68.875)}}@supports (margin-bottom:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)){.typical-content ul{margin-bottom:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)}}@supports not (margin-bottom:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)){.typical-content ul{margin-bottom:calc(1.5rem + 1 * (100vw - 20rem)/ 68.875)}}@supports (margin-bottom:clamp(1rem ,0.8548094374rem + 0.7259528131vw ,1.5rem)){.typical-content img{margin-bottom:clamp(1rem ,.8548094374rem + .7259528131vw ,1.5rem)}}@supports not (margin-bottom:clamp(1rem ,0.8548094374rem + 0.7259528131vw ,1.5rem)){.typical-content img{margin-bottom:calc(1rem + .5 * (100vw - 20rem)/ 68.875)}}@supports (margin-right:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)){.typical-content img{margin-right:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)}}@supports not (margin-right:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)){.typical-content img{margin-right:calc(1.5rem + 1 * (100vw - 20rem)/ 68.875)}}@supports (border-radius:clamp(1.5rem ,1.0281306715rem + 2.3593466425vw ,3.125rem)){.content-more{border-radius:clamp(1.5rem ,1.0281306715rem + 2.3593466425vw ,3.125rem)}}@supports not (border-radius:clamp(1.5rem ,1.0281306715rem + 2.3593466425vw ,3.125rem)){.content-more{border-radius:calc(1.5rem + 1.625 * (100vw - 20rem)/ 68.875)}}@supports (padding-top:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)){.content-more{padding-top:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)}}@supports not (padding-top:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)){.content-more{padding-top:calc(1.5rem + 1 * (100vw - 20rem)/ 68.875)}}@supports (padding-bottom:clamp(2.5rem ,1.7740471869rem + 3.6297640653vw ,5rem)){.content-more{padding-bottom:clamp(2.5rem ,1.7740471869rem + 3.6297640653vw ,5rem)}}@supports not (padding-bottom:clamp(2.5rem ,1.7740471869rem + 3.6297640653vw ,5rem)){.content-more{padding-bottom:calc(2.5rem + 2.5 * (100vw - 20rem)/ 68.875)}}@supports (font-size:clamp(1rem ,0.9637023593rem + 0.1814882033vw ,1.125rem)){.content-more thead{font-size:clamp(1rem ,.9637023593rem + .1814882033vw ,1.125rem)}}@supports not (font-size:clamp(1rem ,0.9637023593rem + 0.1814882033vw ,1.125rem)){.content-more thead{font-size:calc(1rem + .125 * (100vw - 20rem)/ 68.875)}}@supports (margin-top:clamp(1.5rem ,0.9192377495rem + 2.9038112523vw ,3.5rem)){.content-more table{margin-top:clamp(1.5rem ,.9192377495rem + 2.9038112523vw ,3.5rem)}}@supports not (margin-top:clamp(1.5rem ,0.9192377495rem + 2.9038112523vw ,3.5rem)){.content-more table{margin-top:calc(1.5rem + 2 * (100vw - 20rem)/ 68.875)}}@supports (margin-top:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)){.documents{margin-top:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)}}@supports not (margin-top:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)){.documents{margin-top:calc(1.5rem + 1 * (100vw - 20rem)/ 68.875)}}@supports (font-size:clamp(1.25rem ,1.141107078rem + 0.5444646098vw ,1.625rem)){.documents h2{font-size:clamp(1.25rem ,1.141107078rem + .5444646098vw ,1.625rem)}}@supports not (font-size:clamp(1.25rem ,1.141107078rem + 0.5444646098vw ,1.625rem)){.documents h2{font-size:calc(1.25rem + .375 * (100vw - 20rem)/ 68.875)}}@supports (gap:clamp(1rem ,0.8548094374rem + 0.7259528131vw ,1.5rem)){.documents div{gap:clamp(1rem ,.8548094374rem + .7259528131vw ,1.5rem)}}@supports not (gap:clamp(1rem ,0.8548094374rem + 0.7259528131vw ,1.5rem)){.documents div{gap:calc(1rem + .5 * (100vw - 20rem)/ 68.875)}}@supports (font-size:clamp(0.875rem ,0.8387023593rem + 0.1814882033vw ,1rem)){.documents a{font-size:clamp(.875rem ,.8387023593rem + .1814882033vw ,1rem)}}@supports not (font-size:clamp(0.875rem ,0.8387023593rem + 0.1814882033vw ,1rem)){.documents a{font-size:calc(.875rem + .125 * (100vw - 20rem)/ 68.875)}}}.webp .lg-outer .lg-item:not(.lg-start-end-progress){background:url(data:image/webp;base64,UklGRs4AAABXRUJQVlA4IMIAAACwBQCdASogACAAPpFCnEolo6KhqAgAsBIJaQAD5dDxrXM99232GfVDjLF0EQDwsC0CXKtWlgAA/vV76pcYbjjsL88+3qb/4UfhRX+dwASYANdOF+J5Nu61NxB7TUbHeCQeee2d4nX3M/8oPzSbTnBOl/xCNiQkRhkYBtGvv3/fXfn2CbNj/EPmnHMb/H7zFQx28TJK5yXYt1B6zlKYbIeBfYPo1h1tsfJDbPjNrzTs7O1elyh7eF4fdYd8hFly7AAAAA==) no-repeat scroll center center transparent}
.typical-content li::before{
    top:0;
    transform: translateY(50%);
}
@media (min-width: 20em) and (max-width: 88.875em) {
    @supports (margin-bottom:clamp(1.5rem ,1.2096188748rem + 1.4519056261vw ,2.5rem)) {
        .typical-content h2 {
            margin-top: clamp(1.5rem, 1.2096188748rem + 1.4519056261vw, 2.5rem)!important;
        }
    }
}
@media (min-width: 88.875em) {
    .typical-content h2 {
        margin-top: 2.5rem !important;
    }
}
img{
    width:auto;
}
.programms_number{
        font-family: Nunito;
    font-size: 48px;
    font-weight: 800;
    color: #3F45C1;
}
.keys_btn{
        padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 35px;
    padding-right: 35px;
    color: var(--bg);
    font-family: "Nunito";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 40px;
    border: 1px solid var(--2);
    background: var(--2);
    /* box-shadow: 0px 4px 14px 0px rgba(250, 138, 144, 0.4); */
    transition: background 0.4s ease;
    transition: color 0.4s ease;
}
.keys_btn:hover{
    color: var(--2);
    background: none;
}
.keys_btn_wrp{
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 80px;
}
@media (max-width: 768px) {
    .keys_btn_wrp{
        margin-top: 40px;
    }
}
.ul_fixed ul{
        margin-left: 50px;
}
.ul_fixed ul li{
    position:relative;
}
.ul_fixed ul li:before{
        content: "";
    display: inline-block;
    width: .5rem;
    height: .5rem;
    border-radius: 50%;
    background-color: #E4DD2A;
    position: absolute;
    left: -1.25rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.mail_header{
    /* font-weight:bold; */
}
#programs .description ul li{
    padding-left: 16px;
}
#programs .description ul li{
    position:relative;
}
#programs .description ul li:before{
    position:absolute;
    content:"-";
    left:0;
    
}
.akc_cont_sp{
        font-size: 18px;
}