@charset "UTF-8";
.header__wrapper {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
}
.header__left {
  flex-basis: 33%;
}
.header__right {
  flex-basis: 67%;
  display: flex;
  flex-direction: column;
}
.header__logo {
  display: flex;
  align-items: center;
}
.header__img {
  margin-right: 15px;
  flex-shrink: 0;
}
.header__logo-desc {
  font-size: 16px;
  color: #292828;
  line-height: 1.3;
}
.header__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}
.header__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__info {
  display: flex;
  margin-right: 15px;
}
.header__info span {
  color: #787878;
  font-size: 14px;
  line-height: 1.3;
}
.header__ic {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}
.header__phone {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
}
.header__btn {
  border-radius: 4px;
  background: #0566B4;
  color: #fff;
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
  margin-left: 10px;
}
.header__btn:hover {
  background: #5EAD25;
}
.header__bluebtn {
  padding-left: 7px;
  cursor: pointer;
  height: 40px;
}
.header__lk-mobile {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .header__logo-desc {
    font-size: 12px;
  }
  .header__info span {
    font-size: 12px;
  }
  .header__phone {
    font-size: 16px;
  }
}
.desktop-hidden {
  display: none;
}

@media only screen and (max-width: 1024px) {
  .desktop-hidden {
    display: flex;
    flex-direction: column;
    margin: 20px 0 30px 0;
  }
  .mobile-phones {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
  }
  .mobile-phones a {
    margin-bottom: 10px;
  }
  .header__top {
    display: none;
  }
  .header__bottom {
    justify-content: flex-end;
  }
  .mobile-info {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 768px) {
  .header__btn {
    display: none;
  }
  .header__lk-mobile {
    display: flex;
    justify-content: space-between;
  }
  .header__lk-mobile .header__icon-lk {
    fill: #000;
  }
  .header__lk-mobile .cart-txt {
    display: none;
  }
  .header__lk-mobile .header__cart {
    margin: 0 10px;
  }
  .header__logo-desc {
    display: none;
  }
}
.mm-btn[data-target="#mm-1"] {
  display: none;
}

.header {
  position: absolute;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 1200px) {
  .menu-fixed {
    box-shadow: 0 4px 15px -10px rgba(0, 0, 0, 0.6);
    position: fixed;
    animation: slide-down 0.7s;
    z-index: 1000;
    backdrop-filter: blur(15px);
    top: 0;
    width: 100%;
  }
  .menu-fixed .header__contact span {
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  }
  .menu-fixed .header__phone span {
    display: none;
  }
  .menu-fixed .header__logo img {
    max-width: 60%;
  }
  .menu-fixed .header__nav {
    padding: 0;
    margin: 0;
  }
  .menu-fixed .open .nav__item {
    padding: 0;
  }
  .menu-fixed .nav__link {
    font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  }
  .menu-fixed .header__logo-phone {
    display: flex;
  }
  .menu-fixed .header__nav::before {
    display: none;
  }
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.bgmain {
  overflow: hidden;
}
.bgmain hr {
  border-top: 1px solid #ffffff;
}
.bgmain__slider {
  z-index: 0;
  left: 0;
  top: 0;
  height: 750px;
}
.bgmain .swiper-slide img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.bgmain__overlay {
  position: absolute;
  background-color: #000000;
  width: 100%;
  height: 100%;
  z-index: 60;
  top: 0;
  left: 0;
}
.bgmain__info {
  position: absolute;
  z-index: 60;
  left: 0;
  top: 0;
  width: 100%;
}
.bgmain__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1rem, 0.8875rem + 0.5625vw, 1.5625rem);
  font-weight: 700;
  color: #fff;
  padding-top: 20px;
}
.bgmain__phone:hover {
  color: #fff;
}
.bgmain__heading {
  color: #fff;
  padding: 200px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.bgmain__heading h1 {
  font-size: clamp(1.875rem, 1.5rem + 1.875vw, 3.75rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  text-align: center;
}
.bgmain__heading p {
  font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
  line-height: 1.5;
  margin-bottom: 30px;
  text-align: center;
}

@media only screen and (max-width: 1200px) {
  .bgmain hr {
    display: none;
  }
  .bgmain__top {
    display: none !important;
  }
}
@media only screen and (max-width: 578px) {
  .bgmain__heading {
    padding: 100px 0;
  }
  .bgmain__slider {
    height: 550px;
  }
}
.btn {
  display: inline-flex;
  padding: 20px 40px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  border-radius: 0;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

.btn-green {
  background: #17A8BF;
  border: 1px solid #17A8BF;
  color: #fff;
}
.btn-green:hover {
  background: rgb(25.7406542056, 188.0186915888, 213.7593457944);
}

.btn-gray {
  background: #444B53;
  border: 1px solid #444B53;
  color: #fff;
}
.btn-gray:hover {
  background: rgb(79.4834437086, 87.6655629139, 97.0165562914);
}

.btn-transparent {
  border: 1px solid #17A8BF;
  background: transparent;
  color: #fff;
}
.btn-transparent:hover {
  background: #17A8BF;
  color: #fff;
}

.sidebar {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: end;
  justify-content: space-between;
  padding: 30px 15px 30px 10px;
  background: #23282F;
  position: fixed;
  left: 0;
  width: 320px;
}
.sidebar__contacts {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 15px;
  padding-right: 20px;
}
.sidebar__phone {
  color: #fff;
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  font-weight: 700;
  white-space: nowrap;
  display: flex;
  justify-content: end;
}
.sidebar__phone:hover {
  color: #fff;
}
.sidebar__time {
  color: #fff;
  opacity: 0.6;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  display: flex;
  justify-content: end;
  white-space: nowrap;
}
.sidebar__email {
  display: flex;
  gap: 5px;
  align-items: center;
  color: #fff;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.sidebar__email:hover {
  color: #17A8BF;
}
.sidebar__icon {
  width: 20px;
  height: 20px;
  fill: #17A8BF;
}
.sidebar__socials {
  display: flex;
  gap: 10px;
}
.sidebar__socials img {
width: 51px;
height: 51px;
}

@media only screen and (max-width: 1400px) {
  .sidebar {
    width: auto;
  }
}
@media only screen and (max-width: 1200px) {
  .sidebar {
    flex-direction: row;
    align-items: center;
    position: relative;
    height: auto;
    padding: 10px 15px 10px 15px;
    gap: 10px;
  }
  .sidebar__socials {
    display: none;
  }
  .sidebar__contacts {
    padding-right: 0;
    gap: 5px;
  }
}
@media only screen and (max-width: 576px) {
  .sidebar__time, .sidebar__email {
    display: none;
  }
}
.nav__contacts {
  display: none;
}

@media only screen and (max-width: 946px) {
  .sidebar .nav__contacts {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    padding-left: 15px;
    padding-right: 15px;
    gap: 10px;
  }
  .sidebar .nav__contact {
    display: flex;
    align-items: center;
  }
  .sidebar .nav__contact a {
    color: #fff;
    opacity: 0.6;
  }
  .sidebar .nav__icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: #17A8BF;
    flex-shrink: 0;
  }
  .sidebar .nav__phone a {
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    line-height: 1.3;
  }
  .sidebar .nav__email a {
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    opacity: 0.6;
  }
  .sidebar .nav__adress p {
    color: #fff;
    font-size: 14px;
    line-height: 1.3;
    opacity: 0.6;
  }
  .sidebar .header__mobile-btn {
    align-self: flex-start;
    margin-top: 20px;
  }
}
.tizers {
  background: #2B323A;
}
.tizers__img img {
  box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.13);
}

.tizer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tizer__title {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  line-height: 1.3;
  font-family: "SFProDisplay", sans-serif;
}
.tizer__line {
  display: block;
  width: 53px;
  height: 3px;
  background: #17A8BF;
}
.tizer__text {
  color: #fff;
  opacity: 0.5;
  line-height: 1.5;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.tizer__bottom {
  color: #fff;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  margin-top: 40px;
  width: 70%;
}

@media only screen and (max-width: 578px) {
  .tizers__img {
    margin: 20px 0;
  }
  .tizer__bottom {
    margin: 0;
  }
}
.swiper-scrollbar-drag {
  background: #17A8BF;
  height: 3px;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  height: 1px;
}

.swiper-scrollbar {
  background: rgba(255, 255, 255, 0.4470588235);
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: #fff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  position: relative;
  background: #17A8BF;
  padding: 3px;
  border: 1px solid #17A8BF;
  opacity: 1;
}
.swiper-pagination-bullet-active::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 1px solid #17A8BF;
  position: absolute;
  border-radius: 100%;
  left: -4px;
  top: -4px;
}

.portfolio {
  background: #444B53;
  overflow: hidden;
}
.portfolio__slider {
  margin-right: -40%;
}
.portfolio__nav-wrp {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.portfolio__scrollbar {
  position: relative !important;
  bottom: 0 !important;
  left: 0 !important;
  display: flex;
  justify-content: start;
  align-items: center;
}
.portfolio__pagination {
  position: relative !important;
  display: flex;
  gap: 4px;
  justify-content: start;
  align-items: center;
  bottom: 0 !important;
  flex-basis: content;
}
.portfolio__btns {
  display: flex;
  gap: 10px;
}
.portfolio__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.portfolio__btn:hover {
  background: rgba(255, 255, 255, 0.4352941176);
}
.portfolio__slide {
  width: 100%;
  height: 344px;
  display: block;
  padding-bottom: 60px;
}
.portfolio__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.portfolio__number {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 30;
  font-weight: 700;
  font-size: clamp(3.75rem, 3.25rem + 2.5vw, 6.25rem);
  color: #fff;
}

@media only screen and (max-width: 967px) {
  .portfolio {
    background: #444B53;
    overflow: hidden;
  }
  .portfolio__slider {
    margin-right: 0;
  }
  .portfolio__slide {
    padding-bottom: 20px;
  }
}
.project__pills{
  display: flex;
  flex-wrap: wrap;
  gap : 10px;
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: transparent;
}
.project__pills button{
  border-radius: 0!important;
}
.project {
  width: 100%;
  background: #2B323A;
  display: flex;
  flex-direction: column;
}
.project__number {
  background: #fff;
  padding: 4px;
  font-size: 14px;
  position: absolute;
  left: 20px;
  top: 20px;
  color: #66727F;
}
.project__img {
  width: 100%;
}
.project__img img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.project__info {
  background: #2B323A;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  height: 100%;
}
.project__title {
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  color: #fff;
  line-height: 1.3;
}
.project__wrp {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-top: auto;
}
.project__block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project__blocks {
  display: flex;
  gap: 10px;
}
.project__label {
  font-size: 14px;
  opacity: 0.4;
  color: #fff;
}
.project__num {
  font-weight: 700;
  font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
  color: #fff;
  white-space: nowrap;
  margin-top: auto;
}
.project__btn:hover {
  color: #fff;
}

@media only screen and (max-width: 578px) {
  .project__btn {
    padding: 20px 20px;
  }
}
.chars {
  margin: 30px 0;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

.chars__item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: baseline;
  line-height: 1.3;
}

.chars__term {
  position: relative;
  overflow: hidden;
  flex-grow: 1;
  color: #ffffff;
  font-weight: 400;
}

.chars__val {
  margin: 0;
  color: rgba(255, 255, 255, 0.4078431373);
  line-height: 1.3;
}

.chars__term::after {
  content: "..................................................................................................................................................................";
  position: absolute;
  color: #66727F;
  font-weight: 300;
}

.prices {
  background: #2B323A;
}

.pblock {
  color: #fff;
  background: #444B53;
  padding: 30px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.pblock__top {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pblock h4 {
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  font-weight: 700;
  line-height: 1.3;
}
.pblock ul,
.pblock ol {
  padding-left: 20px;
}
.pblock ul {
  list-style-type: disc;
}
.pblock ol {
  list-style-type: decimal;
}
.pblock p {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  opacity: 0.6;
}
.pblock li {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  opacity: 0.6;
  line-height: 1.3;
  padding: 4px 0;
}
.pblock__bottom {
  margin-top: auto;
}
.pblock__price {
  font-size: clamp(1.25rem, 1.2rem + 0.25vw, 1.5rem);
  font-weight: 700;
  margin: 20px 0;
}
.pblock__btns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pblock-green {
  background: #17A8BF;
}
.pblock-green .btn-green {
  background: #fff;
  color: #66727F;
  border: 1px solid #fff;
}
.pblock-green .btn-green:hover {
  background: transparent;
  color: #fff;
}
.pblock-green .btn-transparent {
  border: 1px solid #fff;
}
.pblock-green .btn-transparent:hover {
  background: rgba(255, 255, 255, 0.4352941176);
}

.steps {
  overflow: hidden;
  position: relative;
  z-index: 80;
}
.steps .swiper-wrapper {
  align-items: stretch;
}
.steps .swiper-slide {
  height: auto !important;
  display: flex;
}
.steps .heading-subtitle {
  margin-bottom: 90px !important;
  display: block;
}
.steps__slider {
  margin-top: -45px;
  margin-right: -40%;
}
.steps hr {
  margin-right: -40%;
}

.step__top {
  width: 59px;
  height: 59px;
  border-radius: 50%;
  display: block;
  background: rgba(23, 169, 191, 0.3411764706);
  position: absolute;
  top: 0;
  left: 25px;
  z-index: 60;
}
.step__top::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #17A8BF;
}
.step__bottom {
  display: flex;
  flex-direction: column;
  margin-top: 80px;
  height: 100%;
}
.step__triangle {
  fill: #17A8BF;
  width: 52px;
  height: 31px;
  margin-bottom: -6px;
  margin-left: 30px;
}
.step__block {
  background: #17A8BF;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
  height: 100%;
}
.step__icon {
  width: 76px;
  height: 61px;
  fill: #fff;
}
.step__title {
  font-weight: 700;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  line-height: 1.3;
}
.step__text {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  line-height: 1.3;
  opacity: 0.6;
}

.swiper-slide-active .step__top {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.7215686275);
  background: #444B53;
  position: relative;
  margin-left: 47px;
  position: absolute;
  top: 20px;
  left: 0;
}
.swiper-slide-active .step__top::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #757778;
}
.swiper-slide-active .step__bottom {
  display: flex;
  flex-direction: column;
}
.swiper-slide-active .step__triangle {
  fill: #fff;
}
.swiper-slide-active .step__block {
  background: #fff;
}
.swiper-slide-active .step__icon {
  fill: #17A8BF;
}
.swiper-slide-active .step__title {
  color: #0B1F33;
}
.swiper-slide-active .step__text {
  color: #66727F;
  opacity: 1;
}

@media only screen and (max-width: 1200px) {
  .steps__slider {
    margin-right: 0;
  }
}
.team {
  background: #2B323A;
  padding-top: 300px;
  margin-top: -300px;
  position: relative;
  z-index: 60;
}
.team__left {
  background: #fff;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.team__right{
    overflow: hidden;
}
.team__btn {
  width: 100%;
  padding: 30px 60px;
}
.team__tizers {
  display: flex;
  flex-direction: column;
}
.team__tizer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 15px;
  border-bottom: 1px solid #ececec;
}
.team__tizer-num {
  color: #17A8BF;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.team__tizer-text {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #66727F;
  line-height: 1.3;
}
.team__about {
  padding: 20px;
  color: #fff;
  background: #444B53;
  height: 100%;
}
.team__about h2,
.team__about h3,
.team__about h4 {
  font-size: clamp(1.375rem, 1.325rem + 0.25vw, 1.625rem);
  margin-bottom: 7px;
}
.team__about p {
  line-height: 1.5;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  opacity: 0.6;
}
.team__img img {
  display: block;
}

.accordion__control {
  width: 100%;
  background-color: transparent;
  cursor: pointer;
}

.accordion__content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 20px;
  will-change: max-height;
  transition: all 0.3s ease-out;
  box-sizing: content-box;
}

.accordion__title {
  font-weight: 400;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #fff;
}

.accordion__icon {
  transition: transform 0.3s ease-out;
}

.open .accordion__icon {
  background: #363D45;
}

.open .accordion__icon span {
  transform: rotate(45deg);
}

.open .accordion__content {
  padding: 20px;
}

.open .accordion__title {
  color: #fff;
}

.open .accordion__control {
  position: relative;
}
.open .accordion__control::before {
  content: "";
  position: absolute;
  border-radius: 0px 10px 10px 0px;
  background: #17A8BF;
  width: 5px;
  height: 37px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  display: block;
}

.visually-hidden {
  position: absolute !important;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

.accordion {
  width: 100%;
  margin-bottom: 10px;
  padding: 0 !important;
}

.accordion__list {
  list-style-type: none !important;
  padding-left: 0 !important;
}

.accordion__control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 20px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgb(204, 204, 204);
}

.accordion__control::-webkit-details-marker {
  display: none;
}

.accordion__title {
  margin: 0;
  text-align: start;
}

.accordion__icon {
  position: relative;
  display: inline-block;
  width: 72px;
  height: 54px;
  background-color: #17A8BF;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 25px;
}

.accordion__content {
  /* 	padding: 20px; */
  border-top: 1px solid transparent;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  line-height: 1.4;
  color: #fff;
  opacity: 0.6;
}

.accordion[open] .accordion__icon {
  background: #17A8BF;
}

.sticky-top {
  position: sticky;
  top: 100px;
  z-index: 1;
}

@media only screen and (max-width: 578px) {
  .accordion__control {
    padding: 15px;
  }
}
.faq {
  margin: 60px 0;
}
.faq__pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.faq .content {
  margin: 0;
}
.faq .nav-link {
  background: #363d45;
  color: #fff;
  padding: 20px 30px;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  border-radius: 0;
}
.faq .nav-link.active {
  background: #17A8BF;
}
.faq__form-wrapper {
  padding: 30px;
  background: #363D45;
}
.faq__form-wrapper h4 {
  font-size: clamp(1.25rem, 1.15rem + 0.5vw, 1.75rem);
  font-family: "Involve", sans-serif;
  line-height: 1.3;
  margin-bottom: 20px;
}
.faq__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq .label-info {
  margin: 5px 0;
  font-weight: 600;
  color: #fff;
  display: flex;
  gap: 40px;
  transition: color 0.3s;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 1.3;
}
.faq__input {
  padding: 20px 30px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgb(204, 204, 204);
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  width: 100%;
  transition: all 0.3s;
  color: #fff;
}
.faq__input:active, .faq__input:focus {
  border-bottom: 1px solid #17A8BF;
}
.faq__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.4588235294);
}
.faq__input::placeholder {
  color: rgba(255, 255, 255, 0.4588235294);
}
.faq label:focus-within .label-info {
  color: #17A8BF;
}

@media only screen and (max-width: 768px) {
  .faq .label-info {
    gap: 15px;
  }
  .faq .nav-link {
    color: #fff;
    padding: 10px 20px;
  }
  .accordion__icon {
    width: 50px;
    height: 30px;
    font-size: 18px;
  }
}
body.modal-open {
  padding-right: 0px !important;
}

body {
  overflow-y: scroll !important;
}

.compensate-for-scrollbar {
  padding-right: 0px !important;
}

textarea:focus {
  border: none;
  outline: none !important;
}

.modal-header {
  justify-content: center;
  position: relative;
}

.graypart {
  background-color: #f6f9fc;
}

.mc-wrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-content {
  position: relative;
}

.btn-close {
  position: absolute;
  right: 15px;
  top: 15px;
  z-index: 50;
}

#watchme {
  border: none;
  background: transparent;
  box-shadow: none;
}
#watchme .btn-close {
  right: -30px;
}
#watchme .modal-content {
  border: none;
  background: transparent;
  box-shadow: none;
}

.modal-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  color: #282828;
}

.modal-contacts {
  padding: 20px 40px;
}
.modal-contacts__heading {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #282828;
}
.modal-contacts__contacts a {
  display: block;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  color: #282828;
  margin-bottom: 5px;
}
.modal-contacts__bottom {
  margin-top: 40px;
  font-size: 14px;
  display: inline-flex;
  color: #282828;
  align-items: center;
  padding: 10px 17px;
  border: 1px solid #ececec;
  -moz-column-break-after: 4px;
  break-after: 4px;
}
.modal-contacts__bottom span {
  margin-left: 10px;
}
.modal-contacts__bottom .ic_modal {
  width: 20px;
  height: 20px;
  fill: #17A8BF;
}

.files {
  font-size: 10px;
}

.form-group_modal {
  padding: 33px;
}
.form-group_modal label {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
  width: 100%;
}

.form_input__modal {
  padding: 13px 0px;
  border: none;
  border-bottom: 1px solid lightgray;
  margin-bottom: 20px;
  border-radius: 0px;
  width: 100%;
  background: transparent;
}
.form_input__modal .modal-file {
  color: #66727F;
  margin-bottom: 10px;
  display: block;
}
.form_input__modal:focus {
  border-bottom: 2px solid #17A8BF;
}

.form_group__bottom-modal {
  padding: 0px 40px;
  flex-direction: column;
  margin-bottom: 20px;
}

.form_btn__modal {
  padding: 17px 40px;
  background: #17A8BF;
  color: #fff;
  border: 1px solid #17A8BF;
  transition: all 0.3s;
  display: block;
  margin-bottom: 30px;
  border-radius: 4px;
}
.form_btn__modal:hover {
  background: #fff;
  color: #244d72;
  border: 1px solid #17A8BF;
}

.politika_modal {
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.close-menu__modal {
  position: absolute;
  right: 15px;
  top: 30px;
  cursor: pointer;
  width: 25px;
  height: 25px;
  z-index: 900;
}

.close-menu__modal span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #282828;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.close-menu__modal span:nth-child(1) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.close-menu__modal span:nth-child(2) {
  transform: rotate(45deg);
}

.close-menu__modal span:nth-child(3) {
  transform: rotate(-45deg);
}

.close-menu__modal span:nth-child(4) {
  top: 12px;
  width: 0%;
  left: 50%;
}

.reg_tabs {
  margin: 0 40px;
}

.modal-header_reg {
  border-bottom: 1px solid transparent;
  flex-direction: column;
  padding: 30px 0;
}

.modal-header {
  padding: 40px 20px 20px 40px;
  display: flex;
  flex-direction: column;
}
.modal-header h5 {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
}
.modal-header h5 span {
  font-weight: 300;
  font-size: 18px;
}
.modal-header a {
  display: block;
  font-size: 22px;
  text-decoration: none;
  font-weight: 700;
}

.modal-body {
  position: relative;
  z-index: 700;
  padding: 0;
}

#success {
  margin: auto auto;
  max-width: 460px;
  height: 400px;
  background-color: #fff;
  background-image: none;
  text-align: center;
  padding: 40px;
  display: none;
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  box-shadow: 1px 10px 20px rgba(30, 30, 30, 0.3019607843);
  bottom: 50%;
}

.span-hidden {
  display: none;
}

.text_success {
  font-size: 34px;
  line-height: 1.5;
}

.radio_title {
  font-size: 12px;
  font-weight: 600;
}

.radio_mtitle {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}

.radio_block {
  display: flex;
  font-size: 12px;
  align-items: center;
  margin-bottom: 7px;
}
.radio_block input,
.radio_block .radio_title,
.radio_block .radio_old-price {
  margin-right: 10px;
}

.radio_old-price {
  text-decoration: line-through;
  opacity: 0.5;
}

.radio_new-price {
  font-family: "Arial";
  font-weight: 700;
}

.form_group__bottom-modal p {
  font-size: 11px;
  margin-left: 10px;
}

.modal-content .custom_chek {
  display: flex;
  align-items: center;
  padding: 15px 0px;
}
.modal-content .custom_chek p {
  font-size: 11px;
  margin-left: 10px;
  line-height: 1.3;
}

@media only screen and (max-width: 568px) {
  .modal-title {
    font-size: 22px;
    margin-top: 20px;
  }
  .form-group_modal,
  .form_group__bottom-modal {
    padding: 20px 20px;
  }
  .modal-header {
    padding-top: 60px;
  }
  .modal_heading {
    padding: 0px 0px;
    margin-bottom: 20px;
  }
  .text_success {
    font-size: 24px;
    line-height: 1.5;
  }
}
.modal-content {
  height: auto !important;
  overflow: hidden !important;
}

.span-hidden {
  display: none;
}

.checkbox-text {
  margin-left: 10px;
  line-height: 1.3;
  margin-top: -5px;
}

.just-validate-error-label {
  background: #fff !important;
  font-size: 12px !important;
  padding: 4px !important;
  border-radius: 5px !important;
}

.button__modal {
  padding: 20px 40px;
}

.cresults__checkbox {
  margin-top: 20px;
}
.cresults__checkbox .checkbox-text {
  margin-left: 0;
  display: block;
}

.form__radios {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 27px 16px 27px 24px;
  border-radius: 8px;
  background: #eee;
  margin-bottom: 15px;
}

.form__radios__modals {
  flex-direction: column;
  padding: 0px;
  align-items: start;
  background: none;
}

.form__radios__btns__modals {
  display: flex;
  gap: 10px;
}

.form__radios__title__modals {
  font-size: 14px !important;
  color: #66727F !important;
  margin-bottom: 10px;
}

.radio-mess input {
  display: none;
}

.radio__img {
  width: 85px;
  height: 45px;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0.8;
}

.radio-mess input:checked ~ .radio__img {
  opacity: 1;
}

.form__radios__title {
  color: #0B1F33;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 20.5px;
}

.cresults__agreement .checkbox-text {
  color: rgba(255, 255, 255, 0.5568627451);
  font-size: 14px;
}

.cresults__agreement .checkbox-text a {
  color: #17A8BF;
  font-size: 14px;
  text-decoration: underline;
}

@media only screen and (max-width: 576px) {
  .cresults__agreement .checkbox-text {
    font-size: 12px;
    line-height: 1.4;
  }
  .cresults__agreement .checkbox-text a {
    font-size: 12px;
  }
  .form__radios__title {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .form__radios {
    flex-wrap: wrap;
  }
}
.custom-checkbox {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin: 0;
  cursor: pointer;
  position: relative;
}

.checkbox-hidden {
  display: none;
}

.checkbox-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  flex: 0 0 20px;
  height: 20px;
  border-radius: 1px;
  background: #17A8BF;
  margin-right: 10px;
  flex-shrink: 0;
}

.custom-checkbox input:checked + .checkbox-wrap::after {
  transform: scale(1);
  opacity: 1;
}

.custom-checkbox .checkbox-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  width: 15px;
  background: url(../img/check.svg) no-repeat 0 0;
  background-size: 100%;
  will-change: transform;
  transform: scale(0);
  opacity: 0;
  transition: all 0.1s linear;
}

.just-validate-error-label {
  font-size: 12px;
  color: #5C5C77 !important;
}

.modal__wrapper {
  padding-top: 0 !important;
}
.modal__wrapper li {
  padding: 0 !important;
}

.privat-info-black {
  color: #0B1F33;
}

.btn.disabled,
.btn:disabled,
fieldset:disabled .btn {
  color: #fff;
  background-color: #17A8BF;
  border-color: #17A8BF;
  opacity: 0.5;
}

.cookie__modal {
  display: flex;
  gap: 20px;
  padding: 20px;
}
.cookie__modal p {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 1.5;
}
.cookie__modal__btn {
  align-self: center;
}

@media only screen and (max-width: 578px) {
  .cookie__modal {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .cookie__modal p {
    text-align: center;
  }
}
.form_modal .checkbox-text {
  color: #66727F;
}

.footer a {
  color: #fff;
}
.footer a:hover {
  color: #fff;
}
.footer {
  background: #17A8BF;
}
.footer__item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__label {
  opacity: 0.6;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.footer__phone {
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  font-weight: 700;
}
.footer__email, .footer__form {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  font-weight: 700;
}

@media only screen and (max-width: 578px) {
  .footer__item {
    margin: 10px 0;
  }
}
.bottom__wrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bottom a {
  color: #fff;
  text-decoration: underline;
  line-height: 1.3;
  display: inline;
}
.bottom a:hover {
  color: #17A8BF;
}
.bottom li {
  padding: 4px 0;
}
.bottom__heart {
  fill: #FF1037;
  width: 15px;
  height: 15px;
  margin: 0 3px;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  color: rgba(255, 255, 255, 0.3098039216);
  margin-top: 4px;
}
.bottom__heart a {
  color: #fff;
  opacity: 0.4;
}
.bottom__heart a:hover {
  opacity: 1;
}

@media only screen and (max-width: 578px) {
  .bottom__wrp {
    flex-direction: column;
    gap: 20px;
  }
}
.nav__list {
  display: flex;
  align-items: end;
  flex-direction: column;
  justify-content: end;
  margin: 0;
  padding-right: 20px;
}

.nav__item {
  position: relative;
  padding: 15px 0;
}

.nav__link {
  color: #fff;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  text-transform: uppercase;
}
.nav__link:hover {
  color: #17A8BF;
}

.nav__link--drop::after {
  content: "";
  width: 7px;
  height: 7px;
  background-image: url("../img/download.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.3s;
}

.nav__list--dropdown {
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 100%;
  display: block;
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.07);
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  width: 280px;
  z-index: 90;
}

.dropdown-submenu {
  display: flex;
  align-items: initial;
}

.dropdown-submenu__item {
  flex-grow: 1;
  min-width: 200px;
  padding: 0px 30px;
}

.dropdown-submenu__list {
  padding: 0;
}

.dropdown-submenu__item:not(:last-child) {
  border-right: 1px solid #bfbfbf;
}

.dropdown-submenu__item:first-child {
  padding-left: 0;
}

.dropdown-submenu__item:last-child {
  padding-right: 0;
}

.mobile-back {
  display: none;
}

.mobile-back__link {
  color: #282828;
  font-weight: 500;
}

.dropdown-list__item {
  border-bottom: 1px solid #ececec;
}

.dropdown-list__link {
  font-size: 15px;
  color: #282828;
  padding: 13px 20px;
  display: block;
}
.dropdown-list__link:hover {
  color: #0566B4;
}

.dropdown-submenu__list-item {
  margin-bottom: 10px;
}

@media only screen and (max-width: 1200px) {
  .nav__list {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    margin: 0;
    padding-right: 0;
    gap: 20px;
  }
}
@media only screen and (max-width: 946px) {
  .nav__list {
    gap: 0;
  }
}
@media (min-width: 946px) {
  .nav__link--drop:hover::after {
    transform: rotate(180deg);
    transition: all 0.3s;
  }
  .nav__item:hover .nav__list--dropdown {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s;
  }
}
.burger {
  width: 40px;
  height: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  position: relative;
  display: none;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}

.burger::after {
  top: auto;
  bottom: 0;
}

.burger span {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  display: inline-block;
  background-color: #fff;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
}

.lock {
  overflow: hidden;
}

@media (max-width: 946px) {
  .burger {
    display: block;
  }
  .mobile-back {
    display: block;
  }
  .main-menu {
    position: fixed;
    left: 0;
    top: 0;
    max-width: 400px;
    width: 80%;
    height: 100vh;
    z-index: 100;
    box-shadow: 5px 0 15px -5px rgba(0, 0, 0, 0.8);
    background-color: #fff;
    transform: translateX(-150vw);
    overflow-x: hidden;
    overflow-y: auto;
    display: block;
  }
  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    padding-top: 10%;
    position: relative;
    justify-content: flex-start;
  }
  .nav__item {
    margin-left: 0 !important;
    font-size: 20px;
    width: 100%;
    padding: 0;
    position: static;
  }
  .nav__link,
  .dropdown-submenu__list-item a {
    padding: 13px 20px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .dropdown-submenu__list-item {
    padding: 0;
  }
  .nav__link {
    border-bottom: 1px solid rgba(236, 236, 236, 0.1294117647);
  }
  .nav__link::after {
    transform: rotate(-90deg);
  }
  .nav__list--dropdown {
    position: absolute;
    top: 0;
    right: auto;
    left: 100%;
    box-shadow: none;
    width: 100%;
    display: none;
  }
  .dropdown-submenu__item {
    width: 100%;
    padding: 0;
    border: none !important;
  }
  .dropdown-submenu__title {
    padding: 0 30px;
  }
  .dropdown-submenu__banner {
    display: inline-block;
    padding: 20px;
  }
  .nav__list.transformation {
    transform: translateX(-100%);
    transition: all 0.3s;
  }
  .nav__list--dropdown.transformation {
    opacity: 1;
    visibility: visible;
    display: block;
    transform: none;
    background-color: #fff;
    transition: all 0.3s;
  }
  .main-menu.open {
    transform: translateX(0);
    transition: all 0.3s;
    background: #23282F;
  }
  .overlay.open {
    opacity: 1;
    visibility: visible;
    transition: all 0.3s;
  }
  .mobile-back a {
    position: relative;
    border: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .mobile-back a::before {
    content: "";
    width: 10px;
    height: 10px;
    background-image: url("../img/download.svg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    margin-right: 10px;
    transform: rotate(90deg);
  }
}
.close_btn {
  display: none;
  position: absolute;
  z-index: 60;
  right: 10px;
  top: 17px;
  cursor: pointer;
}
.close_btn .ic_close {
  width: 20px;
  height: 20px;
}

@media only screen and (max-width: 946px) {
  .open .close_btn {
    display: block;
  }
}
.heading {
  background: #2B323A;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 20px;
}
.heading h1 {
  font-size: clamp(1.375rem, 1.15rem + 1.125vw, 2.5rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 15px;
}
.heading__info {
  position: relative;
  z-index: 60;
}
.heading__wrp {
  padding: 30px 0;
}

.breadcrumbs {
  color: rgba(255, 255, 255, 0.568627451);
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  line-height: 1.3;
}

.breadcrumbs li {
  display: inline-block;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  color: #66727F;
}

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

.breadcrumbs li a:hover {
  color: #66727F;
}

.breadcrumbs li :last-child::after {
  color: #6E6E6E;
  content: "—";
  padding: 0 5px;
}

#mainCarousel {
  width: 100%;
  margin: 0 auto 1rem auto;
  --carousel-button-color: #66727F;
  --carousel-button-bg: #fff;
  --carousel-button-shadow: 0 2px 1px -1px rgb(0 0 0 / 20%),
      0 1px 1px 0 rgb(0 0 0 / 14%), 0 1px 3px 0 rgb(0 0 0 / 12%);
  --carousel-button-svg-width: 13px;
  --carousel-button-svg-height: 13px;
  --carousel-button-width: 44px;
  --carousel-button-height: 44px;
  --carousel-button-svg-stroke-width: 2.5;
}

#mainCarousel .carousel__slide {
  width: 100%;
  padding: 0;
  text-align: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
#mainCarousel .carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  border-style: none;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.carousel__slide-text {
  position: absolute;
  left: 0;
  bottom: 30px;
  background: #23282F;
  color: #fff;
  font-size: 16px;
  padding: 7px 16px;
}

#mainCarousel .carousel__button.is-prev {
  left: 0;
}

#mainCarousel .carousel__button.is-next {
  right: 0;
}

#mainCarousel .carousel__button:focus {
  outline: none;
  box-shadow: none;
}

#thumbCarousel {
  margin-bottom: 20px;
}

#thumbCarousel .carousel__slide {
  opacity: 0.5;
  padding: 0;
  margin: 0.25rem;
  width: 120px;
  height: 120px;
  overflow: hidden;
}

#thumbCarousel .carousel__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#thumbCarousel .carousel__slide.is-nav-selected {
  opacity: 1;
}

@media only screen and (max-width: 768px) {
  #mainCarousel .carousel__button.is-prev {
    display: none;
  }
  #mainCarousel .carousel__button.is-next {
    display: none;
  }
}
@media only screen and (max-width: 578px) {
  #mainCarousel .carousel__slide {
    height: auto;
  }
  #mainCarousel .carousel__slide img {
    -o-object-fit: contain;
    object-fit: contain;
  }
}
.product {
  padding: 30px 0 30px 0;
  background: #fff;
  margin-top: -4px;
}
.product__wrp {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.product__ic {
  width: 20px;
  height: 20px;
}
.product__price {
  font-size: 22px;
}
.product p {
  font-size: 16px;
  line-height: 1.4;
  color: #66727F;
  padding: 7px 0;
}
.product strong,
.product b {
  color: #0B1F33;
}
.product .categories__tags {
  margin-top: 0;
}
.product__tizers {
  display: flex;
  gap: 5px;
  margin: 20px 0;
  width: 100%;
}
.product__tizer {
  display: flex;
  gap: 10px;
  padding: 15px;
  background: #fff;
  border-radius: 4px;
  width: 33%;
}
.product__tizer-img {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.product__tizer-wrp {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 1;
}
.product__tizer-title {
  font-size: 16px;
  color: #66727F;
}
.product__tizer-info {
  font-size: 22px;
}

@media only screen and (max-width: 1400px) {
  .product__tizer-info {
    font-size: 16px;
  }
  .product__tizer-img {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
  }
}
@media only screen and (max-width: 1200px) {
  .product__tizers {
    flex-wrap: wrap;
  }
  .product__tizer {
    flex-basis: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .product__tizer {
    flex-basis: 49%;
  }
}
@media only screen and (max-width: 578px) {
  .product {
    padding: 15px 0;
  }
  .product__wrp {
    flex-wrap: wrap;
  }
  .product p {
    font-size: 14px;
  }
}
.content {
  margin: 20px 0;
}
.content .main-text {
  margin: 20px 0;
  padding: 20px 20px 20px 40px;
  border-left: 2px solid #17A8BF;
  background: #23282f;
}
.content img {
  margin: 20px 0;
  display: block;
}
.content ul {
  list-style-type: disc;
}
.content ol {
  list-style-type: decimal;
}
.content ul,
.content ol {
  padding-left: 30px;
  margin: 15px 0;
}
.content p,
.content li {
  padding: 7px 0;
  opacity: 0.6;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}
.content li {
  line-height: 1.3;
}
.content h2,
.content h3,
.content h4 {
  font-size: clamp(1.25rem, 1.125rem + 0.625vw, 1.875rem);
  margin: 10px 0;
  line-height: 1.3;
}

.relatives {
  background: #3f464e;
}
.relatives .swiper-slide {
  height: auto !important;
}
.relatives .project {
  height: 100%;
}

.article {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  background: #2B323A;
  color: #fff;
}
.article:hover {
  color: #fff;
}
.article__title {
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  color: #fff;
  line-height: 1.3;
  font-weight: 700;
}
.article__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}
.article__img {
  width: 100%;
}
.article__img img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.article__date {
  font-size: 14px;
  opacity: 0.4;
}
.article__subtitle {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  line-height: 1.3;
  opacity: 0.6;
}
.article__btn {
  margin-top: auto;
  margin: auto 20px 20px 20px;
  align-self: flex-start;
}

.request {
  display: flex;
  padding: 30px;
  border: 1px solid #cbcbcb;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0;
  gap: 15px;
}
.request img {
  flex-shrink: 0;
  margin: 0;
}
.request__btn {
  padding: 25px 35px;
  flex-shrink: 0;
}

@media only screen and (max-width: 970px) {
  .request {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 578px) {
  .request {
    padding: 15px;
    margin: 30px 0;
    gap: 10px;
  }
  .request__btn {
    flex-basis: 100%;
    width: 100%;
  }
  .request__btn:not(:last-of-type) {
    margin-right: 0px;
  }
}
.services__wrp {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service {
  width: 100%;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.168627451);
  transition: all 0.3s;
}
.service:hover {
  border: 1px solid #fff;
}
.service__img {
  width: 100%;
  height: 100px;
}
.service__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0;
}
.service__label {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  opacity: 0.4;
  margin-bottom: 5px;
}
.service__price {
  color: #fff;
  font-weight: 700;
  font-size: clamp(1.25rem, 1.175rem + 0.375vw, 1.625rem);
}
.service__btn {
  margin-top: auto;
}
.service__wrp {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
  width: 100%;
}
.service__info {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

@media only screen and (max-width: 768px) {
  .service__wrp {
    justify-content: start;
    align-items: start;
  }
}
.prices-single {
  background: transparent;
}

.prices table {
  width: 100%;
  margin: 20px 0;
}

.prices table td {
  padding: 20px 15px;
  border: 2px solid #444B53;
  background: rgba(232, 237, 236, 0.0666666667);
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  line-height: 1.3;
}

.prices thead td {
  background: #17A8BF;
  color: #fff;
  font-weight: 700;
}

.prices__btn {
  margin-left: 10px;
  padding: 10px 15px;
}

.prices__wrp {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media only screen and (max-width: 740px) {
  .prices__wrp {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 578px) {
  .prices__btn {
    margin-left: 0;
    margin-top: 10px;
  }
}
.responces {
  margin-bottom: 40px;
}
.responces__btns {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}
.responces__wrp {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  justify-content: space-between;
}
.responces__wrapper {
  position: relative;
}
.responces__title {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.responces__banners {
  display: flex;
  gap: 10px;
}
.responces__btn {
  padding: 20px 30px;
}
.responces__slider {
  position: relative;
}

.responce {
  background: #fff;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border-radius: 4px;
  width: 100%;
  height: auto;
}
.responce__wrp {
  display: flex;
  padding: 20px;
  flex-wrap: wrap;
  gap: 20px;
}
.responce__img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
}
.responce__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.responce__info {
  display: flex;
  flex-direction: column;
}
.responce__name {
  font-weight: 700;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  margin-bottom: 15px;
  color: #0B1F33;
}
.responce__stars {
  display: flex;
  gap: 3px;
}
.responce__star {
  width: 16px;
  height: 16px;
}
.responce__text {
  line-height: 1.4;
  color: #66727F;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  padding: 0 20px 20px 20px;
}

@media only screen and (max-width: 578px) {
  .responces {
    padding: 30px 0;
  }
  .responces__slider {
    margin-top: 20px;
  }
  .responces__btn {
    padding: 10px 20px;
  }
}
.controls {
  margin-bottom: 20px;
}

.mixitup-control-active {
  background: #444B53;
  color: #fff;
}

.responce {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* .contacts{
    padding: 60px 0;
} */
.contacts-card {
  border: 1px solid rgba(236, 236, 236, 0.0901960784);
  padding: 20px;
  background: #3A424A;
  margin-bottom: 20px;
}
.contacts-card__top {
  width: 100%;
  height: 300px;
  position: relative;
  margin-bottom: 20px;
}
.contacts-card__top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.contacts-card__info {
  position: absolute;
  bottom: 0;
  left: 0px;
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  padding-top: 30px;
  padding-left: 20px;
  padding-right: 10px;
  width: 100%;
}
.contacts-card__subtitle {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: #fff;
  margin-bottom: 10px;
}
.contacts-card__title {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}
.contacts-card__group {
  margin: 20px 0;
}
.contacts-card__label {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: rgba(255, 255, 255, 0.4392156863);
  margin-bottom: 10px;
}
.contacts-card__input {
  margin-bottom: 10px;
}
.contacts-card__input a {
  color: #fff;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.contacts-card__time {
  display: block;
  margin-bottom: 7px;
  color: #fff;
}
.contacts-card__btn {
  padding: 20px 30px;
}

.content-contacts {
  margin: 20px 0;
}

.rekv-btn {
  display: inline-block;
  width: auto;
}

@media only screen and (max-width: 578px) {
  .contacts {
    padding: 30px 0;
  }
}
.bottom-contacts {
  background: #2B323A;
}

.calc label {
  width: 100%;
}

.calc_all_wrp {
  background: rgba(255, 255, 255, 0.0745098039);
  display: flex;
}

.calc_form_wrp {
  background: rgba(255, 255, 255, 0.031372549);
  border: 10px solid #17A8BF;
  box-sizing: border-box;
  width: 490px;
  padding-top: 52px;
  padding-left: 55px;
  padding-right: 55px;
  padding-bottom: 60px;
}

.calc_elems_wrp {
  width: calc(100% - 490px);
  padding-top: 48px;
  padding-left: 55px;
  padding-right: 40px;
  padding-bottom: 40px;
}

.calct1 {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: clamp(1.375rem, 1.25rem + 0.625vw, 2rem);
  line-height: 1.3;
  color: #fff;
}

.calct2 {
  margin-bottom: 21px;
  font-size: 17px;
  line-height: 28px;
  color: #fff;
}

.calc__input {
  margin-bottom: 14px;
  display: block;
  width: 100%;
  background: none;
  border: none;
  height: 65px;
  background: rgba(255, 255, 255, 0.2666666667);
  border: 1px solid rgba(224, 224, 224, 0.3568627451);
  box-sizing: border-box;
  border-radius: 8px;
  padding: 0 20px;
  font-size: 15px;
  line-height: 22px;
  color: #fff;
  transition: all 0.3s;
}
.calc__input:active, .calc__input:focus {
  border: 1px solid #fff;
}
.calc__input::-moz-placeholder {
  color: #fff;
}
.calc__input::placeholder {
  color: #fff;
}

form .orange_but {
  max-width: 100%;
  width: 100%;
}

.pressing {
  margin-top: 20px;
  position: relative;
  margin-bottom: 0;
  cursor: pointer;
  padding-left: 34px;
  font-size: 12px;
  line-height: 18px;
  color: #fff;
}

.pressing span {
  text-decoration: underline;
}

.pressing span:hover {
  text-decoration: none;
}

.pressing::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  background-color: #17A8BF;
  border-radius: 5px;
  top: 4px;
}

.pressing.pressed::before {
  background-image: url(../img/checked.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.calc_item {
  margin-bottom: 40px;
}

.calc_item:last-child {
  margin-bottom: 0;
}

.calc_lbl {
  margin: 0;
  font-weight: bold;
  font-size: 22px;
  line-height: 28px;
  color: #fff;
}

.checker {
  margin-top: 14px;
}

.checker li {
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  padding: 6px 15px;
  background: rgba(242, 242, 242, 0.1098039216);
  border-radius: 8px;
  font-size: 15px;
  line-height: 28px;
  color: #fff;
  border: 2px solid transparent;
}

.checker li.active {
  border: 2px solid #17A8BF;
  background-color: rgba(255, 255, 255, 0.2588235294);
}

.checker li:hover {
  border-color: #17A8BF;
}

.checker2 {
  margin-top: 14px;
}

.checker2 li {
  display: inline-block;
  vertical-align: middle;
  padding-left: 31px;
  position: relative;
  cursor: pointer;
  font-size: 15px;
  line-height: 21px;
  color: #fff;
}

.checker2 li::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #E8E8E8;
  box-sizing: border-box;
  border-radius: 5px;
  top: -1px;
}

.checker2 li.active::before {
  border-color: #17A8BF;
  background-color: #17A8BF;
  background-image: url(../img/checked.svg);
  background-repeat: no-repeat;
  background-position: center;
}

.checker2 li:hover::before {
  border-color: #17A8BF;
}

.room_num {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 505px;
}

.flex_need {
  max-width: 505px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.flex_need ul {
  max-width: 306px;
  width: 100%;
  display: flex;
  gap: 10px;
  align-items: center;
  -webkit-box-pack: justify;
  margin: 0;
  justify-content: space-between;
  flex-wrap: wrap;
}

.slider_wrp {
  display: flex;
  align-items: center;
  margin-top: 16px;
}

.slider_wrp > input {
  border: none;
  width: 50px;
  height: 40px;
  margin: 0;
  background: #F2F2F2;
  border-radius: 8px;
  font-size: 15px;
  line-height: 28px;
  padding: 0;
  text-align: center;
}

.sl_in_wrp {
  padding-left: 20px;
  width: calc(100% - 50px);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.noUi-target {
  flex: 1;
  height: 10px;
  border: 2px solid #E8E8E8;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: none;
  background: transparent;
  box-sizing: content-box;
}

.noUi-base,
.noUi-connects {
  height: calc(100% + 1.5px) !important;
  margin-top: -2px;
  border-radius: 12px;
  margin-left: -1px;
}

.noUi-horizontal .noUi-handle {
  background-image: url(../img/slider.svg);
  width: 32px !important;
  height: 32px !important;
  border: none;
  box-shadow: none;
  border-radius: 50%;
  box-shadow: 6px 9px 32px -1px rgba(63, 63, 63, 0.24);
  top: -10px;
  cursor: pointer;
}

.noUi-handle:after,
.noUi-handle:before {
  display: none !important;
}

.noUi-connect {
  background: #17A8BF !important;
}

@media only screen and (max-width: 919px) {
  .calc_all_wrp {
    flex-direction: column;
    gap: 20px;
  }
  .calc_elems_wrp {
    width: 100%;
    padding: 20px;
  }
  .calc_form_wrp {
    width: 100%;
    padding: 10px;
  }
}
.panel {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .panel {
    position: fixed;
    right: 10px;
    bottom: 10px;
    display: inline-flex;
    flex-direction: column;
    right: 10px !important;
    border-radius: 80px;
    background: #E5D7C4;
    padding: 4px;
    z-index: 100;
  }
  .panel__ic {
    width: 60px;
    height: 60px;
  }
  .panel__ic:not(:last-child) {
    margin-bottom: 10px;
  }
  .panel__ic:hover {
    opacity: 0.7;
  }
}
@media only screen and (max-width: 578px) {
  .panel__ic {
    width: 40px;
    height: 40px;
  }
}

.contacts__img{
    width:100%;
}
.contacts__img img{
    width:150px;
    object-fit: contain;
}