*, *::before, *::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    font-size: 1.3rem;
    line-height: 1.3;
}

img {
    margin: 60px 0px 0px;
    max-width:  100%;
    height: auto;
    object-fit: cover;
    object-position: bottom;
}

h3 {
    letter-spacing: 1px;
    text-transform: uppercase;
}

.container {
    width: 80%;
    max-width: 1200px;
    margin: auto;
}

.row {
    display: flex;
    justify-content: space-between;
}

.col {
    margin: auto;
}

.hero {
    background-color: #f1c9dc;
    padding: .01em 0;
    color: #222c2a;
}

header {
    background: #222c2a;
}

.nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 1em;
}

.nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
}

.nav_primary{
    font-size: 2rem;
    letter-spacing: 2px;
}

.nav_secondary{
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav_item + .nav_item {
    margin-left: 1em;
}

.nav_link {
    color: #fff;
    text-decoration: none;
}

.nav_link--button {
    background: #fff;
    color: #136c72;
    padding: .25em 1em;
    border-radius: 10em;
}

.nav_link:hover {
    opacity: .75;
}

.text {
    width: 80%;
}

.button {
    display: inline-block;
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    font-weight: 900;
    background-color: #6fcbd4;
    padding: .75em 2rem;
    border-radius: 100px;
}

.button:hover,
.button:focus {
    opacity: .5;
}

@media (max-width: 600px) {
    .row {
        display: block;
    }
}