html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.imp {
    display: flex;
}

.logoLink {
    text-decoration: none;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: .4em;
    padding-left: .4em;
    padding-right: .4em;
    font-size: 3vh;
}

.logoLink:hover {
    text-decoration: underline;
}

.logo > a {
    margin-right: 5em;
    font-size: 1.7vw;
}

nav {
    margin-top: 0;
    padding: 1.3rem 0rem;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    background-color: black;
}

.w16 {
    display: flex;
    justify-content: space-between;
}

.w12 {
    padding: 1rem 2rem;
    text-decoration: none;
    color: white;
    font-size: 2.3vw;
}

ul {
    display: flex;
    justify-content: space-around;

}

li {
    list-style-type: none;
    color: white;
    margin: 10px;
} 

.hLinks {
    padding: 1rem 2rem;
    text-decoration: none;
    color: white;
    font-size: 1.3vw;
    
}

.hLinks:hover {
    background-color: #ffffff;
    border: .1px solid #ffffff;
    color: black;
    border-radius: 10px;
    
}

.hlinks:active {
    background-color: #ffffff;
    border: .1px solid #ffffff;
    color: red;
    border-radius: 10px;
}

.display {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    align-items: center;
    
}

.parent {
    /* border: 1px solid red; */
    width: 80%;
    height: 33%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.displaytxt {
    
    padding: 0px 25px;
    background-color: rgba(0, 0, 0, 0.83);
    margin-bottom: 33px;
    color: whitesmoke;
    font-size: 5vw;
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    
}

.subtitle {
    display: flex;
    justify-content: center;
    color: white;
    width: 70%;
    font-size: 2.3vw; /* Adjust the font size as needed */
    margin-top: 3px;
    background-color: rgba(0, 0, 0, 0.74); /* Add a semi-transparent background */
    padding: 0 25px; /* Add padding for better visibility */
    background-size: cover;
    background-clip: text;
    -webkit-background-clip: text;
    
}

.footer {
    background-color: black;
    border-top: 1px solid gray;
}

.socials {
    display: flex;
    justify-content: flex-end;
    margin: 1% 3%;
}

.socials > li {
    padding: 0px 1.2%;
}

.socialLinks {
    text-decoration: none;
    color: #ffffff;
}

.socialLinks > svg:hover {
    color: #43b6cd;
}

.formButton {
    border: 1px solid white;
    background-color: white;
    border-radius: 8px;
    color: black;
    margin: 4% 30%;
    padding: 1% 0%;
}

.formButton:hover {
    border: 1px solid #4cc8c8;
    background-color: #4cc8c8;
    color: white;
}

.menu {
    display: none;
}

.info{
    width: 100%;
    padding-bottom: 10%;
    background-color: black;
}

.about img{
    height: auto;
    width: 500px;
}

.about-text{
    width: 550px;
}

.main{
    width: 1130px;
    max-width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.about-text h1{
    color: white;
    font-size: 80px;
    text-transform: capitalize;
    margin-bottom: 20px;         
}

.about-text h5{
    color: white;
    font-size: 25px;
    text-transform: capitalize;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

span{
    color: #f9004d;
}

.about-text p{
    color: #fcfcfc;
    letter-spacing: 1px;
    line-height: 20px;
    font-size: 17px;
    margin: 45px;

}

button{
    background: #f9004d;
    color: white;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 20px;
    transition: .4s;
}

button:hover{
    background: transparent;
    border: 2px solid #f9004d;
    cursor: pointer;
}

.contact-container{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-family: 'Outfit';
    background-color: black;
}

.contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}

.contact-left-title h2{
    font-weight: 600;
    color: white;
    font-size: 40px;
    margin-bottom: 5px;
}

.contact-left-title hr{
    border: none;
    width: 200px;
    height: 5px;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-inputs{
    width: 350px;
    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:hover{
     border: 2px solid red;
}

.contact-inputs::placeholder{
    color: #a9a9a9;
}

.contact-left button{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    gap: 10px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

.contact-left button:hover{
    background: transparent;
    border: 2px solid #f9004d;
}

.contact-left button img{
    height: 15px;
}

.contact-right img{
    width: 600px;
}


@media (max-width: 768px) {

    nav {
        margin: 0%;
        
    }

    .w16 {
        flex-direction: column;
        align-items: center;
    }

    .menu {
        padding: 25px;
        margin-left: 3px;
    }

    .w12 {
        display: flex;
        font-size: 40px;
        justify-content: space-between;
        width: 100%;
        margin: 0px;
        padding: 0px;
    }

    .v8 {
        display: inline;
        font-size: 20px;
    }
    
    div > ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 52px;
    }

    ul > li {
        margin: 19px;
    }

    .hLinks {
        font-size: 25px;
        display: block;
        width: 100%;
        text-align: left;
    }


    .parent {
        height: 20%;
    }

    .displaytxt {
        font-size: 33px;
        text-align: center;
        width: 100%;
    }

    .subtitle {
        font-size: 25px;
        text-align: left;
        width: 100%;
    }

    .logo > a{
        font-size: 33px;
        width: 100%;
        border: 1px solid black;
    }

    .site-logo {
        display: flex;
        font-size: 30px;
        text-align: center;
        align-self: center;
    }

    .imp {
        display: none;
        justify-content: center;
        align-items: cenet;
    }

    .contact-inputs{
        width: 65vw;
    }

    .contact-right{
        display: none;
    }

    .main {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .about img {
        width: 80%;
        max-width: 350px;
    }

    .about-text {
        width: 80%;
        max-width: 450px;
    }

    .about-text h1 {
        font-size: 50px;
    }

    .about-text h5 {
        font-size: 20px;
    }

    .about-text p {
        margin: 20px;
        font-size: 16px;
    }

    button {
        padding: 8px 16px;
    }
}

@media (min-width: 768px) {
    .imp {
        display: flex;
    }
}