@import 'variables.css';
@font-face {
  font-family: "Helvetica Neue Light";
  src: url('../fonts/HelveticaNeue/HelveticaNeue-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica Neue Bold";
  src: url("../fonts/HelveticaNeue/HelveticaNeue-Bold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
}
h1, h2, h3, h4, h5 {
  font-family: "Helvetica Neue Bold";
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue Light";
  color: #00183F;
}

.custom-select-wrapper {
  flex: 1;
}
.custom-select-wrapper select {
  width: 100%;
  min-width: 150px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: white;
  border: none;
  height: 100%;
  background-color: var(--bg-color);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 1rem;
  color: #333;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23333' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 10px 6px;
}
.custom-select-wrapper select option {
  background-color: white;
  color: var(--blue-color);
}

body {
  min-width: 320px;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

._30-ad {
  font-size: 30px;
}

img {
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  pointer-events: none;
}

button {
  display: block;
  cursor: pointer;
}

ul {
  list-style: none;
}

body {
  background-color: #FAFDFF;
  min-width: 320px;
}

.carousel-item {
  width: 100%;
  /* height: 700px; */
  background-color: var(--blue-color);
}

.no-spinner::-webkit-outer-spin-button,
.no-spinner::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

header {
  color: rgb(0, 24, 63);
  background-color: #fff;
}
header .container .header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 17px 0;
}
header .container .header-top a img {
  width: 100%;
}
header .container .header-top .header-right {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
header .container .header-top .header-right .header-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgb(219, 219, 219);
  border-radius: 30px;
  padding: 8px 16px;
  gap: 12px;
}
header .container .header-top .header-right .header-info .info-phone {
  font-size: 18px;
}
header .container .header-top .header-right .header-info .info-work_time_text {
  font-size: 12px;
}
header .container .header-top .header-right .header-info .info-work_time_time {
  font-size: 12px;
}
header .container .header-top .header-right .header-lang {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgb(219, 219, 219);
  border-radius: 30px;
  padding: 8px 16px;
}
header .container .header-top .header-burger {
  display: none;
}
header .container .header-top .header-burger button {
  background: none;
  border: none;
}
header .header-bottom {
  background-color: rgb(237, 244, 255);
  padding: 12px 0;
  position: relative;
}
header .header-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header-bottom .container .menu-desktop ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2vw;
}
header .header-bottom .container .menu-desktop ul li a {
  text-decoration: none;
  color: rgb(55, 55, 55);
  font-size: 20px;
}
header .header-bottom .container #menu-close-btn {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  left: 91.7%;
  top: 6.5%;
  scale: 1.5;
  background: none;
  border: none;
}
header .header-bottom .container .menu-mobile {
  display: none;
  background-color: #fff;
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 10000000;
  top: 0;
  left: 0;
  padding: 20px 16px 16px 16px;
  flex-direction: column;
  justify-content: space-between;
}
header .header-bottom .container .menu-mobile nav {
  margin: 42px 0 0 0;
}
header .header-bottom .container .menu-mobile nav ul li {
  line-height: 45px;
}
header .header-bottom .container .menu-mobile nav ul li a {
  font-size: 20px;
  color: rgb(41, 41, 41);
  text-decoration: none;
}
header .header-bottom .container .menu-mobile .bottom-info {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap-reverse;
  gap: 20px;
  position: relative;
}
header .header-bottom .container .menu-mobile .bottom-info div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
header .header-bottom .container .menu-mobile .bottom-info::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: rgba(156, 156, 156, 0.5);
  position: absolute;
  top: -50%;
}
header .header-bottom .container .opened {
  display: flex;
}
header .header-bottom .container .header-bottom_btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 11px;
}
header .header-bottom .container .header-bottom_btns button {
  color: #fff;
  padding: 0;
  border: none;
  background: none;
}
header .header-bottom .container .header-bottom_btns button:first-child {
  background-color: rgb(0, 75, 200);
  padding: 16px 26px;
  border-radius: 30px;
  font-size: 20px;
}
header .header-bottom .container .header-bottom_btns button:nth-child(2) {
  display: none;
  background-color: #fff;
  border: 1px solid rgb(219, 219, 219);
  padding: 6px;
  border-radius: 15px;
}
header .header-bottom .container .header-bottom_btns button:last-child {
  position: relative;
}
header .header-bottom .container .header-bottom_btns button:last-child .cart-n {
  background-color: rgb(222, 65, 65);
  position: absolute;
  top: -12px;
  right: -12px;
  border-radius: 50%;
  color: #fff;
  padding: 1px 4px;
  font-size: 9.6px;
}

footer {
  margin: 200px 0 0 0;
  background-color: rgb(0, 24, 63);
  color: #fff;
}
footer li, footer h1, footer p {
  color: #fff;
}
footer .container .footer-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding: 62px 60px;
  background-color: rgb(0, 75, 200);
  border-radius: 30px;
  transform: translate(0, -48px);
}
footer .container .footer-main > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
}
footer .container .footer-main > div h1 {
  font-size: 24px;
  text-transform: uppercase;
}
footer .container .footer-main > div ul {
  margin-top: 15px;
}
footer .container .footer-main > div ul li {
  margin-top: 10px;
  font-size: 22px;
}
footer .container .footer-main > div ul li a {
  color: #fff;
  text-decoration: none;
}
footer .container .footer-main > div:first-child p {
  font-style: italic;
  line-height: 160%;
  font-size: 24px;
  margin: 22px 0;
}
footer .container .footer-main > div:nth-child(2) div:last-child {
  margin: 40px 0 0 0;
}
footer .container .footer-main > div:nth-child(2) div:last-child li {
  font-style: italic;
}
footer .container .footer-under {
  display: flex;
  justify-content: space-between;
  padding: 0 60px 40px 60px;
  gap: 40px;
  flex-wrap: wrap-reverse;
}
footer .container .footer-under .footer-under-icons > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
footer .container .footer-under p {
  font-style: italic;
}
.dropdown {
  position: relative;
  user-select: none;
  z-index: 1000;
}
.dropdown-toggle {
  height: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dropdown-toggle i {
  margin-right: 10px;
}
.dropdown:hover .dropdown-toggle {
  border-color: #999;
}

.dropdown-options {
  position: absolute;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 2px solid #ccc;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow-x: hidden;
}
.dropdown.open .dropdown-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-option {
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.dropdown-option:hover {
  background-color: var(--blue-color);
  color: #fff;
}

.dropdown-option.selected {
  background-color: #e6f0ff;
  font-weight: bold;
}
.cart {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--bg-color);
  padding: 20px;
  border-radius: 0 0 25px 25px;
  z-index: 1000000;
  display: none;
}
.cart.active {
  display: block;
}
.cart-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.cart-top > h1 {
  font-size: 22px;
}
.cart button {
  background: none;
  cursor: pointer;
  border: none;
  outline: none;
  font-size: 100%;
}
.cart button:not(#clear) {
  font-size: 130%;
  opacity: .5;
}

.items-list {
  background-color: #fff;
  margin: 20px 0;
  padding: 20px;
  border-radius: 30px;
}
.cart-item {
  display: flex;
  justify-content: space-between;
  padding: 18px 10px;
  gap: var(--gap-cart);
  border-bottom: 2px solid rgba(195, 195, 195, .4);
}
.cart-item span:first-child {
  flex: 1;
}
.cart-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.cart-bottom h2:nth-child(1) {
  font-size: 22px;
}
.cart-bottom h2:nth-child(2) {
  font-size: 26px;
  display: flex;
  align-items: center;
  gap: 15px;
}
