@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Varela+Round&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

/* body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
    background: #000;
} */


.main-container {
    background: black;
    min-height: 100vh;
    position: relative;
}

.container {
    width: 85%;
    min-height: 10vh;
    margin: auto;
   
    
}

.logo {
    color:#f2bf31;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.navbar {
    height: 14vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

li {
    list-style: none;
 
}

a {
    text-decoration: none;
   
    
}

.navlinks {
    display: flex;
    gap: 2rem;
    color:#ececec;
    position: relative;
    font-size: 0.9rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
}

.navlinks:hover {
    color:#f2bf31;
}

.navlist {
    display: flex;
    gap: 2rem;
    align-items: center;
   
}

.navlists {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.navlinks::before {
    content:'';
    position: absolute;
    background:#f2bf31;
    width: 0%;
    height: 0.1rem;
    bottom: -10px;
    left: 0;
    transition: width 0.3s ease;
}

.navlinks:hover::before {
    width: 100%;
}

.humburger {
    display: none;
    z-index: 4;
}

.fa-bars {
    font-size: 1.7rem;
    color: white;
}

.overlay {
    position: absolute;
    inset: 0;
    background-color: black;
    z-index: 3;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

.contact-bg {
    height: 40vh;
    background-color: #000;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color:#f2bf31;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 1rem;
}

.contact-bg h3 {
    margin-top: 6rem;
    font-size: 1.2rem;
    font-weight: 400;
    color:#f2bf31;
}

.contact-bg h2 {
    font-size: 2rem;
    text-transform: uppercase;
    padding: 0.4rem 0;
    color:#f2bf31;
    letter-spacing: 2px;
}

.line div {
    margin: 0 0.2rem;
}

.line div:nth-child(1),
.line div:nth-child(3) {
    height: 3px;
    width: 50px;
    background: #f7327a;
    border-radius: 5px;
}

.line {
    display: flex;
    align-items: center;
}

.line div:nth-child(2) {
    width: 8px;
    height: 8px;
    background: #f7327a;
    border-radius: 50%;
}

.text {
    font-weight: 300;
    opacity: 0.9;
    color: white;
}

.contact-bg .text {
    margin: 1rem 0;
    font-size: 0.9rem;
}

.contact-body {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 1rem;
}

.contact-info {
    margin: 1rem 0;
    text-align: center;
    padding: 1rem 0;
}

.contact-info span {
    display: block;
}

.contact-info div {
    margin: 0.5rem 0;
    padding: 0.5rem;
}

.contact-info span .fas {
    font-size: 1.5rem;
    padding-bottom: 0.5rem;
    color: #f7327a;
}

.contact-info div span:nth-child(2) {
    font-weight: 500;
    font-size: 1rem;
}

.contact-info .text {
    padding-top: 0.2rem;
}

.contact-form {
    padding: 1rem 0;
    border-top: 1px solid #c7c7c7;
}

.contact-form form {
    padding-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    border: 1.5px solid #c7c7c7;
    border-radius: 5px;
    padding: 0.5rem;
    margin: 0.4rem 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    outline: 0;
}

.form-control:focus {
    box-shadow: 0 0 6px -3px rgba(48, 48, 48, 1);
}

.contact-form form div {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.6rem;
}

.send-btn {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: black;
    background:#f2bf31;
    border: none;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.4s ease;
}

.send-btn:hover {
    opacity: 0.8;
}

.contact-form > div img {
    width: 100%;
}

.contact-form > div {
    margin: 0 auto;
    text-align: center;
}

.contact-footer {
    padding: 1rem 0;
    background: #000;
}

.contact-footer h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
    text-align: center;
}

.social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.social-links a {
    text-decoration: none;
    width: 35px;
    height: 35px;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0.3rem;
    transition: all 0.4s ease;
}

.social-links a:hover {
    color:#f2bf31;
    border-color:#f2bf31;
}

@media screen and (max-width: 483px) {
    .contact-bg h2 {
        font-size: 1.5rem;
    }

    .contact-bg .text {
        width: 80%;
    }

    .contact-info {
        grid-template-columns: repeat(1, 1fr);
    }

    .contact-form form div {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (min-width: 992px) {
    .contact-bg .text {
        width: 50%;
    }

    .contact-form {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        align-items: center;
    }
}

@media screen and (min-width: 1200px) {
    .contact-info {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media screen and (max-width: 680px) {
    .navlists {
        justify-content: center;
        flex-direction: column;
        background-color: #f2bf31;
        position: absolute;
        top: 7%;
        left: -100%;
        transform: translateX(-50%);
        z-index: 4;
        width: 12rem;
        gap: 1.2rem;
        padding-block: 2rem;
        transition: 0.4s ease-in-out;
    }

    .navlist-active {
        left: 50%;
    }

    .navlinks {
        color:white;
    }

    .navlinks:hover {
        color: black;
    }

    .navlinks::before {
        background-color: black;
    }

    .humburger {
        display: block;
    }

    .fa-bars {
        font-size: 1.7rem;
        color: white;
    }

    .hero-section {
        flex-direction: column;
        margin-top: 2rem;
        gap: 3rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .image-container {
        width: 12rem;
    }

    .image-container::before {
        width: 12rem;
    }

    .overlay-active {
        opacity: 0.8;
        visibility: visible;
        transition: 0.5s ease-in-out;
    }
}