@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/poppins-v23-latin-300.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v23-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v23-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 900;
  src: url('../fonts/poppins-v23-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
  --color-dark: #31261a;
  --color-white: #faf4ea;
  --color-brand: #819b57;
  --color-brand-dark: #465929;
}

/* BASE */
* {
  box-sizing: border-box;
}

body {
  color: var(--color-dark);
  font-family: poppins, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}
address {
  font-style: normal;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1 {
  font-size: 128px;
  color: var(--color-white);
}
h1 span {
  color: var(--color-brand);
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
}

/* SECTION */
.section {
  padding: 48px 0;
  margin-bottom: 80px;
}

.container {
  width: 100%;
  max-width: 1288px;
  margin: 0 auto;
  padding: 0 24px;
}

/* BUTTON */
.button {
  padding: 16px 32px;
  color: var(--color-white);
  background-color: var(--color-brand);
  border: 2px solid var(--color-brand);
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
}
.button:hover {
  color: var(--color-brand-dark);
  background-color: transparent;
  font-size: 18px;
  font-weight: 600;

  /* LINKS */
}
.link {
  color: var(--color-white);
  font-weight: 400;
  font-size: 18px;
  text-decoration: none;
}
.link:hover {
  color: var(--color-brand);
}

/* Header */
.header-container {
  display: flex;
  align-items: center;
  gap: 40px;
  background-color: #465929;
}
.header-nav {
  display: flex;
  align-items: center;
  flex-grow: 1;
  gap: 40px;
}

.header-menu {
  display: flex;
  gap: 64px;
  flex-grow: 1;
  justify-content: center;
}

/* Hero section */
.hero-title {
  color: var(--color-white);
  font-family: poppins, sans-serif;
  font-weight: 900;
  text-align: center;
  padding: 272px 0;
}
.hero-section {
  padding: 272px 0;
}

/* ADVANTAGES SECTION */
.advantages-section {
  background-color: var(--color-brand);
  padding: 16px 0px;
}
.advantages {
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.advantages-item {
  font-weight: 300;
  font-size: 20px;
}
.section-title {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--color-dark);
}
.section-title .accent {
  color: var(--color-brand-dark);
}

/* TRADITIONS SECTIOn */
.traditions-container {
  display: flex;
  gap: 100px;
}
.traditions-content {
  max-width: 710px;
  justify-content: space-between;
  gap: 40px;
}

.traditions-text .brand {
  color: var(--color-brand);
  font-weight: 400;
}
.traditions-text .brand-uppercase {
  text-transform: uppercase;
  color: var(--color-brand);
  font-weight: 600;
}
.traditions-text:nth-child(3) {
  max-width: 340px;
}
.tradition-section {
  padding-top: 96px;
}
.traditions-title {
  margin-bottom: 42px;
}

/* KUHARI SECTION */
.kuhari-title {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* FORMATY SECTION */
.formats-list {
  display: flex;
  gap: 20px;
}
.format-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--color-white);
  background-color: #a18268;
}
.format-text {
  font-size: 14px;
  font-weight: 300;
}

.format-card {
  border: 1px solid lightgrey;
  border-radius: 16px;
  padding: 24px;
}

/* CONTACTS SECTION */

.contact-title {
  margin-bottom: 16px;
}

/* FOOTER */
.address-link {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-white);
  text-decoration: none;
}

.address-link:hover {
  color: var(--color-brand);
}
.address-copyright {
  font-size: 14px;
  color: #a18268;
}
