@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
.page {
  max-width: 1440px;
  width: 100%;
  min-width: 320px;
  padding: 0;
  margin: 0 auto;
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F4F4F4;
}
.page_theme_dark {
  background-color: #333333;
  color: #fff;
}

.header {
  padding: 28px 120px 28px 0;
  margin: 0;
  max-width: 1440px;
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
  width: 100%;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: #F4F4F4;
}
.header_theme_dark {
  background-color: #333333;
}
@media screen and (max-width: 1439px) {
  .header {
    padding: 1vw 5vw 1vw 0;
  }
}
@media screen and (max-width: 767px) {
  .header {
    position: absolute;
    top: 0;
    left: 0;
    padding: 27px 18px 30px;
  }
}
.header__menu {
  position: relative;
}
@media screen and (max-width: 767px) {
  .header__menu {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}
.header__burger-btn {
  width: 22px;
  height: 19px;
  display: none;
  position: relative;
  border: none;
  background: linear-gradient(to bottom, #000 20%, transparent 21%, transparent 40%, #000 41%, #000 60%, transparent 61%, transparent 80%, #000 81%);
}
.header__burger-btn:hover {
  cursor: url("../images/cursor-medium.png"), pointer;
}
.header__burger-btn_theme_dark {
  background: linear-gradient(to bottom, #fff 20%, transparent 21%, transparent 40%, #fff 41%, #fff 60%, transparent 61%, transparent 80%, #fff 81%);
}
@media screen and (max-width: 767px) {
  .header__burger-btn {
    display: block;
    align-self: flex-end;
  }
}
.header__burger-btn_active {
  background: url(../images/menu-close-btn.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.header__burger-btn_theme_dark-active {
  background: url(../images/menu-close-btn-white.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.header__menu-list {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .header__menu-list {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header__menu-list_visible {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 93px 0 100%;
  }
}
.header__menu-item {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  padding-left: 34px;
}
@media screen and (max-width: 767px) {
  .header__menu-item {
    text-align: center;
    font-size: 18px;
    padding: 0;
  }
}
.header__menu-item:last-child {
  padding-left: 0;
}
.header__menu-link {
  text-decoration: none;
  color: #222222;
  cursor: url("../images/cursor-medium.png"), pointer;
}
.header__menu-link:hover {
  opacity: 0.75;
}
.header__menu-link_theme_dark {
  color: #fff;
}

.content {
  width: 100%;
}

.benefits {
  padding: 20px 0 0 120px;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(350px, 460px) 1fr minmax(400px, 610px);
  grid-template-rows: repeat(3, auto) minmax(50px, 1fr);
  position: relative;
  row-gap: 49px;
}
@media screen and (max-width: 1439px) {
  .benefits {
    padding: 1vw 0 0 5vw;
    row-gap: 4vw;
  }
}
@media screen and (max-width: 767px) {
  .benefits {
    padding: 114px 18px 38px;
    grid-template-columns: 1fr;
    row-gap: 38px;
  }
}
.benefits__title {
  grid-area: 1/1/1/1;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .benefits__title {
    padding-top: 0;
  }
}
.benefits__text {
  grid-area: 2/1/2/1;
}
@media screen and (max-width: 767px) {
  .benefits__text {
    grid-area: 3/1/3/1;
    padding-bottom: 3px;
  }
}
.benefits__button {
  grid-area: 3/1/3/1;
  padding: 16px 0;
  border: none;
  font: inherit;
  color: inherit;
  background-color: transparent;
  cursor: url("../images/cursor-medium.png"), pointer;
  background-color: #24B47E;
  border-radius: 4px;
  max-width: 180px;
  color: #fff;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  letter-spacing: 1px;
  background-image: linear-gradient(#319e75, #319e75);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.5s, color 0.5s;
}
@media screen and (max-width: 767px) {
  .benefits__button {
    grid-area: 4/1/4/1;
    max-width: 100%;
    padding: 14px 0;
    font-size: 13px;
  }
}
.benefits__button:hover {
  background-size: 100% 100%;
  background-color: #24B47E;
  color: #fff;
}
.benefits__img-text {
  margin: 0;
  padding-top: 119px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 18px;
  color: #151515;
  position: relative;
  grid-area: 4/1/4/1;
}
@media screen and (max-width: 1439px) {
  .benefits__img-text {
    padding-top: 23%;
  }
}
@media screen and (max-width: 767px) {
  .benefits__img-text {
    display: none;
  }
}
.benefits__img-text::after {
  content: "";
  border-bottom: 1px solid #d7d4d4;
  max-width: 132px;
  width: 100%;
  height: 0.5em;
  position: absolute;
  bottom: 5%;
  margin-left: 30px;
}
.benefits__img-text_theme_dark {
  color: #fff;
}
.benefits__image {
  justify-self: end;
  max-width: 43.6vw;
  width: 100%;
  height: 100%;
  grid-area: 1/3/5/4;
}
@media screen and (max-width: 767px) {
  .benefits__image {
    grid-area: 2/1/2/1;
    justify-self: end;
    min-width: 254px;
    max-width: 90%;
    padding-top: 2px;
  }
}
.benefits__sticky-container {
  position: absolute;
  top: 45.5%;
  right: 0;
  width: 56.25%;
  max-width: 810px;
  height: 29.9vw;
  max-height: 410px;
}
@media screen and (max-width: 1439px) {
  .benefits__sticky-container {
    width: 50%;
    height: 33vw;
  }
}
@media screen and (max-width: 767px) {
  .benefits__sticky-container {
    top: 47%;
    width: 95%;
    height: 54vw;
  }
}
.benefits__sticky-image {
  width: 54.3%;
  max-width: 440px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  padding: 20px 50px;
  box-sizing: border-box;
  background-color: #fff;
  background-image: linear-gradient(rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05));
  border-radius: 20px;
  box-shadow: -3px 0px 51px -7px rgba(34, 60, 80, 0.3);
}
@media screen and (max-width: 767px) {
  .benefits__sticky-image {
    width: 234px;
    height: 160px;
    padding: 16px 26px 12px 30px;
  }
}

.motivation {
  padding: 120px 120px 60px 120px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 1439px) {
  .motivation {
    padding: 5vw 5vw 2vw 5vw;
  }
}
@media screen and (max-width: 767px) {
  .motivation {
    padding: 38px 18px 40px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}
.motivation__image {
  max-width: 650px;
  width: 50vw;
  max-height: 40vw;
}
@media screen and (max-width: 767px) {
  .motivation__image {
    width: 100%;
    min-height: 204px;
    max-height: 60vw;
    padding-bottom: 19px;
    border-top: 1px solid #e3e3e3;
    padding-top: 20px;
  }
}
.motivation__container {
  margin: 0;
  max-width: 470px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .motivation__container {
    gap: 40px;
    max-width: 650px;
  }
}
.motivation__quote {
  margin: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 34px;
  line-height: 44px;
  letter-spacing: -0.5px;
  color: #222222;
}
@media screen and (max-width: 767px) {
  .motivation__quote {
    font-size: 23px;
    line-height: 29px;
  }
}
.motivation__quote_theme_dark {
  color: #fff;
}
.motivation__quote-author {
  margin: 0;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: #222222;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .motivation__quote-author {
    font-size: 14px;
    line-height: 22px;
    gap: 2px;
  }
}
.motivation__quote-author_theme_dark {
  color: #fff;
}
.motivation__author-job {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #222222;
  opacity: 0.7;
  padding-bottom: 6px;
  display: block;
}
@media screen and (max-width: 767px) {
  .motivation__author-job {
    padding: 0;
    font-size: 10px;
    line-height: 16px;
  }
}
.motivation__author-job_theme_dark {
  color: #E6E6E6;
}

.workout {
  padding: 150px 120px 120px;
  display: grid;
  grid-template-columns: minmax(350px, 460px) 1fr 580px;
  align-items: flex-start;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
@media screen and (max-width: 1439px) {
  .workout {
    padding: 5.5vw 5vw 5vw;
  }
}
@media screen and (max-width: 767px) {
  .workout {
    grid-template-columns: 1fr;
    row-gap: 38px;
    padding: 40px 18px;
  }
}
.workout__title {
  grid-area: 1/1/1/1;
  padding-top: 3px;
}
@media screen and (max-width: 767px) {
  .workout__title {
    padding-top: 39px;
    border-top: 1px solid #e3e3e3;
  }
}
.workout__text {
  grid-area: 2/1/2/1;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .workout__text {
    grid-area: 3/1/3/1;
    padding-top: 3px;
  }
}
.workout__links {
  padding-top: 9vw;
  display: flex;
  gap: 30px;
  grid-area: 3/1/3/1;
  align-self: flex-end;
}
@media screen and (max-width: 767px) {
  .workout__links {
    grid-area: 4/1/4/1;
    padding-top: 2px;
  }
}
.workout__link {
  margin: 0;
  text-decoration: none;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
  color: #151515;
  cursor: url("../images/cursor-medium.png"), pointer;
}
.workout__link:hover {
  opacity: 0.75;
}
@media screen and (max-width: 767px) {
  .workout__link {
    font-size: 14px;
    line-height: 20px;
  }
}
.workout__link_theme_dark {
  color: #fff;
}
.workout__image {
  max-width: 580px;
  width: 45vw;
  -o-object-fit: contain;
     object-fit: contain;
  grid-area: 1/3/4/3;
}
@media screen and (max-width: 767px) {
  .workout__image {
    grid-area: 2/1/2/1;
    justify-self: center;
    width: 100%;
    min-width: 284px;
  }
}

.section-title {
  margin: 0;
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  line-height: 60px;
  letter-spacing: -0.5px;
  color: #151515;
}
.section-title_theme_dark {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 32px;
    line-height: 40px;
  }
}

.section-text {
  margin: 0;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #222222;
}
.section-text_theme_dark {
  color: #E6E6E6;
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .section-text {
    font-size: 12px;
    line-height: 18px;
  }
}

.footer {
  box-sizing: border-box;
  background-color: #efefef;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 82px 120px 60px 120px;
  position: relative;
}
.footer_theme_dark {
  background-color: #2f2f2f;
}
@media screen and (max-width: 1439px) {
  .footer {
    padding: 2.5vw 5vw 2vw 5vw;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 80px 18px 16px;
  }
}
.footer__container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 360px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footer__container {
    gap: 40px;
  }
}
.footer__heading {
  margin: 0;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #222222;
  max-width: 229px;
}
.footer__heading_theme_dark {
  color: #fff;
}
.footer__form {
  max-width: 360px;
  width: 100%;
  position: relative;
}
.footer__form-container {
  padding: 0;
  margin: 0;
  border: none;
}
.footer__submit-btn {
  position: absolute;
  top: 20%;
  right: 11px;
  background-color: inherit;
  border: none;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 28px;
  cursor: url("../images/cursor-medium.png"), pointer;
  color: #151515;
  opacity: 0;
  visibility: hidden;
}
.footer__submit-btn_theme_dark {
  color: #fff;
}
.footer__submit-btn_active {
  opacity: 0.7;
  visibility: visible;
  transition: opacity 0.3s ease;
}
.footer__email-input {
  box-sizing: border-box;
  width: 100%;
  outline: none;
  border: 1px solid #c7c7c7;
  opacity: 0.5;
  border-radius: 4px;
  padding: 10px 20px;
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 28px;
  background-color: inherit;
  cursor: url("../images/cursor-medium.png"), pointer;
  color: #151515;
}
.footer__email-input_theme_dark {
  color: #fff;
  border: 1px solid rgba(125, 125, 125, 0.5);
}
.footer__email-input::-moz-placeholder {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 28px;
  color: inherit;
  opacity: 0.7;
  background-color: inherit;
}
.footer__email-input:-ms-input-placeholder {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 28px;
  color: inherit;
  opacity: 0.7;
  background-color: inherit;
}
.footer__email-input::placeholder {
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  line-height: 28px;
  color: inherit;
  opacity: 0.7;
  background-color: inherit;
}
.footer__email-input:hover::-moz-placeholder {
  opacity: 1;
}
.footer__email-input:hover:-ms-input-placeholder {
  opacity: 1;
}
.footer__email-input:hover::placeholder {
  opacity: 1;
}
.footer__email-input:focus::-moz-placeholder {
  opacity: 0;
  -moz-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__email-input:focus:-ms-input-placeholder {
  opacity: 0;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__email-input:focus::placeholder {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.footer__copyrigth {
  margin: 0;
  padding-top: 50px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #cfcfcf;
}
.footer__copyrigth_theme_dark {
  color: #565656;
}
@media screen and (max-width: 767px) {
  .footer__copyrigth {
    padding-top: 57px;
  }
}

.velobikes {
  padding: 59px 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 120px;
  align-items: start;
}
@media screen and (max-width: 1439px) {
  .velobikes {
    padding: 2vw 5vw;
  }
}
@media screen and (max-width: 767px) {
  .velobikes {
    grid-template-columns: 1fr;
    row-gap: 20px;
    padding: 40px 18px;
  }
}
@media screen and (max-width: 767px) {
  .velobikes__title {
    grid-area: 1/1/1/1;
    border-top: 1px solid #e3e3e3;
    padding-top: 40px;
  }
}
.velobikes__dropdown {
  margin: 0;
  padding: 0;
  align-self: center;
  grid-area: 1/3/1/4;
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .velobikes__dropdown {
    grid-area: 2/1/2/1;
    align-items: flex-start;
    flex-direction: column;
    margin: 0 0 0 0;
    gap: 0;
    margin-top: 20px;
    position: relative;
  }
}
.velobikes__dropdown-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .velobikes__dropdown-btn {
    background-color: inherit;
    border-radius: 2px;
    width: 114px;
    padding: 7px 0 7px 12px;
    border: 1px solid #e3e3e3;
    font-weight: 600;
    font-size: 11px;
    line-height: 14px;
    text-align: left;
    background-image: url(../images/velo-btn.svg);
    background-repeat: no-repeat;
    background-position: center right 12px;
    position: relative;
    display: flex;
    cursor: url("../images/cursor-medium.png"), pointer;
  }
  .velobikes__dropdown-btn_theme_dark {
    color: #fff;
    background-image: url(../images/velo-btn-white1.svg);
  }
}
.velobikes__dropdown-btn_theme_dark {
  color: #E6E6E6;
}
.velobikes__dropdown-btn_active {
  font-weight: 600;
  opacity: 1;
  display: block;
}
.velobikes__dropdown-list {
  display: flex;
  list-style: none;
  padding: 14px 0 0 0;
  margin: 0;
  height: 30px;
  gap: 45px;
}
@media screen and (max-width: 767px) {
  .velobikes__dropdown-list {
    display: none;
    position: absolute;
    left: 0;
    top: 30px;
    z-index: 1;
  }
  .velobikes__dropdown-list_visible {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
.velobikes__dropdown-item {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  padding: 13px 0;
  color: #222222;
  opacity: 0.7;
  cursor: url("../images/cursor-medium.png"), pointer;
}
.velobikes__dropdown-item_theme_dark {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .velobikes__dropdown-item {
    width: 114px;
    max-height: 30px;
    padding: 8px 0 8px 12px;
    border: 1px solid #e3e3e3;
    font-weight: 400;
    font-size: 11px;
    line-height: 14px;
    text-align: left;
    background-repeat: no-repeat;
    background-position: center right 12px;
    box-sizing: border-box;
    border-radius: 2px;
    background-color: #F4F4F4;
    opacity: 1;
  }
}
.velobikes__dropdown-item_active {
  opacity: 1;
  color: #151515;
  font-weight: 600;
  font-size: 18px;
  line-height: 28px;
}
@media screen and (max-width: 767px) {
  .velobikes__dropdown-item_active {
    font-size: 11px;
    line-height: 14px;
  }
}
.velobikes__dropdown-item_theme_dark {
  color: #fff;
  background-color: #333333;
}
.velobikes__dropdown-item:hover {
  opacity: 0.75;
}
@media screen and (max-width: 767px) {
  .velobikes__dropdown-item:hover {
    opacity: 1;
    font-size: 11px;
    line-height: 14px;
    font-weight: 600;
  }
}
.velobikes__dropdown-hidden-input {
  display: none;
}
.velobikes__cards-container {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 30px;
  justify-content: center;
  grid-area: 2/1/2/4;
}
@media screen and (max-width: 767px) {
  .velobikes__cards-container {
    grid-area: 3/1/3/1;
    gap: 40%;
  }
}
.velobikes__card {
  position: relative;
}
.velobikes__card:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.01);
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .velobikes__card {
    padding-bottom: 16px;
    border-radius: 20px;
    overflow: hidden;
    display: none;
    box-shadow: -3px 0px 51px -7px rgba(34, 60, 80, 0.2);
  }
  .velobikes__card_active {
    display: block;
  }
}
.velobikes__card-link {
  text-decoration: none;
  cursor: url("../images/cursor-medium.png"), pointer;
}
.velobikes__card-image {
  width: 26.4vw;
  max-width: 380px;
  box-shadow: -3px 0px 51px -7px rgba(34, 60, 80, 0.2);
  border-radius: 20px;
  padding: 20px;
  box-sizing: border-box;
  background-color: #F4F4F4;
}
@media screen and (max-width: 767px) {
  .velobikes__card-image {
    width: 100%;
    min-width: 284px;
    box-shadow: none;
    padding: 18px 16px 0;
  }
}
@media screen and (max-width: 450px) {
  .velobikes__card-image {
    max-width: 284px;
  }
}
.velobikes__card-image:hover {
  cursor: url("../images/cursor-medium.png"), pointer;
}
.velobikes__model-name {
  margin: 0;
  padding: 13px 0 0 5px;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 22px;
  color: #151515;
  max-width: 380px;
}
.velobikes__model-name_theme_dark {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .velobikes__model-name {
    text-align: center;
    font-size: 14px;
    line-height: 17px;
    padding: 0 0 0 0;
  }
}
.velobikes__dots {
  display: none;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .velobikes__dots {
    display: flex;
    gap: 5px;
    justify-content: center;
    grid-area: 4/1/4/1;
  }
}
.velobikes__dot {
  width: 4px;
  height: 4px;
  background-color: #cacaca;
  border-radius: 50%;
  cursor: url("../images/cursor-medium.png"), pointer;
}
.velobikes__dot_active {
  background-color: #151515;
}

.slider {
  padding: 60px 0 64px 120px;
  position: relative;
  overflow: hidden;
  min-height: 922px;
  box-sizing: border-box;
}
@media screen and (max-width: 1439px) {
  .slider {
    padding: 2vw 0 2.5vw 5vw;
    min-height: 38.4vw;
  }
}
@media screen and (max-width: 767px) {
  .slider {
    padding: 40px 18px 40px;
  }
}
.slider__container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 100%);
  gap: 30%;
  transition: 1s ease-in-out;
}
.slider__item {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .slider__item {
    gap: 40px;
  }
}
.slider__title {
  order: 1;
}
@media screen and (max-width: 767px) {
  .slider__title {
    gap: 40px;
    border-top: 1px solid #e3e3e3;
    padding-top: 40px;
  }
}
.slider__text {
  order: 2;
  max-width: 460px;
}
@media screen and (max-width: 767px) {
  .slider__text {
    order: 3;
  }
}
.slider__images {
  order: 3;
  display: flex;
  gap: 40px;
  padding-top: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .slider__images {
    order: 2;
    padding-top: 0;
    gap: 0;
    justify-content: center;
  }
}
.slider__image {
  max-width: 650px;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .slider__image {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .slider__image {
    width: 100%;
  }
}
.slider__image:nth-of-type(2n) {
  max-width: 630px;
  width: 100%;
}
@media screen and (max-width: 1439px) {
  .slider__image:nth-of-type(2n) {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .slider__image:nth-of-type(2n) {
    display: none;
  }
}
.slider__route-img {
  position: absolute;
  left: 0;
  bottom: 16px;
  padding: 12px 32px 12px 16px;
  background-image: url(../images/Rectangle1.svg);
  width: 50px;
  height: 16px;
}
@media screen and (max-width: 767px) {
  .slider__route-img {
    background-size: 66px 50px;
    background-repeat: no-repeat;
    bottom: 10px;
    width: 37px;
    padding: 16px 26px 9px 12px;
  }
}
.slider__buttons {
  padding-top: 50px;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .slider__buttons {
    position: absolute;
    top: 89px;
    right: 20px;
    padding-top: 0;
    gap: 12px;
    translate: 2px;
  }
}
.slider__button:hover {
  opacity: 0.6;
}
.slider__button {
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #ebebeb;
  width: 50px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  cursor: url("../images/cursor-medium.png"), pointer;
}
@media screen and (max-width: 767px) {
  .slider__button {
    width: 24px;
    height: 24px;
    background-size: 5px 10px;
  }
}
.slider__button_theme_dark {
  background-color: #434343;
}
.slider__button_type_prev {
  background-image: url(../images/prev.svg);
}
.slider__button_type_prev-dark {
  background-image: url(../images/prev_dark.svg);
}
.slider__button_type_next {
  background-image: url(../images/next.svg);
}
.slider__button_type_next-dark {
  background-image: url(../images/next_dark.svg);
}

.switch-box {
  display: flex;
  gap: 22px;
  align-self: flex-end;
}
.switch-box_place_footer {
  padding-bottom: 6px;
  translate: -2px;
}
@media screen and (max-width: 767px) {
  .switch-box_place_footer {
    position: absolute;
    bottom: 2%;
    right: 3.8%;
  }
}
.switch-box_place_header {
  display: none;
}
@media screen and (max-width: 767px) {
  .switch-box_place_header {
    display: flex;
    justify-content: center;
    padding-top: 280px;
  }
}
.switch-box__icon {
  display: none;
}
@media screen and (max-width: 767px) {
  .switch-box__icon {
    display: block;
  }
}
.switch-box__checkbox {
  width: 44px;
  height: 24px;
  align-self: center;
}
.switch-box__checkbox-input {
  display: none;
}
.switch-box__checkbox-input:checked ~ .switch-box__pseudo-checkbox {
  background-color: #545454;
}
.switch-box__checkbox-input:checked ~ .switch-box__pseudo-checkbox::before {
  transform: translateX(20px);
  transition: 0.2s ease-in;
}
.switch-box__pseudo-checkbox {
  position: relative;
  width: 44px;
  height: 24px;
  transition: 0.5s ease-in;
  background-color: #fff;
  border-radius: 12px;
  cursor: url("../images/cursor-medium.png"), pointer;
  display: block;
}
@media screen and (max-width: 767px) {
  .switch-box__pseudo-checkbox_place_footer {
    width: 38px;
    height: 38px;
    background-color: inherit;
    margin: 0;
    transition: none;
    translate: 10% -17%;
  }
}
.switch-box__pseudo-checkbox::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  background-color: #24b47e;
}
@media screen and (max-width: 767px) {
  .switch-box__pseudo-checkbox_place_footer::before {
    display: none;
  }
}
.switch-box__checkbox-icon {
  width: 28px;
}
@media screen and (max-width: 767px) {
  .switch-box__checkbox-icon_place_footer {
    display: none;
  }
}
.switch-box__checkbox-icon:last-of-type {
  width: 19px;
}