:root {
  --conf-max-width: 1100px;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray-dark: #1a1a1a;
  --color-gray-light: #f5f5f5;
  --color-gray-medium: #667085;
  --color-orange-light: #e6d5cb;
  --color-pink-dark: #b9365e;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  color: var(--color-gray-dark);
  font-size: 14px;
}

.main__content {
  width: 100%;
  max-width: var(--conf-max-width);
  margin: 0 auto;
  padding: 24px 16px 16px 16px;
  box-sizing: border-box;
  min-height: 100vh;
}

a,
a:visited {
  color: var(--color-pink-dark);
  transition: color 0.3s ease;
}

header {
  width: 100%;
  height: auto;
  background: linear-gradient(var(--color-orange-light), var(--color-white));
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.header__content {
  width: 100%;
  max-width: var(--conf-max-width);
}

.header__search {
  padding: 0;
  margin: 0;
}

.header__search input {
  background-color: var(--color-white);
  border: none;
  border-radius: 24px 0 0 24px;
  font-size: 14px;
  padding: 6px 8px;
  height: 34px;
  margin: 0;
}

.header__search label {
  padding: 0;
  margin: 0;
}

.header__search button {
  background-color: var(--color-pink-dark);
  color: var(--color-white);
  border: none;
  border-radius: 0 24px 24px 0;
  padding: 6px 16px;
  font-size: 14px;
  cursor: pointer;
  height: 34px;
  margin: 0;
  margin-top: -3px;
  margin-left: -3px;
}

.header__mobile {
  width: 100%;
  padding: 16px;
  display: none;
}

.header__mobile form {
  display: flex;
  flex-direction: row;
}

.header__mobile form button {
  margin-top: 0px;
}

.header__mobile .header__search label {
  width: 100%;
}

.header__mobile .header__search input {
  width: 100%;
}

.header__mobile img {
  width: auto;
  height: 48px;
}

.header__mobile-menu {
  margin-top: 16px;
}

.header__desktop {
  width: 100%;
  max-width: var(--conf-max-width);
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.header__desktop-logo {
  width: auto;
  height: 160px;
  margin-top: 32px;
}

.header__desktop-logo-mini {
  width: auto;
  height: 40px !important;
}

.header__desktop nav {
  margin-right: 32px;
}

.header__desktop nav ul {
  margin: 0px;
}

.header__desktop nav ul li {
  display: inline-block;
  margin: 0 8px;
  list-style: none;
  font-size: 1em;
  color: var(--color-gray-dark);
}

.header__desktop nav ul li a {
  text-decoration: none;
  color: var(--color-gray-dark);
  transition: color 0.3s ease;
}

header .header-bottom {
  width: 100%;
  max-width: var(--conf-max-width);
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .header__desktop {
    display: none;
  }
  .header__mobile {
    display: block;
  }
}

footer {
  width: 100%;
  height: auto;
  background: linear-gradient(var(--color-white), var(--color-orange-light));
  padding: 24px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 60px;
}

footer img {
  width: auto;
  height: 40px !important;
}

footer p {
  font-size: 14px;
  color: var(--color-gray-medium);
  margin: 0;
}
