* {
    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 {
    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;
}

main {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about_container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 60%;
    background-color: #ececec;
    padding: 40px;
    border-radius: 25px;
    color: #202020;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.6), 0 12px 40px 0 rgba(0, 0, 0, 0.6);
}

.about_container .textBox hr {
    border: none;
    font-weight: 600;
    height: 6px;
    max-width: 50%;
    background-color: #9d8841;
    border-radius: 25px;
    margin-bottom: 30px;
}

.about_container .textBox .title {
    font-weight: 500;
}

.about_container .textBox .text {
    max-width: 300px;
    font-weight: 600;
    margin-bottom: 30px;
}

.about_container .image .imageBox {
    width: 300px;
    height: 300px;
    background-image: url(/img/Office_small.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 50%;
}

footer {
    background-color: black;
    color: darkgrey;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

@media (max-width:1300px) {
    .about_container {
        flex-direction: column;
    }

    .about_container .textBox hr {
        max-width: 100%;
    }
}

@media (max-width:640px) {

    main {
        margin-top: 80px;
    }

    .about_container {
        width: 80%;
    }

    .about_container .image .imageBox {
        width: 150px;
        height: 150px;
    }
}

@media (max-width:460px) {
    .logo {
        display: none;
    }

    .sticky ul li a {
        font-size: 20px;
    }
}

@media (max-width:370px) {
    .sticky ul li a {
        font-size: 16px;
    }
}

@media (max-width:330px) {
    .sticky ul li a {
        font-size: 12px;
    }
}