:root {
  --font-family: 'Montserrat', sans-serif;
  --second-family: 'Grtsk Peta', sans-serif;
  --white: #fff;
  --white2: #f4f4f4;
  --white3: #f7f7f7;
  --white4: #d6d6d6;
  --white5: #fffce9;
  --black: #000;
  --lightest: #ebebeb;
  --lightest-grey: #f2f2f2;
  --lightest-grey2: #e2e2e2;
  --lightest-grey3: #c3c3c3;
  --dark-grey: #2e2e2e;
  --grey: #2b2b2b;
  --grey2: #3d3d3d;
  --grey3: #525252;
  --grey4: #7e7e7e;
  --grey5: #c8c8c8;
  --grey6: #555;
  --grey7: #b5b5b5;
  --grey8: #343434;
  --grey9: #4c4c4c;
  --grey10: #a4a4a4;
  --grey11: #939393;
  --grey12: #515151;
  --grey13: #afafaf;
  --grey14: #969696;
  --grey15: #474747;
  --main-yellow: #f9db00;
  --yellow: #ffc701;
  --yellow2: #ffe83f;
  --yellow3: #ffe945;
  --yellow5: #ffe840;
  --yellow-hover: #ffeb56;
  --red: #f00;
  --light-red: #ed6464;
  --red-accent: #ff3d3d;
  --blue: #3d68ff;
  --blue-hover: #5e82ff;
  --bg-blue: #e4ecf4;
  --orange: #c98f08;
  --green: #21cfa5;
}

/* Fonts */
@font-face {
  font-family: 'GrtskPeta';
  src:
    url('../fonts/GrtskPeta-Light.woff2') format('woff2'),
    url('../fonts/GrtskPeta-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GrtskPeta';
  src:
    url('../fonts/GrtskPeta-Regular.woff2') format('woff2'),
    url('../fonts/GrtskPeta-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GrtskPeta';
  src:
    url('../fonts/GrtskPeta-Medium.woff2') format('woff2'),
    url('../fonts/GrtskPeta-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'GrtskPeta';
  src:
    url('../fonts/GrtskPeta-Semibold.woff2') format('woff2'),
    url('../fonts/GrtskPeta-Semibold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src:
    url('../fonts/Montserrat-Light.woff2') format('woff2'),
    url('../fonts/Montserrat-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src:
    url('../fonts/Montserrat-Regular.woff2') format('woff2'),
    url('../fonts/Montserrat-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src:
    url('../fonts/Montserrat-Medium.woff2') format('woff2'),
    url('../fonts/Montserrat-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src:
    url('../fonts/Montserrat-SemiBold.woff2') format('woff2'),
    url('../fonts/Montserrat-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src:
    url('../fonts/Montserrat-Bold.woff2') format('woff2'),
    url('../fonts/Montserrat-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src:
    url('../fonts/Montserrat-ExtraBold.woff2') format('woff2'),
    url('../fonts/Montserrat-ExtraBold.woff') format('woff');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* Defaults */

*,
*::before,
*::after {
  box-sizing: inherit;
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
}

ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  list-style: none;
  margin: 0;
  padding: 0;
}


body {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
}

body.blocked-scroll {
  overflow: hidden;
}

.body_colorful {
  background-color: var(--dark-grey);
}
.body_colorful .popup__content-wrapper {
  background-color: var(--grey2);
}
.body_colorful .feedback-form__caption {
  color: var(--white);
}
.body_colorful .popup__title,
.body_colorful .popup__top-text,
.body_colorful .popup__text,
.body_colorful .popup .popup__policy {
  color: var(--white);
}
.body_colorful .popup__checkbox {
  background-color: var(--white);
  border: 1px solid var(--grey);
}
.body_colorful .form__footer-checkbox-icon:before {
  content: url('../img/icons/check-black.png');
}
.body_colorful .nav__link {
  position: relative;
  color: var(--white);
  text-decoration: none;
}
.body_colorful .header__contact-text {
  color: var(--white);
}
.body_colorful .header__contact-link {
  color: var(--lightest-grey);
}
.body_colorful .nav__submenu {
  background-color: var(--dark-grey);
}
.body_colorful .nav__submenu-link {
  color: var(--white);
}
.body_colorful .nav__submenu-link:hover {
  color: var(--grey);
  background-color: var(--lightest-grey);
}
.body_colorful .header__logo-container_scroll {
  background-color: var(--dark-grey);
}

@media (max-width: 1024px) {
  .body_colorful .header__contacts-link {
    color: var(--lightest-grey);
  }
}
@media (min-width: 1025px) {
  .body_colorful .nav__link {
    position: relative;
    color: var(--white);
    text-decoration: none;
    padding-bottom: 3px;
  }
  .body_colorful .nav__link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--lightest-grey);
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .body_colorful .nav__link:hover {
    color: var(--lightest-grey);
  }
  .body_colorful .nav__link:hover::after {
    width: 100%;
    transform: translateX(-50%) scaleX(1);
  }
}

@media (max-width: 1024px) {
  .body_colorful .header {
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
  }
  .body_colorful .nav__link:hover::after {
    width: 0;
  }
}
img {
  display: block;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

a {
  text-decoration: none;
}

[x-cloak] {
  display: none !important;
}

body {
  font-family: var(--font-family), Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--grey);
  position: relative;
  width: 100%;
}

body.no-scroll {
  overflow: hidden;
}

.swiper-wrapper {
  will-change: transform;
}

.compensate-for-scrollbar {
  padding-right: 15px;
}

.wrapper {
  max-width: 1440px;
  width: 100%;
  overflow: hidden;
  padding: 0 50px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .wrapper {
    padding: 0 30px;
  }
}
@media (max-width: 800px) {
  .wrapper {
    padding: 0 15px;
  }
}
@media (max-width: 425px) {
  .wrapper {
    padding: 0 15px;
  }
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (max-width: 1024px) {
  .main {
    margin-top: 125px;
  }
}

@media (max-width: 425px) {
  .main {
    margin-top: 85px;
  }
}

/* Custom styles*/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* Title H1 */
.main-title {
  font-weight: 700;
  font-size: 60px;
  color: var(--grey);
  margin-bottom: 30px;
}

.main-page .main-title {
  font-size: 56px;
}

@media (max-width: 1024px) {
  .main-title,
  .main-page .main-title {
    font-size: 38px;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .main-title,
  .main-page .main-title {
    font-size: 30px;
  }
}
@media (max-width: 430px) {
  .main-title,
  .main-page .main-title {
    font-size: 26px;
  }
}
/* Title H2 */
h2 {
  font-weight: 700;
  font-size: 40px;
  color: var(--grey);
  margin-bottom: 70px;
}

@media (max-width: 860px) {
  h2 {
    font-size: 34px;
    margin-bottom: 50px;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 26px;
  }
}
/* Button */
.button {
  font-family: var(--font-family), Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 16px;
  display: inline-block;
  color: var(--grey);
  background-color: var(--main-yellow);
  transition: all 0.3s ease;
  text-align: center;
  border: 1px solid transparent;
  outline: none;
  cursor: pointer;
  box-sizing: border-box;
  padding: 15px 35px;
}
.button:hover {
  background-color: var(--yellow);
}
.button_colored {
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  background-color: var(--grey);
}
.button_colored:hover {
  background-color: var(--dark-grey);
}
.button_colored:active {
  background-color: var(--dark-grey);
}
.button_transparent {
  border: 1px solid var(--grey);
  background: transparent;
}
.button_transparent:hover {
  background-color: var(--dark-grey);
  color: var(--white);
}
.button_lk {
  margin-left: 25px;
}

@media (max-width: 1024px) {
  .button_transparent:hover {
    background-color: unset;
    color: inherit;
  }
}
.button_transparent-white {
  color: var(--white);
  background: transparent;
  border: 1px solid var(--white);
}
.button_transparent-white:hover {
  color: var(--dark-grey);
  background-color: var(--white);
}
.btn-reset {
  background-color: var(--white);
  color: var(--grey);
  border: 1px solid var(--grey);
}
.btn-reset:hover,
.btn-reset:active {
  background-color: var(--yellow-hover);
}
@media (max-width: 375px) {
  .btn-reset {
    order: 1;
  }
}
.btn-accept {
  background-color: var(--main-yellow);
  border: 1px solid var(--main-yellow);
}
.btn-accept:hover,
.btn-accept:active {
  background-color: rgba(21, 157, 0, 0.75);
}

@media (max-width: 768px) {
  .button {
    width: 100%;
    text-align: center;
  }
}
.button-colorful {
  font-family: var(--font-family), Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 10px;
  outline: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 15px;
  margin: 0;
}
.button-colorful_dark {
  color: var(--white);
  background-color: var(--dark-grey);
}
.button-colorful_dark:hover {
  background-color: var(--grey2);
}
.button-colorful_light {
  color: var(--grey);
  background-color: var(--white);
}
.button-colorful_light:hover {
  background-color: var(--lightest-grey);
}
.button-colorful.active {
  background-color: var(--main-yellow);
}
.button-colorful.active:hover {
  background-color: var(--yellow);
}

@media (max-width: 768px) {
  .button-colorful {
    font-size: 14px;
  }
}

.button__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.button__img {
  max-width: 20px;
}

@media (max-width: 375px) {
  .button__icon {
    padding: 15px 20px;
  }
}

/* Margin bottom */

.margin-bottom {
  margin-bottom: 140px;
}

@media (max-width: 1024px) {
  .margin-bottom {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .margin-bottom {
    margin-bottom: 70px;
  }
}

/* Header */
.header {
  position: relative;
  background-color: var(--white);
  transition:
    transform 0.3s ease-in-out,
    background-color 0.3s ease-in-out;
  transform: translateY(0);
  padding-top: 16px;
  margin-bottom: 50px;
  z-index: 10;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  position: unset;
  overflow: visible;
}
.header__educational-information {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.header__educational-links {
  display: flex;
  gap: 30px;
}
.header__button-mobile {
  display: none;
}
.header__topLink,
.header__topBar-link {
  font-weight: 500;
  font-size: 12px;
  color: var(--grey);
  transition: all 0.3s ease;
}
.sveden.header__educational-link ul {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  max-width: 284px;
  top: 36px;
  transition: opacity 0.3s ease;
  z-index: 99;
  background-color: var(--white);
  border: 1px solid var(--lightest-grey2);
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sveden.header__educational-link:hover ul {
  opacity: 1;
  pointer-events: auto;
}
.header__topBar-link {
  display: block;
}
.header__topBar-link:hover,
.header__topLink:hover {
  color: var(--yellow);
}
.header__educational-link:hover {
  color: var(--yellow);
}
.header__topLink_colorful {
  color: var(--lightest-grey2);
}
.header__visually {
  height: 100%;
  width: 100%;
}
.header__visually-wrap {
  max-width: 27px;
  max-height: 15px;
  align-self: center;
}
.header__visually-wrap_mobile {
  display: none;
}
.header__logo-info {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.header__logo-info_mobile {
  display: none;
}
.header__logo-container {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__logo-wrap {
  max-width: 375px;
}
.header__logo-wrap_mobile,
.header__block-mobile,
.header__contacts {
  display: none;
}
.header__tels-wrap {
  display: flex;
  gap: 25px;
}
.header__contact-tel {
  font-size: 18px;
  display: flex;
  align-items: center;
  color: var(--grey);
}
.header__contact-tel_colorful {
  color: var(--white);
}
.header__contact-tel::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: var(--main-yellow);
  border-radius: 50%;
  margin-right: 15px;
  transition: background-color 0.3s ease;
}

.header__contact-tel:hover.header__contact-tel::before {
  background-color: var(--black);
}
.header__time-blocks {
  font-weight: 500;
  font-size: 14px;
  color: var(--grey3);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.header__time-block_colorful {
  color: var(--grey7);
}
.header__block {
  display: flex;
  align-items: center;
}
.header__search-wrap_desktop {
  max-width: none;
  height: 35px;
  align-self: center;
  position: absolute;
  left: auto;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  background-color: var(--lightest-grey);
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1001;
  width: 450px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  pointer-events: none;
}
.header__menu-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateX(-100%);
  animation: slideDown 0.5s ease-in-out forwards;
  z-index: 10000;
}
.header__search-desktop {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 55px;
  width: 25px;
  transition: width 0.3s ease;
  overflow: visible;
}
.header__search-desktop.active {
  width: 25px;
}
.header__search-desktop.active .header__search-desktop-trigger {
  opacity: 0;
  position: absolute;
  pointer-events: none;
}
.header__search-desktop.active .header__search-wrap_desktop {
  opacity: 1;
  pointer-events: auto;
}
.header__search-desktop-trigger {
  width: 25px;
  height: 25px;
  min-width: 25px;
  transition: opacity 0.3s ease;
  cursor: pointer;
  z-index: 2;
}
.header__topBar-search {
  width: 100%;
}
.header__topBar-button {
  background: transparent;
  border: none;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}
.header__search-icon {
  width: 21px;
}
.header__mobile {
  display: none;
}
.header__logo-container_scroll {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  transform: translateY(-100%);
  transition: 0.3s;
  z-index: 999991;
}
.header__logo-container_scroll.show {
  transform: translateY(0);
}
.header__content {
  padding: 10px 0;
}

@media (max-width: 1080px) {
  .header__contact-tel {
    font-size: 14px;
  }
  .header__contact-tel::before {
    width: 12px;
    height: 12px;
    margin-right: 8px;
  }
}
@media (max-width: 1024px) {
  .header__logo-container_scroll {
    display: none;
  }
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 99991;
    padding: 30px 0;
  }
  .header_colorful {
    background-color: var(--dark-grey);
  }
  .header_colorful .header__wrapper {
    background-color: var(--dark-grey);
  }
  .header_colorful .burger {
    background-color: var(--white);
  }
  .header_colorful .burger span {
    background-color: var(--grey);
  }
  .header_colorful .burger.open {
    background-color: var(--main-yellow);
  }
  .header__wrapper {
    height: 100dvh;
    width: 100%;
    position: fixed;
    top: -100dvh;
    display: flex;
    justify-content: flex-start;
    gap: 0;
    background-color: var(--white);
    transition: top 0.7s ease;
    z-index: 1000;
    overflow-y: auto;
    padding: env(safe-area-inset-top, 30px) 30px env(safe-area-inset-bottom, 30px) 30px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .header__wrapper.active {
    top: 0;
  }
  .header__educational-information {
    order: 1;
    margin-top: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
  .header__button {
    font-weight: 400;
    padding: 10px 25px;
  }
  .header__educational-links {
    flex-direction: column;
  }
  .header__educational-link {
    font-size: 14px;
  }
  .header__button-mobile {
    display: block;
  }
  .header__visually-wrap {
    display: none;
  }
  .header__visually-wrap_mobile {
    display: block;
    align-content: center;
    max-width: 34px;
    max-height: unset;
  }
  .header__logo-container {
    display: none;
  }
  .header__mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
  }
  .header__search-desktop {
    display: none;
  }
  .header__block-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .header__visually_mobile {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .header__logo-wrap_mobile {
    display: block;
    margin-top: 10px;
  }
  .header__logo-wrap_nav {
    margin-top: 16px;
  }
  .header__block-mobile {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 70px;
    margin: 30px 0;
  }
  .header__block-mobile::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--lightest-grey2);
    position: absolute;
    bottom: -30px;
    left: 0;
  }
  .header__contacts {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
  }
  .header__contacts::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--lightest-grey2);
    position: absolute;
    bottom: -30px;
    left: 0;
  }
  .header__contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .header__contact-text {
    font-weight: 400;
    color: var(--dark-grey);
  }
  .header__contact-link {
    color: var(--grey7);
  }
  .header__search-wrap_mobile {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
  }
  .header__search-form-mobile {
    width: 100%;
  }
  .sveden.header__educational-link ul,
  .sveden.header__educational-link:hover ul {
    display: none;
  }
}
@media (max-width: 768px) {
  .header__wrapper {
    padding: env(safe-area-inset-top, 30px) 20px env(safe-area-inset-bottom, 30px) 20px;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .header__logo-wrap {
    max-width: 250px;
  }
  .header__menu-wrap {
    padding: 10px 0;
  }
  .header__mobile {
    padding: 0 15px;
  }
  .header__educational-links {
    gap: 15px;
  }
}

@media (max-width: 600px) {
  .header__search-wrap_mobile {
    width: 100%;
  }
}
@media (max-width: 425px) {
  .header {
    padding: 15px 0;
    margin-bottom: 0;
  }
  .header__wrapper {
    width: 100%;
    padding: env(safe-area-inset-top, 15px) 15px env(safe-area-inset-bottom, 15px) 15px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .header__visually-wrap_mobile {
    max-width: 24px;
    height: 24px;
  }
  .header__logo-wrap {
    max-width: 218px;
  }
  .header__educational-links {
    width: 100%;
  }
  .header__button-mobile {
    align-self: center;
  }
}
@media (max-width: 355px) {
  .header__logo-wrap {
    max-width: 180px;
  }
}
@keyframes slideDown {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
/* Nav */
.nav {
  align-content: center;
}
.nav__links-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav__link {
  font-weight: 600;
  border-radius: 10px;
  color: var(--grey);
  transition: color 0.3s ease;
  position: relative;
  padding-bottom: 3px;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--grey3);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__link:hover {
  color: var(--grey3);
}
.nav__link:hover::after {
  width: 100%;
  transform: translateX(-50%) scaleX(1);
}
.nav__item_dropdown {
  position: relative;
}
.nav__link_dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.nav__arrow {
  transition: transform 0.3s ease;
}
.nav__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 100;
  margin-top: 5px;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}
.nav__submenu-link {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.nav__submenu-link:hover {
  background: var(--lightest-grey);
}
.nav__item_dropdown:hover .nav__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__item_dropdown .nav__arrow {
  display: none;
}

@media (max-width: 1200px) {
  .nav__links-list {
    gap: 15px;
  }
}
@media (max-width: 1024px) {
  .nav {
    position: relative;
    width: 100%;
    margin-top: 30px;
  }
  .nav::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--lightest-grey2);
    position: absolute;
    bottom: -3px;
    left: 0;
  }
  .nav__links-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    text-align: right;
    width: 100%;
  }
  .nav__wrapper {
    width: 100%;
  }
  .nav__link {
    font-size: 16px;
    display: block;
    text-align: left;
    background-color: transparent;
    padding: 20px 0;
    position: relative;
  }
  .nav__link::after {
    display: none;
  }
  .nav__item_dropdown {
    position: static;
    width: 100%;
  }
  .nav__submenu {
    position: static;
    width: 100%;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    transform: none;
    max-height: 0;
    transition:
      max-height 0.3s ease,
      opacity 0.3s ease,
      visibility 0.3s ease;
  }
  .nav__link_dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .nav__item_dropdown:hover .nav__submenu {
    opacity: 0;
    visibility: hidden;
  }
  .nav__item_dropdown .nav__arrow {
    display: block;
  }
  .nav__item_dropdown:hover .nav__arrow {
    transform: none;
  }
  .nav__item_dropdown.active .nav__submenu {
    max-height: 200px;
    opacity: 1;
    visibility: visible;
  }
  .nav__item_dropdown.active .nav__arrow {
    transform: rotate(180deg);
  }
  .nav__submenu-link {
    text-align: left;
    opacity: 0.8;
    padding: 12px 0;
  }
}
@media (max-width: 768px) {
  .nav__link {
    padding: 15px 0;
  }
}
@media (max-width: 425px) {
  .nav {
    width: 100%;
  }
  .nav__links-list {
    width: 100%;
  }
}
/* Burger */
.burger {
  display: none;
  width: 40px;
  height: 20px;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media (max-width: 1024px) {
  .burger {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    background-color: var(--grey);
    border-radius: 50%;
    position: relative;
    z-index: 99999;
    order: 2;
  }
  .burger span {
    display: block;
    height: 2px;
    width: 20px;
    background-color: var(--white);
    border-radius: 2px;
    transition: 0.3s;
  }
  .burger.open {
    background-color: var(--main-yellow);
  }
  .burger.open span:nth-child(1) {
    background-color: var(--grey);
    transform: translateY(6px) rotate(45deg);
  }
  .burger.open span:nth-child(2) {
    opacity: 0;
  }
  .burger.open span:nth-child(3) {
    background-color: var(--grey);
    transform: translateY(-6px) rotate(-45deg);
  }
}
@media (max-width: 425px) {
  .burger {
    width: 44px;
    height: 44px;
  }
}
/* Arrow */
.arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.arrow {
  width: 76px;
  height: 40px;
  padding: 10px 28px;
  font-size: 18px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.arrow__rotate,
.arrow_next {
  transform: rotate(180deg);
}
.arrow_dark-grey {
  background: var(--grey2);
  color: var(--white);
}
.arrow_dark-grey:hover {
  background-color: var(--dark-grey);
}
.arrow__dark-img {
  filter: invert(1);
}
.arrow_yellow {
  background-color: var(--main-yellow);
}
.arrow_yellow:hover {
  background-color: var(--yellow);
}
.arrow_grey {
  background-color: var(--lightest-grey);
}
.arrow_grey:hover {
  background-color: var(--lightest-grey2);
}

.arrow.is-disabled,
.arrow[aria-disabled='true'],
.arrow.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* Sub-info */
.sub-info {
  font-weight: 600;
  color: var(--grey);
  background-color: var(--main-yellow);
  padding: 10px 15px;
}
.sub-info_dark {
  color: var(--white);
  background-color: var(--grey2);
}
.sub-info_grey {
  background-color: var(--grey7);
}

@media (max-width: 425px) {
  .sub-info {
    padding: 6px 12px;
  }
}

/* Swiper */
.swiper {
  width: 100%;
  height: 100%;
  overflow: unset;
  overflow-x: clip;
}

.swiper-slide {
  height: auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Arrow down */
.arrow-container {
  position: relative;
}

.arrow-down {
  position: absolute;
  top: -98px;
  left: 50%;
  transform: translate(-50%, -50%);
  transform: rotate(0deg);
}

.arrow-element {
  display: block;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
  border-right: 2px solid rgba(0, 0, 0, 0.3);
  transform: rotate(45deg);
  margin: -10px;
  animation: animate 2s infinite;
}

.arrow-element:nth-child(2) {
  animation-delay: -0.2s;
}

.arrow-element:nth-child(3) {
  animation-delay: -0.4s;
}

@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-25px, -25px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(30px, 30px);
  }
}
@keyframes animate-mobile {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-15px, -15px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}
@media (max-width: 1024px) {
  .arrow-container {
    display: none;
  }
}
@media (max-width: 500px) {
  .arrow-element {
    animation: animate-mobile 2s infinite;
  }
  .arrow-container {
    display: block;
  }
  .arrow-down {
    top: -55px;
  }
}

/* Breadcrumbs */
.breadcrumbs {
  margin-bottom: 20px;
}
.breadcrumbs span a {
  font-weight: 400;
  font-size: 14px;
  color: var(--grey7);
}

.breadcrumbs span a name {
  transition: all 0.3s ease;
}

.breadcrumbs span a name:hover {
  color: var(--grey3);
}

.breadcrumbs span:last-child {
  font-size: 14px;
  font-weight: 400;
  color: var(--grey);
}

.breadcrumbs span::after {
  content: '•';
  color: var(--grey7);
  margin: 0 5px;
  display: inline-block;
  vertical-align: middle;
}

.breadcrumbs span:last-child::after {
  display: none;
}

/* ________________________________________ */
/* Стили для второстепенных страниц */

/* Static Banner */

.static-banner_transparent .button_transparent {
  color: var(--white);
  border: 1px solid var(--white);
}

.static-banner_transparent .button_transparent:hover {
  color: var(--white);
  border: 1px solid var(--grey);
  background-color: var(--grey);
}

.static-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.static-banner__breadcrumbs {
  position: relative;
  z-index: 10;
}

.static-banner__background {
  width: 100%;
}

.static-banner__content {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.static-banner__top-block {
  max-width: 650px;
  position: absolute;
  z-index: 1;
  padding-left: 50px;
}

.static-banner__title {
  font-weight: 700;
  font-size: 60px;
  color: var(--white);
}

.static-banner__text {
  max-width: 525px;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 40px;
}

.static-banner__buttons {
  position: relative;
  z-index: 10;
}

.static-banner__buttons_mobile {
  display: none;
}

.static-banner__subTitle {
  font-weight: 700;
  font-size: 20px;
  background-color: var(--white);
  padding: 10px 20px;
  margin-bottom: 48px;
}

@media (max-width: 1200px) {
  .static-banner__title {
    font-size: 48px;
  }

  .static-banner__top-block {
    max-width: 620px;
  }
}

@media (max-width: 768px) {
  .static-banner__top-block {
    max-width: 450px;
    padding: 20px;
  }

  .static-banner__text {
    margin-bottom: 30px;
  }

  .static-banner__button-wrap .button {
    width: unset;
  }

  .static-banner__title {
    font-size: 30px;
  }

  .static-banner__text {
    font-size: 16px;
  }

  .static-banner__background {
    position: relative;
    height: 480px;
  }

  .static-banner__buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
  }

  .static-banner__button-wrap {
    display: none;
  }
}

@media (max-width: 600px) {
  .static-banner__content {
    align-items: flex-start;
  }
  .static-banner__button-wrap {
    display: none;
  }
  .static-banner__background img {
    position: absolute;
    bottom: 0;
    height: auto;
  }
}

@media (max-width: 425px) {
  .static-banner__background img {
    height: 100%;
  }
}