* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    scroll-behavior: smooth;
    text-decoration: none;
    list-style-type: none;
}

body {
    background-color: #fafafa;
}

/* 
USING
*/

h1,
h2,
h3,
h4 {
    font-family: 'Inter';
    font-weight: 600;
    line-height: 150%;
    color: #3B2F2F;
    transition: all 0.2s;
}

h1 {
    margin-bottom: 30px;
    font-size: 42px;
}

h2 {
    margin-bottom: 20px;
    font-size: 36px;
}

h3 {
    margin-bottom: 20px;
    font-size: 26px;
}

h4 {
    margin-bottom: 20px;
    font-size: 22px;
}

p {
    margin-bottom: 30px;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 18px;
    line-height: 175%;
    color: #717171;
}

ul {
    margin: 35px 0;
}

li {
    padding-left: 10px;
    margin-left: 30px;
    margin-bottom: 10px;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 18px;
    line-height: 175%;
    color: #717171;
}

strong {
    color: #4e3e3e;
}

.container {
    max-width: 1312px;
    margin: 0 auto;
    padding: 0 16px;
}

.article-container {
    max-width: 877px;
    margin-right: auto;
    margin-left: auto;
    padding: 0 16px;
}

.intro-width {
    max-width: 752px;
}

.date {
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    color: #3B2F2F;
}

.list li {
    list-style-type: disc;
}

.pt-118 {
    padding-top: 118px;
}

.mb-260 {
    margin-bottom: 260px;
}

.mb-130 {
    margin-bottom: 130px;
}

.mb-51 {
    margin-bottom: 51px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-18 {
    margin-bottom: 18px;
}

.fw-500 {
    font-weight: 500;
}

.fw-400 {
    font-weight: 400;
}

.fs-42 {
    font-size: 42px;
}

.hr {
    height: 2px;
    width: 349px;
    background-color: #EDEDF3;
}

.breadcrumbs {
    margin-bottom: 0;
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 6px;
}

.breadcrumbs li {
    font-size: 1px;
    margin-left: 0;
    margin-bottom: 0;
    padding-left: 0;
    color: #fafafa;
}

.breadcrumbs a {
    cursor: default;
    color: #fafafa;
}

.breadcrumbs li+li::before {
    content: " – ";
}

/* 
FOOTER
*/

footer {
    padding-bottom: 25px;
}

footer .container,
footer .article-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    display: inline;
}

.legal-links {
    display: flex;
    gap: 10px;
}

.legal-links a,
.legal-links span {
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    color: #717171;
}

.reserved {
    font-size: 16px;
    padding-left: 4px;
    margin-bottom: 0;
    font-weight: 400;
}

@media (max-width: 1312px) {

    .container h1.intro-width,
    .container p.intro-width {
        text-align: center;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 877px) {

    footer .container,
    footer .article-container {
        flex-direction: column;
        gap: 20px;
    }

    .page-description {
        margin-bottom: 130px;
    }

    h2 {
        font-size: 30px;
    }
}