@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: Gilory;
  src: url("../../fonts/Gilroy-Medium.eot") format("eot"), url("../../fonts/Gilroy-Medium.ttf") format("truetype"), url("../../fonts/Gilroy-Medium.woff") format("woff"), url("../../fonts/Gilroy-Medium.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
body {
  font-family: "Gilory", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

button,
input,
select {
  outline: none;
  border: none;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

#burger i,
#filter-burger i {
  color: #1f3664;
  cursor: pointer;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media screen and (max-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media screen and (max-width: 640px) {
  .container {
    max-width: 100%;
    padding: 0 0.8rem;
  }
}

.main {
  margin-top: 103.8px;
  padding-top: 2rem;
}
.main__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
  color: #1f3664;
}
@media screen and (max-width: 574px) {
  .main__title {
    font-size: 1.6rem;
  }
}

.section {
  margin-bottom: 4rem;
}
.section__title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.5rem;
  color: #1f3664;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .section__title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 425px) {
  .section__title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
  }
}
.section__title_white {
  color: white;
}
.section__title_blue {
  color: #1f3664;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section__title_blue img {
  width: 32px;
  color: red;
}
.section__subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: #1f3664;
}
.section__description {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2rem;
  color: #1f3664;
  margin-bottom: 1rem;
}

.base-button {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1rem;
  color: #fff;
  padding: 1rem;
  border-radius: 8px;
  background: #016bd9;
  transition: opacity 0.15s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.base-button_bg {
  background: #fdc901;
  color: #1f3664;
}
.base-button i {
  line-height: 0;
}
@media screen and (max-width: 425px) {
  .base-button {
    font-size: 0.6rem;
    padding: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .base-button {
    font-size: 0.8rem;
    padding: 0.7rem;
    margin-top: 12px;
  }
}
.base-button i {
  margin-left: 5px;
  transform: translateX(-5px);
  transition: transform 0.15s ease;
}
.base-button:hover {
  opacity: 0.7;
}
.base-button:hover i {
  transform: translateX(0);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 50px;
}
.breadcrumb__item {
  font-size: 26px;
  font-weight: 400;
  line-height: 31px;
  color: #1f3664;
}
.breadcrumb__item a {
  font-size: 26px;
  font-weight: 400;
  line-height: 31px;
  color: rgba(31, 54, 100, 0.3019607843);
  transition: color 0.15s ease;
}
.breadcrumb__item a:hover {
  color: #fdc901;
}
.breadcrumb__icon {
  color: rgba(31, 54, 100, 0.3019607843);
}

.test-info {
  padding: 12px 0;
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  color: #212529;
}

.header {
  padding-bottom: 2rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.header-nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.header .nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 900px) {
  .header .nav {
    gap: 1rem;
  }
}
.header .nav__logo {
  display: block;
  line-height: 0;
}
.header .nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media screen and (max-width: 922px) {
  .header .nav-list {
    display: none;
  }
}
.header .nav-list__item-link {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.8rem;
  color: #1f3664;
  transition: color 0.15s ease;
}
.header .nav-list__item-link:hover, .header .nav-list__item-link.active {
  color: #016bd9;
  text-decoration: underline;
}
.header .language {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 922px) {
  .header .language {
    display: none;
  }
}
.header .hide-sidebar {
  display: none;
}
@media screen and (max-width: 922px) {
  .header .hide-sidebar {
    display: inline-block;
  }
}
.header__phone {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4rem;
  color: #1f3664;
  transition: color 0.15s ease;
}
.header__phone:hover {
  color: #fdc901;
}
.header__lang {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.36rem;
  color: #111827;
  background: none;
  cursor: pointer;
  transition: opacity 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.header__lang img {
  width: 24px;
  height: 16px;
}
.header__lang:hover {
  opacity: 0.7;
}
.header .locale {
  position: relative;
}
.header .locale-list {
  position: absolute;
  right: 0;
  background: rgba(0, 0, 0, 0.3843137255);
  padding: 12px 6px;
  width: 100px;
  border-radius: 12px;
  transition: all 0.15s linear;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
}
.header .locale-list.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.header .locale-list__item {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.36rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}
.header .locale-list__item:hover {
  background: #fdc901;
}
.header .locale-list__item:not(:last-child) {
  margin-bottom: 8px;
}
.header .locale-list__item img {
  width: 24px;
  height: 16px;
}
.header .locale_mobile {
  margin-right: 32px;
}
.header .locale_mobile .header__lang {
  color: #fff !important;
}
.header .locale_mobile .locale-list {
  background: rgba(79, 77, 77, 0.4784313725);
}
.header .locale_mobile .locale-list__item {
  color: #fff;
}
.header #burger {
  display: none;
}   
@media screen and (max-width: 922px) {
  .header #burger {
    display: inline-block;
  }
}

.header .sidebar {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000000000000000000;
  width: 33%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.862745098);
  backdrop-filter: blur(10px);
  padding-top: 1rem;
  transition: all 0.15s ease;
  transform: translateX(100%);
}
.header .sidebar.active {
  transform: translateX(0);
}
.header .sidebar__hide-btn {
  color: #fff;
  margin-left: 2rem;
  font-size: 1.5rem;
}
.header .sidebar__hide-btn i{
    cursor: pointer;
}
.header .sidebar .nav-list {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.header .sidebar .nav-list__item-link {
  color: #ccc;
}
.header .sidebar .nav-list__item-link.active {
  color: #fdc901;
}
@media screen and (max-width: 600px) {
  .header .sidebar {
    width: 50%;
  }
}
@media screen and (max-width: 425px) {
  .header .sidebar {
    width: 100%;
  }
}

.sales-card {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
  background: rgba(31, 54, 100, 0.0823529412);
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 20px 25px -5px, rgba(0, 0, 0, 0.04) 0px 10px 10px -5px;
}
.sales-card__figure {
  width: 100%;
  max-height: 260px;
  min-height: 188px;
  overflow: hidden;
  background: #eee;
}
@media screen and (max-width: 1224px) {
  .sales-card__figure {
    max-height: 240px;
  }
}
@media screen and (max-width: 1180px) {
  .sales-card__figure {
    max-height: 220px;
  }
}
@media screen and (max-width: 1085px) {
  .sales-card__figure {
    max-height: 200px;
  }
}
@media screen and (max-width: 980px) {
  .sales-card__figure {
    max-height: 180px;
  }
}
@media screen and (max-width: 768px) {
  .sales-card__figure {
    max-height: 200px;
  }
}
@media screen and (max-width: 660px) {
  .sales-card__figure {
    max-height: 180px;
  }
}
@media screen and (max-width: 600px) {
  .sales-card__figure {
    max-height: 350px;
  }
}
@media screen and (max-width: 530px) {
  .sales-card__figure {
    max-height: 320px;
  }
}
@media screen and (max-width: 489px) {
  .sales-card__figure {
    max-height: 290px;
  }
}
@media screen and (max-width: 450px) {
  .sales-card__figure {
    max-height: 260px;
  }
}
@media screen and (max-width: 410px) {
  .sales-card__figure {
    max-height: 240px;
  }
}
@media screen and (max-width: 379px) {
  .sales-card__figure {
    max-height: 220px;
  }
}
@media screen and (max-width: 350px) {
  .sales-card__figure {
    max-height: 203px;
  }
}
@media screen and (max-width: 325px) {
  .sales-card__figure {
    max-height: 188px;
  }
}
.sales-card__figure-img {
  width: 100%;
}
.sales-card__info {
  height: calc(100% - 260px);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sales-card__datetime {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: #1f3664;
  opacity: 0.3;
}
.sales-card__title {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.75rem;
  color: #1f3664;
  margin-top: 0.9rem;
}
.sales-card__description {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: #1f3664;
  margin-top: 0.625rem;
}
.sales-card__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sales-card__action span {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1rem;
  color: rgba(33, 33, 33, 0.5019607843);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.sales-card__action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 36px;
  border-radius: 8px;
  background: #016bd9;
  color: #fff;
  transition: opacity 0.15s ease;
}
.sales-card__action a:hover {
  opacity: 0.7;
}

.vacancy {
  display: flex;
  width: 100%;
  height: 500px;
  background: url("../../img/atlas.png");
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 940px) {
  .vacancy {
    height: 450px;
  }
}
@media screen and (max-width: 852px) {
  .vacancy {
    flex-direction: column;
    height: auto;
  }
}
.vacancy__info {
  padding: 62px 81px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 1040px) {
  .vacancy__info {
    padding: 2rem;
  }
}
@media screen and (max-width: 576px) {
  .vacancy__info {
    padding: 1rem;
  }
}
.vacancy_bg {
  height: 600px;
  background: #1f3664;
}
@media screen and (max-width: 1024px) {
  .vacancy_bg {
    height: 500px;
  }
}
@media screen and (max-width: 970px) {
  .vacancy_bg {
    height: 450px;
  }
}
@media screen and (max-width: 852px) {
  .vacancy_bg {
    height: auto;
  }
}
.vacancy__title {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 4rem;
  color: #1f3664;
}
@media screen and (max-width: 1024px) {
  .vacancy__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 970px) {
  .vacancy__title {
    font-size: 2.5rem;
    line-height: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .vacancy__title {
    font-size: 2.2rem;
    line-height: 2.5rem;
  }
}
@media screen and (max-width: 576px) {
  .vacancy__title {
    font-size: 1.8rem;
    line-height: 2rem;
  }
}
.vacancy__title_color {
  color: #fff;
}
.vacancy-list {
  margin-top: 34px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 980px) {
  .vacancy-list {
    margin-top: 24px;
  }
  .vacancy-list .vacancy-list__item {
    line-height: 2rem;
  }
}
.vacancy-list__item {
  margin-left: 2rem;
  list-style: disc;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.5rem;
  color: #fff;
}
.vacancy__figure {
  flex-shrink: 0;
  width: 500px;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #016bd9 0%, #013973 100%);
  display: flex;
  align-items: end;
  justify-content: center;
}
@media screen and (max-width: 940px) {
  .vacancy__figure {
    width: 450px;
  }
}
@media screen and (max-width: 852px) {
  .vacancy__figure {
    width: 100%;
    height: 300px;
  }
  .vacancy__figure img {
    width: auto !important;
    height: 100%;
  }
}
.vacancy__figure_bg {
  width: 550px;
  height: auto;
  background: #fdc901;
}
@media screen and (max-width: 1024px) {
  .vacancy__figure_bg {
    width: 500px;
  }
}
@media screen and (max-width: 970px) {
  .vacancy__figure_bg {
    width: 450px;
  }
}
@media screen and (max-width: 852px) {
  .vacancy__figure_bg {
    width: 100%;
  }
  .vacancy__figure_bg img {
    width: 50% !important;
    height: 50% !important;
  }
}
.vacancy__figure img {
  width: auto;
  height: 90%;
}

.footer {
  background: #1f3664;
  padding: 3.25rem 0;
}

.footer .nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer .nav__logo {
  max-width: 160px;
  display: block;
}
.footer .nav__logo img {
  width: 100%;
}
.footer .nav-social-networks {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  margin-top: 2rem;
}
@media screen and (max-width: 768px) {
  .footer .nav .nav-list.center {
    display: none;
  }
}
.footer .nav-list__item:not(:last-child) {
  margin-bottom: 1.5rem;
}
.footer .nav-list__item-link {
  font-size: 1.31rem;
  font-weight: 400;
  line-height: 1.6rem;
  color: #fff;
  transition: color 0.15s ease;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.footer .nav-list__item-link:hover, .footer .nav-list__item-link.active {
  color: #fdc901;
}

.swiper {
  width: 100%;
  height: 26.9vw;
  background: #ddd;
  padding: 1rem;
  border-radius: 1rem;
  overflow: hidden;
}
@media screen and (min-width: 1440px) {
  .swiper {
    height: 370px;
  }
}
@media screen and (max-width: 768px) {
  .swiper {
    height: 38vw;
  }
}
@media screen and (max-width: 580px) {
  .swiper {
    height: 40vw;
  }
}
@media screen and (max-width: 425px) {
  .swiper {
    height: 54vw;
  }
}
@media screen and (max-width: 375px) {
  .swiper {
    height: 53vw;
  }
}
.swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.swiper-button-prev,
.swiper-button-next {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  border: 1px solid rgb(229, 231, 235);
  background: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 425px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 32px !important;
    height: 32px !important;
  }
}
.swiper-button-prev::after,
.swiper-button-next::after {
  color: #fff;
  font-size: 18px !important;
  font-weight: 900;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 16px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background: #fdc901;
}

.categories {
  display: grid;
  grid-template-columns: repeat(6, minmax(160px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
@media screen and (max-width: 1120px) {
  .categories {
    grid-template-columns: repeat(3, minmax(160px, 1fr));
  }
}
@media screen and (max-width: 590px) {
  .categories {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }
}
@media screen and (max-width: 425px) {
  .categories {
    grid-template-columns: repeat(1, minmax(160px, 1fr));
  }
}
.categories__card {
  width: 100%;
}
.categories__card-img {
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
  background: #ddd;
  border-radius: 8px;
}
.categories__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.categories__card-title {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.75rem;
  color: #1f3664;
  margin-top: 1.25rem;
  text-align: center;
}

.best-selling-wrap {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
}
@media screen and (max-width: 1120px) {
  .best-selling-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .best-selling-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 425px) {
  .best-selling-wrap {
    grid-template-columns: 1fr;
  }
}
.best-selling-wrap .best-selling-product {
  width: 100%;
  height: 346.5px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.best-selling-wrap .best-selling-product__img {
  width: 100%;
  height: 240px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f5f7;
  padding: 30px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.best-selling-wrap .best-selling-product__img img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.best-selling-wrap .best-selling-product__name {
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  color: #000;
  margin: 11px 0 14px;
}
.best-selling-wrap .best-selling-product__indetail {
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  color: #000;
  width: 135px;
  border-radius: 10px;
  background: #fdc901;
  padding: 8px;
  cursor: pointer;
  transition: opacity 0.15s ease-in-out;
}
.best-selling-wrap .best-selling-product__indetail:hover {
  opacity: 0.8;
}

.short-sales {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .short-sales {
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    gap: 1rem;
  }
}
@media screen and (max-width: 560px) {
  .short-sales {
    grid-template-columns: 1fr;
  }
  .short-sales .sales-card:last-child {
    grid-column: auto;
  }
}
.short-sales__card {
  width: 100%;
}

.bonus {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
@media screen and (max-width: 740px) {
  .bonus {
    flex-direction: column;
    align-items: flex-start;
  }
  .bonus .bonus__img {
    max-width: 60%;
    min-width: 80%;
    align-self: center;
  }
}
.bonus__description {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.6rem;
  color: #1f3664;
  letter-spacing: 1px;
  flex-shrink: 0;
  width: 500px;
}
@media screen and (max-width: 850px) {
  .bonus__description {
    width: 400px;
  }
}
@media screen and (max-width: 740px) {
  .bonus__description {
    width: 100%;
  }
}
.bonus__img {
  width: 50%;
  max-width: 50%;
}
.bonus__img img {
  width: 100%;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-list .accordion {
  width: 100%;
  padding: 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2rem;
  color: #1f3664;
}
.faq-list .accordion span {
  padding: 0 15px;
  font-size: 1.5rem;
  color: #1f3664;
}
@media screen and (max-width: 768px) {
  .faq-list .accordion {
    font-size: 1rem;
  }
  .faq-list .accordion span {
    font-size: 1rem;
    padding-right: 10px;
  }
}
.faq-list .accordion.active, .faq-list .accordion:hover {
  background-color: #496aaa;
  color: #fff;
}
.faq-list .accordion.active:after,
.faq-list .accordion.active span, .faq-list .accordion:hover:after,
.faq-list .accordion:hover span {
  color: #fff;
}
.faq-list .accordion:after {
  content: "+";
  color: #1f3664;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}
.faq-list .accordion.active {
  border-radius: 8px 8px 0 0;
}
.faq-list .accordion.active:after {
  content: "−";
  color: #fff;
}
.faq-list .panel {
  padding: 0 18px;
  background-color: #f9f9f9;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-radius: 0 0 8px 8px;
}
.faq-list .panel p {
  font-size: 16px;
  margin: 10px;
  color: #1f3664;
}

.social-networks {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.social-networks__item {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2rem;
  color: #1f3664;
  flex-grow: 1;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  padding: 1rem 4rem;
  border: 1px solid rgba(204, 204, 204, 0.6235294118);
  border-radius: 28px;
  transition: all 0.15s ease;
}
.social-networks__item img {
  width: 70px;
  height: 70px;
}
.social-networks__item:hover {
  box-shadow: 0 0 25px 1px #ddd;
}
.social-networks__item i {
  font-size: 3rem;
  font-weight: 500;
  line-height: 3rem;
  color: #016bd9;
}

.about-us__info {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 830px) {
  .about-us__info {
    flex-direction: column;
  }
}
.about-us__info-description {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2rem;
  color: #1f3664;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 425px) {
  .about-us__info-description {
    font-size: 1rem;
    line-height: 1.25rem;
    margin-bottom: 1rem;
  }
}
.about-us__status {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about-us__status-icon {
  flex-shrink: 0;
  display: block;
  width: 65px;
  height: 65px;
  margin-left: 2rem;
}
.about-us__status-icon img {
  width: 100%;
  height: 100%;
}
.about-us__status > div {
  width: 503px;
  height: 150px;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: #eee;
  border-radius: 8px;
}
@media screen and (max-width: 950px) {
  .about-us__status > div {
    width: 450px;
  }
}
@media screen and (max-width: 900px) {
  .about-us__status > div {
    width: 380px;
  }
}
@media screen and (max-width: 830px) {
  .about-us__status > div {
    width: 100%;
  }
}
.about-us__status > div div {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2.5rem;
  color: #1f3664;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  gap: 0.5rem;
}
@media screen and (max-width: 425px) {
  .about-us__status > div div {
    font-size: 2rem;
  }
}
.about-us__status > div div span {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5rem;
  color: #1f3664;
}
@media screen and (max-width: 425px) {
  .about-us__status > div div span {
    font-size: 1rem;
  }
}

.store-addresses .select-input {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1rem;
  color: #1f3664;
  border: 1px solid #ddd;
  padding: 0.75rem 1.5rem;
  width: 100%;
  border-radius: 8px;
}
.store-addresses .store-branches-wrapper {
  display: flex;
}
@media screen and (max-width: 768px) {
  .store-addresses .store-branches-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  .store-addresses .store-branches-wrapper .store-branches,
  .store-addresses .store-branches-wrapper .map {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .store-addresses .store-branches-wrapper .map {
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .store-addresses .store-branches-wrapper .map {
    height: 300px;
  }
}
@media screen and (max-width: 425px) {
  .store-addresses .store-branches-wrapper .map {
    height: 200px;
  }
}@media screen and (max-width: 1024px) {
  .store-addresses .store-branches-wrapper .map {
    height: 500px;
  }
}
@media screen and (max-width: 768px) {
  .store-addresses .store-branches-wrapper .map {
    height: 300px;
  }
}
@media screen and (max-width: 425px) {
  .store-addresses .store-branches-wrapper .map {
    height: 200px;
  }
}

.store-addresses .store-branches {
  width: 30%;
  max-height: 600px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
  padding-right: 0.75rem;
}
.store-addresses .store-branches__search-input {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1rem;
  color: #1f3664;
  border: 1px solid #ddd;
  padding: 0.75rem 1.5rem;
  width: 250px;
  border-radius: 8px;
  display: block;
  width: 100%;
  position: sticky;
  top: 0;
}
.store-addresses .store-branches__item {
  padding: 12px;
  background: rgba(170, 204, 243, 0.7529411765);
  cursor: pointer;
  transition: background 0.15s ease;
  border-radius: 8px;
  border: 1px solid #eee;
}
.store-addresses .store-branches__item:hover, .store-addresses .store-branches__item.active {
  background: #fff;
  border-color: #93c5fd;
}
.store-addresses .store-branches__item i {
  font-size: 1.5rem;
  color: #fdc901;
}
.store-addresses .store-branches__item-title {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2rem;
  color: #1f3664;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.store-addresses .store-branches__item-title span {
  font-size: 0.7rem;
  font-weight: 400;
  line-height: 1.2rem;
  color: rgba(33, 33, 33, 0.5019607843);
}
.store-addresses .store-branches__item-subtitle {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1rem;
  color: #1f3664;
}
.store-addresses .map {
  width: 70%;
   height: 600px;
}

.modal-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 9999;
}

.modal {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 880px;
  border: 1px solid #ddd;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 0 25px 1px rgba(0, 0, 0, 0.1);
  background: #fff;
  display: flex;
  gap: 2rem;
  z-index: 1000;
}
@media screen and (max-width: 690px) {
  .modal {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
  }
}
.modal__img {
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  background: rgba(31, 54, 100, 0.2509803922);
  border-radius: 20px;
  place-content: center;
  text-align: center;
}
.modal__img img {
  width: 85%;
}
.modal__close {
  font-size: 1.5rem;
  color: #1f3664;
  cursor: pointer;
  align-self: flex-end;
}
@media screen and (max-width: 690px) {
  .modal__close {
    display: none;
  }
}
.modal__close_mobile {
  display: none;
}
@media screen and (max-width: 690px) {
  .modal__close_mobile {
    display: block;
  }
}
.modal__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}
.modal__details .modal__title {
  font-size: 1.5rem;
  font-weight: bold;
}
.modal__details .modal__description {
  font-size: 1rem;
  max-height: 190px;
  overflow-y: auto;
}
@media screen and (max-width: 690px) {
    .modal__details .modal__description {
        max-height: 200px;
        overflow-y: auto;
    }
}

/*# sourceMappingURL=main.css.map */
