:root {
  --accent: #3FB9B7;
  --white: #FFFFFF;
  --black: #231F20;
  --light: #B4D1C8;
  --dark-gray: #5A5B61;
  --light-gray: #F5F5F5;
  --hover: #259D9B;
  --swiper-pagination-color: var(--light);
  --swiper-pagination-bullet-size: 10px;
}

html,
body {
  margin: 0;
  font-family: "Inter";
  font-weight: 400;
  font-size: 16px;
  background: #fcfbfc;
}

.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: none;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}

.wrapper {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
@media (max-width: 1860px) {
  .wrapper {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .wrapper {
    padding: 0 15px;
  }
}

.btn {
  background: rgba(0, 166, 165, 0.6);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--white);
  padding: 20px 40px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: "Inter";
  cursor: pointer;
  text-align: center;
}
@media (max-width: 992px) {
  .btn {
    font-size: 14px;
  }
}
.btn:hover {
  background: var(--accent);
}
.btn-decor {
  border: 0;
  background: rgba(63, 185, 183, 0.6);
  border-radius: 0;
  border-left: 1.6px solid var(--light);
  border-right: 1.6px solid var(--light);
  position: relative;
  display: block;
  margin-left: 4px;
}
.btn-decor:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--light);
  border-radius: 50%;
  position: absolute;
  bottom: -5px;
  left: -5px;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
.btn-decor:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background: var(--light);
  border-radius: 50%;
  position: absolute;
  top: -5px;
  right: -5px;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
.btn-decor span {
  position: absolute;
  inset: 0;
  pointer-events: none;
  margin-bottom: 0 !important;
}
.btn-decor span:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 60px;
  background: var(--light);
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
.btn-decor span:after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: -1px;
  height: 1px;
  width: 60px;
  background: var(--light);
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
}
.btn-decor:hover {
  background: var(--hover);
}
.btn-decor.gray {
  background: rgba(167, 169, 172, 0.1);
}
.btn-decor.gray:hover {
  background: rgba(255, 255, 255, 0.25);
}
.btn-decor.accent {
  background: var(--accent);
}
.btn-decor.accent:hover {
  background: rgba(90, 91, 97, 0.1);
  color: var(--accent);
  border-color: var(--accent);
}
.btn-decor.accent:hover:before, .btn-decor.accent:hover:after {
  background: var(--accent);
}
.btn-decor.accent:hover span:before, .btn-decor.accent:hover span:after {
  background: var(--accent);
}
.btn-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding: 16px;
}

.title-block {
  margin: 0;
  font-size: 48px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 36px;
}
@media (max-width: 992px) {
  .title-block {
    font-size: 24px;
    margin-bottom: 24px;
  }
}
.title-block.center {
  text-align: center;
}

@-webkit-keyframes menubg {
  0% {
    height: 100px;
  }
  100% {
    height: 100dvh;
  }
}

@keyframes menubg {
  0% {
    height: 100px;
  }
  100% {
    height: 100dvh;
  }
}
.main-header {
  padding: 20px 0 30px;
  position: sticky;
  z-index: 10;
  right: 0;
  left: 0;
  top: 0;
}
.main-header:before {
  content: "";
  display: block;
  background: rgb(90, 91, 97);
  inset: 0;
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1200px) {
  .main-header {
    padding: 12px 0;
  }
  .main-header:after {
    content: "";
    display: block;
    width: 100%;
    top: 100%;
    background: var(--light);
    height: 1px;
    position: absolute;
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
  }
  .main-header.active:after {
    opacity: 0;
  }
  .main-header.active:before {
    -webkit-animation: menubg 0.4s;
    animation: menubg 0.4s;
    height: 100dvh;
  }
}
.main-header .logo {
  width: 134px;
}
.main-header .logo svg {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  max-width: 100%;
  height: auto;
}
@media (max-width: 1200px) {
  .main-header .logo {
    width: 77px;
  }
}
.main-header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 80px;
  width: 100%;
}
.main-header .right-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
.main-header .top-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: var(--white);
}
@media (max-width: 1200px) {
  .main-header .top-line {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 10px;
  }
}
.main-header .top-line .mobile-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid #00a6a5;
  border-radius: 4px;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--light);
  position: relative;
  cursor: pointer;
}
.main-header .top-line .mobile-toggle:before {
  content: "";
  display: block;
  height: 1px;
  width: 15px;
  background: var(--light);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: -2px;
}
.main-header .top-line .mobile-toggle:after {
  content: "";
  display: block;
  height: 1px;
  width: 15px;
  background: var(--light);
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  margin-top: 2px;
}
.main-header .top-line .mobile-toggle:hover:before, .main-header .top-line .mobile-toggle:hover:after {
  background: var(--white);
}
@media (max-width: 1200px) {
  .main-header .top-line .mobile-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.main-header .top-line .address {
  font-size: 16px;
}
@media (max-width: 1200px) {
  .main-header .top-line .address {
    display: none;
  }
}
.main-header .top-line .tel {
  font-size: 24px;
  color: var(--white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.main-header .top-line .tel .icon {
  display: none;
}
@media (max-width: 1200px) {
  .main-header .top-line .tel {
    font-size: 0;
    width: 40px;
    height: 40px;
    border: 1px solid #00a6a5;
    border-radius: 4px;
    color: var(--light);
  }
  .main-header .top-line .tel:hover {
    color: var(--white);
  }
  .main-header .top-line .tel .icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 40px;
    height: 40px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.main-header .top-line .tel:hover {
  color: var(--accent);
}
.main-header .top-line .right-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}
.main-header .top-line .right-info .basket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 1.6px solid rgba(180, 209, 200, 0.6);
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1200px) {
  .main-header .top-line .right-info .basket {
    width: 40px;
    height: 40px;
    border-color: var(--accent);
  }
  .main-header .top-line .right-info .basket svg {
    width: 22px;
    height: 22px;
  }
}
.main-header .top-line .right-info .basket .count {
  position: absolute;
  top: -1px;
  right: -7px;
  background: var(--accent);
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 500;
  width: 22px;
  height: 22px;
  color: var(--white);
}
@media (max-width: 1200px) {
  .main-header .top-line .right-info .basket .count {
    font-size: 8px;
    width: 18px;
    height: 18px;
    top: -4px;
    right: -4px;
  }
}
.main-header .top-line .right-info .basket .tooltip {
  background: #5a5b61;
  font-size: 14px;
  color: var(--white);
  padding: 7px;
  border: 1px solid #9aaba8;
  position: absolute;
  border-radius: 5px;
  top: calc(100% + 10px);
  right: 0;
  width: 177px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  z-index: 3;
}
@media (max-width: 992px) {
  .main-header .top-line .right-info .basket .tooltip {
    display: none;
  }
}
.main-header .top-line .right-info .basket .tooltip:before {
  content: "";
  display: block;
  width: 33px;
  height: 6px;
  background: url(../image/icon__tooltip.svg) no-repeat;
  position: absolute;
  top: -6px;
  right: 16px;
}
.main-header .top-line .right-info .basket:hover .tooltip {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.main-header .top-menu {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media (max-width: 1860px) {
  .main-header .top-menu {
    display: none;
  }
}
@media (max-width: 1200px) {
  .main-header .top-menu {
    gap: 0;
    margin: 0 auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 30px;
  }
}
.main-header .top-menu li {
  list-style-type: none;
}
@media (max-width: 1200px) {
  .main-header .top-menu li:first-child a {
    border-left: 1px solid var(--light);
  }
}
.main-header .top-menu li a {
  font-size: 16px;
  color: var(--white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1200px) {
  .main-header .top-menu li a {
    display: block;
    font-size: 14px;
    padding: 10px 15px;
    border-right: 1px solid var(--light);
  }
}
.main-header .top-menu li a:hover {
  color: var(--accent);
}
.main-header .bottom-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .main-header .bottom-line {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    padding: 0 30px;
    height: calc(100dvh - 87px);
    background: rgb(90, 91, 97);
  }
}
@media (max-width: 992px) {
  .main-header .bottom-line {
    padding: 0 15px;
  }
}
.main-header .bottom-line .top-menu,
.main-header .bottom-line .address {
  display: none;
}
@media (max-width: 1200px) {
  .main-header .bottom-line .top-menu,
  .main-header .bottom-line .address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.main-header .bottom-line .address {
  font-size: 16px;
  color: var(--white);
}
@media (max-width: 1860px) {
  .main-header .bottom-line .btn {
    display: none;
  }
}
.main-header.scrolled {
  padding: 15px 0;
}
.main-header.scrolled .logo svg {
  max-width: 120px;
}
@media (max-width: 1200px) {
  .main-header.scrolled .logo svg {
    max-width: 77px;
  }
}
.main-header.scrolled .top-menu {
  display: none;
}
.main-header.scrolled .top-line .address {
  font-size: 14px;
}
.main-header.scrolled .top-line .tel {
  font-size: 20px;
}
@media (max-width: 1200px) {
  .main-header.scrolled .top-line .tel {
    font-size: 0;
  }
}
.main-header.scrolled .top-line .right-info {
  gap: 20px;
}
.main-header.scrolled .top-line .right-info .basket {
  width: 44px;
  height: 44px;
}
@media (max-width: 1200px) {
  .main-header.scrolled .top-line .right-info .basket {
    width: 40px;
    height: 40px;
  }
}
.main-header.scrolled .top-line .right-info .basket svg {
  width: 28px;
  height: 28px;
}
@media (max-width: 1200px) {
  .main-header.scrolled .top-line .right-info .basket svg {
    width: 22px;
    height: 22px;
  }
}
@media (max-width: 1200px) {
  .main-header.scrolled .bottom-line .top-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.main-header.scrolled .lang-switcher {
  width: 71px;
  height: 44px;
  gap: 2px;
}
.main-header.scrolled .lang-switcher__active {
  font-size: 16px;
}
.main-header.scrolled .main-menu > li > a, .main-header.scrolled .main-menu > li > span {
  font-size: 14px;
  padding-top: 2px;
  padding-bottom: 2px;
}
@media (max-width: 1200px) {
  .main-header.scrolled .main-menu > li > a, .main-header.scrolled .main-menu > li > span {
    font-size: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.main-header.scrolled .btn {
  font-size: 14px;
  padding: 13px 40px;
}

.main-page .main-header {
  position: fixed;
}

.lang-switcher {
  border: 1.6px solid rgba(180, 209, 200, 0.6);
  border-radius: 5px;
  height: 60px;
  width: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  gap: 8px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1200px) {
  .lang-switcher {
    display: none;
  }
}
.lang-switcher__active {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
}
.lang-switcher__active:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
}
.lang-switcher__list {
  position: absolute;
  top: 100%;
  left: -1px;
  width: 96px;
  border: 1.6px solid rgba(180, 209, 200, 0.6);
  border-radius: 0 0 5px 5px;
  border-top: 0;
  display: none;
  background: #56575e;
  margin-top: 1px;
}
.lang-switcher__item {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 20px;
  color: var(--white);
  font-weight: 500;
}
.lang-switcher__item:not(:last-child) {
  border-bottom: 1.6px solid rgba(180, 209, 200, 0.6);
}
.lang-switcher.open {
  border-radius: 5px 5px 0 0;
}

.main-menu {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1200px) {
  .main-menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 50%;
  }
}
@media (max-width: 1200px) {
  .main-menu__wrapper {
    height: calc(100% - 125px);
    position: relative;
    width: 200%;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  }
  .main-menu__wrapper.open {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.main-menu > li {
  list-style-type: none;
}
.main-menu > li > a, .main-menu > li > span {
  font-weight: 500;
  color: var(--white);
  padding: 10px 0;
  display: block;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1200px) {
  .main-menu > li > a, .main-menu > li > span {
    font-size: 20px;
  }
}
.main-menu > li > a:hover, .main-menu > li > span:hover {
  color: var(--light);
}
.main-menu > li:not(:last-child) {
  border-right: 1.6px solid var(--light);
}
@media (max-width: 1200px) {
  .main-menu > li:not(:last-child) {
    border: 0;
  }
}
.main-menu > li:not(:last-child) > a, .main-menu > li:not(:last-child) > span {
  padding-right: 30px;
}
@media (max-width: 1200px) {
  .main-menu > li:not(:last-child) > a, .main-menu > li:not(:last-child) > span {
    padding-right: 0;
  }
}
.main-menu > li:not(:first-child) > a, .main-menu > li:not(:first-child) > span {
  padding-left: 30px;
}
@media (max-width: 1200px) {
  .main-menu > li:not(:first-child) > a, .main-menu > li:not(:first-child) > span {
    padding-left: 0;
  }
}
.main-menu .megamenu {
  position: relative;
}
@media (max-width: 1200px) {
  .main-menu .megamenu {
    position: static;
  }
  .main-menu .megamenu > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .main-menu .megamenu > a:after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url(../image/icon__menu.svg) no-repeat;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
.main-menu .megamenu .megamenu-outter {
  padding: 30px 17px;
  position: absolute;
  top: calc(100% + 40px);
  border-top: 1.6px solid var(--light);
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
}
@media (max-width: 1860px) {
  .main-menu .megamenu .megamenu-outter {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
  }
}
@media (max-width: 1200px) {
  .main-menu .megamenu .megamenu-outter {
    width: 200%;
  }
}
.main-menu .megamenu .megamenu-outter .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
@media (max-width: 1200px) {
  .main-menu .megamenu .megamenu-outter .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
    overflow: auto;
    height: 100%;
  }
}
.main-menu .megamenu .megamenu-outter .name {
  display: none;
}
.main-menu .megamenu .megamenu-outter .name .back {
  font-size: 0;
}
@media (max-width: 1200px) {
  .main-menu .megamenu .megamenu-outter .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    gap: 5px;
    margin-bottom: 10px;
  }
}
@media (max-width: 1200px) {
  .main-menu .megamenu .megamenu-outter {
    display: block;
    opacity: 0;
    visibility: visible;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    border: 0;
    top: 0;
    right: -50%;
    width: 50% !important;
    height: 100%;
    pointer-events: none;
    padding: 0;
    left: auto !important;
  }
  .main-menu .megamenu .megamenu-outter.show {
    opacity: 1;
    pointer-events: auto;
  }
  .main-menu .megamenu .megamenu-outter.lvl2 {
    -webkit-transform: translateX(calc(-100% - 30px)) !important;
    -ms-transform: translateX(calc(-100% - 30px)) !important;
    transform: translateX(calc(-100% - 30px)) !important;
  }
}
@media (max-width: 992px) {
  .main-menu .megamenu .megamenu-outter.lvl2 {
    -webkit-transform: translateX(calc(-100% - 15px)) !important;
    -ms-transform: translateX(calc(-100% - 15px)) !important;
    transform: translateX(calc(-100% - 15px)) !important;
  }
}
.main-menu .megamenu .megamenu-outter:after {
  content: "";
  display: block;
  background: rgb(90, 91, 97);
  inset: 0;
  position: absolute;
  z-index: -1;
}
@media (max-width: 1200px) {
  .main-menu .megamenu .megamenu-outter:after {
    display: none;
  }
}
.main-menu .megamenu .megamenu-outter:before {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  position: absolute;
  top: -50px;
  left: 0;
}
@media (max-width: 1200px) {
  .main-menu .megamenu .megamenu-outter:before {
    display: none;
  }
}
@media (max-width: 1200px) {
  .main-menu .megamenu .megamenu-outter .block {
    width: 100%;
  }
}
.main-menu .megamenu .megamenu-outter .block > ul {
  padding: 0;
  margin: 0;
}
.main-menu .megamenu .megamenu-outter .block > ul li {
  list-style-type: none;
}
.main-menu .megamenu .megamenu-outter .block > ul li:not(:last-child) {
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .main-menu .megamenu .megamenu-outter .block > ul li:not(:last-child) {
    margin-bottom: 0;
  }
}
.main-menu .megamenu .megamenu-outter .block .category {
  color: var(--light);
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .main-menu .megamenu .megamenu-outter .block .category {
    margin-bottom: 0;
    line-height: 44px;
    color: var(--white);
  }
}
.main-menu .megamenu .megamenu-outter .block .category:hover {
  color: var(--light);
  text-decoration: underline;
}
@media (max-width: 1200px) {
  .main-menu .megamenu .megamenu-outter .block .dropdown-lvl2 > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .main-menu .megamenu .megamenu-outter .block .dropdown-lvl2 > a:after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url(../image/icon__menu.svg) no-repeat;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
@media (max-width: 1200px) {
  .main-menu .megamenu .megamenu-outter .block .dropdown-lvl2__block {
    position: absolute;
    display: block;
    opacity: 0;
    visibility: visible;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    border: 0;
    top: 0;
    right: calc(-100% - 30px);
    width: 100% !important;
    height: 100%;
    pointer-events: none;
    padding: 0;
    left: auto !important;
    overflow: auto;
  }
  .main-menu .megamenu .megamenu-outter .block .dropdown-lvl2__block.show {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (max-width: 992px) {
  .main-menu .megamenu .megamenu-outter .block .dropdown-lvl2__block {
    right: calc(-100% - 15px);
  }
}
.main-menu .megamenu .megamenu-outter .block .dropdown-lvl2__block ul {
  padding: 0;
  margin: 0;
}
.main-menu .megamenu .megamenu-outter .block .dropdown-lvl2__block ul li {
  list-style-type: none;
}
.main-menu .megamenu .megamenu-outter .block .dropdown-lvl2__block ul li:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  .main-menu .megamenu .megamenu-outter .block .dropdown-lvl2__block ul li:not(:last-child) {
    margin-bottom: 0;
  }
}
.main-menu .megamenu .megamenu-outter .block .dropdown-lvl2__block ul li a {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
}
@media (max-width: 1200px) {
  .main-menu .megamenu .megamenu-outter .block .dropdown-lvl2__block ul li a {
    font-size: 16px;
    line-height: 44px;
  }
}
.main-menu .megamenu .megamenu-outter .block .dropdown-lvl2__block ul li a:hover {
  color: var(--light);
  text-decoration: underline;
}
.main-menu .megamenu:hover > a {
  color: var(--light);
}
.main-menu .megamenu:hover .megamenu-outter {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 1200px) {
  .main-menu .megamenu:hover .megamenu-outter {
    opacity: 1;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
  }
}
.main-menu .dropdown {
  position: relative;
}
@media (max-width: 1200px) {
  .main-menu .dropdown {
    position: static;
  }
  .main-menu .dropdown > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .main-menu .dropdown > a:after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background: url(../image/icon__menu.svg) no-repeat;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}
.main-menu .dropdown__block {
  padding: 14px 24px;
  position: absolute;
  top: calc(100% + 40px);
  border-top: 1.6px solid var(--light);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
}
@media (max-width: 1200px) {
  .main-menu .dropdown__block {
    display: block;
    opacity: 0;
    visibility: visible;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    border: 0;
    top: 0;
    right: -50%;
    width: 50%;
    height: 100%;
    pointer-events: none;
    padding: 0;
  }
  .main-menu .dropdown__block.show {
    opacity: 1;
    pointer-events: auto;
  }
}
.main-menu .dropdown__block .name {
  display: none;
}
.main-menu .dropdown__block .name .back {
  font-size: 0;
}
@media (max-width: 1200px) {
  .main-menu .dropdown__block .name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--white);
    font-size: 20px;
    font-weight: 700;
    gap: 5px;
    margin-bottom: 10px;
  }
}
.main-menu .dropdown__block > ul {
  margin: 0;
  padding: 0;
}
.main-menu .dropdown__block > ul:after {
  content: "";
  display: block;
  background: rgb(90, 91, 97);
  inset: 0;
  position: absolute;
  z-index: -1;
}
@media (max-width: 1200px) {
  .main-menu .dropdown__block > ul:after {
    display: none;
  }
}
.main-menu .dropdown__block > ul:before {
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  position: absolute;
  top: -50px;
  left: 0;
}
@media (max-width: 1200px) {
  .main-menu .dropdown__block > ul:before {
    display: none;
  }
}
.main-menu .dropdown__block > ul li {
  list-style-type: none;
}
.main-menu .dropdown__block > ul li a {
  display: block;
  font-weight: 600;
  color: var(--white);
  line-height: 44px;
  white-space: nowrap;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.main-menu .dropdown__block > ul li a:hover {
  color: var(--light);
  text-decoration: underline;
}
.main-menu .dropdown:hover > a {
  color: var(--light);
}
.main-menu .dropdown:hover .dropdown__block {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 1200px) {
  .main-menu .dropdown:hover .dropdown__block {
    opacity: 1;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
  }
}

section {
  padding: 80px 0;
}
@media (max-width: 992px) {
  section {
    padding: 60px 0;
  }
}

.scrollbar-inner > .scroll-element .scroll-element_track {
  background: transparent;
}
.scrollbar-inner > .scroll-element .scroll-bar {
  background: var(--accent);
  opacity: 1;
}
.scrollbar-inner > .scroll-element.scroll-y {
  width: 7px;
  right: 0;
}

.bottom-text {
  padding: 65px 0 80px;
}
@media (max-width: 767px) {
  .bottom-text {
    padding: 30px 0;
  }
}
.bottom-text .text {
  font-size: 18px;
  color: var(--black);
  max-height: 120px;
  position: relative;
  overflow: hidden;
  -webkit-transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
  transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}
@media (max-width: 767px) {
  .bottom-text .text {
    font-size: 16px;
  }
}
.bottom-text .text:after {
  content: "";
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(#fff));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 40px;
  pointer-events: none;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.bottom-text .text p {
  margin: 0;
}
.bottom-text .text p:not(:last-child) {
  margin-bottom: 20px;
}
.bottom-text .show-more {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  cursor: pointer;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .bottom-text .show-more {
    font-size: 14px;
  }
}
.bottom-text .show-more span {
  display: none;
}
.bottom-text .show-more strong {
  font-weight: 400;
}
.bottom-text .show-more:after {
  content: "";
  display: block;
  background: url(../image/icon__arrow-down-accent.svg) no-repeat;
  width: 24px;
  height: 24px;
}
.bottom-text.show .text {
  max-height: 10000px;
  -webkit-transition: max-height 1s ease-in-out;
  transition: max-height 1s ease-in-out;
}
.bottom-text.show .text:after {
  opacity: 0;
}
.bottom-text.show .show-more strong {
  display: none;
}
.bottom-text.show .show-more span {
  display: block;
}
.bottom-text.show .show-more:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.social a {
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--accent);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.social a:hover {
  color: var(--hover);
}

.main-footer {
  background: var(--light-gray);
  padding: 80px 0 24px;
}
@media (max-width: 992px) {
  .main-footer {
    padding: 45px 0 24px;
  }
}
.main-footer .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 992px) {
  .main-footer .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}
.main-footer .inner .logo-info {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  max-width: 295px;
  position: relative;
}
@media (max-width: 992px) {
  .main-footer .inner .logo-info {
    max-width: 100%;
  }
}
.main-footer .inner .logo-info .logo-block {
  font-size: 0;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .main-footer .inner .logo-info .logo-block {
    width: 103px;
  }
  .main-footer .inner .logo-info .logo-block svg {
    width: 100%;
    height: auto;
  }
}
.main-footer .inner .logo-info .info {
  font-size: 16px;
  color: var(--black);
}
@media (max-width: 992px) {
  .main-footer .inner .logo-info .info {
    padding-right: 102px;
  }
}
.main-footer .inner .logo-info .to-top {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(90, 91, 97, 0.4);
  border-radius: 50%;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1px solid var(--light);
}
@media (max-width: 992px) {
  .main-footer .inner .logo-info .to-top {
    left: auto;
    bottom: auto;
    right: 0;
    top: 0;
  }
}
.main-footer .inner .logo-info .to-top:hover {
  background: var(--dark-gray);
}
.main-footer .inner .menu-block {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 45px;
}
@media (max-width: 1860px) {
  .main-footer .inner .menu-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .main-footer .inner .menu-block {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 992px) {
  .main-footer .inner .menu-block .block {
    padding: 18px 0;
    border-bottom: 1px solid var(--light);
  }
}
.main-footer .inner .menu-block .block .name {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 700;
}
@media (max-width: 992px) {
  .main-footer .inner .menu-block .block .name {
    position: relative;
  }
  .main-footer .inner .menu-block .block .name:after {
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    background: url(../image/icon__arrow-down-small.svg) no-repeat;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -6px;
  }
}
.main-footer .inner .menu-block .block .name.active:after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.main-footer .inner .menu-block .block .bottom-menu {
  padding: 0;
  margin: 0;
  margin-top: 16px;
}
@media (max-width: 992px) {
  .main-footer .inner .menu-block .block .bottom-menu {
    display: none;
  }
}
.main-footer .inner .menu-block .block .bottom-menu li {
  list-style-type: none;
}
.main-footer .inner .menu-block .block .bottom-menu li a {
  font-size: 16px;
  color: var(--black);
  line-height: 34px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 992px) {
  .main-footer .inner .menu-block .block .bottom-menu li a {
    font-size: 14px;
  }
}
.main-footer .inner .menu-block .block .bottom-menu li a:hover {
  color: var(--hover);
}
.main-footer .inner .info-block {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 992px) {
  .main-footer .inner .info-block {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--light);
  }
}
.main-footer .inner .info-block strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  line-height: 34px;
}
@media (max-width: 992px) {
  .main-footer .inner .info-block strong {
    font-size: 14px;
    line-height: 20px;
  }
}
.main-footer .inner .info-block span {
  line-height: 34px;
  font-size: 16px;
  color: var(--black);
}
@media (max-width: 992px) {
  .main-footer .inner .info-block span {
    font-size: 14px;
    line-height: 20px;
    display: block;
    margin-bottom: 20px;
  }
}
.main-footer .inner .info-block span a {
  color: var(--black);
}
.main-footer .inner .info-block .social {
  margin-top: 24px;
}
@media (max-width: 992px) {
  .main-footer .inner .info-block .social {
    margin-top: 0;
  }
}
.main-footer .inner .info-block .btn-block {
  margin-top: 24px;
}
.main-footer .inner .info-block .btn-block .btn {
  display: inline-block;
  white-space: nowrap;
}
.main-footer .bottom {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  padding-top: 24px;
  margin-top: 35px;
  border-top: 1px solid var(--light);
}
@media (max-width: 992px) {
  .main-footer .bottom {
    margin-top: 0;
    border-top: 0;
    font-size: 14px;
  }
}

.contact-form {
  max-width: 405px;
}
.contact-form .custom-input {
  background: rgba(255, 255, 255, 0.38);
  height: 59px;
  padding: 20px 40px;
  font-size: 18px;
  color: var(--white);
  outline: none;
  border: 0;
  width: 100%;
  font-family: "Inter";
}
.contact-form .custom-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-form .custom-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-form .custom-input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-form .custom-input::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.contact-form .custom-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 992px) {
  .contact-form .custom-input {
    padding-left: 20px;
  }
}
.contact-form .input-block {
  margin-bottom: 20px;
  position: relative;
}
.contact-form .input-block.with-error {
  padding-bottom: 25px;
}
.contact-form .input-block + .checkbox-block {
  margin-top: -6px;
}
.contact-form .input-block.show-error .custom-input {
  border: 1px solid #ff9696;
}
.contact-form .error {
  font-size: 14px;
  color: #ff9696;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 992px) {
  .contact-form .error {
    font-size: 11px;
  }
}
.contact-form .checkbox-block {
  position: relative;
}
.contact-form .checkbox-block.with-error {
  padding-bottom: 25px;
}
.contact-form .checkbox-block input {
  display: none;
}
.contact-form .checkbox-block input + label {
  display: block;
  font-size: 14px;
  color: var(--white);
  padding-left: 36px;
  position: relative;
  cursor: pointer;
  text-align: left;
}
@media (max-width: 992px) {
  .contact-form .checkbox-block input + label {
    font-size: 12px;
  }
}
.contact-form .checkbox-block input + label:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: rgba(217, 217, 217, 0.2);
  border-radius: 4px;
  border: 1px solid var(--light);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.contact-form .checkbox-block input + label:after {
  content: "";
  display: block;
  background: url(../image/icon__checkbox.svg) no-repeat;
  width: 20px;
  height: 20px;
  background-position: 50% 50%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.contact-form .checkbox-block input:checked + label:after {
  opacity: 1;
}
.contact-form .btn-block {
  margin-top: 40px;
  max-width: 355px;
}
.contact-form .btn-block .btn {
  width: 100%;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(56, 56, 56, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  opacity: 0;
  z-index: 11;
  pointer-events: none;
}
.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.popup {
  position: fixed;
  inset: 0;
  z-index: 12;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  visibility: hidden;
  pointer-events: none;
}
.popup-wrapper {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  grid-area: 1/1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  max-width: 100%;
  margin: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  overflow: auto;
  padding: 20px;
  pointer-events: none;
}
@media (max-width: 992px) {
  .popup-wrapper {
    padding: 15px;
  }
}
.popup-wrapper:before, .popup-wrapper:after {
  display: block;
  content: "";
}
.popup-wrapper:before {
  margin-bottom: auto;
}
.popup-wrapper:after {
  margin-top: auto;
}
.popup-block {
  background: rgba(90, 91, 97, 0.7);
  -webkit-backdrop-filter: blur(40px);
  backdrop-filter: blur(40px);
  max-width: 655px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  pointer-events: auto;
}
.popup-block .inner {
  padding: 70px 75px;
  position: relative;
}
@media (max-width: 992px) {
  .popup-block .inner {
    padding: 50px 20px;
  }
}
.popup-block .inner .close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  color: var(--white);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.popup-block .inner .close:hover {
  color: var(--accent);
}
.popup-block .inner .title {
  text-align: center;
  color: var(--white);
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .popup-block .inner .title {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.popup-block .inner .desc {
  color: var(--white);
  text-align: center;
  font-size: 18px;
  margin-bottom: 45px;
}
@media (max-width: 992px) {
  .popup-block .inner .desc {
    font-size: 16px;
    margin-bottom: 35px;
  }
}
.popup-block .inner .contact-form {
  margin-right: auto;
  margin-left: auto;
}
.popup-block .inner .btn-block {
  max-width: 100%;
}
.popup.show {
  opacity: 1;
  visibility: visible;
}

.slider-navigation {
  padding-bottom: 5px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.slider-navigation .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}
.slider-navigation .top .swiper-pagination-progressbar {
  width: 56%;
  position: static;
  height: 8px;
  background: #d9d9d9;
  border-radius: 1000px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .slider-navigation .top .swiper-pagination-progressbar {
    height: 5px;
  }
}
.slider-navigation .top .swiper-pagination-progressbar span {
  background: var(--accent);
  opacity: 1;
  border-radius: 1000px;
}
.slider-navigation .top .swiper-pagination-bullets {
  top: 0;
  pointer-events: none;
}
.slider-navigation .top .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: transparent;
  border: 1px solid var(--light);
  opacity: 1;
  pointer-events: auto;
}
.slider-navigation .top .swiper-pagination-bullets .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--accent);
  border-color: var(--accent);
}
.slider-navigation .top .nav {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(90, 91, 97, 0.4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border: 1px solid var(--light);
}
@media (max-width: 992px) {
  .slider-navigation .top .nav {
    width: 44px;
    height: 44px;
  }
}
.slider-navigation .top .nav:hover {
  background: var(--dark-gray);
}
.slider-navigation .btn-block {
  text-align: center;
  margin-top: 40px;
}
.slider-navigation .btn-block .btn {
  width: auto;
  display: inline-block;
}

.breadcrumbs {
  padding: 0;
  margin: 0;
  display: block;
  padding: 40px 0;
}
@media (max-width: 1200px) {
  .breadcrumbs {
    padding: 24px 0;
  }
}
.breadcrumbs__item {
  list-style-type: none;
  display: inline;
}
.breadcrumbs__item span {
  color: var(--light);
  font-weight: 500;
}
@media (max-width: 1200px) {
  .breadcrumbs__item span {
    font-size: 14px;
  }
}
.breadcrumbs__item:not(:last-child) {
  border-right: 1px solid var(--light);
  padding-right: 10px;
  margin-right: 10px;
}
.breadcrumbs__link {
  color: var(--accent);
  font-weight: 500;
}
@media (max-width: 1200px) {
  .breadcrumbs__link {
    font-size: 14px;
  }
}

.gray-bg {
  background: var(--light-gray);
}

.white-bg {
  background: transparent !important;
}