@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Onest:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent !important;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  cursor: pointer;
}

img {
  max-width: 100%;
}

span, label {
  display: inline-block;
}

html {
  scroll-behavior: smooth;
}

input, textarea {
  outline: none;
  border: 0;
  background: transparent;
  font-weight: 500;
}

button, select {
  border: none;
  cursor: pointer;
  background: transparent;
  outline: 0;
  font-weight: 500;
}

address {
  font-style: normal;
}

.wrapper {
  width: 100%;
  overflow: hidden;
  min-height: 100svh;
}

ul, ol, dl {
  list-style: none;
  padding: 0;
  margin: 0;
}

p, h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
  font-weight: 500;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  margin: 0;
}

body {
  background: #fff;
  color: #1d1d1d;
  font-weight: 500;
  font-family: "Onest", sans-serif;
}

button, input, textarea, li, div {
  font-family: "Onest", sans-serif;
  font-weight: 500;
}

main {
  padding-top: 128px;
}
@media screen and (max-width: 1210px) {
  main {
    padding-top: 77px;
  }
}

.container {
  max-width: 1360px;
  margin: 0 auto;
  width: calc(100% - 80px);
}
@media screen and (max-width: 992px) {
  .container {
    width: calc(100% - 30px);
  }
}

.btn-light {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #112d55;
  border: 1.5px solid #112d55;
  border-radius: 10px;
  padding: 0 20px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.btn-blue {
  border-radius: 10px;
  padding: 0 20px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #112d55;
  font-size: 16px;
  text-align: center;
  color: #fff;
  gap: 15px;
}
.btn-lightblue {
  background: rgba(96, 155, 240, 0.2);
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  gap: 15px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #112d55;
  cursor: pointer;
}

.sec-title {
  display: flex;
}
.sec-title span {
  margin: -17px 0;
  font-weight: 500;
  font-size: 60px;
  color: #1d1d1d;
  display: block;
}
@media screen and (max-width: 992px) {
  .sec-title span {
    font-size: 30px;
    margin: -8.5px 0;
  }
}

.more-link__text {
  font-weight: 400;
  font-size: 14px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

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

.accordion {
  border-radius: 15px;
  background: #f5f5f5;
  transition: 0.2s ease-in-out all;
}
.accordion.active {
  background: #112d55;
}
.accordion.active .accordion-btn {
  color: #fff;
}
.accordion.active .accordion-btn img {
  display: none;
}
.accordion.active .accordion-btn img:nth-child(2) {
  display: block;
}
.accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  width: 100%;
  text-align: left;
  transition: 0.2s ease-in-out all;
  font-weight: 500;
  font-size: 16px;
}
@media screen and (max-width: 992px) {
  .accordion-btn {
    padding: 30px 20px;
    font-size: 14px;
  }
}
.accordion-btn .icon {
  display: flex;
  align-items: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.accordion-btn .icon img:nth-child(2) {
  display: none;
}
.accordion-body {
  padding: 10px 30px 40px;
}
@media screen and (max-width: 992px) {
  .accordion-body {
    padding: 10px 40px 40px 20px;
  }
}
.accordion-body__wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-in-out;
}
.accordion-body p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #fff;
  max-width: 985px;
}

.breadgrumb {
  margin: 40px 0 100px;
}
@media screen and (max-width: 992px) {
  .breadgrumb {
    margin: 20px 0 80px;
  }
}
.breadgrumb-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.breadgrumb-container a {
  font-weight: 400;
  font-size: 12px;
  line-height: 8px;
  color: #878787;
}
.breadgrumb-container li {
  flex-shrink: 0;
  display: flex;
}
.breadgrumb-container span {
  font-weight: 400;
  font-size: 12px;
  line-height: 8px;
  color: #1d1d1d;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.pagination-btn {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #112d55;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination span, .pagination a {
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  color: #878787;
}
.pagination .active {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  color: #112d55;
}

.main-select {
  position: relative;
}
.main-select__btn {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #112d55;
  padding: 0 20px;
  border: 0.5px solid #112d55;
  border-radius: 10px;
  text-align: left;
}
@media screen and (max-width: 800px) {
  .main-select__btn {
    width: 102px;
    height: 30px;
    padding: 0 10px;
    border-radius: 5px;
  }
}
.main-select__btn span {
  text-align: left !important;
  width: auto !important;
  padding: 0 !important;
}
.main-select__btn input {
  display: none !important;
}
.main-select__btn svg {
  flex-shrink: 0;
  transition: 0.2s ease-in-out all;
}
.main-select__list {
  display: none;
  flex-direction: column;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.05), 2px 0 15px 0 rgba(0, 0, 0, 0.05);
  background: #f5f5f5;
  border-radius: 10px;
  position: absolute;
  z-index: 2;
  width: -moz-fit-content;
  width: fit-content;
  bottom: -5px;
  transform: translateY(100%);
}
.main-select__list button {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  text-align: center;
  color: #1d1d1d;
  display: flex;
  align-items: center;
  padding: 0 10px;
  height: auto;
  border-radius: 10px;
  transition: 0.2s ease-in-out all;
  text-align: left;
}
@media screen and (max-width: 800px) {
  .main-select__list button {
    height: 30px;
    width: 102px;
    padding: 0 10px;
    border-radius: 5px;
  }
}
.main-select__list button span {
  text-align: left !important;
  width: auto !important;
  padding: 0 !important;
}
.main-select__list button.selected, .main-select__list button:hover {
  background: #112d55;
  color: #fff;
}
.main-select.active .main-select__btn svg {
  transform: rotateZ(180deg);
}
.main-select.active .main-select__list {
  display: flex;
}

.header {
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  background: #fff;
}
@media screen and (max-width: 1210px) {
  .header {
    padding: 10px 0;
  }
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  font-size: 9px;
  text-align: center;
  color: #112d55;
  padding-right: 20px;
  border-right: 0.2px solid #878787;
}
@media screen and (max-width: 1210px) {
  .header-logo {
    gap: 5px;
    font-size: 6px;
    padding-right: 15px;
  }
}
.header-logo img {
  width: 85px;
  flex-shrink: 0;
}
@media screen and (max-width: 1210px) {
  .header-logo img {
    width: 56px;
  }
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}
@media screen and (max-width: 1210px) {
  .header-nav {
    display: none;
  }
}
.header-nav__link {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #1d1d1d;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1210px) {
  .header-right {
    gap: 15px;
  }
}
@media screen and (max-width: 1210px) {
  .header-right .btn-light {
    display: none;
  }
}
.header-right .bars {
  display: none;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1210px) {
  .header-right .bars {
    display: flex;
  }
}
.header-right .bars img:nth-child(2) {
  display: none;
}
.header-right .bars.active img {
  display: none;
}
.header-right .bars.active img:nth-child(2) {
  display: block;
}
.header-text {
  padding-right: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media screen and (max-width: 1210px) {
  .header-text {
    padding-right: 0;
  }
}
.header-text a, .header-text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 10px;
  color: #1d1d1d;
}
@media screen and (max-width: 1210px) {
  .header-text p:first-child {
    display: none;
  }
}
@media screen and (max-width: 1210px) {
  .header-text p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}
.header-text .email-link {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}
.header-catalog {
  position: absolute;
  left: 0;
  bottom: -25px;
  transform: translateY(calc(100% + 8px));
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.05), 2px 0 15px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  border-radius: 20px;
  padding: 20px 15px 30px 20px;
  width: 662px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.header-catalog.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(100%);
}
.header-catalog__left {
  width: 282px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header-catalog__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 5px 20px 5px 5px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  border-radius: 10px;
  transition: 0.2s ease-in-out;
}
.header-catalog__link:hover, .header-catalog__link.active {
  background: #f5f5f5;
}
.header-catalog__link-left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-catalog__link-left .main-img {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.header-catalog__link-left .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.header-catalog__link-left h3 {
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}
.header-catalog__link-left span {
  font-weight: 400;
  font-size: 10px;
  line-height: 7px;
  color: #878787;
}
.header-catalog__content {
  width: 100%;
}
.header-catalog__content-item {
  max-height: 340px;
  overflow-y: scroll;
  padding-right: 20px;
  width: 100%;
}
.header-catalog__content-item:not(.active) {
  display: none !important;
}
.header-catalog__content-item::-webkit-scrollbar {
  width: 4px;
}
.header-catalog__content-item::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}
.header-catalog__content-item::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: #112d55;
}
.header-catalog__content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header-catalog__content li {
  width: 100%;
  display: flex;
}
.header-catalog__content a {
  display: block;
  width: 100%;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  padding: 15px 20px;
  border-radius: 10px;
  transition: 0.2s ease-in-out all;
}
.header-catalog__content a:hover {
  background: #f5f5f5;
}

.menu {
  position: fixed;
  top: 77px;
  left: 0;
  width: 100%;
  height: calc(100svh - 77px);
  background: #fff;
  z-index: 2;
  padding: 40px 15px;
  overflow-y: scroll;
  display: block;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
@media screen and (max-width: 1210px) {
  .menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}
.menu::-webkit-scrollbar {
  display: none;
}
.menu-navs {
  display: flex;
  flex-direction: column;
  width: 100%;
  opacity: 1;
  max-height: 1000px;
  overflow: hidden;
  transform: translateY(0);
  transition: opacity 0.25s ease, max-height 0.25s ease, transform 0.25s ease;
}
.menu-navs.hidden {
  opacity: 0;
  max-height: 0;
  transform: translateY(-8px);
  pointer-events: none;
}
.menu-navs__link {
  width: 100%;
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 15px;
  font-weight: 500;
  font-size: 16px;
  transition: 0.2s ease-in-out all;
  border-radius: 10px;
}
.menu-navs__link:hover {
  background: #f5f5f5;
}
.menu-catalog__btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  border-radius: 10px;
  padding: 0 15px;
  text-align: left;
}
.menu-catalog__btn:hover {
  background: #f5f5f5;
}
.menu-catalog__btn.active {
  background: #112d55;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 10px;
}
.menu-catalog__btn.active span {
  color: #fff;
}
.menu-catalog__btn.active img {
  filter: brightness(0) invert(1);
}
.menu-catalog__btn.active .icon {
  transform: rotateZ(180deg);
}
.menu-catalog__btn.hidden {
  display: none;
}
.menu-catalog__btn img {
  flex-shrink: 0;
}
.menu-catalog__btn span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #112d55;
}
.menu-catalog {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s ease, max-height 0.25s ease, transform 0.25s ease;
  display: none;
}
.menu-catalog.active {
  display: block;
  opacity: 1;
  max-height: 1000px;
  transform: translateY(0);
  pointer-events: auto;
}
.menu-catalog.hidden {
  display: block;
  opacity: 1;
  max-height: 70px;
  transform: translateY(0);
  pointer-events: auto;
}
.menu-catalog.hidden li:not(.active) {
  display: none;
}
.menu-catalog li {
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px 15px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 8px;
}
.menu-catalog li:hover {
  background: #f5f5f5;
}
.menu-catalog li:hover .icon {
  display: block;
}
.menu-catalog li.active {
  margin-bottom: 10px;
  background: #112d55;
  padding: 10px 10px 10px 48px;
}
.menu-catalog li.active .icon {
  left: 15px;
  right: auto;
  filter: brightness(0) invert(1);
  transform: translateY(-50%) rotateZ(180deg);
  display: block;
}
.menu-catalog li.active b, .menu-catalog li.active span {
  color: #fff;
}
.menu-catalog li img:not(.icon) {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.menu-catalog li .icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
.menu-catalog li .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.menu-catalog li b {
  font-weight: 500;
  font-size: 14px;
  line-height: 10px;
}
.menu-catalog li span {
  font-weight: 400;
  font-size: 10px;
  line-height: 7px;
  color: #878787;
}
.menu-catalog__content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.25s ease, max-height 0.25s ease, transform 0.25s ease;
  display: none;
}
.menu-catalog__content.active {
  display: block;
  opacity: 1;
  max-height: 1000px;
  transform: translateY(0);
  pointer-events: auto;
}
.menu-catalog__content-item:not(.active) {
  display: none;
}
.menu-catalog__content-item a {
  font-weight: 500;
  font-size: 14px;
  height: 50px;
  display: flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 8px;
}
.menu-catalog__content-item a:hover {
  background: #f5f5f5;
}
.menu .btn-light {
  margin: 80px 0 40px;
}
.menu-bottom {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.menu-bottom__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.menu-bottom__item label {
  font-weight: 600;
  font-size: 12px;
  line-height: 8px;
  text-transform: uppercase;
  color: #e3e1e1;
}
.menu-bottom__item p {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  margin: -4px 0;
}
.menu-bottom__item a {
  font-weight: 500;
  font-size: 14px;
  line-height: 10px;
  text-transform: uppercase;
}

.search {
  position: absolute;
  left: 125px;
  width: calc(100% - 286px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1;
}
@media screen and (max-width: 1210px) {
  .search {
    left: 0;
    width: calc(100% - 56px);
  }
  .search::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 150px;
    height: 80px;
    background: #fff;
    z-index: -1;
  }
}
.search.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.search-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #112d55;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1210px) {
  .search-btn {
    width: 40px;
    height: 40px;
  }
  .search-btn img {
    width: 16px;
  }
}
.search-head {
  background: #f5f5f5;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding-right: 60px;
}
@media screen and (max-width: 1210px) {
  .search-head {
    padding-right: 45px;
  }
}
.search-head input {
  height: 50px;
  width: 100%;
  padding: 0 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #1d1d1d;
}
@media screen and (max-width: 1210px) {
  .search-head input {
    height: 40px;
  }
}
.search-head button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-result {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 20px 0 0;
  max-height: 260px;
  overflow-y: scroll;
}
@media screen and (max-width: 1210px) {
  .search-result {
    gap: 0;
    max-height: 250px;
    padding: 0;
  }
}
.search-result::-webkit-scrollbar {
  width: 4px;
  cursor: pointer;
}
@media screen and (max-width: 1210px) {
  .search-result::-webkit-scrollbar {
    display: none;
  }
}
.search-result::-webkit-scrollbar-track {
  background: #f5f5f5;
  border-radius: 10px;
}
.search-result::-webkit-scrollbar-thumb {
  background: #112d55;
  border-radius: 10px;
  cursor: pointer;
}
.search-result__wrap {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: -24px;
  transform: translateY(calc(100% + 8px));
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.05), 2px 0 15px 0 rgba(0, 0, 0, 0.05);
  background: #fff;
  border-radius: 20px;
  padding: 0 15px 27px 20px;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
@media screen and (max-width: 1210px) {
  .search-result__wrap {
    bottom: -10px;
    width: calc(100% + 56px);
    padding: 20px 10px 40px;
  }
}
.search-result__wrap.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(100%);
}
.search-result__wrap .more-link {
  padding: 40px 0 0 50px;
}
@media screen and (max-width: 1210px) {
  .search-result__wrap .more-link {
    padding: 30px 0 0 60px;
  }
}
.search-result__wrap .more-link a {
  font-weight: 600;
  font-size: 16px;
  line-height: 11px;
  color: #112d55;
}
@media screen and (max-width: 1210px) {
  .search-result__wrap .more-link a {
    font-size: 14px;
    font-weight: 500;
    line-height: 10px;
  }
}
.search-result__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 5px 20px 5px 5px;
  border-radius: 10px;
  transition: 0.2s ease-in-out all;
}
@media screen and (max-width: 1210px) {
  .search-result__card {
    padding: 10px 15px;
    min-height: 50px;
  }
}
.search-result__card:hover {
  background: #f5f5f5;
}
.search-result__card-left {
  display: flex;
  align-items: center;
  gap: 15px;
}
.search-result__card-left .main-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}
.search-result__card-left h3 {
  font-weight: 400;
  font-size: 14px;
}
.search-result__card-left h3 b {
  font-weight: 600;
  display: inline;
}
.search-result__card-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}
@media screen and (max-width: 1210px) {
  .search-result__card-right {
    display: none;
  }
}
.search-result__card-right span {
  font-weight: 500;
  font-size: 14px;
  color: #878787;
}
.search-result__card-right a {
  font-weight: 400;
  font-size: 14px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  color: #1d1d1d;
}

.home {
  padding-top: 20px;
}
@media screen and (max-width: 992px) {
  .home {
    padding-top: 10px;
  }
}
.home-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .home-container {
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
  }
}
.home-title {
  font-size: 60px;
  line-height: 42px;
  color: #878787;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 1200px) {
  .home-title {
    font-size: 36px;
    line-height: 100%;
    gap: 12px;
  }
}
@media screen and (max-width: 992px) {
  .home-title {
    font-size: 25px;
    line-height: 18px;
    gap: 15px;
    white-space: nowrap;
  }
}
.home-title .text-blue {
  color: #112d55;
}
.home-left {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 64px 60px;
  background: #f5f5f5;
  border-radius: 40px;
  position: relative;
  z-index: 1;
  gap: 60px;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .home-left {
    padding: 30px 20px;
    border-radius: 30px;
    gap: 40px;
  }
}
.home-left ul {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
}
@media screen and (max-width: 1200px) {
  .home-left ul {
    flex-direction: column;
  }
}
.home-left ul li {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
}
.home-left .bg-text {
  font-size: 400px;
  line-height: 283px;
  color: #fff;
  opacity: 0.8;
  position: absolute;
  z-index: -1;
  right: -115px;
  bottom: -89px;
}
@media screen and (max-width: 992px) {
  .home-left .bg-text {
    font-weight: 500;
    font-size: 200px;
    line-height: 141px;
    bottom: -31px;
  }
}
.home-right {
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  min-height: 650px;
}
@media screen and (max-width: 992px) {
  .home-right {
    height: 200px;
    min-height: inherit;
    border-radius: 30px;
  }
}
.home-right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 992px) {
  .home-right img {
    display: none;
  }
}
.home-right img.sm {
  display: none;
}
@media screen and (max-width: 992px) {
  .home-right img.sm {
    display: block;
  }
}

.product-catalog {
  padding-top: 100px;
}
@media screen and (max-width: 992px) {
  .product-catalog {
    padding-top: 80px;
  }
}
.product-catalog__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 60px 0px 80px;
  gap: 40px;
}
@media screen and (max-width: 992px) {
  .product-catalog__head {
    margin: 40px 0 60px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.product-catalog__head p {
  max-width: 780px;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
}
.product-catalog__head a {
  flex-shrink: 0;
}
@media screen and (max-width: 576px) {
  .product-catalog__head a {
    width: 100%;
  }
}
.product-catalog__content .tab-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.product-catalog__content .tab-head a {
  border-radius: 10px;
  padding: 0 20px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  font-size: 16px;
  transition: 0.2s ease-in-out all;
}
@media screen and (max-width: 992px) {
  .product-catalog__content .tab-head a {
    font-size: 14px;
  }
}
.product-catalog__content .tab-head a:hover, .product-catalog__content .tab-head a.active {
  background: #112d55;
  color: #FFF;
}
.product-catalog__content .tab-body__item:not(.active) {
  display: none !important;
}
@media screen and (max-width: 992px) {
  .product-catalog .swiper {
    overflow: visible;
  }
}
.product-catalog .swiper button {
  position: absolute;
  top: 196px;
  z-index: 2;
  border: 1px solid #fff;
  border-radius: 100px;
  padding: 10px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-catalog .swiper button.swp-prev {
  left: 40px;
}
.product-catalog .swiper button.swp-next {
  right: 40px;
}
@media screen and (max-width: 992px) {
  .product-catalog__card {
    width: 273px;
  }
}
.product-catalog__card .main-img {
  height: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
@media screen and (max-width: 992px) {
  .product-catalog__card .main-img {
    height: 350px;
  }
}
.product-catalog__card-body {
  padding: 30px 30px 0 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.product-catalog__card-body h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-transform: uppercase;
}
.product-catalog__card-body p {
  font-weight: 300;
  font-size: 12px;
  line-height: 160%;
  color: #878787;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.company {
  padding: 100px 0;
}
@media screen and (max-width: 992px) {
  .company {
    padding: 80px 0;
  }
}
.company-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .company-container {
    gap: 10px;
  }
}
.company-head {
  border-radius: 40px;
  background: #f5f5f5;
  padding: 70px;
  min-height: 612px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .company-head {
    padding: 30px 20px 212px;
    border-radius: 30px;
  }
}
.company-head ul {
  max-width: 442px;
  margin: 59px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .company-head ul {
    margin: 40px 0 60px;
    max-width: 100%;
  }
}
.company-head ul li {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
}
.company-head .bg-text {
  font-weight: 700;
  font-size: 600px;
  line-height: 425px;
  color: #112d55;
  position: absolute;
  left: 234px;
  bottom: 94px;
  z-index: -1;
  opacity: 0.05;
}
@media screen and (max-width: 992px) {
  .company-head .bg-text {
    left: 10px;
    font-size: 300px;
    line-height: 212px;
    bottom: 86px;
  }
}
.company-head .bg-img {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 1300px) {
  .company-head .bg-img {
    width: 800px;
  }
}
@media screen and (max-width: 1200px) {
  .company-head .bg-img {
    width: 700px;
  }
}
@media screen and (max-width: 1100px) {
  .company-head .bg-img {
    width: 600px;
  }
}
@media screen and (max-width: 992px) {
  .company-head .bg-img {
    display: none;
    width: 330px;
  }
}
.company-head .bg-img.sm {
  display: none;
}
@media screen and (max-width: 992px) {
  .company-head .bg-img.sm {
    display: block;
  }
}
.company-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .company-content {
    gap: 10px;
  }
}
.company-card {
  border-radius: 40px;
  min-height: 450px;
  background: #f5f5f5;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding: 241px 40px 60px;
}
@media screen and (max-width: 992px) {
  .company-card {
    min-height: 160px !important;
    padding: 80px 25px 25px;
    border-radius: 20px;
  }
}
.company-card h3 {
  font-weight: 600;
  font-size: 200px;
  line-height: 141px;
  text-align: center;
  color: #112d55;
  margin-bottom: 40px;
  opacity: 0.1;
  position: absolute;
  left: 50%;
  top: 60px;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (max-width: 992px) {
  .company-card h3 {
    font-weight: 500;
    font-size: 50px;
    line-height: 35px;
    top: 30px;
  }
}
.company-card p {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 992px) {
  .company-card p {
    font-size: 10px;
  }
}
.company-card img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 992px) {
  .company-card img {
    width: 119px;
  }
}
.company-card:nth-child(2) img {
  width: 485px;
  min-width: 485px;
  right: 50%;
  transform: translateX(50%);
  box-shadow: 9px 4px 22px 0 rgba(0, 0, 0, 0.1), 36px 17px 40px 0 rgba(0, 0, 0, 0.09), 81px 37px 54px 0 rgba(0, 0, 0, 0.05), 145px 67px 64px 0 rgba(0, 0, 0, 0.01), 226px 104px 70px 0 rgba(0, 0, 0, 0);
}
@media screen and (max-width: 992px) {
  .company-card:nth-child(2) img {
    width: 119px;
    min-width: 119px;
  }
}
.company-card:nth-child(n+3) {
  min-height: inherit;
}

.company-home__container {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media screen and (max-width: 992px) {
  .company-home__container {
    gap: 60px;
  }
}
.company-home__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.company-home__content .text {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.company-home__content .text h3 {
  font-weight: 500;
  font-size: 30px;
  line-height: 21px;
}
@media screen and (max-width: 992px) {
  .company-home__content .text h3 {
    font-size: 20px;
    line-height: 14px;
  }
}
.company-home__content .text ul {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .company-home__content .text ul {
    flex-direction: column;
    gap: 30px;
  }
}
.company-home__content .text li {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  margin: -6px 0;
}
.company-home__content .text li:nth-child(2) {
  width: 460px;
  flex-shrink: 0;
}
@media screen and (max-width: 992px) {
  .company-home__content .text li:nth-child(2) {
    width: 100%;
  }
}
.company-home__head {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (max-width: 992px) {
  .company-home__head {
    gap: 40px;
  }
}
.company-home__head p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  margin: -6px 0;
}
.company-home__list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 100px 50px;
  flex-wrap: wrap;
}
@media screen and (max-width: 992px) {
  .company-home__list {
    flex-direction: column;
    gap: 40px;
  }
}
.company-home__list li {
  width: 337px;
}
@media screen and (max-width: 1300px) {
  .company-home__list li {
    width: 300px;
  }
}
@media screen and (max-width: 992px) {
  .company-home__list li {
    width: 100%;
  }
}
.company-home__list li:nth-child(2), .company-home__list li:nth-child(5) {
  width: 413px;
}
@media screen and (max-width: 1300px) {
  .company-home__list li:nth-child(2), .company-home__list li:nth-child(5) {
    width: 350px;
  }
}
@media screen and (max-width: 992px) {
  .company-home__list li:nth-child(2), .company-home__list li:nth-child(5) {
    width: 100%;
  }
}
@media screen and (max-width: 1130px) {
  .company-home__list li.empty {
    display: none;
  }
}
.company-home__list h3 {
  font-weight: 500;
  font-size: 160px;
  line-height: 113px;
  color: #112d55;
  margin-bottom: 40px;
}
@media screen and (max-width: 1300px) {
  .company-home__list h3 {
    font-size: 120px;
    line-height: 85px;
  }
}
.company-home__list h3 span {
  font-weight: 400;
  font-size: 180px;
  line-height: 113px;
  color: rgba(17, 45, 85, 0.1);
  display: inline;
}
@media screen and (max-width: 1300px) {
  .company-home__list h3 span {
    font-size: 140px;
    line-height: 85px;
  }
}
.company-home__list p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  margin: -6px 0;
}
.company-home__card {
  width: 100%;
  height: 630px;
  flex-shrink: 0;
  border-radius: 40px;
}
@media screen and (max-width: 992px) {
  .company-home__card {
    height: 330px;
    border-radius: 30px;
  }
}

.skill {
  position: relative;
}
.skill-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.skill-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .skill-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 0;
    gap: 60px;
  }
}
.skill-title {
  padding-top: 139px;
}
@media screen and (max-width: 1200px) {
  .skill-title {
    padding-top: 0;
  }
}
.skill-title span {
  color: #fff;
}
.skill-list {
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 80px;
  max-width: 670px;
  width: 100%;
  position: relative;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .skill-list {
    max-width: 100%;
    align-items: flex-start;
    gap: 40px;
    padding: 0;
  }
}
.skill-list::before {
  content: "";
  border-left: 0.2px solid rgba(255, 255, 255, 0.1);
  left: 0;
  height: 100%;
  position: absolute;
}
@media screen and (max-width: 1200px) {
  .skill-list::before {
    display: none;
  }
}
.skill-list::after {
  content: "";
  border-left: 0.2px solid rgba(255, 255, 255, 0.1);
  left: 345px;
  height: 100%;
  position: absolute;
}
@media screen and (max-width: 1200px) {
  .skill-list::after {
    display: none;
  }
}
.skill-list__item {
  width: 305px;
}
@media screen and (max-width: 1200px) {
  .skill-list__item {
    width: 100%;
    padding-bottom: 40px;
    border-bottom: 0.5px solid #fff;
  }
}
.skill-list__item:nth-child(2n-1) {
  transform: translateX(calc(-100% - 40px));
}
@media screen and (max-width: 1200px) {
  .skill-list__item:nth-child(2n-1) {
    transform: translateX(0);
  }
}
.skill-list__item h3 {
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 40px;
}
@media screen and (max-width: 992px) {
  .skill-list__item h3 {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.skill-list__item p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #fff;
}

.review {
  padding: 100px 0;
  background: #f5f5f5;
}
@media screen and (max-width: 992px) {
  .review {
    padding: 80px 0;
  }
}
.review-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 60px 0 80px;
  gap: 40px;
}
@media screen and (max-width: 992px) {
  .review-head {
    flex-direction: column;
    align-items: flex-start;
    margin: 40px 0 60px;
  }
}
.review-head p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  width: 100%;
  max-width: 747px;
}
.review-head__right {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  gap: 20px 40px;
}
@media screen and (max-width: 992px) {
  .review-head__right {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 576px) {
  .review-head__right {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .review-head__right .yandex-text {
    width: 149px;
  }
}
@media screen and (max-width: 576px) {
  .review-head__right .btn-light {
    width: 100%;
  }
}
.review-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .review-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
}
.review-swp {
  grid-column: span 2;
}
@media screen and (max-width: 992px) {
  .review-swp .swiper {
    overflow: visible;
  }
}
@media screen and (min-width: 992px) {
  .review-swp .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }
}
.review-swp .swiper-slide {
  background: #fff;
  border-radius: 30px;
  padding: 40px 30px;
  min-height: 336px;
}
@media screen and (max-width: 992px) {
  .review-swp .swiper-slide {
    width: 273px;
    padding: 30px 20px;
    border-radius: 25px;
  }
}
.review-swp .swiper-slide:nth-child(3) {
  background: #112d55;
}
.review-swp .swiper-slide:nth-child(3) h3, .review-swp .swiper-slide:nth-child(3) h4, .review-swp .swiper-slide:nth-child(3) p {
  color: #fff;
}
.review-swp .swiper-slide h3 {
  font-weight: 600;
  font-size: 20px;
  margin: -6px 0 9px;
}
@media screen and (max-width: 992px) {
  .review-swp .swiper-slide h3 {
    font-size: 16px;
  }
}
.review-swp .swiper-slide h4 {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #878787;
  margin-bottom: 28px;
}
@media screen and (max-width: 992px) {
  .review-swp .swiper-slide h4 {
    margin-bottom: 18px;
  }
}
.review-swp .swiper-slide p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  margin-bottom: -6px;
}
@media screen and (max-width: 992px) {
  .review-swp .swiper-slide p {
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
.review-card {
  padding: 50px 30px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  min-height: 700px;
}
@media screen and (max-width: 992px) {
  .review-card {
    padding: 60px 30px 336px;
  }
}
.review-card .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.review-card .main-img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 440px;
  min-width: 440px;
  z-index: -1;
}
.review-card h3 {
  font-weight: 500;
  font-size: 30px;
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .review-card h3 {
    font-size: 20px;
  }
}
.review-card p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #fff;
  margin-bottom: 50px;
}

.faq {
  padding: 100px 0;
}
@media screen and (max-width: 992px) {
  .faq {
    padding: 80px 0;
  }
}
.faq-head {
  margin: 60px 0 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 992px) {
  .faq-head {
    flex-direction: column;
    align-items: flex-start;
    margin: 40px 0 60px;
  }
}
.faq-head p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  width: 100%;
  max-width: 747px;
}
.faq-head .btn-blue {
  flex-shrink: 0;
}
@media screen and (max-width: 576px) {
  .faq-head .btn-blue {
    width: 100%;
  }
}
.faq .btn-light {
  display: inline-flex;
  margin-top: 80px;
}
@media screen and (max-width: 992px) {
  .faq .btn-light {
    margin-top: 60px;
  }
}

.footer {
  background: #112d55;
  padding: 60px 0;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  font-size: 12px;
  line-height: 8px;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 992px) {
  .footer-logo img {
    width: 108px;
  }
}
.footer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 154px;
  gap: 30px;
}
@media screen and (max-width: 992px) {
  .footer-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 62px;
  }
}
.footer-head__left {
  width: 319px;
  flex-shrink: 0;
}
.footer-head__right {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 669px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .footer-head__right {
    flex-direction: column;
    gap: 30px;
  }
}
.footer-head__right-item {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 992px) {
  .footer-head__right-item:nth-child(2) {
    align-items: flex-end;
    text-align: right;
  }
}
.footer-head__right label {
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: -4px 0;
}
@media screen and (max-width: 992px) {
  .footer-head__right label {
    font-size: 12px;
  }
}
.footer-head__right p, .footer-head__right a {
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  text-transform: uppercase;
  color: #fff;
  margin: -7px 0;
}
@media screen and (max-width: 992px) {
  .footer-head__right p, .footer-head__right a {
    font-size: 14px;
  }
}
.footer-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}
.footer-content__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 319px;
  flex-shrink: 0;
}
@media screen and (max-width: 992px) {
  .footer-content__left {
    position: absolute;
    bottom: 127px;
    left: 0;
    width: 100%;
    gap: 30px;
  }
}
.footer-content__left .networks {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-content__left .networks span, .footer-content__left .networks a {
  font-weight: 400;
  font-size: 14px;
  line-height: 10px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-align: center;
  color: #fff;
}
.footer-content__left .ratings {
  display: flex;
  align-items: stretch;
  gap: 10px;
}
.footer-content__left .ratings li {
  border-radius: 10px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.1);
}
.footer-content__left .ratings span {
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-content__left .ratings .line {
  width: 1px;
  height: 40px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.5);
}
.footer-content__left .ratings b {
  font-weight: 500;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-content__right {
  max-width: 669px;
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .footer-content__right {
    gap: 230px;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}
.footer-content__right ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.footer-content__right ul a {
  font-weight: 600;
  font-size: 14px;
  line-height: 10px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.footer-content__right-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .footer-content__right-text {
    align-items: flex-start;
    gap: 30px;
  }
}
.footer-content__right-text h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 11px;
  text-transform: uppercase;
  text-align: right;
  color: #fff;
}
.footer-content__right-text .link {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.footer-content__right-text a {
  font-weight: 300;
  font-size: 12px;
  line-height: 8px;
  text-align: right;
  color: #e3e1e1;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal.active .modal-bg {
  opacity: 1;
}
.modal.active .modal-content {
  opacity: 1;
  transform: translateX(0);
}
.modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(17, 45, 85, 0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-dialog {
  max-height: 100svh;
  width: 100%;
  overflow-y: scroll;
}
.modal-dialog::-webkit-scrollbar {
  display: none;
}
.modal-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 992px) {
  .modal-container {
    width: 100%;
  }
}
.modal-close {
  position: absolute;
  position: absolute;
  top: 40px;
  right: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  .modal-close {
    top: 20px;
    right: 15px;
  }
  .modal-close img {
    width: 20px;
  }
}
.modal-content {
  max-width: 825px;
  width: 100%;
  padding: 40px 40px 100px;
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 992px) {
  .modal-content {
    max-width: 100%;
    padding: 89px 15px;
    justify-content: flex-start;
    gap: 133px;
  }
}
.modal-content::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  background: #fff;
  z-index: -1;
}
.modal-content__head {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 540px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .modal-content__head {
    gap: 40px;
    max-width: 100%;
  }
}
.modal-content h2 {
  font-weight: 500;
  font-size: 40px;
  color: #1d1d1d;
  margin: -10px 0;
}
@media screen and (max-width: 992px) {
  .modal-content h2 {
    font-size: 30px;
  }
}
.modal-content p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  margin: -6px 0;
}
.modal-content__foot {
  width: 100%;
}
.modal-content .networks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 576px) {
  .modal-content .networks {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .modal-content .networks a:nth-child(3) {
    grid-column: span 2;
  }
}
.modal-content .links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 992px) {
  .modal-content .links {
    gap: 20px;
  }
}
.modal-content .links a {
  font-weight: 400;
  font-size: 60px;
  line-height: 42px;
  color: #112d55;
}
@media screen and (max-width: 992px) {
  .modal-content .links a {
    font-size: 40px;
    line-height: 28px;
  }
}

.contact {
  padding-bottom: 100px;
}
@media screen and (max-width: 992px) {
  .contact {
    padding-bottom: 80px;
  }
}
.contact-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 576px) {
  .contact-head {
    flex-direction: column;
    gap: 40px;
  }
}
.contact-head__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 325px;
  width: 100%;
}
@media screen and (max-width: 576px) {
  .contact-head__left {
    max-width: 100%;
  }
}
.contact-head__left p {
  margin: -6px 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  max-width: 302px;
}
.contact-head__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-head__right .networks {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.contact-head__right a {
  font-weight: 400;
  font-size: 14px;
  line-height: 10px;
}
.contact-foot {
  max-width: 582px;
  width: 100%;
}
.contact-foot__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 112px;
}
@media screen and (max-width: 576px) {
  .contact-foot__content {
    gap: 40px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact-foot__content-item h3 {
  font-weight: 600;
  font-size: 14px;
  line-height: 10px;
  margin-bottom: 30px;
}
.contact-foot__content-item ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-foot__content-item li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-foot__content-item b {
  font-weight: 500;
  font-size: 14px;
  line-height: 10px;
  width: 95px;
  flex-shrink: 0;
}
.contact-foot__content-item span {
  font-weight: 400;
  font-size: 14px;
  line-height: 10px;
  width: 100%;
}
.contact-content {
  margin: 80px 0;
  display: flex;
  align-items: flex-start;
  gap: 223px;
}
@media screen and (max-width: 1300px) {
  .contact-content {
    gap: 30px;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1050px) {
  .contact-content {
    flex-direction: column;
    margin: 60px 0;
  }
}
@media screen and (max-width: 576px) {
  .contact-content {
    gap: 40px;
  }
}
.contact-content label {
  font-weight: 600;
  font-size: 14px;
  line-height: 10px;
  text-transform: uppercase;
  color: #e3e1e1;
  margin-bottom: 20px;
}
.contact-content__left {
  max-width: 582px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contact-content__right {
  max-width: 440px;
  width: 100%;
}
.contact-content__right ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-content__right li {
  margin: -6px 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
}
.contact-content__right li b {
  font-weight: 500;
}
.contact-map {
  height: 680px;
  width: 100%;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 992px) {
  .contact-map {
    height: 380px;
  }
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.certificat-container {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 850px) {
  .certificat-container {
    gap: 60px;
  }
}
.certificat-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}
@media screen and (max-width: 850px) {
  .certificat-head {
    gap: 40px;
  }
}
.certificat-head .description {
  max-width: 780px;
  width: 100%;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  margin: -6px 0;
}
.certificat-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.certificat h3 {
  font-weight: 500;
  font-size: 30px;
  margin: -8px 0;
}
@media screen and (max-width: 850px) {
  .certificat h3 {
    font-size: 20px;
    margin: -6px 0;
  }
}
.certificat-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  .certificat-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 850px) {
  .certificat-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.certificat-card {
  background: #f5f5f5;
  padding: 30px;
  display: flex;
  align-items: stretch;
  gap: 57px;
  border-radius: 20px;
}
@media screen and (max-width: 850px) {
  .certificat-card {
    padding: 30px 20px;
  }
}
.certificat-card__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 850px) {
  .certificat-card__text {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 50px;
  }
}
.certificat-card__text p {
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  margin: -4px 0;
}
.certificat-card__text-icon {
  border-radius: 100px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #112d55;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.certificat-card .main-img {
  width: 122px;
  height: 172px;
  flex-shrink: 0;
}
@media screen and (max-width: 850px) {
  .certificat-card .main-img {
    display: none;
  }
}

.payment_delivery_head {
  margin-bottom: 80px;
}
@media screen and (max-width: 992px) {
  .payment_delivery_head {
    margin-bottom: 60px;
  }
}
.payment_delivery_head p {
  margin-top: 60px;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #1d1d1d;
  max-width: 780px;
}
@media screen and (max-width: 992px) {
  .payment_delivery_head p {
    font-size: 14px;
    margin-top: 40px;
  }
}
.payment_delivery_text {
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1244px;
}
@media screen and (max-width: 992px) {
  .payment_delivery_text {
    gap: 40px;
  }
}
.payment_delivery_text-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.payment_delivery_text .working_hours {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  gap: 5px;
}
.payment_delivery_text .working_hours li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.payment_delivery_text .working_hours li b, .payment_delivery_text .working_hours li span {
  width: 95px;
  color: #1d1d1d;
  font-family: Onest;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
}
.payment_delivery_text .working_hours li span {
  font-weight: 400;
}
.payment_delivery_text .end_text {
  gap: 10px;
}
.payment_delivery_text h3 {
  font-weight: 500;
  font-size: 30px;
  line-height: 100%;
  color: #1d1d1d;
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .payment_delivery_text h3 {
    font-size: 20px;
  }
}
.payment_delivery_text b {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: #1d1d1d;
}
.payment_delivery_text p, .payment_delivery_text li, .payment_delivery_text a {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #1d1d1d;
}
.payment_delivery_text a {
  font-weight: 600;
  color: #E30303;
}
.payment_delivery_text ul {
  display: flex;
  flex-direction: column;
  padding-left: 15px;
}
.payment_delivery_text ul li {
  list-style-type: decimal;
}
.payment_delivery_banner {
  min-height: 276px;
  border-radius: 30px;
  background: #f5f5f5;
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 992px) {
  .payment_delivery_banner {
    min-height: 310px;
    overflow: hidden;
  }
}
.payment_delivery_banner_text {
  position: relative;
  min-height: 276px;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .payment_delivery_banner_text {
    min-height: 310px;
  }
}
.payment_delivery_banner.three {
  overflow: hidden;
}
.payment_delivery_banner .circle {
  position: absolute;
  right: 26px;
  bottom: 10px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 0, 0, 0.5) 0%, rgba(14, 36, 49, 0) 100%);
  width: 618px;
  height: 64px;
  transform: rotate(-3deg);
}
@media screen and (max-width: 992px) {
  .payment_delivery_banner .circle {
    bottom: 6px;
    left: 10px;
  }
}
.payment_delivery_banner h3 {
  position: absolute;
  font-weight: 500;
  font-size: 400px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  height: 283px;
}
@media screen and (max-width: 992px) {
  .payment_delivery_banner h3 {
    font-size: 180px;
    height: 176px;
    width: 633px;
  }
}
.payment_delivery_banner h3.one {
  left: 73px;
  bottom: -41px;
}
@media screen and (max-width: 992px) {
  .payment_delivery_banner h3.one {
    left: -105px;
    top: 0;
    bottom: auto;
  }
}
.payment_delivery_banner img.one {
  position: absolute;
  right: 13px;
  bottom: -40px;
  width: 732px;
  height: auto;
  z-index: 2;
}
@media screen and (max-width: 992px) {
  .payment_delivery_banner img.one {
    bottom: 17px;
    width: 399px;
    min-width: 399px;
    height: 246px;
    right: auto;
    left: 0;
  }
}
.payment_delivery_banner img.two {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 461px;
  height: 320px;
  z-index: 2;
  drop-shadow: -4px 5px 14px 0px rgba(0, 0, 0, 0.1), -16px 18px 25px 0px rgba(0, 0, 0, 0.09), -37px 41px 33px 0px rgba(0, 0, 0, 0.05), -65px 74px 39px 0px rgba(0, 0, 0, 0.01), -102px 115px 43px 0px rgba(0, 0, 0, 0);
}
@media screen and (max-width: 992px) {
  .payment_delivery_banner img.two {
    width: 261px;
    height: 181px;
    bottom: 0;
    top: auto;
    left: 0;
  }
}
.payment_delivery_banner img.three {
  position: absolute;
  right: 0;
  top: 0;
  width: 258px;
  height: 276px;
  z-index: 2;
  drop-shadow: -4px 5px 14px 0px rgba(0, 0, 0, 0.1), -16px 18px 25px 0px rgba(0, 0, 0, 0.09), -37px 41px 33px 0px rgba(0, 0, 0, 0.05), -65px 74px 39px 0px rgba(0, 0, 0, 0.01), -102px 115px 43px 0px rgba(0, 0, 0, 0);
}
@media screen and (max-width: 992px) {
  .payment_delivery_banner img.three {
    width: 225px;
    height: 242px;
    bottom: -20px;
    top: auto;
    transform: rotate(90deg);
  }
}

.tabs {
  margin-bottom: 100px;
}
@media screen and (max-width: 992px) {
  .tabs {
    margin-bottom: 80px;
  }
}
.tabs__nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  position: relative;
  z-index: 3;
}
.tabs__btn {
  font-weight: 500;
  font-style: large;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  color: #112d55;
  cursor: pointer;
  transition: 0.25s ease;
  height: 50px;
  border-radius: 10px;
  background: #f5f5f5;
  padding: 10px 20px;
}
.tabs__btn.is-active {
  color: #fff;
  background: #112d55;
}
@media screen and (max-width: 992px) {
  .tabs__btn {
    flex: 1 1 calc(50% - 5px);
  }
}
@media screen and (max-width: 992px) {
  .tabs__btn-full {
    flex: 1 1 100%;
  }
}
.tabs__panel {
  display: none;
  animation: fade 0.25s ease;
}
.tabs__panel.is-active {
  display: block;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.contact-us {
  padding: 100px 0;
}
@media screen and (max-width: 992px) {
  .contact-us {
    padding: 80px 0;
  }
}
.contact-us__container {
  border-radius: 40px;
  overflow: hidden;
  min-height: 550px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-left: 690px;
}
@media screen and (max-width: 1200px) {
  .contact-us__container {
    padding-left: 450px;
  }
}
@media screen and (max-width: 992px) {
  .contact-us__container {
    padding: 60px 30px 336px;
    border-radius: 30px;
  }
}
.contact-us .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-us .card-img {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1200px) {
  .contact-us .card-img {
    width: 500px;
  }
}
@media screen and (max-width: 576px) {
  .contact-us .card-img {
    display: block;
    width: 440px;
    min-width: 440px;
  }
}
.contact-us .card-img.sm {
  display: none;
}
@media screen and (max-width: 576px) {
  .contact-us .card-img.sm {
    display: block;
  }
}
.contact-us__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  max-width: 383px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .contact-us__content {
    max-width: 100%;
  }
}
.contact-us__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.contact-us h2 {
  font-weight: 500;
  font-size: 30px;
  color: #fff;
  margin: -8px 0;
}
@media screen and (max-width: 992px) {
  .contact-us h2 {
    font-size: 20px;
    margin: -6px 0;
  }
}
.contact-us p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #fff;
  margin: -6px 0;
}

.company-product {
  padding: 100px 0;
}
@media screen and (max-width: 992px) {
  .company-product {
    padding: 80px 0;
  }
}
.company-product__head {
  margin: 60px 0 80px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 992px) {
  .company-product__head {
    flex-direction: column;
    align-items: flex-start;
    margin: 40px 0 60px;
  }
}
.company-product__head p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  max-width: 780px;
  width: 100%;
}
.company-product__head .btn-light {
  flex-shrink: 0;
}
@media screen and (max-width: 576px) {
  .company-product__head .btn-light {
    width: 100%;
  }
}
.company-product__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.company-product__content-item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 22px;
}
@media screen and (max-width: 992px) {
  .company-product__content-item {
    grid-template-columns: repeat(1, 1fr);
  }
}
.company-product__content-text {
  border-radius: 40px;
  background: #f5f5f5;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}
@media screen and (max-width: 992px) {
  .company-product__content-text {
    order: 1;
    padding: 30px 30px 40px;
    gap: 40px;
  }
}
.company-product__content-text .logo {
  width: 100px;
}
@media screen and (max-width: 992px) {
  .company-product__content-text .logo {
    width: 86px;
  }
}
.company-product__content-text .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
@media screen and (max-width: 992px) {
  .company-product__content-text .text {
    gap: 30px;
    max-width: 100%;
    width: 100%;
  }
}
.company-product__content-text h3 {
  font-weight: 500;
  font-size: 30px;
  color: #112d55;
  margin: -8px 0;
  max-width: 419px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .company-product__content-text h3 {
    font-size: 20px;
    margin: -5.5px 0;
  }
}
.company-product__content-text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #112d55;
  max-width: 251px;
  width: 100%;
  margin: -6px 0;
}
.company-product__content-img {
  position: relative;
  min-height: 500px;
  border-radius: 40px;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .company-product__content-img {
    order: 2;
    height: 246px;
    min-height: inherit;
  }
}
.company-product__content-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.catalog-head {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 80px;
}
@media screen and (max-width: 800px) {
  .catalog-head {
    gap: 40px;
    margin-bottom: 60px;
  }
}
.catalog-head p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  margin: -6px 0;
  max-width: 780px;
  width: 100%;
}
.catalog-content {
  margin-bottom: 80px;
}
@media screen and (max-width: 800px) {
  .catalog-content {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.catalog .sort {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}
@media screen and (max-width: 800px) {
  .catalog .sort {
    position: relative;
    margin: 0;
  }
}
.catalog .sort-btn {
  font-weight: 600;
  font-size: 14px;
  line-height: 10px;
}
@media screen and (max-width: 800px) {
  .catalog .sort-btn {
    height: 50px;
    width: 100%;
    background: #f5f5f5;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }
}
.catalog .sort-btn img {
  display: none;
}
@media screen and (max-width: 800px) {
  .catalog .sort-btn img {
    display: block;
  }
}
.catalog .sort-list {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 800px) {
  .catalog .sort-list {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -10px;
    flex-direction: column;
    transform: translateY(100%);
    z-index: 3;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.05), 2px 0 15px 0 rgba(0, 0, 0, 0.05);
    background: #fff;
    border-radius: 15px;
    padding: 10px;
    display: none;
  }
  .catalog .sort-list.active {
    display: flex;
  }
}
.catalog .sort-list a {
  font-weight: 400;
  font-size: 14px;
  line-height: 10px;
}
.catalog .sort-list a.active {
  font-weight: 600;
  color: #112d55;
}
@media screen and (max-width: 800px) {
  .catalog-tab__head {
    position: relative;
  }
}
.catalog-tab__head-btn {
  display: none;
}
@media screen and (max-width: 800px) {
  .catalog-tab__head-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #112d55;
    height: 50px;
    gap: 5px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    border-radius: 10px;
  }
}
.catalog-tab__head-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 800px) {
  .catalog-tab__head-list {
    width: 100%;
    position: absolute;
    bottom: -10px;
    transform: translateY(100%);
    z-index: 3;
    box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.05), 2px 0 15px 0 rgba(0, 0, 0, 0.05);
    background: #fff;
    border-radius: 8px;
    padding: 10px;
    gap: 0;
    display: none;
  }
  .catalog-tab__head-list.active {
    display: flex;
  }
}
.catalog-tab__head-list button {
  border-radius: 10px;
  padding: 20px 37px;
  background: #f5f5f5;
  font-weight: 500;
  font-size: 16px;
  line-height: 11px;
  text-align: center;
  color: #112d55;
  transition: 0.2s ease-in-out all;
  white-space: nowrap;
}
@media screen and (max-width: 800px) {
  .catalog-tab__head-list button {
    width: 100%;
    text-align: left;
    font-size: 12px;
    font-weight: 400;
    background: transparent;
    color: #1d1d1d;
    padding: 0 10px;
    min-height: 38px;
    white-space: inherit;
  }
}
.catalog-tab__head-list button:hover, .catalog-tab__head-list button.active {
  background: #112d55;
  color: #fff;
}
@media screen and (max-width: 800px) {
  .catalog-tab__head-list button:hover, .catalog-tab__head-list button.active {
    background: #f5f5f5;
    color: #112d55;
  }
}
.catalog-tab__body:not(.active) {
  display: none !important;
}
.catalog-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px 20px;
  margin-bottom: 100px;
}
@media screen and (max-width: 800px) {
  .catalog-list {
    gap: 40px 10px;
  }
}
.catalog-list .product-card {
  width: calc(25% - 15px);
}
@media screen and (max-width: 1280px) {
  .catalog-list .product-card {
    width: calc(33.3333333333% - 13.3333333333px);
  }
}
@media screen and (max-width: 800px) {
  .catalog-list .product-card {
    width: calc(50% - 5px);
  }
}

.product-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 60px 0 80px;
  gap: 40px;
}
@media screen and (max-width: 992px) {
  .product-head {
    flex-direction: column;
    align-items: flex-start;
  }
}
.product-head p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  margin: -6px 0;
  max-width: 806px;
  width: 100%;
}
.product-head .btn-light {
  flex-shrink: 0;
}
@media screen and (max-width: 576px) {
  .product-head .btn-light {
    width: 100%;
  }
}
.product-block {
  display: flex;
  align-items: stretch;
  gap: 20px;
}
@media screen and (max-width: 992px) {
  .product-block {
    flex-direction: column;
    gap: 10px;
  }
}
.product-block__left {
  width: 555px;
  flex-shrink: 0;
}
@media screen and (max-width: 1280px) {
  .product-block__left {
    width: 450px;
  }
}
@media screen and (max-width: 992px) {
  .product-block__left {
    width: 100%;
  }
}
.product-block__left .swp-parent {
  margin-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .product-block__left .swp-parent {
    margin-bottom: 10px;
  }
}
.product-block__left .swp-parent .swiper-slide {
  height: 600px;
}
@media screen and (max-width: 992px) {
  .product-block__left .swp-parent .swiper-slide {
    height: 420px;
  }
}
.product-block__left .swp-parent .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 30px;
}
@media screen and (max-width: 992px) {
  .product-block__left .swp-child {
    overflow: visible;
  }
}
.product-block__left .swp-child .swiper-slide {
  height: 65px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 992px) {
  .product-block__left .swp-child .swiper-slide {
    width: 95px;
  }
}
.product-block__left .swp-child .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-block__text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f5f5f5;
  border-radius: 30px;
  padding: 60px;
  width: 100%;
  gap: 60px;
}
@media screen and (max-width: 992px) {
  .product-block__text {
    padding: 40px 20px;
  }
}
.product-block__text-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.product-block__text-head h3 {
  font-weight: 600;
  font-size: 20px;
  text-transform: uppercase;
  margin: -6px 0;
}
@media screen and (max-width: 992px) {
  .product-block__text-head h3 {
    font-size: 18px;
    line-height: 13px;
    margin: 0;
  }
}
.product-block__text-head ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-block__text-head li {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  border-bottom: 0.5px solid #878787;
  padding-bottom: 20px;
}
@media screen and (max-width: 992px) {
  .product-block__text-head li {
    display: flex;
    justify-content: space-between;
  }
}
.product-block__text-head b {
  font-weight: 500;
  font-size: 14px;
  display: block;
  margin: -4px 0;
  padding-right: 20px;
}
@media screen and (max-width: 992px) {
  .product-block__text-head b {
    padding: 0;
  }
}
.product-block__text-head li > span {
  display: block;
  margin: -6px 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
}
@media screen and (max-width: 992px) {
  .product-block__text-head li > span {
    text-align: right;
    padding-left: 18px;
  }
}
.product-block__text-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px 20px;
}
@media screen and (max-width: 576px) {
  .product-block__text-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
.product-block__text-bottom .price {
  font-weight: 500;
  font-size: 30px;
  color: #112d55;
  margin: -7px;
}
@media screen and (max-width: 576px) {
  .product-block__text-bottom .price {
    font-size: 20px;
    margin: 0;
    line-height: 14px;
  }
}
.product-block__text-bottom .btn-blue {
  padding: 0 41px;
}
@media screen and (max-width: 576px) {
  .product-block__text-bottom .btn-blue {
    width: 100%;
  }
}
.product-text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 80px 0;
}
@media screen and (max-width: 992px) {
  .product-text {
    flex-direction: column;
    margin: 60px 0 40px;
  }
}
.product-text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  margin: -6px 0;
}
.product-text h3 {
  font-weight: 600;
  font-size: 16px;
  margin: -4px 0;
}
.product-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 992px) {
  .product-content {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
}
.product-content__left {
  width: 577px;
}
@media screen and (max-width: 992px) {
  .product-content__left {
    width: 100%;
  }
}
.product-content__left .text {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 80px;
}
@media screen and (max-width: 992px) {
  .product-content__left .text {
    gap: 40px;
    margin-bottom: 40px;
  }
}
.product-content__left .text h3 {
  font-weight: 500;
  font-size: 30px;
  margin: -8px 0;
}
@media screen and (max-width: 992px) {
  .product-content__left .text h3 {
    font-size: 20px;
    margin: -6px 0;
  }
}
.product-content__left .text p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  margin: -6px 0;
}
.product-content__left ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px 20px;
}
@media screen and (max-width: 480px) {
  .product-content__left ul {
    justify-content: space-between;
    gap: 20px;
  }
}
.product-content__left li {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 95px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.product-content__left li.is-selected span {
  font-weight: 600;
}
.product-content__left li::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translate(-50%, -100%);
  background: #fff;
  color: #1d1d1d;
  border: 1px solid #e3e1e1;
  border-radius: 10px;
  padding: 6px 10px;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease-in-out;
  z-index: 2;
}
.product-content__left li:hover::after {
  opacity: 1;
}
.product-content__left li img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  outline: 2px solid transparent;
  outline-offset: 4px;
  transition: outline-color 0.15s ease-in-out, outline-width 0.15s ease-in-out;
}
.product-content__left li:hover img, .product-content__left li:focus-visible img {
  outline-color: #112d55;
}
.product-content__left li.is-selected img {
  outline-color: #112d55;
  outline-width: 3px;
}
.product-content__left li span {
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  margin: -4px 0;
}
.product-content__right {
  width: 703px;
  border-radius: 40px;
}
@media screen and (max-width: 1310px) {
  .product-content__right {
    width: 600px;
  }
}
@media screen and (max-width: 1200px) {
  .product-content__right {
    width: 500px;
  }
}
@media screen and (max-width: 992px) {
  .product-content__right {
    width: 100%;
  }
}
.product-foot .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 80px;
  max-width: 1244px;
}
@media screen and (max-width: 992px) {
  .product-foot .text {
    margin-bottom: 40px;
  }
}
.product-foot h3 {
  font-weight: 600;
  font-size: 16px;
  margin: -4px 0;
}
.product-foot p {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  margin: -6px 0;
}
.product-foot img {
  max-width: 1275px;
  width: 100%;
}
.product-card {
  width: 100%;
}
.product-card__swp {
  width: 100%;
  border-radius: 30px;
}
@media screen and (max-width: 800px) {
  .product-card__swp {
    border-radius: 20px;
  }
}
.product-card__swp .swiper-slide {
  height: 400px;
}
@media screen and (max-width: 800px) {
  .product-card__swp .swiper-slide {
    height: 205px;
  }
}
.product-card__swp img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.product-card__swp .swp-pagination {
  position: absolute;
  left: 0;
  bottom: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.product-card__swp .swp-pagination span {
  margin: 0 !important;
  padding: 0 !important;
  opacity: 1;
  width: 40px;
  height: 2px;
  border-radius: 2px;
  background: #e3e1e1;
}
.product-card__swp .swp-pagination span.swiper-pagination-bullet-active {
  background: #112d55;
}
.product-card__body {
  padding: 30px 30px 0 15px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 800px) {
  .product-card__body {
    padding: 20px 0 0 10px;
  }
}
.product-card__body-text {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.product-card__body h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
  text-transform: uppercase;
  margin: -7px 0;
}
@media screen and (max-width: 800px) {
  .product-card__body h3 {
    font-size: 14px;
    margin: -4px 0;
  }
}
.product-card__body p {
  font-weight: 300;
  font-size: 12px;
  line-height: 160%;
  color: #878787;
  margin: -5px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product-card__body .price {
  font-weight: 500;
  font-size: 14px;
  margin: -4px 0;
}
.product-card__body a {
  font-weight: 400;
  font-size: 14px;
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  margin: -4px;
}

.other-product {
  padding-top: 100px;
}
.other-product__container {
  position: relative;
}
.other-product__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.other-product__head h2 {
  font-weight: 500;
  font-size: 30px;
  margin: -8px 0;
}
.other-product__head .btn {
  display: flex;
  align-items: center;
  gap: 20px;
}
.other-product__head .btn button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid #112d55;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 992px) {
  .other-product__head .btn button {
    position: absolute;
    z-index: 2;
    top: 154px;
    border-color: #fff;
  }
  .other-product__head .btn button img {
    filter: brightness(0) invert(1);
  }
}
@media screen and (max-width: 992px) {
  .other-product__head .btn-prev {
    left: 30px;
  }
}
@media screen and (max-width: 992px) {
  .other-product__head .btn-next {
    right: 30px;
  }
}
@media screen and (max-width: 1400px) {
  .other-product__swp {
    overflow: visible;
  }
}
@media screen and (max-width: 1400px) {
  .other-product .product-card {
    width: 217px;
  }
}
.other-product .product-card__swp .swiper-slide {
  height: 250px;
}/*# sourceMappingURL=style.css.map */