*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: "Nexa", sans-serif;
    /*background-color: #FFF ;*/
    background-image: url("/assets/bg.jpg");
    background-repeat: no-repeat;
}
.contact-container{
    height: 100vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.contact-container-left{
    display: flex;
    flex-direction: column;
    align-items:start;
    gap: 20px;
}
h2{
    font-weight: 600;
    color: black;
    font-size: 40px;
    margin-bottom: 5px;
}
.contact-left-title hr{
    border: none;
    width: 120px;
    height: 5px;
    background-color: black;
    border-radius: 10px;
    margin-bottom: 20px;
}
.contact-inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 20px;
    font-weight: 500;
    color: #666;
    border-radius: 20px;
}
.contact-container-left textarea{
    height: 140px;
    padding-top: 20px;
    border-radius: 10px;
}
.contact-inputs{
    border: 2px solid black;
}
.contact-inputs:focus{
    border: 2px solid orange;
}
.contact-inputs::placeholder{
    font-weight: 500;
    color: #a9a9a9;
}
.contact-container-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: black;
    gap: 10px;
    border: none;
    border-radius: 20px;
    background-color: orange;
    cursor: pointer;
}
.contact-container-right img{
    height: 500px;
    padding-top: 15px;
    border-radius: 20px;
}
@media screen and (max-width: 800px){
    .contact-inputs{
        width: 80vw;
    }
    .contact-container-right{
        display: none;
    }
}

/* NAV BAR */

li{
    list-style: none;
}

a {
    text-decoration: none;
    color: #fff;
    font-size: 1rem;
}

a:hover{
    color: orange;
}

header {
    position: relative;
    z-index: 9999;
}

.navbar {
    width: 100%;
    color: #fff;
    background: #000;
    /* gap: 2rem; */
    height: 95px;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
}

.navbar .text_logo img {
    width: 80px;
}

.navbar .text_logo a {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar .links {
    display: flex;
    gap: 2rem;
    cursor: pointer;
}

.navbar > .toggle_btn {
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
    position: absolute;
    right: 1rem;
}

.dropdown_menu {
    display: none;
    position: absolute;
    right: 1rem;
    top: 1rem;
    height: 0;
    width: 300px;
    background: rgb(255,255,255,0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
    overflow: hidden;
    transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open {
    height: 115px;
}

.dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #fff;
}

@media (max-width: 992px) {
    .navbar .links{
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
    }

    .dropdown_menu {
        display: block;
    }
}

@media (max-width: 576px) {
    .dropdown_menu {
        left: 2rem;
        width: unset;
    }
}


