* {
    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;
}

/* ------------------- Contact section ------------------ */

.contact_container {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.contact_left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact_left_title h2 {
    font-weight: 600;
    color: #ececec;
    font-size: 40px;
    margin-bottom: 5px;
}

.contact_left_title hr {
    border: none;
    width: 120px;
    height: 5px;
    background-color: #9d8841;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact_inputs {
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;
}

.contact_left textarea {
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact_inputs:focus {
    border: 2px solid #ecce47;
}

.contact_inputs::placeholder {
    color: #a9a9a9;
}

.contact_left button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg, #f5e499, #9d7541);
    cursor: pointer;
}

.contact_left button img {
    height: 15px;
}

.contact_right img {
    margin-top: 60px;
    width: 600px;
}

footer {
    background-color: black;
    color: darkgrey;
    padding: 20px;
    text-align: center;
    margin-top: 40px;
}

@media (max-width:900px) {
    .contact_inputs {
        width: 80vw;
    }

    .contact_right {
        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: 16px;
    }
}

@media (max-width:330px) {
    .sticky ul li a {
        font-size: 12px;
    }
}