.oswald {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}


.open-sans {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

:root {
  --font-primary: "Open Sans", sans-serif;
  --font-accent: "Oswald", sans-serif;

  --color-primary: #3498db;
  --color-secondary: #8b554c;
  --color-accent: #3d7185;
  --color-gray: #f9f9f9;
  --color-light: #f5f0eb;
  --color-text: rgba(64, 64, 64, 1);
  --color-white: #fff;
  --color-h1: rgb(57, 110, 133);
  --color-h2: rgba(87, 84, 84, 1);
  --color-btn-bg: #396e85;
  --color-link: #8B4513;
  --color-link-hover: #333333;
  --color-bg-light: #f5f5f5;
}

body {
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--color-text);
}

h1, h2, .heading {
  font-family: var(--font-accent);
  font-weight: 500;
}
h1{
  color: var(--color-h1);
  letter-spacing: 0.15em;
  font-size: 60px;
}
h2{
  color: var(--color-h2);
}
.p-60{
  padding: 60px 0;
}
.p-rem{
  padding: 1.5rem;
}
.flex{
  display: flex;
}
.content-center{
  justify-content: center;
}
.column{
  flex-direction: column;
}
a{
  color: var(--color-link);
  transition: all 0.5s;
}
a:hover{
  color: var(--color-link-hover);
  transition: all 0.5s;
}
.btn{
  box-sizing: border-box;
  display: inline-block;
  min-width: 50px;
  max-width: 100%;
  text-align: center;
  word-wrap: break-word;
  word-break: break-word;
  line-height: 1.42857143;
  padding: 5px 0;
  transition: border .1s,background .3s;
  position: relative;
  z-index: 0;
  font-weight: 700;
  padding: 10px 25px;
}
.btn-blue{
  border: 1px solid #000;
  background-color: var(--color-btn-bg);
  color: var(--color-white);
}
.btn-blue:hover{
  background-color: var(--color-white);
  color: var(--color-text);
  transition: border .1s,background .3s;
}
.btn-transparent{
  border: 1px solid ver(--color-text);
  background-color: transparent;
  color: var(--color-text);
}
.btn-transparent:hover{
  background-color: var(--color-btn-bg);
  color: var(--color-white);
  transition: border .1s,background .3s;
}
header{
  width: 100%;
  z-index: 16;
  position: relative;
  padding-left: 65px;
  padding-right: 65px;
  background-color: rgb(255,255,255);
  box-sizing: border-box;
  font-family: var(--font-accent);
  position: fixed;
  top: 0;
}
header a{
  text-decoration: none;
  color: var(--color-text);
}
header .logo a:hover{
  color: var(--color-text);
}
.header-right{
    justify-content: center;
  }
.logo-text{
  display: flex;
  align-items: center;
  height: 100%;
}
/* ----- Базовые сбросы ----- */
.md-menu{
  width: auto !important;
}
.md-menu .menu-list,
.md-menu .menu-list ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.md-menu .menu-list,
.md-menu .menu-list ul:last-child{
  right: 0;
}
.md-menu a,
.md-menu span {
    text-decoration: none;
    display: block;
    padding: 10px 16px;
    color: #333;
    transition: 0.2s;
}
.md-menu .menu-list li {
    position: relative;
}

/* ----- Десктоп (≥992px) ----- */
@media (min-width: 992px) {
    .burger {
        display: none;
    }
    .md-menu .menu-list > li {
        display: inline-block;
    }
    /* Подменю скрыто */
    .md-menu .menu-list li ul {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.2s ease;
        z-index: 100;
    }
    /* Показываем подменю у .has-children при наведении */
    .md-menu .menu-list li.has-children:hover > ul {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .md-menu .menu-list li ul li {
        display: block;
    }
    .md-menu .menu-list li ul li a,
    .md-menu .menu-list li ul li span {
        padding: 8px 16px;
    }
    .md-menu .menu-list li a:hover,
    .md-menu .menu-list li span:hover {
        background-color: #f0f0f0;
    }
    .md-menu .menu-list .active > a {
        background-color: #e7e7e7;
        font-weight: bold;
    }
}

/* ----- Мобильная версия (<991px) ----- */
@media (max-width: 991px) {
    .burger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        margin: 16px;
        padding: 0;
        z-index: 101;
    }
    .burger span {
        display: block;
        width: 100%;
        height: 3px;
        background: #333;
        border-radius: 2px;
        transition: 0.2s;
    }
    .md-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%;
        max-width: 300px;
        height: 100%;
        background: #fff;
        box-shadow: 2px 0 12px rgba(0,0,0,0.2);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    .md-menu.open {
        transform: translateX(0);
    }
    .md-menu .menu-list {
        padding: 60px 0 20px 0;
    }
    .md-menu .menu-list > li {
        display: block;
    }
    /* На мобильных подменю скрыто, пока у li нет .open */
    .md-menu .menu-list li ul {
        display: none;
        padding-left: 16px;
        background: #fafafa;
    }
    .md-menu .menu-list li.open > ul {
        display: block;
    }
    .md-menu a,
    .md-menu span {
        padding: 12px 20px;
        border-bottom: 1px solid #eee;
    }
    /* Стрелка у родительских пунктов */
    .md-menu .menu-list li.has-children > .parent-item {
        position: relative;
    }
    .md-menu .menu-list li.has-children > .parent-item::after {
        content: "▼";
        font-size: 12px;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.2s;
    }
    .md-menu .menu-list li.has-children.open > .parent-item::after {
        transform: translateY(-50%) rotate(180deg);
    }
}

.search{
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.minicart{
  width: 60px;
  display: flex;
  align-items: center;
}
.minicart span{
  padding-left: 6px;
}
.hero{
  height: 100vh;
  background-image: url(../img/hero-img.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  position: relative;
}
.hero-title{
  position: absolute;
  background-color: rgba(143, 113, 83, 0.57);
  bottom: 100px;
  left: 5%;
  padding: 10px 25px;
  line-height: 1.4em;
}
.hero-title h2{
  color: var(--color-white);
}
.bg-warm{
  background-color: var(--color-light);
}
.bg-dark{
  background-color: var(--color-secondary) !important;
  color: var(--color-white);
}
.bg-dark h2{
  color: var(--color-white);
}
.bg-gray{
  background-color: #f8f8f8;
}
.who-main__img{
  width: 100%;
  height: 100%;
}
.who-main__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s;
}
.who-main__img img:hover{
  transform: scale(1.07);
  transition: transform 1s;
}
.kurs-title{
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 10px;
}
.kurs-title span{
  font-size: 30px;
  color: var(--color-white);
  font-family: var(--font-accent);
}
input{
  height: 51px;
  color: #4c4c4c;
  padding: 0 25px;
  outline: 0 none;
  background-color: var(--color-white);
  border: 1PX solid var(--color-link-hover);
  border-radius: 10px;
}
select{
  height: 44px;
  color: #4c4c4c;
  padding: 0 25px;
  text-align: center;
  outline: 0 none;
  background-color: var(--color-white);
  border: 1PX solid var(--color-link-hover);
  border-radius: 10px;
  position: relative;
}

/* -- Footer -- */
footer{
  background-color: var(--color-light);
}
.social-icons{
  display: flex;
  gap: 20px;
  justify-content: center;
}
.decoration{
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.footer-btn{
  margin-bottom: 20px;
}
.footer-menu{
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
  flex-direction: column;
  list-style: none;
  padding: 0;
  font-weight: 700;
  text-transform: uppercase;
}
.footer-menu a{
  text-decoration: none;
  color: #6e6e6e;
  transition: color 0.5s;
}
.footer-menu a:hover{
  color: black;
  transition: color 0.5s;
}
.footer-text{
  font-size: 12px;
  column-gap: 10px;
  letter-spacing: 0.15em;
  line-height: 1.5;
  margin-bottom: 20px;
}
.footer-text span{
  color: var(--color-secondary);
  font-size: 15px;
  font-weight: 500;
}
.footer-text p{
  margin-bottom: 0.15em;
}
.footer-image{
  width: 100%;
  height: 100%;
}
.footer-image img{
  width: 100%;
  object-fit: cover;
  transition: transform 1s;
}
.footer-image img:hover{
  transform: scale(1.07);
  transition: transform 1s;
}
.footer-block a{
  color: var(--color-link);
  text-decoration: none;
}
.footer-block a:hover{
  color: var(--color-link-hover);
}
.footer-contacts__data{
  font-size: 30px;
  font-family: var(--font-accent);
}
.footer-bottom p{
  font-size: 12px;
  margin-bottom: 5px;
}
.hero-lesson{
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  background-repeat: no-repeat;
}
.hero-lesson .container-fluid,.hero-lesson__grid{
  height: 100%;
}
.hero-lesson__title{
  background-color: var(--color-secondary);
  padding: 10px;
}
.hero-lesson__title h1{
  color: var(--color-white);
}
.hero-bg{
  background-color: var(--color-white);
}
.hero-bg__title{
  font-size: 30px;
  color: var(--color-secondary);
  font-family: var(--font-accent);
  font-weight: 700;
}
.hero-bg__title p{
  margin-bottom: 0;
}
.hero-bg__title .span{
  color: var(--color-accent);
}
.hero-bg__text{
  color: var(--color-secondary);
  padding: 10px 40px;
  font-weight: 300;
}
.utp-title{
  text-align: center;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 2;
  color: var(--color-h2);
}
.utp-line{
  width: 10%;
  margin: 10px auto 0;
}
.utp-img{
  text-align: center;
  margin-bottom: 20px;
}
.utp-span{
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 18px;
}
.utp-borders{
  border-left: 1px solid rgba(87, 84, 84, 1);
  border-right: 1px solid rgba(87, 84, 84, 1);
  padding: 0 20px;
}
.content-img img{
  width: 100%;
}
.light-bg{
  background-color: var(--color-bg-light);
}
.light-bg span{
  font-size: 32px;
  font-weight: 500;
  color: var(--color-link);
}
.light-bg__img{
  text-align: center;
}
.col-4:nth-child(2) .how-item,.col-4:nth-child(5) .how-item,.col-4:nth-child(8) .how-item{
  border-left: 1px solid rgba(87, 84, 84, 1);
  border-right: 1px solid rgba(87, 84, 84, 1);
  padding: 0 20px;
  margin-bottom: 80px;
}
.price-item{
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.price-item__header{
  background-color: var(--color-link);
  color: var(--color-white);
  font-family: var(--font-accent);
  font-weight: 500;
  font-size: 20px;
  padding: 15px;
  margin: 15px 0;
  width: 100%;
  text-align: center;
  text-transform: uppercase;
}
.price-item__price{
  font-weight: 800;
  letter-spacing: 0.15em;
  padding: 15px;
  text-transform: uppercase;
}
.price-item__txt{
  background-color: var(--color-light);
  padding: 15px;
  margin: 15px 0;
  height: 100%;
}
.price-item__order{
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.page-prepod-title{
  background-color: rgba(138, 84, 75, 0.3);
  padding: 10px 300px;
  text-align: center;
  column-gap: 10px;
  letter-spacing: 0.3em;
  line-height: 1.2;
  font-family: var(--font-accent);
  font-size: 40px;
  color: var(--color-secondary);
}
.target-img{
  text-align: center;
  margin-bottom: 60px;
}
.target-img img{
  width: 70%;
}
.textpage-header{
  border: 1px solid var(--color-secondary);
  width: max-content;
  padding: 10px;
  margin: 0 auto;
}
.textpage-header h1{
  color: var(--color-h2);
  font-size: 30px;
  letter-spacing: 0em;
  font-weight: 500;
}
.elena-word__img{
  overflow: hidden;
  border-radius: 50%;
  width: 260px;
  height: 260px;
  margin: 0 auto;
}
.elena-word__img img{
  width: 100%;
}
.kurs-items{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
.form-group{
  margin-bottom: 15px;
}
.form-group .btn{
  margin: 0 auto;
  display: flex;
}
.checkbox{
  display: flex;
}
.checkbox label{
  display: flex;
  align-items: center;
  margin: 0 auto;
  font-size: 12px;
}
.checkbox label input{
  margin-right: 6px;
  font-size: 14px;
}
.checkbox a{
  color: var(--color-white);
  text-decoration: underline;
  padding-left: 6px;
}
.checkbox a:hover{
  text-decoration: none;
}
.kurs-item-main{
  position: relative;
  height: 100%;
}
.kurs-item-main img{
  transition: transform 1s;
}
.kurs-item-main:hover img{
  transform: scale(1.07);
  transition: transform 1s;
}
.kurs-item-main .btn{
  position: absolute;
  bottom: 0;
  width: 100%;
}
.kurs-item__desc{
  margin-bottom: 80px;
}
.tadz-hero{
  max-height: 800px;
  height: 100vh;
}
.tadz-title{
  margin: 0 auto;
  margin-bottom: 100px;
}
.tadz-img{
  width: 100%;
  height: 751px;
  text-align: center;
}
.tadz-img img{
  transition: transform 1s;
  max-width: 555px;
}
.tadz-img:hover img{
  transform: scale(1.07);
  transition: transform 1s;
}
.tadz-kurs-items .kurs-item{
  padding: 20px 0;
  height: 100%;
  min-height: 353px;
}
.kurs-item__header{
  color: var(--color-link);
  text-align: center;
  padding-bottom: 20px;
  font-family: var(--font-accent);
  font-size: 30px;
}
.p-span{
  color: var(--color-link);
  font-size: 30px;
  font-family: var(--font-accent);
}
.p-font{
  color: var(--color-link);
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 500;
}
.p-color{
  color: var(--color-link);
  font-weight: 500;
}
.tadz-item__img{
  text-align: center;
}
.tadz-item__img img{
  width: 100%;
  max-width: 731px;
  transition: transform 1s;
}
.tadz-item__img:hover img{
  transform: scale(1.07);
  transition: transform 1s;
}
.tadz-item__desc{
  margin: 40px auto;
  text-align: center;
}
.tadz-item .btn,.egypt-item .btn{
  margin: 0 auto;
  width: 262px;
  display: block;
  text-align: center;
}
.egypt-item__img{
  text-align: center;
  max-width: 390px;
  max-height: 537px;
}
.egypt-item__img img{
  width: 100%;
  max-width: 390px;
  transition: transform 1s;
}
.egypt-item__img:hover img{
  transform: scale(1.07);
  transition: transform 1s;
}
.egypt-item__desc{
  margin: 20px auto;
}
.kurs-item{
  padding: 20px 0px;
  height: 100%;
  min-height: 353px;
}
.kurs-item:nth-child(2){
  width: 50%;
}
.egypt__img{
  max-width: 282px;
  width: 100%;
}
.egypt__img img{
  width: 100%;
  max-width: 282px;
  transition: transform 1s;
}
.egypt__img:hover img{
  transform: scale(1.07);
  transition: transform 1s;
}
.youtube-frame{
  margin: 40px 0;
}
.youtube-frame iframe{
  width: 100% !important;
  height: 500px !important;
}
.corp-item{
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 40px 0;
}
.corp-item__left{
  display: flex;
  flex-direction: column;
}
.corp-item__img{
  text-align: center;
  margin-bottom: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.teacher-item{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.teacher-item img{
  transition: transform 1s;
}
.teacher-item img:hover{
  transform: scale(1.07);
  transition: transform 1s;
}

.accordion-button::after {
  background-image: none !important;
  content: "\F64D";
  font-family: "bootstrap-icons" !important;
  font-size: 1.5rem;
  vertical-align: middle;
  transform: rotate(0deg);
  transition: transform 0.2s ease-in-out;
  position: relative;
}
.accordion-button:not(.collapsed){
  color: var(--color-link) !important;
  background-color: var(--color-gray) !important;
}
.accordion-button:not(.collapsed)::after {
  content: "\F63B";
  right: -5px;
  top: 8px;
}
.accordion-button{
  font-size: 1.3rem !important;
}

.form-main{
  background-image: url(../img/form-main-bg.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}
.form-main .container{
  height: 100%;
  position: relative;
}
.form-main .row{
  height: 100%;
}
.form-main .col-6{
  position: relative;
  height: 100%;
}
.form-main__block{
  background-color: var(--color-secondary);
  color: var(--color-white);
  margin-bottom: 20px;
}
.form-main__block h2{
  color: var(--color-white);
}
.form-main__form{
  background-color: var(--color-white);
}
.form-main__form .checkbox a{
  color: var(--color-link);
  transition: 0.5s;
}
.form-main__form .checkbox a:hover{
  color: var(--color-link-hover);
  transition: 0.5s;
}
.youtube-frame iframe{
  width: 100% !important;
  height: 380px !important;
}
.form-main-2{
  background-image: url(../img/form-main-bg-2.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}
.form-main-3{
  background-image: url(../img/form-main-bg-3.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
}
.about-img img{
  width: 100%;
}
/* =============================================
   Swiper — галерея
   ============================================= */

.gallery-swiper {
    padding: 0 0 3rem; /* место под точки */
    position: relative;
}

/* Картинка слайда */
.gallery-swiper .gallery-thumb {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    cursor: zoom-in;
    display: block;
    transition: opacity .2s ease;
}

.gallery-swiper .gallery-thumb:hover {
    opacity: .85;
}

/* Стрелки — цвет #8B4513 */
.gallery-swiper .swiper-button-prev,
.gallery-swiper .swiper-button-next {
    color: #8B4513;
    transition: color .2s ease;
}

.gallery-swiper .swiper-button-prev:hover,
.gallery-swiper .swiper-button-next:hover {
    color: #333333;
}

/* Точки пагинации */
.gallery-swiper .swiper-pagination-bullet {
    background: #8B4513;
    opacity: .4;
}

.gallery-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Лайтбокс */
#lightboxModal .modal-body img {
    max-height: 90vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/*==================================================
CHECKLIST FORM
==================================================*/

.checklist-items .checklist-form{
    position:relative;
    width:100%;
}

.checklist-items .checklist-body{
    position:relative;
    width:100%;
}

/*==================================================
PROGRESS
==================================================*/

.checklist-items .checklist-progress{
    margin:0 0 40px;
}

.checklist-items .checklist-progress-info{
    margin-bottom:15px;
    text-align:center;
}

.checklist-items .checklist-progress-title{
    display:inline-block;
    font-size:16px;
    font-weight:600;
}

.checklist-items .checklist-progress-line{
    position:relative;
    width:100%;
    height:8px;
    overflow:hidden;
    border-radius:10px;
    background:rgba(57,110,133,0.5);
}

.checklist-items .checklist-progress-bar{
    width:0;
    height:100%;
    transition:width .35s ease;
    background:var(--color-btn-bg);
}

/*==================================================
STEP
==================================================*/

.checklist-items .checklist-step{
    display:none;
}

.checklist-items .checklist-step.checklist-step-active{
    display:block;
}

.checklist-items .checklist-step h3{
    margin:0 0 30px;
    line-height:1.4;
    font-size:28px;
    font-weight:600;
}

.checklist-items .checklist-step p{
    margin-bottom:30px;
}

/*==================================================
INPUTS
==================================================*/

.checklist-items .form-group{
    margin-bottom:20px;
}

.checklist-items .form-control{
    width:100%;
}

.checklist-items textarea.form-control{
    resize:vertical;
}

/*==================================================
RADIO
==================================================*/

.checklist-items .checklist-radio-list{
    margin-bottom:20px;
}

.checklist-items .checklist-radio{
    margin-bottom:15px;
}

.checklist-items .checklist-radio:last-child{
    margin-bottom:0;
}

.checklist-items .checklist-radio label{
    display:flex;
    align-items:flex-start;
    cursor:pointer;
    margin:0;
    line-height:1.5;
}

.checklist-items .checklist-radio input{
    margin:5px 12px 0 0;
    flex-shrink:0;
}

/*==================================================
CHECKBOX
==================================================*/

.checklist-items .checklist-checkbox-list{
    margin-bottom:20px;
}

.checklist-items .checklist-checkbox-list .form-group{
    margin-bottom:15px;
}

.checklist-items .checklist-checkbox-list label{
    display:flex;
    align-items:center;
    cursor:pointer;
    margin:0;
    line-height:1.5;
}
.checklist-items .checklist-checkbox-list input{
    margin:5px 12px 0 0;
    flex-shrink:0;
}

/*==================================================
OTHER FIELD
==================================================*/

.checklist-items .checklist-other{
    display:none;
    margin-top:25px;
    padding-top:25px;
    border-top:1px solid #e9ecef;
}

.checklist-items .checklist-other.checklist-other-active{
    display:block;
}

/*==================================================
NAVIGATION
==================================================*/

.checklist-items .checklist-navigation{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-top:35px;
}

.checklist-items .checklist-navigation .btn{
    min-width:180px;
}

.checklist-items .checklist-prev{
    color:#6c757d;
    text-decoration:none;
}

.checklist-items .checklist-prev:hover{
    text-decoration:underline;
}
.checklist-items .checkbox a{
  color: var(--color-link);
  transition: all 0.5s;
}
.checklist-items .checkbox a:hover{
  color: var(--color-link-hover);
  transition: all 0.5s;
}

/*==================================================
ERRORS
==================================================*/

.checklist-items .checklist-step-error{
    display:none;
    margin-top:15px;
    color:#dc3545;
    font-size:14px;
}

.checklist-items .checklist-step-error.checklist-visible{
    display:block;
}

.checklist-items .checklist-field-error{
    display:block;
    margin-top:8px;
    color:#dc3545;
    font-size:14px;
}

.checklist-items .error{
    border-color:#dc3545;
}

/*==================================================
SUCCESS
==================================================*/

.checklist-items .checklist-success{
    text-align:center;
    padding:40px 20px;
}

.checklist-items .checklist-success h3{
    margin-bottom:20px;
}

.checklist-items .checklist-success p{
    margin-bottom:15px;
}

/*==================================================
CHECKBOX
==================================================*/

.checklist-items .checkbox{
    margin-top:20px;
}

.checklist-items .checkbox label{
    display:flex;
    align-items:flex-start;
    line-height:1.5;
    cursor:pointer;
}

.checklist-items .checkbox input{
    margin:5px 12px 0 0;
    flex-shrink:0;
}

/*==================================================
MOBILE
==================================================*/

@media (max-width:767px){

    .checklist-items .checklist-progress{
        margin-bottom:30px;
    }

    .checklist-items .checklist-step h3{
        font-size:22px;
        margin-bottom:25px;
    }

    .checklist-items .checklist-navigation{
        flex-direction:column-reverse;
        align-items:stretch;
    }

    .checklist-items .checklist-navigation .btn{
        width:100%;
        min-width:0;
    }

    .checklist-items .checklist-prev{
        text-align:center;
    }

}

/* Активные кнопки */
.historySwiper .swiper-button-next,
.historySwiper .swiper-button-prev {
    color: var(--color-link);
    transition: color .2s ease;
}

/* Цвет самой стрелки */
.historySwiper .swiper-button-next::after,
.historySwiper .swiper-button-prev::after {
    color: inherit;
    font-size: 24px; /* при необходимости можно изменить размер */
}

/* Наведение */
.historySwiper .swiper-button-next:hover,
.historySwiper .swiper-button-prev:hover {
    color: var(--color-link-hover);
}

/* Неактивные кнопки */
.historySwiper .swiper-button-disabled {
    color: var(--color-link-hover);
    opacity: 1;          /* убираем стандартное затемнение */
    cursor: default;
}

/* Чтобы при наведении на неактивную кнопку цвет не менялся */
.historySwiper .swiper-button-disabled:hover {
    color: var(--color-link-hover);
}

.hero-swiper img {
    width: 100%;
}
.card-img img{
  width: 100%;
}

/* Cart */
tr.cartRow td {
	vertical-align: middle;
}
tr.cartRow:hover {
	/*background-color: #FFFEF1;*/
}
tr.cartRow {
	height: 61px;
	border-bottom: 1px solid #E8EAED;
}
tr.cartRow:nth-child(odd){
	background-color: #FEFCFF;
}
tr.headerCart td {
	font-size: 14px;
	text-transform: uppercase;
	color: #3F3F3F;
	vertical-align: middle;
}
tr.headerCart {
	height: 30px;
	border-bottom: 1px solid #3c6299;
}
td.col0 {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 0 0 10px;
}
table.shopCart tr td.col2,
table.shopCart tr td.col3,
table.shopCart tr td.col4,
table.shopCart tr td.col5 {
	text-align: center;
}
input.cartItemCount {
  float: left;
  height: 26px;
  width: 34px;
  display: inline-block;
  margin: 0 5px;
  text-align: center;
}
tr.cartRow td div.counts {
  width: 100px;
  display: flex;
}
.cartTotal {
	text-align: right;
	float: right;
	margin-top: 20px;
}
.plus,
.minus {
	background-image: linear-gradient(-180deg, rgba(255,255,255,0.50) 0%, rgba(146,146,146,0.20) 99%, rgba(0,0,0,0.00) 100%);
	border: 1px solid #979797;
	border-radius: 3px;
	display: block;
	text-align: center;
	padding: 0 10px;
  height: 50px;
	font-size: 22px;
	color: black;
	float: left;
	text-decoration: none;
	cursor: pointer;
}
.plus:active,.minus:active,.plus:hover,.minus:hover {
	  background-image: linear-gradient(0deg, rgba(255,255,255,0.50) 0%, rgba(146,146,146,0.20) 99%, rgba(0,0,0,0.00) 100%);
}
.itemDel{
  width: 40px;
  height: 40px;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-size: 30px;
  background: transparent;
  padding: 0;
  transition: all 0.5s;
}
.itemDel i{
  color: var(--color-link-hover);
  transition: all 0.5s;
}
.itemDel i:hover{
  color: red;
  transition: all 0.5s;
}
/* куки алерт */
.cookie-alert {
    position: fixed;
    bottom: 20px;
    width: 90%;
    background: var(--color-light);
    color: var(--color-text);
    padding: 15px 20px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: 0.3s ease;
    z-index: 9999;
    margin-left: 5%;
    border-radius: 50px;
}
.cookie-alert.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.cookie-alert p {
    margin: 0;
    padding-right: 10px;
}
.cookie-alert a {
    color: var(--color-link);
    text-decoration: underline;
    transition: color 0.3s ease;
}
cookie-alert a:hover{
    color: var(--color-link-hover);
    transition: color 0.3s ease;
}
.cookie-alert{
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.cookie-alert .btn-green{
	margin-top: 20px;
}
/* куки алерт - the end */

@media (min-width:1200px){
	.btn{
		padding: 10px 15px;
		font-size: 14px;
	}
	.kurs-title span{
		font-size: 26px;
	}
}
@media (min-width:992px){
  .md-menu a, .md-menu span{
    font-size: 14px;
    padding: 10px;
  }
  .logo-text{
    font-size: 14px;
  }
  .btn{
		padding: 10px;
		font-size: 13px;
	}
  .kurs-title span{
		font-size: 24px;
	}
  .kurs-item__img{
    text-align: center;
  }
  .kurs-item__img img{
		width: 100%;
	}
  .egypt-item__img{
    margin: 0 auto;
  }
  .kurs-item-main{
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-accent);
  }
  .kurs-item-main .btn{
    position: relative;
  }
  .logo-text a{
    text-align: left;
  }
  .header-right{
    justify-content: flex-end;
  }
}
@media (min-width:276px){
  header{
    padding-left: 25px;
    padding-right: 25px;
  }
  .kurs-item__img{
    text-align: center;
  }
  .egypt-item{
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-accent);
  }
  .egypt-item__img{
    max-width: 100%;
  }
  .kurs-item-main{
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-accent);
  }
  .kurs-item-main .btn{
    position: relative;
  }
  .teacher-item__img img{
    width: 100%;
  }
  .footer-btn{
    text-align: center;
  }
  .footer-nav{
    text-align: center;
  }
  .footer-block{
    text-align: center;
  }
  .logo-text a{
    text-align: center;
    width: 100%;
  }
  .hero{
    height: 50vh;
  }
  .form-main-2,.form-main-3,.hero-lesson{
    height: 60vh;
    margin-top: 60px;
  }
  h1{
    font-size: 30px;
  }
  .utp-borders{
    border-left: none;
    border-right: none;
    padding: 20px 0;
    border-top: 1px solid rgba(87, 84, 84, 1);
    border-bottom: 1px solid rgba(87, 84, 84, 1);
    margin: 40px 0;
  }
  .kurs-item:nth-child(2){
    width: 100%;
  }
  .kurs-item,.tadz-kurs-items .kurs-item{
    width: 100%;
  }
  .hero-slider{
    margin-top: 70px;
  }
  .cont-img img{
    width: 100%;
  }
}
@media (min-width:1200px){
  .egypt-item{
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
  }
  .kurs-item-main{
    margin-bottom: 0px;
    padding-bottom: 0px;
    border-bottom: none;
  }
  .hero{
    height: 100vh;
  }
  .form-main-2,.form-main-3,.hero-lesson{
    height: 100vh;
    margin-top: 0;
  }
  h1{
    font-size: 3rem;
  }
  .utp-borders{
    border-top: none;
    border-bottom: none;
    padding: 0 20px;
    border-left: 1px solid rgba(87, 84, 84, 1);
    border-right: 1px solid rgba(87, 84, 84, 1);
    margin: 0;
  }
  .kurs-item:nth-child(2){
    width: 50%;
  }
  .kurs-item,.tadz-kurs-items .kurs-item{
    width: 33%;
  }
  .hero-slider{
    margin-top: 0;
  }
}