/*#region*/
:root {
  --general-text: #312C27;
  --accent-text: #1F1711;
  --general-bg: #FFF9F4;
  --accent-bg: #FFE0CB;
  --accent-color: #FFA55C;
}

body {
  font-family: "Montserrat", "Arial", serif;
  line-height: 1.5;
  color: var(--general-text);
  background: var(--general-bg);
}

.wrapper {
  min-height: 100%;
  width: 100%;
  overflow: hidden;

  display: flex;
  flex-direction: column;
}

.main {
  flex-grow: 1;
}

.container {
  max-width: 1310px;
  margin: 0 auto;
  padding: 0 15px;
  height: 100%;
}

.button {
font-weight: 500;
font-size: 16px;
line-height: 1.6;
text-align: center;
color: var(--general-text);

display: flex;
justify-content: center;
align-items: center;
border-radius: 60px;
padding: 3px 15px;
height: 62px;
background: var(--accent-color);

transition: all .4s;
}

.button:hover {
  background: #ff9138;
}
/*#endregion*/
/** ===================  header  =================== */
/*! ===============  header__top  =============== */
/*#region*/
.header {
  background: url("../img/decor/bg-header.png") 50% 100% / cover no-repeat;
}

.header__top {
  padding-top: 19px;
}

.header__top-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.header__logo {
  max-width: 174px;
}

.nav {
}

.nav__list {
  display: flex;
  gap: 0px 40px;
}

.nav__item {
}

.nav__link {
  display: block;
  padding: 5px 0;
  position: relative;
  z-index: 1;
}

.nav__link::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -18px;
  z-index: -1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FFA55C;

  opacity: 0;
  transition: all .4s;
}

.nav__link:hover::before {
  opacity: 1;
}
/*#endregion*/
/*! ===============  hero  =============== */
/*#region*/
.hero {
  padding: 50px 0 140px;
}

.hero__inner {
  display: flex;
  align-items: self-end;
  justify-content: space-between;
}

.hero__content {
  max-width: 520px;
}

.hero__info {
  line-height: 1.6;
  text-transform: uppercase;
  color: #b197b2;
  margin-bottom: 20px;

  display: flex;
  flex-wrap: wrap;
}

.hero__info span {
  display: flex;
  align-items: center;
}

.hero__info span::after {
  content: '';
  background: #b197b2;
  border-radius: 50%;
  width: 4px;
  height: 4px;
  margin: 0 10px;
}

.hero__info span:last-child:after {
  content: none;
}

.hero__title {
  font-family: "Gabriola", sans-serif;
  font-size: 74px;
  line-height: 0.82;
  color: #1f1711;
  margin-bottom: 30px;
}

.hero__text {
  max-width: 360px;
  margin-bottom: 40px;
}

.hero__button {
  max-width: 360px;
}

.hero__ing {
}

.hero__img-control {
}

.hero__img-button {
}
/*#endregion*/





/*#region*/
/*#endregion*/