@charset "UTF-8";
.header {
  padding: 7px 0 0 0;
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__wrp {
  display: flex;
  flex-direction: column;
}
.header__logo {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-basis: 33%;
  gap: 15px;
}
.header__logo img {
  flex-shrink: 0;
}
.header__logo a {
  display: flex;
  gap: 15px;
  align-items: center;
}
.header__logo-desc {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.header__logo-name {
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #0B1F33;
}
.header__logo-text {
  font-size: 14px;
  line-height: 1.3;
  color: #66727F;
}
.header__logo-mobile {
  display: none;
}
.header__adress {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 9px;
}
.header__adress-wrp {
  display: flex;
  align-items: center;
}
.header__adress-wrp p {
  line-height: 1.4;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
}
.header__adress-wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
}
.header__icon {
  width: 16px;
  height: 20px;
  margin-right: 15px;
  flex-shrink: 0;
  fill: #2EC2AA;
}
.header__contacts {
  display: flex;
  justify-content: end;
  gap: 30px;
}
.header__contact {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 9px;
}
.header__nav {
  flex-basis: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__phone {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #0B1F33;
}
.header__phone:hover {
  color: #0B1F33;
}
.header__info {
  color: #66727F;
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  padding-bottom: 2px;
  border-bottom: 1px dotted #0B1F33;
  cursor: pointer;
}
.header__info a {
  color: #66727F;
}
.header__info a:hover {
  color: #2EC2AA;
}
.header__btn {
  padding: 10px 10px;
  background: #2EC2AA;
  color: #fff;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}
.header__btn:hover {
  background: rgb(57.3625, 208.1375, 183.6875);
}
.header .nav__contacts,
.header .search-mobile {
  display: none;
}
.header__right {
  display: flex;
  gap: 15px;
  align-items: center;
}
.header__nav {
  position: relative;
  margin-top: 10px;
}
.header__nav::before {
  content: "";
  display: block;
  width: 9999999px;
  height: 1px;
  position: absolute;
  left: -50%;
  top: -3px;
  background: #EAEAEA;
}
.header__ic {
  width: 20px;
  height: 20px;
  fill: #fff;
  margin-right: 7px;
}
.header__phone-mobile {
  display: none;
}

@media only screen and (max-width: 1400px) {
  .header__phone {
    font-size: 18px;
    white-space: nowrap;
  }
  .header__btn {
    font-size: 14px;
    padding: 8px 10px;
  }
}
@media only screen and (max-width: 1200px) {
  .header__logo {
    flex-basis: auto;
  }
  .header__logo span {
    display: none;
  }
}
@media only screen and (max-width: 946px) {
  .header__info {
    display: none;
  }
  .header__wrp {
    justify-content: space-between;
    flex-direction: row;
  }
  .header__nav {
    flex-basis: 33%;
    align-self: center;
  }
  .header__logo {
    flex-basis: auto;
  }
  .header__adress {
    display: none;
  }
  .header__contacts {
    display: none;
  }
  .header__nav {
    flex-basis: auto;
    margin-top: 0;
    justify-content: end;
    gap: 10px;
  }
  .header__nav::before {
    display: none;
  }
  .header__btn {
    display: none;
  }
  .header__mobile-btn {
    display: flex;
    align-self: flex-start;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 578px) {
  .header__btn-desktop {
    display: none;
  }
  .header__phone-mobile {
    display: block;
    color: #0B1F33;
    font-weight: 700;
    font-size: 16px;
  }
  .header__contact {
    margin: 0 10px;
  }
  .header__logo-desktop {
    max-width: 50%;
  }
}
.page-single .header {
  background: #fff;
}

.btn {
  display: inline-flex;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  line-height: 1;
  text-decoration: none;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

.btn-blue {
  background: #116FFF;
  border: 1px solid #116FFF;
  color: #fff;
}
.btn-blue:hover {
  background: rgb(42.5, 126.4285714286, 255);
  color: #fff;
}

.btn-green {
  background: #2EC2AA;
  border: 1px solid #2EC2AA;
  color: #fff;
}
.btn-green:hover {
  background: rgb(57.3625, 208.1375, 183.6875);
  color: #fff;
}

.btn-gray {
  background: #DFEFEF;
  border: 1px solid #DFEFEF;
  color: #0B1F33;
}
.btn-gray:hover {
  background: rgb(206, 230.5, 230.5);
  color: #0B1F33;
}

.btn-ws {
  background: #26D366;
  border: 1px solid #26D366;
  color: #fff;
}
.btn-ws:hover {
  background: rgb(55.4397590361, 219.0602409639, 115.9698795181);
  color: #fff;
}

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

.small-btn {
  display: inline-block;
  padding: 12px 25px;
}

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

.menu-fixed {
  box-shadow: 0 4px 15px -10px rgba(0, 0, 0, 0.6);
  position: fixed;
  animation: slide-down 0.7s;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  padding-bottom: 4px;
}
.menu-fixed .header__adress p {
  font-size: 14px;
}
.menu-fixed .header__info {
  font-size: 13px;
}
.menu-fixed .header__adress,
.menu-fixed .header__contact {
  gap: 6px;
}
.menu-fixed .header__wrp {
  display: flex;
  justify-content: space-between;
}
.menu-fixed .header__adress-wrp {
  align-items: center;
}
.menu-fixed .header__icon {
  margin-top: 0;
}
.menu-fixed .header__logo img {
  max-width: 70%;
}
.menu-fixed .header__nav {
  padding: 0;
  margin: 0;
}
.menu-fixed .nav__item {
  padding: 7px 0;
}
.menu-fixed .open .nav__item {
  padding: 0;
}
.menu-fixed .nav__link {
  font-size: 15px;
}
.menu-fixed .header__logo-phone {
  display: flex;
}

.page-body .menu-fixed {
  background: rgba(255, 255, 255, 0.7);
}
.page-body .menu-fixed::after {
  display: none;
}
.page-body .header__online {
  color: #282828;
  background: #fff;
  box-shadow: 0 7px 10px rgba(199, 199, 199, 0.1647058824);
}

@media only screen and (max-width: 1200px) {
  .menu-fixed .header__logo {
    width: auto;
  }
  .menu-fixed .nav__link {
    font-size: 14px;
  }
}
@media only screen and (max-width: 945px) {
  .menu-fixed .header__nav {
    display: flex;
  }
}
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav__list {
  display: flex;
  align-items: center;
  margin: 0;
}

.nav__item:not(:last-child) {
  margin-right: 40px;
}

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

.nav__link {
  color: #282828;
  font-size: 18px;
}
.nav__link:hover {
  color: #2EC2AA;
}

.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: #116FFF;
}

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

@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: #000;
}

.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: #000;
}

.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 #ececec;
  }
  .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;
  }
  .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;
  }
}
@media only screen and (max-width: 1200px) {
  .nav__link {
    font-size: 16px;
  }
}
@media only screen and (max-width: 946px) {
  .header .nav__contacts {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    padding-left: 15px;
    padding-right: 15px;
    gap: 10px;
  }
  .header .nav__contact {
    display: flex;
    align-items: center;
  }
  .header .nav__icon {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    fill: #116FFF;
    flex-shrink: 0;
  }
  .header .nav__phone a {
    font-weight: 700;
    font-size: 18px;
    color: #0B1F33;
    line-height: 1.3;
  }
  .header .nav__email a {
    color: #66727F;
    font-size: 14px;
    line-height: 1.3;
  }
  .header .nav__adress p {
    color: #66727F;
    font-size: 14px;
    line-height: 1.3;
  }
  .header .search-mobile {
    display: flex;
    margin: 20px 0 10px 15px;
  }
  .header .search-mobile form {
    display: flex;
  }
  .header .search-mobile input {
    width: 90%;
    height: 50px;
    border: none;
    border-bottom: 1px solid #66727F;
    font-size: 14px;
  }
  .header .search-mobile .search__icon {
    width: 20px;
    height: 20px;
  }
  .header .search-mobile .header__social-link {
    background: transparent;
    border: none;
    box-shadow: none;
  }
}
.bgmain img, .bgmain video {
  border-radius: 24px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.bgmain__h1 {
  margin: 30px 0 10px 0;
 font-size: clamp(1.375rem, 1.075rem + 1.5vw, 2.875rem);
}
.heading-subtitle{
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
  color: #66727F;
  line-height: 1.4;
}
.bgmain__arrow {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #2EC2AA;
  font-size: 18px;
  border-radius: 50%;
  transition: all 0.3s;
}
.bgmain__mainlink {
  display: inline-flex;
  vertical-align: text-bottom;
  gap: 15px;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  font-weight: 700;
  color: #2EC2AA;
  align-items: center;
  margin: 20px 0;
}
.bgmain__mainlink:hover .bgmain__arrow {
  background: #116FFF;
}
.bgmain__video {
  position: relative;
  height: 100%;
}
.bgmain__item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.bgmain__item p {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #66727F;
  line-height: 1.4;
  margin-bottom: 20px;
}
.bgmain__h2 {
  color: #0B1F33;
  font-weight: 700;
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  margin: 20px 0 7px 0
}
.bgmain__btn-more {
  align-self: flex-start;
  margin-bottom: 20px;
}
.bgmain__btns {
  background: #FAFCFF;
  border-radius: 24px 24px 0 0;
  padding: 10px 10px 0 10px;
  display: inline-flex;
  gap: 10px;
  position: relative;
  z-index: 70;
  position: absolute;
  left: 20px;
  bottom: 0;
}
.bgmain__btn {
  color: #fff;
  padding: 30px 40px;
  border-radius: 15px 0 0 0;
}
.bgmain__btn2 {
  border-radius: 0 15px 0 0;
}

@media only screen and (max-width: 1700px) {
  .bgmain__mainlink {
    display: flex;
    vertical-align: auto;
    margin-left: 0px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 946px) {
  .bgmain__btn {
    padding: 20px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .bgmain__mobile-hidden {
    display: none;
  }
  .bgmain__order1 {
    order: 1;
  }
  .bgmain__order2 {
    order: 2;
  }
  .bgmain__order3 {
    order: 3;
  }
}
@media only screen and (max-width: 578px) {
  .bgmain__h1 {
    margin: 0;
  }
  .bgmain__h2 {
    margin: 10px 0;
  }
  .bgmain__btns {
    padding: 5px 5px 0 5px;
    gap: 5px;
  }
  .bgmain__btn {
    padding: 10px 20px;
  }
}
.hcatalog {
  margin: 60px 0;
}
.hcatalog__btns {
  margin: 30px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hcatalog__btn {
  padding: 20px 30px;
}

@media only screen and (max-width: 578px) {
  .hcatalog__btn {
    padding: 10px 15px;
  }
}
.ccard {
  padding: 20px;
  border: 1px solid #ececec;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  height: 100%;
}
.ccard__stickers {
  display: flex;
  gap: 3px;
  position: absolute;
  left: 15px;
  top: 15px;
}
.ccard__sticker {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 5px;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 300;
}
.ccard__img {
  height: 200px;
  width: 200px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 0 auto;
}
.ccard__img img {
  width: 100%;
  height: 100%;
}
.ccard__top {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.ccard__category {
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  color: #66727F;
  font-weight: 300;
  line-height: 1.3;
}
.ccard__title {
  font-weight: 700;
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #0B1F33;
}
.ccard__info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}
.ccard__info span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}
.ccard__bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.ccard__price {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ccard__price-actual {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  font-weight: 700;
  color: #0B1F33;
}
.ccard__wrp {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ccard__old-price {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #66727F;
  text-decoration: line-through;
}
.ccard__economy {
  background: rgb(255, 196, 0);
  color: #0B1F33;
  padding: 4px 6px;
  font-size: 12px;
  text-decoration: none !important;
}
.ccard__btn {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  padding: 10px 12px;
  font-weight: 700;
}
.ccard__btn2 {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  padding: 20px 40px;
  font-weight: 700;
}
.ccard__btn3 {
  font-size: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
  padding: 20px 25px;
  font-weight: 700;
}
.ccard__desc p {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 1.3;
  padding: 7px 0;
  color: #0B1F33;
  font-weight: 300;
}
.ccard__buy {
  width: 100%;
  background: #fff;
  box-shadow: 0 10px 20px #ececec;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ccard__buy .ccard__price-actual {
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
}
.ccard__info-text {
  color: #66727F;
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  font-weight: 300;
}
.ccard__info-text a {
  color: #2EC2AA;
  font-weight: 700;
  white-space: nowrap;
}
.ccard__more {
  color: #2EC2AA;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  display: inline-block;
  margin-top: 20px;
  padding-bottom: 3px;
  border-bottom: 1px dotted #2EC2AA;
}
.ccard__tizers {
  padding: 30px 0;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
.ccard__tizer {
  display: flex;
  gap: 10px;
}
.ccard__tizer-img {
  flex-shrink: 0;
}
.ccard__tizer-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ccard__tizer-title {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 1.3;
  font-weight: 700;
  color: #0B1F33;
}
.ccard__tizer-text {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 1.3;
  font-weight: 300;
  color: #66727F;
}

.ccard-page {
  background: transparent;
  border: none;
}

@media only screen and (max-width: 594px) {
  .ccard {
    padding: 5px;
  }
  .ccard__bottom {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .ccard__img {
    width: 100px;
    height: 100px;
    margin-top: 30px;
  }
}
.custom table td {
  border: 1px solid #dbdbdb;
  padding-left: 15px;
  padding-right: 15px;
  line-height: 1.3;
}

.custom thead {
  background: #F0F6FE;
}
.custom thead td {
  font-weight: 500 !important;
  color: #0B1F33 !important;
}

.chars {
  margin: 0;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.chars__item {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.chars__term {
  position: relative;
  overflow: hidden;
  flex-grow: 1;
  font-weight: 300;
  color: #0B1F33;
  font-size: 14px;
}

.chars__val {
  margin: 0;
  color: #66727F;
  font-weight: 300;
  font-size: 14px;
}

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

.tizers {
  margin: 60px 0;
  padding: 60px 0;
  background: #E8EFF5;
}

.tizer {
  background: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  border-radius: 10px;
}
.tizer__img-wrp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(230, 242, 255, 0.2) 0%, #e6f2ff 100%);
  border-radius: 24px;
  flex-shrink: 0;
}
.tizer__top {
  display: flex;
  gap: 20px;
  align-items: center;
}
.tizer__title {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  font-weight: 700;
  line-height: 1.3;
}
.tizer__info {
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  line-height: 1.4;
  color: #66727F;
}
.tizer__btn {
  width: 100%;
  padding: 30px 40px;
}
.tizer__banner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tizer__banner img {
  height: 100%;
}

.banner__img {
  border-radius: 10px 10px 0 0;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1200px) {
  .tizer__top {
    flex-direction: column;
    align-items: start;
  }
}
@media only screen and (max-width: 578px) {
  .tizers {
    margin: 30px 0;
    padding: 30px 0;
  }
  .tizer {
    padding: 20px;
    gap: 10px;
  }
  .tizer__img-wrp {
    width: 39px;
    height: 39px;
    background: none;
  }
}
.mainform {
  margin: 60px 0;
}
.mainform__wrp {
  padding: 50px;
  background: linear-gradient(10deg, #296bd8 8.7%, #3f8fff 100%);
  color: #fff;
  border-radius: 10px;
}
.mainform__title {
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}
.mainform__subtitle {
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  margin-bottom: 20px;
}
.mainform__li {
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  margin: 30px 0;
  display: flex;
  align-items: center;
}
.mainform__bullet {
  height: 7px;
  width: 7px;
  background: #2EC2AA;
  display: block;
  border-radius: 50%;
  margin-right: 15px;
}
.mainform label {
  width: 100%;
}
.mainform__input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: none;
  background: #63A4FF;
  border-radius: 4px;
  color: #fff;
  padding: 17px;
}
.mainform__input::-moz-placeholder {
  color: #fff;
}
.mainform__input::placeholder {
  color: #fff;
}
.mainform__button {
  display: flex;
}
.mainform__btn {
  padding: 20px 30px;
}
.mainform__text {
  font-size: 12px;
  line-height: 1.3;
  padding: 15px 0 0 15px;
}
.mainform a {
  color: #fff;
  text-decoration: underline;
}
.mainform a:hover {
  color: #2EC2AA;
}

@media only screen and (max-width: 578px) {
  .mainform {
    margin: 30px 0;
  }
  .mainform__wrp {
    padding: 15px;
  }
  .mainform__li {
    margin: 17px 0;
  }
  .mainform__text {
    padding: 0 0 0 15px;
  }
}
.toast {
  padding: 12px;
  margin: 10px;
  position: relative;
  background-color: #fff;
}
.toast__header {
  display: flex;
  justify-content: end;
}
.toast__wrp {
  display: flex;
}
.toast__img {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #ececec;
  margin-right: 15px;
}
.toast__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 7px;
  color: #0B1F33;
  line-height: 1.3;
  max-width: 210px;
}
.toast__text {
  color: #66727F;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 15px;
}
.toast .btn-close {
  position: absolute;
  right: 7px;
  top: 7px;
}
.toast__link {
  color: #116FFF;
  text-decoration: underline;
  cursor: pointer;
}

@media only screen and (max-width: 578px) {
  .toast__img {
    width: 60px;
    height: 60px;
  }
}
.messpanel {
  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;
}
.messpanel__ic {
  width: 60px;
  height: 60px;
}
.messpanel__ic:not(:last-child) {
  margin-bottom: 15px;
}
.messpanel__ic:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 578px) {
  .messpanel__ic {
    width: 50px;
    height: 50px;
  }
}
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: #2EC2AA;
}

.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:focus {
  border-bottom: 2px solid #2EC2AA;
}

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

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

.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: #5C5C77;
  font-size: 14px;
}

.cresults__agreement .checkbox-text a {
  color: #2EC2AA;
  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: center;
  width: 100%;
  margin: 0;
  cursor: pointer;
}

.checkbox-hidden {
  display: none;
}

.checkbox-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  max-width: 19px;
  flex: 0 0 20px;
  height: 20px;
  border-radius: 2px;
  border-radius: 1px;
  background: rgba(202, 204, 216, 0.4);
  margin-right: 10px;
}

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

.custom-checkbox .checkbox-wrap::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  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;
}

.content {
  margin-top: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  background: #fff;
  padding: 15px;
  margin-top: -30px;
}
.content article {
  max-width: 980px;
  margin: 0 auto;
}
.content img {
  border-radius: 10px;
  margin-bottom: 20px;
}
.content h2 {
  font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
  font-weight: 600;
  margin: 20px 0 10px 0;
  line-height: 1.3;
  color: #0B1F33;
}
.content h3 {
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  font-weight: 600;
  margin: 20px 0 10px 0;
  line-height: 1.3;
  color: #0B1F33;
}
.content p {
  color: #66727F;
  line-height: 1.5;
  margin: 7px 0;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
}
.content ul {
  list-style-type: disc;
  padding-left: 30px;
  line-height: 1.3;
}
.content li {
  line-height: 1.5;
  padding: 7px 0;
  color: #66727F;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
}
.content table {
  color: #282828;
}
.content table td {
  padding: 17px;
  line-height: 1.3;
}

.main-text {
  background: #ececec;
  margin: 15px 0;
  padding: 20px 15px 20px 40px;
  border-left: 3px solid #2EC2AA;
  color: #0B1F33;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  line-height: 1.4;
  border-radius: 0 10px 10px 0;
}

@media only screen and (max-width: 768px) {
  .content {
    margin-top: 0;
    background: transparent;
    padding: 0;
  }
}
@media only screen and (max-width: 576px) {
  .content ul {
    padding-left: 30px;
  }
  .content .picture {
    margin-top: 20px;
  }
}
/* .contacts{
    padding: 60px 0;
} */
.contacts-card {
  border: 1px solid #ececec;
  padding: 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: 16px;
  color: #66727F;
  margin-bottom: 10px;
}
.contacts-card__input {
  margin-bottom: 10px;
}
.contacts-card__input a {
  color: #0B1F33;
  font-size: 18px;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.contacts-card__time {
  display: block;
  margin-bottom: 7px;
  color: #0B1F33;
}
.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;
  }
}
.sidebar {
  margin-top: 20px;
}
.sidebar__btn {
  width: 100%;
  padding: 30px 20px;
}

.menu-sidebar {
  margin: 20px 0;
}

.menu-sidebar li ul {
  display: none;
}

.menu-sidebar .active ul {
  display: block;
}

.active ul li {
  display: block;
}

.menu-sidebar li {
  padding: 12px 0;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
}
.menu-sidebar li img {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}
.menu-sidebar li a {
  color: #0B1F33;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 15px;
}
.menu-sidebar li a:hover {
  color: #2EC2AA;
}

.active ul {
  padding: 10px 0 0 20px;
}

.active ul a {
  color: #66727F;
}

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

.active > a {
  color: #2EC2AA !important;
}


ul:has(li.active) {
  display: block;
  padding: 10px 0 0 20px;

}
ul:has(li.active) ul a{
  color: #66727F;

}

.menu-sidebar .active ul ul{
  display: none;
}




@media only screen and (max-width: 578px) {
  .menu-sidebar {
    display: none;
  }
}
.heading {
  background: #E6EBEB;
  padding: 30px 0px 50px 0;
}
.heading h1 {
  font-size: clamp(1rem, 0.925rem + 0.375vw, 1.375rem);
  color: #0B1F33;
  line-height: 1.3;
  margin-bottom: 20px;
  margin-top: 0;
  font-weight: 500;
}
.breadcrumbs{
  color: #66727f91;
  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: #66727F;
  text-decoration: none;
}
.breadcrumbs li a:hover {
  color: #66727F;
}
/* .breadcrumbs li + li::before {
  color: #66727F;
  content: "—";
  padding: 0 5px;
}  */
.breadcrumbs li :last-child::after {
  color: #6E6E6E;
  content: "—";
  padding: 0 5px;
}
@media only screen and (max-width: 945px) {
  .heading {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 546px) {
  .heading {
    padding: 20px 0;
  }
}
.subcategory {
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.03);
  background: #fff;
  color: #0B1F33;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
}
.subcategory:hover {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.03);
  color: #116FFF;
}
.subcategory__ic {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
}

@media only screen and (max-width: 576px) {
  .subcategory {
    flex-direction: column;
    padding: 15px;
    gap: 15px;
  }
  .subcategory__ic {
    width: 20px;
    height: 20px;
  }
}
#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: 361px;
  padding: 0;
  text-align: center;
  height: 361px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
#mainCarousel .carousel__slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  border-style: none;
  border-radius: 24px;
  display: block;
  border-radius: 10px;
}

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

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

#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: 96px;
  height: 64px;
  overflow: hidden;
}

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

#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: 300px;
  }
  #mainCarousel .carousel__slide img {
    -o-object-fit: contain;
    object-fit: contain;
  }
}
.product-container-thumb .carousel__slide {
  width: 70px !important;
  height: 70px !important;
  border-radius: 10px !important;
}

.tabs-wrp {
  margin: 30px 0;
}

.tab-content {
  padding: 20px 0;
}

.tabs-page__title {
  font-size: clamp(1.125rem, 0.975rem + 0.75vw, 1.875rem);
  line-height: 1.3;
  display: block;
  font-weight: 500;
  margin-bottom: 20px;
  color: #fff;
  padding: 15px 20px;
  background: #116FFF;
  width: 100%;
  border-radius: 4px;
  text-transform: uppercase;
  text-align: center;
}

.pills-wrp {
  margin-top: 20px;
}

.nav-pills {
  gap: 10px;
}

.nav-pills button {
  width: 100%;
  padding: 20px 20px;
}

.nav-pills .nav-link {
  background: #E1E8F2;
  color: #0B1F33;
}
.nav-pills .nav-link:hover {
  background: #116FFF;
  color: #fff;
}

.content-tabs {
  padding: 30px;
}
.content-tabs ul {
  padding: 10px 0px 10px 30px !important;
  list-style-type: disc;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  background: transparent !important;
}
.content-tabs ul li {
  line-height: 1.5;
  padding: 5px 0;
  display: list-item !important;
  list-style-position: inside;
}
.content-tabs h3 {
  font-size: clamp(1.25rem, 1.1875rem + 0.3125vw, 1.5625rem);
  line-height: 1.3;
  margin-bottom: 15px;
  font-weight: 500;
}

.content-tabs-gorisont {
  padding: 30px 0;
}
.content-tabs-gorisont ul {
  list-style-type: disc !important;
  background: transparent !important;
  margin-top: 0 !important;
  padding: 20px 0 20px 30px !important;
}
.content-tabs-gorisont ul li {
  padding: 7px 0 !important;
  display: list-item !important;
  list-style-position: inside;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
}
.content-tabs-gorisont p {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
}

@media only screen and (max-width: 578px) {
  .content-tabs {
    padding: 15px;
  }
  .nav-pills {
    margin-top: 20px;
  }
  .nav-pills .nav-item {
    width: 100%;
    line-height: 1.3;
  }
  .tab__btns {
    flex-direction: row !important;
    gap: 5px;
    flex-wrap: wrap;
  }
  .tabs__btn {
    padding: 10px !important;
    font-size: 13px;
    width: auto !important;
  }
}
.news__homepage {
  padding: 60px 0;
}

.mix {
  display: inline-block;
}

.mixitup-control-active {
  border: 1px solid #116FFF;
  background: #116FFF;
  outline: none;
  box-shadow: none;
}
.mixitup-control-active:focus {
  outline: none;
  box-shadow: none;
}

.news__btns {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}
.news__btn {
  padding: 20px 30px;
}
.news__btn:hover {
  background: #116FFF;
  border: 1px solid #116FFF;
}
.news__item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 20px;
}
.news__item:hover .news__title {
  color: #116FFF;
}
.news__image {
  height: 181px;
}
.news__image img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.news__tags, .news__date {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  line-height: 1.3;
  color: #66727F;
}
.news__tags {
  margin: 10px 0;
}
.news__title {
  font-weight: 600;
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  color: #0B1F33;
  transition: all 0.3s;
}
.news__date {
  margin-top: auto;
  margin-bottom: 20px;
}
.news__tags, .news__title, .news__date {
  padding-left: 15px;
}

@media only screen and (max-width: 578px) {
  .news__btn {
    padding: 10px 20px;
  }
}
.documents {
  display: flex;
  flex-direction: column;
  border: 1px solid #ececec;
}

.documents__item:not(:last-child) {
  border-bottom: 1px solid #ececec;
}

.documents__item {
  display: flex;
  align-items: stretch;
  color: #0B1F33;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  line-height: 1.3;
}

.documents__item:hover {
  box-shadow: 0 0 20px #ececec;
}

.documents__icon {
  flex-basis: 10%;
  flex-shrink: 0;
  border-right: 1px solid #ececec;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
}

.documents__size {
  color: #66727F;
  font-size: 12px;
  opacity: 0.7;
}

.documents__title {
  flex-basis: 90%;
  padding: 30px 20px;
}

@media only screen and (max-width: 968px) {
  .documents__icon {
    flex-basis: auto;
    padding: 10px;
  }
  .documents__title {
    flex-basis: auto;
  }
}
/* .contacts{
    padding: 60px 0;
} */
.contacts-card {
  border: 1px solid #ececec;
  padding: 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: 16px;
  color: #66727F;
  margin-bottom: 10px;
}
.contacts-card__input {
  margin-bottom: 10px;
}
.contacts-card__input a {
  color: #0B1F33;
  font-size: 18px;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.contacts-card__time {
  display: block;
  margin-bottom: 7px;
  color: #0B1F33;
}
.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;
  }
}
.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.footer {
  margin-top: auto;
  background: #1B1B1B;
  padding: 60px 0 30px 0;
}
.footer__wrp {
  background: #2D2D2D;
  width: 100%;
  border-radius: 10px;
  padding: 30px;
}
.footer__title {
  color: #fff;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
}
.footer li {
  padding: 7px 0;
}
.footer a {
  display: block;
  color: #fff;
  opacity: 0.4;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
}
.footer a:hover {
  opacity: 1;
  color: #fff;
}
.footer__phones {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer__phones a {
  color: #fff;
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  font-weight: 700;
  opacity: 1;
}
.footer__phones a:hover {
  color: #fff;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 20px 0;
}
.footer__contact {
  display: flex !important;
  gap: 10px;
  opacity: 1 !important;
  font-size: clamp(0.875rem, 0.8375rem + 0.1875vw, 1.0625rem);
  color: rgba(255, 255, 255, 0.4901960784) !important;
  line-height: 1.3;
  align-items: flex-start;
}
.footer__icon {
  width: 17px;
  height: 17px;
  fill: #2EC2AA;
  flex-shrink: 0;
  margin-top: 3px;
}
.footer__btn {
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  padding: 15px 30px;
}
.footer__socials {
  display: flex;
  gap: 15px;
  align-items: center;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  align-items: center;
  padding: 10px 0;
}
.footer__left {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  align-items: center;
}
.footer__left p {
  line-height: 1.5;
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  color: rgba(255, 255, 255, 0.3098039216);
}
.footer__right {
  display: flex;
  align-self: center;
  color: rgba(255, 255, 255, 0.3098039216);
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem);
  line-height: 1.5;
}
.footer__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;
}
.footer__heart a {
  color: #fff;
  opacity: 0.4;
}
.footer__heart a:hover {
  opacity: 1;
}

.delosait {
  font-size: clamp(0.75rem, 0.725rem + 0.125vw, 0.875rem) !important;
}

@media only screen and (max-width: 812px) {
  .footer {
    padding: 30px 0 15px 0;
  }
  .footer__bottom {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 578px) {
  .footer__bottom {
    justify-content: center;
    text-align: center;
  }
  .footer__left {
    justify-content: center;
  }
}

.mixitup-control-active{
  background: #ececec;
  border: 1px solid #ececec;
  color: #0B1F33;
}