





img{
    width: 100%;
    height: auto;
}


.header-4 {

    

    width:  100%;
    height: 60px;
 
    display: flex;
    justify-content: center;
    background-color: rgba(80, 80, 80, 0.356);
    position: fixed;
    z-index: 1000;
    margin-top: -60px;
}





.header-4-nav {
    width: fit-content;
    height: 100%;
    padding-right: 30px;
    display: flex;
}
.header-4-nav ul {
list-style: none;

}
.header-4-nav ul li {
display: inline;
float: left;

    
}
.header-4-nav ul li a {
    padding: 0 10px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    line-height: 60px;
    margin-left: 30px;
    color: rgba(255,255,255,0.42);
    text-decoration: none;
    display: block;
    height: 100%;
    transition: 0.15s ease-in-out;
    
}



/* Hovering the whole header: all links white */
.header-4:hover .header-4-nav ul li a {
  color: rgba(255, 255, 255, 1);
}

/* Hovering a specific link: gold overrides everything else */
.header-4:hover .header-4-nav ul li a:hover {
  color: #EFBF04; /* gold */
}

 body {
    overflow: hidden;
}


*{
    margin: 0;
    padding: 0;
    font-family: 'poppins', 'sans-serif';
}

.hero4{
    width: 100%;
    height: 120vh;
    background-image: url(../img/pexels-birseydaha-11588655.jpg);
    background-position: center;
    background-size: cover;

    position: relative;
    top: -60px;
    
    display: flex;
    align-items: center;
    justify-content: center;}



form{

    width: 90%;
    max-width: 600px;
    margin-bottom: 100px;
    
    

}

.input-group{

    margin-bottom: 30px;
    position: relative

}

input, textarea{
    width: 100%;
    padding: 10px;
    outline: 0;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    font-size: 15px;

}


label{
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    color: #fff;
    cursor: text;
    transition: 0.2s;



}

button{
    padding: 10px 0;
    color: #fff;
    outline: none;
    background: transparent;
    border: 1px solid #fff;
    width: 100%;
    cursor: pointer;
}

input:focus~label,
input:valid~label,
textarea:focus~label,
textarea:valid~label {

    top: -28px;
    font-size: 14px;


}

.form-title{


text-align: center;
margin-bottom: 100px;



}

.form-title h1 {

    font-family: 'Times New Roman', Times, serif;
    font-weight: 400;
    font-size: 300%;


}