@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-weight: 300;
    src: url('../fonts/poppins-v24-latin-300.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-weight: 400;
    src: url('../fonts/poppins-v24-latin-regular.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-weight: 600;
    src: url('../fonts/poppins-v24-latin-600.woff2') format('woff2');
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-weight: 900;
    src: url('../fonts/poppins-v24-latin-900.woff2') format('woff2');
}

/* roots */
:root {
    --brand-light: rgba(129, 155, 87, 1);
    --brand-dark: rgba(70, 89, 41, 1);
    --primary-light: rgba(250, 244, 234, 1);
    --primary-dark: rgba(49, 38, 26, 1);
}

/* basic styles */
body {
    color: var(--primary-dark);
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

address {
    font-style: normal;
}

ul {
    list-style-type: none;
}

/* hero section */
.hero-title {
    color: var(--primary-light);
    text-align: center;
    font-size: 128px;
    font-weight: 900;
}

.hero-title .accent {
    color: var(--brand-light);
}

/* advantages section*/
.advantages-list {
    color: var(--primary-light);
    background: var(--brand-light);
}

.advantages-item {
    font-size: 20px;
    font-weight: 300;
}

/* titles section */
.section-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.3;
}

.section-title .accent {
    color: var(--brand-dark);
}

/* traditions section */
.traditions-text .brand {
    color: var(--brand-light);
    font-weight: 600;
}

.traditions-text .uppercase {
    color: var(--brand-light);
    text-transform: uppercase;
}

/* Chiefs section */
.chief-title {
    font-size: 40px;
    font-weight: 600;
}

/* Formats section */
.format-title {
    font-size: 24px;
    font-weight: 600;
}

.format-text {
    font-size: 14px;
    font-weight: 300;
}

/* footer */
.address-link {
    color: var(--primary-light);
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
}

.address-link:hover {
    color: var(--brand-dark);
}

.address-copyright {
    font-size: 14px;
}

/* buttons */
.button {
    color: var(--primary-light);
    background-color: var(--brand-light);
    border: 2px solid var(--brand-light);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.button:hover {
    color: var(--brand-dark);
    background-color: transparent;
}

/* links */
.link {
    color: var(--primary-light);
    text-decoration: none;
}

.link:hover {
    color: var(--brand-light);
    font-weight: 600;
}