@import "reset.css";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  position: relative;
}

.wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */

.header {
  width: 100%;
  height: 63px;
  background: #2b4564;
  padding: 23px 20px 18px;
  position: fixed;
  z-index: 3;
}

.header .wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo-block {
  display: block;
}

.header__logotype {
  width: 28px;
  margin-right: 11px;
}

.header__company-name {
  width: 134px;
  margin-bottom: 2px;
}

.header__menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  width: 30px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.header__menu-btn__line {
  display: inline-block;
  background-color: #FFFFFF;
  width: 22px;
  height: 2px;
  position: relative;
  border-radius: 1px;
  transition: transform 0.2s cubic-bezier(0.42, 0, 0.58, 1), width 0.2s cubic-bezier(0.42, 0, 0.58, 1), top 0.2s cubic-bezier(0.42, 0, 0.58, 1), right 0.2s cubic-bezier(0.42, 0, 0.58, 1);
}

.header__menu-btn__line::before {
  display: block;
  content: "";
  background-color: #ffffff;
  width: 2px;
  height: 2px;
  position: relative;
  top: 0;
  left: -6px;
  border-radius: 1px;
  transition: opacity 0.2s cubic-bezier(0.42, 0, 0.58, 1);
}

.header__menu-btn.open .header__menu-btn__top-line {
  width: 10px;
  transform: rotate(45deg);
  top: 7px;
  right: -2px;
}

.header__menu-btn.open .header__menu-btn__bottom-line {
  width: 10px;
  transform: rotate(-45deg);
  bottom: 7px;
  right: -2px;
}

.header__menu-btn.open .header__menu-btn__top-line::before,
.header__menu-btn.open .header__menu-btn__bottom-line::before {
  opacity: 0;
}

.header__links {
  display: none;
  position: absolute;
  background: #ffffff;
  top: 100%;
  right: 0px;
  width: 100%;
  min-height: 20px;
  z-index: 3;
}

.header__links--open {
  display: block;
}

.header__link a {
  display: block;
  text-align: left;
  padding: 8px 20px;
  text-decoration: none;
  color: #2b4564;
  border-bottom: 1px solid #2b4564;;
}

.header__link a:hover {
  background-color: rgb(243, 243, 243);
}

.header__link a:visited {
  color: #2b4564;
}

.main {
padding-top: 63px;
}
/* Banner */

.banner {
  position: relative;
  width: 100%;
  height: 236px;
  padding: 60px 5px;
  background: url("../img/banner/banner-top.webp") center center no-repeat;
  background-size: cover;
}

.banner__shadow {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  opacity: 0.4;
  z-index: 1;
}

.banner .wrapper {
  position: relative;
  z-index: 2;
}

.banner__title {
  margin: 0 auto;
  width: 270px;
  color: #ffffff;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
}

.banner__down {
  position: relative;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
}

/* About */

.about {
  width: 100%;
  padding: 32px 20px;
  background: #2b4564;
}

.about__text {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.2;
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 32px;
}

.about__button {
  width: 100%;
  background: none;
  border: 2px solid #ffffff;
}

.about__button a {
  width: 100%;
  display: block;
  padding: 13px;
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 400;
  color: #ffffff;
}

/* Slider */

.slider {
  width: 100%;
  position: relative;
}

.slider .arrow {
  cursor: pointer;
  position: absolute;
  background: none;
  border: none;
  transition: transform 0.1s linear;
}

.slider .arrow path,
.slider .arrow circle {
  transition: fill 0.2s linear, stroke 0.2s linear;
}


.slider .arrow:hover path {
  fill: #2B4564;
}

.slider .arrow:hover circle {
  stroke: #2B4564;
}

.slider .slides-list {
  display: grid;
  grid-auto-flow: column;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.slider .slides-list::-webkit-scrollbar {
  display: none;
}

.slider .slides-list.no-transition {
  scroll-behavior: auto;
}

.slider .slides-list.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.slider .slides-list.dragging .slide {
  cursor: grab;
  user-select: none;
}

.slider .slides-list :where(.slide, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider .dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.slider .dots .content {
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  margin: 0 9px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #939393;
}

.slider .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ddd;
  margin: 0 5px;
  cursor: pointer;
}

.slider .dot.active {
  background-color: #333;
}

.slider .dots .content.active {
  color: #2b4564;
  background: none;
}

/* Advantages */

.advantages {
  background-color: #d6d6d6;
  width: 100%;
  height: 212px;
  padding: 48px 20px 0;
}

.advantages__slider .arrow-long {
  display: none;
}

.advantages__slider .arrow {
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 48px;
}

.advantages__slider .left-arrow {
  left: 0;
}

.advantages__slider .right-arrow {
  right: 0;
}

.advantages__slider .slides-list {
  grid-auto-columns: calc((100% / 1) - 0px);
  gap: 16px;
}

.advantages__slider .slides-list .slide {
  width: 100%;
  scroll-snap-align: start;
  list-style: none;
  flex-direction: column;
}

.advantages__slider .slides-list .slide-img {
  height: 56px;
  margin-bottom: 16px;
}

.advantages__slider .slides-list .slide-text {
  color: #2b4564;
  font-size: 14px;
  line-height: 1.2;
  width: 170px;
  text-align: center;
}

/* Rent */

.rent {
  width: 100%;
  padding: 60px 20px 0;
}

.rent__title {
  margin: 0 auto 20px;
  color: #2b4564;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  max-width: 290px;
}

.rent__title__alert {
  width: 18px;
  height: 18px;
  position: relative;
  top: 2px;
}

.rent__title__price {
  color: #b07ada;
  font-size: 18px;
}

.rent__slider {
  margin-bottom: 45px;
}

.rent__slider .arrow {
  position: absolute;
  bottom: -24px;
  transform: translateY(-50%);
  height: 40px;
  width: 48px;
}

.rent__slider .left-arrow {
  left: 0;
}

.rent__slider .right-arrow {
  right: 0;
}

.rent__slider .slides-list {
  grid-auto-columns: calc((100% / 1) - 0px);
}

.rent__slider .slides-list .slide {
  width: 100%;
  scroll-snap-align: start;
  list-style: none;
  flex-direction: column;
  margin-bottom: 0;
}

.rent__slider .slides-list .slide-img {
  height: 183px;
  margin-bottom: 8px;
}

.rent__slider .slides-list .slide-text {
  color: #2b4564;
  font-size: 14px;
  line-height: 1.2;
  width: 170px;
  text-align: center;
}

.rent__btn {
  display: block;
  margin: 0 auto 50px;
  background-color: none;
  border: none;
}

.rent__btn a {
  display: block;
  padding: 13px 86px;
  font-weight: 500;
  background-color: #7bcfff;
  color: #ffffff;
}

/* Cabins */

.cabins {
  width: 100%;
  padding: 0 20px;
}

.cabins__sub-title {
  color: #2b4564;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.cabins__title {
  color: #000000;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 38px;
}

.cabins__slider,
.slides-list,
.cabins__slider .slide {
  width: 100%;
}

.cabins__slider .slides-list {
  grid-auto-columns: calc((100% / 1) - 0px);
}

.cabins__slider .slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 52px;
}

.cabins__slider .slide__img-container {
  width: 100%;
  height: 308px;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  margin-bottom: 28px;
  padding: 20px;
}

.cabins__slider .slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.5s ease-in-out;
}

.cabins__slider .slide__img-container:hover .slide-img {
  transform: translate(-50%, -50%) scale(1.5);
}

.zoom-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  background-image: url("../img/zoom-in.svg");
  background-size: cover;
  pointer-events: none;
}

.cabin__slide__title {
  color: #000000;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.cabin__slide__text {
  color: #3f3f3f;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 16px;
}

.cabin__slide__rent-by {
  color: #000000;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 8px;
}

.cabin__slide__price {
  color: #b07ada;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}

.cabins__slider .dots {
  margin-bottom: 76px;
}

.cabins__slider .arrow {
  position: absolute;
  bottom: -35px;
  transform: translateY(-50%);
  height: 40px;
  width: 48px;
}

.cabins__slider .left-arrow {
  left: 0;
}

.cabins__slider .right-arrow {
  right: 0;
}

.cabins__slider .arrow-long {
  display: none;
}

/* Order Your Container */

.order-your-container {
  width: 100%;
  height: 140px;
  background-color: #2b4564;
  padding: 32px 10px 0;
}

.order-your-container__title {
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 18px;
}

.order-your-container__title__company-name {
  font-size: 28px;
  letter-spacing: 2px;
}

.order-your-container__line {
  margin: 0 auto;
  width: 280px;
  height: 2px;
  background-color: #ffffff;
}

/* Containers */

.containers {
  width: 100%;
  padding: 60px 20px 0;
}

.containers__sub-title {
  color: #2b4564;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.containers__title {
  color: #000000;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 38px;
}

.containers__slider,
.containers__slider .slides-list,
.containers__slider .slide {
  width: 100%;
}

.containers__slider .slides-list {
  grid-auto-columns: calc((100% / 1) - 0px);
}

.containers__slider .slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 56px;
}

.containers__slider .slide__img-container {
  width: 100%;
  height: 308px;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
  margin-bottom: 28px;
  padding: 20px;
  border: 1px solid #000000;
}

.containers__slider .slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.5s ease-in-out;
}

.containers__slider .slide__img-container:hover .slide-img {
  transform: translate(-50%, -50%) scale(1.5);
}

.containers .zoom-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  background-image: url("../img/zoom-in-black.svg");
  background-size: cover;
  pointer-events: none;
}

.containers__slide__title {
  color: #000000;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.containers__slide__text {
  color: #3f3f3f;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 16px;
}

.containers__slide__rent-by {
  color: #000000;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 8px;
}

.containers__slide__price {
  color: #b07ada;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}

.containers__slide__old-price {
  color: #3f3f3f;
  padding-right: 10px;
  text-decoration: line-through;
}

.containers__slider .dots {
  margin-bottom: 76px;
}

.containers__slider .arrow {
  position: absolute;
  bottom: -35px;
  transform: translateY(-50%);
  height: 40px;
  width: 48px;
}

.containers__slider .left-arrow {
  left: 0;
}

.containers__slider .right-arrow {
  right: 0;
}

.containers__slider .arrow-long {
  display: none;
}

/* Stages */

.stages {
  width: 100%;
  background-color: #d6d6d6;
}

.stages .wrapper {
  padding: 0 20px;
}

.stages__banner {
  width: 100%;
  height: 220px;
  background: url("../img/banner/banner-down.webp") center center no-repeat;
  background-size: cover;
  margin-bottom: 45px;
}

.stages__about-us {
  padding-left: 43px;
  color: #2b4564;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  position: relative;
}

.stages__about-us::before {
  content: "";
  width: 33px;
  height: 2px;
  background-color: #00253a;
  position: absolute;
  left: 0;
  bottom: 3px;
}

.stages__title {
  color: #000000;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 41px;
  width: 260px;
}

.stages__list {
  padding-bottom: 48px;
}

.stages__list__item {
  margin-bottom: 12px;
}

.stages__item__number {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 14px;
  text-align: center;
  padding-top: 5px;
  border: 2px solid #000000;
  font-size: 16px;
  font-weight: 600;
  margin-right: 7px;
}

.stages__item__text {
  color: #000000;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  text-align: justify;
  text-justify: inter-word;
}

/* FAQ */

.faq {
  width: 100%;
  padding: 48px 20px 23px;
}

.faq__title {
  color: #2b4564;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 36px;
  text-transform: uppercase;
}

.faq__item {
  margin-bottom: 32px;
  border-bottom: 2px solid #2b4564;
}

.faq__item__title {
  color: #000000;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 16px;
}

.faq__item__title__number {
  padding-right: 8px;
}

.faq__item__content p {
  color: #424242;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 16px;
  text-align: justify;
  text-justify: inter-word;
}

.faq__item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq__item__button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border: 2px solid #2b4564;
  border-radius: 20px;
  background: #ffffff;
  margin-bottom: 12px;
  margin-left: auto;
}

.faq__item__button::before,
.faq__item__button::after {
  content: "";
  display: block;
  height: 2px;
  width: 20px;
  background: #2b4564;
  transition: transform 0.3s ease;
}

.faq__item__button::before {
  transform: translateX(50%) rotate(90deg);
}

.faq__item__button::after {
  transform: translateX(-50%);
}

.faq__item__button.active + .faq__item__content {
  max-height: 200px;
}

.faq__item__button.active::before {
  transform: translateX(50%) rotate(0deg);
}

/* Footer */

.footer {
  width: 100%;
  background-color: #2b4564;
  padding: 60px 20px 25px;
  color: #ffffff;
}

.footer__main-block,
.footer__contacts {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__title {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.footer__text {
  font-size: 12px;
  line-height: 1.5;
  font-weight: 400;
  text-align: center;
  width: 250px;
  margin-bottom: 32px;
}

.footer__button {
  background: #2b4564;
  border: 1px solid #ffffff;
  border-radius: 5px;
  margin-bottom: 32px;
}

.footer__button a {
  padding: 12px 101px;
  display: block;
  width: 100%;
  font-size: 14px;
  color: #ffffff;
}

.footer__contact {
  width: 100%;
  margin-bottom: 20px;
}

.footer__contact__title {
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  
}

.footer__contact__info {
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 400;
  color: #FFFFFF;
  text-decoration: none;
}

.footer__contact a {
  display: block;
  margin: 0 auto;
}


.footer__contact a:visited {
  color: #FFFFFF;
}


/* Tablet */
@media (min-width: 480px) {
  .header {
    height: 80px;
    padding: 8px 20px 8px;
  }

  .header .wrapper {
    align-items: center;
  }

  .header__logo-block {
    width: 188px;
  }

  .header__logotype {
    width: 33px;
    margin-right: 13px;
  }

  .header__menu-btn {
    display: none;
  }

  .header__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px 20px;
    position: static;
    background: none;
    width: 100%;
    min-height: auto;
  }

  .header__link a {
    display: block;
    padding: 0px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 300;
    border-bottom: none;
  }

  .header__link a:hover {
background: none;
  }

  .header__link a:visited {
    color: #ffffff;
  }

  .banner {
    height: 391px;
    padding: 89px 5px;
  }

  .banner__title {
    width: 450px;
    font-size: 40px;
  }

  .banner__down {
    top: 22px;
  }

  .about {
    padding: 32px 54px 0px;
  }

  .about .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .about__text {
    width: 100%;
  }

  .about__button {
    width: 235px;
    margin-left: 35px;
  }

  .about .about__button a {
    padding: 13px 64px;
  }

  .advantages {
    height: 268px;
    padding: 38px 60px 0;
  }

  .advantages__slider .arrow-long {
    display: block;
  }

  .advantages__slider .arrow-short {
    display: none;
  }

  .advantages__slider .arrow {
    top: 152px;
    transform: translateY(0%);
    height: 40px;
    width: 78px;
  }

  .advantages__slider .left-arrow {
    left: 50%;
    transform: translateX(-88px);
  }
  .advantages__slider .right-arrow {
    right: 50%;
    transform: translateX(88px);
  }
  .advantages__slider .slides-list {
    grid-auto-columns: calc((100% / 2) - 9px);
    gap: 20px;
  }

  .slides-list .slide {
    width: 100%;
    scroll-snap-align: start;
    list-style: none;
    flex-direction: column;
  }

  .slides-list .slide-img {
    height: 60px;
    margin-bottom: 24px;
  }

  .slides-list .slide-text {
    max-width: 170px;
    width: 90%;
  }

  .rent {
    padding: 64px 54px 0;
  }

  .rent__title {
    font-size: 32px;
    max-width: 410px;
  }

  .rent__title__alert {
    width: 22px;
    height: 22px;
    top: 0px;
    left: 6px;
  }

  .rent__title__price {
    position: relative;
    font-size: 24px;
    bottom: 2px;
  }

  .rent__slider {
    margin-bottom: 0 auto 5px;
    max-width: 450px;
    margin: 0 auto 5px;
  }

  .rent__slider .arrow {
    bottom: 38%;
    height: 40px;
    width: 48px;
  }

  .rent__slider .left-arrow {
    left: -14px;
  }
  .rent__slider .right-arrow {
    right: -14px;
  }

  .rent__slider .slides-list .slide-img {
    height: 246px;
    margin-bottom: 0px;
  }

  .cabins {
    padding: 0 54px;
  }

  .cabins__title {
    margin-bottom: 48px;
  }

  .cabins__slider .slides-list {
    grid-auto-columns: calc((100% / 2) - 10px);
    gap: 20px;
  }

  .cabins__slider .slide {
    margin-bottom: 142px;
  }

  .cabins__slider .slide-img {
    width: 100%;
    height: 100%;
  }

  .cabins__slider .dots {
    display: none;
  }

  .cabins__slider .arrow {
    bottom: 60px;
    height: 40px;
    width: 78px;
  }

  .cabins__slider .left-arrow {
    left: calc(50% - 88px);
  }
  .cabins__slider .right-arrow {
    right: calc(50% - 88px);
  }

  .cabins__slider .arrow-long {
    display: block;
  }

  .cabins__slider .arrow-short {
    display: none;
  }

  .order-your-container {
    height: 100px;
  }

  .order-your-container__title {
    font-size: 20px;
  }

  .order-your-container__title__company-name {
    font-size: 20px;
  }

  .order-your-container__line {
    width: 400px;
  }

  .containers {
    padding: 60px 54px 0;
  }

  .containers__title {
    margin-bottom: 48px;
  }

  .containers__slider .slides-list {
    grid-auto-columns: calc((100% / 2) - 10px);
    gap: 20px;
  }

  .containers__slider .slide {
    margin-bottom: 142px;
  }

  .containers__slider .slide-img {
    width: 100%;
    height: 100%;
  }

  .containers__slider .dots {
    display: none;
  }

  .containers__slider .arrow {
    bottom: 60px;
    height: 40px;
    width: 78px;
  }

  .containers__slider .left-arrow {
    left: calc(50% - 88px);
  }
  .containers__slider .right-arrow {
    right: calc(50% - 88px);
  }

  .containers__slider .arrow-long {
    display: block;
  }

  .containers__slider .arrow-short {
    display: none;
  }

  .stages {
    height: 489px;
    position: relative;
  }

  .stages__banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 489px;
    margin-bottom: 0;
    z-index: 1;
  }

  .stages__container {
    padding: 40px 48px;
    position: absolute;
    top: 0;
    right: 0;
    width: 460px;
    height: 489px;
    background-color: #d6d6d6;
    opacity: 0.9;
    z-index: 2;
  }

  .stages__about-us {
    margin-bottom: 5px;
  }

  .stages__title {
    margin-bottom: 16px;
    width: 100%;
  }

  .stages__item__number::before {
    content: ".0";
  }

  .stages .stages__list {
    padding-bottom: 0px;
  }

  .stages__list__item {
    margin-bottom: 8px;
  }

  .stages__item__number {
    border: none;
    font-size: 20px;
  }

  .faq {
    padding: 60px 54px 14px;
  }

  .faq__title {
    margin-bottom: 56px;
  }

  .faq__item {
    max-width: 745px;
    margin-bottom: 46px;
    position: relative;
  }

  .faq__item__button {
    position: absolute;
    bottom: 0;
    right: 15px;
  }

  .faq__item__title {
    font-size: 20px;
    max-width: calc(100% - 60px);
  }

  .faq__item__content {
    max-width: calc(100% - 70px);
  }

  .footer {
    padding: 68px 57px 68px;
  }

  .footer__main-block {
    width: 320px;
    margin-bottom: 50px;
    align-items: flex-start;
  }

  .footer__contacts {
    width: 100%;
    flex-direction: row;
    align-items: center;
  }

  .footer__text {
    text-align: left;
  }

  .footer__button {
    background: #2b4564;
    border-radius: 0px;
    margin-bottom: 0px;
  }

  .footer__button a {
    padding: 12px 57px;
  }

  .footer__contact {
    text-align: left;
  }

  .footer__contact__title {
    text-align: left;
    font-size: 13px;
  }

  .footer__contact__info {
    text-align: left;
    font-size: 13px;
  }
}

@media (min-width: 520px) {
  .header__links {
    margin-right: 30px;
    gap: 2px 50px;
  }

  .stages__container {
    padding: 40px 48px;
    position: absolute;
    top: 0;
    right: 0;
    width: 506px;
    height: 489px;
    background-color: #d6d6d6;
    opacity: 0.9;
    z-index: 2;
  }

  .stages__item__text {
    font-size: 16px;
  }
}

@media screen and (min-width: 600px) {

  

  .wrapper .carousel {
    grid-auto-columns: 100%;
  }

  .order-your-container__title {
    font-size: 24px;
  }

  .order-your-container__title__company-name {
    font-size: 24px;
  }

  .order-your-container__line {
    width: 590px;
  }
}

@media screen and (min-width: 650px) {

  .header {
    display: flex;
    align-items: center;
  }

  .header .header__logo-block {
    min-width: 185px;
  }

  .header nav {
    width: 100%;
  }
  .header .header__links {
    width: 90%;
    display: flex;
    justify-content: space-between;
    gap: 2px;
    margin-right: 10px;
    margin-left: 30px;
  }



  .rent__slider .dots {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 32px;
    top: 50%;
    transform: translateY(-50%);
    left: -25%;
  }
}

@media (min-width: 720px) {
  .advantages__slider .slides-list {
    grid-auto-columns: calc((100% / 4) - 15px);
  }
}

/* Desktop */
@media (min-width: 786px) {


  .banner {
    height: 638px;
    padding: 225px 5px;
  }

  .banner__title {
    width: 590px;
    font-size: 52px;
  }

  .banner__down {
    top: 78px;
  }

  .about {
    padding: 36px 100px 0px;
  }

  .about__button {
    margin-left: 15%;
  }

  .rent {
    padding-top: 60px;
  }

  .rent__slider {
    margin-bottom: 0 auto 5px;
    max-width: 500px;
    margin: 0 auto 5px;
  }

  .rent__slider .arrow {
    bottom: 50%;
    transform: translateY(50%);
  }

  .rent__slider .left-arrow {
    left: -73px;
  }
  .rent__slider .right-arrow {
    right: -73px;
  }

  .rent__slider .slides-list .slide-img {
    height: 309px;
  }

  .rent__slider .dots {
    left: -30%;
  }

  .slider .dots .content.active {
    text-decoration: underline;
  }

  .cabins__slider .slides-list {
    grid-auto-columns: calc((100% / 3) - 14px);
    gap: 20px;
  }

  .cabins__slider .arrow {
    bottom: 60px;
    height: 40px;
    width: 78px;
  }
  .cabins__slider .slide__img-container .slide-img {
    width: 100%;
    height: 100%;
  }

  .order-your-container {
    height: 108px;
    padding: 35px 10px 0;
  }

  .order-your-container__title {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .order-your-container__title__company-name {
    font-size: 24px;
  }

  .containers__slider .slides-list {
    grid-auto-columns: calc((100% / 3) - 14px);
    gap: 20px;
  }

  .containers__slider .arrow {
    bottom: 60px;
    height: 40px;
    width: 78px;
  }
  .containers__slider .slide__img-container .slide-img {
    width: 100%;
    height: 100%;
  }

  .footer {
    padding: 64px 57px 82px;
    width: 100%;
  }

  .footer .wrapper {
    display: flex;
    align-items: flex-end;
    gap: 20px;
  }

  .footer__main-block {
    margin-bottom: 0px;
  }

  .footer__title {
    font-size: 24px;
  }

  .footer__text {
    font-size: 16px;
    width: 320px;
  }

  .footer__button a {
    padding: 12px 57px;
  }

  .footer__contact {
    margin-bottom: 0px;
  }
}

@media (min-width: 850px) {
  .header {
    padding: 26px 50px 14px;
  }

  .header .header__logo-block {
    min-width: 330px;
  }

  .header__logotype {
    width: 54px;
    margin-right: 26px;
  }

  .header nav {
    width: 70%;
    
  }

  .header__links {
    margin-left: 0px;
  }

  .header__company-name {
    width: 237px;
    margin-bottom: 11px;
  }
}

@media (min-width: 950px) {

  
  .advantages {
    height: 195px;
    padding: 28px 100px 0;
  }

  .advantages__slider .arrow-long {
    display: none;
  }

  .advantages__slider .slides-list {
    grid-auto-columns: calc((100% / 6) - 18px);
    gap: 20px;
  }

  .slides-list .slide-img {
    height: 56px;
    margin-bottom: 25px;
  }

  .rent__slider .dots {
    left: -45%;
  }
}

@media (min-width: 1380px) {
  .rent__slider .dots {
    left: -356px;
  }
}

@media (min-width: 1200px) {
  .stages {
    height: 513px;
  }

  .stages__banner {
    height: 513px;
  }

  .stages__container {
    padding: 40px 48px;
    padding-right: calc(50vw - 600px);
    width: 42%;
    height: 513px;
  }

  .stages__about-us {
    font-size: 12px;
  }

  .stages__title {
    font-size: 16px;
    width: 100%;
  }

  .stages__item__number {
    border: none;
    font-size: 20px;
  }

  .stages .stages__list {
    padding-bottom: 0px;
  }

  .stages__item__text {
    font-size: 16px;
  }

  .stages__list__item {
    margin-bottom: 18px;
  }
}

@media (min-width: 2600px) {
  .stages__container {
    padding: 40px 48px;
    padding-right: calc(50vw - 600px);
    width: 50%;
    height: 513px;
  }
}