html,
body {
  scroll-behavior: smooth;
}
/*
html::-webkit-scrollbar,
body::-webkit-scrollbar { width: 0 !important }*/

input:focus {
  background-size: 100% 100%, 100% 100%;
  transition-duration: 0.3s;
  box-shadow: none;
  outline: 0;
}

body {
  font-size: 16px;
  font-weight: 500;
  color: #2b2b2b;
  /* background: #eaeaea; */
  min-width: 320px;
  overflow-x: hidden;
}

header {
  position: relative;
  /* font-family: "Gotham Pro"; */
}

header.desktop-header {
  max-width: 100vw;
  width: 100%;
  margin: 0 auto;
  height: 100vh;
}

.header-container {
  position: absolute;
  top: 28px;
  width: 100%;
  z-index: 999;
  padding: 0 30px;
}

.desktop-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-menu {
  list-style: none;
  display: flex;
  gap: 0 38px;
  padding: 20px 0px;
}

.header-menu-item {
  font-size: 13px;
}

.header-menu-item a {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
}

.logo-desktop {
  max-width: 260px;
  height: 24px;
}


.contacts-basket {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 300px;
  width: 100%;
  margin-right: 70px;
}

.contacts-numbers {
  font-size: 13px;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-right: 22px;
}
.contacts-numbers a {
  color: #fff;
  text-decoration: none;
}

.social-1 {
  max-width: 50px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-right: 17px;
}

.btn-social {
  display: flex;
  align-items: center;
  max-width: 22px;
  max-height: 21px;
}

.btn-ico {
  display: flex;
  align-items: center;
  max-width: 30px;
  max-height: 24px;
}
.basket-btn {
  position: relative;
}

.basket-btn:hover {
  cursor: pointer;
}

.basket-btn span {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1px;
  right: -5px;
  top: -5px;
  width: 14px;
  height: 14px;
  color: #fff;
  font-size: 8px;
  background: red;
  border-radius: 50%;
  line-height: 100%;
}

.header-burger {
  position: fixed;
  top: 36px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 37px;
  height: 37px;
  border-radius: 50px;
  border: 1px solid #fff;
  transition: all 0.2s linear;
}



.header-burger span {
  position: relative;
  display: block;
  width: 19px;
  height: 2px;
  background: #fff;
  transition: all 0.2s linear;
}

.header-burger span::before,
.header-burger span::after {
  position: absolute;
  content: "";
  width: 19px;
  left: 0px;
  height: 2px;
  background: #fff;
  transition: all 0.2s linear;
}

.header-burger span::before {
  top: -4px;
}

.header-burger span::after {
  top: 4px;
}

.header-slider {
  max-height: 100vh;
  overflow: hidden;
}

.header-content {
  position: relative;
}

.swiper-slide.header-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 40px;
}

.swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 0;
  transform: rotate(45deg);
  background: #aab2b2;
  opacity: 1;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #070707;
}

form.header-search {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 36px;
  left: 95px;
  z-index: 99;
}

.search-button {
  border: 0;
  background-color: none;
  background: url("../../img/search.png") no-repeat;
  background-size: cover;
  margin-right: 2px;
  width: 43px;
  height: 42px;
  font-size: 0;
}

.search-input {
  width: 345px;
  height: 42px;
  background: none;
  border: none;
  border-bottom: 2px solid #fff;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.right-menu {
  position: fixed;
  height: 100vh;
  max-height: 100vh;
  width: 280px;
  background: #111111;
  left: 0;
  top: 0;
  z-index: 9999;
}

.swiper-slide {
  height: 100vh;
}

.header-slide .video {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  overflow: hidden;
}

.right-menu-close {
  width: 100%;
  padding: 18px 18px 0 0;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 35px;
}

.right-menu-close span {
  position: relative;
  display: flex;
  width: 20px;
  height: 20px;
}

.right-menu-close span::before,
.right-menu-close span::after {
  position: absolute;
  content: "";
  width: 26px;
  height: 2px;
  background: #fff;
  left: -3px;
  top: 9px;
  z-index: 999;
  transition: all 0.2s linear;
}

.right-menu-close span::before {
  transform: rotate(45deg);
}

.right-menu-close span::after {
  transform: rotate(-45deg);
}

.right-logo {
  max-width: 136px;
  height: 13px;
  margin-bottom: 35px;
}

.right-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.right-menu-list-item {
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 100%;
  text-align: left;
}

.right-menu-list-item a {
  color: #fff;
  text-decoration: none;
  transition: all 0.2s linear;
}

.right-menu-list-item a:hover {
  color: rgb(0, 121, 177);
}

.right-menu-container {
  padding: 0 25px 35px 35px;
  height: 90vh;
  /* max-height: 689px; */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.right-menu-bottom {
  position: absolute;
  bottom: 2%;
  text-align: left;
}

.right-menu-desc img {
  max-width: 57px;
  height: 29px;
}

.right-menu-desc p {
  font-size: 10px;
  color: #fff;
  margin-bottom: 18px;
}

.right-head-button {
  display: inline-block;
  font-size: 10px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid #fff;
  background: none;
  line-height: 100%;
  padding: 12px 20px;
}
.right-head-button:hover,
.right-head-button:focus{
	color: #fff;
}
.right-menu {
  transform: translate(-500%, 0);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.right-menu.opened {
  transform: translate(0, 0);
  opacity: 1;
  visibility: visible;
}

.header-burger:hover {
  cursor: pointer;
  border-color: #2b2b2b;
}

.header-burger:hover span,
.header-burger:hover span::after,
.header-burger:hover span::before {
  background: #2b2b2b;
}

.right-menu-close:hover span::after,
.right-menu-close:hover span::before {
  cursor: pointer;
  background: rgb(0, 121, 177);
}

/* favorite */

.btn-ico.button-favorite img {
  width: 30px;
  height: 24px;
  object-fit: contain;
}

.button-favorite {
  position: relative;
  margin-right: 5px;
}

.button-favorite span {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1px;
  right: -5px;
  top: -5px;
  width: 14px;
  height: 14px;
  color: #fff;
  font-size: 8px;
  background: red;
  border-radius: 50%;
  line-height: 100%;
}

/* basket */

.hd-baasket {
  position: relative;
}

.hd-basket-block {
  width: 565px;
  position: absolute;
  right: 0;
  top: 35px;
  background: #fff;
  display: none;
}

.hd-basket-item {
  position: relative;
  padding: 25px 15px 25px 28px;
  display: flex;
  border-bottom: 1px solid #ebebeb;
}

.hd-basket-remove {
  position: absolute;
  width: 12px;
  height: 12px;
  right: 10px;
  top: 6px;
}

.hd-basket-remove:hover span::after,
.hd-basket-remove:hover span::before {
  background: red;
  cursor: pointer;
}

.hd-basket-remove span::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 2px;
  background: #cfcfcf;
  transform: rotate(45deg);
  top: 5px;
  left: 0px;
}

.hd-basket-remove span::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 2px;
  background: #cfcfcf;
  transform: rotate(-45deg);
  top: 5px;
  left: 0px;
}

.hd-basket-photo {
  max-width: 69px;
  max-height: 107px;
  overflow: hidden;
  margin-right: 28px;
  flex-shrink: 0;
}
.hd-basket-desc {
  width: 100%;
  font-size: 12px;
  margin-bottom: 22px;
}
.hd-basket-name {
  color: #070707;
  margin-bottom: 12px;
  max-width: 255px;
}
.hd-basket-size {
  color: #aeaeae;
  max-width: 255px;
}

.hd-basket-size span {
  color: #070707;
  text-transform: uppercase;
}

.hd-basket-price {
  font-weight: bold;
  font-size: 14px;
  text-align: right;
}

.hd-basket-clear-but {
  font-size: 12.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #cfcfcf;
  display: flex;
  justify-content: space-between;
  max-width: 160px;
  width: 100%;
  align-items: center;
}

.hd-basket-clear-but span {
  display: block;
  position: relative;
  width: 10px;
  height: 12px;
}

.hd-basket-clear-but span::after {
  position: absolute;
  content: "";
  width: 14px;
  height: 2px;
  background: #cfcfcf;
  transform: rotate(45deg);
  top: 5px;
  left: -2px;
}

.hd-basket-clear-but span::before {
  position: absolute;
  content: "";
  width: 14px;
  height: 2px;
  background: #cfcfcf;
  transform: rotate(-45deg);
  top: 5px;
  left: -2px;
}

.hd-basket-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 15px 17px 28px;
}

.hd-basket-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 22px;
}

.hd-basket-itog {
  font-size: 14.5px;
  font-weight: bold;
  text-transform: uppercase;
}

.hd-basket-itog span {
  margin-left: 30px;
}

.hd-basket-but {
  display: inline-block;
  font-size: 14.5px;
  text-transform: uppercase;
  text-decoration: none;
  color: #070707;
  background: #ebebeb;
  padding: 22px 27px 20px 30px;
  line-height: 100%;
}

/* tablet */

header.tablet-header .header-container {
  padding: 0 24px;
}

.tablet-header-wrapper {
  display: flex;
  justify-content: flex-end;
}

header.tablet-header .logo-desktop {
  max-width: 224px;
  height: 21px;
}

.tablet-head-top {
  display: flex;
  align-items: center;
  margin-left: 125px;
  gap: 0 12px;
}

header.tablet-header .header-menu {
  list-style: none;
  display: flex;
  gap: 26px 0;
  padding: 0;
  justify-content: space-between;
  max-width: 170px;
  flex-wrap: wrap;
  padding: 20px 0px;
}
header.tablet-header .header-menu .header-menu-item{
	text-align: left;
}

header.tablet-header .contacts-basket {
  flex-wrap: wrap;
  max-width: 208px;
}

a.tablet-button {
  display: inline-block;
  width: 100%;
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 0;
  text-align: center;
}

.tablet-head-menu {
  display: flex;
  justify-content: space-between;
}

header.tablet-header form.header-search {
  bottom: 22px;
  left: 102px;
}

header.tablet-header .search-button {
  width: 26px;
  height: 26px;
}

header.tablet-header .search-input {
  width: 212px;
  height: 26px;
}

header.tablet-header .header-slide .video {
  height: 100%;
  width: 100%;
}

header.tablet-header .header-slider {
  max-height: 1024px;
  overflow: hidden;
}

.slider-image {
  height: 100vh;
}

/* mobile */

header.mobile-header .header-container {
  top: 18px;
  padding: 0 15px;
}

header.mobile-header .logo-desktop {
  max-width: 260px;
  height: 24px;
  margin: 0 auto 22px auto;
}

.mobile-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-head-btns {
  display: flex;
  gap: 0 12px;
}

.mobile-view-catalog {
  position: absolute;
  bottom: 0;
  z-index: 99;
  width: 100%;
}

.mobile-btn-catalog {
  position: relative;
  display: inline-block;
  background: #111111;
  color: #fff;
  font-size: 18.75px;
  text-decoration: none;
  width: 100%;
  padding: 15px 0;
  text-align: center;
}

.mobile-btn-catalog::after {
  position: absolute;
  content: "";
  width: 34px;
  height: 27px;
  background: url("../../img/arrow-btn.png") no-repeat;
  background-size: cover;
  margin-left: 20px;
  margin-top: 2px;
}

header.mobile-header .header-content {
  height: 100vh;
}

header.mobile-header form.header-search {
  position: static;
}

header.mobile-header .search-button {
  width: 26px;
  height: 26px;
  background: url(../../img/search_black.png) no-repeat;
  background-size: cover;
}

header.mobile-header .search-input {
  width: 265px;
  height: 26px;
  border-bottom: 2px solid #000;
  color: #000;
}

header.mobile-header form.header-search {
  position: static;
  padding: 25px 0;
  justify-content: center;
}

header.mobile-header .mobile-button {
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  color: red;
  font-size: 17px;
  border: 1px solid red;
  padding: 15px 0;
  max-width: 300px;
  width: 100%;
  margin: auto;
  text-align: center;
  line-height: 100%;
}

header.mobile-header .right-menu {
  width: 320px;
}

header.mobile-header .hd-basket-block {
  width: 250px;
  left: 0;
}

header.mobile-header .hd-basket-item {
  padding: 20px 10px 15px 15px;
  flex-direction: column;
  align-items: center;
}

header.mobile-header .hd-basket-photo {
  margin-bottom: 10px;
}

header.mobile-header .hd-basket-menu {
  flex-direction: column;
  gap: 10px 0;
}

header.mobile-header .hd-basket-but {
  padding: 22px 15px 20px 15px;
}

header.mobile-header .hd-basket-summary {
  padding: 30px 15px 17px 15px;
}

header.mobile-header .header-slide .video {
  width: auto;
  height: 100%;
}

header.mobile-header .right-menu-container {
  height: 80vh;
}

header.mobile-header .right-menu-list-item {
  font-size: 18px;
  margin-bottom: 16px;
}

/* tablet horizontal */

.tablet-header_horizont .tablet-header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.tablet-header_horizont .header-menu {
  gap: 20px;
  max-width: 234px;
  flex-wrap: wrap;
}

.tablet-header_horizont .tablet-right-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 340px;
}

.tablet-header_horizont .tablet-right-top-1 {
  display: flex;
  align-items: center;
}

.tablet-header_horizont .tablet-right-top-2 {
  display: flex;
  align-items: center;
  gap: 0 20px;
}

.tablet-header_horizont .tablet-button {
  max-width: 208px;
  margin: 16px auto 0 auto;
}

.tablet-header_horizont form.header-search {
  left: 60px;
  bottom: 30px;
}

.tablet-header_horizont .search-button {
  width: 26;
  width: 26px;
  height: 26px;
}

.tablet-header_horizont .search-input {
  height: 26px;
  width: 214px;
}

.tablet-header_horizont .video {
  width: 100%;
  height: 100%;
}

.tablet-header_horizont .header-slider {
  max-height: 768px;
  overflow: hidden;
}

/*header.tablet-header,
header.tablet-header_horizont,
header.mobile-header {
  display: none;
}*/

@media (max-width: 1280px) {


  .tablet-head-top {
    margin-right: 70px;
}

.header-burger {
  top: 23px;
}

  header.tablet-header {
    display: block;
  }

  header.tablet-header_horizont/*,
  header.desktop-header,
  header.mobile-header*/ {
    display: none;
  }
}

@media (max-width: 1024px) and (orientation: landscape) {

  .tablet-header_horizont .tablet-right-top {
    margin-right: 60px;
}

.header-burger {
  top: 28px;
}

  header.tablet-header_horizont {
    display: block;
  }

  header.tablet-header/*,
  header.desktop-header,
  header.mobile-header*/ {
    display: none;
  }

}

@media (max-width: 800px) {
  header.tablet-header {
    display: block;
  }

  header.tablet-header_horizont/*,
  header.desktop-header,
  header.mobile-header*/ {
    display: none;
  }
}

@media (max-width: 540px) {
  header.mobile-header {
    display: block;
  }

 /* header.desktop-header,
  header.tablet-header_horizont,
  header.tablet-header {
    display: none;
  }*/

  .header-burger {
    position: fixed;
    top: 56px;
    right: 30px;
}
}



body {
  position: relative;
}

body::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: #000;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: all .5s linear;
}

body.open-menu-fixed {
  position: relative;
  overflow: hidden;
  transition: all .3s linear;
}

body.open-menu-fixed::before {
  opacity: .5;
  z-index: 1000;
  transition: all .3s linear;
}