@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-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.8375rem + 0.1875vw, 1.0625rem);
  /* max-width: 327px; */
}

.header__adress-wrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
}

.header__icon {
  width: 16px;
  height: 20px;
  margin-right: 15px;
  flex-shrink: 0;
  fill: #E30125;
  /* margin-top: 5px; */
}

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

.header__btn {
  padding: 12px 20px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}

.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__desktop-btn {
  width: 50px;
  height: 50px;
  background: #D8E0EF;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  cursor: pointer;
}

.header__ic {
  width: 20px;
  height: 20px;
  fill: #66727F;
}

.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;
    padding: 10px 20px !important;
  }

  .header__mobile-btn svg {
    margin-right: 10px;
  }
}

@media only screen and (max-width: 578px) {
  .header__btn-desktop {
    display: none;
  }

  .header__desktop-btn {
    display: none !important;
  }

  .header__phone-mobile {
    display: block;
    color: #0B1F33;
    font-weight: 700;
    font-size: 16px;
  }

  .header__contact {
    margin: 0 10px;
  }
}

.page-single .header {
  background: #fff;
}

.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__right {
  display: none;
}

.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: 20%;
}

.menu-fixed .header__nav {
  padding: 0;
  margin-top: 10px;
}

.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;
}

.menu-fixed .header__nav::before {
  display: none;
}

.menu-fixed .header__btn {
  padding: 5px 15px;
  margin-top: 5px;
}

.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;
  }

  .menu-fixed .header__logo img {
    max-width: 70%;
  }
}

@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);
  }
}

.heading {
  background: #E5ECF7;
  padding: 30px 0px 50px 0;
}

.heading h1 {
  font-size: clamp(1.25rem, 1.1rem + 0.75vw, 2rem);
  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;
  }
}

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

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

.btn-blue {
  background: #0566B4;
  border: 1px solid #0566B4;
  color: #fff;
}

.btn-blue:hover {
  background: rgb(5.6891891892, 116.0594594595, 204.8108108108);
  color: #fff;
}

.btn-white {
  background: #fff;
  border: 1px solid #fff;
  color: #0B1F33;
}

.btn-white:hover {
  background: #fff;
  color: #66727F;
}

.btn-green {
  background: linear-gradient(0deg, #077C8D -16.28%, #4CB7B9 113.95%);
  box-shadow: 0px 2px 0px 0px #01687B;
  color: #fff;
}

.btn-green:hover {
  background: linear-gradient(90deg, #077C8D -16.28%, #4CB7B9 113.95%);
  color: #fff;
}

.btn-red {
  background: #E30125;
  border: 1px solid #E30125;
  color: #fff;
  padding: 15px 30px;
}

.btn-red:hover {
  border: 1px solid #E30125;
  background: rgb(201.6118421053, 0.8881578947, 32.8618421053);
  color: #fff;
}

.btn-gray {
  background: #DCE5ED;
  border: 1px solid #DCE5ED;
  color: #0B1F33;
  padding: 15px 30px;
}

.btn-gray:hover {
  border: 1px solid #DCE5ED;
  background: rgb(203.1603773585, 216.4905660377, 228.3396226415);
  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 #E30125;
  background: transparent;
  color: #E30125;
  font-weight: 700;
}

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

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

.nav__list {
  display: flex;
  align-items: center;
  margin: 0;
}

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

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

.nav__link {
  color: #282828;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

.nav__link:hover {
  color: #E30125;
}

.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: 1400px) {

  .nav__item:not(:last-child) {
  margin-right: 25px;
  white-space: nowrap;
}
}
@media (min-width: 1200px) {
  .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: 1200px) {
  .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;
  }
}

.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: 15px;
}

.panel__ic:hover {
  opacity: 0.7;
}

@media only screen and (max-width: 578px) {
  .panel__ic {
    width: 50px;
    height: 50px;
  }
}

.search__icon {
  width: 20px;
  height: 20px;
  fill: #333333;
}

#form {
  padding: 40px 0 0 0;
  display: none;
  position: fixed;
  width: 100%;
  height: 150px;
  background: #fff;
  box-shadow: 1px 1px 20px rgba(159, 159, 159, 0.4078431373);
  z-index: 9999;
  top: 0;
}

#form .search_f {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#form input {
  padding: 15px;
  border: 1px solid #ececec;
  width: 80%;
  color: #0B1F33;
  background: white;
  margin-right: 10px;
  border-radius: 80px;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

#form .open-search {
  width: 30px;
  height: 30px;
  fill: #fff;
  cursor: pointer;
  margin-left: 20px;
}

@media only screen and (max-width: 576px) {
  #form {
    padding: 20px 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 90px;
  }
}

.content {
  margin-top: 20px;
  margin-bottom: 30px;
}

.content img {
  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,
.content h4 {
  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;
}

.content table th {
  padding: 17px;
  line-height: 1.3;
}

.main-text, blockquote {
  background: #ececec;
  margin: 15px 0;
  padding: 20px 15px 20px 40px;
  border-left: 3px solid #E30125;
  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;
  }
}

.hblocks {
  margin: 30px 0;
}

.hblock {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
  border-radius: 20px;
  padding: 25px;
  width: 100%;
  overflow: hidden;
}

.hblock img {
  flex-shrink: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.hblock__light {
  background: #E2E9F5;
}

.hblock__dark {
  background: #1D93D2;
  color: #fff !important;
}

.hblock__dark p {
  opacity: 0.6;
  margin-bottom: 30px;
}

.hblock__dark .hblock__category {
  background: rgba(255, 255, 255, 0.1058823529);
}

.hblock__category {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  text-transform: uppercase;
  padding: 10px 14px;
  color: #66727F;
  border-radius: 4px;
  background: #EBF0FA;
}

.hblock__bullet {
  width: 5px;
  height: 5px;
  display: inline;
  background: #E30125;
  border-radius: 50%;
}

.hblock__subtitle {
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  font-weight: 700;
  color: #0B1F33;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hblock__text {
  color: #66727F;
  line-height: 1.4;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

.hblock__text p {
  padding: 7px 0;
}

.hblock__btns {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hblock__video {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
  object-fit: cover;
}

.hblock .content {
  background: transparent;
  padding: 0;
  margin: 0;
}

.hblock .content li {
  padding: 4px 0;
}

.hblock .content ul {
  margin-bottom: 20px;
}

.p0-wrp {
  padding: 20px;
}

@media only screen and (max-width: 768px) {
  .hblock img {
    max-width: 40%;
  }
}

.catalog {
  margin: 60px 0;
}

.catalog__item {
  border-radius: 20px;
  background: #FFF;
  width: 100%;
  padding: 20px;
}

.catalog__item img {
  width: 100px;
  height: 150px;
  object-fit: contain;
}

.catalog__title {
  font-weight: 700;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  color: #0B1F33;
  margin-bottom: 8px;
  display: block;
}

.catalog__title a {
  font-weight: 700;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  color: #0B1F33;
  margin-bottom: 8px;
}

.catalog__links li {
  padding: 4px 0;
  /* font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem); */
}

.catalog__links a {
  display: block;
  color: #66727F;
  line-height: 1.2;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
}

.catalog__item a:hover {
  color: #E30125;
}

.blocks {
  margin: 60px 0;
}

.block1 {
  background: #D2DBEB;
}

.block2 {
  background: #EBEDF2;
}

.block3 {
  background: #E7E7E7;
}

.block3 img {
  position: absolute;
  right: 0;
  bottom: 0;
}

.block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.block__wrp {
  padding: 30px;
  position: relative;
  z-index: 30;
}

.block__title {
  color: #0B1F33;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
  font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
}

.block__ul {
  list-style-type: disc;
  padding-left: 20px;
}

.block__ul li {
  padding: 7px 0;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  line-height: 1.4;
  color: #66727F;
}

.block__ul strong {
  color: #0B1F33;
}

.block__btn {
  align-self: flex-start;
  margin: 30px;
  padding: 10px 20px;
}

.block__btn img {
  margin-right: 10px;
}

@media only screen and (max-width: 990px) {
  .block {
    width: 100%;
    display: block;
  }

  .block img {
    max-width: 30%;
    align-self: end;
  }

  .block3 img {
    position: relative;
    right: 0;
    text-align: end;
  }
}

@media only screen and (max-width: 578px) {
  .block img {
    max-width: 100%;
  }

  .block3 img {
    margin-top: -100px;
    z-index: 0;
  }
}

.services {
  margin-bottom: 60px;
}

.serv__slider {
  margin: 30px 0;
  padding: 0 5px 0 0;
}

.serv__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
}

.serv__item:hover .serv__desc {
  color: #E30125;
}

.serv__item img {
  width: 100%;
  height: 290px;
  border-radius: 15px;
  border: 3px solid #fff;
  -o-object-fit: cover;
  object-fit: cover;
  margin-top: auto;
  margin-bottom: 0;
}

.serv__top {
  padding: 20px;
}

.serv__desc {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #66727F;
  line-height: 1.3;
  margin-top: 20px;
  transition: all 0.3s;
}

.serv__geo {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  color: #0B1F33;
}

.serv__icon {
  width: 20px;
  height: 30px;
  fill: #E30125;
  flex-shrink: 0;
}
.serv__btn{
  align-self: flex-start;
  margin: 20px;
  padding: 20px 30px;
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  height: 2px;
  position: relative;
  margin-bottom: 10px;
  width: 100%;
  margin: 0 30px;
  padding-right: 90px;
}

@media only screen and (max-width: 578px) {
  .swiper-scrollbar {
    display: none;
  }
}

.swiper-slide {
  height: auto;
}

.swiper-scrollbar-drag {
  background: #E30125;
}

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

.swiper__btn {
  flex-shrink: 0;
  padding: 20px 30px;
}

.groups_nav {
  display: flex;
  justify-content: start;
}

.groups_ic {
  width: 10px;
  height: 16px;
  fill: #0B1F33;
}

.slider-btn {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
  background: #0B1F33;
  box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover .groups_ic {
  fill: #fff;
}

.news {
  margin: 60px 0;
}

.news__wrp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.news__pills {
  border-radius: 4px;
  padding: 5px;
  background: #fff;
  gap: 5px;
}

.news__btn {
  padding: 20px 30px;
}

.news .item {
  padding: 5px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
}

.news .item img {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.news .item__date {
  font-size: 14px;
  color: #66727F;
  margin-top: 15px;
  padding: 15px;
}

.news .item__wrp {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-between;
  height: 100%;
  padding: 15px 15px 15px 0;
}

.news .item__top {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.news .item__category {
  font-size: 14px;
  padding: 10px;
  background: #F1F5F9;
  color: #66727F;
  align-self: flex-start;
}

.news .item__title {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #0B1F33;
  font-weight: 600;
  line-height: 1.3;
}

.news .item__desc {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
  color: #66727F;
  line-height: 1.3;
}

.news .item__btn {
  align-self: flex-start;
  margin-top: auto;
}

@media only screen and (max-width: 767px) {
  .news .item img {
    width: auto;
  }
}

.nav-pills .nav-link.active {
  background: #DCE5ED !important;
  color: #0B1F33;
  border: 1px solid #DCE5ED;
}

.nav-pills .nav-link.active:focus {
  border: 1px solid #DCE5ED;
}

.nav-pills .nav-link.active:active {
  border: 1px solid #DCE5ED;
}

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

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

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

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

.form_btn__modal:hover {
  background: #fff;
  color: #244d72;
  border: 1px solid #E30125;
}

.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: #E30125;
  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;
  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: #E30125;
  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;
  height: 11px;
  background: url(../img/svg-check-ic.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: #E30125;
  border-color: #E30125;
  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;
  }
}

.tabs-wrp {
  margin: 30px 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: #0566B4;
  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: #0B1F33;
  color: #fff;
}

.nav-pills .nav-link:hover {
  background: #E30125;
  color: #fff;
}

.product .nav-pills .nav-link.active {
  background: #E30125 !important;
  color: #fff;
  border: 1px solid #E30125;
}

@media only screen and (max-width: 578px) {
  .product .nav-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .product .nav-pills .nav-item {
    width: auto;
  }

  .product .nav-pills .nav-item button {
    padding: 10px 20px;
  }
}

.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 ul {
  list-style-type: disc !important;
  background: transparent !important;
  margin-top: 0 !important;
 padding: 10px 0 10px 30px !important; 
}

.content-tabs-gorisont ul li {
  padding: 0 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;
  }
}

.category {
  margin: 30px 0;
}

.ccard {
  padding: 20px;
  border: 1px solid #ececec;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  height: 100%;
  width: 100%;
}

.ccard__stickers {
  display: flex;
  gap: 3px;
  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%;
  -o-object-fit: contain;
  object-fit: contain;
}

.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;
  color: rgb(29, 165, 29);
  font-size: 14px;
}

.ccard__info span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(29, 165, 29);
}

.ccard__bottom {
  margin-top: auto;
  display: flex;
  
  justify-content: space-between;
  align-items: center;
}

.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;

}

.ccard__desc ul li {

  color: #0B1F33;
  font-weight: 400;
  line-height: 1.3;
  padding: 3px 0;

}

.ccard__desc ul {
  list-style-type: disc;
  padding-left: 20px;

}

.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: #E30125;
  font-weight: 700;
  white-space: nowrap;
}

.ccard__more {
  color: #E30125;
  font-size: clamp(0.875rem, 0.85rem + 0.125vw, 1rem);
  display: inline-block;
  margin-top: 20px;
  padding-bottom: 3px;
  border-bottom: 1px dotted #E30125;
}

.ccard__tizers {
  padding: 30px 0;
  margin: 30px 0;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
  background: #F0F5FE;
}

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

#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: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#mainCarousel .carousel__slide img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  border-style: none;
  border-radius: 24px;
  display: block;
  border-radius: 10px;
}

.cases__slider .carousel__slide {
 overflow: hidden;
 border-radius: 10px;

}
.cases__slider .carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  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;
}

.sidebar {
  margin-top: 20px;
}

.sidebar__btn {
  width: 100%;
  padding: 20px 20px;
}



.menu-sidebar {
  margin: 20px 0;
  padding-left: 0 !important;
  list-style-type: none !important;
}

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

.menu-sidebar .ul_active {
  display: block;
  list-style-type: none;
}

.menu-sidebar .ul_active li {
  font-size: 14px;
  padding: 4px 0;
}

.menu-sidebar .ul_active li a {
  color: #66727F
}

.active ul li {
  display: block;
}

.menu-sidebar li {
  padding: 12px 0;
}

.menu-sidebar li a {
  color: #0B1F33;
  line-height: 1.3;
}

.menu-sidebar li a:hover {
  color: #E30125;
}

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

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

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

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


.contacts {
  border: 1px solid #ececec;
  padding: 20px;
}

.contacts__top {
  width: 100%;
  height: 300px;
  position: relative;
  margin-bottom: 20px;
}

.contacts__top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.contacts__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__subtitle {
  font-size: 14px;
  color: #fff;
  margin-bottom: 20px;
}

.contacts__title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.contacts__group {
  margin: 20px 0;
}

.contacts__label {
  font-size: 16px;
  color: #66727F;
  margin-bottom: 10px;
}

.contacts__input {
  margin-bottom: 10px;
}

.contacts__input a {
  color: #0B1F33;
  font-size: 18px;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

.contacts__btn {
  padding: 15px 30px;
}

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

@media only screen and (max-width: 578px) {
  .contacts {
    padding: 5px;
  }
}

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



.gallery {
  margin: 30px 0;
  -moz-column-width: 25em;
  column-width: 25em;

}

.gallery__item {
  display: block;
  margin-bottom: 15px;
  transform: scale(1.001);
  will-change: transform;
  transition: 0.3s;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;

}


.gallery__item:hover {
  /* transform: scale(1.03); */
}

.gallery__item img {
  width: 100%;
  display: block;
}

.sidebar__btns {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.sidebar__btn {
  width: 100%;
}

.sidebar__card {
  margin: 20px 0;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar__card img {
  align-self: flex-start;
}

.sidebar__text {
  color: #66727F;
  line-height: 1.3;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

.sidebar__contacts {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.sidebar__phone {
  color: #0B1F33;
  font-weight: 700;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

.sidebar__email {
  margin-top: 10px;
  color: #E23824;
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem);
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pagination ul {
  display: flex;
  list-style: none;
  padding: 0;
}

.pagination li {
  margin: 0 5px;
}

.pagination li.active span {
  background: #E23824;
  color: white;
  border-radius: 4px;
  border: 1px solid #E23824;
}

.pagination a,
.pagination span {
  display: block;
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #E23824;
}

.pagination a:hover {
  background: #f5f5f5;
  color: #66727F;
}

.news__btn > .active :hover {
  background: #DCE5ED !important;
}
.news__btn:hover {
  color: #0B1F33!important;
  background: #DCE5ED !important;
}
.btn-dark{
background: #0B1F33!important;
}


.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: 18px;
  line-height: 1.3;
}

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

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

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

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

@media only screen and (max-width: 968px) {
  .documents__icon {
    flex-basis: auto;
    padding: 10px;
  }

  .documents__title {
    flex-basis: auto;
  }
}

@media only screen and (max-width: 576px) {
  .documents__item {
    font-size: 16px;
  }
}

.brands__item{
    font-size: 14px;
    line-height: 1.3;
    font-weight: 300;
    padding: 4px 7px;
    border: 1px solid lightgray;
    align-self:start;
    border-radius: 4px ;
    
    
}

.video {
  margin: 60px 0 60px 0;
}

.video__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 4px;
  padding: 10px;
}

.video__title {
  font-size: 16px;
  line-height: 1.4;
  color: #0B1F33;
}

.video__wrp {
  position: relative;
  height: 250px;
  margin-bottom: 10px;
  overflow: hidden;
}

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

.video__wrp .play-icon {
  width: 70px;
  height: 70px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  background: rgba(128, 128, 128, 0.248);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.video__wrp .play-icon img {
  width: 50px;
  height: 50px;
  transition: all 0.3s;
  margin-bottom: 0 !important;
}

.play-icon:hover {
  transition: all 0.3s;
  animation: vanish-out 3000ms linear 0ms infinite normal both;
}

@media only screen and (max-width: 1400px) {
  .video__wrp {
    height: 170px;
  }
}

@media only screen and (max-width: 578px) {
  .video {
    padding: 30px 0 30px 0;
  }

  .video__wrp {
    height: 170px;
  }

  .video__title {
    font-size: 14px;
  }
  .video__wrp img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  border-radius: 4px;
}


}

.serv__geo p{
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: clamp(1.125rem, 1.1rem + 0.125vw, 1.25rem);
  color: #0B1F33;
}


.partners {
  padding: 60px 0;
  overflow: hidden;
  --partners-gap: 32px;
  --partners-logo-width: 264px;
  --partners-logo-height: 145px;
}

.partners-title {
  margin-bottom: 20px;
}

.partners__items {
  justify-items: center;
  align-items: center;
}

.partners__text-before {
  width: 256px;
  padding-right: 32px;
  flex-shrink: 0;
}

.partners__link {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.partners__image {
  transition: all ease-out 0.2s;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  /* Firefox 10+, Firefox on Android */
  filter: gray;
  /* IE6-9 */
  max-width: 210px;
  max-height: 70px;
}

.partners__link:hover~.partners__image-wrap .partners__image {
  filter: none;
  -webkit-filter: grayscale(0%);
}

.partners__image-wrap {
  transition: all ease-out 0.2s;
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=50);
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
}

.partners__link:hover~.partners__image-wrap {
  filter: progid:DXImageTransform.Microsoft.Alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}

.partners__item {
  position: relative;
}

.partners__slider-first {
  margin-bottom: var(--partners-gap);
}

.carousel-wrapper {
  display: grid;
  grid-gap: var(--partners-gap);
  grid-template-rows: var(--partners-logo-height);
  grid-template-columns: repeat(var(--partners-columns-count), var(--partners-logo-width));
}

.partners__item {
  background: #fff;
}

.carousel-container.partners__slider-first {
  animation: var(--partners-animation-time) linear 0s infinite normal none running carousel;
}

.carousel-container.partners__slider-second {
  animation: var(--partners-animation-time) linear 0s infinite normal none running carousel-reverse;
}

.carousel-container {
  display: grid;
  grid-gap: var(--partners-gap);
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  width: calc(var(--partners-logo-width) * var(--partners-columns-count) + var(--partners-gap) * (var(--partners-columns-count) - 1));
}

@keyframes carousel {
  0% {
    transform: translateX(0px);
  }

  100% {
    transform: translateX(calc(-1 * (100% + var(--partners-gap))));
  }
}

@keyframes carousel-reverse {
  0% {
    transform: translateX(calc(-1 * (100% + var(--partners-gap))));
  }

  100% {
    transform: translateX(0px);
  }
}

.partners__topic {
  justify-content: space-between;
  cursor: default;
  padding: 0px 0px 68px;
}

.partners__topic-left,
.partners__topic-right {
  max-width: 50%;
}

.partners__topic-left {
  padding-right: 32px;
  font-size: 3.3333em;
  font-size: clamp(1.4rem, 1.009rem + 1.84vw, 3.3333rem);
  line-height: 1.2;
}

.partners__topic-right {
  padding-left: 20px;
  padding-top: 5px;
}

.partners__subtitle {
  font-size: clamp(1.1333rem, 1.0847rem + 0.2027vw, 1.3333rem);
  line-height: 1.5;
  padding-bottom: 20px;
}

.partners__link-all .svg-arrow-right-xxs {
  display: inline-block;
  margin-left: 14px;
}

.partners__link-all:hover .svg-arrow-right-xxs use {
  stroke: var(--dark);
}

@media (max-width: 991px) {
  .partners {
    flex-direction: column;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .partners__text-before {
    width: 100%;
    padding-bottom: 32px;
  }

  .partners .partners__items {
    --gr-4: 3;
    gap: 30px 20px;
  }

  .partners-topic__inner {
    flex-direction: column;
  }

  .partners__topic-left,
  .partners__topic-right {
    max-width: 100%;
  }

  .partners__topic-right {
    padding-left: 0;
    padding-top: 15px;
  }

  .partners__topic {
    /* padding-top: 60px; */
    padding-bottom: 32px;
  }
}

@media (max-width: 767px) {
  .carousel-container {
    --partners-gap: 16px;
  }
}

.d-flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.partners-wrp {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.partners-wrp p {
  line-height: 1.7;
  color: #000;
  padding-left: 40px;
}

.partners__title {
  font-size: 28px;
  color: #000;
  line-height: 1.4;
  max-width: 50%;
  font-weight: 400;
  margin-bottom: 20px;
  margin-top: 0;
}

@media only screen and (max-width: 768px) {
  .partners-wrp {
    flex-wrap: wrap;
  }

  .partners-wrp p {
    padding-left: 0;
  }

  .partners__title {
    font-size: 20px;
  }
}

@media only screen and (max-width: 576px) {
  .partners {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}