* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Quicksand, sans-serif;
    background-color: #323232;
    color: white;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin-top: 10px;
    margin-left: 10px;
}

.sticky {
    z-index: 100;
    position: sticky;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

nav ul {
    list-style: none;
    display: flex;
    margin-right: 20px;
}

nav ul li {
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 500;
    text-align: center;
}

nav ul li a:hover {
    color: #ecce47;
}

/* ----------------------- Title container --------------------- */

.titleContainer {
    background-image: url(/img/city.jpg);
    margin-top: -65px;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, .8);
    background-size: cover;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.titleBox {
    padding: 20px;
}

.titleBox h1 {
    font-size: 64px;
    font-weight: 600;
}

/* ----------------------- Services --------------------- */

.services {
    width: 100vw;
    top: 450px;
}

.services_container {
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    flex-wrap: wrap;
}

.serviceBox {
    position: relative;
    width: 280px;
    margin-top: -100px;
    padding: 20px;
    border-radius: 20px;
    background-color: #111;
}

.serviceBox::after,
.serviceBox::before {
    content: '';
    border-radius: 20px;
    padding: 5px;
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: conic-gradient(#f5e499, #9d7541, #f5e499);
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    z-index: -10;
}

.serviceBox::before {
    filter: blur(1.5rem);
    opacity: .8;
}

.serviceBox hr {
    border: none;
    height: 4px;
    background-color: #9d8841;
    border-radius: 25px;
    width: 100%;
    margin-bottom: 30px;
}

.serviceDescription {
    font-weight: 400;
}

/* ----------------------- Benefits --------------------- */

.benefits {
    margin-top: 80px;
    align-self: stretch;
    display: flex;
    justify-content: center;
}

.benefitsContainer {
    display: flex;
    padding: 80px;
    border-radius: 25px;
    justify-content: center;
    max-width: 860px;
    align-items: center;
    flex-direction: column;
    background-color: #111;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.6), 0 12px 40px 0 rgba(0, 0, 0, 0.6);
}

.benefits .title h1 {
    font-weight: 600px;
    margin-bottom: 50px;
}

.benefitsBoxLeft {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    max-width: 800px;
}

.benefits .textBox {
    align-self: stretch;
}

.benefits .textBox h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.benefits .textBox p {
    max-width: 300px;
}

.benefitsBoxRight {
    margin-top: 10px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    max-width: 800px;
}

.benefits .icon {
    scale: .6;
    fill: #9d8841;
}

.benefits hr {
    height: 6px;
    background-color: #9d8841;
    border-radius: 25px;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
    border: none;
}


/* ----------------------- Footer --------------------- */


footer {
    background-color: black;
    color: darkgrey;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

@media (max-width:1150px) {
    .serviceBox {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media (max-width:650px) {
    .benefitsContainer {
        width: 400px;
    }

    .benefits .icon {
        display: none;
    }
}

@media (max-width:460px) {
    .logo {
        display: none;
    }

    .sticky ul li a {
        font-size: 20px;
    }
}

@media (max-width:370px) {
    .sticky ul li a {
        font-size: 18px;
    }
}

@media (max-width:330px) {
    .sticky ul li a {
        font-size: 16px;
    }
}