@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Black.woff2") format("woff2"), url("../fonts/Montserrat-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Bold.woff2") format("woff2"), url("../fonts/Montserrat-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-ExtraLight.woff2") format("woff2"), url("../fonts/Montserrat-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Light.woff2") format("woff2"), url("../fonts/Montserrat-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Medium.woff2") format("woff2"), url("../fonts/Montserrat-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Regular.woff2") format("woff2"), url("../fonts/Montserrat-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2"), url("../fonts/Montserrat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-ExtraBold.woff2") format("woff2"), url("../fonts/Montserrat-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: Montserrat;
  font-display: swap;
  src: url("../fonts/Montserrat-Thin.woff2") format("woff2"), url("../fonts/Montserrat-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  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: inherit;
}

/*------------------------------*/
body._lock {
  overflow: hidden;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: rgba(0, 0, 0, 0.5);
  transition: background-color 0.8s ease 0s;
}

.header__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  padding: 0px 30px;
  align-items: center;
  justify-content: space-between;
  min-height: 90px;
}

.header__logo img {
  max-width: 100px;
  width: 90px;
  min-width: 90px;
  height: auto;
  display: block;
}

.menu__icon {
  display: none;
}

.menu__list > li {
  position: relative;
  margin: 0px 0px 0px 20px;
}

a.menu__link {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
a.menu__link:hover {
  color: #7291af;
}

a.menu__link.active {
  color: #7291af;
}

.menu__sub-list {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #000;
  padding: 15px;
  min-width: 200px;
}
.menu__sub-list li {
  margin: 0px 0px 10px 0px;
}
.menu__sub-list li:last-child {
  margin: 0;
}

.menu__sub-link {
  color: #fff;
}
.menu__sub-link:hover {
  text-decoration: underline;
}

.menu__arrow {
  display: none;
}

body._pc .menu__list > li:hover .menu__sub-list {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
  pointer-events: all;
}

body._touch .menu__list > li {
  display: flex;
  align-items: center;
}
body._touch .menu__list > li._active .menu__sub-list {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
  pointer-events: all;
}
body._touch .menu__list > li._active .menu__arrow {
  transform: rotate(-180deg);
}
body._touch .menu__link {
  flex: 1 1 auto;
}
body._touch .menu__arrow {
  display: block;
  width: 0;
  height: 0;
  margin: 0px 0px 0px 5px;
  transition: transform 0.3s ease 0s;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 10px solid #fff;
}

.header__phone-item {
  color: #fff;
  font-size: 20px;
}
.header__button {
  color: #1a1919;
  border: 2px solid #ffc222;
  background-color: #ffc222;
  border-radius: 5px;
  height: 40px;
  font-size: 14px;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 10px;
  margin-left: 10px;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  font-weight: 700;
  background-image: none;
  cursor: pointer;
}
.header__button:hover {
  color: #fff;
}

a.header__button {
  color: #1a1919;
}

.header__carticon {
  position: fixed;
  top: 100px;
  right: 50px;
  z-index: 4000;
}
.header__carticon-wrapper {
  position: relative;
}
.header__carticon-imgwrap {
  background-color: #7291af;
  position: relative;
  border-radius: 50px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  will-change: transform;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  overflow: hidden;
}

.smart-basket__min {
  background-color: transparent;
}

.smart-basket__min-icon {
  width: 40px;
  height: 47px;
  padding: 15px 20px 14px;
  stroke: #000;
  box-sizing: content-box;
  background-color: #7291af;
  color: #000;
  border-radius: 50%;
}

.smart-basket__min-count {
  width: 30px;
  height: 30px;
  background-color: red;
  color: #fff;
  border-radius: 30px;
  position: absolute;
  right: -3px;
  bottom: -3px;
  text-align: center;
  line-height: 30px;
}
.smart-basket__min-count span {
  font-weight: 600;
}

@media (min-width: 767px) {
  .menu__list {
    display: flex;
    align-items: center;
  }
  .menu__list > li {
    padding: 10px 0;
  }

  .menu__sub-list {
    transform: translate(0px, 10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease 0s;
  }
}
@media (max-width: 1100px) {
  .header__phone {
    display: none;
  }
}
@media (max-width: 865px) {
  .header__button {
    display: none;
  }
}
@media (max-width: 767px) {
  .header__logo {
    display: none;
  }

  .menu__icon {
    z-index: 5;
    display: block;
    position: absolute;
    right: 20px;
    width: 30px;
    height: 18px;
    cursor: pointer;
  }
  .menu__icon span {
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background-color: #fff;
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu__icon::before {
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background-color: #fff;
    content: "";
    top: 0;
  }
  .menu__icon::after {
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
    background-color: #fff;
    content: "";
    bottom: 0;
  }

  .menu__icon._active span {
    transform: scale(0) translate(0px, -50%);
  }
  .menu__icon._active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon._active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(0px, -50%);
  }

  .menu__body {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 100px 30px 30px 30px;
    transition: left 0.3s ease 0s;
    overflow: auto;
  }
  .menu__body::before {
    content: "";
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 70px;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2;
  }

  .menu__body._active {
    left: 0;
  }

  .menu__list {
    text-align: center;
  }
  .menu__list > li {
    flex-wrap: wrap;
    margin: 0px 0px 30px 0px;
  }
  .menu__list > li:last-child {
    margin-bottom: 0;
  }
  .menu__list > li._active .menu__sub-list {
    display: block;
  }

  .menu__link {
    font-size: 24px;
  }

  .menu__sub-list {
    position: relative;
    background-color: #fff;
    flex: 1 1 100%;
    margin: 20px 0px 0px 0px;
    display: none;
  }

  .menu__sub-link {
    font-size: 20px;
    color: #000;
  }
}
.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 99;
  transition: all 0.8s ease 0s;
}
.popup:target {
  opacity: 1;
  visibility: visible;
}
.popup:target .popup__content {
  transform: perspective(600px) translate(0px, 0%) rotateX(0deg);
  opacity: 1;
}
.popup__area {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.popup__body {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
  transition: all 0.8s ease 0s;
}
.popup__content {
  background-color: #fff;
  color: black;
  max-width: 560px;
  padding: 30px;
  position: relative;
  transition: all 0.8s ease 0s;
  opacity: 0;
  transform: perspective(600px) translate(0px, -100%) rotateX(45deg);
}
.popup__close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
  color: black;
  text-decoration: none;
}
.popup__title {
  font-size: 36px;
  line-height: 1.23;
  margin-bottom: 11px;
  font-weight: 700;
}
.popup__subtitle {
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}
.popup__form {
  margin-top: 15px;
}
.popup__input-fullwidth {
  color: #000000;
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  height: 60px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.33;
  width: 100%;
  margin-bottom: 15px;
}
.popup__input {
  color: #000000;
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  height: 60px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.33;
  margin-bottom: 15px;
  display: block;
}

.popupinputquantity__btn {
  font-size: 26px;
  cursor: pointer;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  padding: 6px;
  border-radius: 16%;
  vertical-align: sub;
}

.popupinputquantity__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: baseline;
}

.popupinputquantity__value {
  max-width: 60px;
}

.popupinputquantity__title {
  margin-bottom: 5px;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: #777;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.main-banner {
  margin-bottom: 60px;
}

.banner {
  height: 600px;
  text-align: center;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
  object-fit: cover;
  width: 100%;
}
.banner__cover {
  height: 600px;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7));
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.banner__container {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: space-evenly;
  align-items: center;
  padding-top: 90px;
  margin-top: 90px;
}
.banner__title {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.17;
  text-align: center;
  margin-bottom: 20px;
}
.banner__subtitle {
  color: #fff;
  font-size: 1.5em;
  font-weight: 400;
  text-align: center;
  max-width: 560px;
  line-height: 1.55;
}
.banner__item {
  padding-top: 60px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
}
.banner__image {
  width: 64px;
}
.banner__text {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
  display: inline-block;
  vertical-align: middle;
  padding-left: 35px;
}
.banner__content {
  margin-top: 80px;
}
.banner__title-full {
  color: #fff;
  font-size: 4em;
  font-weight: 700;
  line-height: 1.17;
  text-align: center;
  margin-bottom: 40px;
}
.banner__delimeter {
  width: 20%;
  margin: 0 auto;
  border: 1px solid #fff;
  margin-bottom: 40px;
}
.banner__subtitle-full {
  color: #fff;
  font-size: 2em;
  font-weight: 400;
  text-align: center;
  line-height: 1.55;
}

.rental_title {
  text-align: center;
  font-weight: 700;
  font-size: 3em;
}
.rental_subtitle {
  text-align: center;
  font-weight: 700;
  font-size: 1.5em;
}
.rental_container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: space-around;
  justify-content: space-around;
  align-items: stretch;
}
.rental_left {
  min-width: 0;
  width: 50%;
}
.rental_right {
  width: 50%;
}
.rental__description {
  text-align: center;
  font-weight: 500;
  font-size: 1em;
}
.rental__price-wrapper {
  text-align: center;
  font-weight: 700;
  font-size: 1em;
  margin: 20px 0;
}

.devider {
  border: 2px solid #777;
  width: 50%;
  margin: 15px auto;
}

.swiper-container {
  width: 300px;
  height: 300px;
}

.image-slider {
  padding: 30px 0 70px 0;
}
.image-slider__image img {
  max-width: 100%;
}

.smart-basket__alert-wrapper {
  z-index: 1;
}

.product__size {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: stretch;
  flex-wrap: wrap;
  align-content: space-around;
  max-width: 200px;
  margin: 0 auto;
}

.product__size-element {
  padding: 10px;
  border: 1px solid #777;
  border-radius: 15%;
  cursor: pointer;
}

.product__size-element:hover {
  color: #fff;
  background-color: #777;
  border-color: #fff;
}

.product__size-element_active {
  color: #fff;
  background-color: #777;
  border-color: #fff;
}

.button__wrapper {
  text-align: center;
  margin: 5px 0px;
}

button.product__add-to-cart-button {
  padding: 10px 50px;
  border: 1px solid #777;
  border-radius: 5%;
  cursor: pointer;
  text-align: center;
}

.description {
  background-color: #f5f5f5;
  margin: 30px 0px;
}
.description__title {
  text-align: center;
  font-weight: 700;
  font-size: 1.5em;
  padding: 30px;
}
.description__text {
  padding: 0px 20px;
  font-size: 1.3em;
}

.policy {
  margin: 100px auto;
  padding-bottom: 60px;
}
.policy__title {
  margin: 30px auto;
  text-align: center;
  font-weight: 700;
  font-size: 3em;
}
.policy__subtitle {
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.5;
}

.policy p {
  line-height: 1.5;
}

.policy ul li {
  list-style: disc;
  line-height: 1.5;
}

.policy ul {
  padding-left: 20px;
}

@media (max-width: 767px) {
  .rental_container {
    flex-direction: column;
  }

  .product__item-wrapper {
    margin: 0 auto;
    width: auto;
  }

  .banner__title {
    font-size: 2.5rem;
  }

  .banner__subtitle {
    font-size: 1.3rem;
  }

  .rental_title {
    font-size: 2em;
  }
}