@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

body {
  font-family: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  outline: none;
}

a {
  transition: all ease 0.3s;
}

:root {
  --base-color: #CD1B30;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 15px;
}

.header {
  background: var(--base-color);
}

.logo {
  margin: -10px 100px 0 0;
}

.logo img {
  display: block;
}

.header-row {
  display: flex;
  align-items: center;
  height: 80px;
}

.header-links {
  display: flex;
  gap: 40px;
}

.header-links a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 11px;
}

.header-links a:hover {
  opacity: 0.5;
}

.icon-arrow {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../images/arrow.svg) no-repeat center;
}

.header-contacts {
  margin-left: auto;
}

.icon-phone {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../images/phone.svg) no-repeat center;
}

.icon-mail {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../images/mail.svg) no-repeat center;
}

.icon-tg {
  display: inline-block;
  width: 30px;
  height: 30px;
  background: url(../images/tg.svg) no-repeat center;
}

.banner {
  height: 680px;
  position: relative;
  overflow: hidden;
}

.banner .container {
  position: relative;
  z-index: 4;
}

.scene {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.banner-bg {
  width: 105%;
  height: 100%;
  left: -2.5%;
  top: 0;
  display: flex !important;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.banner-bg img {
  width: 100%;
  display: block;
}

.bridge {
  position: absolute;
  width: 110%;
  height: 100%;
  left: -5%;
  top: 0;
  display: flex !important;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

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

.banner-img {
  position: absolute;
  height: 100%;
  top: 0;
  right: 5%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.banner-img2 {
  position: absolute;
  height: 100%;
  top: 0;
  right: 25%;
  display: flex !important;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.banner-img__wrapp {
  transform: rotate(-30deg);
  display: flex;
  flex-direction: column;
  height: 110vh;
  overflow: hidden;
}

.banner-img__wrapp div {
  animation: move 50s linear 1s infinite;
}

.banner-img__wrapp img {
  display: block;
  margin-bottom: 20px;
  width: 360px;
}

@keyframes move {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-100%);
  }
}

.banner-row {
  height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-title h1 {
  color: #fff;
  font-size: 70px;
  margin: 0;
  line-height: 90%;
  letter-spacing: -2.1px;
  font-weight: 600;
}

.banner-text {
  max-width: 540px;
  color: #fff;
}

.banner-text h3 {
  font-size: 20px;
  margin: 0 0 20px;
}

.banner-text p {
  font-size: 18px;
  line-height: 120%;
  margin: 0;
}

.navigation-wrapp {
  height: 60px;
  margin-bottom: 80px;
}

.navigation-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.navigation {
  background: var(--base-color);
}

.navigation.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.navigation-list {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  height: 60px;
  align-items: center;
}

.navigation-list li a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
}

.navigation-list li a:hover,
.navigation-list li a.active {
  opacity: 0.5;
}

.product-section {
  margin-bottom: 80px;
}

.section-title__group {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}

.section-title {
  font-size: 60px;
  font-weight: 600;
  margin: 0;
  line-height: 100%;
  letter-spacing: -1.8px;
  max-width: 572px;
}

.section-subtitle {
  max-width: 360px;
  font-size: 15px;
  line-height: 160%;
  position: relative;
}

.section-subtitle:before {
  content: "";
  display: block;
  height: 80%;
  top: 50%;
  transform: translate(0, -50%);
  border-right: 1px solid var(--base-color);
  position: absolute;
  left: -22px;
}

.product-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px -20px -10px;
}

.product-col {
  width: 33.3333333333%;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.product-item {
  background: #F6F6F6;
  padding: 40px;
  border-radius: 10px;
  transition: all ease 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-item:hover {
  background: var(--base-color);
}

.product-item:hover .product-item__img img {
  height: 395px;
  margin-bottom: 40px;
}

.product-item:hover .product-item__title a {
  color: #fff;
}

.product-item:hover .product-item__title a:after {
  transform: translate(0, -50%);
  opacity: 1;
}

.product-item__img {
  height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 53px;
  position: relative;
}

.product-item__img img {
  display: block;
  height: 320px;
  max-width: 300px;
  transition: all ease 0.5s;
  z-index: 2;
  position: relative;
}

.product-item__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 120%;
  display: flex;
  flex: 1;
  align-items: flex-end;
}

.product-item__title a {
  color: #000;
  text-decoration: none;
  display: block;
  position: relative;
  padding-right: 20px;
  flex: 1;
}

.product-item__title a:after {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 22px;
  background: url(../images/arrow2.svg) no-repeat center;
  right: 0;
  top: 50%;
  transform: translate(-50px, -50%);
  opacity: 0;
  transition: all ease 0.3s;
  transition-delay: 0.1s;
}

.section-map {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 70px;
  margin-bottom: 120px;
}

.where-buy__title {
  display: flex;
  align-items: flex-end;
  margin-bottom: 55px;
}

.where-buy__title h3 {
  font-size: 60px;
  font-weight: 600;
  margin: 0 65px 0 0;
  line-height: 100%;
  letter-spacing: -1.8px;
}

.where-buy__location {
  font-size: 32px;
  font-weight: 600;
  color: var(--base-color);
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

.where-buy__location span {
  border-bottom: 1px solid var(--base-color);
}

.icon-marker {
  display: inline-block;
  width: 23px;
  height: 25px;
  background: url(../images/marker.svg) no-repeat center;
}

.where-buy__item-links {
  display: flex;
  flex-direction: column;
  line-height: 140%;
}

.where-buy__item-links a {
  color: var(--base-color);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
}

.where-buy__item {
  padding: 20px;
  border-radius: 10px;
  color: #000;
  transition: all ease 0.3s;
  position: relative;
}

.where-buy__item:after {
  content: "";
  display: block;
  left: 20px;
  right: 20px;
  bottom: 0;
  position: absolute;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.where-buy__item:hover {
  color: #fff;
  background: var(--base-color);
}

.where-buy__item:hover .where-buy__item-links a {
  color: #fff;
  text-decoration: underline;
}

.where-buy__item:hover:after {
  display: none;
}

.where-buy__item h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
  margin: 0 0 10px;
}

.where-buy__item p {
  font-size: 15px;
  line-height: 140%;
  margin: 0;
}

.where-buy {
  position: relative;
}

.where-buy__row {
  display: flex;
}

.where-buy__col {
  max-width: 365px;
  display: flex;
  flex-direction: column;
  margin-right: 15px;
}

.where-buy__search-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  width: 100%;
  border-radius: 10px;
  border: 1px solid #bfbfbf;
  position: relative;
  margin-bottom: 2em;
}

.where-buy__search-wrapper .search-icon {
  width: 16px;
  height: 16px;
}

.where-buy__search-wrapper input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 18px;
  color: #313131;
  background: transparent;
}

.where-buy__country-wrapper h4 {
  text-transform: uppercase;
  color: #313131;
}

.where-buy__letter-wrapper {
  display: flex;
  flex-direction: row;
  margin-bottom: 1em;
}

.where-buy__letter {
  color: #aaa;
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 0.5em;
}

.where-buy__city-name {
  margin-bottom: 5px;
  cursor: pointer;
}

.where-buy__city-name span {
  color: var(--base-color);
  border-bottom: 1px dashed var(--base-color);
}

.where-buy__city-name:hover span {
  border-bottom: none;
}

.where-buy__error {
  color: #313131;
}

.where-buy__error span {
  color: #CD1B30;
  font-size: 2em;
  float: left;
}

.where-buy__scroll {
  padding-right: 25px;
  height: 465px;
  /* 540px; */
  overflow: auto;
}

.where-buy__scroll::-webkit-scrollbar {
  width: 12px;
  height: 10px;
}

.where-buy__scroll::-webkit-scrollbar-track {
  background: transparent;
}

.where-buy__scroll::-webkit-scrollbar-thumb {
  background: #EBEBEB;
  border-radius: 10px;
}

.where-buy__scroll::-webkit-scrollbar-thumb:hover {
  background: #d7d6d6;
}

.where-buy__map {
  width: 100%;
  height: 400px;
  position: relative;
}

#map {
  height: 540px;
  border-radius: 10px;
}

.where-buy__map {
  border-radius: 10px;
  overflow: hidden;
  height: 540px;
}

.where-buy__item {
  cursor: pointer;
  padding: 10px;
  transition: background-color 0.3s;
}

.footer-row {
  display: flex;
}

.footer-col {
  width: 39.7916%;
  background: url(../images/footer-bg.jpg) no-repeat center;
  height: 320px;
  background-size: cover;
  padding-left: calc((100vw - 1120px) / 2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 75px;
  color: #fff;
}

.copyright {
  font-size: 15px;
  font-weight: 500;
}

.footer-info {
  height: 320px;
  background: var(--base-color);
  flex: 1;
  padding-right: calc((100vw - 1120px) / 2);
  color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.footer-info__row {
  display: flex;
  gap: 130px;
}

.footer-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav li a {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
}

.footer-nav li a:hover {
  opacity: 0.5;
}

.footer-info__col h4 {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 20px;
}

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

.footer-contacts a {
  color: #fff;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  gap: 10px;
}

.footer-contacts a:hover {
  opacity: 0.5;
}

.page {
  overflow: hidden;
}

.menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: relative;
  z-index: 210;
  margin-left: auto;
  display: none;
}

.menu-btn span {
  background: #fff;
  height: 1px;
  transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
  width: 100%;
}

.menu-btn span:nth-child(2) {
  width: 65%;
}

.menu-btn.active span:nth-child(1) {
  transform-origin: bottom;
  transform: rotatez(45deg) translate(4px, 0px);
  width: 50%;
}

.menu-btn.active span:nth-child(2) {
  transform-origin: top;
  transform: rotatez(-45deg);
  width: 100%;
}

.menu-btn.active span:nth-child(3) {
  transform-origin: bottom;
  width: 50%;
  transform: translate(14px, -3px) rotatez(45deg);
}

.header-navigation {
  display: flex;
  flex: 1;
}

.logo-mob {
  display: none;
}

.product {
  margin: 80px -20px 40px -20px;
  display: flex;
}

.product-desc {
  width: 50%;
  padding: 0 20px;
}

.product-title {
  font-size: 60px;
  font-weight: 600;
  margin: 0 0 60px;
  line-height: 100%;
  letter-spacing: -1.8px;
}

.text-toggle {
  display: none;
  padding: 1px 0;
}

.product-text {
  font-size: 15px;
  line-height: 160%;
  margin-bottom: 60px;
}

.product-text p {
  margin: 0 0 15px;
}

.more {
  color: var(--base-color);
}

.product-img {
  width: 50%;
  padding: 0 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.product-img img {
  display: block;
  width: 100%;
  max-width: 386px;
}

.product-detail {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 15px;
  line-height: 160%;
}

.product-detail:last-child {
  border: none;
}

.product-detail h4 {
  font-size: 15px;
  font-weight: normal;
  color: #A5A5A5;
  margin: 0;
  width: 100%;
  max-width: 180px;
}

.product-detail__col {
  display: flex;
  flex: 1;
  align-items: center;
}

.scale {
  margin-left: auto;
  height: 20px;
  border: 1px solid #CDCDCD;
  border-radius: 10px;
  width: 100px;
  display: flex;
  overflow: hidden;
}

.scale span {
  width: 20%;
  border-right: 1px solid #fff;
}

.scale span.active {
  background: #CDCDCD;
}

.scale span:last-child {
  border: none;
}

.surfaces {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.surfaces-icon {
  width: 43px;
  height: 43px;
  border-radius: 10px;
  background: #C6C6C6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-top: auto;
}

.surfaces-col {
  text-align: center;
  width: 100px;
  display: flex;
  flex-direction: column;
}

.surfaces-col span {
  display: block;
  margin-bottom: 5px;
  max-width: 130px;
  font-size: 13px;
  line-height: 18px;
  flex: 1;
}

.colors {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.colors-item {
  width: 44px;
  height: 44px;
  border: 2.5px solid #fff;
  border-radius: 12px;
  position: relative;
}

.colors-item span {
  position: absolute;
  background: #F5F5F5;
  height: 28px;
  line-height: 28px;
  border-radius: 15px;
  padding: 0 10px;
  left: 50%;
  transform: translate(-50%, -10px);
  bottom: 100%;
  white-space: nowrap;
  transition: all ease 0.3s;
  font-size: 13px;
  opacity: 0;
  visibility: hidden;
}

.colors-item span:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -8px;
  left: 50%;
  margin-left: -6px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 12px 6px 0 6px;
  border-color: #F5F5F5 transparent transparent transparent;
  transform: rotate(0deg);
}

.colors-item:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.colors-item:hover span {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.colors-item.white:before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 12px;
}

.weight {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.weight-col {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.weight-col img {
  display: block;
  margin: 0 0 10px;
  /* max-width: 40px; */
  /* width: 40px; */
  height: auto;
}

.weight-col span {
  display: block;
}

.product-img__mob {
  display: none;
}

.layer3 {
  margin-left: -5%;
}

.where-buy__modal {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 10;
  border: 1px solid var(--base-color);
  border-radius: 10px;
  padding: 80px 65px 80px 80px;
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.3s;
  transform: scale(0.9);
}

.where-buy__modal.open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.where-buy__modal-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.where-buy__modal-title h3 {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
}

.where-buy__modal-title a {
  color: var(--base-color);
  font-size: 20px;
  font-weight: 600;
}

.where-buy__modal-row {
  display: flex;
  gap: 100px;
  justify-content: space-between;
  overflow: auto;
  max-height: 80%;
  padding-right: 15px;
}

.where-buy__modal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.where-buy__modal-list li {
  margin-bottom: 10px;
}

.where-buy__modal-list li a {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
}

.where-buy__modal-list li a:hover {
  color: var(--base-color);
}

/*# sourceMappingURL=style.css.map */