@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Code:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap");
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  display: inline-block;
}

:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

button {
  background-color: transparent;
}

nav,
footer,
header,
aside {
  display: block;
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

.title {
  font-weight: 500;
  font-size: 55px;
  line-height: 130%;
  text-transform: uppercase;
  color: #a1613b;
}

@media (max-width: 991.98px) {
  .title {
    font-size: 45px;
  }
  .text {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .title {
    font-size: 35px;
  }
  .text {
    font-size: 14px;
  }
}
.text {
  font-family: "Google Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: #4d4d4d;
}

.footer-text {
  font-family: "Google Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #4c4c4c;
}

@media (max-width: 489.98px) {
  .footer-text {
    font-size: 12px;
  }
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =========================
   Base styles
========================= */
body {
  font-size: 14px;
  font-family: "Google Sans", sans-serif;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: clip;
}

.wrapper > main {
  flex-grow: 1;
}

/* =========================
   Containers
========================= */
[class*=__container] {
  max-inline-size: 1245px;
  padding-inline: 15px;
  margin: 0 auto;
}

/* =========================
   Header styles
========================= */
.header {
  background: #ddc0ae;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

/* Header container layout */
.header__container {
  padding-top: 20px;
  padding-bottom: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  max-width: 1380px;
  margin: 0 auto;
  column-gap: 245px;
}

/* =========================
   Logo
========================= */
.logo-header__image {
  max-width: 100%;
}

/* =========================
   Navigation menu
========================= */
.menu-header__items {
  display: flex;
  flex-wrap: wrap;
  column-gap: 43px;
}

.menu-header__link {
  font-size: 18px;
  text-transform: capitalize;
  color: #000;
}

/* Underline effect for nav links */
.menu-header__link span {
  position: relative;
  display: inline-block;
}

.menu-header__link span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 24px;
  height: 2px;
  width: 0%;
  background-color: #a1613b;
  transition: all 0.5s;
}

.menu-header__link.active span::after {
  content: "";
  position: absolute;
  left: 0%;
  top: 24px;
  height: 2px;
  width: 100%;
  background-color: #a1613b;
}

.menu-header__link:hover span::after {
  left: 0;
  width: 100%;
}

/* =========================
   Header actions (icons)
========================= */
.actions-header {
  display: flex;
  column-gap: 30px;
}

.actions-header__item {
  width: 100%;
  transition: all 0.2s;
}

.actions-header__item:hover {
  transform: scale(1.1);
}

/* =========================
   Burger menu (mobile)
========================= */
.burger {
  display: none;
}

/* =========================
   Responsive styles
========================= */
/* Large tablets / small desktops */
@media (max-width: 1290.98px) {
  .header__container {
    column-gap: 120px;
  }
}
@media (max-width: 1170.98px) {
  .header__container {
    column-gap: 100px;
  }
  .menu-header__items {
    column-gap: 40px;
  }
  .menu-header__link {
    font-size: 16px;
  }
  /* Medium tablets */
}
@media (max-width: 991.98px) {
  .header__container {
    column-gap: 70px;
  }
  .menu-header__items {
    column-gap: 20px;
  }
  .menu-header__link {
    font-size: 14px;
  }
  .actions-header {
    column-gap: 20px;
  }
}
/* Mobile */
@media (max-width: 767.98px) {
  /* Fullscreen menu */
  .menu-header {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: -100%;
    background-color: white;
    z-index: 2;
    padding-block: 150px;
    transition: all 0.3s;
  }
  /* Menu items vertical */
  .menu-header__items {
    flex-direction: column;
    align-items: center;
    row-gap: 30px;
    padding-inline-end: 20px;
    font-size: 24px;
  }
  /* Header container for mobile */
  .header__container {
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-content: space-between;
    column-gap: 40px;
  }
  /* Burger button */
  .burger {
    position: relative;
    display: block;
    inline-size: 35px;
    block-size: 25px;
    z-index: 3;
    align-self: center;
  }
  /* Burger lines */
  .burger::before,
  .burger span,
  .burger::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    background-color: #505050;
    border-radius: 4px;
    left: 0;
  }
  .burger::before {
    top: 0;
  }
  .burger::after {
    bottom: 0;
  }
  .burger span {
    top: 10px;
  }
  .logo-header {
    z-index: 3;
  }
  .actions-header {
    z-index: 3;
    justify-self: flex-end;
  }
  .menu-header__link span::after {
    width: 0%;
  }
  /* Active states */
  .menu-header.active {
    right: 0;
  }
  .burger.active::before {
    top: 10px;
    transform: rotate(45deg);
  }
  .burger.active::after {
    transform: rotate(-45deg);
    bottom: 11px;
  }
  .burger.active span {
    transform: scale(0);
  }
}
/* Very small screens */
@media (max-width: 489.98px) {
  .header__container {
    column-gap: 10px;
  }
  .actions-header {
    column-gap: 10px;
  }
}
/* =========================
   Hero Section
========================= */
.hero {
  padding-top: 140px;
  background-color: #ddc0ae;
  position: relative;
}

/* Hero layout */
.hero__container {
  display: grid;
  grid-template-columns: 1fr 62.48996%; /* 778/1245 */
  align-items: center;
  padding-inline: 60px;
}

/* Hero layout */
.hero__body {
  padding-bottom: 150px;
}

.hero__title {
  font-family: "Google Sans", sans-serif;
  font-weight: 700;
  font-size: 152px;
  line-height: 100%;
  letter-spacing: -0.08em;
  color: #a1613b;
}

.hero__subtitle {
  padding-top: 35px;
  font-family: "Google Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: #a1613b;
}

.hero__text {
  padding-top: 10px;
  font-family: "Google Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 162%;
  color: #505050;
}

/* Hero button */
.hero__button {
  font-family: "Circular Std", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: #fff;
  background-color: #a1613b;
  border-radius: 32px;
  padding-inline: 42px;
  padding-block: 20px;
  margin-top: 40px;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* Separator inside button */
.hero__button span::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 24px;
  background-color: #d9d9d9;
  opacity: 0.3;
  margin: 0 12px;
  vertical-align: middle;
}

/* Button hover & active states */
@media (hover: hover) and (pointer: fine) {
  .hero__button:hover {
    background-color: #8e512d;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  }
}
.hero__button:active {
  background-color: #8e512d;
  transform: scale(0.97);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

/* Hero image */
.hero__images {
  padding-bottom: 150px;
}

.hero__image {
  width: 100%;
}

/* Social icons */
.hero__icons {
  position: absolute;
  bottom: 0; /* ← притиснутий донизу */
  left: 0; /* ← притиснутий зліва */
  display: flex;
  flex-direction: column;
  gap: 33px;
  background: #383838;
  padding: 32px 30px;
}

.hero__icon span {
  display: inline-block;
  transform: rotate(-90deg); /* ← повертаємо тільки текст */
  transform-origin: center;
  color: #fff;
  font-family: "Circular Std", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

/* =========================
   Hero Responsive
========================= */
@media (max-width: 1170.98px) {
  .hero__container {
    padding-inline: 40px;
  }
  .hero {
    padding-top: 70px;
  }
  .hero__title {
    font-size: 100px;
  }
  .hero__subtitle {
    padding-top: 10px;
    font-size: 16px;
  }
  .hero__text {
    font-size: 15px;
  }
}
@media (max-width: 991.98px) {
  .hero__container {
    padding-inline: 20px;
  }
  .hero {
    padding-top: 50px;
  }
  .hero__title {
    font-size: 80px;
  }
  .hero__subtitle {
    padding-top: 14px;
    font-size: 18px;
  }
  .hero__text {
    font-size: 16px;
  }
  .hero__button {
    font-size: 14px;
    border-radius: 32px;
    padding-inline: 42px;
    padding-block: 20px;
    margin-top: 40px;
  }
  .hero__icons {
    gap: 20px;
    padding: 26px 24px;
  }
  .hero__icon span {
    font-size: 12px;
  }
}
@media (max-width: 767.98px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .hero__button {
    order: 3;
    margin-bottom: 60px;
  }
  .hero__images {
    order: 2;
    padding-bottom: 10px;
  }
  .hero__icons {
    flex-direction: row;
    width: 100%;
    justify-content: center;
    margin-top: 50px;
    padding-block: 10px;
  }
  .hero__icons span {
    transform: none;
    font-size: 20px;
  }
  .hero__body {
    padding-bottom: 10px;
    display: contents;
  }
  .hero__title {
    font-size: 65px;
  }
}
/* =========================
   Statistics Section
========================= */
.statistics {
  background: #fff2ea;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: 140px;
}

/* Statistics layout */
.statistics__items {
  display: grid;
  grid-template-columns: repeat(4, max-content); /* колонки по контенту */
  justify-content: center; /* ось це ключ! */
  column-gap: 150px; /* відстань між колонками */
}

.statistics__number {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 45px;
  line-height: 100%;
  text-align: center;
  color: #a1613b;
}

.statistics__text {
  font-family: "Google Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  text-align: center;
  color: #181818;
  padding-top: 20px;
}

/* =========================
   Statistics Responsive
========================= */
@media (max-width: 1170.98px) {
  .statistics__items {
    column-gap: 100px;
  }
}
@media (max-width: 991.98px) {
  .statistics {
    margin-bottom: 100px;
  }
  .statistics__items {
    column-gap: 70px;
  }
  .statistics__number {
    font-size: 35px;
  }
  .statistics__text {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .statistics {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 50px;
  }
  .statistics__items {
    column-gap: 40px;
  }
  .statistics__number {
    font-size: 28px;
  }
  .statistics__text {
    font-size: 14px;
  }
}
@media (max-width: 489.98px) {
  .statistics {
    padding-top: 20px;
  }
  .statistics__items {
    grid-template-columns: repeat(2, max-content);
    column-gap: 30px;
    row-gap: 20px;
  }
}
/* =========================
   Why Us Section
========================= */
.whyus {
  margin-bottom: 180px;
}

/* Section text */
.whyus__text {
  padding-top: 20px;
  width: 51%;
  margin: 0 auto;
}

.whyus__title {
  text-align: center;
}

/* Section text */
.whyus__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 50px;
  column-gap: 100px;
}

.whyus__item {
  display: grid;
  justify-items: center;
  max-width: 25%;
}

/* Item image */
.item-whyus__image {
  max-width: 100%;
  transition: transform 0.3s ease;
}

.item-whyus__image:hover {
  transform: scale(1.05);
}

/* Item content */
.item-whyus__title {
  font-family: "Google Sans", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
  text-align: center;
  color: #1e1e1e;
  padding-top: 35px;
}

.item-whyus__text {
  width: 80%;
  font-family: "Google Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding-top: 10px;
  line-height: 175%;
  text-align: center;
  color: #757575;
}

/* =========================
   Why Us Responsive
========================= */
@media (max-width: 1170.98px) {
  .whyus__text {
    width: 80%;
    text-align: center;
  }
  .whyus__items {
    column-gap: 60px;
  }
}
@media (max-width: 991.98px) {
  .whyus__items {
    column-gap: 40px;
  }
  .whyus__text {
    width: 90%;
  }
  .whyus {
    margin-bottom: 100px;
  }
  .item-whyus__text {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .whyus__text {
    width: 100%;
  }
  .whyus__item {
    max-width: 100%;
  }
  .whyus__items {
    row-gap: 20px;
  }
  .whyus {
    margin-bottom: 50px;
  }
}
/* =========================
   About Us Section
========================= */
.aboutus__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

/* Content */
.aboutus__body {
  padding-top: 70px;
}

.aboutus__title {
  margin-bottom: 40px;
}

.aboutus__text {
  max-width: 85%;
  margin-bottom: 60px;
}

/* Buttons */
.aboutus__buttons {
  display: flex;
  column-gap: 30px;
}

.aboutus__button {
  font-family: "Google Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  padding-inline: 35px;
  padding-block: 20px;
  border-radius: 30px;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* Button states */
@media (hover: hover) and (pointer: fine) {
  .aboutus__button.btn-orange:hover {
    background-color: #8f5432;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  }
  .aboutus__button.btn-grey:hover {
    background-color: #2c2c2c;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  }
}
.aboutus__button:active {
  transform: scale(0.97);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.aboutus__button.btn-orange:active {
  background-color: #8f5432;
}

.aboutus__button.btn-grey:active {
  background-color: #2c2c2c;
}

.btn-orange {
  background-color: #a1613b;
}

.btn-grey {
  background-color: #383838;
}

/* Image & decorative elements */
.aboutus__image {
  position: relative;
}

.aboutus__dots {
  position: absolute;
  top: -8%; /* трохи вище картинки */
  right: -3%; /* відступ від правого краю wrapper */
  width: 15%; /* масштабування разом з wrapper */
}

.aboutus__img {
  max-width: 100%;
}

/* =========================
   About Us Responsive
========================= */
@media (max-width: 1170.98px) {
  .aboutus__body {
    padding-top: 30px;
  }
  .aboutus__text {
    max-width: 90%;
    margin-bottom: 50px;
  }
  .aboutus__title {
    margin-bottom: 30px;
  }
}
@media (max-width: 991.98px) {
  .aboutus__body {
    padding-top: 0px;
  }
  .aboutus__text {
    margin-bottom: 20px;
  }
  .aboutus__title {
    margin-bottom: 10px;
  }
  .aboutus__button {
    font-family: "Google Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding-inline: 26px;
    padding-block: 18px;
    border-radius: 25px;
  }
}
@media (max-width: 767.98px) {
  .aboutus__container {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .aboutus__body {
    display: contents;
  }
  .aboutus__image {
    order: 2;
    margin-bottom: 20px;
  }
  .aboutus__buttons {
    order: 3;
    margin-bottom: 30px;
    justify-content: center;
  }
  .aboutus__dots {
    display: none;
  }
  .aboutus__text {
    max-width: 100%;
  }
}
/* =========================
   Products Section
========================= */
.page__products {
  padding-top: 130px;
  padding-bottom: 80px;
}

.products {
  background: #fafafa;
}

/* Section title */
.products__title {
  font-weight: 500;
  font-size: 44px;
  line-height: 130%;
  text-transform: uppercase;
  text-align: center;
  color: #a1613b;
  margin-bottom: 40px;
}

/* Products list */
.products__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 90px;
}

/* Product item */
.item-products__icon {
  width: 120px;
  height: 120px;
  background-color: #fff;
  box-shadow: 0 10px 30px 0 rgba(41, 77, 118, 0.08);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Hover / active states */
@media (hover: hover) and (pointer: fine) {
  .item-products__icon:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(41, 77, 118, 0.15);
  }
}
.item-products__icon:active {
  transform: translateY(-3px) scale(0.97);
  box-shadow: 0 10px 22px rgba(41, 77, 118, 0.2);
}

.item-products__img {
  max-width: 100%;
}

/* Product text */
.item-products__text {
  font-family: "Google Sans", sans-serif;
  font-weight: 500;
  font-size: 22px;
  line-height: 125%;
  text-align: center;
  color: #333131;
}

/* =========================
   Products Responsive
========================= */
@media (max-width: 1170.98px) {
  .products__items {
    column-gap: 70px;
  }
}
@media (max-width: 991.98px) {
  .page__products {
    padding-top: 70px;
    padding-bottom: 50px;
  }
  .products__items {
    column-gap: 40px;
  }
}
@media (max-width: 767.98px) {
  .page__products {
    padding-top: 50px;
    padding-bottom: 30px;
  }
  .products__items {
    row-gap: 20px;
  }
  .products__title {
    font-size: 34px;
    margin-bottom: 20px;
  }
}
/* =========================
   Testimonials Section
========================= */
.page__testimonials {
  background-color: #fafafa;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Title */
.testimonials__title {
  margin-bottom: 30px;
  text-align: center;
}

/* Slider wrapper */
.testimonials__slider {
  width: 100%;
  max-width: 850px;
  padding-top: 100px;
  position: relative;
  margin: 0 auto;
}

/* Slide */
.testimonials__slide {
  flex: 0 0 100%;
  height: 200px;
  inset: 0;
  background: #fff;
  box-shadow: 0 10px 30px rgba(41, 77, 118, 0.08);
  border-radius: 30px 10px;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  transition: opacity 0.6s ease;
}

.testimonials__slide.active {
  opacity: 1;
}

.testimonials__image {
  position: absolute;
  top: -95px;
  left: 30px;
}

.testimonials__img {
  width: 92px; /* бажана ширина */
  height: 132px; /* бажана висота */
  object-fit: cover; /* обрізає зайві частини і заповнює блок */
  border-radius: 8px; /* або 0, якщо без закруглення */
}

.testimonials__text {
  padding-inline: 20px;
  font-family: "Google Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  /* line-height: 25px; */
  line-height: 155%;
  text-align: center;
  color: #8c8c8c;
  max-width: 68%;
}

/* Decorative elements */
.testimonials__slide::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 10%;
  width: 55px;
  height: 55px;
  background-image: url("../../images/testimonials_top.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.testimonials__slide::after {
  content: "";
  position: absolute;
  bottom: 5%;
  right: 10%;
  width: 55px;
  height: 55px;
  background-image: url("../../images/testimonials_button.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Slider navigation */
.testimonials__button {
  position: absolute;
  top: 90%;
  transform: translateY(-50%);
  color: #000;
  opacity: 0.2;
  font-size: 50px;
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.testimonials__button:hover {
  opacity: 1;
  transform: translateY(-50%) translateY(0);
}

.testimonials__button.prev {
  left: 5%;
}

.testimonials__button.next {
  right: 5%;
}

.testimonials__decor {
  display: none;
}

/* =========================
   Testimonials Responsive
========================= */
@media (max-width: 767.98px) {
  .testimonials__slide::before {
    width: 35px;
    height: 35px;
  }
  .testimonials__slide::after {
    width: 35px;
    height: 35px;
  }
  .testimonials__title {
    margin-bottom: 20px;
  }
  .testimonials__text {
    font-size: 14px;
    text-align: center;
    max-width: 70%;
  }
  .testimonials__button.prev {
    left: 1%;
  }
  .testimonials__button.next {
    right: 1%;
  }
  .testimonials__image {
    display: none;
  }
}
@media (max-width: 489.98px) {
  .testimonials__button {
    font-size: 32px;
  }
  .testimonials__text {
    max-width: 90%;
  }
  .testimonials__slide::before {
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
  }
  .testimonials__slide::after {
    bottom: 0;
    right: 0;
    width: 30px;
    height: 30px;
  }
}
/* =========================
   Companies Section
========================= */
.page__companies {
  margin-top: 150px;
}

/* Logos list */
.companies__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
}

.companies__img {
  width: 100%;
}

/* =========================
  Companies Responsive
========================= */
@media (max-width: 991.98px) {
  .companies__body {
    gap: 30px;
  }
}
@media (max-width: 767.98px) {
  .page__companies {
    margin-top: 90px;
  }
}
/* =========================
   Subscribe Section
========================= */
.page__subscribe {
  margin-top: 150px;
}

.subscribe__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.subscribe__img {
  width: 100%;
}

/* Content */
.subscribe__body {
  margin-inline-start: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.subscribe__title {
  font-weight: 500;
  font-size: 46px;
  color: #a1613b;
}

.subscribe__text {
  font-family: "Google Sans", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #555454;
  margin-top: 18px;
}

/* Form */
.subscribe__form {
  margin-top: 50px;
  border: 1.5px solid #f5f5f5;
  border-radius: 50px;
  width: 100%;
  max-width: 620px;
  height: 65px;
  display: flex;
  justify-content: space-between;
}

.subscribe__input {
  font-family: "Google Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #989898;
  margin-inline-start: 10px;
}

.subscribe__button {
  font-family: "Google Sans", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  border-radius: 30px;
  padding-inline: 30px;
  margin: 10px 10px 10px 0px;
  background: #a1613b;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

/* Button states */
@media (hover: hover) and (pointer: fine) {
  .subscribe__button:hover {
    background-color: #8f5432;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  }
}
.subscribe__button:active {
  transform: scale(0.97);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  background-color: #8f5432;
}

/* =========================
  Subscribe Responsive
========================= */
@media (max-width: 1170.98px) {
  .subscribe__button {
    font-size: 14px;
  }
}
@media (max-width: 991.98px) {
  .page__subscribe {
    margin-top: 100px;
  }
  .subscribe__input {
    font-size: 16px;
  }
  .subscribe__title {
    font-size: 34px;
  }
  .subscribe__text {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .page__subscribe {
    margin-top: 70px;
  }
  .subscribe__container {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .subscribe__image {
    display: none;
  }
  .subscribe__title {
    font-size: 30px;
  }
  .subscribe__input {
    font-size: 14px;
  }
  .subscribe__button {
    font-size: 14px;
  }
}
@media (max-width: 489.98px) {
  .subscribe__button {
    font-size: 12px;
    padding-inline: 24px;
  }
  .subscribe__input {
    font-size: 12px;
  }
  .subscribe__text {
    font-size: 14px;
  }
}
/* =========================
   Footer Section
========================= */
.footer {
  background: linear-gradient(180deg, rgba(255, 242, 234, 0) 0%, #fff2ea 56.3%);
}

.footer__container {
  padding-top: clamp(80px, 12vw, 250px);
  padding-bottom: clamp(30px, 6vw, 80px);
}

.footer__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer__item {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.item-footer__text {
  max-width: 80%;
}

.item-footer__icons {
  margin-top: 50px;
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.item-footer__list {
  display: flex;
  flex-direction: column;
  row-gap: 14px;
}

.item-footer__contacts {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.item-footer__contact {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.item-footer__adress {
  display: inline-block;
  max-width: 70%;
}

.item-footer__form {
  margin-top: 20px;
  border: 1.5px solid #555454;
  border-radius: 10px;
  width: 100%;
  max-width: 227px;
  height: 46px;
  display: flex;
  justify-content: space-between;
}

.item-footer__input {
  background-color: inherit;
}

.item-footer__button {
  background: #a1613b;
  font-family: "Google Sans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 70px;
  margin: 2px 2px 2px 0px;
  border-radius: 5px;
}

@media (hover: hover) and (pointer: fine) {
  .item-footer__button:hover {
    background-color: #8f5432;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  }
}
.item-footer__button:active {
  transform: scale(0.97);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  background-color: #8f5432;
}

@media (max-width: 1170.98px) {
  .footer__items {
    gap: 20px;
  }
}
@media (max-width: 991.98px) {
  .footer__items {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
  }
  .item-footer__icons {
    margin-top: 20px;
  }
  .footer__item {
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  .item-footer__list {
    align-items: center;
  }
  .item-footer__contacts {
    align-items: center;
  }
  .item-footer__adress {
    display: inline;
    max-width: 100%;
  }
}
@media (max-width: 767.98px) {
  .footer__item {
    padding: 10px;
  }
  .footer__items {
    row-gap: 20px;
  }
}
@media (max-width: 489.98px) {
  .footer__items {
    grid-template-columns: 1fr;
  }
}

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