@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&display=swap");
/* VARIABLES */
:root {
  --black-main: #222222;
  --black-light: #767676;
  --blue-main: #275ec7;
  --blue-dark: #0d2451;
  --blue-light: #3893ff;
  --blue-ghost: #e3eeff;
  --blue-extra-light: #98c1ff;
  --other-green: #1fb94b;
  --other-red: #ef6161;
}

/* NORMALIZE */
@font-face {
  font-family: "Open Sans";
  src: local("/local/assets/fonts/Open_Sans/static/OpenSans-Regular.ttf");
  src: url(OpenSans-Regular.ttf) format(ttf);
  font-weight: 400;
}
@font-face {
  font-family: "Open Sans";
  src: local("/local/assets/fonts/Open_Sans/static/OpenSans-Medium.ttf");
  src: url(OpenSans-Medium.ttf) format(ttf);
  font-weight: 500;
}
@font-face {
  font-family: "Open Sans";
  src: local("/local/assets/fonts/Open_Sans/static/OpenSans-SemiBold.ttf");
  src: url(OpenSans-SemiBold.ttf) format(ttf);
  font-weight: 600;
}
@font-face {
  font-family: "Open Sans";
  src: local("/local/assets/fonts/Open_Sans/static/OpenSans-Bold.ttf");
  src: url(OpenSans-Bold.ttf) format(ttf);
  font-weight: 700;
}
@font-face {
  font-family: "Open Sans";
  src: local("/local/assets/fonts/Open_Sans/static/OpenSans-ExtraBold.ttf");
  src: url(OpenSans-ExtraBold.ttf) format(ttf);
  font-weight: 800;
}

* {
  padding: 0;
  margin: 0;
  list-style: none;
  outline: none;
  font-family: "Open Sans", sans-serif;
  box-sizing: border-box;
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

html {
  /*scroll-behavior: smooth;*/
}
html.scroll-hidden {
  overflow: hidden !important;
  touch-action: none;
  -ms-touch-action: none;
  -webkit-overflow-scrolling: none;
  overscroll-behavior: none;
}

body {
  color: var(--black-main);
  background-color: #f4f9ff;
  overflow-x: clip;
  -webkit-overflow-scrolling: touch;
}


body.scroll-hidden {
  /*position: fixed;*/
  overflow: hidden !important;
  touch-action: none;
  -ms-touch-action: none;
  -webkit-overflow-scrolling: none;
  overscroll-behavior: none;
}

.container {
  width: 100%;
  max-width: 1440px;
  position: relative;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

a,
span,
p,
b,
h1,
h2,
h3,
h4,
h5 {
  color: var(--black-main);
}

a {
  text-decoration: none;
  cursor: pointer;
}

ul li {
  list-style: none;
}

button {
  border: none;
}
/* END NORMALIZE */

/* Cosnstants */
h1 {
  font-size: 160px;
  line-height: 95%;
  font-weight: 700;
}

h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 110%;
}

.xxl-display {
  display: block;
}

.xxl-display-none {
  display: none;
}

.mt-4 {
  margin-top: 4px;
}
.mt-8 {
  margin-top: 8px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-84 {
  margin-top: 84px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-160 {
  margin-top: 160px;
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-40 {
  margin-bottom: 40px;
}

.col-100 {
  width: 100%;
}

.xxl-col-33 {
  width: 33%;
}

.xxl-col-33-6 {
  width: calc(33% - 6px);
}

.xxl-col-50 {
  width: 50%;
}

.xxl-col-50-8 {
  width: calc(50% - 8px);
}

.small-bg-web {
  position: absolute;
  top: 30px;
  left: 0;
}

.small-bg-mobile {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

/* preloader */
#preloader {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f4f9ff;
  z-index: 200;
  animation: preloaderAnim .7s cubic-bezier(0.78,-0.01, 1, 1) forwards;
  }
#preloader-line {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--blue-main);
  box-shadow: 0 0 3px 1px #275ec766;
  animation: preloaderLineAnim .5s cubic-bezier(0.78,-0.01, 1, 1) forwards;
}
@keyframes preloaderAnim {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes preloaderLineAnim {
  0% {
    width: 0vw;
  }
  70% {
    width: 100vw;
  }
  100% {
    width: 100vw;
  }
}

/* Hero image animation */
.animate-img {
  opacity: 0;
  transition: opacity 0.7s ease;
}
.animate-img.active {
  opacity: 1;
}

/* BUTTONS */
.btn-primary {
  background-color: var(--blue-main);
  padding: 13px 24px;
  color: #fff !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  text-align: center;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
  cursor: pointer;
  width: fit-content;
  height: fit-content;
  z-index: 1;
	white-space: nowrap;
}

.btn-primary.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary.disabled:hover {
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn-primary.on-dark:hover {
  background-color: #081633;
}

.btn-border {
  position:relative;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  padding: 13px 24px;
  text-align: center;
  background-color: transparent;
  /*outline: 2px solid var(--blue-main);*/
  /*outline-offset: -2px;*/
  color: var(--blue-main);
  width: fit-content;
  height: fit-content;
  cursor: pointer;
  transition: all 0.2s ease;
}
/* old safari outline + border-radius fix */
.btn-border::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid var(--blue-main);
  border-radius: 8px;
  transition: all 0.2s ease;
}
.btn-border:hover {
  background-color: var(--blue-dark);
  /*outline-color: var(--blue-dark);*/
  color: #fff;
}
.btn-border:hover::before {
  border-color: var(--blue-dark);
}
.btn-border.main-courses{
	width: fit-content;
  margin: 40px auto 0;
  display: block;
}
.btn-border.--white {
  color: #fff;
}
.btn-border.--white::before {
  border: 2px solid #fff;
}
.btn-border.--white:hover {
  background-color: #fff;
  color: var(--blue-main);
}

/* INPUTS */
input,
textarea {
  border: 1px var(--blue-extra-light) solid;
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 16px;
  font-weight: 400;
  color: var(--blue-dark);
  transition: all 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: var(--blue-extra-light);
  transition: all 0.2s ease;
}

input:hover,
textarea:hover {
  border-color: var(--blue-main);
}

input:hover::placeholder,
textarea:hover::placeholder {
  color: var(--blue-main);
}

input:focus,
textarea:focus {
  border-color: var(--blue-main);
}

input:focus::placeholder,
textarea:focus::placeholder {
  color: var(--blue-main);
}

input.error,
textarea.error {
  color: var(--other-red);
  border-color: var(--other-red);
}

input.error:focus,
textarea.error:focus {
  color: var(--blue-dark);
}

input.error:hover,
textarea.error:hover {
  border-color: var(--other-red);
}

input.error::placeholder,
textarea.error::placeholder {
  color: var(--other-red);
}

input.error:hover::placeholder,
textarea.error:hover::placeholder {
  color: var(--other-red);
}
/* CUSTOM CHECKBOX */
input[type="checkbox"],
input[type="radio"] {
  -webkit-appearance: initial;
  -moz-appearance: initial;
  border: none !important;
  padding: 0 !important;
}
.custom-checkbox-container {
  cursor: pointer;
}
.custom-checkbox-input {
  position: absolute;
  height: 0;
  width: 0;
}
.custom-checkbox-container label {
  font-size: 16px;
}
.custom-checkbox-input::before {
  content: "";
  background-image: url("/local/assets/academy/icons/checkbox.svg");
  display: flex;
  position: relative;
  width: 16px;
  height: 16px;
  top: 3px;
  transition: all 0.2s ease;
}
.custom-checkbox-container:hover .custom-checkbox-input::before {
  background-image: url("/local/assets/academy/icons/checkbox-hover.svg");
}
.custom-checkbox-input:checked::before {
  background-image: url("/local/assets/academy/icons/checkbox-active.svg");
}
.custom-checkbox-container:hover .custom-checkbox-input:checked:before {
  background-image: url("/local/assets/academy/icons/checkbox-active.svg");
}
.custom-checkbox-container label {
  padding-left: 24px;
}
/* CUSTOM RADIO */
.custom-radio-input {
  position: absolute;
  height: 0;
  width: 0;
  cursor: pointer;
}
.custom-radio-input::before {
  content: "";
  background-image: url("/local/assets/academy/icons/radio.svg");
  display: flex;
  position: relative;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  top: 3px;
  transition: all 0.2s ease;
}
.custom-radio-container:hover .custom-radio-input::before {
  background-image: url("/local/assets/academy/icons/radio-hover.svg");
}
.custom-radio-input:checked::before {
  background-image: url("/local/assets/academy/icons/radio-active.svg");
}
.custom-radio-container:hover .custom-radio-input:checked:before {
  background-image: url("/local/assets/academy/icons/radio-active.svg");
}
.custom-radio-container label {
  padding-left: 32px;
  cursor: pointer;
}

/* Animate */

/*
.header__bg {
  width: 100%;
  height: 100%;
}
*/
.header__bg-left {
  width: 100%;
  height: 100%;
  /* transform: translateX(-190px) translateY(15px); */
}
@keyframes move-in {
	0% {
		transform: translate(-250px, 40px);
	}
	100% {
		transform: translate(0, 0);
	}
}
.header__bg-left .mover {
  animation: move-in 2.2s cubic-bezier(.36,.35,.55,1.37) forwards;
}
.header__bg-left .first {
  position: absolute;
  top: 42px;
  left: -60px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  transform: translate(-250px, 40px);
  animation-delay: .5s;
}
.header__bg-left .first > div {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #f4f9ff 0%, #d1e1ff 75%);
  animation: spin 5s ease infinite;
  opacity: .5;
}
.header__bg-left .second {
  position: absolute;
  top: 148px;
  left: 172px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
}
.header__bg-left .second > div {
  width: 100%;
  height: 100%;
  transform: rotate(75deg);
  background-image: linear-gradient(90deg, #f4f9ff 0%, #d1e1ff 100%);
  animation: spin 5s ease infinite;
  opacity: .5;
}
.header__bg-left .third {
  position: absolute;
  top: 307px;
  left: 25px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  transform: translate(-250px, 40px);
  animation-delay: .2s;
}
.header__bg-left .third > div {
  width: 100%;
  height: 100%;
  transform: rotate(180deg);
  background-image: linear-gradient(90deg, #f4f9ff 0%, #d1e1ff 100%);
  animation: spin 5s ease infinite;
  opacity: .5;
}
.header__bg-right {
  position: absolute;
  top: -44px;
  right: 250px;
  width: 675px;
  height: 675px;
  border-radius: 50%;
  overflow: hidden;
  /*animation: rotate 12s linear infinite;*/
}
.header__bg-right > div {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #f4f9ff 0%, #d1e1ff 100%);
  opacity: .5;
  /*animation: spin 5s ease infinite;*/
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*  */

.animate {
  opacity: 0;
  transform: translate(0, 100px);
  -webkit-transform: translate(0, 100px);
  transition: all .3s ease-in-out;
}
.animate.animate-started {
  opacity: 1;
  transform: none;
  -webkit-transform: none;
}
.swiper-slide {
  transition-property: all !important;
}

/* END Cosnstants */
/* navbar */
.navbar {
  width: 100%;
  padding: 16px 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  position: absolute;
  margin-top: 24px;
  z-index: 3;
  box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.04),
    0px 0px 4px 0px rgba(34, 34, 34, 0.08);
}

.navbar.fixed {
  max-width: 1440px;
  position: fixed;
  margin-top: 0;
  border-radius: 0 0 8px 8px;
}

.logo {
  width: 100%;
  max-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img {
  width: -webkit-fill-available;
}

.bvi-logo-white, .bvi-logo-green {
	display: none;
}

.bvi-burger-white, .bvi-burger-green {
	display: none;
}

.navbar__menu > ul {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.navbar__menu-item {
  font-weight: 500;
}
.navbar__menu-item._language .navbar__sub-menu, .navbar__menu-item._language  .navbar__menu-item-root {
	right: -32px;
}
.navbar__menu-item.parent {
	position: relative;
	top: 2px;
}
.navbar__menu-item.parent a {
  display: flex;
}

.navbar__menu-item.parent .chevron {
  height: 0px;
  width: 9px;
  display: block;
  cursor: pointer;
  float: right;
  top: 13px;
  left: -8px;
  position: relative;
  margin-left: 12px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  transition-timing-function: ease-in-out;
}

.navbar__menu-item.parent .chevron span {
  width: 100%;
  height: 1.5px;
  -webkit-logical-height: 2px;
  background-color: #000;
  display: block;
  -webkit-transition: all 0.2s;
  transition: transform 0.2s;
  transition-timing-function: ease-in-out;
  position: relative;
}

.navbar__menu-item.parent .chevron span:first-of-type {
  transform-origin: 100% 0;
  transform: rotate(135deg);
  top: 3px;
  right: 1px;
}

.navbar__menu-item.parent .chevron span:last-of-type {
  transform-origin: 100% 0;
  transform: rotate(45deg);
}

.navbar__menu-item.parent:hover .chevron span:first-of-type {
  transform: rotate(225deg);
}

.navbar__menu-item.parent:hover .chevron span:last-of-type {
  transform: rotate(-45deg);
}

.navbar__menu-item.parent:hover .chevron {
  transform: translateY(-6px);
}

.navbar__menu-item:last-child {
  margin-right: 0;
}
.navbar__sub-menu {
  display: none;
  position: absolute;
  top: 58px;
  padding-top: 12px;
  padding-bottom: 12px;
  flex-direction: column;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.04),
    0px 0px 4px 0px rgba(34, 34, 34, 0.08);
}

.navbar__menu-item.parent:hover .navbar__sub-menu {
  display: flex;
}

.navbar__menu-item.parent:hover .navbar__menu-item-root {
  display: flex;
}

.navbar__menu-item-root {
  position: absolute;
  display: none;
  height: 35px;
  width: 120px;
}

.navbar__menu-item a {
  position: relative;
  width: fit-content;
  font-size: 16px;
  font-weight: 600;
  line-height: 140%;
  transition: all 0.2s ease;
}

.navbar__menu-item > a::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background-color: transparent;
  bottom: -4px;
  left: 0;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  transition: all 0.2s ease;
}

.navbar__menu-item > a:hover::after {
  background-color: var(--blue-main);
}

.navbar__menu-item a.active {
  color: var(--blue-main);
  border-color: var(--blue-main);
}

.navbar__sub-menu-item {
  padding: 8px 20px;
  width: fit-content;
  text-wrap: nowrap;
}

.navbar__sub-menu-item a:hover {
  color: var(--blue-main);
}

.navbar__sub-menu-item.border-bottom {
  width: 100%;
  border-bottom: 1px solid var(--blue-ghost);
}

.navbar__sub-menu-item a nobr {
  font-weight: 500;
  line-height: 140%;
}

.navbar__sub-menu-item a {
  border: none;
}

.navbar__buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar__buttons button, .navbar__buttons a {
  border-radius: 8px;
  cursor: pointer;
}

.navbar__buttons-certificate {
  font-weight: 500;
  line-height: 140%;
  border-bottom: 2px transparent solid;
  transition: all 0.2s ease;
}

.navbar__buttons-certificate:hover {
  border-color: var(--blue-main);
}

.navbar__buttons-account {
  background-color: var(--blue-main);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px 12px 20px;
  transition: all 0.2s ease;
}

.navbar__buttons-account:hover {
  background-color: var(--blue-dark);
}

.navbar__buttons-account p {
  color: #fff;
  font-size: 16px;
  font-weight: 600 !important;
}

.navbar__buttons-arrow {

  background-color: transparent;
  border: 2px var(--blue-main) solid;
  padding: 10px;

  height: 48px;
  width: 48px;
  
  transition: all 0.2s ease;
}

.navbar__buttons-arrow img {
  transition: all .2s ease;
  margin: auto;
}

.navbar__buttons-arrow:hover {
  background-color: var(--blue-dark);
  border-color: var(--blue-dark);
}
.navbar__buttons-arrow:hover img {

  filter: grayscale(1) contrast(0) brightness(5);
}


.mobile-burger-wrapper {
  display: none;
  transition: all 0.15s ease;
}

.navbar-mobile {
  display: none;
}

.burger {
  display: none;
}
/* END Navbar */

/* Header */
header {
  position: relative;
  width: 100%;
  height: 760px;
  padding-top: 184px;
  overflow: hidden;
}

.header__bg {
  position: absolute;
  top: 0;
}

.header-content {
  margin: 0 auto;
  width: 1190px;
  height: 488px;
  position: relative;
  right: 16px;
}

.header-content__title {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
  z-index: 1;
  user-select: none;
}

.header-content__product {
  position: absolute;
  bottom: -12px;
  left: 0;
  z-index: 1;
  user-select: none;
}
/* END Header */

/* Benefits block */
.benefits {
  width: 100%;
}

.benefits ul {
  display: flex;
  gap: 16px;
}

.benefits ul li {
  width: 25%;
}

.benefits__card {
  height: 100%;
  padding: 24px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.04),
    0px 0px 4px 0px rgba(34, 34, 34, 0.08);
}

.benefits__points {
  display: flex;
  gap: 2px;
}

.benefits__card p {
  font-weight: 500;
}
/* END Benefits block */

/* About courses */
.courses {
  /*position: relative;*/
  overflow: visible !important;
	/*overflow: hidden;*/
}

.courses-list {
  position: relative;
  overflow: visible !important;
}

.courses-list .courses__bg {
  position: absolute;
  left: 0;
  top: 270px;
}

.courses .swiper-buttons {
  height: 48px;
  display: none;
}

.courses__cards .col-100 {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.courses__cards-item {
  height: 348px;
  padding: 40px;
  position: relative;
  overflow: visible;
}

.courses__cards-item.swiper-slide {
  width: calc(33% - 6px);
  height: 348px;
}

.courses__cards-item .bg-form {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: var(--blue-dark);
  transition: transform 0.2s ease;
  overflow: hidden;
}

.courses__cards-item:hover .bg-form {
  transform: scale(1.012);
}

.courses__cards-item:hover .bg-shape {
  opacity: 0;
}

.courses__cards-item .tag {
  width: fit-content;
  font-size: 16px;
  font-weight: 500;
  color: var(--blue-dark);
  padding: 4px 16px 6px;
  background-color: #fff;
  border-radius: 8px;
  position: relative;
  position: relative;
  z-index: 1;
}

.courses__cards-item .title {
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 110%;
  position: relative;
  z-index: 1;
}

.courses__cards-item .content {
  color: #fff;
  font-weight: 500;
  line-height: 140%;
  position: relative;
  z-index: 1;
}

.courses__cards-item .bg-shape {
  position: absolute;
  transition: opacity 0.2s ease;
  user-select: none;
}

.courses__cards-item .bg-shape.top {
  top: 0;
  right: 0;
}

.courses__cards-item .bg-shape.bottom {
  bottom: 0;
  right: 0;
}

.about-courses__bg {
  position: absolute;
  bottom: -410px;
  right: 245px;
  user-select: none;
}
/* END About Courses */

/* Courses list */
.courses-list {
  display: flex;
  flex-direction: column;
  overflow-x: visible !important;
}

.courses-ellipse-bg {
  position: absolute;
  left: 0;
  top: 270px;
  transform: translateX(-60%);
}

.courses-list__title {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  height: 52px;
}

.courses-swiper {
  width: 100%;
  overflow: visible !important;
}

.courses-list .swiper-wrapper {
  display: flex;
  margin: 0 auto;
  width: 1440px;
}

.courses-list .swiper-slide {
  min-height: 430px;
  padding: 32px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  /*width: calc(1440px / 3 - 10px);*/
  background-color: #fff;
  box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.04),
    0px 0px 4px 0px rgba(34, 34, 34, 0.08);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.courses-list .swiper-slide:not(.in-development):hover {
  transform: scale(1.012);
  box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.08),
    0px 0px 4px 0px rgba(34, 34, 34, 0.12);
}

.courses-list-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.courses-list-item.in-development {
  cursor: default;
}

.courses-list-item .content {
  z-index: 1;
}

.courses-list-item .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.courses-list-item .tag-type {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  padding: 4px 16px;
  border-radius: 8px;
  border: 1px var(--black-main) solid;
  width: fit-content;
}

.courses-list-item .tag-enddate {
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  padding: 4px 16px;
  border-radius: 8px;
  border: 1px var(--blue-dark) solid;
  width: fit-content;
  background-color: var(--blue-dark); 
  color: #ffffff; 
}


.courses-list-item .tag-dev,
.courses-list-item .tag-update {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  padding: 4px 16px 6px;
  border-radius: 8px;
  border: 1px #1fb94b solid;
  width: fit-content;
  background-color: #1fb94b;
  color: #fff;
  display: none;
}

.courses-list-item .tag-update {
  padding: 4px 12px 6px;
}

.courses-list-item.in-development .tag-dev {
  display: block;
}

.courses-list-item.updated .tag-update {
  display: block;
}

.courses-list-item .title {
  font-size: 28px;
  font-weight: 600;
  line-height: 120%;
}

.courses-list-item .title nobr {
  font-size: 28px;
  font-weight: 600;
  line-height: 120%;
}

.courses-list-item .text {
  font-weight: 500;
  line-height: 140%;
  color: var(--black-light);
}

.courses-list-item .bg-tag {
  position: absolute;
  left: 32px;
  bottom: 56px;
  font-size: 150px;
  font-weight: 800;
  color: var(--blue-light);
  opacity: 0.1;
  user-select: none;
  pointer-events: none;
}

.courses-list-item__buttons {
  display: flex;
  gap: 12px;
}

.courses-list-item__buttons > div {
  margin-top: 0 !important;
  width: 100% !important;
}

.courses-list-item .btn-primary {
  width: 100%;
}

.courses-list-item .bg-form {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.courses-list .btn-border {
  width: fit-content;
  margin: 40px auto 0;
}
/* END Courses list */

/* NEWS */
.news-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr;
	gap: 16px;
}
.news-item {
	width: 100%;
	border-radius: 8px;
	box-shadow: 1px 2px 8px 0 rgba(34, 34, 34, 0.04), 0 0 4px 0 rgba(34, 34, 34, 0.08);
	background: #fff;
	overflow: hidden;
	transition: all .2s ease;
}
.news-item:hover {
	transform: scale(1.01);
    box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.08), 0px 0px 4px 0px rgba(34, 34, 34, 0.12);
}
.news-item._last {
    grid-row-start: 1;
    grid-row-end: 4;
}
.news-item img {
	width: 100%;
}
.news-item__date {
	margin: 24px 24px 0;
	font-weight: 500;
	color: var(--blue-main);
}
.news-item._last .news-item__date {
    margin: 20px 24px 0;
}
.news-item h4 {
	margin: 8px 24px 24px;
	font-size: 24px;
	font-weight: 600;
	line-height: 120%;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.news-item._last h4 {
    -webkit-line-clamp: 3;
}
.all-news {
	margin-left: auto;
	margin-right: auto; 
}
/* END NEWS */

/* Swipers */
.swiper-buttons {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 108px;
  height: 48px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 48px !important;
  height: 48px !important;
  padding: 8px;
  background-image: url(/local/assets/academy/icons/Chevron.svg);
  background-position: center;
  background-repeat: no-repeat;
  border: 2px #275ec7 solid;
  border-radius: 8px;
  transition: all 0.15s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  border-color: var(--blue-main);
  background-color: transparent;
  background-image: url(/local/assets/academy/icons/Chevron.svg);
}
.swiper-button-next:active,
.swiper-button-prev:active {
  border-color: var(--blue-dark);
  background-color: var(--blue-dark);
  background-image: url(/local/assets/academy/icons/Chevron-white.svg);
}

.swiper-button-prev {
  transform: rotate(180deg);
  left: 0 !important;
}

.swiper-button-next {
  right: 0 !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  content: "" !important;
}

.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
  border-color: var(--blue-main) !important;
  background-color: transparent !important;
  background-image: url(/local/assets/academy/icons/Chevron.svg) !important;
}
/* END Swipers */

/* Webinars */
.webinars {
  position: relative;
  overflow: visible !important;
}

.webinars-title {
	display: flex;
	justify-content: space-between;
}

.webinars-title .swiper-buttons {
	display: none;
}

.webinars-bg {
  position: absolute;
  right: 0;
  transform: translate(50%, -20%);
}

.webinars .container {
  display: flex;
  flex-direction: column;
}

.webinars__descr {
  font-weight: 500;
  line-height: 140%;
}

.webinars__list {
  display: flex;
  gap: 16px;
}

.webinars__card {
  width: calc(33% - 6px) !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto !important;
  padding: 24px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.04),
    0px 0px 4px 0px rgba(34, 34, 34, 0.08);
}

.webinars__card .date {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
  color: var(--blue-main);
}

.webinars__card h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
}

.webinars__card iframe {
  width: 100%;
  height: 247px;
  margin-top: 49px;
  border-radius: 8px;
  justify-self: flex-end;
}

.webinars__link {
  align-self: center;
}
/* END Webinars */

/* Forms */
.forms {
  position: relative;
}

.forms .container {
  display: flex;
  flex-direction: row;
  gap: 16px;
  position: relative;
}

.forms__bg {
  position: absolute;
  top: -50%;
  left: 0;
}

.forms__help {
  background-color: var(--blue-extra-light);
  padding: 40px 50px 50px;
  border-radius: 8px;
}

.forms__title {
  font-size: 60px;
  font-weight: 600;
  color: #fff;
  line-height: 110%;
  position: relative;
  z-index: 1;
}

.forms__subtitle {
  font-weight: 500;
  line-height: 140%;
  color: #fff;
  position: relative;
  z-index: 1;
}

.forms__help form {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.forms__help textarea {
  resize: none;
  max-height: 96px;
  min-height: 96px;
  min-width: 100%;
}

.forms__help-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
	width: 100%;
}

.forms__help-submit p {
  max-width: 300px;
  font-size: 12px;
  line-height: 140%;
  color: #fff;
}

.forms__help-submit p a {
  font-size: 12px;
  line-height: 140%;
  color: var(--blue-main);
}

.forms__help-submit .btn-border {
  background-color: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.forms__help-submit .btn-border:hover {
  background-color: var(--blue-dark);
  color: #fff;
}

.forms__partners {
  overflow: hidden;
  background-color: var(--blue-dark);
  padding: 40px 50px 50px;
  position: relative;
  border-radius: 8px;
}

.forms__parners-buttons {
  display: flex;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.form-partners-bg {
  position: absolute;
  right: 0;
  bottom: 0;
}
/* END Forms */

/* FOOTER */
.footer-wrapper {
  position: relative;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 24px 32px;
  margin-bottom: 24px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.04),
    0px 0px 4px 0px rgba(34, 34, 34, 0.08);
}

.footer-bg {
  position: absolute;
  left: 0;
  top: -80px;
  transform: translateX(-60%);
  z-index: -1;
}

.col-1__map,
.col-2__map,
.col-3__contacts {
  margin-bottom: 40px;
}
.col-3__contacts {
  margin-bottom: 47px;
}

.col-1__map li,
.col-2__map li,
.col-3__contacts li {
  font-weight: 500;
  line-height: 140%;
}

.col-1__map li a,
.col-2__map li a,
.col-3__contacts li a {
  transition: color 0.2s ease;
  font-weight: 500;
}

.col-1__map li a:hover,
.col-2__map li a:hover,
.col-3__contacts li a:hover {
  color: var(--blue-main);
}

.col-1__map li:not(:first-child),
.col-2__map li:not(:first-child),
.col-3__contacts li:not(:first-child) {
  margin-top: 12px;
}

.footer__subinfo {
  font-size: 16px;
  line-height: 140%;
  color: var(--black-light);
  transition: color 0.2s ease;
}
a.footer__subinfo:hover {
  color: var(--blue-main);
}
.footer__tiles {
	margin-top: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.footer__tiles-item {
	width: 48px;
	height: 48px;
	padding: 12px;
	background: var(--blue-ghost);
	border-radius: 8px;
	transition: background .2s ease;
	cursor: pointer;
}
.footer__tiles-item:hover {
	background: #ADCEFF;
}
/* FOOTER */

/* Success modal */
.success-modal {
  position: fixed;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100dvh;
  background-color: rgba(34, 34, 34, 0.7);
  left: 0;
  opacity: 0;
  z-index: -2;
  transition: opacity 0.15s ease;
}

.success-modal.active {
  position: fixed;
  top: 0 !important;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  z-index: 100;
  opacity: 1;
}

.success-modal__window {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background-color: #fff;
  box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.04),
    0px 0px 4px 0px rgba(34, 34, 34, 0.08);
  border-radius: 8px;
  z-index: 6;
}

.success-modal__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}

.success-modal__text {
  font-size: 16px;
  line-height: 140%;
}

.success-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.04),
    0px 0px 4px 0px rgba(34, 34, 34, 0.08);
  transition: all 0.2 ease;
  cursor: pointer;
}

.success-modal__close:hover {
  box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.08),
    0px 0px 4px 0px rgba(34, 34, 34, 0.16);
}

.success-modal__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
}
/* END Success modal */

/* Sertificate modal */
.sert-modal {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0 !important;
  left: 0;
  opacity: 0;
  z-index: -10;
}

.sert-modal.active {
  z-index: 100;
  opacity: 1;
  transition: opacity 0.2s ease;
}

.sert-modal__window {
  position: relative;
  background-color: #fff;
  border-radius: 8px;
  z-index: 100;
}

.sert-modal__window.active {
  z-index: 100;
}

.sert-modal__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.sert-enter {
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.sert-enter > img {
  max-width: 371px;
  border-radius: 8px;
  box-shadow: 4px 2px 20px 2px rgba(13, 36, 81, 0.12);
}

.sert-success,
.sert-denied,
.sert-not-available {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sert-success h5,
.sert-denied h5,
.sert-not-available h5 {
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  text-align: center;
}

.sert-success__info,
.sert-not-available__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sert-success__info p,
.sert-not-available__info p {
  font-size: 16px !important;
  text-align: center;
}

.sert-success__info span {
  font-weight: 600;
  margin-right: 2px;
}

.sert-enter,
.sert-success,
.sert-denied,
.sert-not-available {
  display: none;
}

.sert-enter.active,
.sert-success.active,
.sert-denied.active,
.sert-not-available.active {
  display: flex;
}

.sert-modal__content h4 {
  font-size: 28px;
  font-weight: 600;
  line-height: 120%;
}

.sert-modal__content p {
  font-size: 16px;
  font-weight: 500;
  line-height: 140%;
}

.sert-modal__form {
  margin-top: 4px;
  display: flex;
  gap: 16px;
}

.sert-modal__form-btn {
  padding: 12px 24px !important;
}

.sert-modal__close-btn {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.04),
    0px 0px 4px 0px rgba(34, 34, 34, 0.08);
  cursor: pointer;
  transition: box-shadow 0.15s ease;
}

.sert-modal__close-btn:hover {
  box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.08),
    0px 0px 4px 0px rgba(34, 34, 34, 0.16);
}

.sert-denied .sert-modal__form {
  margin-top: 32px;
}

.sert-denied .sert-modal__form input {
  width: 260px;
}

.sert-success__info span.sert_value{
	font-weight: 400; 
}

.sert-success__info p{
	text-align: left; 
}

/* scroll to top */
.scroll {
  width: 40px;
  height: 40px;
  position: fixed;
  bottom: -70px;
  right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.04),
    0px 0px 4px 0px rgba(34, 34, 34, 0.08);
  z-index: 90;
  cursor: pointer;
  transition: all 0.2s ease;
}
.scroll.active {
  bottom: 24px;
}
.scroll svg path {
  transition: fill 0.2s ease;
}
.scroll:hover svg path {
  fill: var(--blue-main);
}

/* END Sertificate modal */


/* Cookies */
.cookies {
  position: fixed;
  bottom: 32px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 24px;
  max-width: 1248px;
  display: none;
  align-items: center;
  gap: 80px;
  background-color: #fff;
  border: 1px solid var(--black-ghost);
  border-radius: 8px;
  box-shadow: 2px 8px 40px 0px rgba(34, 34, 34, 0.2);
  z-index: 95;
}
.cookies.active {
  display: flex;
}
.cookies__text {
  font-size: 14px;
}
.cookies__text a {
  font-size: 14px;
  color: var(--blue-main);
  transition: color 0.2s ease;
}
.cookies__text a:hover {
  color: var(--blue-dark);
}
.cookies__button {
  font-size: 14px !important;
  padding: 6px 16px !important;
}
.form-education li {
	width: fit-content;
}
.education-form li {
	width: fit-content;
}
.pick li {
	width: fit-content;
}

/* PARTNERS REQUEST */
/* NEW PARTNERS REQUEST */
.partners-request {
  padding: 40px 200px 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background-color: var(--blue-dark);
  border-radius: 8px;
}
.partners-request > div {
  position: relative;
  z-index: 1;
}
.partners-request img {
  position: absolute;
  left: 0;
  bottom: 0;
}
.partners-request__title {
  font-size: 60px;
  font-weight: 600;
  line-height: 120%;
  color: #fff;
}
.partners-request__text {
  color: #fff;
  font-weight: 500;
}
.partners-request__button.btn-primary {
  width: max-content;
}

.partners-request-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: center;
}
.partners-request-modal.active {
  display: flex;
}
#request-send-modal {
	background-color: #fff;
}
.partners-request-modal #first-step, .partners-request-modal #second-step, .partners-request-modal #request-send-modal {
  display: none;
}
.partners-request-modal #first-step.active, .partners-request-modal #second-step.active, .partners-request-modal #request-send-modal.active {
  display: flex;
}
.partners-request-modal__bg {
  width: 100%;
  height: 100%;
  background-color: #00000080;
}
.partners-request-modal form {
  position: absolute;
  max-width: 1200px;
}
.partners-request-modal__wrapper {
  flex-direction: column;
  height: fit-content;
  max-height: calc(100vh - 40px);
  padding: 32px 32px 24px;
  background-color: #f4f9ff;
  border-radius: 8px;
  overflow: auto;
}
.partners-request-modal__wrapper .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}
.partners-request-modal__wrapper .form-grid__right {
  display: grid;
  grid-template-rows: max-content auto;
}
.partners-request-modal__wrapper-content.comment textarea {
  height: 144px;
  resize: none;
}
.partners-request-modal__wrapper h4 {
  padding-right: 48px;
  font-size: 28px;
  font-weight: 600;
  line-height: 33.6px;
}
.partners-request-modal__wrapper h4 span{
  font-size: 28px;
  font-weight: 600;
  line-height: 33.6px;
  color: var(--blue-main);
}
.partners-request-modal__wrapper-content {
  padding: 24px;
  width: 560px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.04), 0px 0px 4px 0px rgba(34, 34, 34, 0.08);
}
.partners-request-modal__wrapper-content h5 {
  font-size: 20px;
  font-weight: 600;
  color: var(--blue-main);
}
.partners-request-modal__wrapper-content ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.partners-request-modal__wrapper-content ul li {
  position: relative;
  display: flex;
  width: fit-content;
  gap: 4px;
}
.partners-request-modal__wrapper-content .inputs li {
  flex-direction: column;
  width: 100%;
}
.partners-request-modal__wrapper-content .input-label {
  font-size: 16px;
  font-weight: 500;
}
.partners-request-modal-next {
  align-self: flex-end;
}
.partners-request-modal__wrapper .submit {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.partners-request-modal__wrapper .submit p {
  font-size: 12px;
}
.partners-request-modal__wrapper .submit p a {
  font-size: 12px;
  color: var(--blue-main);
  transition: color .2s ease;
}
.partners-request-modal__wrapper .submit p a:hover {
  color: var(--blue-dark);
}
.partners-request-modal__wrapper .submit .buttons {
  display: flex;
  gap: 12px;
}
.pin-file {
  height: 92px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px var(--blue-extra-light) dashed;
  border-radius: 8px;
  transition: all .2s ease;
  position: relative; 
  z-index:0; 
}
.pin-file.default:hover {
  border: 1px var(--blue-main) solid;
}
.pin-file .status-img {
  width: 24px;
  height: 24px;
}
.pin-file.default .img-default {
  display: block;
}
.pin-file.loading .img-loading {
	animation: loadingRotate 2s linear infinite;
}
@keyframes loadingRotate {
 from { transform: rotate(0); }
 to { transform: rotate(360deg); }
}
.pin-file.default .img-loading, .pin-file.default .img-success, .pin-file.default .img-delete {
  display: none;
}
.pin-file.default .text-default {
  display: block;
}
.pin-file.default .text-error, .pin-file.default .text-loading, .pin-file.default .text-success {
  display: none;
}
.pin-file.error .img-loading, .pin-file.error .img-success, .pin-file.error .img-delete  {
  display: none;
}
.pin-file.error .text-loading, .pin-file.error .text-success {
  display: none;
}
.pin-file.loading .img-default, .pin-file.loading .img-success {
  display: none;
}
.pin-file.loading .text-default, .pin-file.loading .text-error, .pin-file.loading .text-success {
  display: none !important;
}
.partners-request-modal__wrapper .pin-file.success {
	flex-direction: row;
}
.pin-file.success .img-default, .pin-file.success .img-loading {
  display: none;
}
.pin-file.success .text-default, .pin-file.success .text-error, .pin-file.success .text-loading {
  display: none !important;
}
.pin-file .text-content {
  width: 100%;
  pointer-events: none; 
}
.pin-file .text-content p {
  font-size: 16px;
}
.pin-file .text-content .text-default.mob {
  display: none;
}
.pin-file .text-content .text-default.web {
  display: block;
}
.pin-file .text-content .text-default {
  color: var(--blue-extra-light);
}
.pin-file .text-content .text-default span {
  font-size: 16px;
  color: var(--blue-main);
  transition: color .2s ease;
  cursor: pointer;
}
.pin-file .text-content .text-default span:hover {
  color: var(--blue-dark);
}
.pin-file .text-content .text-error {
  color: var(--other-red);
}
.pin-file .img-delete {
  cursor: pointer;
  z-index: 10; 
}
.partners-request-modal__wrapper .success {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.partners-request-modal__wrapper .success h5 {
  font-size: 20px;
  font-weight: 600;
}
.partners-request-modal__wrapper .success p {
  font-size: 16px;
}
.partners-request-modal__wrapper .success-buttons {
  display: flex;
  gap: 8px;
}
.partners-request-modal__wrapper .success-buttons a {
  display: block;
}
.partners-request-modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.04), 0px 0px 4px 0px rgba(34, 34, 34, 0.08);
  cursor: pointer;
  transition: box-shadow 0.15s ease;
  z-index: 10;
}
.partners-request-modal-close:hover {
  box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.08), 0px 0px 4px 0px rgba(34, 34, 34, 0.16);
}
/* END PARTNERS REQUEST */


.empty-choice {
	width: 100%;
	display: none;
	padding-top: 8px;
	margin-bottom: 0 !important;
	text-align: left;
	font-size: 12px;
	line-height: 140%;
	color: var(--other-red);
}
.empty-choice.error {
	display: block;
}


/* ========  START MEDIA  ========== */
@media screen and (max-width: 1440px) {
  * {
    font-size: 16px;
  }

  .container {
    width: 1200px;
  }

  .navbar.fixed {
    max-width: 1200px;
  }

  .navbar__buttons-account {
    padding: 10px;
  }

  .navbar__buttons-account p {
    display: none;
  }

	.navbar__buttons-arrow {
		padding: 9px;
		width: 46px;
		height: 46px;
	}

  .header-content {
    width: 1048px;
  }

	.header__bg-right {
		right: 50px;
		top: -100px;
		width: 600px;
		height: 600px;
	}

  .header-content__product {
    z-index: 0;
  }

  .courses__cards-item {
    width: calc(33% - 7px) !important;
  }

  .courses-list .swiper-wrapper {
    width: 1200px;
  }

  .courses-list {
	overflow-x: hidden;
  }

  .courses-list-item .bg-tag {
    font-size: 130px;
  }
	.webinars__card iframe {
		height: 220px;
	}
}

@media screen and (max-width: 1440px) {
  .courses-list-item.updated .tags {
    flex-direction: row;
  }
  .courses-list .swiper-slide {
    min-height: 410px;
  }
  .header-content__title {
    font-size: 120px;
  }
  .forms__parners-buttons {
	flex-direction: column;
  }
  .forms__parners-buttons a {
	width: 100%;
  }
  .forms__help-submit {
	flex-direction: column-reverse;
	gap: 12px;
  }
  .forms__help-submit br {
	display: none;
  }
  .forms__help .btn-border {
	width: 100%;
  }
}

/* xl */
@media screen and (max-width: 1200px) {
  .benefits ul {
	flex-wrap: wrap;
  }
  .benefits ul li {
	width: calc(50% - 8px);
  }
  .xl-display {
    display: block;
  }

  .xl-display-none {
    display: none;
  }

  .xl-col-33-8 {
    width: calc(33% - 8px) !important;
  }

  .xl-col-50-8 {
    width: calc(50% - 8px) !important;
  }

  .xl-col-100 {
    width: 100%;
  }

  .container {
    width: 992px;
  }

  .logo {
    width: 120px;
    height: auto;
  }

  .logo img {
    width: 100%;
    height: 100%;
  }

  /*.navbar__buttons button {
    padding: 6px;
    width: 40px;
    height: 40px;
  }*/

  .navbar.fixed {
    max-width: 992px;
  }

	.navbar {
		padding: 12px 16px;
	}
	.navbar__menu-item {
		margin-right: 0;
	}
	.navbar__buttons {
		gap: 8px;
	}
	.navbar__menu-item a {
		font-size: 14px;
	}
	.navbar__menu-item.parent .chevron {
		transform: scale(.8);
		top: 11px;
	}
	.navbar__buttons-account img, .navbar__buttons-arrow img {
		width: 20px;
		height: 20px;
	}
	.navbar__buttons-arrow {
		width: 40px;
		height: 40px;
	}
	.navbar__sub-menu {
		top: 48px;
	}
	.navbar__sub-menu li a, .navbar__sub-menu li a nobr {
		font-size: 14px;
	}

  header {
    height: 600px;
  }

	.header__bg-right {
		display: none;
	}

  .header-content {
    width: 880px;
    height: 400px;
  }

  .header-content__title {
    font-size: 85px;
  }

  .header-content__product {
    width: 640px;
  }

  .courses-list {
    overflow-x: visible !important;
  }

  .courses-list .swiper-wrapper {
    width: 992px;
    overflow-x: visible;
  }

  .forms__parners-buttons {
    flex-direction: column;
  }

  .forms__help form {
    gap: 12px;
  }

  .forms__help-submit {
    flex-direction: column-reverse;
    gap: 12px;
  }

	.partners-request-modal form {
		transform: scale(.8);
	}
	.partners-request-modal__wrapper {
		max-height: calc(100vh - 20px);
	}
	.webinars__card iframe {
		height: 188px;
	}
	.cookies {
	  max-width: calc(100% - 80px);
	}
	.partners-request {
		padding: 40px 50px 50px;
	}
	.partners-request__title {
		font-size: 50px;
	}
}

/* lg */
@media screen and (max-width: 992px) {
	* {
		font-size: 16px;
	}

	body.scroll-hidden {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		overflow: visible;
	}
.navbar__menu-item._language {
	width: fit-content;
	padding: 8px 10px;
	background-color: #fff;
	border-radius: 50px;
	box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.04);
	box-shadow: 0px 0px 4px 0px rgba(34, 34, 34, 0.08);
	font-size: 18px;
	font-weight: 500;
}
.navbar__menu-item._language a {
    display: flex;
    align-items: center;
	gap: 4px;
}

	.container {
		overflow-x: hidden;
		overflow-y: hidden;
	}

	nav.container {
		overflow-x: visible;
		overflow-y: visible;
	}

	header .container {
		overflow-x: visible;
		overflow-y: visible;
	}

  h2 {
    font-size: 55px;
    font-weight: 600;
    line-height: 120%;
  }

  .lg-display {
    display: flex;
  }

  .lg-display-none {
    display: none;
  }

	.lg-mt-8 {
		margin-top: 8px;
	}

	.lg-mt-16 {
		margin-top: 16px;
	}

  .lg-mt-24 {
    margin-top: 48px;
  }

  .lg-mt-90 {
    margin-top: 90px;
  }

  .lg-col-100 {
    width: 100% !important;
  }

  .lg-col-50-8 {
    width: calc(50% - 8px) !important;
  }

  .container {
    width: 100%;
    padding: 0 40px;
  }

  nav {
    align-items: flex-end;
  }

  .navbar {
    display: none;
  }

  .navbar-mobile {

    position: fixed;
    top: 0;
	overflow: hidden;
	width: 100vw;
	height: 100vh;
  }

  .navbar-mobile.active {
    display: flex;
	z-index:100;
  }

	.navbar-mobile .navbar-mobile__wrapper {
		display: flex;
		width: 100%;
		height:100%;
		transform: translateX(120%);
		transition: transform 0.2s ease;
		z-index: 8;
		opacity: 0;
	}

	.navbar-mobile.active .navbar-mobile__wrapper {
		position: fixed;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		transform: translateX(0);
		opacity: 1;
	}

  .navbar-mobile .navbar-mobile__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: -100%;
    background: rgba(34, 34, 34, 0.7);
    transition: all 0.3s ease;
    z-index: 9;
  }

  .navbar-mobile.active .navbar-mobile__bg {
    right: 0;
  }

  .navbar-mobile__close {
    position: absolute;
    top: 28px;
    right: 28px;
    background-color: transparent;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-mobile__close img {
    width: 100%;
    height: 100%;
  }

  .navbar-mobile__asside {
    width: 321px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: absolute;
    top: 0;
    right: 0;
    padding: 60px 24px 24px;
    background-color: #f4f9ff;
	overflow: auto;
    z-index: 10;
  }


  .navbar__menu-item:not(:last-child) {
    margin-bottom: 16px;
  }

  .navbar__menu-item a {
    font-size: 20px;
    font-weight: 600;
  }

  .navbar-mobile__contacts li:not(:last-child) {
    margin-bottom: 8px;
  }

  .navbar-mobile__contacts li p,
  .navbar-mobile__contacts li a {
    font-size: 16px;
    font-weight: 500;
  }

  .navbar-mobile__account-btn {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .navbar-mobile__account-btn p {
    color: #fff;
  }

	.navbar__buttons {
		margin-top: 24px;
	}
	.navbar__buttons .navbar__buttons-arrow {
		min-width: 48px;
		min-height: 48px;
		width: 48px;
		height: 48px;
		display: flex;
	}

  .mobile-burger-wrapper {
    position: absolute;
	top: 0;
    display: flex !important;
	align-items: center;
    justify-content: space-between;
    width: calc(100% - 80px);
    height: 60px;
    background-color: #fff;
    padding: 0 16px;
    margin-top: 16px;
    border-radius: 8px;
    box-shadow: 1px 2px 8px 0px rgba(34, 34, 34, 0.04),
      0px 0px 4px 0px rgba(34, 34, 34, 0.08);
    z-index: 3;
    transition: border-radius 0.2s ease;
  }

  .mobile-burger-wrapper.fixed {
    position: fixed;
    margin-top: 0;
    border-radius: 0 0 8px 8px;
  }

  .mobile-burger-wrapper .logo {
    width: 140px;
  }

  .burger {
    display: flex;
    right: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
  }

  header {
    padding-top: 140px;
  }

  .header__bg {
    top: -80px;
  }

  .header-content {
    width: 720px;
  }
  .header-content__product{
	width: 560px;
  }
  .header-content__title {
    font-size: 76px;
  }

  .benefits ul {
    flex-wrap: wrap;
  }

  .courses-list {
    display: flex;
    width: 100%;
    overflow-x: visible !important;
  }

  .courses-list-item .title {
    font-size: 24px;
  }

  .courses-list-item .bg-tag {
    font-size: 110px;
    bottom: 70px;
  }

	/*mainpage swiper remove for horizontal mobiles*/
	.courses-list__title {
		height: auto;
	}
  .courses-list__title .swiper-buttons {
    display: none;
  }

  .courses-list .swiper-wrapper {
    width: 100%;
    flex-direction: column;
    gap: 16px;
    padding: 0;
  }

 .courses-list .swiper-slide {
    width: 100% !important;
    height: auto;
	min-height: 330px;
    padding: 24px;
  }
	.courses-list-item.updated .tags {
    flex-direction: row;
  }
  .courses-list-item .text {
    font-size: 16px;
  }
 .courses-list-item__buttons {
    margin-top: 15px;
  }
	.courses-list-item .btn-primary {
		margin-top: 15px;
		width: 50%;
	}
  .courses__cards-item {
	padding: 28px;
  }
	.news-grid {
		grid-template-columns: 1fr;
		grid-template-rows: unset;
	}
  .webinars-title .swiper-buttons {
	display: flex;
  }
  .webinars__list{
	gap: 0;
  }
  .webinars__card.swiper-slide {
    width: calc(50% - 8px) !important;
  }
  .forms .container {
    display: flex;
    flex-direction: column;
  }
  .forms__parners-buttons {
	flex-direction: row;
  }
  .forms__parners-buttons a {
	width: 100%;
  }
  .forms__help-submit {
	flex-direction: row;
	gap: 12px;
  }
  .forms__help .btn-border {
	width: 100%;
  }

  footer {
    display: flex;
    flex-direction: column;
    padding: 24px;
  }

  .col-1__map {
    margin-bottom: 0;
	display: flex;
	flex-wrap: wrap;
  }

  .col-1__map ul {
	width: 50%;
  }

  .col-1__map ul,
  .col-2__contacts ul,
  .col-3__info ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .col-3__info ul {
    gap: 8px;
  }

  .col-1__map ul li,
  .col-2__contacts ul li,
  .col-3__info ul li {
    text-align: left;
    margin-top: 0 !important;
    font-weight: 500;
  }

  .col-1__map ul li a,
  .col-2__contacts ul li a {
    font-size: 16px;
    font-weight: 500;
  }

  .col-3__info ul li a,
  .col-3__info ul li p {
    font-size: 14px !important;
  }
  .sert-enter {
	flex-direction: column;
  }
	.sert-modal.active{
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
	}
  .sert-modal__form input {
	width: 100%;
  }
  .sert-modal__window {
	max-height: calc(100dvh - 40px);
    overflow-y: auto;
  }


	.swiper-button-next:hover,
	.swiper-button-prev:hover {
	  border-color: var(--blue-main);
	  background-color: transparent;
	  background-image: url(/local/assets/academy/icons/Chevron.svg);
	}

	.swiper-button-next:active,
	.swiper-button-prev:active {
	  border-color: var(--blue-dark);
	  background-color: var(--blue-dark);
	  background-image: url(/local/assets/academy/icons/Chevron-white.svg);
	}

	.partners-request {
		padding: 40px 50px 50px;
		flex-direction: column;
	} 
	.partners-request-modal {
		overflow: auto;
	}
	.partners-request__title {
		font-size: 50px;
	}
	.partners-request > div {
		align-self: flex-start;
	}
	.partners-request-modal form {
		transform: scale(1);
		height: 100%;
	}
	.partners-request-modal__wrapper {
		max-height: fit-content;
		border-radius: 0;
	}
	.partners-request-modal__wrapper h4 {
		padding-right: initial;
	}
	.partners-request-modal__wrapper .form-grid {
		grid-template-columns: 1fr;
		border-radius: 8px;
		overflow: hidden;
	}
	.partners-request-modal__wrapper-content {
		width: 100%;
	}
	.partners-request-modal-next {
		display: none;
	}
	#request-send-modal {
		background-color: transparent;
	}

}

/* md */
@media screen and (max-width: 767.9px) {
	header {
		height: 500px;
	}
  h2 {
    font-size: 39px;
    font-weight: 600;
    line-height: 120%;
  }
  .md-display {
    display: block;
  }

  .md-display-none {
    display: none;
  }

  .md-col-100 {
    width: 100% !important;
  }

  .md-mt-0 {
    margin-top: 0;
  }
  .mobile-burger-wrapper {
	width: calc(100% - 40px);
  }
  .small-bg-web {
    display: none;
  }

  .small-bg-mobile {
    display: block;
	z-index: -1;
  }

  .container {
    padding: 0 20px;
  }

  .navbar__menu-item {
    margin-right: 0;
  }

  .header-content {
    width: calc(100vw - 80px);
    height: 300px;
  }

  .header-content__product {
    width: 474px;
  }

  .header-content__title {
    font-size: 80px;
  }

  .benefits ul {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 590px) {
	.header-content__product {
		width: 456px;
	}
	.header-content__title {
		font-size: 70px;
	}
}
/* sm */
@media screen and (max-width: 480px) {
  h2 {
    font-size: 28px;
    font-weight: 600;
    line-height: 120%;
  }

	.animate {
		transition-delay: 0s !important;
	}
	.header-animate {
		transition-delay: 0s !important;
	}

  .sm-col-100 {
    width: 100% !important;
  }

  .sm-display {
 	display: flex;
  }

  .sm-display-none {
    display: none;
  }

  .sm-mt-0 {
    margin-top: 0;
  }

  .sm-mt-4 {
    margin-top: 4px;
  }

  .sm-mt-8 {
    margin-top: 8px;
  }

  .sm-mt-12 {
    margin-top: 12px;
  }

  .sm-mt-16 {
    margin-top: 16px;
  }

  .sm-mt-24 {
    margin-top: 24px;
  }

  .sm-mt-32 {
    margin-top: 32px;
  }

  .sm-mt-52 {
    margin-top: 52px;
  }

  .sm-mt-60 {
    margin-top: 60px;
  }

  .sm-mb-24 {
    margin-bottom: 24px;
  }

  .container {
    width: 100%;
    padding: 0 16px;
  }

  .btn-primary {
    width: 100%;
  }

  .btn-border {
    width: 100%;
  }
  .custom-radio-input::before {
    top: 1px;
  }
  /* Swiper */
  .swiper-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    width: 88px;
    height: 40px;
    overflow: visible !important;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px !important;
    height: 40px !important;
  }

	.swiper-button-next:hover,
	.swiper-button-prev:hover {
	  border-color: var(--blue-main);
	  background-color: transparent;
	  background-image: url(/local/assets/academy/icons/Chevron.svg);
	}

	.swiper-button-next:active,
	.swiper-button-prev:active {
	  border-color: var(--blue-dark);
	  background-color: var(--blue-dark);
	  background-image: url(/local/assets/academy/icons/Chevron-white.svg);
	}

  /* Nav */
  .mobile-burger-wrapper {
    width: calc(100vw - 32px);
  }
  .navbar-mobile__asside {
    height: 100dvh;
    justify-content: space-between;
  }

  /* Header */
  header {
    height: fit-content;
    padding-top: 100px;
  }

  .header__bg {
    top: 0;
    right: 0;
  }

  .header-content {
    width: 100%;
    height: 214px;
    margin-bottom: 80px;
    display: flex;
    justify-content: start;
  }

  .header-content__product {
    width: 286px;
    left: 52px;
  }

  .header-content__title {
    font-size: 60px;
    font-weight: 700;
    right: 4px;
  }

  .benefits ul {
    gap: 8px;
  }

  .benefits__card {
    width: 100%;
    padding: 16px;
  }

  .benefits__card p {
    font-size: 16px;
  }

  /* Swiper about courses */
  .courses__bg {
    display: none;
  }
  .courses__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .courses.swiper {
    max-width: 100%;
  }

  .courses .swiper-buttons {
    display: flex;
    height: 40px;
    width: 88px;
    margin-top: 5px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }

  .courses .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    flex-direction: row;
  }

  .courses__cards-item {
    padding: 24px;
    height: 300px !important;
  }

  .courses__cards-item.swiper-slide {
    width: 100% !important;
  }

  .courses__cards-item .tag {
    font-size: 14px;
    padding: 2px 16px 4px;
  }

  .courses__cards-item .title {
    font-size: 24px;
  }

  .courses__cards-item .content {
    font-size: 16px;
  }

  /* Swiper courses */
  .courses-l404__title .swiper-buttons {
    display: none;
  }

  .courses-list.swiper {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .courses-list .swiper-wrapper {
    width: 100%;
    flex-direction: column;
    gap: 16px;
    padding: 0;
  }

  .courses-list .swiper-slide {
    width: 100% !important;
    height: auto;
    padding: 24px;
  }

  .courses-list-item.updated .tags {
    flex-direction: row;
	flex-wrap: wrap;
  }

  .courses-list-item .tag-type {
    font-size: 14px;
    font-weight: 500;
    padding: 2px 8px 2px;
  }

  .courses-list-item .tag-dev {
    font-size: 14px;
    font-weight: 500;
    padding: 2px 8px 2px;
  }

  .courses-list-item .tag-enddate {
    font-size: 14px;
    font-weight: 500;
    padding: 2px 8px 2px;
  }

  .courses-list-item .tag-update {
    font-size: 14px;
    font-weight: 500;
    padding: 2px 8px 2px;
  }

  .courses-list-item .title {
    font-size: 20px;
  }

  .courses-list-item .title nobr {
    font-size: 20px;
  }

  .courses-list-item .text {
    font-size: 16px;
  }

  .courses-list-item .bg-tag {
    font-size: 110px;
    bottom: 68px;
    left: 24px;
  }
  .courses__cards-item .bg-shape.top {
    max-height: 70%;
  }

  .courses__cards-item .bg-shape.bottom {
    max-height: 80%;
  }

  .mob-bottom-128 {
    bottom: 128px !important;
  }

  .courses-list-item__buttons {
    margin-top: 52px;
    flex-direction: column;
  }

  .courses-list-item .btn-primary {
    margin-top: 66px;
	width:100%;
  }

  .courses-list .btn-border {
    margin-top: 24px;
  }

	.news-grid {
		grid-template-columns: 1fr;
		grid-template-rows: unset;
	}
	.news-item img {
		display: none;
	}
	.news-item h4, .news-item._last h4 {
		font-size: 20px;
		line-height: 140%;
		-webkit-line-clamp: inherit;
	}

  .webinars {
    /*overflow: visible !important;*/
  }

  .webinars-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
  }

  .webinars__card.swiper-slide {
    width: 100% !important;
    height: 440px !important;
  }

  .webinars__card-title h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 140%;
  }

  .webinars__card iframe {
    height: 200px;
  }

  .webinars .swiper-buttons {
    display: flex;
    flex-direction: row-reverse;
    height: 40px;
    width: 88px;
    margin-top: 5px;
  }

  .webinars-button-next,
  .webinars-button-prev {
    width: 40px !important;
    height: 40px !important;
    padding: 12px;
    background-image: url(/local/assets/academy/icons/Chevron.svg);
    background-position: center;
    background-repeat: no-repeat;
    border: 2px #275ec7 solid;
    border-radius: 8px;
    transition: background-color 0.15s ease;
  }

  .webinars-button-next:hover,
  .webinars-button-prev:hover {
    background-color: var(--blue-ghost);
  }

  .webinars-button-next:active,
  .webinars-button-prev:active {
    background-color: var(--blue-extra-light);
  }

  .webinars-button-prev {
    transform: rotate(180deg);
    left: 0 !important;
  }

  .webinars-button-next {
    right: 0 !important;
  }

  .webinars-button-next::after,
  .webinars-button-prev::after {
    content: "" !important;
  }

  .webinars .swiper-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    flex-direction: row;
  }

  .forms .container {
    gap: 0;
  }

  .forms__partners,
  .forms__help {
    padding: 24px;
  }

  .forms__title {
    font-size: 28px !important;
    font-weight: 600;
  }

  .forms__subtitle {
    font-size: 16px;
    font-weight: 500;
  }

  .forms__parners-buttons {
    flex-direction: column;
  }

  .forms__parners-buttons a {
    font-size: 14px;
    padding: 12px 18px;
  }

  .forms__help {
  }

  .forms__help form {
    gap: 12px;
  }

  .forms__help-submit {
    flex-direction: column-reverse;
    gap: 16px;
  }

  .forms__help-submit .btn-border {
    border: none;
    color: #fff;
    background-color: var(--blue-main);
  }

  .success-modal.active {
    padding: 16px;
  }

  .success-modal__text {
    text-align: center;
  }

  .footer__subinfo {
    font-weight: 400 !important;
  }

  /* Sert modal */
  .sert-modal {
	height: 100dvh;
  } 
	.sert-modal.active {
	  position: fixed;
	  top: 0;
	  bottom: 0;
	  right: 0;
	  left: 0;
	  max-height: 100dvh;
	  z-index: 100;
	  opacity: 1;
	  transition: opacity 0.2s ease;
	}
  .sert-modal__window {
	top: 0;
    width: 100%;
    height: 100%;
	max-height: 100dvh;
    border-radius: 0;
    background-color: #f4f9ff;
  }
  .sert-enter {
    padding: 72px 16px 12px;
    flex-direction: column;
  }
  .sert-enter > img {
    max-width: 100%;
  }
  .sert-modal__content {
    flex-direction: column;
  }
  .sert-modal__form {
    flex-direction: column;
    gap: 12px;
  }
  .sert-modal__form input {
    width: 100%;
  }

  .sert-success {
    padding: 116px 16px 0;
  }
  .sert-success__info {
    gap: 8px;
  }
  .sert-success__info p {
    display: flex;
    flex-direction: row;
    gap: 4px;
  }

  .sert-denied,
  .sert-not-available {
    padding: 149px 16px 0;
  }
  .sert-denied h5 {
    text-align: center;
  }
  .sert-denied .sert-modal__form {
    width: 100%;
  }
  .sert-denied .sert-modal__form input {
    width: 100%;
  }

  /* partners request */
.partners-request {
    padding: 24px;
    flex-direction: column;
  }
  .partners-request > div {
    width: 100%;
  }
  .partners-request__button.btn-primary {
    width: 100%;
  }
  .partners-request__title {
    font-size: 28px;
  }
  .partners-request img {
    display: none;
  }
  .partners-request-modal form {
    padding: 72px 16px 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #f4f9ff;
  }
  .partners-request-modal__wrapper {
    background-color: transparent;
    padding: initial;
	overflow: initial;
  }
  .partners-request-modal #request-send-modal {
    height: 100%;
	justify-content: center;
  }
  .partners-request-modal__wrapper-content {
    padding: 16px;
    width: auto;
    border-radius: 0;
    box-shadow: 1px 2px 6px 0px rgba(34, 34, 34, 0.04);
  }
  .partners-request-modal__wrapper .form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
	.partners-request-modal__wrapper .success {
		position: relative;
		height: 84px;
	}
  #first-step .partners-request-modal__wrapper-content {
    border-radius: 8px 8px 0 0;
	overflow: hidden;
  }
  .partners-request-modal__wrapper .form-grid .form-grid__right {
    border-radius: 0 0 8px 8px;
	overflow: hidden;
  }
  .pin-file .text-content .text-default.mob {
    display: block;
    font-size: 12px;
  }
  .pin-file .text-content .text-default.web {
    display: none;
  }
  .pin-file .text-content .text-error {
    font-size: 12px;
  }
  .partners-request-modal__wrapper .submit {
    flex-direction: column-reverse;
    gap: 16px;
  }
  .partners-request-modal__wrapper .submit .buttons {
    width: 100%;
  }
  .partners-request-modal__wrapper .submit p {
    margin-bottom: 24px;
  }
  .partners-request-modal__wrapper .success p {
    text-align: center;
  }
  .partners-request-modal__wrapper .success-buttons {
    flex-direction: column-reverse;
    width: 100%;
    gap: 12px;
  }
	.partners-request-modal-close {
		width: 32px;
		height: 32px;
	}


   /* scroll to top */
  .scroll {
    width: 32px;
    height: 32px;
    right: 16px;
  }
  .scroll:hover svg path {
    fill: #767676;
  }
  .scroll:active svg path {
    fill: var(--blue-main);
  }
  .scroll.active {
    bottom: 16px;
  }	

  .col-1__map {
    margin-bottom: 0;
	display: flex;
	flex-direction: column;
  }

  .col-1__map ul {
	width:100%;
  }

	/* Cookies */
  .cookies {
    bottom: 24px;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 16px;
    max-width: calc(100vw - 16px);
    flex-direction: column;
    gap: 16px;
  }
  .cookies__text {
    font-size: 12px;
  }
  .cookies__text a {
    font-size: 12px;
  }
  .cookies__button {
    font-size: 14px !important;
    padding: 6px 16px !important;
  }
}

@media (hover:hover) {
	.swiper-button-next:hover,
	.swiper-button-prev:hover {
	  border-color: var(--blue-dark);
	  background-color: var(--blue-dark);
	  background-image: url(/local/assets/academy/icons/Chevron-white.svg);
	}

	.swiper-button-next:active,
	.swiper-button-prev:active {
	  border-color: var(--blue-dark);
	  background-color: var(--blue-dark);
	  background-image: url(/local/assets/academy/icons/Chevron-white.svg);
	}
}

@media (orientation: landscape) and (pointer: coarse) {
	.header__bg {
		width: 100%;
	}
	.success-modal {
		width: 100vw;
		height: 100vh;
	}
	/*.sert-modal {
		width: 100vw;
		height: 100vh;
	}*/
}

#resume-file{
	position:absolute;
	top: 0; 
	left: 0; 
	right: 0; 
	bottom: 0; 
	width: 100%;
    height: 100%;
	z-Index: 5; 
	opacity: 0; 
}

#resume-file.hidden{
	display: none; 
}