@import "./normalize.css";
/* --------- Reset Styles --------- */

html,
button,
input,
select,
textarea {
  color: #222;
  border: none;
}

body,
html {
  font-size: 1em;
  line-height: 1.4;
  height: 100%; /* Allows to center elements with display table */
  width: 100%;
  margin: 0;
}

/* --------- Fonts --------- */

@font-face {
  font-family: "FuturaStd-Bold";
  src: url("./assets/fonts/FuturaStd-Bold/FuturaStd-Bold.eot");
  src: url("./assets/fonts/FuturaStd-Bold/FuturaStd-Bold.eot?#iefix") format("embedded-opentype"),
    url("./assets/fonts/FuturaStd-Bold/FuturaStd-Bold.woff") format("woff"),
    url("./assets/fonts/FuturaStd-Bold/FuturaStd-Bold.ttf") format("truetype"),
    url("./assets/fonts/FuturaStd-Bold/FuturaStd-Bold.svg#FuturaStd-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "FuturaStd-BoldOblique";
  src: url("./assets/fonts/FuturaStd-BoldOblique/FuturaStd-BoldOblique.eot");
  src: url("./assets/fonts/FuturaStd-BoldOblique/FuturaStd-BoldOblique.eot?#iefix") format("embedded-opentype"),
    url("./assets/fonts/FuturaStd-BoldOblique/FuturaStd-BoldOblique.woff") format("woff"),
    url("./assets/fonts/FuturaStd-BoldOblique/FuturaStd-BoldOblique.ttf") format("truetype"),
    url("./assets/fonts/FuturaStd-BoldOblique/FuturaStd-BoldOblique.svg#FuturaStd-BoldOblique") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "FuturaStd-Book";
  src: url("./assets/fonts/FuturaStd-Book/FuturaStd-Book.eot");
  src: url("./assets/fonts/FuturaStd-Book/FuturaStd-Book.eot?#iefix") format("embedded-opentype"),
    url("./assets/fonts/FuturaStd-Book/FuturaStd-Book.woff") format("woff"),
    url("./assets/fonts/FuturaStd-Book/FuturaStd-Book.ttf") format("truetype"),
    url("./assets/fonts/FuturaStd-Book/FuturaStd-Book.svg#FuturaStd-Book") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Roboto-Bold";
  src: url("./assets/fonts/Roboto-Bold/Roboto-Bold.eot");
  src: url("./assets/fonts/Roboto-Bold/Roboto-Bold.eot?#iefix") format("embedded-opentype"),
    url("./assets/fonts/Roboto-Bold/Roboto-Bold.woff2") format("woff2"),
    url("./assets/fonts/Roboto-Bold/Roboto-Bold.woff") format("woff"),
    url("./assets/fonts/Roboto-Bold/Roboto-Bold.ttf") format("truetype"),
    url("./assets/fonts/Roboto-Bold/Roboto-Bold.svg#Roboto-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Roboto-Light";
  src: url("./assets/fonts/Roboto-Light/Roboto-Light.eot");
  src: url("./assets/fonts/Roboto-Light/Roboto-Light.eot?#iefix") format("embedded-opentype"),
    url("./assets/fonts/Roboto-Light/Roboto-Light.woff2") format("woff2"),
    url("./assets/fonts/Roboto-Light/Roboto-Light.woff") format("woff"),
    url("./assets/fonts/Roboto-Light/Roboto-Light.ttf") format("truetype"),
    url("./assets/fonts/Roboto-Light/Roboto-Light.svg#Roboto-Light") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Roboto-Medium";
  src: url("./assets/fonts/Roboto-Medium/Roboto-Medium.eot");
  src: url("./assets/fonts/Roboto-Medium/Roboto-Medium.eot?#iefix") format("embedded-opentype"),
    url("./assets/fonts/Roboto-Medium/Roboto-Medium.woff2") format("woff2"),
    url("./assets/fonts/Roboto-Medium/Roboto-Medium.woff") format("woff"),
    url("./assets/fonts/Roboto-Medium/Roboto-Medium.ttf") format("truetype"),
    url("./assets/fonts/Roboto-Medium/Roboto-Medium.svg#Roboto-Medium") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Roboto-Regular";
  src: url("./assets/fonts/Roboto-Regular/Roboto-Regular.eot");
  src: url("./assets/fonts/Roboto-Regular/Roboto-Regular.eot?#iefix") format("embedded-opentype"),
    url("./assets/fonts/Roboto-Regular/Roboto-Regular.woff2") format("woff2"),
    url("./assets/fonts/Roboto-Regular/Roboto-Regular.woff") format("woff"),
    url("./assets/fonts/Roboto-Regular/Roboto-Regular.ttf") format("truetype"),
    url("./assets/fonts/Roboto-Regular/Roboto-Regular.svg#Roboto-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* --------- General Styles --------- */

p {
  font-family: "Roboto-Regular";
  font-size: 1rem;
  color: #7b7b7b;
  margin: 0;
}

h1 {
  font-family: "FuturaStd-Bold";
  max-width: 500px;
  width: 100%;
  font-size: 2.625rem;
  text-align: center;
  margin: 100px auto 15px;
}

h2 {
  font-family: "Roboto-Light";
  font-size: 2.625rem;
  margin: 15px auto 70px;
  text-align: center;
}

input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}

button {
  transition: filter 0.1s ease-in-out;
}

button:hover {
  transition: filter 0.1s ease-in;
  filter: brightness(0.9);
}
/* --------- Detailed Styles --------- */

.section {
  width: 100%;
}

.section__wrap {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
}
.container-options{
  height: 1090px;
}
.section__wrap .main-logo {
  margin-top: 40px;
  margin-left: 5%;
  max-width: 190px;
  position: absolute;
}

.section__wrap__content {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 90%;
  margin: auto;
}

.section__content__main-text {
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section__content__main-text__title {
  color: #fff;
  font-family: "FuturaStd-Book";
  width: 70%;
  margin: 0 auto;
  font-size: 1.125rem;
  text-align: center;
}

.section--heading {
  background: url(./assets/img/background-img.png) no-repeat;
  min-height: calc(100vh - 104px);
}
.section__content__main-data {
  width: 32%;
  max-width: 432px;
  border: 2px solid transparent;
  background: #fff; 
  border-radius: 8px;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  margin-top: 30px;
  height: 585px;
  transition: all 100ms ease-in;
  box-sizing: border-box;
  overflow: hidden;
  outline: none;
}

.section__content__main-data:hover {
  height: 646px;  
  box-shadow: 0px 3px 18px #00000063;
  border: 2px solid #fdb924;
}

.slider-heading {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
  min-height: 670px;
}

.slider-title-wrap {
  width: 0;
  height: 0;
  visibility: hidden;
  user-select: none;
  opacity: 0;
}

.section__content__main-data__title {
  font-family: "FuturaStd-BoldOblique";
  font-size: 1.25rem;
  margin: 30px auto 20px;
}

.section__content__main-data__description {
  font-family: "Roboto-Light";
  text-align: center;
  font-size: 1rem;
  margin: 0 auto;
  width: 80%;
}

.section__content__main-data__price-tag {
  font-family: "FuturaStd-BoldOblique";
  font-size: 2.8rem;
  color: #fdb924;
  margin: 0 auto 4px;
}
.section__content__main-data__price-tag .currency {
  font-size: 1.25rem;
  color: #000;
  position: relative;
  top: 4px;
  vertical-align: text-top;
}
.section__content__main-data__price-tag .frequency {
  font-family: "Roboto-Regular";
  font-size: 1.25rem;
  color: #000;
}
.section__content__main-data__list {
  font-family: "Roboto-Light";
  font-size: 1.125rem;
  list-style: none;
  padding: 0;
  margin: 14px auto;
  width: 80%;
  line-height: 0.8;
}

.section__content__main-data__list li {
  display: flex;
  margin-bottom: 14px;
}

.section__content__main-data__list li::before {
  content: "";
  background: url(./assets/img/icon_checked.svg) no-repeat;
  background-position: 0 -4px;
  background-size: 30px;
  padding-left: 33px;
  height: 20px;
  display: inline-block;
  margin-top: -4px; 
}
.section__content__main-data__list .unchecked::before {
  background: url(./assets/img/icon_unchecked.svg) no-repeat;
  background-position: 0 -2px;
}

.section__content__main-data__btn {
  /* display: none; */
  background-color: #fdb924;
  color: #000;
  font-family: "Roboto-Bold";
  font-size: 1.125rem;
  padding: 17px 0;
  width: 80%;
  margin: 0 auto 32px;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0;
  transition: all 100ms ease-in;
  transform: scaleY(1);
  text-decoration: none;
  text-align: center;
}

.section__content__main-data:hover .section__content__main-data__btn {
  /* display: block; */
  opacity: 1;
  transform: scaleY(1);
}

.section--attributes {
  background-color: #fff;
}

.section__title__bold {
  font-family: "Roboto-Medium";
  font-size: 2.625rem;
}

.attr-wrap {
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  margin-bottom: 50px;
}

.attr-wrap__item-group {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  outline: none;
}

.attr-wrap__item {
  width: 26%;
  margin-bottom: 80px;
}

.attr-wrap__item__icon {
  max-height: 80px;
}

.attr-wrap__item__p {
  position: relative;
  margin-top: 50px;
}

.attr-wrap__item__p::before {
  content: "";
  padding-left: 40px;
  border-top: 1px solid #7b7b7b;
  position: absolute;
  top: -25px;
  left: 0;
}

.section--location {
  min-height: 450px;
  display: flex;
}

.location__map {
  width: 56%;
}

#map {
  width: 100%;
  height: 100%;
}

.location__content {
  width: 44%;
  background: #231f20;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.location__content::before {
  content: "";
  position: absolute;
  left: -18px;
  top: calc(50% - 30px);
  border-right: 20px solid #231f20;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
}

.location__content__wrap {
  width: 60%;
}

.location__content__title {
  font-family: "Roboto-light";
  font-size: 2.25rem;
  margin: 0 0 32px;
  color: #fff;
  text-align: center;
  line-height: 1.2;
}

.location__content__p {
  max-width: 281px;
  color: #fff;
  text-align: center;
  margin: 0 auto;
}

.location__content__title__bold {
  font-family: "Roboto-Medium";
  font-size: 1.9375rem;
  display: block;
}

.section--slider {
  margin: 120px 0;
  position: relative;
}
.slider--img {
  margin: 0 auto;
  max-width: initial;
}
.slider--img-cont {
  filter: grayscale(1);
  margin: 0 auto;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider .slick-dots {
  bottom: -54px;
}

.section--slider__wrap {
  position: relative;
}

.slider-cont {
  overflow: hidden;
  width: 20%;
  position: absolute;
  top: 9%;
  height: 500px;
}

.slider-cont--filter {
  width: 100%;
  height: 100%;
  top: 0px;
  position: absolute;
  background-color: rgba(14, 14, 14, 0.75);
}

.slider-cont--right {
  right: 0;
}
.slider-cont--left {
  left: 0;
}

.slider-cont--center {
  width: 90%;
  max-width: 1240px;
  display: block;
  position: relative;
  margin: 0 auto;
  z-index: 1;
}
.section--attr__btn,
.section--heading__btn,
.section--slider__btn {
  position: absolute;
  top: 45%;
  z-index: 1;
  background-color: transparent;
  outline: none;
  transition: all 0.1s ease-in;
  cursor: pointer;
}
.section--heading__btn{
  display: none;
  top: 60%;
}
.section--attr__btn{
  display: none;
  top: 54%;
}
.section--attr__btn.prev::before,
.section--heading__btn.prev::before,
.section--slider__btn.prev::before {
  content: "";
  padding-left: 50px;
  padding-bottom: 35px;
  background: url("./assets/img/icon-arrow-izq.svg") no-repeat;
  background-size: contain;
}
.section--attr__btn:hover::before,
.section--heading__btn:hover::before,
.section--slider__btn:hover::before {
  filter: brightness(0.8);
  transition: all 0.1s ease-in;
}
.section--attr__btn.next::before,
.section--heading__btn.next::before,
.section--slider__btn.next::before {
  content: "";
  padding-left: 50px;
  padding-bottom: 35px;
  background: url("./assets/img/icon-arrow-der.svg") no-repeat;
  background-size: contain;
}
.section--attr__btn.prev,
.section--heading__btn.prev{
  left: 0;
}
.section--slider__btn.prev {
  left: -2.5%;
}
.section--attr__btn.next,
.section--heading__btn.next{
  right: 0;
}
.section--slider__btn.next {
  right: -2.5%;
}

.section--slider__wrap .slick-dots li button::before {
  font-size: 12px;
  color: #fdb924;
  opacity: 0.35;
}
.section--slider__wrap .slick-dots .slick-active button::before {
  opacity: 1;
  color: #fdb924;
}
.section--slider__background {
  position: absolute;
  top: 25%;
  width: 100%;
}

.section--qa {
  margin-bottom: 150px;
}

.section--qa__tabs {
  overflow: hidden;
  width: 60%;
  margin: 0 auto;
}
.tab {
  width: 100%;
  color: #000;
  overflow: hidden;
  position: relative;
}

.tab-label {
  font-size: 1rem;
  font-family: "Roboto-Medium";
  display: flex;
  justify-content: space-between;
  padding: 1em;
  cursor: pointer;
}

.tab-icon-open {
  display: block;
  width: 15px;
  height: 1px;
  margin: 5px 0;
  position: relative;
  background: #000;
  border-radius: 10px;
  position: absolute;
  top: 20px;
  right: 24px;
  transition: all 0.15s ease-in-out;
}

.tab-icon-open:last-child {
  transform: rotate(90deg);
  transition: all 0.15s ease-in-out;
}

.tab-content {
  max-height: 0;
  padding: 0 1em;
  color: black;
  background: white;
  transition: all 0.15s ease-in-out;
  border-bottom: 1px solid #7b7b7b81;
  width: 95%;
  transition: all 0.15s ease-in-out;
}
.tab-content-p {
  width: 85%;
}
.tab-close {
  display: flex;
  justify-content: flex-end;
  padding: 1em;
  font-size: 0.75em;
  cursor: pointer;
}

/* :checked */

input:checked + .tab-label > .tab-icon-open {
  right: 12px;
  transition: all 0.15s ease-in-out;
}

input:checked + .tab-label > .tab-icon-open:last-child {
  right: 12px;
  transform: rotate(0deg);
  transition: all 0.15s ease-in-out;
}

input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
  width: 100%;
}

footer {
  background-color: #231f20;
  height: 308px;
  display: flex;
}

.section__wrap--footer {
  justify-content: center;
}

.footer-logo {
  max-width: 190px;
  margin-left: 5%;
}

.promo {
  width: 100%;
  height: 10vh;
  max-height: 105px;
  min-height: 85px;
  position: fixed;
  bottom: 0;
  display: flex;
  z-index: 2;
  transition: all 0.35s ease-in-out;
  background-color: #231f20;
}
.promo--opened {
  height: 100vh;
}
.promo__txt-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo__p {
  font-family: "FuturaStd-BoldOblique";
  font-size: 1.875rem;
  color: #fdb924;
  display: inline-block;
  margin: 0;
}

.promo__h {
  display: inline-block;
  font-family: "FuturaStd-BoldOblique";
  font-size: 1.125rem;
  margin: 0;
}

.h--black {
  color: #fff;
}
.h--smart {
  color: #231f20;
}

.promo__btn {
  font-family: "Roboto-Bold";
  font-size: 1.25rem;
  border-radius: 6px;
  padding: 11px 30px;
}

.btn--black {
  color: #000;
  background-color: #fdb924;
  margin-right: 50px;
}

.btn--smart {
  color: #fff;
  background-color: #231f20;
  margin-left: 50px;
}

.promo--black {
  width: 50%;
  background-color: #231f20;
  color: #fff;
  height: inherit;
}
.promo--smart {
  width: 50%;
  background-color: #fff;
  color: #231f20;
  height: inherit;
}

.promo__cont {
  width: 90%;
  max-width: 600px;
  margin-left: auto;
  display: flex;
  align-items: center;
  height: inherit;
  justify-content: space-around;
}
.promo__cont.promo__cont--smart {
  margin-left: 0;
  margin-right: auto;
}

.promo--btn {
  font-family: "Roboto-Bold";
  padding: 12px 60px;
  border-radius: 33px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ab0812;
  transition: all 0.1s ease-in;
  cursor: pointer;
  margin: auto;
}
.promo--btn--mobile {
  display: none;
}
.promo--btn:hover {
  filter: brightness(0.8);
  transition: all 0.1s ease-in;
}

.promo--btn__txt {
  font-family: "Roboto-Bold";
  font-size: 1.125rem;
  color: #ffffff;
  position: relative;
  transition: all 0.35s 0.2s ease-out;
}

.promo--btn__txt::before {
  content: "";
  height: 25px;
  width: 25px;
  background: url("./assets/img/icon_arrow_up.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: -40px;
}

.promo--opened .promo--btn {
  top: -25px;
}
.promo--opened .promo--btn__txt {
  top: 20px;
  transition: all 0.1s ease-in-out;
}

.promo--opened .promo--btn__txt::before {
  background: url("./assets/img/icon_close.svg");
  height: 12px;
  width: 12px;
  background-size: 12px;
  top: calc(50% - 6px - 0.875rem);
  left: calc(50% - 6px);
  transition: all 0.2s ease-out;
}

.promo__info {
  height: 0;
  width: 0;
  opacity: 0;
  visibility: hidden;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-height: 720px;
}

.promo__info-btn {
  font-family: "Roboto-Medium";
  font-size: 1.125rem;
  border-radius: 3px;
  padding: 11px 30px;
  margin-top: auto;
}

.promo__info-btn--smart {
  color: #fff;
  background-color: #000;
}

.promo__info-btn--black {
  color: #000;
  background-color: #fff;
}

.promo__info__subt {
  font-family: "Roboto-Medium";
  font-size: 0.875rem;
  margin: 20px 0;
  align-self: flex-start;
}

.promo__info-p .info-price {
  font-family: "FuturaStd-BoldOblique";
  font-size: 0.9rem;
  color: #fdb924;
  display: inline-block;
  margin: 0;
}

.promo__info-h {
  display: inline-block;
  font-family: "FuturaStd-BoldOblique";
  font-size: 1.5rem;
  margin: 0;
}

.promo--opened .promo__info {
  height: 90%;
  width: 60%;
  opacity: 1;
  visibility: visible;
  user-select: initial;
  margin: auto;
}

.promo--opened .promo__btn,
.promo--opened .promo__txt-wrap {
  height: 0;
  width: 0;
  opacity: 0;
  visibility: hidden;
  user-select: none;
  margin: 0;
  padding: 0;
}

.info-list {
  font-family: "Roboto-Regular";
  font-size: 1rem;
  margin: 0;
  align-self: flex-start;
}

.info-list li::before {
  background-size: 25px;
  background-position: 0 -2px;
  padding-left: 30px;
}

.info-subtitle {
  font-family: "Roboto-Light";
  font-size: 0.9rem;
  width: 75%;
  text-align: center;
}

.promo__p span {
  vertical-align: super;
  font-size: 1.125rem;
}

.info-details {
  font-family: "Roboto-Regular";
  font-size: 0.9rem;
  text-align: center;
}
.info-details b {
  font-family: "Roboto-Bold";
}

.info-details span {
  font-size: 0.75rem;
}

/* Media Queries*/

@media (max-width: 1360px) {
  .promo {
    height: 90px;
  }
  .promo--btn {
    padding: 12px 60px;
  }
  .promo--opened {
    height: 100vh;
  }
}

@media (max-width: 1024px) {
  h1 {
    width: 90%;
    font-size: 2rem;
    text-align: center;
    margin: 100px auto 16px;
  }
  h2 {
    font-size: 1.75rem;
    margin: 15px auto 50px;
  }
  a {
    font-family: "Roboto-Light";
    color: #fff;
    text-decoration: none;
  }
  .section--heading {
    height: auto;
  }
  .section__wrap__content {
    flex-flow: column;
    width: 90%;
    margin: 0 auto;
  }
  .section__wrap__content--slider {
    width: 100%;
  }
  .section__wrap .main-logo {
    margin-top: 25px;
    margin-left: 4%;
    max-width: 120px;
    position: absolute;
  }
  .section__content__main-text__title {
    width: 76%;
    margin: 0 auto;
    font-size: 1rem;
    margin-bottom: 35px;
    text-align: center;
  }
  .section__content__main-text {
    width: 100%;
  }
  .slider-heading {
    width: 100%;
    padding: 0 9%;
  }
  .slider-title-wrap {
    display: flex;
    width: 82%;
    margin: 0 auto;
    font-family: Roboto-Regular;
    color: white;
    font-size: 0.9rem;
    justify-content: space-between;
    height: auto;
    visibility: visible;
    user-select: initial;
    opacity: 1;
  }
  .slider-title-wrap .slide-title {
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
    cursor: pointer;
  }
  .slider .slick-dots {
    bottom: -48px;
  }
  .slide-title--active {
    font-size: 1rem;
    font-family: "Roboto-Bold";
  }

  .slide-title-line {
    width: 82%;
    margin: 6px auto 30px;
    height: 3px;
    position: relative;
    --left: -4px;
  }

  .slide-title-line::before {
    content: "";
    width: var(--width);
    height: 100%;
    background-color: #fdb924;
    left: var(--left);
    position: absolute;
    transition: all 0.2s ease-in-out;
  }

  .slider-heading .slick-list {
    margin: 0 -11%;
    padding: 0 9%;
  }
  .section__content__main-data.slick-slide {
    display: flex;
    margin: 0;
    margin-bottom: 40px;
  }
  .section__content__main-data,
  .section__content__main-data:hover {
    height: auto;
    width: 60%;
    /* margin: 0 20px; */
    margin-bottom: 72px;
    transform: scale(0.9);
    transition: all 0.15s ease-in;
    max-width: unset;
    border: 2px solid transparent;
  }

  .section__content__main-data:hover .section__content__main-data__btn,
  .section__content__main-data .section__content__main-data__btn {
    /* display: block; */
    opacity: 1;
    transform: scaleY(1);
  }

  .section__content__main-data.slick-active {
    transform: scale(1);
    transition: all 0.15s ease-in;
  }

  .section__content__main-data:nth-child(2),
  .section__content__main-data:nth-child(3) {
    width: 60%;
    height: auto;
    opacity: 1;
    user-select: initial;
    visibility: visible;
  }
  .section__content__main-data__title,
  .section__content__main-data__price-tag,
  .section__content__main-data__list,
  .section__content__main-data__btn {
    display: table;
  }
  .section__content__main-data__btn {
    margin-bottom: 20px;
  }
  .section__content__main-data__title {
    font-size: 1rem;
    margin: 14px auto 10px;
  }
  .section__content__main-data__price-tag {
    font-size: 2.3125rem;
    margin-bottom: 10px;
  }
  .section__content__main-data__price-tag .currency,
  .section__content__main-data__price-tag .frequency {
    font-size: 1rem;
  }
  .section__content__main-data__description {
    text-align: center;
    font-size: 0.9rem;
    width: 80%;
  }
  .section__content__main-data__list {
    font-size: 0.9rem;
    margin: 20px auto;
    width: 80%;
  }
  .attr-wrap.slick-slider.slick-dotted {
    margin-bottom: 50px;
  }
  .attr-wrap__item-group {
    flex-flow: column;
  }
  .attr-wrap__item {
    width: 100%;
    margin-bottom: 40px;
  }
  .attr-wrap__item__icon {
    max-height: 60px;
    margin: 0 auto;
  }
  .attr-wrap__item__p {
    margin: 35px 40px 0;
    text-align: center;
  }
  .attr-wrap__item__p::before {
    left: calc(50% - 20px);
    top: -17.5px;
  }

  .attr-wrap .slick-dots li button::before {
    font-size: 12px;
    color: #fdb924;
    opacity: 0.35;
  }
  .attr-wrap .slick-dots .slick-active button::before {
    opacity: 1;
    color: #fdb924;
  }
  .attr-background {
    position: absolute;
    top: 25%;
    width: 100%;
  }
  .section--location {
    flex-direction: column-reverse;
  }
  .location__content {
    width: 100%;
  }
  .location__content__wrap {
    width: 100%;
  }
  .location__content__title {
    margin: 36px auto;
    font-size: 1.75rem;
  }
  .location__content__p {
    width: 0;
    height: 0;
    user-select: none;
    opacity: 0;
    font-size: 0;
  }
  .location__content__title__bold {
    font-size: 1.75rem;
  }
  .location__content::before {
    content: "";
    position: absolute;
    left: calc(50% - 20px);
    top: calc(100% - 1px);
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #000;
  }
  .location__map {
    width: 100%;
    height: 275px;
  }
  .section--slider {
    margin: 0;
  }
  .section__title__bold {
    font-size: 1.75rem;
  }
  .slider .slick-list {
    border-radius: 4px;
    height: inherit;
  }
  .slider-cont--center {
    width: 84%;
    height: 440px;
  }
  .slider--img {
    height: 100%;
  }
  .slider-cont--center .slick-slider.slick-dotted {
    height: 100%;
  }
  .slider-cont {
    height: 80%;
  }
  .section--slider__btn.prev {
    left: -6%;
  }
  .section--slider__btn {
    height: 40px;
  }
  .section--slider__btn.next {
    right: -10%;
  }
  .section--slider__btn.next::before {
    position: absolute;
    top: 0;
    right: 0;
  }
  .section--slider__btn.prev::before {
    position: absolute;
    top: 0;
    left: 0;
  }
  .slick-track {
    height: inherit;
  }
  .section--qa__tabs {
    width: 91%;
  }
  .tab-label {
    width: 80%;
  }
  .tab-label > .tab-icon-open {
    right: 12px;
  }
  .tab-label > .tab-icon-open:last-child {
    right: 12px;
  }
  .tab-content {
    width: 100%;
  }
  .section--qa {
    margin-bottom: 130px;
    margin-top: 100px;
  }
  .promo {
    height: 0;
    width: 0;
    opacity: 0;
    user-select: none;
  }

  .promo--btn--mobile {
    display: block;
    position: fixed;
    bottom: 27px;
    right: 5px;
    z-index: 20;
  }
  .promo--btn--mobile::before {
    content: "";
    background: url(./assets/img/icon-scroll-up.png) no-repeat;
    background-size: contain;
    width: 45px;
    height: 45px;
    position: absolute;
    bottom: 0;
    right: 0;
  }

  footer {
    height: 100px;
  }
  .footer-logo {
    max-width: 120px;
    margin: 0 auto;
  }
  .section--attr__btn,
  .section--heading__btn{
    display: block;
  }
  .section--attr__btn:hover::before,
  .section--heading__btn:hover::before,
  .section--slider__btn:hover::before {
    filter: brightness(1);
  }
}