:root {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

:where(ul, ol):where([class]) {
  padding-left: 0;
}

body,
:where(blockquote, figure, fieldset):where([class]) {
  margin: 0;
}

:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  padding: 0;
  border: none;
}

:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

p {
  --paragraphMarginBottom: rem(12);
  margin-block: 0;
}

p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

img {
  vertical-align: top;
}

input,
textarea,
select,
button {
  font: inherit;
}

html,
body {
  height: 100%;
}

button,
label {
  cursor: pointer;
}

button {
  -webkit-tap-highlight-color: transparent;
}

:where([fill]:not([fill=none], [fill^=url])) {
  fill: currentColor;
}

:where([stroke]:not([stroke=none], [stroke^=url])) {
  stroke: currentColor;
}

svg * {
  transition-property: fill, stroke;
}

:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

a:where([class]) {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

@font-face {
  font-family: "Manrope", sans-serif;
  src: url("../fonts/Manrope-Variable.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DM Sans", sans-serif;
  src: url("../fonts/DMSans-Variable.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
/* 
100 thin
200 extra light (ultra light)
300 ligth
400 regular (normal)
500 medium
600 semi bold (demi bold )
700 bold
800 extra bold (ultra bold)
900 black (heavy)
*/
:root {
  --container-width: 75rem;
  --container-padding-x: 0.9375rem;
  --header-height: 6.4375rem;
  --font-family-base: "Manrope", sans-serif;
  --font-family-accent: "DM Sans", sans-serif;
  --base-line-height: 1.5;
  --bg-color-base: #fff;
  --text-base: #000;
  --text-link-color: #2cbde6;
  --light: #fff;
  --dark: #000;
  --text-light: #333;
  --brands-color: #666;
  --border-color: #ebebeb;
  --color-1: #f85a47;
  --color-2: rgb(189, 204, 255);
  --color-3: #f1ffff;
  --color-4: #9672ff;
  --color-5: #4ddffd;
  --color-6: #f2b8ec;
  --color-7: #d6d7d8;
  --button-hover: color-mix(in srgb, var(--color-1), #000 10%);
  --transition-base: all 0.2s ease;
}

@media (width <= 47.99875rem) {
  :root {
    --header-height: 4.375rem;
  }
}
.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  overflow: clip;
}

[class*=__container] {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

body {
  font-family: var(--font-family-base);
  color: var(--text-base);
}
body.body-block {
  overflow: hidden;
}

.page {
  flex: 1;
}
.title {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1;
}

.logo {
  color: var(--text-light);
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1;
}

.header {
  position: absolute;
  top: 0;
  z-index: 100;
  width: 100%;
}
.header__container {
  width: 100%;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 0.625rem;
}
.nav__list {
  display: flex;
  column-gap: 2.6875rem;
}
.nav__link {
  color: var(--text-base);
  font-family: var(--font-family-accent);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
}
.nav__link::after {
  content: "";
  margin-top: -0.125rem;
  display: block;
  width: 0;
  height: 0.0625rem;
  background-color: var(--dark);
  transition: var(--transition-base);
}
@media (hover: hover) and (pointer: fine) {
  .nav__link:hover::after {
    width: 100%;
  }
}
.nav__link:active::after {
  width: 100%;
}
.burger {
  display: none;
  background-color: transparent;
  border: none;
  flex-direction: column;
  row-gap: 0.375rem;
}
.burger span {
  display: inline-block;
  width: 1.5625rem;
  height: 0.125rem;
  background-color: var(--dark);
  transition: var(--transition-base);
}

@media (width <= 47.99875rem) {
  .nav__list {
    flex-direction: column;
    row-gap: 1.25rem;
    align-items: center;
    position: absolute;
    padding-top: 1.25rem;
    bottom: 0;
    top: var(--header-height);
    width: 100%;
    left: -100%;
    height: 100vh;
    background-color: var(--bg-color-base);
    transition: var(--transition-base);
  }
  .nav__list.nav-open {
    left: 0;
  }
  .nav__link {
    font-size: 1.5625rem;
  }
  .burger {
    display: flex;
  }
  .burger.burger-open span:first-child {
    translate: 0 0.5rem;
    rotate: 45deg;
  }
  .burger.burger-open span:nth-child(2) {
    width: 0;
  }
  .burger.burger-open span:last-child {
    translate: 0 -0.5rem;
    rotate: -45deg;
  }
}
.hero {
  --hero-padding-top: 5.1875rem;
  margin-bottom: 8rem;
}
.hero__container {
  padding-top: calc(var(--header-height) + var(--hero-padding-top));
  position: relative;
}
.hero__container::after {
  content: "";
  background-color: var(--color-2);
  position: absolute;
  top: 0;
  height: 100%;
  width: 200%;
  left: 68%;
  z-index: -1;
}
.hero__main-block {
  display: flex;
}
.hero__info-block {
  flex: 0 0 50%;
}
.hero__slider {
  flex: 0 0 50%;
}
.info-block-hero__text-block {
  margin-right: 3.4375rem;
}
.info-block-hero__text-block > *:not(:last-child) {
  margin-bottom: 1.5rem;
}
.info-block-hero__text-block:not(:last-child) {
  margin-bottom: 3rem;
}
.info-block-hero__sub-title {
  color: var(--color-1);
  font-family: var(--font-family-accent);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.info-block-hero__title {
  color: var(--text-base);
  font-size: 3.375rem;
  font-weight: 800;
  line-height: 1.35; /* 135.185% */
}
.info-block-hero__paragraphs p {
  color: var(--text-light);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
}
.form {
  display: flex;
  position: relative;
  height: 5.375rem;
  background: var(--bg-color-base) url("../../images/icons/Icon-form.svg") 2.0625rem 50% no-repeat;
  box-shadow: 0.9375rem 0.9375rem 1.875rem rgba(0, 0, 0, 0.07);
  z-index: 10;
  margin-right: -11.75rem;
}
.form > * {
  border: none;
}
.form input {
  background-color: transparent;
  flex: 1 1 100%;
  border: 1px solid #dadada;
  padding-left: 4.625rem;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
}
.form button[type=submit] {
  width: 11.75rem;
  flex: 0 0 11.75rem;
  background-color: var(--color-1);
  color: var(--light);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.3125rem 0.9375rem;
  transition: background-color 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .form button[type=submit]:hover {
    background-color: var(--button-hover);
  }
}
.form button[type=submit]:active {
  background-color: var(--button-hover);
}

.slider-hero {
  width: 100%;
}
.slider-hero img {
  width: 100%;
  object-fit: cover;
}

.partners-hero {
  max-width: 65.7265%;
}
.partners-hero__title {
  color: var(--text-light);
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.01em;
}
.partners-hero__title:not(:last-child) {
  margin-bottom: 1.6875rem;
}
.partners-hero__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (width <= 63.99875rem) {
  .hero {
    --hero-padding-top: 3.125rem;
  }
  .hero__container::after {
    display: none;
  }
  .hero__main-block {
    display: block;
    margin-bottom: 1.75rem;
  }
  .hero__info-block {
    margin-bottom: 1.75rem;
  }
  .info-block-hero__text-block {
    margin-right: 0;
  }
  .info-block-hero__sub-title {
    font-size: 1.25rem;
  }
  .info-block-hero__title {
    font-size: 3.0625rem;
  }
  .form {
    margin-right: 0;
  }
  .partners-hero {
    max-width: 100%;
  }
}
@media (max-width: 52.68625rem) {
  .hero {
    margin-bottom: 4.375rem;
  }
}
@media (max-width: 39.81125rem) {
  .form {
    background-position: 1.125rem 50%;
  }
  .form input {
    padding-left: 3.125rem;
  }
  .form button[type=submit] {
    width: 130px;
    flex: 0 0 130px;
  }
  .partners-hero__body {
    flex-wrap: wrap;
    gap: 1.125rem;
    justify-content: space-around;
  }
}
@media (width <= 30.06125rem) {
  .hero {
    --hero-padding-top: 1.5625rem;
  }
  .info-block-hero__text-block {
    margin-right: 0;
  }
  .info-block-hero__sub-title {
    font-size: 1rem;
  }
  .info-block-hero__title {
    font-size: 2.375rem;
  }
  .form {
    height: auto;
    flex-direction: column;
    background: none;
  }
  .form input {
    padding-left: 0.9375rem;
    padding-block: 0.9375rem;
    height: 70px;
  }
  .form button[type=submit] {
    width: 100%;
    flex: 0 0 100%;
    padding-block: 1.125rem;
  }
  .slider-hero img {
    height: auto;
  }
}
.how__container {
  padding: 6.375rem 1.5rem;
}
.how__title {
  text-align: center;
  margin-bottom: 4.375rem;
}
.how__body {
  display: grid;
  grid-template-columns: repeat(3, max(16.25rem));
  column-gap: 1.875rem;
  justify-content: space-between;
}
.item-how {
  position: relative;
  display: grid;
  justify-items: center;
}
.item-how__icon {
  display: flex;
  border-radius: 1.25rem;
  align-items: center;
  justify-content: center;
  width: 5.625rem;
  aspect-ratio: 1;
}
.item-how__icon svg {
  fill: white;
  stroke: white;
}
.item-how__icon:not(:last-child) {
  margin-bottom: 3.125rem;
}
.item-how__icon_purple {
  background-color: var(--color-4);
  box-shadow: 0 100px 80px 0 rgba(150, 114, 255, 0.07), 0 64.815px 46.852px 0 rgba(150, 114, 255, 0.05), 0 38.519px 25.481px 0 rgba(150, 114, 255, 0.04), 0 20px 13px 0 rgba(150, 114, 255, 0.04), 0 8.148px 6.519px 0 rgba(150, 114, 255, 0.03), 0 1.852px 3.148px 0 rgba(150, 114, 255, 0.02);
}
.item-how__icon_purple::after {
  content: "";
  position: absolute;
  top: 2.5625rem;
  width: 100%;
  max-width: 13.125rem;
  height: 0.6875rem;
  left: 100%;
  transform: translateX(-7%);
  background: url("../../images/icons/how-line.svg") 0 0 no-repeat;
}
.item-how__icon_blue {
  background-color: var(--color-5);
  box-shadow: 0 100px 80px 0 rgba(77, 223, 253, 0.07), 0 64.815px 46.852px 0 rgba(77, 223, 253, 0.05), 0 38.519px 25.481px 0 rgba(77, 223, 253, 0.04), 0 20px 13px 0 rgba(77, 223, 253, 0.04), 0 8.148px 6.519px 0 rgba(77, 223, 253, 0.03), 0 1.852px 3.148px 0 rgba(77, 223, 253, 0.02);
}
.item-how__icon_blue::after {
  content: "";
  position: absolute;
  top: 2.5625rem;
  width: 13.125rem;
  height: 0.6875rem;
  left: 100%;
  transform: translateX(-7%) rotate(180deg);
  background: url("../../images/icons/how-line.svg") 0 0 no-repeat;
}
.item-how__icon_pink {
  background-color: var(--color-6);
  box-shadow: 0 100px 80px 0 rgba(242, 184, 236, 0.07), 0 64.815px 46.852px 0 rgba(242, 184, 236, 0.05), 0 38.519px 25.481px 0 rgba(242, 184, 236, 0.04), 0 20px 13px 0 rgba(242, 184, 236, 0.04), 0 8.148px 6.519px 0 rgba(242, 184, 236, 0.03), 0 1.852px 3.148px 0 rgba(242, 184, 236, 0.02);
}
.item-how__title {
  font-size: 1.375rem;
  line-height: 1;
  font-weight: 600;
}
.item-how__title:not(:last-child) {
  margin-bottom: 0.9375rem;
}
.item-how__text {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.62; /* 162.5% */
}

@media (max-width: 76.93625rem) {
  .item-how__icon::after {
    display: none;
  }
}
@media (max-width: 58.875rem) {
  .how__body {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, auto);
  }
  .how__item:not(:last-child) {
    margin-bottom: 3.125rem;
  }
  .item-how__icon:not(:last-child) {
    margin-bottom: 1.875rem;
  }
}
@media (max-width: 52.68625rem) {
  .how__container {
    padding-block: 4.375rem;
  }
}
@media (width <= 47.99875rem) {
  .how__container {
    padding-block: 3.125rem;
  }
}
.deals__container {
  padding-block: 7.6875rem;
}
.deals__header:not(:last-child) {
  margin-bottom: 3.125rem;
}
.deals__nav {
  margin-bottom: 2.8125rem;
}
.header-deals {
  display: flex;
  column-gap: 0.9375rem;
}
.header-deals__text-block {
  flex: 1 1 auto;
}
.header-deals__title:not(:last-child) {
  margin-bottom: 0.9375rem;
}
.header-deals__text p {
  font-size: 1rem;
  line-height: 1.5;
}
.header-deals__link {
  flex-shrink: 0;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 2.0625rem;
  min-height: 4.0625rem;
  border-radius: 0.3125rem;
  background: var(--color-1);
  box-shadow: 0 100px 80px 0 rgba(248, 90, 71, 0.07), 0 64.815px 46.852px 0 rgba(248, 90, 71, 0.05), 0 38.519px 25.481px 0 rgba(248, 90, 71, 0.04), 0 20px 13px 0 rgba(248, 90, 71, 0.04), 0 8.148px 6.519px 0 rgba(248, 90, 71, 0.03), 0 1.852px 3.148px 0 rgba(248, 90, 71, 0.02);
  color: var(--light);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1;
  transition: var(--transition-base);
}
@media (hover: hover) and (pointer: fine) {
  .header-deals__link:hover {
    background-color: var(--button-hover);
  }
}
.header-deals__link:active {
  background-color: var(--button-hover);
}

.nav-deals__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem 3.375rem;
}
.nav-deals__button {
  background-color: transparent;
  border: none;
  font-size: 1.1875rem;
  font-weight: 400;
  line-height: 1;
  transition: color 0.2s ease;
}
.nav-deals__button::after {
  content: "";
  display: block;
  height: 0.0625rem;
  margin-top: 0.75rem;
  width: 0%;
  background-color: var(--color-1);
  transition: width 0.2s ease;
}
@media (hover: hover) and (pointer: fine) {
  .nav-deals__button:not(:has(.active)):hover {
    color: var(--color-1);
  }
  .nav-deals__button:not(:has(.active)):hover::after {
    width: 100%;
  }
}
.nav-deals__button:not(:has(.active)):active {
  color: var(--color-1);
}
.nav-deals__button:not(:has(.active)):active::after {
  width: 100%;
}
.nav-deals__button.active {
  color: var(--color-1);
}
.nav-deals__button.active::after {
  content: "";
  margin-top: 0.75rem;
  display: block;
  height: 0.0625rem;
  width: 100%;
  background-color: var(--color-1);
}

.tabs-deals__body {
  display: none;
  gap: 1.875rem;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: 18.75rem;
}
.tabs-deals__body.active {
  display: grid;
}
.tabs-deals__item {
  position: relative;
  overflow: hidden;
  border-radius: 0.3125rem;
  height: 18.75rem;
}
.tabs-deals__options {
  position: absolute;
  z-index: 10;
  top: 0.875rem;
  left: 0.875rem;
}
.tabs-deals__option {
  border-radius: 0.3125rem;
  border: 0.0625rem solid var(--light);
  background: rgba(0, 0, 0, 0.4);
  color: var(--light);
  font-size: 0.75rem;
  padding: 0.375rem;
  transition: background-color 0.2s ease;
}
.tabs-deals__option:not(:last-child) {
  margin-right: 0.375rem;
}
@media (hover: hover) and (pointer: fine) {
  .tabs-deals__option:hover {
    background: rgba(0, 0, 0, 0.6);
  }
}
.tabs-deals__option:active {
  background: rgba(0, 0, 0, 0.6);
}
.tabs-deals__image {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.tabs-deals__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-base);
}
@media (hover: hover) and (pointer: fine) {
  .tabs-deals__image img:hover {
    scale: 1.05;
  }
}
.tabs-deals__image img:active {
  scale: 1.05;
}

@media (max-width: 43.62375rem) {
  .header-deals {
    flex-direction: column;
    row-gap: 0.9375rem;
  }
}
@media (width <= 47.99875rem) {
  .deals__container {
    padding-block: 3.125rem;
  }
}
.featured-listing__container {
  padding-block: 7.5rem;
}
.featured-listing__title {
  text-align: center;
}
.featured-listing__title:not(:last-child) {
  margin-bottom: 5.9375rem;
}
.featured-listing__body {
  display: flex;
  gap: 4.8125rem;
  background-color: var(--color-3);
  padding: 2.4375rem 9.375rem 5.125rem 2.4375rem;
}
.photos-featured-listing {
  display: flex;
  flex-direction: column;
}
.photos-featured-listing__photo-top {
  width: 30.75rem;
  aspect-ratio: 492/364;
  object-fit: cover;
}
.photos-featured-listing__photo-bottom {
  width: 25.625rem;
  aspect-ratio: 410/278;
  object-fit: cover;
  margin-top: -33%;
  box-shadow: 0 163px 80px 0 rgba(0, 0, 0, 0.04), 0 105.648px 46.852px 0 rgba(0, 0, 0, 0.03), 0 62.785px 25.481px 0 rgba(0, 0, 0, 0.02), 0 32.6px 13px 0 rgba(0, 0, 0, 0.02), 0 13.281px 6.519px 0 rgba(0, 0, 0, 0.02), 0 3.019px 3.148px 0 rgba(0, 0, 0, 0.01), 48px 58px 44px 0 rgba(0, 0, 0, 0.09);
}

.info-featured-listing__title {
  font-size: 1.9375rem;
  font-weight: 500;
  line-height: 1;
}
.info-featured-listing__title:not(:last-child) {
  margin-bottom: 1.75rem;
}
.info-featured-listing__text p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.5; /* 150% */
}
.info-featured-listing__text:not(:last-child) {
  margin-bottom: 2.625rem;
}
.package-info__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.3125rem;
}
.package-info__list:not(:last-child) {
  margin-bottom: 3.375rem;
}
.package-info__link {
  display: inline-flex;
  text-transform: uppercase;
  min-height: 2.625rem;
  padding: 0.4375rem 2.4375rem;
  align-items: center;
  justify-content: center;
  background-color: var(--color-1);
  color: var(--light);
  box-shadow: 0 100px 80px 0 rgba(248, 90, 71, 0.07), 0 64.815px 46.852px 0 rgba(248, 90, 71, 0.05), 0 38.519px 25.481px 0 rgba(248, 90, 71, 0.04), 0 20px 13px 0 rgba(248, 90, 71, 0.04), 0 8.148px 6.519px 0 rgba(248, 90, 71, 0.03), 0 1.852px 3.148px 0 rgba(248, 90, 71, 0.02);
}

.item-body-package-info {
  font-size: 1.0625rem;
}
.item-body-package-info__option {
  line-height: 1;
}
.item-body-package-info__option:not(:last-child) {
  margin-bottom: 0.75rem;
}
.item-body-package-info__value {
  color: var(--text-light);
  line-height: 1;
}

@media (max-width: 77.81125rem) {
  .featured-listing__body {
    padding-right: 2.4375rem;
  }
}
@media (min-width: 67.18625rem) {
  .photos-featured-listing__photo-bottom {
    align-self: center;
  }
  .info-featured-listing {
    padding-top: 2.6875rem;
  }
}
@media (max-width: 67.18625rem) {
  .featured-listing__body {
    flex-direction: column;
  }
  .featured-listing__title:not(:last-child) {
    margin-bottom: 4.375rem;
  }
  .photos-featured-listing {
    max-width: 100%;
  }
  .photos-featured-listing__photo-top {
    width: 100%;
  }
  .photos-featured-listing__photo-bottom {
    margin-top: -12%;
    width: 100%;
  }
}
@media (max-width: 37.56125rem) {
  .featured-listing__body {
    padding: 1.25rem 1.25rem 5rem;
  }
}
@media (max-width: 31.31125rem) {
  .package-info__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 47.99875rem) {
  .featured-listing__container {
    padding-block: 3.125rem;
  }
  .featured-listing__title:not(:last-child) {
    margin-bottom: 2.8125rem;
  }
}
.comments {
  padding-block: 3.125rem;
}
.comments__title {
  max-width: 35.625rem;
}
.comments__title:not(:last-child) {
  margin-bottom: 3.125rem;
}
.comments__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.875rem;
}
.comments__items:not(:last-child) {
  margin-bottom: 5.25rem;
}
.comments__info {
  display: flex;
}
.comments__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  align-items: center;
  justify-content: space-between;
}
.comments__call p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.5; /* 150% */
}
.comments__call p a {
  color: var(--color-5);
}
.comments__call p a[href^="tel:"] {
  text-decoration: none;
  color: inherit;
}

.item-comments {
  border-radius: 0.625rem;
  border: 0.0625rem solid var(--border-color);
  padding: 3.25rem 2.375rem;
  transition: var(--transition-base);
}
@media (hover: hover) and (pointer: fine) {
  .item-comments:hover {
    border-color: transparent;
    box-shadow: 0 100px 80px 0 rgba(0, 0, 0, 0.03), 0 64.815px 46.852px 0 rgba(0, 0, 0, 0.02), 0 38.519px 25.481px 0 rgba(0, 0, 0, 0.02), 0 20px 13px 0 rgba(0, 0, 0, 0.01), 0 8.148px 6.519px 0 rgba(0, 0, 0, 0.01), 0 1.852px 3.148px 0 rgba(0, 0, 0, 0.01), 3px 44px 54px 0 rgba(0, 0, 0, 0.08);
  }
}
.item-comments:active {
  border-color: transparent;
  box-shadow: 0 100px 80px 0 rgba(0, 0, 0, 0.03), 0 64.815px 46.852px 0 rgba(0, 0, 0, 0.02), 0 38.519px 25.481px 0 rgba(0, 0, 0, 0.02), 0 20px 13px 0 rgba(0, 0, 0, 0.01), 0 8.148px 6.519px 0 rgba(0, 0, 0, 0.01), 0 1.852px 3.148px 0 rgba(0, 0, 0, 0.01), 3px 44px 54px 0 rgba(0, 0, 0, 0.08);
}
.item-comments__rating:not(:last-child) {
  margin-bottom: 2.125rem;
}
.item-comments__stars-icon {
  height: 1.025rem;
  width: 6rem;
  fill: #fbb040;
}
.item-comments__text p {
  color: var(--text-light);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
}
.item-comments__text:not(:last-child) {
  margin-bottom: 3.75rem;
}
.item-comments__user {
  display: flex;
  column-gap: 1.25rem;
  align-items: center;
}
.item-comments__user-photo {
  width: 3rem;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}
.item-comments__user-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.item-comments__user-name {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}
.item-comments__user-name:not(:last-child) {
  margin-bottom: 0.3125rem;
}
.item-comments__user-city {
  color: var(--text-light);
  font-size: 0.875rem;
  line-height: 1;
}

@media (min-width: 59.37375rem) {
  .comments__info {
    justify-content: space-between;
  }
  .comments__brands {
    flex: 0 0 60.4%;
  }
  .comments__call {
    flex: 0 0 26.6%;
  }
}
@media (max-width: 59.37375rem) {
  .comments__info {
    flex-direction: column;
  }
  .comments__brands:not(:last-child) {
    margin-bottom: 2.1875rem;
  }
}
.newsletter__container {
  padding-block: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.newsletter__title {
  font-size: 2.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.44;
}
.newsletter__title:not(:last-child) {
  margin-bottom: 0.6875rem;
}
.newsletter__label {
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.44; /* 33.166px */
  letter-spacing: 0.02em;
}
.newsletter__label:not(:last-child) {
  margin-bottom: 2.125rem;
}
.form-newsletter {
  display: flex;
  max-width: 42.875rem;
  width: 100%;
  justify-content: space-between;
  padding: 1.6875rem 1.875rem 1.625rem 2.8125rem;
  box-shadow: 0 163px 80px 0 rgba(0, 0, 0, 0.04), 0 105.648px 46.852px 0 rgba(0, 0, 0, 0.03), 0 62.785px 25.481px 0 rgba(0, 0, 0, 0.02), 0 32.6px 13px 0 rgba(0, 0, 0, 0.02), 0 13.281px 6.519px 0 rgba(0, 0, 0, 0.02), 0 3.019px 3.148px 0 rgba(0, 0, 0, 0.01);
}
.form-newsletter__label {
  display: block;
  font-size: 1.0625rem;
  color: var(--color-7);
  font-weight: 500;
  line-height: 1.44; /* 24.514px */
  letter-spacing: 0.02em;
}
.form-newsletter__input {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.44; /* 28.84px */
  letter-spacing: 0.02em;
  border: none;
}
.form-newsletter__input:focus {
  outline: none;
}
.form-newsletter__input::placeholder {
  font-weight: 400;
}
.form-newsletter__button {
  background-color: var(--color-1);
  color: var(--light);
  border: none;
  padding-inline: 2.5rem;
}

@media (max-width: 54.12375rem) {
  .newsletter__container {
    padding-block: 7.5rem;
  }
}
@media (max-width: 34.93625rem) {
  .form-newsletter {
    padding-block: 5.5rem;
    padding: 1rem;
    flex-direction: column;
    row-gap: 0.625rem;
  }
  .form-newsletter__button {
    height: 4.5rem;
  }
}
.footer__container {
  padding-block: 2.25rem;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__top:not(:last-child) {
  margin-bottom: 4.8125rem;
}
.footer__copy {
  text-align: center;
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1;
}

.nav-footer__list {
  display: flex;
  align-items: center;
  gap: 1.25rem 2.875rem;
}
.nav-footer__link {
  color: var(--text-base);
  font-family: var(--font-family-accent);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
}
.nav-footer__link::after {
  content: "";
  margin-top: -0.125rem;
  display: block;
  width: 0;
  height: 0.0625rem;
  background-color: var(--dark);
  transition: var(--transition-base);
}
@media (hover: hover) and (pointer: fine) {
  .nav-footer__link:hover::after {
    width: 100%;
  }
}
.nav-footer__link:active::after {
  width: 100%;
}

@media (max-width: 49.43625rem) {
  .footer__container {
    padding-block: 1.25rem;
  }
  .footer__top {
    flex-direction: column;
  }
  .footer__top:not(:last-child) {
    margin-bottom: 2.5rem;
  }
  .footer__logo:not(:last-child) {
    margin-bottom: 2.5rem;
  }
  .nav-footer__list {
    flex-wrap: wrap;
  }
}

/*# sourceMappingURL=main.css.map */
