@charset "UTF-8";
@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&display=swap");
:root {
  --font-family: "Inter", sans-serif;
  --second-family: "Montserrat", sans-serif; }

p, li {
  margin-bottom: 0; }
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0; }

*, *:before, *:after {
  box-sizing: border-box; }

:focus, :active {
  outline: none; }

a:focus, a:active {
  outline: none; }

nav, footer, header, aside {
  display: block; }

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

input, button, textarea {
  font-family: inherit; }

input::-ms-clear {
  display: none; }

button {
  cursor: pointer; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

a, a:visited {
  text-decoration: none; }

a:hover {
  text-decoration: none; }

ul li {
  list-style: none; }

img {
  vertical-align: top; }

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400; }
/*--------------------*/
html {
  scroll-behavior: smooth; }

body {
  background: #ebf4fe;
  color: #151515;
  height: 100%;
  font-size: 16px;
  font-family: var(--font-family); }
  body.hidden {
    overflow: hidden; }

.wrapper {
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column; }

.page {
  flex: 1 0 auto; }

._container {
  max-width: 1254px;
  padding: 0 15px;
  margin: 0 auto; }

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  padding: 24px 0;
  transition: 0.5s; }
  .header.active {
    background-color: rgba(21, 21, 21, 0.8);
    padding: 15px 0; }
  @media (max-width: 480px) {
  .header {
    padding: 15px 0; } }
  .header__body {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .header__logo {
    display: flex;
    align-items: center;
    column-gap: 14px; }
    @media (max-width: 480px) {
  .header__logo {
    column-gap: 8px; } }
    .header__logo img {
      flex-shrink: 0;
      width: 48px;
      height: 48px; }
      @media (max-width: 480px) {
  .header__logo img {
    width: 32px;
    height: 32px; } }
    .header__logo span {
      font-weight: 700;
      font-size: 24px;
      text-transform: uppercase;
      color: #fff;
      font-family: var(--second-family); }
      @media (max-width: 480px) {
  .header__logo span {
    font-size: 18px; } }
  .header__content {
    display: flex;
    align-items: center;
    column-gap: 20px; }
    @media (max-width: 767px) {
  .header__content {
    column-gap: 12px; } }
  .header__items {
    background: rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    padding: 4px;
    display: flex;
    align-items: center;
    column-gap: 10px; }
  .header__item {
    font-weight: 400;
    font-size: 14px;
    color: #fff;
    border-radius: 9999px;
    padding: 12px 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    transition: 0.5s; }
    .header__item.active, .header__item:hover {
      color: #000;
      background-color: #fff; }
  .header__right {
    display: flex;
    align-items: center;
    column-gap: 12px; }
  .header__search {
    border-radius: 999px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25); }
    @media (max-width: 550px) {
  .header__search {
    height: 32px;
    width: 32px; }
    .header__search img {
      width: 15px;
      height: 15px; } }
  .header__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    border-radius: 9999px;
    padding: 14px 15px;
    box-shadow: inset 0px 0px 0px 0 rgba(255, 255, 255, 0.25), inset 0px 0px 0px 0 rgba(255, 255, 255, 0.25);
    background: #3393f4; }
    @media (max-width: 550px) {
  .header__phone {
    padding: 10px 15px;
    font-size: 12px; } }
  @media (max-width: 1200px) {
    .header__desc {
      display: none; } }
  .header .burger {
    display: none; }
    @media (max-width: 1200px) {
  .header .burger {
    display: block; } }

.menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
  padding: 30px 30px 120px;
  background: #ebf4fe;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: 0.8s;
  transform: translateX(-100%); }
  .menu.active {
    transform: translateX(0); }
  .menu__close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 50px;
    color: #bbb;
    cursor: pointer; }
    @media (max-width: 480px) {
  .menu__close {
    top: 10px;
    right: 15px;
    font-size: 40px; } }
  .menu__items {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    row-gap: 20px; }
  .menu__item {
    text-align: center;
    font-size: 18px;
    line-height: 1.3;
    transition: 0.5s;
    color: #151515;
    padding: 10px 20px;
    border-radius: 9999px; }
    .menu__item:hover, .menu__item.active {
      background-color: #151515;
      color: #fff; }

section {
  margin-top: 72px; }
  @media (max-width: 480px) {
  section {
    margin-top: 52px; } }

.main {
  margin-top: 0;
  height: 100vh;
  position: relative;
  background: url("../themes/demo/assets/images/banner.jpg") center / cover no-repeat; }
  .main::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5; }
  .main__container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1; }
  .main__subtitle {
    font-weight: 500;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 16px; }
    @media (max-width: 480px) {
  .main__subtitle {
    font-size: 16px; } }
  .main__title {
    font-weight: 600;
    font-size: 56px;
    line-height: 100%;
    color: #fff;
    font-family: var(--second-family);
    margin-bottom: 16px;
    max-width: 725px; }
    @media (max-width: 480px) {
  .main__title {
    font-size: 30px; } }
  .main__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #fff;
    max-width: 597px;
    margin-bottom: 24px; }
    @media (max-width: 480px) {
  .main__text {
    font-size: 14px; } }
  .main__button {
    padding: 4px 4px 4px 20px;
    display: inline-flex;
    align-items: center;
    column-gap: 16px;
    border-radius: 999px;
    background: #fff;
    transition: 0.5s;
    cursor: pointer; }
    .main__button:hover {
      box-shadow: 0 0 20px #fff; }
    .main__button span {
      font-weight: 500;
      font-size: 16px;
      color: #000; }
      @media (max-width: 480px) {
  .main__button span {
    font-size: 14px; } }
    @media (max-width: 480px) {
    .main__button img {
      width: 34px;
      height: 34px; } }

.title {
  font-weight: 600;
  font-size: 48px;
  line-height: 110%;
  color: #000;
  margin-bottom: 32px;
  font-family: var(--second-family); }
  @media (max-width: 480px) {
  .title {
    font-size: 28px;
    margin-bottom: 24px; } }

.brands__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px; }
  @media (max-width: 1100px) {
    .brands__items {
      grid-template-columns: 1fr 1fr 1fr; } }
  @media (max-width: 767px) {
    .brands__items {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) {
    .brands__items {
      grid-template-columns: 1fr;
      gap: 15px; } }
  .item-brands {
    padding: 24px 24px 46px;
    border-radius: 24px;
    background-color: #fff; }
  @media (max-width: 992px) {
  .item-brands {
    padding: 24px 15px 46px; } }
  .item-brands__image {
    margin-bottom: 24px;
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center; }
  .item-brands__image img {
    max-width: 100%;
    max-height: 100%; }
  .item-brands__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    color: #000;
    font-family: var(--second-family);
    margin-bottom: 8px; }
  @media (max-width: 992px) {
    .item-brands__title {
      font-size: 18px; } }
  .item-brands__location {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #6a7681; }

.about {
  background: url("../themes/demo/assets/images/about.jpg") center / cover no-repeat;
  position: relative;
  padding: 62px 0; }
  @media (max-width: 480px) {
  .about {
    padding: 52px 0; } }
  .about::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5; }
  .about__container {
    position: relative;
    z-index: 1; }
  .about__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px; }
  @media (max-width: 767px) {
    .about__body {
      grid-template-columns: 1fr;
      gap: 24px; } }
  .about__subtitle {
    font-weight: 600;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px; }
  @media (max-width: 480px) {
    .about__subtitle {
      font-size: 16px; } }
  .about__title {
    font-weight: 600;
    font-size: 48px;
    line-height: 110%;
    color: #fff;
    font-family: var(--second-family); }
  @media (max-width: 480px) {
    .about__title {
      font-size: 28px; } }
  .about__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #fff;
    display: flex;
    flex-direction: column;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .about__text {
      font-size: 14px; } }
/* ========== Form Wizard ========== */
.form {
  background-color: #fff;
  margin-top: 0;
  padding: 72px 0; }
  @media (max-width: 480px) {
  .form {
    padding: 52px 0; } }
  .form__title {
    max-width: 900px;
    font-family: var(--second-family);
    line-height: 110%;
    margin-bottom: 48px; }
  .form__steps {
    display: grid;
    grid-template-columns: repeat(5, 206px);
    margin-bottom: 48px;
    column-gap: 48px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px; }
  @media (max-width: 480px) {
    .form__steps {
      grid-template-columns: repeat(5, 154px); } }
  .form__steps::-webkit-scrollbar {
    height: 4px; }
  .form__steps::-webkit-scrollbar-track {
    background: #e0e5eb; }
  .form__steps::-webkit-scrollbar-thumb {
    background: #2684ff; }
  .form__panel--done {
    text-align: center; }
  .form__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; }
  @media (max-width: 480px) {
    .form__grid {
      gap: 10px; } }
  .form__grid--cols-2 {
    grid-template-columns: repeat(2, 1fr); }
  .form__grid--cols-3 {
    grid-template-columns: repeat(3, 1fr); }
  .form__grid--cols-4 {
    grid-template-columns: repeat(4, 1fr); }
  .form__grid__grid--bordered {
    border: 1px solid rgba(224, 229, 235, 0.59);
    border-radius: 24px;
    padding: 24px; }
  .form .field--full {
    grid-column: 1 / -1; }
  .form .field label {
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #000;
    margin-bottom: 8px;
    display: block; }
    @media (max-width: 480px) {
    .form .field label {
      font-size: 14px; } }
  .form .input, .form select {
    width: 100%;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 110%;
    color: #000;
    padding: 20px 24px;
    border-radius: 24px;
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    border: 1px solid #e0e5eb;
    appearance: none; }
  @media (max-width: 480px) {
    .form .input, .form select {
      font-size: 14px;
      padding: 14px 20px; } }
  .form .input.second-option, .form select.second-option {
    border: 1px solid #e0e5eb !important;
    border-radius: 12px !important;
    background: rgba(242, 244, 247, 0.24) !important; }
  .form .input::placeholder, .form select::placeholder {
    color: rgba(0, 0, 0, 0.5); }
  .form select {
    background-image: url("../themes/demo/assets/images/arrow-select.svg");
    background-position: calc(100% - 20px) 16px;
    background-size: 16px;
    background-repeat: no-repeat;
    font-family: var(--second-family); }
  .form .chip {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 58px;
    cursor: pointer;
    border: 1px solid #e0e5eb;
    border-radius: 24px;
    padding: 20px 24px;
    user-select: none;
    transition: 0.5s;
    cursor: pointer;
    padding-right: 40px; }
  @media (max-width: 480px) {
    .form .chip {
      padding: 14px 20px; } }
  .form .chip.chip-with-icon {
    column-gap: 24px; }
    .form .chip.chip-with-icon::after {
      top: 12px;
      right: 12px;
      transform: translate(0); }
    .form .chip.chip-with-icon.active svg path {
      fill: #2684ff; }
  .form .chip::after {
    content: "";
    display: block;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    background: #3393f4 url(../themes/demo/assets/images/check.svg) center / 16px no-repeat;
    opacity: 0;
    transition: 0.5s; }
  .form .chip input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer; }
  .form .chip span {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 110%;
    color: rgba(0, 0, 0, 0.5);
    transition: 0.5s;
    cursor: pointer; }
    @media (max-width: 480px) {
    .form .chip span {
      font-size: 14px; } }
  .form .chip svg path {
    transition: 0.5s; }
  .form .chip:has(input:checked) {
    border: 1px solid #3393f4;
    background: rgba(194, 223, 252, 0.2); }
  .form .chip:has(input:checked)::after {
    opacity: 1; }
  .form .chip:has(input:checked) span {
    color: #000; }
  .form .chip--checkbox {
    justify-content: flex-start; }
  .form__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 48px;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .form__bottom {
      flex-direction: column;
      margin-top: 20px; } }
  .form .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    border-radius: 999px;
    padding: 12px 32px;
    background: #3393f4;
    transition: 0.5s;
    border: 1px solid transparent; }
  @media (max-width: 480px) {
    .form .btn {
      width: 100%; } }
  .form .btn--prev {
    border: 1px solid #e0e5eb;
    background-color: transparent;
    color: #6a7681; }
  .form__hint {
    font-weight: 400;
    font-size: 14px;
    color: #6a7681;
    text-align: center; }
  @media (max-width: 480px) {
    .form__hint {
      order: 1; } }
  .form__panel-body {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    column-gap: 24px; }
  @media (max-width: 767px) {
    .form__panel-body {
      grid-template-columns: 1fr; } }
  .form__summary-title {
    font-weight: 600;
    font-size: 24px;
    line-height: 110%;
    color: #000;
    font-family: var(--second-family);
    margin-bottom: 15px; }
  .form__summary-list {
    display: grid;
    row-gap: 8px;
    column-gap: 8px;
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #6a7681; }
  .form__summary-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #6a7681;
    margin-top: 30px;
    max-width: 390px; }
    @media (max-width: 480px) {
    .form__summary-text {
      margin-bottom: 20px; } }
  .form__summary strong {
    color: #000; }
  @media (max-width: 992px) {
  .form__grid {
    grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) {
  .form__grid {
    grid-template-columns: 1fr; } }
  .form__panel--done {
    padding-top: 50px; }
  @media (max-width: 480px) {
    .form__panel--done {
      padding-top: 20px; } }
  .form__done-title {
    font-weight: 600;
    font-size: 32px;
    line-height: 110%;
    text-align: center;
    color: #000;
    font-family: var(--second-family);
    margin-bottom: 24px; }
    @media (max-width: 480px) {
    .form__done-title {
      font-size: 28px;
      margin-bottom: 15px; } }
  .form__done-text {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    text-align: center;
    color: #6a7681;
    margin-bottom: 24px;
    max-width: 598px;
    margin-left: auto;
    margin-right: auto; }
    @media (max-width: 480px) {
    .form__done-text {
      font-size: 16px; } }
  .form .btn.btn--gray {
    display: inline-flex !important;
    align-items: center !important;
    font-weight: 500 !important;
    font-size: 16px !important;
    color: #6a7681 !important;
    border: 1px solid #e0e5eb !important;
    border-radius: 999px !important;
    padding: 12px 32px !important;
    background-color: transparent !important; }

.step-form {
  cursor: pointer; }
  .step-form.active .step-form__icon {
    background-color: #2684ff; }
    .step-form.active .step-form__icon svg path {
      fill: #fff; }
  .step-form.active .step-form__line::before {
    opacity: 1; }
  .step-form.done .step-form__icon {
    background-color: #6cd65c; }
    .step-form.done .step-form__icon svg {
      opacity: 0; }
    .step-form.done .step-form__icon::after {
      opacity: 1; }
  .step-form.done .step-form__line::after {
    opacity: 1; }
  .step-form:last-child .step-form__line {
    display: none; }
  .step-form__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 36px;
    width: 48px;
    height: 48px;
    background: rgba(224, 229, 235, 0.5);
    margin-bottom: 16px;
    transition: 0.5s;
    cursor: pointer;
    position: relative; }
  .step-form__icon::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background-image: url(../themes/demo/assets/images/check.svg);
    opacity: 0; }
  .step-form__icon svg {
    transition: 0.5s; }
    .step-form__icon svg path {
      transition: 0.5s; }
  .step-form__line {
    display: block;
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translate(100%, -50%);
    background-color: #e0e5eb;
    width: 160px;
    height: 4px;
    border-radius: 5px;
    overflow: hidden; }
  @media (max-width: 480px) {
    .step-form__line {
      width: 112px; } }
  .step-form__line::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background-color: #2684ff;
    opacity: 0;
    transition: 0.5s; }
  .step-form__line::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #6cd65c;
    opacity: 0;
    transition: 0.5s; }
  .step-form__subtitle {
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
    color: #6a7681;
    margin-bottom: 4px; }
  .step-form__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    color: #000;
    font-family: var(--second-family); }
  @media (max-width: 480px) {
    .step-form__title {
      font-size: 16px; } }

.upload {
  border: 1px dashed rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.01);
  display: flex;
  flex-direction: column;
  align-items: center; }
  .upload__image {
    margin-bottom: 20px; }
  .upload__title {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    text-align: center;
    color: #000;
    margin-bottom: 12px; }
  .upload__text {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    text-align: center;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 20px; }

.responsiv-uploader-fileupload.style-file-multi .upload-button {
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #000;
  border-radius: 999px;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.1); }

.responsiv-uploader-fileupload {
  display: flex;
  flex-direction: column;
  align-items: center; }

.upload-object {
  width: 500px !important; }
  @media (max-width: 550px) {
  .upload-object {
    width: 300px !important; } }

@media (max-width: 480px) {
  .btn.btn--prev-sdsad {
    display: none !important; } }

.where__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px; }
  @media (max-width: 1180px) {
    .where__items {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) {
    .where__items {
      grid-template-columns: 1fr; } }
  .item-where {
    position: relative; }
  .item-where__image {
    position: relative;
    overflow: hidden;
    display: block;
    padding-bottom: 144%;
    border-radius: 24px; }
  @media (max-width: 480px) {
    .item-where__image {
      padding-bottom: 100%; } }
  .item-where__image::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5; }
  .item-where__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-where__content {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    z-index: 1; }
  .item-where__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 110%;
    color: #fff;
    font-family: var(--second-family);
    margin-bottom: 8px; }
  @media (max-width: 480px) {
    .item-where__title {
      font-size: 20px; } }
  .item-where__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #fff; }
  @media (max-width: 480px) {
    .item-where__text {
      font-size: 14px; } }
  .item-where__number {
    font-weight: 200;
    font-size: 405px;
    line-height: 72%;
    text-align: right;
    color: #fff;
    opacity: 0.3;
    position: absolute;
    bottom: 0;
    right: -15px; }
  @media (max-width: 480px) {
    .item-where__number {
      font-size: 320px; } }

.advantages__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px; }
  @media (max-width: 992px) {
    .advantages__items {
      grid-template-columns: 1fr 1fr;
      gap: 15px; } }
  @media (max-width: 600px) {
    .advantages__items {
      grid-template-columns: 1fr; } }
  .advantages__items--cols-2 {
    grid-template-columns: 1fr 1fr; }
    @media (max-width: 600px) {
    .advantages__items--cols-2 {
      grid-template-columns: 1fr; } }
  .item-advantages {
    border-radius: 24px;
    padding: 24px;
    background-color: #fff; }
  .item-advantages__icon {
    border-radius: 36px;
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: #ebf4fe; }
  @media (max-width: 480px) {
    .item-advantages__icon {
      margin-bottom: 15px; } }
  .item-advantages__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    color: #000;
    font-family: var(--second-family);
    margin-bottom: 8px; }
  @media (max-width: 480px) {
    .item-advantages__title {
      font-size: 18px; } }
  .item-advantages__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #6a7681;
    display: flex;
    flex-direction: column;
    row-gap: 5px; }
  @media (max-width: 480px) {
    .item-advantages__text {
      font-size: 14px; } }

.order {
  background-color: #fff;
  padding: 72px 0; }
  @media (max-width: 480px) {
  .order {
    padding: 52px 0; } }
  .order__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 24px; }
  @media (max-width: 992px) {
    .order__body {
      grid-template-columns: 1fr;
      align-items: start; } }
  .order__title {
    margin-bottom: 40px; }
  @media (max-width: 480px) {
    .order__title {
      margin-bottom: 20px; } }
  .order__items {
    display: flex;
    flex-direction: column;
    row-gap: 32px; }
  @media (max-width: 480px) {
    .order__items {
      row-gap: 20px; } }
  .order__inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
    row-gap: 24px;
    margin-bottom: 24px; }
  @media (max-width: 480px) {
    .order__inputs {
      grid-template-columns: 1fr;
      gap: 15px;
      margin-bottom: 15px; } }
  .order__input--full {
    grid-column: 1 / 3; }
    @media (max-width: 480px) {
    .order__input--full {
      grid-column: auto; } }
  .order__input label {
    display: block;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    color: #000;
    margin-bottom: 8px; }
    @media (max-width: 480px) {
    .order__input label {
      font-size: 14px; } }
  .order__input input, .order__input textarea {
    width: 100%;
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #151515;
    padding: 15px 20px;
    background: rgba(242, 244, 247, 0.25);
    border: 1px solid #e0e5eb;
    border-radius: 12px; }
    @media (max-width: 480px) {
    .order__input input, .order__input textarea {
      font-size: 14px;
      padding: 12px 20px; } }
    .order__input input::placeholder, .order__input textarea::placeholder {
      color: #a9b2bc; }
  .order__input textarea {
    height: 130px;
    resize: vertical; }
    @media (max-width: 480px) {
    .order__input textarea {
      height: 100px; } }
  .order__button {
    display: flex;
    align-items: center;
    column-gap: 16px;
    padding: 4px 4px 4px 20px;
    border-radius: 999px;
    background: #033b73;
    transition: 0.5s; }
  @media (max-width: 480px) {
    .order__button {
      column-gap: 14px; } }
  .order__button:hover {
    box-shadow: 0 0 20px #033b73; }
  @media (max-width: 480px) {
      .order__button img {
        width: 34px;
        height: 34px; } }
  .order__button span {
    font-weight: 500;
    font-size: 16px;
    color: #fff; }
    @media (max-width: 480px) {
    .order__button span {
      font-size: 14px; } }

.item-order {
  display: flex;
  align-items: center;
  column-gap: 31px; }
  @media (max-width: 480px) {
  .item-order {
    column-gap: 20px; } }
  .item-order:last-child .item-order__icon::after {
    display: none; }
  .item-order__icon {
    border-radius: 50%;
    width: 72px;
    height: 72px;
    background: #ebf4fe;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; }
  @media (max-width: 480px) {
    .item-order__icon {
      width: 60px;
      height: 60px; } }
  .item-order__icon::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 100%);
    bottom: -7px;
    width: 1px;
    height: 20px;
    background-color: #85bef8; }
    @media (max-width: 480px) {
    .item-order__icon::after {
      height: 30px; } }
  .item-order__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    color: #000;
    font-family: var(--second-family);
    margin-bottom: 8px; }
  @media (max-width: 480px) {
    .item-order__title {
      font-size: 16px; } }
  .item-order__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #6a7681; }
  @media (max-width: 480px) {
    .item-order__text {
      font-size: 14px; } }

.projects__container {
  display: flex;
  flex-direction: column; }
  .projects__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px; }
  @media (max-width: 992px) {
    .projects__items {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) {
    .projects__items {
      grid-template-columns: 1fr;
      gap: 15px; } }
  .projects__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    border-radius: 999px;
    padding: 12px 32px;
    background: #033b73;
    transition: 0.5s;
    margin-top: 24px;
    align-self: center; }
  @media (max-width: 480px) {
    .projects__button {
      margin-top: 15px; } }
  .projects__button:hover {
    box-shadow: 0 0 20px #033b73; }

.item-project {
  position: relative; }
  .item-project__image {
    position: relative;
    overflow: hidden;
    display: block;
    padding-bottom: 144%;
    border-radius: 24px; }
  @media (max-width: 480px) {
    .item-project__image {
      padding-bottom: 100%; } }
  .item-project__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-project__content {
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    border-radius: 20px;
    padding: 12px;
    background-color: #fff;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .item-project__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    color: #000;
    margin-bottom: 8px;
    font-family: var(--second-family); }
  @media (max-width: 480px) {
    .item-project__title {
      font-size: 18px;
      margin-bottom: 5px; } }
  .item-project__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #6a7681; }
  @media (max-width: 480px) {
    .item-project__text {
      font-size: 14px; } }

.partners {
  background-color: #fff;
  padding: 72px 0; }
  @media (max-width: 480px) {
  .partners {
    padding: 52px 0; } }
  .partners__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px; }
  @media (max-width: 992px) {
    .partners__body {
      grid-template-columns: 1fr; } }
  @media (max-width: 480px) {
    .partners__body {
      gap: 15px; } }
  .partners__title {
    margin-bottom: 15px; }
  .partners__text {
    font-weight: 400;
    font-size: 21px;
    line-height: 125%;
    color: #6a7681; }
  @media (max-width: 480px) {
    .partners__text {
      font-size: 14px; } }
  .partners__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px; }
  .partners__item {
    display: flex;
    align-items: center;
    justify-content: center; }
  .partners__item img {
    max-width: 100%;
    max-height: 100%; }

.footer {
  padding: 50px 0 30px;
  background: #001d3b; }
  @media (max-width: 480px) {
  .footer {
    padding: 30px 0 15px; } }
  .footer__body {
    display: flex;
    align-items: start;
    column-gap: 32px; }
  @media (max-width: 992px) {
    .footer__body {
      flex-wrap: wrap;
      row-gap: 30px; } }
  @media (max-width: 480px) {
    .footer__nav {
      display: none; } }
  .footer__button {
    display: inline-flex;
    align-items: center;
    column-gap: 16px;
    padding: 4px 4px 4px 20px;
    background-color: #fff;
    border-radius: 999px;
    margin-left: auto;
    transition: 0.5s; }
  @media (max-width: 480px) {
    .footer__button {
      column-gap: 12px; } }
  @media (max-width: 767px) {
    .footer__button {
      margin-left: 0; } }
  .footer__button span {
    font-weight: 500;
    font-size: 16px;
    color: #000;
    white-space: nowrap; }
    @media (max-width: 480px) {
    .footer__button span {
      font-size: 14px; } }
  @media (max-width: 480px) {
      .footer__button img {
        width: 35px;
        height: 35px; } }
  .footer__button:hover {
    box-shadow: 0 0 20px #fff; }
  .footer__foot {
    display: flex;
    align-items: center;
    gap: 5px;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); }
  @media (max-width: 480px) {
    .footer__foot {
      padding-top: 15px;
      margin-top: 15px; } }
  .footer__foot span {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.01em;
    color: #fff; }
    @media (max-width: 480px) {
    .footer__foot span {
      font-size: 12px; } }
  @media (max-width: 480px) {
      .footer__foot img {
        height: 10px; } }
  .footer__foot a {
    display: flex;
    align-items: center;
    justify-content: center; }

.nav-footer__title {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  list-style: 1.2;
  margin-bottom: 15px; }
  .nav-footer__items {
    display: flex;
    flex-direction: column;
    row-gap: 5px; }
  .nav-footer__item {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #fff;
    transition: 0.5s; }
  .nav-footer__item:hover {
    opacity: 0.8; }

.contacts-footer__title {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2; }
  .contacts-footer__items {
    display: flex;
    flex-direction: column;
    row-gap: 12px; }
  .contacts-footer__item {
    display: flex;
    align-items: start;
    column-gap: 12px; }
  .contacts-footer__item svg {
    flex-shrink: 0; }
  .contacts-footer__item span {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #fff; }

.start {
  background: url("../themes/demo/assets/images/about-page.jpg") center / cover no-repeat;
  padding: 145px 0 50px;
  position: relative;
  margin-top: 0; }
  @media (max-width: 480px) {
  .start {
    padding: 100px 0 30px; } }
  .start::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.5; }
  .start__container {
    position: relative;
    z-index: 1; }
  .start__breadcrumbs {
    display: flex;
    align-items: center;
    column-gap: 48px;
    margin-bottom: 18px;
    flex-wrap: wrap;
    row-gap: 10px; }
  @media (max-width: 480px) {
    .start__breadcrumbs {
      column-gap: 24px; } }
  .start__breadcrumb {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: rgba(255, 255, 255, 0.5);
    position: relative; }
  .start__breadcrumb:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    right: -26.5px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 10px;
    background: url("../themes/demo/assets/images/breadcrumb-arrow.svg") center / contain no-repeat; }
    @media (max-width: 480px) {
    .start__breadcrumb:not(:last-child)::after {
      right: -15.5px; } }
  .start__breadcrumb.active {
    color: #fff; }
  .start__title {
    font-weight: 600;
    font-size: 56px;
    line-height: 100%;
    color: #fff;
    font-family: var(--second-family);
    margin-bottom: 16px; }
  @media (max-width: 480px) {
    .start__title {
      font-size: 32px;
      margin-bottom: 10px; } }
  .start__text {
    font-weight: 400;
    font-size: 20px;
    line-height: 140%;
    color: #fff;
    max-width: 597px; }
  @media (max-width: 480px) {
    .start__text {
      font-size: 14px; } }

.gallery__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px; }
  @media (max-width: 767px) {
    .gallery__items {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px; } }
  @media (max-width: 480px) {
    .gallery__items {
      gap: 10px; } }
  .gallery__item {
    display: block;
    position: relative;
    overflow: hidden;
    padding-bottom: 80%;
    border-radius: 24px; }
  @media (max-width: 480px) {
    .gallery__item {
      border-radius: 10px; } }
  .gallery__item img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }

.contacts__buttons {
  border-radius: 999px;
  padding: 4px;
  background: rgba(208, 223, 240, 0.75);
  display: inline-flex;
  column-gap: 12px;
  margin-bottom: 24px; }
  @media (max-width: 600px) {
    .contacts__buttons {
      flex-direction: column;
      border-radius: 24px; } }
  .contacts__button {
    font-weight: 400;
    font-size: 14px;
    color: #000;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    padding: 12px 20px;
    background-color: transparent;
    transition: 0.5s;
    cursor: pointer; }
  .contacts__button.active {
    background-color: #fff; }
  .contacts__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    display: none; }
  @media (max-width: 767px) {
    .contacts__body {
      display: none;
      flex-direction: column-reverse; } }
  .contacts__body.active {
    display: grid; }
    @media (max-width: 767px) {
    .contacts__body.active {
      display: flex; } }
  .contacts__map {
    border-radius: 24px;
    overflow: hidden; }
  @media (max-width: 767px) {
    .contacts__map {
      height: 400px; } }
  .contacts__map iframe, .contacts__map div {
    width: 100%;
    height: 100%; }
  .contacts__content {
    border-radius: 24px;
    padding: 24px;
    background-color: #fff; }
  .contacts__title {
    font-weight: 600;
    font-size: 40px;
    line-height: 100%;
    color: #000;
    margin-bottom: 24px;
    font-family: var(--second-family); }
  @media (max-width: 480px) {
    .contacts__title {
      font-size: 28px; } }
  .contacts__items {
    display: flex;
    flex-direction: column;
    row-gap: 16px; }
  .contact {
    display: flex;
    align-items: start;
    column-gap: 16px; }
  .contact__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 135%;
    color: #000;
    font-family: var(--second-family);
    margin-bottom: 6px; }
  .contact__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #6a7681;
    display: block; }

.info__body {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  column-gap: 24px; }
  @media (max-width: 767px) {
    .info__body {
      grid-template-columns: 1fr; } }
  .info__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 32px; }
  @media (max-width: 992px) {
    .info__content {
      grid-template-columns: 1fr;
      gap: 20px; } }
  .info__image img {
    width: 100%; }
  .info__title {
    font-weight: 600;
    font-size: 48px;
    line-height: 120%;
    color: #000;
    font-family: var(--second-family); }
  @media (max-width: 480px) {
    .info__title {
      font-size: 28px; } }
  .info__text {
    font-weight: 400;
    font-size: 18px;
    line-height: 125%;
    color: #000;
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    padding-top: 18px; }
  @media (max-width: 480px) {
    .info__text {
      font-size: 14px; } }

.docs__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px; }
  @media (max-width: 992px) {
    .docs__items {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) {
    .docs__items {
      grid-template-columns: 1fr;
      gap: 15px; } }
  .docs__item {
    border-radius: 24px;
    padding: 24px 32px;
    background: #fff; }
  @media (max-width: 480px) {
    .docs__item {
      padding: 24px 20px; } }
  .docs__item-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #000;
    margin-top: 16px; }
  @media (max-width: 480px) {
    .docs__item-title {
      font-size: 14px;
      margin-top: 12px; } }

.sort {
  border-radius: 20px;
  padding: 8px;
  background: #fff;
  display: flex;
  column-gap: 8px;
  margin-top: 40px; }
  @media (max-width: 992px) {
  .sort {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 10px; } }
  @media (max-width: 767px) {
  .sort {
    grid-template-columns: 1fr auto; } }
  @media (max-width: 480px) {
  .sort {
    border-radius: 10px; } }
  .sort__select {
    flex-grow: 1;
    position: relative;
    grid-column: 1 / 3; }
  .sort__select:nth-child(6) {
    grid-column: auto; }
  .sort__select::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    background: url("../themes/demo/assets/images/select-arrow.svg") right center / 16px no-repeat;
    width: 30px;
    height: 30px; }
  .sort__select select {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #8d98a5;
    border: 1px solid #e0e5eb;
    border-radius: 12px;
    padding: 15px 20px;
    width: 100%;
    appearance: none; }
    @media (max-width: 480px) {
    .sort__select select {
      font-size: 14px;
      padding: 12px 18px; } }
  .sort__button {
    border-radius: 12px;
    width: 48px;
    height: 48px;
    background: #3393f4;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center; }
  @media (max-width: 480px) {
    .sort__button {
      width: 40px;
      height: 40px; } }

.portfolio__items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px; }
  @media (max-width: 992px) {
    .portfolio__items {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 600px) {
    .portfolio__items {
      grid-template-columns: 1fr;
      gap: 15px; } }
  .item-portfolio {
    border-radius: 24px;
    padding: 8px;
    background-color: #fff;
    display: flex;
    flex-direction: column; }
  .item-portfolio__images {
    display: grid;
    grid-template-columns: 1fr 70px;
    gap: 8px; }
  .item-portfolio__poster {
    height: 100%;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: block;
    padding-bottom: 60%; }
  .item-portfolio__poster img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-portfolio__thumbs {
    overflow: hidden;
    display: grid;
    grid-template-rows: 70px 70px 70px;
    gap: 8px; }
  .item-portfolio__thumb {
    border-radius: 15px;
    overflow: hidden;
    height: 70px;
    width: 70px; }
  .item-portfolio__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-portfolio__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 110%;
    color: #000;
    font-family: var(--second-family);
    margin-top: 16px;
    margin-bottom: 8px;
    padding: 0 8px; }
  @media (max-width: 480px) {
    .item-portfolio__title {
      font-size: 18px; } }
  .item-portfolio__text {
    font-weight: 400;
    font-size: 16px;
    line-height: 140%;
    color: #6a7681;
    margin-bottom: 8px;
    padding: 0 8px;
    flex-grow: 1; }
  @media (max-width: 480px) {
    .item-portfolio__text {
      font-size: 14px; } }
  .item-portfolio__items {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
    padding: 0 8px;
    padding-bottom: 8px; }
  .item-portfolio__item {
    display: flex;
    align-items: center;
    column-gap: 12px; }
  .item-portfolio__item span {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #6a7681; }
    @media (max-width: 480px) {
    .item-portfolio__item span {
      font-size: 14px; } }

.breadcrumbs {
  margin-top: 50px; }
  .breadcrumbs .start__breadcrumb {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: rgba(0, 0, 0, 0.5); }
  .breadcrumbs .start__breadcrumb:not(:last-child)::after {
    content: "";
    display: block;
    position: absolute;
    right: -26.5px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 10px;
    background: url("../themes/demo/assets/images/breadcrumb-arrow-dark.svg") center / contain no-repeat; }
    @media (max-width: 480px) {
    .breadcrumbs .start__breadcrumb:not(:last-child)::after {
      right: -15.5px; } }
  .breadcrumbs .start__breadcrumb.active {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #000; }

.stock {
  margin-top: 0; }
  .stock__body {
    display: grid;
    grid-template-columns: 392px 1fr;
    align-items: start;
    column-gap: 24px; }
  @media (max-width: 1100px) {
    .stock__body {
      grid-template-columns: 1fr;
      gap: 24px; } }
  .stock__items {
    display: flex;
    flex-direction: column;
    row-gap: 24px; }
  .item-stock {
    border: 1px solid #d7e4f4;
    border-radius: 24px;
    padding: 16px;
    background-color: #fff; }
  .item-stock__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 24px; }
  @media (max-width: 480px) {
    .item-stock__top {
      flex-direction: column;
      row-gap: 10px;
      align-items: start; } }
  .item-stock__content {
    display: flex;
    align-items: center;
    column-gap: 12px; }
  .item-stock__image {
    border-radius: 8px;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    overflow: hidden; }
  .item-stock__image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-stock__title {
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    color: #000;
    margin-bottom: 4px;
    font-family: var(--second-family); }
  .item-stock__subtitle {
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    color: #8d98a5; }
  .item-stock__city {
    border-radius: 9999px;
    padding: 4px 8px;
    display: inline-flex;
    align-items: center;
    background: rgba(51, 147, 244, 0.1);
    font-weight: 400;
    font-size: 16px;
    color: #3393f4; }
  .item-stock__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 24px;
    row-gap: 12px; }
  @media (max-width: 767px) {
    .item-stock__items {
      grid-template-columns: 1fr 1fr; } }
  .item-stock__item-title {
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    color: #6a7681; }
  .item-stock__item-text {
    font-weight: 500;
    font-size: 16px;
    line-height: 140%;
    color: #000; }

.filter {
  border: 1px solid #d7e4f4;
  border-radius: 24px;
  padding: 24px 16px 16px;
  background-color: #fff;
  overflow: hidden; }
  .filter__title {
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    color: #000;
    font-family: var(--second-family);
    padding-bottom: 24px;
    margin-bottom: 16px;
    position: relative; }
  .filter__title::after {
    content: "";
    display: block;
    position: absolute;
    height: 1px;
    left: -30px;
    right: -30px;
    bottom: 0;
    background-color: #d7e4f4; }
  .filter__items {
    display: flex;
    flex-direction: column;
    row-gap: 24px; }
  .filter__reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    color: #000;
    border: 1px solid #e0e5eb;
    border-radius: 9999px;
    padding: 15px 32px 14px;
    cursor: pointer; }

.dsa__title {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-bottom: 8px;
  cursor: pointer; }
  .dsa__title span {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    font-family: var(--second-family); }
  .dsa__input-wrapper {
    border: 1px solid #e0e5eb;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.5s;
    cursor: pointer; }
  .dsa__input-wrapper.active {
    border-color: #3393f4; }
    .dsa__input-wrapper.active .dsa__input span {
      color: #000; }
      .dsa__input-wrapper.active .dsa__input svg {
        transform: rotate(180deg); }
        .dsa__input-wrapper.active .dsa__input svg path {
          fill: #000; }
  .dsa__input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px; }
  .dsa__input span {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #8d98a5;
    transition: 0.5s; }
  .dsa__input svg {
    transition: 0.5s; }
    .dsa__input svg path {
      transition: 0.5s; }
  .dsa__hidden {
    position: relative;
    display: none; }
  .dsa__items {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    padding: 18px 20px;
    border-top: 1px solid #3393f4; }
  .dsa__item {
    display: flex;
    align-items: center;
    column-gap: 12px;
    cursor: pointer; }
  .dsa__item input {
    width: 20px;
    height: 20px;
    accent-color: #3393f4; }
  .dsa__item span {
    font-weight: 400;
    font-size: 16px;
    line-height: 120%;
    color: #6a7681; }

.range__title {
  display: flex;
  align-items: center;
  column-gap: 8px;
  margin-bottom: 8px;
  cursor: pointer; }
  .range__title.active div {
    background-color: #3393f4;
    border-color: #3393f4; }
    .range__title.active div::after {
      opacity: 1; }
  .range__title div {
    border: 1px solid #d7e4f4;
    border-radius: 4px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: #fff;
    transition: 0.5s;
    position: relative; }
    .range__title div::after {
      content: "";
      display: block;
      position: absolute;
      left: 50%;
      top: 55%;
      transform: translate(-50%, -50%);
      width: 8px;
      height: 9px;
      background: url("../themes/demo/assets/images/dsa-arrow.svg") center / contain no-repeat;
      transition: 0.5s;
      opacity: 0; }
  .range__title span {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    font-family: var(--second-family); }
  .range__hidden.disable {
    pointer-events: none;
    cursor: none; }
  .range__items {
    display: flex;
    align-items: center;
    justify-content: space-between; }
  .range__item {
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    color: #8d98a5; }

.products {
  position: relative;
  border-radius: 48px; }
  .products__container {
    position: relative;
    z-index: 1;
    padding: 48px 15px; }
  .products__container::after {
    content: "";
    display: block;
    position: absolute;
    left: -48px;
    right: -48px;
    top: 0;
    bottom: 0;
    border-radius: 48px;
    background: #fff;
    z-index: -1; }
  .products__items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 24px; }
  @media (max-width: 992px) {
    .products__items {
      grid-template-columns: 1fr 1fr 1fr; } }
  @media (max-width: 767px) {
    .products__items {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 480px) {
    .products__items {
      grid-template-columns: 1fr; } }

.item-product {
  border: 1px solid #e0e5eb;
  border-radius: 24px; }
  .item-product__image {
    position: relative;
    overflow: hidden;
    display: block;
    padding-bottom: 70%;
    border-radius: 24px; }
  .item-product__image img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .item-product__title {
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: #000;
    font-family: var(--second-family);
    padding: 24px; }

.product__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
  column-gap: 80px; }
  @media (max-width: 767px) {
    .product__body {
      grid-template-columns: 1fr;
      align-items: start; } }
  .product__image {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background-color: #fff;
    overflow: hidden; }
  @media (max-width: 480px) {
    .product__image {
      height: 300px; } }
  .product__image img {
    width: 100%;
    height: 100%;
    object-fit: cover; }
  .product__items {
    display: flex;
    flex-direction: column;
    row-gap: 24px; }
  .product__item {
    display: grid;
    grid-template-columns: 3fr 5fr;
    column-gap: 24px; }
  @media (max-width: 480px) {
    .product__item {
      column-gap: 12px; } }
  .product__item-title {
    font-weight: 400;
    font-size: 21px;
    line-height: 125%;
    color: #7e8081; }
  @media (max-width: 480px) {
    .product__item-title {
      font-size: 16px; } }
  .product__item-text {
    font-weight: 400;
    font-size: 21px;
    line-height: 125%;
    color: #000; }
  @media (max-width: 480px) {
    .product__item-text {
      font-size: 16px; } }

.videos__item {
  position: relative;
  overflow: hidden;
  display: block;
  padding-bottom: 60%; }
  .videos__item iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; }

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

.swiper-pagination-bullet {
  background-color: #033b73;
  transition: 0.5s; }

.swiper-button-next {
  right: -50px; }

.swiper-button-prev {
  left: -50px; }

@media (max-width: 480px) {
  .swiper-button-next {
    right: 10px; }

  .swiper-button-prev {
    left: 10px; } }

.alert .close {
  position: absolute;
  right: 5px;
  top: 5px;
  background-color: transparent; }
