@font-face {
    font-family: 'SF Pro Display';
    src: url(/fonts/sf-pro-display-black.woff2);
    font-display: swap;
    font-weight: 900;
}
@font-face {
    font-family: 'SF Pro Display';
    src: url(/fonts/sf-pro-display-bold.woff2);
    font-display: swap;
    font-weight: 700;
}
@font-face {
    font-family: 'SF Pro Display';
    src: url(/fonts/sf-pro-display-light.woff2);
    font-display: swap;
    font-weight: 300;
}
@font-face {
    font-family: 'SF Pro Display';
    src: url(/fonts/sf-pro-display-medium.woff2);
    font-display: swap;
    font-weight: 500;
}
@font-face {
    font-family: 'SF Pro Display';
    src: url(/fonts/sf-pro-display-regular.woff2);
    font-display: swap;
    font-weight: 400;
}
@font-face {
    font-family: 'SF Pro Display';
    src: url(/fonts/sf-pro-display-semibold.woff2);
    font-display: swap;
    font-weight: 600;
}
@font-face {
    font-family: 'SF Pro Display';
    src: url(/fonts/sf-pro-display-thin.woff2);
    font-display: swap;
    font-weight: 100;
}

@font-face {
    font-family: 'SF Pro Display';
    src: url(/fonts/sf-pro-display-ultralight.woff2);
    font-display: swap;
    font-weight: 200;
}

*{
  font-family: 'SF Pro Display', sans-serif;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 35px;
  height: 19px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 10;
  align-items: end;
}

.burger span {
  display: block;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger .span-three,
.burger .span-one{
    width: 27px;
}
.burger .span-thour,
.burger .span-two{
    width: 20px;
}

/* Анимация для активного состояния */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.burger.active span:nth-child(2),
.burger.active span:nth-child(4){
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(3px, -3px);
}

/* Стили для мобильного меню */
.nav-wrapper-mobile{
    text-align: center;
    padding-top: 50px;
}

.mobile-menu {
  display: block;
  position: fixed;
  right: -200%;
  top: 0;
  height: 100%;
  z-index: 1000;
  transform: translateX(-100%);
  transition: all 1s;
  top: 60px;
}

.mobile-menu.active {
  transform: translateX(0);
  transition: all 0.5s easy;
  right: 0;
  top: 60px;
  width: 100%;
}

.header{
  background: #333333;
  padding: 10px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-nav,
.nav-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img{
    width: 65px;
    height: 45px;
    margin-right: 20px;
}

.mobile-logo{
    width: 115px;
    height: 120px;
    margin: 0 auto;
}

.nav-item a{
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    color: #9D9D9D;
    text-decoration: none;
    transition: 0.3s;
}

.nav-item a:hover{
    color: #fff;
}

.nav-wrapper .nav-item{
    margin-left: 45px;
}

.logo-block{
    display: flex;
    align-items: center;
    text-decoration: none;
}

.text-logo{
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

.header-start-block{
    background: #F3C622;
    font-weight: 500;
    font-size: 12px;
    line-height: 25px;
    text-align: center;
    padding: 7px 20px;
    text-transform: uppercase;
    color: #fff;
}

.mobile-menu{
    background: #333333;
}

.mobile-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.nav-wrapper-mobile .nav-item{
    margin-bottom: 30px;
}

.phone{
    font-weight: 600;
    font-size: 20px;
    line-height: 34px;
    color: #FFFFFF;
}

.social-block{
    display: flex;
    align-items: center;
}

.social-block .socila-item{
    border-radius: 15px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.social-block .socila-item .ins{
    background-color: transparent;
    background-image: url(/image/icon-social/instagram.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}
.social-block .socila-item .ins:hover{
    background-image: url(/image/icon-social/instagram-hover.png);
}
.social-block .socila-item .ins:active{
    background-image: url(/image/icon-social/instagram-active.png);
}
.social-block .socila-item .vk{
    background-color: transparent;
    background-image: url(/image/icon-social/vk.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}
.social-block .socila-item .vk:hover{
    background-image: url(/image/icon-social/vk-hover.svg);
}
.social-block .socila-item .vk:active{
    background-image: url(/image/icon-social/vk-active.png);
}
.social-block .socila-item .tg{
    background-color: transparent;
    background-image: url(/image/icon-social/telegram.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}
.social-block .socila-item .tg:hover{
    background-image: url(/image/icon-social/telegram-hover.png);
}
.social-block .socila-item .tg:active{
    background-image: url(/image/icon-social/telegram-active.png);
}
.social-block .socila-item .wt{
    background-color: transparent;
    background-image: url(/image/icon-social/whatsapp.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}
.social-block .socila-item .wt:hover{
    background-image: url(/image/icon-social/whatsapp-hover.png);
}
.social-block .socila-item .wt:active{
    background-image: url(/image/icon-social/whatsapp-active.png);
}
.social-block .socila-item .em{
    background-color: transparent;
    background-image: url(/image/icon-social/email.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
    transition: all 0.3s;
}
.social-block .socila-item .em:hover{
    background-image: url(/image/icon-social/email-hover.png);
}
.social-block .socila-item .em:active{
    background-image: url(/image/icon-social/email-active.png);
}

.title-block-top{
    display: flex;
    align-items: center;
}

.title-block-top-left{
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    text-transform: uppercase;
    color: #9D9D9D;
    border-right: 1px solid #9D9D9D;
    padding-right: 20px;
}

.title-block-top-right{
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #333333;
    padding-left: 20px;
}

.subtitle-text{
    background: #F3C622;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    text-transform: uppercase;
    color: #fff;
    padding: 5px 10px;
    max-width: 182px;
    width: 100%;
}

.title-text{
    font-weight: 700;
    font-size: 64px;
    line-height: 75px;
    text-transform: uppercase;
    color: #333333;
}

.subtext-one{
    font-weight: 400;
    font-size: 14px;
    line-height: 30px;
    text-transform: uppercase;
    color: #9D9D9D;
}

.subtext-two{
    color: #F3C622;
    font-weight: 400;
    font-size: 24px;
    line-height: 28px;
}

.btn-one{
    background: #BE0014;
    border: none;
    font-weight: 700;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    color: #fff;
    padding: 20px 40px;
    border-radius: 50px;
    transition: all 0.3s;
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 3;
    text-decoration: none;
}
.btn-one:hover{
    background: #DC5967;
}
.btn-one:active{
    background: #8B000F;
}

.default{
    background-color: transparent;
    background-image: url(/image/grant.png);
    background-repeat: no-repeat;
    background-size: contain;
    border: none;
    position: absolute;
    z-index: 3;
    top: 65px;
    right: 65px;
    width: 133px;
    height: 133px;
    transition: all 0.3s;
}
.default:hover{
    background-image: url(/image/grant-hover.png);
}

.title{
    font-size: 46px;
}

.section-top{
    padding: 120px 0;
}

.img-one{
    position: relative;
    z-index: 2;
    width: 85%;
    height: auto;
}

.img-three{
    position: absolute;
    z-index: 3;
    top: 85px;
    right: 0;
}

.img-two{
    position: absolute;
    z-index: 1;
    top: 62px;
    left: -100px;
}

.section{
    border-radius: 60px 60px 0 0;
}

.section-doc{
    background: #693928;
    padding: 80px 0;
}

.doc-block{
    text-align: center;
}

.doc-block img{
    margin: 0 auto 20px auto;
}

.doc-block p{
    margin: 0;
    font-weight: 500;
    font-size: 18px;
    line-height: 25px;
    text-align: center;
    color: #fff;
}

.btn-two{
    position: relative;
    background: transparent;
    border: none;
    color: #F3C622;
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
}
.btn-two:hover{
    color: #F8DF84;
}
.btn-two:active{
    color: #E5A500;
}

.btn-two:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 7px; 
    width: 100%;
    height: 1px;
    background: #F3C622;
    transition: all 0.3s;
}

.btn-two:hover::after {
    content: '';
    background: #F8DF84;
}
.btn-two:active::after {
    content: '';
    background: #E5A500;
}

.section-about .btn-two:after{
    content: '';
    bottom: 0;
}

.section-kurs{
    padding: 120px 0 140px 0;
}

.bg-kor{
    background: #693928;
}
.bg-ser{
   background: #F5F5F5;
}
.bg-white{
    background: #FFF;
}
.bg-yellow{
    background: #F3C622;
}

.kurs-block{
    text-align: center;
}

.kurs-block img{
    margin: 0 auto 20px auto;
}

.subtitle-kurs{
    font-weight: 400;
    font-size: 14px;
    line-height: 25px;
    text-align: center;
    color: #9D9D9D;
    margin-bottom: 10px;
}

.text-kurs{
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    text-align: center;
    color: #333333;
    margin-bottom: 10px;
}

.kurs-consultation{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 100px;
}

.kurs-consultation h2{
    margin-right: 50px;
    
}

.section-traditions{
    padding: 120px 0;
}

.section-traditions .btn-three{
    display: block;
    margin: 0 auto 50px auto;
}

.btn-three{
    padding: 7px 40px;
    border-radius: 30px;
    border: none;
    background: #9D9D9D26;
    color: #333333;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-three:hover{
    background: #F3C622;
    color: #fff;
}
.btn-three.active{
    background: #F3C622;
    color: #fff;
}
.btn-three:active{
    background: #E5A500;
    color: #fff;
}

.column .name{
    font-weight: 400;
    font-size: 20px;
    text-align: center;
    color: #333333;
    margin-bottom: 10px;
}

.column .date{
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    color: #9D9D9D;
}

.lineage-container {
  text-align: center;
  position: relative;
}

.center-top {
  margin-bottom: 40px;
  position: relative;
}

.center-top::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 105%;
  width: 1px;
  height: 220%;
  background: repeating-linear-gradient(
    to bottom,
    #aaa,
    #aaa 4px,
    transparent 4px,
    transparent 8px
  );
  transform: translateX(-50%);
}

.center-top img,
.teacher img,
.students img,
.bottom-image img{
    margin: 0 auto 10px auto;
}

.center-top .name{
    font-weight: 500;
    font-size: 24px;
    color: #333333;
    margin-bottom: 5px;
}

.center-top .date{
    font-weight: 400;
    font-size: 14px;
    color: #9D9D9D;
}

.title-traditions{
    font-weight: 500;
    font-size: 24px;
    text-align: center;
    color:#333333;
    margin-bottom: 25px;
}

.columns {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
}

.column {
  width: 45%;
  min-width: 300px;
  padding: 10px;
  position: relative;
}

.teacher {
  position: relative;
  margin-bottom: 30px;
}

.teacher::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -30px;
  width: 1px;
  height: 25px;
  background: repeating-linear-gradient(
    to bottom,
    #aaa,
    #aaa 4px,
    transparent 4px,
    transparent 8px
  );
  transform: translateX(-50%);
}

.students {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.students::before {
  content: "";
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    #aaa,
    #aaa 4px,
    transparent 4px,
    transparent 8px
  );
}

.student {
  width: 30%;
  min-width: 100px;
  position: relative;
  padding-top: 30px;
}

.student::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  height: 15px;
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    #aaa,
    #aaa 4px,
    transparent 4px,
    transparent 8px
  );
  transform: translateX(-50%);
}

/* Стрелка вниз */
.student::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
}

.period {
    color: #fff;
    background: #7D9000;
    padding: 10px 26px;
    width: 100%;
    max-width: 168px;
    display: block;
    margin: 0 auto;
    position: relative;
}

.period::before {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  width: 2px;
  height: 30px;
  background: repeating-linear-gradient(
    to bottom,
    #aaa,
    #aaa 4px,
    transparent 4px,
    transparent 8px
  );
  transform: translateX(-50%);
}

/* Стрелка вниз */
.period::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
}

.bottom-image {
  position: relative;
}

.bottom-image::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 50%;
  width: 2px;
  height: 40px;
  background: repeating-linear-gradient(
    to bottom,
    #aaa,
    #aaa 4px,
    transparent 4px,
    transparent 8px
  );
  transform: translateX(-50%);
}

/* Стрелка к нижнему изображению */
.bottom-image::after {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  border-right: 2px solid #aaa;
  border-bottom: 2px solid #aaa;
}



.section-vse-kursy{
    padding: 120px 0;
}

.subtittle{
    font-weight: 600;
    font-size: 24px;
    text-transform: uppercase;
    color: #333333;
}

.text-white{
    color: #fff !important;
}
.text-yellow{
    color: #F3C622 !important;
}
.text-red{
    color: #FF5009 !important;
}
.text-green{
    color: #7D9000 !important;
}

.section-form-one{
    padding: 120px 0;
}

.section-form-one .title{
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
}

.section-form-one .btn-one{
    background: #F3C622 !important;
}
.section-form-one .btn-one:hover{
    background: #F8DF84 !important;
}
.section-form-one .btn-one:active{
    background: #E5A500 !important;
}

.form .input-form{
    padding: 18px;
    border-radius: 30px;
    width: 100%;
    max-width: 600px;
    height: 60px;
    margin: 0 auto 20px auto;
    border: none;
    display: block;
}

.form-btn p{
    font-weight: 400;
    font-size: 14px;
    color: #959595;
    width: 100%;
    max-width: 450px;
    margin: 25px auto 0 auto;
}

.form-btn a{
    text-decoration: underline;
    transition: all 0.3s;
    color: #959595;
}
.form-btn a:hover{
    color: #333333;
}

.form-wrapper{
    text-align: center;
}

.form{
    margin: 50px 0 80px 0;
}


.teacher-card {
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    height: 400px;
}

.teacher-card img{
    width: 100%;
}

.teacher-details {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 15px;
    transition: bottom 0.5s ease;
}

.teacher-details:before{
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    position: absolute;
    background-color: #000000;
    opacity: 0.5;
}

.teacher-details-content {
    z-index: 1;
    position: relative;
}

.teacher-details li {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    list-style: inside;
}
.teacher-details .li-title{
    font-weight: 600;
    font-size: 24px;
    text-align: center;
    color: #fff;
}
.teacher-details .li-btn{
    padding: 3px 0;
    text-align: center;
    border-radius: 30px;
    background: #FFFFFF1A;
    color: #fff;
    padding: 0 20px;
}

.section-obucheniye{
    padding: 120px 0 0 0;
}

.section-obucheniye .obucheniye-title-text{
    font-weight: 800;
    font-size: 18px;
    color: #333333;
}
.section-obucheniye .obucheniye-subtitle-text{
    font-weight: 400;
    font-size: 18px;
    color: #333333;
}

.btn-two.btn-white{
    color: #fff;
}
.btn-two.btn-white:hover{
    color: #333333;
}
.btn-two.btn-white:after{
    content: '';
    background: #FFF;
}
.btn-two.btn-white:hover:after{
    background: #333333;
}

.section-obucheniye img{
    margin: 0 auto;
}

.section-about{
    padding: 120px 0;
}

.section-about .about-title{
    font-weight: 700;
    font-size: 27px;
    color: #fff;
    margin-bottom: 15px;
}
.section-about .about-text{
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFFB2;
}

.section-about .btn-two{
    color: #fff;
}
.section-about .btn-two:hover{
    color: #F3C622;
}
.section-about .btn-two:after{
    content: '';
    background: #FFF;
}
.section-about .btn-two:hover:after{
    background: #F3C622;
}

.documenty-wrapper{
    background: #FFF;
    border-radius: 30px 0 0 30px;
    padding: 70px 0 70px 70px;
    margin-left: 155px;
}

.documenty-wrapper h3{
    font-weight: 700;
    font-size: 46px;
    color: #333333;
    margin-bottom: 35px;
}
.documenty-wrapper p{
    font-weight: 400;
    font-size: 16px;
    color: #333333;
}

.section-ucheniye{
    padding: 120px 0 0 0;
}

.section-ucheniye img{
    width: 100%;
    max-width: 860px;
}

.section-teachers{
    padding: 120px 0;
}

.section-teachers .accordion-button::after{
  flex-shrink: 0;
  width: 100%;
  height: auto;
  margin-left: 0;
  content: "Подробнее";
  background-image: none;
  color: #fff;
}

.section-teachers .accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.section-teachers .accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: none;
  content: "Скрыть";
}

.section-teachers .accordion-button{
    background: transparent;
    text-align: center;
}

.section-teachers .accordion-button:not(.collapsed) {
  color: #fff;
  background-color: transparent;
  box-shadow: none;
}

.section-teachers .accordion{
    --bs-accordion-border-color: transparent;
    --bs-accordion-bg: transparent;
}

.section-faq .accordion-button:not(.collapsed) {
  color: #333333;
  background-color: transparent;
  box-shadow: none;
}
.section-faq .accordion-item {
  color: #333333;
  background-color: transparent;
  border: none;
}
.section-faq .accordion-button::after {
  flex-shrink: 0;
  margin-left: auto;
  content: "";
  background-repeat: no-repeat;
  background-size: 24px;
  width: 45px;
  height: 45px;
  border: 1px solid #333;
  border-radius: 50%;
  background-position: center;
  background-color: transparent;
  color: #fff;
}
.section-faq .accordion-button:not(.collapsed)::after {
  background-color: #F3C622;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  border-color: #F3C622;
}
.section-faq .accordion-button:focus,
.section-faq .accordion-button:active{
    box-shadow: none;
}

.section-faq .accordion-button{
    font-weight: 600;
    font-size: 25px;
}
.section-faq .accordion-body{
    font-weight: 400;
    font-size: 20px;
}

.section-faq{
    padding: 120px 0;
}

.ucheniye-title{
    font-weight: 700;
    font-size: 40px;
}
.ucheniye-text{
    font-weight: 400;
    font-size: 16px;
    color: #333333;
}

.section-ucheniye img{
    width: 100%;
    margin: 0 auto;
}

.section-form-two{
   padding: 120px 0;
}

.form-subtitle{
    font-weight: 700;
    font-size: 32px;
    color: #333333;
    margin: 0 0 25px 0;
}

.oplata-block{
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 430px;
}

.oplata-block p{
    font-weight: 500;
    font-size: 24px;
    color: #333333;
}

.oplata-block img{
    margin: 0 15px 0 0;
    width: 48px;
    height: 48px;
}

.image-form-icon{
    margin: 0 auto 60px auto;
}

.section-form-two .form .input-form{
    margin: 0 0 20px 0;
}

.section-form-two .form-btn p{
    text-align: center;
    max-width: 460px;
}

.section-form-two .form{
    margin: 100px 0 80px 0;
}

.ml-60{
    margin-left: 60px;
}

.section-yog{
    padding: 120px 0;
}

.section-yog img{
    margin: 0 auto 35px auto;
}

.yog-block{
    border: 1px solid #000000;
    border-radius: 20px;
    padding: 50px;
}

.yog-block p{
    height: 100%;
    min-height: 150px;
}

.section-video{
    padding: 120px 0;
}

.text-video{
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    width: 100%;
    max-width: 400px;
}

.video-sec-icon{
    display: flex;
    justify-content: end;
    margin-right: 80px;
}

.footer{
    background: #333333;
    padding: 120px 0;
}

.footer-item{
    margin-bottom: 20px;
}

.footer-item a,
.footer-item button{
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    transition: all 0.3s;
    background: transparent;
    border: none;
    padding: 0;
}

.footer-item a:hover,
.footer-item button:hover{
    color: #9D9D9D;
}

.swiper-button-prev{
  content: "";
  background-image: url('/image/chevron-left.svg');
  background-repeat: no-repeat;
  background-size: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-position: center;
  background-color: #E0E0E0;
}
.swiper-button-next{
  content: "";
  background-image: url('/image/chevron-left.svg');
  background-repeat: no-repeat;
  background-size: 12px;
  transform: rotate(180deg);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-position: center;
  background-color: #E0E0E0;
  transition: all 0.3s;
}
.swiper-button-prev:hover,
.swiper-button-next:hover{
    background-color: #DEA801;
}

.slide-btn-left,
.slide-btn-right{
    position: absolute;
    top: 50%;
    z-index: 99;
}
.slide-btn-left{
    left: 0;
}
.slide-btn-right{
    right: 0;
}
.slide-modal-left,
.slide-modal-right{
    position: absolute;
    top: 45%;
    z-index: 99;
}
.slide-modal-left{
    left: 145px;
}
.slide-modal-right{
    right: 145px;
}
.slide-photo-left,
.slide-photo-right{
    position: absolute;
    top: 55%;
    z-index: 99;
}
.slide-photo-left{
    left: 0;
}
.slide-photo-right{
    right: 0;
}

.img-two-slide{
    display: none;
}

.kurs-card li{
    font-weight: 400;
    font-size: 15px;
    color: #4B4B4B;
    list-style: inside;
}

.kurs-card .slide-subtitle{
    font-weight: 600;
    font-size: 32px;
    text-transform: uppercase;
    color: #333333;
}
.sec-slide-kurs{
    padding: 0 135px;
}

.kurs-card-info{
  width: 100%;
  max-width: 300px;
  margin: 0 0 0 auto;
}

.plr{
    padding: 0 135px;
}

.prepodavateli-swiper{
    padding: 0 50px;
}

.breadcrumb ul{
    display: flex;
    align-items: center;
    padding: 100px 0 20px 0;
}

.breadcrumb ul li{
    font-weight: 400;
    font-size: 14px;
    color: #9D9D9D;
    margin-right: 10px;
}

.breadcrumb ul li a{
    font-weight: 400;
    font-size: 14px;
    color: #9D9D9D;
}

.breadcrumb ul li a:hover{
    transition: all 0.3s;
    color: #333333;
}

.btn-devi-gida{
    width: 100%;
    max-width: 180px;
    position: relative; 
    top: -40px;
    margin: 0 auto;
}

.section-devi-gida p{
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    margin-bottom: 15px;
}
.section-devi-gida span{
    font-weight: 600;
}
.section-devi-gida li{
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    list-style-type: disc;
    margin-bottom: 15px;
}

.padding{
    padding: 0 80px;
}

.button-wrapper{
    display: flex;
    justify-content: space-between;
}
.swiper-pagination{
    position: relative;
}
.swiper-pagination.active:before{
    content:'';
    position: absolute;
    height: 2px;
    width: 100%;
    bottom: -10px;
    left: 0;
    background: #F3C622;
}

.photogalery .swiper-slide img{
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.photogalery .swiper-slide-active img{
    transform: scale(1.2);
    height: 300px;
}

.section-galery{
    padding: 120px 0;
}

.politica-wrapper p{
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    margin-bottom: 15px;
}

.politica-wrapper{
    padding: 0 0 120px 0;
}

.forma-modal .wrapper-form .input-form{
    background: #F5F5F5;
}

.forma-modal .modal-header{
    display: block !important;
    text-align: center;
    border-bottom: none;
}

.forma-modal .modal-header button{
    float: right;
}

.modal-header .modal-title{
    font-weight: 600;
    font-size: 32px;
    color: #333333;
}

.modal-header p{
    font-weight: 400;
    font-size: 16px;
    color: #9D9D9D;
}

.forma-modal .wrapper-form .form{
    margin: 0;
}

.forma-modal{
    border-radius: 50px;
    padding: 20px;
}

.two-colum p,
.two-colum li{
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    margin-bottom: 15px;
}
.two-colum span,
.two-colum li span{
    font-weight: 500;
    font-size: 16px;
    color: #333333;
}

.two-colum li{
    list-style: disc;
}

.two-colum {
  display: flex;
  gap: 20px;
}
.colum {
  flex: 1;
}

.modal-img{
    margin: 30px auto 0 auto;
}

.width-wrapper{
    max-width: 940px;
}

.block-kurs{
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.block-kurs p{
    font-weight: 400;
    font-size: 16px;
    color: #333333;
    margin-left: 10px;
}

.block-schedule{
    background: #F5F5F5;
    text-align: center;
    border-radius: 15px;
    padding: 10px 20px;
}

.block-schedule P{
    font-weight: 400;
    font-size: 16px;
    color: #424242;
    margin-bottom: 10px;
}

.title-block-modal{
    font-weight: 500;
    font-size: 20px;
    color: #333333;
    margin-bottom: 20px;
}

.block-programm{
    background: #F5F5F5;
    border-radius: 15px;
    padding: 10px 20px;
    margin-bottom: 30px;
}

.subtitle-modal{
    font-weight: 400;
    font-size: 16px;
    text-transform: uppercase;
    color: #BE0014;
}

.modal-documenty .swiper-slide img{
    width: 100%;
    object-fit: contain;
    height: 340px;
}

.padding-modal-swiper{
    padding: 0 180px;
}

.icon-calendar{
  position: absolute;
  right: 25px;
  top: 18px;
}

.file-input{
    position: absolute;
    opacity: 0;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.file-input:hover{
    cursor: pointer;
}

.file-upload{
    border: 2px dashed #C4C4C4;
    border-radius: 15px;
    text-align: center;
    padding: 15px 20px;
    margin-bottom: 30px;
    position: relative;
}

.file-upload-name{
    font-weight: 600;
    font-size: 16px;
    text-decoration: underline;
    color: #F3C622;
}

.file-upload-filename{
    font-weight: 500;
    font-size: 14px;
    color: #9D9D9D;
}

.file-upload img{
    margin: 0 auto 10px auto;
}

.grant-priz{
    background: #F5F5F5;
    border-radius: 30px;
    padding: 10px;
    color: #7D9000;
    width: 100%;
    max-width: 210px;
    margin: 0 auto 20px auto;
}

.btn-close:focus{
    box-shadow: none;
}

.video-block video{
    width: 100%;
}

.wrapper-price .btn-one{
  max-width: 260px;
}

.wrapper-price .price-modal-subtitle{
    font-weight: 400;
    font-size: 20px;
    color: #333333;
    margin-bottom: 15px;
    text-align: center;
}
.wrapper-price .price-modal-subtitle span,
.wrapper-price-bg .price-modal-subtitle span{
    font-weight: 700;
    font-size: 20px;
    color: #333333;
}

.wrapper-price .icon-association{
    margin: 0 auto 10px auto;
}

.wrapper-price-bg{
    background: #BE00141A;
    border-radius: 15px;
    text-align: center;
    padding: 30px 0;
    margin-bottom: 20px;
}

.wrapper-price-bg .price-modal-subtitle{
    font-weight: 400;
    font-size: 20px;
    color: #333333;
    text-align: center;
    margin-bottom: 20px;
}

.wrapper-price-bg .btn-one{
    max-width: 260px;
}

.wrapper-price .block-kupon{
    position: absolute;
    z-index: 2;
    top: 5%;
    left: 20%;
}

.title-error{
    font-size: 140px;
}

.section-error{
    padding: 125px 0;
}

.description{
    font-size: 18px;
}

.colum-doc p{
    margin-bottom: 10px;
}

.colum-doc a{
    font-weight: 400;
    font-size: 16px;
    color: #9D9D9D;
    transition: all 0.3s;
}

.colum-doc a:hover{
    color: #F3C622;
}

svg a{
    cursor: pointer;
}



    

  

  
  

  
