*, *::before, *::after { box-sizing: border-box; }

body {
    margin: 0;
    padding: 0;
    background: #fff;
    color: #202026;
    font: 18px "Raleway", sans-serif;
}

h1, h2, h3 {
    color: #312D5E;
}

h1 {
    position: relative;
    z-index: 2;
    margin: 80px 0;
    text-align: center;
    font-size: 50px;
}

.button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 1rem;
    background: #fff;
    border: 1px solid #EC6408;
    border-radius: 5px;
    color: #312D5E;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.button span {
    color: #EC6408;
    font-family: monospace;
}

#container {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 80px 0;
}

#site-name img {
    display: block;
}

#nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 16px;
    font-weight: 400;
}

#nav li {
    display: flex;
    align-items: center;
}

#nav li:not(:last-child)::after {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    margin-left: 20px;
    background: #EC6408;
    border-radius: 100%;
}

#nav ul a {
    display: block;
    color: #000;
    text-decoration: none;
}

section {
    margin: 0 0 80px;
    padding:0 80px;
}

.section-text-img {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 80px;
    justify-content: space-between;
}

.section-text-img .text {
    flex: 1;
}

#footer ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#footer a {
    color: #202026;
    text-decoration: none;
    font-size: 14px;
}

/** footer-engagements **/

#footer-engagements {
    margin: 0;
    padding-bottom: 40px;
    border-bottom: 1px solid #D5C3B8;
}

#footer-engagements h2 {
    margin: 0 0 60px;
    text-align: center;
    font-size: 40px;
    font-weight: 400;
}

#footer-engagements ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

#footer-engagements + ul {
    margin: 30px 0;
}
