html, body {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #fff;
}

.container_main {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
}

.additional-wrapper {
  padding-top: 120px;
}

/* The Overlay (background) */
.overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */   
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  background-color: #000;
  overflow-x: hidden;
  transition: 0.5s;
}

/* Position the content inside the overlay */
.overlay-content {
  position: relative;
  top: 25%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay-open .hamburger__menu {
  background-color: transparent;
  box-shadow: none;
}

/* The navigation links inside the overlay */
.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #fff;
  display: block;
  transition: 0.3s;
}

/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.hamburger__menu {
  padding-left: 2em;
  display: flex;
  align-items: center;
  position: fixed;
  height: 3rem;
  width: 100%;
  z-index: 99;
}
.hamburger__menu span {
  cursor: pointer;
}
.hamburger__menu button {
  height: 30px;
  border: none;
  background: transparent;
}

.hamburger__menu .openbtn {
  display: block;
  background-image: none !important;
  background-color: #fff;
  height: 3px;
  width: 25px;
  margin: 10px 0;
  position: relative;
  transition: all 0.35s ease-out;
  transform-origin: center;
}
.hamburger__menu .openbtn::before {
  display: block;
  background-color: #fff;
  height: 3px;
  content: "";
  position: relative;
  top: -7px;
  transition: all 0.15s ease-out;
  transform-origin: center;
}
.hamburger__menu .openbtn::after {
  display: block;
  background-color: #fff;
  height: 3px;
  content: "";
  position: relative;
  top: 4px;
  transition: all 0.35s ease-out;
  transform-origin: center;
}

.hide {
  display: none;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 60px;
}

.fixed {
  background-color: #000;
  box-shadow: 0px 0px 10px rgba(240, 240, 245, 0.9);
  transition: all 0.5s ease-out;
}

/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
@media screen and (max-width: 450px) {
  .overlay a {
    font-size: 28px;
  }
  .overlay .closebtn {
    font-size: 40px;
    top: 15px;
    right: 35px;
  }
}
.main-header {
  position: fixed;
  width: 100%;
  background-color: #c44903;
  display: flex;
  transition: all 0.3s ease-in-out;
  border-bottom: 1px solid transparent;
  z-index: 100;
}
.main-header-inner-wrapper {
  height: 80px;
  display: inline-flex;
  flex: 1;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.main-header-sections-wrapper {
  display: contents;
  margin: 0 auto;
}
.main-header-section {
  display: block;
  cursor: pointer;
}
.main-header-section_label {
  display: block;
  position: relative;
  color: #fff;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 33px 16px 4px;
}
.main-header-section_label-hover {
  position: absolute;
  top: 19px;
  right: 1px;
  pointer-events: none;
  transform: translate(100%, -100%);
  opacity: 0;
}
.main-header .right-controls {
  display: inline-flex;
  margin-left: auto;
}
.main-header .user-auth {
  text-align: right;
  flex: 0 0 auto;
}
.main-header .new-button {
  padding: 3px 24px 0;
  display: inline-flex;
  height: 48px;
  width: auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-pack: center;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  text-transform: uppercase;
  font-style: normal;
  font-size: 14px;
  border: 1px solid transparent;
  line-height: 18px;
  letter-spacing: 1.6px;
  margin-top: 13.5px;
}
.main-header .button-transp-brand {
  background-color: transparent;
  border-color: #fff;
  color: #fff;
}
.main-header .button-transp-brand:hover {
  color: #000;
  border-color: #000;
}
.main-header .logo {
  height: 64px;
  width: 246px;
  margin-top: 12px;
  object-fit: contain;
  flex: 0 0 auto;
  font-size: 30px;
  text-align: center;
}
.main-header .mob-burger {
  display: none;
  position: absolute;
  right: 24px;
  top: 3px;
  width: 60px;
  height: 60px;
}

.main-header .mob-burger:after, .main-header .mob-burger:before {
  content: "";
  display: block;
  height: 1.33px;
  width: 20px;
  border-radius: 50px;
  background-color: #fff;
  position: relative;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
  transform-origin: left center;
  top: 21px;
  left: 29px;
}

.main-header .mob-burger:after {
  margin-top: 6px;
}

.main-header .mob-burger.is-active:before {
  transform: rotate(45deg);
  top: 20px;
}

.main-header .mob-burger.is-active:after {
  transform: rotate(-45deg);
  top: 27px;
}

.main-header.scroll-shadow {
  border-color: #9092aa;
  box-shadow: 0 4px 24px rgba(189, 191, 209, 0.24);
  transition: all 1.5s ease-in-out;
}

.head-title {
  width: 100%;
  background-color: #c44903;
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
}
.head-title-wrapper {
  padding-bottom: 80px;
}
.head-title-text {
  display: block;
  padding-top: 140px;
  font-size: 96px;
  color: #fff;
  letter-spacing: 3px;
  line-height: 98px;
}

.banners, .banner, .banner__second {
  display: flex;
}

.banner__bg, .banner__bg:before {
  position: absolute;
  left: 0;
  bottom: 0;
}

.banners {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
}

.banner {
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: column;
  color: #fff;
  padding: 40px 20px;
  height: 460px;
  width: 100%;
  position: relative;
}
.banner--half {
  width: 100%;
}
.banner--bg {
  padding: 40px 66px;
}
.banner--img {
  background-color: #c44903;
}
.banner--img .banner__title {
  max-width: 428px;
}
.banner__bg {
  top: 0;
  right: 0;
  z-index: -1;
}
.banner__bg::before {
  content: "";
  width: 100%;
  height: 40%;
  background: linear-gradient(0, rgba(0, 0, 0, 0.8), transparent);
  z-index: 0;
}
.banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner__title {
  margin-top: auto;
  font-size: 38px;
  line-height: 0.8;
  letter-spacing: -0.03em;
}
.banner__text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}
.banner__text-bottom {
  margin-top: auto;
}
.banner__btn {
  width: 100%;
  margin-top: 20px;
}
.banner__second {
  justify-content: flex-end;
}
.banner__img {
  width: 100%;
}
.banner__img img {
  max-width: initial;
  height: auto;
  vertical-align: top;
}
.banner__img-bigger {
  display: flex;
  justify-content: end;
}
.banner__img-bigger img {
  height: 222px;
  width: auto;
}

.contact--map iframe {
  width: 100%;
  height: 100%;
}

#faculty {
  background-color: #c44903;
  position: relative;
}
#faculty .faculty_img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#faculty .faculty_content {
  position: relative;
}
#faculty .faculty_content .faculty_title {
  color: #101014;
  line-height: 0.8;
  font-size: 38px;
  margin-top: -32px;
  margin-left: -3px;
}
#faculty .faculty_content .faculty_title span {
  color: #fff;
}
#faculty .faculty_list {
  padding: 10px 0 30px;
}
#faculty .faculty_list_item {
  position: relative;
  border-bottom: 1px solid #101014;
  padding: 20px 20px 17px;
  margin: 0 -20px;
  text-decoration: none;
  transition: all 0.4s;
}
#faculty .faculty_list_item:hover {
  background-color: #fff;
}
#faculty .faculty_list_item_link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
#faculty .faculty_list_item_title {
  font-size: 25px;
  line-height: 0.8;
  letter-spacing: -0.03em;
}
#faculty .faculty_list_item_title span {
  color: #fff;
}
#faculty .faculty_list_item_title div {
  display: none;
}
#faculty .faculty_list_item_image {
  display: none;
}
#faculty .faculty_list_item_bottom {
  display: none;
}
#faculty .faculty_list_item_courses {
  align-self: flex-end;
}
#faculty .faculty_list_item--consulting {
  display: none;
}
#faculty .faculty_list_item_text {
  margin-top: auto;
}
#faculty .faculty_list_item_consult {
  display: none;
  border: 1px solid #c44903;
  background-color: #c44903;
  height: 45px;
  padding: 2px 20px 0;
  margin-top: 30px;
  color: #fff;
  font-size: 14px;
  line-height: 3.071428571;
  text-align: center;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  vertical-align: top;
  transition: all 0.4s;
  border-radius: 23px;
}

#faculty .faculty_list .faculty_list_item:hover .faculty_list_item_image {
  opacity: 1;
}

#faculty .faculty_list .faculty_list_item:hover .faculty_list_item_title span, #why-projector .why-projector_title span, .main_filters .faculty_list .faculty_list_item:hover {
  color: #c44903;
}

#faculty .faculty_list .faculty_list_item:hover .faculty_list_item_consult {
  display: inline-block;
}

#professiums_main {
  padding: 60px 0;
  z-index: 1;
  position: relative;
}
#professiums_main .professiums_main_title {
  font-weight: 400;
  font-size: 38px;
  margin-left: -4px;
  line-height: 0.8;
  color: #101014;
}
#professiums_main .professiums_main_title span {
  color: #c44903;
}
#professiums_main .professiums_list {
  margin-top: 30px;
}
#professiums_main .professiums_list .professiums_item_wrap {
  margin-top: 20px;
}
#professiums_main .professiums_list .professiums_item_wrap:first-child {
  margin-top: 0;
}

.professiums_list .professiums_item {
  position: relative;
  height: 420px;
  padding: 30px 20px 24px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-top: 20px;
  color: #fff;
}
.professiums_list .professiums_item:hover .professiums_item_bg img {
  transform: scale(1.07) translate3d(0, 0, 0);
}
.professiums_list .professiums_item_link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.professiums_list .professiums_item_bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.professiums_list .professiums_item_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  filter: brightness(50%);
}
.professiums_list .professiums_item_title {
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.professiums_list .professiums_item_level {
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}
.professiums_list .professiums_item_footer {
  height: 48px;
  margin-top: auto;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.03em;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  flex-wrap: nowrap;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  align-items: flex-start;
}
.professiums_list .professiums_item_months {
  display: flex-end;
}
.professiums_list .professiums_item_modules {
  position: relative;
  margin-left: 24px;
}
.professiums_list .professiums_item_modules::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  background-repeat: no-repeat;
  top: calc(100% - 7px);
  left: -19px;
  width: 27px;
  height: 3px;
}

.professiums_main_more {
  margin-top: 30px;
}
.professiums_main_more_btn {
  display: inline-block;
  border: 1px solid #c44903;
  width: 100%;
  height: 45px;
  padding: 0 20px;
  font-size: 14px;
  line-height: 3.071428571;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  transition: all 0.4s;
  vertical-align: top;
  border-radius: 23px;
  text-decoration: none;
  background-color: #c44903;
  color: #fff;
}
.professiums_main_more_btn:hover {
  background-color: #fff;
  color: #c44903;
}

.contacts_title {
  color: #101014;
  line-height: 0.8;
  font-size: 38px;
  font-weight: 400;
  padding-left: 32px;
}
.contacts_title span {
  color: #c44903;
}

.contacts, .contact, .contact__second {
  display: flex;
}

.contact__bg, .contact__bg:before {
  position: absolute;
  left: 0;
  bottom: 0;
}

.contacts {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: stretch;
}

.contact {
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-direction: column;
  color: #fff;
  padding: 40px 20px;
  height: 460px;
  width: 100%;
  position: relative;
}
.contact--half {
  width: 100%;
}
.contact--bg {
  padding: 40px 66px;
}
.contact--img, .contact--form {
  background-color: #c44903;
}
.contact--img .contact__title, .contact--form .contact__title {
  max-width: 428px;
}
.contact__map {
  display: block;
  width: 100%;
  height: 100%;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
}
.contact--form {
  justify-content: center;
  align-items: center;
}
.contact__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact__form label {
  font-size: 26px;
}
.contact__form-control {
  width: 70%;
}
.contact__form-control--height {
  width: 50%;
  height: 30px;
}
.contact__form-control_btn {
  width: 50%;
  display: inline-block;
  border: 1px solid #fff;
  height: 45px;
  margin-top: 20px;
  padding: 0 20px;
  font-size: 14px;
  line-height: 3.071428571;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  vertical-align: top;
  border-radius: 23px;
  text-decoration: none;
  background-color: #c44903;
  color: #fff;
}
.contact__form-control_btn:hover {
  background-color: #fff;
  color: #c44903;
}
.contact__bg {
  top: 0;
  right: 0;
  z-index: -1;
}
.contact__bg::before {
  content: "";
  width: 100%;
  height: 40%;
  background: linear-gradient(0, rgba(0, 0, 0, 0.8), transparent);
  z-index: 0;
}
.contact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact__title {
  margin-top: auto;
  font-size: 38px;
  line-height: 0.8;
  letter-spacing: -0.03em;
}
.contact__text {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}
.contact__text-bottom {
  margin-top: auto;
}
.contact__btn {
  width: 100%;
  margin-top: 30px;
}
.contact__second {
  justify-content: flex-end;
}
.contact__img {
  width: 100%;
}
.contact__img img {
  max-width: initial;
  height: auto;
  vertical-align: top;
}
.contact__img-bigger {
  display: flex;
  justify-content: end;
}
.contact__img-bigger img {
  height: 222px;
  width: auto;
}

@keyframes infinite-line {
  100% {
    transform: translateX(-100%);
  }
}
footer {
  background: #101014;
  color: #fff;
  padding-bottom: 24px;
}
footer .phone-policies {
  list-style: none;
}
footer .infinite-text-line {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  margin-bottom: 48px;
}
@media only screen and (min-width: 1024px) {
  footer .infinite-text-line {
    margin-bottom: 64px;
  }
}
footer .infinite-text-line ul {
  display: flex;
  flex-direction: row;
  animation: infinite-line 30s linear infinite forwards;
}
footer .infinite-text-line ul li {
  margin: 0 12px;
}
footer .infinite-text-line ul li a {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #c44903;
}
footer .footer_top {
  padding-bottom: 48px;
}
@media only screen and (min-width: 1024px) {
  footer .footer_top {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 24px;
  }
}
footer .footer_top .footer_logo {
  display: none;
}
@media only screen and (min-width: 1024px) {
  footer .footer_top .footer_logo {
    display: block;
    grid-column: span 5/span 5;
  }
}
footer .footer_top .footer_logo img {
  width: 200px;
  height: 219px;
}
footer .footer_top .footer_logo_mobile {
  display: block;
  margin-bottom: 40px;
}
@media only screen and (min-width: 1024px) {
  footer .footer_top .footer_logo_mobile {
    display: none;
  }
}
footer .footer_top .footer_logo_mobile img {
  height: 45px;
}
footer .footer_top .footer_navigation {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media only screen and (min-width: 768px) {
  footer .footer_top .footer_navigation {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  footer .footer_top .footer_navigation {
    grid-column: span 7/span 7;
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}
@media only screen and (min-width: 768px) {
  footer .footer_top .footer_navigation .footer_navigation_item:first-of-type {
    grid-column: span 3/span 3;
  }
}
@media only screen and (min-width: 768px) {
  footer .footer_top .footer_navigation .footer_navigation_item:nth-of-type(2) {
    grid-column: span 5/span 5;
  }
}
@media only screen and (min-width: 1024px) {
  footer .footer_top .footer_navigation .footer_navigation_item:nth-of-type(2) {
    grid-column: span 4/span 4;
  }
}
footer .footer_top .footer_navigation .footer_navigation_item .navigation_item_title {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #E0E1ED;
  margin-bottom: 24px;
}
footer .footer_top .footer_navigation .footer_navigation_item .footer_navigation_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .footer_top .footer_navigation .footer_navigation_item .footer_navigation_list .navigation_list_item a {
  text-decoration: none;
  color: #fff;
  background-image: linear-gradient(#fff, #fff);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.3s;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: -0.42px;
}
footer .footer_top .footer_navigation .footer_navigation_item .footer_navigation_list .navigation_list_item a:hover {
  background-size: 100% 1px;
}
footer .footer_bottom {
  position: relative;
  background-color: #101014;
  border-top: 1px solid #2D2D39;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media only screen and (min-width: 768px) {
  footer .footer_bottom {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 24px;
  }
}
@media only screen and (min-width: 1024px) {
  footer .footer_bottom {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }
}
footer .footer_bottom .copyright {
  font-size: 24px;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}
@media only screen and (min-width: 768px) {
  footer .footer_bottom .copyright {
    margin-bottom: 0;
    grid-column: span 3/span 3;
  }
}
@media only screen and (min-width: 1024px) {
  footer .footer_bottom .copyright {
    grid-column: span 5/span 5;
  }
}
footer .footer_bottom a {
  color: #fff;
  text-decoration: none;
  background-image: linear-gradient(#fff, #fff);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  transition: background-size 0.3s;
  font-size: 14px;
  line-height: 16px;
}
footer .footer_bottom a:hover {
  background-size: 100% 1px;
}
footer .footer_bottom .desktop-policies {
  display: none;
}
@media only screen and (min-width: 1024px) {
  footer .footer_bottom .desktop-policies {
    display: block;
  }
  footer .footer_bottom .desktop-policies:nth-of-type(2) {
    grid-column: span 3/span 3;
  }
  footer .footer_bottom .desktop-policies:nth-of-type(3) {
    grid-column: span 4/span 4;
  }
}
@media only screen and (min-width: 768px) {
  footer .footer_bottom .mobile-policies {
    grid-column: span 5/span 5;
  }
}
@media only screen and (min-width: 1024px) {
  footer .footer_bottom .mobile-policies {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  footer .footer_bottom .phone-policies {
    grid-column: span 5/span 5;
  }
}

.modal-content {
  color: #fff;
  background-color: #c44903;
}
.modal-header {
  border-bottom: 2px solid #fff;
}
.modal h5 {
  font-size: 4rem;
}
.modal-body p {
  font-size: 3rem;
}

.btn-close {
  width: 5em;
  height: 5em;
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(142deg) brightness(103%) contrast(100%);
}

.cookie-wrapper {
  position: fixed;
  bottom: 0px;
  left: 0;
  right: 0;
  width: 33%;
  background: #fff;
  padding: 15px 25px 22px;
  transition: right 0.3s ease;
  box-shadow: 0 5px 10px rgb(0, 0, 0);
  z-index: 999;
}
.cookie-wrapper .cookie-header {
  text-align: center;
}

.cookie-wrapper .show {
  right: 20px;
}

.hidden {
  display: none;
}

header i {
  color: #c44903;
  font-size: 32px;
}

header h2 {
  color: #c44903;
  font-weight: 500;
}

.data {
  text-align: center;
}

.data p a {
  color: #c44903;
  text-decoration: none;
  text-align: center !important;
}

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

.buttons {
  padding: 20px 0px;
  text-align: center;
}

.buttons .cookie-button {
  border: 2px solid #c44903;
  color: #fff;
  padding: 8px 0;
  border-radius: 0.5rem;
  background: #c44903;
  cursor: pointer;
  width: calc(50% - 10px);
  transition: all 0.2s ease;
  max-width: 150px;
}

.buttons #acceptBtn:hover {
  background-color: #fff;
  color: #c44903;
}

#declineBtn {
  background-color: #fff;
  color: #c44903;
}

.buttons #declineBtn:hover {
  background-color: #c44903;
  color: #fff;
}

@media only screen and (min-width: 360px) {
  .banner__second {
    padding-right: 30px;
  }
  .head-title-text {
    font-size: 64px;
    line-height: 64px;
    padding-top: 70px;
  }
  .head-title-wrapper {
    padding-bottom: 70px;
  }
}
@media only screen and (min-width: 768px) {
  #faculty .faculty_img {
    height: 62.5vw;
  }
  #faculty .faculty_content .faculty_title {
    font-size: 60px;
    margin-top: -49px;
    margin-left: -6px;
  }
  #faculty .faculty_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
    padding: 30px 0 30px 1px;
    margin-right: -3px;
  }
  #faculty .faculty_list .faculty_list_item {
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 -30px;
  }
  #professiums_main .professiums_main_title, #professiums_main .contacts_title, #contacts .professiums_main_title, #contacts .contacts_title {
    font-size: 60px;
    margin-left: -6px;
  }
  .professiums_list .professiums_item .professiums_item_title {
    font-size: 50px;
    line-height: 0.8;
  }
  .professiums_list .professiums_item .professiums_item_level {
    font-size: 20px;
    line-height: 1.2;
  }
  .professiums_list .professiums_item .professiums_item_footer {
    height: 64px;
    font-size: 20px;
    line-height: 1.2;
  }
  .professiums_list .professiums_item .professiums_item_modules {
    margin-left: 34px;
  }
  .professiums_list .professiums_item .professiums_item_modules:before {
    background-color: #fff;
    left: -30px;
    width: 27px;
    height: 3px;
  }
  .professiums_main_more_btn {
    width: auto;
  }
  .banner {
    padding: 60px 40px;
  }
  .banner__btn {
    width: auto;
  }
  .banner__second {
    padding-left: 150px;
  }
  #courses .courses_img {
    height: 62.5vw;
  }
  #courses .courses_content .courses_title {
    font-size: 60px;
    margin-top: -49px;
    margin-left: -6px;
  }
  #courses .courses_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
    padding: 30px 0 30px 1px;
    margin-right: -3px;
  }
  #courses .courses_list .courses_list_item {
    padding-left: 30px;
    padding-right: 30px;
    margin: 0 -30px;
  }
  .contact {
    padding: 60px 40px;
  }
  .contacts {
    padding: 80px 0;
  }
  .contacts_content {
    position: relative;
  }
  .contacts_content .contacts_title {
    color: #101014;
    line-height: 0.8;
    font-size: 60px;
    margin-top: -49px;
    margin-left: -8px;
  }
  .contacts_content .contacts_title span {
    color: #c44903;
  }
}
@media only screen and (min-width: 1024px) {
  nav.main-header .main-header-section:hover .main-header-section_label, header.main-header.main-header--dark .main-header-section:hover .main-header-section_label {
    color: #fff;
  }
  nav.main-header .main-header-section:hover .main-header-section_label-hover {
    opacity: 1;
    transition: opacity 600ms;
  }
  nav.main-header .main-header-section:hover .main-header-section_label-hover:before {
    content: "";
    position: absolute;
    width: 16px;
    height: 1px;
    border-top: 1px solid #fff;
    bottom: -8px;
    left: -13px;
    transform: rotate(-45deg);
  }
  #faculty .faculty_img {
    height: 54.7vw;
  }
  #faculty .faculty_content .faculty_title {
    font-size: 100px;
    margin-top: -78px;
    margin-left: -8px;
  }
  #faculty .faculty_list .faculty_list_item {
    border: 1px solid #101014;
    width: 33.33%;
    min-height: 350px;
    padding: 20px;
    margin: -1px 0 0 -1px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: stretch;
  }
  #faculty .faculty_list .faculty_list_item_title {
    font-size: 30px;
    line-height: 1;
  }
  #faculty .faculty_list .faculty_list_item_image {
    display: block;
    max-height: 150px;
    max-width: 205px;
    object-fit: cover;
    margin: 20px auto 0;
    opacity: 0;
  }
  #faculty .faculty_list .faculty_list_item .faculty_list_item_title div {
    display: block;
  }
  #faculty .faculty_list .faculty_list_item_bottom {
    height: 48px;
    margin-top: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
  }
  #professiums_main, #contacts {
    padding: 80px 0;
  }
  #professiums_main .professiums_main_title, #professiums_main .contacts_title, #contacts .professiums_main_title, #contacts .contacts_title {
    font-size: 100px;
    margin-left: -8px;
  }
  #professiums_main .professiums_list, #contacts .professiums_list {
    margin-top: 50px;
  }
  .professiums_list .professiums_item {
    padding: 40px 30px 30px;
  }
  .professiums_list .professiums_item .professiums_item_title {
    font-size: 60px;
  }
  .banner {
    height: 680px;
    padding: 80px 40px;
  }
  .banner--half {
    width: 50%;
  }
  .banner--bg {
    padding: 80px 32px 80px 30px;
  }
  .banner--img {
    padding: 80px 30px;
  }
  .banner__title {
    font-size: 54px;
  }
  .banner__text {
    font-size: 20px;
    line-height: 1.2;
  }
  #courses .courses_list .courses_list_item {
    border: 1px solid #101014;
    width: 33.33%;
    min-height: 315px;
    padding: 20px;
    margin: -1px 0 0 -1px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: stretch;
  }
  #courses .courses_list .courses_list_item_title {
    font-size: 30px;
    line-height: 1;
  }
  #courses .courses_list .courses_list_item_image {
    display: block;
    max-height: 120px;
    max-width: 205px;
    object-fit: cover;
    margin: 20px auto 0;
    opacity: 0;
  }
  #courses .courses_list .courses_list_item .courses_list_item_title div {
    display: block;
  }
  #courses .courses_list .courses_list_item_bottom {
    height: 48px;
    margin-top: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: flex-start;
  }
  .contact {
    padding: 80px 30px;
  }
  .contacts {
    padding: 80px 0;
  }
  .contacts_content {
    position: relative;
  }
  .contacts_content .contacts_title {
    color: #101014;
    line-height: 0.8;
    font-size: 100px;
    margin-top: -78px;
    margin-left: -8px;
  }
  .contacts_content .contacts_title span {
    color: #c44903;
  }
}
@media only screen and (min-width: 1440px) {
  #faculty .faculty_img {
    height: 38.9vw;
  }
  #faculty .faculty_list {
    padding: 50px 0 80px 1px;
    margin-right: -4px;
    margin-right-display: flex;
  }
  #faculty .faculty_list .faculty_list_item {
    width: 25%;
    height: 390px;
  }
  #faculty .faculty_list .faculty_list_item .faculty_list_item--consulting {
    display: flex;
  }
  .banner {
    padding: 80px 100px;
  }
  .banner--bg {
    padding: 80px 60px 80px 100px;
  }
  .banner--img {
    padding: 62px 60px 80px 68px;
  }
  .banner--img .banner__title {
    font-size: 64px;
  }
  .banner__title {
    font-size: 64px;
  }
  #courses .courses_img {
    height: 38.9vw;
  }
  #courses .courses_list {
    padding: 50px 0 80px 1px;
    margin-right: -4px;
    margin-right-display: flex;
  }
  #courses .courses_list .courses_list_item {
    width: 25%;
  }
  #courses .courses_list .courses_list_item .courses_list_item--consulting {
    display: flex;
  }
  .contact {
    padding: 62px 60px 80px 68px;
  }
}
@media only screen and (max-width: 767px) {
  .container_main {
    padding: 0 16px;
  }
  .professiums_list--slider {
    padding-bottom: 10px;
    margin-left: -20px;
    margin-right: -20px;
    margin-bottom: -10px;
    overflow-x: auto;
    overflow-y: hidden;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    justify-content: flex-start;
    align-content: flex-start;
    -webkit-box-align: stretch;
    align-items: stretch;
  }
  .professiums_list .professiums_item_wrap:first-child {
    padding-left: 20px;
  }
  .professiums_list .professiums_item_wrap .professiums_item {
    width: 280px;
  }
  #professiums_main .professiums_list .professiums_item_wrap {
    padding-left: 10px;
    margin-top: 0;
  }
  .professiums_list .professiums_item_modules::before {
    height: 1.5px;
    width: 17px;
  }
  .banner--bg {
    padding: 40px 20px;
  }
  .banner--img {
    padding: 40px 20px;
    align-items: stretch;
  }
  .banner--img .banner__title {
    font-size: 38px;
    max-width: 328px;
  }
  .banner__img-bigger img {
    height: 148px;
  }
  .cookie-wrapper {
    width: 100%;
  }
  .banner__btn {
    margin-top: 10px;
  }
  .contact__form-control--height {
    width: 100%;
  }
}
@media only screen and (max-width: 980px) {
  .container_main {
    padding: 0 36px;
  }
}
@media only screen and (max-width: 1024px) {
  .container_main {
    padding: 0 36px;
  }
  .main-header {
    overflow: hidden;
  }
  .main-header.is-active {
    height: 100%;
    overflow-y: auto;
  }
  .main-header.is-active .main-header-inner-wrapper {
    height: 100%;
    padding-bottom: 24px;
    align-content: flex-start;
  }
  .main-header .mob-burger {
    display: block;
  }
  .main-header .main-header-sections-wrapper {
    display: flex;
    flex-direction: column;
    order: 4;
    margin: 0;
    width: 100%;
    gap: 16px;
  }
  .main-header .main-header-section {
    padding: 0;
  }
  .main-header .main-header-section .main-label {
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #f0f1f8;
  }
  .main-header .main-header-section_label {
    text-transform: lowercase;
    font-size: 32px;
    line-height: 30px;
    letter-spacing: -0.03em;
    padding: 0;
    display: inline-block;
  }
  .main-header .main-header-inner-wrapper {
    height: 70px;
    flex-wrap: wrap;
  }
  .main-header .right-controls {
    -webkit-box-ordinal-group: 4;
    order: 3;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    margin-top: 16px;
  }
  .main-header .user-auth {
    width: 100%;
    margin: 0;
  }
  .main-header .login-btn {
    width: 100% !important;
    margin: 0 0 40px;
  }
  .main-header .logo {
    width: 55px;
  }
}
@media only screen and (max-width: 1440px) {
  .container_main {
    padding: 0 32px;
  }
}
@media (min-width: 768px) {
  .head-title-text {
    font-size: 68px;
    line-height: 94px;
  }
}/*# sourceMappingURL=main.min.css.map */