
* {
    padding: 0;
    margin: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 1vw;
}

body {
    font-family: 'Museo Sans Cyrl';
}

a {
    color: inherit;
    font: inherit;
    text-decoration: none;
}

.container h1,
.container h2,
.popup-form__wrapper h2 {
    color: #292c3d;
    font-size: 3rem;
    font-weight: 700;
    line-height: 3.3rem;
    position: relative;
}

.container h2 {
    margin-bottom: 2.7rem;
}

.container h1::before {
    content: "";
    height: 3rem;
    width: 2rem;
    left: -3.5rem;
    position: absolute;
    top: 0.2rem;
    z-index: 10;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../images/visually/header-element.svg);
}

.container h2::before {
    content: "";
    height: 3rem;
    width: 2rem;
    left: -3.5rem;
    position: absolute;
    top: 0.2rem;
    z-index: 10;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../images/visually/header-element.svg);
}

.container h6 {
    font-size: 1.1rem;
}

.container h2>span {
    font-size: 3rem;
    font-weight: 700;
    line-height: 3.3rem;
}

.pinkColor {
    color: #fd3c76;
}


.container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
    padding: 3rem 0;
    width: 86.11rem;
}

.wrapper {
    max-width: 1180px;
    padding: 0 15px;
    width: 100%;
    margin: 0 auto;
}

.cookie-consent {
  position: fixed;
  bottom: 120px;
  right: 20px;
  background-color: #2c2c2c;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  max-width: 320px;
  width: calc(100% - 40px);
  text-align: left;
  z-index: 9999;
  display: none;
}

.cookie-consent p {
 margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 300;
}

.cookie-consent a {
  text-decoration:underline;
}

.cookie-consent button {
  background: linear-gradient(150deg, #005DFF, #0038FF);
  color: white;
  border: none;
  padding: 9px 16px;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
    transition: background-color 0.2s ease;
}

.cookie-consent button:hover {
  background-color: #005fa3;
}
@media (max-width: 480px) {
  .cookie-consent {
    left: 10px;
    bottom: 10px;
    padding: 15px;
    font-size: 13px;
    width: calc(100% - 20px);
  }

  .cookie-consent button {
    width: 100%;
    padding: 10px;
    font-size: 14px;
  }
}

.page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
}

.butn {
    background: -o-linear-gradient(300deg, #005DFF, #0038FF);
    background: linear-gradient(150deg, #005DFF, #0038FF);
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 1.11rem;
    font-weight: 700;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding: 1.4rem 1.7rem;
    text-align: center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.butn:hover {
    background: -o-linear-gradient(300deg, #0038FF, #005DFF);
    background: linear-gradient(150deg, #0038FF, #005DFF);
}

.butn--pink {
    background: -o-linear-gradient(300deg, #FD3C76, #E92862);
    background: linear-gradient(150deg, #FD3C76, #E92862);
}

.butn--pink:hover {
    background: -o-linear-gradient(300deg, #E92862, #FD3C76);
    background: linear-gradient(150deg, #E92862, #FD3C76);
}

/* Шапка сайта */

.navigation {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation__section {
    display: none;
    bottom: 0;
    left: 0;
    min-height: 100vh;
    overflow-y: auto;
    position: fixed;
    right: 0;
    top: 0;
    width: 100vw;
    z-index: 900;
}

.logo-icon {
    width: 4.25rem;
    height: 3.18rem;
}

.header-logo__name {
    font-size: 0.8rem;
    line-height: normal;
    font-weight: 700;
    width: 15rem;
    margin-left: 1rem;
}

.header {
    background-color: #fff;
    border-bottom: 1px solid #ededed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    font-size: 2.9rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 100;
}

.header__section {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-right: 0.05rem solid #ededed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1.2rem 0.85rem;
}

.header__section-logo {
    border-right: none;
}

.header__section-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header__section-center .social {
    position: static;
}

.header__section-phone {
    width: 23.1rem;
    border-left: 0.05rem solid #ededed;
    padding: 1.2rem 2rem;
}

.header__logo {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header__nav {
    padding: 0;
    margin: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.header__nav li {
    width: 100%;
    position: relative;
}

/* Выпадающие списки */

.dropdown-menu {
    display: none;
}

.dropdown-menu {
    padding: .5rem 0;
    border-radius: 0 0 5px 5px;
    position: absolute;
    background-color: #fff;
    -webkit-box-shadow: 0 0.27rem 1.388rem rgba(33, 95, 255, .15);
    box-shadow: 0 0.27rem 1.388rem rgba(33, 95, 255, .15);
}

.dropdown-menu ul {
    border-radius: 0 0 5px 5px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.dropdown-menu ul li {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.dropdown-menu ul li a:hover {
    color: #0038FF;
}

.dropdown-menu ul li a {
    border: 0;
    color: #24242e;
    padding: .8rem 1.5rem;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.header__nav li a {
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    border-left: 0.05rem solid #ededed;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1.2rem 0.85rem;
    position: relative;
}

/* .header__nav li a:after {
    content: "";
    background-color: #005DFF;
    width: 0;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 350ms ease-in-out;
} */

/* .header__nav li a:hover:after {
    width: 100%;
} */

.header__actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header__action-item {
    border-right: 1px solid #ededed;
    cursor: pointer;
    width: 6.4rem;
}

.header__action-item svg {
    width: 1.7rem !important;
}

.header__action-item svg {
    width: 2.7rem !important;
}

.header__action-item:hover svg path {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    fill: #005DFF;
}

.applicant__phone-container {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-decoration: none;
}

.applicant__phone-container span {
    color: #292c3d;
    font-size: 1.1rem;
    line-height: 20px;
    margin-bottom: 0.45rem;
}

.applicant__phone-container:hover h6 {
    color: #005DFF;
}

.applicant__phone-container h6 {
    font-size: 1.66rem;
    font-weight: 700;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}


/* форма заявки */
.popup {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100vh;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    left: 0;
    overflow: auto;
    position: fixed;
    top: 0;
    width: 100vw;
    z-index: 999;
    background: rgba(0, 0, 0, .5);
}

.popup-content {
    border-radius: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    padding: 2rem;
    position: relative;
}

.popup-close {
    display: block;
    background: url(../images/visually/close_btn.svg) no-repeat;
    background-size: contain;
    cursor: pointer;
    height: 1rem;
    opacity: .8;
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    -webkit-transition: opacity .2s ease-in-out;
    -o-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out;
    width: 1rem;
	padding:7px;
	z-index:10;
}

.popup-form {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.popup-form__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 27.7rem;
}

.popup-title {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    width: 50rem;
	font-weight: 600;
	font-size: 40px;
}

.popup-input__wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.popup-input__wrapper span {
    background: #fff;
    bottom: -0.6rem;
    color: #8a8a93;
    font-size: 1rem;
    font-weight: 500;
    left: 0.8rem;
    padding: 0 0.4rem;
    position: relative;
    -webkit-transition: all .09s linear;
    -o-transition: all .09s linear;
    transition: all .09s linear;
}

.popup-content input {
    border: 1px solid #cacace;
    border-radius: 2px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.11rem;
    padding: 1rem 1.2rem;
    width: 100%;
}

.popup-content input:hover {
    border: 1px solid #80bdff;
}

.popup-content input:focus {
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.popupcheckbox {
    width: 100%;
    margin-top: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 1.66rem 0;
}

.check_box {
    width: 260px;
    position: relative;
}

.custom-checkbox {
    position: absolute;
    z-index: -1;
    opacity: 0;
}

.custom-checkbox+label {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 0.9rem;
}

.custom-checkbox+label::before {
    content: '';
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    border: 1px solid #adb5bd;
    border-radius: 0.25em;
    margin-right: 0.5rem;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50% 50%;
}

.custom-checkbox:not(:disabled):not(:checked)+label:hover::before {
    border-color: #b3d7ff;
}

.custom-checkbox:not(:disabled):active+label::before {
    background-color: #b3d7ff;
    border-color: #b3d7ff;
}

.custom-checkbox:focus+label::before {
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-checkbox:focus:not(:checked)+label::before {
    border-color: #80bdff;
}

.custom-checkbox:checked+label::before {
    border-color: #0b76ef;
    background-color: #0b76ef;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox:disabled+label::before {
    background-color: #e9ecef;
}

.lead_policy {
    font-size: 0.8rem;
    line-height: 133%;
}

.lead_policy a {
    color: #005DFF;
}

/* Главная страница академии */

.intro-home-page {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.home-page {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-image: url(../images/bg-index.png);
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
}

.home-page__wrapper {
    padding-top: 1.4rem;
    padding-bottom: 3rem;
    margin: 0 auto;
    min-height: 47rem;
    position: relative;
    width: 94.7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.home-page__left {
    width: 26.3rem;
}

.home-page__left-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 29rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.home-page__contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.home-page__phone {
    margin-top: 1rem;
    text-decoration: none;
    color: #292c3d;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 120%;
}

.home-page__phone:hover span {
    color: #005DFF;
}

.home-page__question {
    color: #292c3d;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 125%;
    margin-bottom: auto;
    margin-top: 1rem;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    width: 21.1rem;
}

.home-page__question:hover {
    color: #005DFF;
}

.home-page__logo-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1rem;
}

.home-page__logo-item {
    text-decoration: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 13.2rem;
}

.home-page__logo-item img {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
    -webkit-transition: -webkit-filter .3s ease;
    transition: -webkit-filter .3s ease;
    -o-transition: filter .3s ease;
    transition: filter .3s ease;
    transition: filter .3s ease, -webkit-filter .3s ease;
    width: 4.16rem;
}

.home-page__logo-item:hover img {
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
}

.home-page__logo-item p {
    color: #24242e;
    cursor: pointer;
    font-size: .69rem;
    font-weight: 700;
    letter-spacing: .08em;
    line-height: 130%;
    text-transform: uppercase;
    -webkit-transition: .35s;
    -o-transition: .35s;
    transition: .35s;
    width: 8.4rem;
}

.home-page__logo-item:hover p {
    color: #005DFF;
}

.home-page__right {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    position: relative;
    width: 64.4rem;
}

.home-page__left h1 {
    color: #292c3d;
    font-size: 3.18rem;
    font-weight: 700;
    line-height: 100%;
    margin: 0;
    margin-bottom: 4.3rem;
    padding-top: 2.3rem;
    width: 58.9rem;
}

.home-page__wrapper h1::before {
    display: none;
}

.home-page__block {
    height: 15.1rem;
    width: 31.2rem;
    border-radius: 10px;
    background-color: #fff;
    -webkit-box-shadow: 0 0.27rem 1.388rem rgba(33, 95, 255, .15);
    box-shadow: 0 0.27rem 1.388rem rgba(33, 95, 255, .15);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.home-page__block--two {
    margin-bottom: 1.12rem;
    margin-left: 1.12rem;
}

.home-page__block--one {
    width: 15.1rem;
}

.home-page__block--white a span {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 125%;
    width: calc(100% - 1.5rem);
}

.home-page__block--white {
    border-radius: 10px;
}

.home-page__block-wrapper a svg {
    height: 0.6rem;
    -webkit-transition: .35s;
    -o-transition: .35s;
    transition: .35s;
    width: 0.48rem;
}

.home-page__block-wrapper--row {
    gap: 20px;
    border-radius: 0 0 10px 10px;
    width: 100%;
    height: 7rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    padding: 1.1rem;
    background-color: rgba(31, 37, 51, .7);
}

.home-page__block-wrapper--column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 1.1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.home-page__block-wrapper--row .line {
    background: #cacace;
    height: 100%;
    width: 0.0694rem;
}

.home-page__block-wrapper--column .line {
    background: #cacace;
    width: 100%;
    height: 0.0694rem;
}

.home-page__block-wrapper--column a,
.home-page__block-wrapper--column span {
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 125%;
}

.home-page__block-wrapper a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    width: 100%;
    font-weight: 700;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;

}

.home-page__block-wrapper a:hover span {
    text-decoration: underline;
}

.home-page__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.home-page__container>* {
    margin-bottom: 1.12rem;
    margin-left: 1.12rem;
}


.social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    position: absolute;
    right: 9rem;
    z-index: 10;
}

.social a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.social a:hover svg path {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    fill: #005DFF;
}

.social a:hover svg circle {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    fill: #005DFF;
}

.main-menu {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
    background-color: #fff;
    display: none;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
    min-height: 100%;
    overflow-x: auto;
    width: 100%;
}

.navbar__dropdown-title {
    list-style: disc;
}

.main-menu__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 auto;
    min-height: 80vh;
    overflow-x: auto;
    width: 100%;
}

.main-menu__column {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 1.45rem 1.45rem 10rem;
    position: relative;
    width: 25%;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.main-menu__column:hover {
    background-color: #ededed;
}

.main-menu__list {
    list-style: none;
}

.main-menu__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.main-menu__link {
    display: inline-block;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.38rem;
    margin-bottom: 1rem;
    padding-left: 1.9rem;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.main-menu__link_main {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1rem;
    padding-left: 0;
}

.main-menu__link:hover {
    color: #005DFF;
}

.main-menu__link p:hover {
    color: #005DFF;
}

.main-menu__link_main p {
    cursor: pointer;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 500;
    line-height: 2.2rem;
    margin-left: 1.2rem;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.main-menu__link_main span {
    color: #005DFF;
    font-size: 1rem;
}

.main-menu__links_top {
    margin-top: 2rem;
}

.navbar__dropdown-title {
    list-style: none;
}

/* WhatsApp кнопка */

.whatsapp-button {
    position: fixed;
    right: 13px;
    bottom: 5px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #25D366;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    color: #fff;
    text-align: center;
    line-height: 53px;
    font-size: 35px;
    z-index: 9999999999;
}

.wthsbutton:hover {
    cursor: pointer;
}

.whatsapp-button a {
    color: #fff;
}

.whatsapp-button img {
    width: 39px;
    margin-top: 13px;
}

.whatsapp-button:before,
.whatsapp-button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #25D366;
    /*цвет анимированных волн от кнопки*/
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    -webkit-animation: animate 1.5s linear infinite;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.whatsapp-button:after {
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
}

@-webkit-keyframes animate {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes animate {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@media (max-width : 800px) {
    .whatsapp-button {
        right: 13px;
        bottom: 60px;
    }
}

.news-detail__content .table{
	overflow: auto;
	margin-bottom: 2rem;
}

/* Таблица семинаров */

.seminars__wrapper {
    overflow: auto;
}

.table {
    width: 100%;
    border: none;
    margin-bottom: 10rem;
}

.table thead th {
    font-weight: bold;
    text-align: left;
    border: none;
    font-size: 1.2rem;
    padding: 0.85rem 1.2rem;
    background: #F6F6F6;
}

.table thead tr th:first-child {
    border-radius: 8px 0 0 8px;
}

.table thead tr th:last-child {
    border-radius: 0 8px 8px 0;
}

.table tbody td {
    vertical-align: middle;
    font-size: 1.2rem;
    padding: 2rem 1rem;
    text-align: left;
    border: none;
}

.table tbody td a {
    color: #005DFF;
}

.table tbody td a:hover {
    text-decoration: underline;
}

.table tbody tr:nth-child(even) {
    background: #F6F6F6;
}

.table tbody tr td:first-child {
    border-radius: 8px 0 0 8px;
    width: 11rem;
}

.table tbody tr td:last-child {
    border-radius: 0 8px 8px 0;
}
.items-box-block__more{
    width: 100%;
    text-align: center;
    margin-top: 100px;
}


footer {
    background-image: url(../images/bg-footer.png);
    background-position: 50%;
    background-size: cover;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    width: 100%;
    z-index: 900;
	overflow:hidden;
}

footer .container {
    padding: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.footer-column {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border-right: 0.069rem solid hsla(0, 0%, 100%, .2);
    width: 67%;
}

.footer-column * {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.footer-row__head {
    width: 100%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 3rem;
}

.footer-row__head .column-head {
    height: 3.88rem;
    margin: 3.47rem 0;
    width: 50%;
}

.column-head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    height: 3.8rem;
    width: 14.16rem;
    margin-bottom: 3rem;
}

.footer-logo__name {
    color: #fff;
    font-size: 0.8rem;
    line-height: normal;
    font-weight: 700;
    width: 15rem;
    margin-left: 1rem;
}

.column-head p {
    color: #8d8d95;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.38rem;
}

.column-head a {
    color: #fff;
    font-size: 1.66rem;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.footer-row__head .column-contact {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 3.88rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 3.47rem 0;
    width: 50%;
}

.footer-row__head .column-contact h6:hover a {
    text-decoration: underline;
}

.footer-column__main {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
    width: 100%;
}

.footer-column__main ul {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    list-style-type: none;
    width: 50%;
    padding-right: 0.5rem;
}

.footer-column__main ul li {
    font-size: 1.38rem;
    line-height: 2rem;
    font-weight: 300;
    margin-bottom: 2.9rem;
    width: 100%;
    color: #fff;
}

.footer-column__main ul li:hover a {
    text-decoration: underline;
}

.footer-column__form {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 6.6rem 0 6rem 6.9rem;
    width: 24%;
}

.footer-column__form p {
    color: #fff;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.38rem;
    width: 20.4rem;
    margin-bottom: 1.66rem;
}

.footer-line {
    background-color: hsla(0, 0%, 100%, .2);
    height: 0.05rem;
    position: relative;
    width: 100%;
}

.footer-row__bottom {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 2.2rem 0 !important;
    margin: 0 auto;
    width: 86rem;
}

.footer-policy * {
    color: #fff;
}

.footer-policy p {
    color: #adadad;
    font-size: 1.1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.38rem;
    width: 56rem;
}

.footer-policy p a {
    color: #fff;
}

.footer-policy p a:hover {
    text-decoration: underline;
}

.footer-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-social a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 2.7rem;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-left: 0.55rem;
    opacity: .4;
    width: 2.8rem;
}

.footer-social a:hover {
    opacity: 1;
}

.footer-social a:hover svg path {
    fill: #ffffff;
}

.footer-social a:hover svg rect {
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    fill: #FD3C76;
    opacity: 1;
}

.footer-sitemap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
	margin-left: 3rem;
	height:40px;
	line-height:40px;
}

.footer-sitemap a{
    color: #adadad;
	margin-left: 1rem;
	text-decoration:underline;
}

/* Форма подписки на почту */
.subscription-form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 27rem;
}

.subscription-input {
    color: #fff;
    width: 100%;
    border: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.2);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.11rem;
    padding: 1.15rem 1.7rem;
    position: relative;
    z-index: 100;
    margin-bottom: 0.85rem;
}

.subscription-input::-webkit-input-placeholder {
    color: #ededed;
}

.subscription-input::-moz-placeholder {
    color: #ededed;
}

.subscription-input:-ms-input-placeholder {
    color: #ededed;
}

.subscription-input::-ms-input-placeholder {
    color: #ededed;
}

.subscription-input::placeholder {
    color: #ededed;
}

.subscription-input:hover {
    border: 1px solid transparent;
}

.subcheckbox {
    width: 100%;
}

.subcheckbox .custom-checkbox+label {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.subcheckbox .custom-checkbox+label::before {
    margin-right: 0.9rem;
}

.subcheckbox span {
    font-weight: 700;
    color: #fff;
    color: #cacace;
    font-size: 0.9rem;
}

.subcheckbox span a {
    color: #fff;
}

.subcheckbox span:hover a {
    text-decoration: underline;
}

/* Вакансии академии */
.hh-vacancy {
    font-size: 1.2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.5rem 0.5rem;

}

.hh-vacancy:nth-child(even) {
    border-top: 0.1rem solid #ededed;
    border-bottom: 0.1rem solid #ededed;
}

.hh-vacancy a {
    color: #005DFF;
    font-weight: 700;
}

.hh-vacancy span {
    color: #8d8d95;
}
/* Страница Модели */

.models_page{
	font-size: 18px;
	line-height: 24px;
}

.models_page .subtitle{
	font-size: 22px;
	font-weight: 700;
	margin-bottom: 15px;
}

.models_page a {
    color: #005DFF;
    font-weight: 700;
}

.models_page p {
    margin-bottom: 15px;
}

.models_page ul {
    margin-bottom: 15px;
}

.models_page ul li{
    list-style-position: inside;
	margin-bottom: 5px;
}

/* Отзывы об Академии */
.reviews-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 3rem;
}

.reviews-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
}

.reviews-column__item {
    width: 27.1rem;
}

.reviews-column__item iframe {
    border-radius: 8px;
    width: 100%;
    height: 15rem;
}

.reviews-wrapper__youtube {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
}

.reviews-wrapper__youtube .reviews-column__item {
    width: 26rem;
}

.reviews-wrapper__youtube .reviews-column__item iframe {
    height: 15rem;
}
.leadformerror{
	color: #f4336d;
	height: 30px;
	line-height: 30px;
}
form#search {
    display: flex;
}

.Search-text {
    width: 100%;
}
/* 
.Search {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.65);
  display: none;
  height: 100vh;
  justify-content: center;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.2s;
  width: 100vw;
  z-index: 1000;
}
.closebasket,
.Search-close{
  color: #ffffff;
  cursor: pointer;
  font-size: 30px;
  position: absolute;
  top: 10px;
  right: 20px;
} */

.closebasket,
.Search-close {
	top: 12px;
}

.closebasket svg,
.Search-close svg{
  width: 20px;
  height: 20px;
}
.Search--show {
  display: flex;
  opacity:1;
}
.search-ic svg{
	width:53px;
	height:53px;
	fill:#000;
}
.search-ic{
	float: right;
    height: 53px;
    right: 0;
    margin-top: 25px;
	opacity:0.85;
	transition:0.1s;
}
.search-ic:hover{
	cursor:pointer;
	opacity:1;
}

.Search-text{
    background-color: transparent;
    border: 0;
    font-family: 'Museo Sans Cyrl';	
    border-bottom: 2px solid #000000;
    border-radius: 0;
    color: #101010;
	outline: 0;
    font-weight: 800;
    font-size: 24px;
}

@media (min-width: 480px) {
  .Search .Search-text {
    font-size: 48px;
  }
}
@media (min-width: 768px) {
  .Search .Search-text {
    font-size: 72px;
  }
}
input.Search-text:active,
input.Search-text:focus {
	outline: 0;
	box-shadow: none;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
}
input.Search-text:hover {
    border: 0;
    border-bottom: 2px solid #000000;
}
.Search .Search-text::placeholder {
  color: #666666;
}
.Search .Search-text--hide {
  animation: fadeDown 0.2s forwards;
}
.u-overflow-hidden {
  overflow: hidden;
}

@media screen and (min-width: 1920px) {
    html {
        font-size: .8vw;
    }
}

@media screen and (max-width: 1200px) {
    .header__section-center .social {
        display: none;
    }
}

@media screen and (max-width: 997px) {
    .reviews-column {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .reviews-column__item {
        width: 26rem;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1919px) {
    html {
        font-size: .85vw;
    }

}

.home-page__adaptive {
    display: none;
}

@media screen and (max-width:768px) {

    h2::before {
        height: 1.5rem;
        width: 1rem;
        left: -1.2rem;
    }

    .container {
        padding: 2.7rem 0 !important;
        width: 90% !important;
    }

    /* Шапка сайта */
    .header__nav {
        display: none;
    }

    .header__section-btn {
        display: none;
    }

    .header__section-phone {
        border-left: none;
    }

    .header__section-center {
        display: none;
    }

    .icon-eye {
        display: none;
    }

    .header-logo__name {
        display: none;
    }

    .main-menu__wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .main-menu__column {
        padding: 0 1.45rem;
        width: 100%;
    }

    .main-menu__column:first-child {
        padding-top: 1.45rem;
    }

    .popup-form__wrapper {
        margin-bottom: 4rem;
        width: 23.88rem;
    }

    /* Главная страница */
    .home-page__adaptive {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .home-page__adaptive h1 {
        line-height: 3.2rem;
    }

    .home-page__adaptive p {
        margin-bottom: 1.2rem;
        width: 67%;
    }

    .home-page__adaptive .applicant__phone-container {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    html {
        font-size: 1.95vw;
    }

    .butn {
        width: auto;
    }

    .home-page {
        background-position: top;
    }

    .home-page__wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        margin: 0 auto;
        width: 90%;
    }

    .home-page__left h1 {
        display: none;
    }

    .home-page__right {
        height: -webkit-min-content;
        height: -moz-min-content;
        height: min-content;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 2rem 0;
        width: 100%;
        gap: 2rem;
    }

    .home-page__container {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        gap: 2rem;
    }

    .home-page__block {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .home-page__block--two {
        margin-left: 0;
        margin-bottom: 0;
        height: 22.1rem;
        width: 46.2rem;
    }

    .home-page__block-wrapper a {
        padding-bottom: 1rem;

    }

    .home-page__block-wrapper a.second-link {
        padding-top: 0.5rem;
        padding-bottom: 0;
    }

    .home-page__block-wrapper--row {
        height: 10rem;
    }

    .home-page__container>* {
        margin-left: 0;
    }

    .home-page__block--one {
        width: 22rem;
        height: 22rem;
        margin-bottom: 0;
    }

    .home-page__left-wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        height: auto;
    }

    .home-page__container .social {
        position: static;
    }

    /* Подвал сайта */
    footer .container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        width: 90% !important;
        padding: 0 !important;
    }

    .footer-column {
        border: none;
        padding: 0;
        width: 100%;
        border-bottom: 0.069rem solid hsla(0, 0%, 100%, .2);
    }

    .footer-column__form {
        width: 100%;
        padding: 2.3rem 0 2.7rem;
    }

    .subscription-form {
        width: 100%;
    }

    footer .footer-row__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        width: 90% !important;
        padding: 2.2rem 0 !important;
    }

    .footer-policy p {
        width: 100%;
    }

    .footer-social {
        margin-bottom: 2rem;
    }

    /* Отзывы */
    .reviews-column {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .reviews-column__yandex {
        width: 100%;
    }

    .reviews-column__item {
        width: 22rem;
    }

    .reviews-wrapper__youtube .reviews-column__item {
        width: 22rem;
    }

}

@media screen and (max-width:480px) {

    html {
        font-size: 4vw;
    }

    h1,
    h2 {
        font-size: 1.7rem;
        line-height: 2rem;
    }

    h1::before {
        display: none;
    }

    h2::before {
        display: none;
    }

    h2>span {
        font-size: 1.7rem;
        line-height: 2rem;
    }

    /* Шапка сайта */
    .logo-icon {
        height: 2.2rem;
        width: 3.2rem;
    }

    .icon-search {
        display: none;
    }

    .applicant__phone-container h6 {
        font-size: 1.2rem;
    }

    .applicant__phone-container span {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }

    .header__section-phone {
        padding: 0;
        padding-right: 1rem;
        width: auto;
    }

    .header__action-item {
        width: 4.3rem;
    }

    .popup-form {
        width: 100%;
    }

    .popup-title {
        margin-bottom: 1.7rem;
    }

    .custom-checkbox+label {
        font-size: 0.8rem;
    }

    .popup-content {
        padding: 2rem;
    }

    .popup-form__wrapper {
        width: 100%;
        margin-bottom: 0;
    }

    .popupcheckbox {
        margin: 1rem 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .checkbox {
        width: 100%;
        margin-bottom: 2rem;
    }

    /* Главная страница */
    .home-page {
        background-size: auto;
        background-repeat: repeat;
    }

    .home-page__adaptive h1 {
        font-size: 2.4rem;
        line-height: 2.8rem;
    }

    .home-page__adaptive p {
        width: 100%;
    }

    .home-page__container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .home-page__block {
        height: 11.8rem;
        width: 100%;
        background-size: cover !important;
    }

    .home-page__block-wrapper--column {
        height: 11.8rem;
        padding: 1.5rem;
        width: 100%;
    }

    .home-page__block-wrapper--row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 11.8rem;
        padding: 1.5rem;
        width: 100%;
        border-radius: 10px;
    }

    .home-page__left-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .home-page__container {
        width: 100%;
    }

    .home-page__block-wrapper--row .line {
        height: 0.07rem;
        width: 100%;
    }

    .home-page__left {
        width: 100%;
    }

    .home-page__right {
        margin: 2rem 0 0;
    }

    .home-page__logo-item {
        width: 11.7rem;
    }

    .home-page__logos {
        margin-top: 2rem;
    }

    /* Подвал сайта */
    .footer-row__head {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer-row__head .column-head {
        margin: 2rem 0 0;
        width: 100%;
    }

    .footer-column__main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        height: auto;
        padding: 2.2rem 0 0;
    }

    .footer-column__main ul {
        width: 100%;
    }

    .footer-column__main ul li {
        margin-bottom: 2rem;
    }

    .footer-column__form p {
        width: 100%;
    }

    /* Семинары */
    .table {
        margin-bottom: 4.5rem;
    }

    .table tbody td {
        font-size: 1rem;
        padding: 1.2rem 1rem;
    }

    /* Отзывы */
    .reviews-column__item {
        width: 100%;
    }

    .reviews-wrapper__youtube .reviews-column__item {
        width: 100%;
    }

    .reviews-column__item iframe {
        height: 12rem;
    }

    .reviews-wrapper__youtube .reviews-column__item iframe {
        height: 12rem;
    }
}