*{
    padding: 0;
    margin: 0;
}
body{
    background-image: url(images/logo.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 600px;
    font-family: 'Goldman', cursive;
}
.logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
}
.logo img{
    width: 70%;
    border: solid white 3px;
    border-radius: 50px;
    
}
.navbar{
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;

}

.nav-list{
    width: 55%;
    display: flex;
    align-items: center;
    padding: 10px;
    
}
.nav-list li{
    list-style: none;
    
}
.nav-list li a{
    text-decoration: none;
    color: white;
    padding: 15px;

}
.nav-list li a:hover{
    text-decoration: underline;
    color: gray;
    
}  
.rightnav{
    width: 48%;
    text-align: right;
}
#search{
    border-radius: 10px;
    padding: 8px;

    text-align: center;
    font-size: 17px;
    border: 2px solid white;
    background: white;
    
}
#search ::placeholder{
    color: black;
}
.rightnav .btn-sm{
    margin-right: 15px;
    border-radius: 10px;
    padding: 10px;
    background-color: transparent;
    color: white;
    cursor: pointer;
}
.rightnav .btn-sm:hover{
    background-color: white;
    color: black;
}
.background{
    background-color: rgba(0, 0, 0, 0.7); 
    background-image: url(images/background.jpg);
    background-size: cover;
    background-blend-mode: darken;
}
.firstSection{
    height: 100vh;
}
.box-main{
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    max-width: 70%;
    margin: auto;
    height: 120%;
}
.fhalf{
    width: 100%;
    display: flex;
    flex-direction: column;
    
}
.shalf{
    width: 50%;

}
.shalf img{
    width: 150%;
    border: solid white 2px;
    border-radius: 100px;
    padding: 5px;
    margin: auto;
}
.bigtext{
    font-size: 30px;
    text-align: center;
}
.smalltext{
    font-size: 18px;

}
.buttons .btn{
padding: 8px;
border: solid white 2px;
border-radius:10px;
cursor: pointer;
color: white;
background-color: transparent;

}
.buttons .btn:hover{
    background-color: white;
    color: black;
}
.secright{
    display: flex;
align-items: center;
justify-content: center;  
max-width: 80%;
margin:auto  
}
.imagefluid{
    width: 400px;
    padding: 10px;
    border: 2px solid gray;
    border-radius: 20px;
    margin: 20px;
}
.description{
    padding: 50px 65px;
}
.secleft{
    flex-direction: row-reverse;
    display: flex;
align-items: center;
justify-content: center;  
max-width: 80%;
margin:auto  
}
.thumbnail img{
    width: 300px;

}
.contact{
    background-color: rgb(229, 226, 226);
    height: 100vh;
}
.form{
    max-width: 50%;
    margin: auto;
    padding: 30px;
}
.form input{
    width: 80%;
    margin-left: 10%;
    border-radius: 20px;
    padding: 8px;
}
.form textarea{
    border-radius: 50px;
    padding: 10px;
    margin-left: 50px;
}
.form input ::placeholder{
    font-family: 'Goldman', cursive;

}
.contact h2{
text-align: center;
padding-top: 20px;
}
.contact button{
    width: 10%;
        margin-left: 45%;
    border-radius: 20px;
    padding: 8px;
}
.contact button:hover{
    background-color: black;
    color: white;
    cursor: pointer;
}
footer{
    background-color: black;
    color: white;
    padding: 20px;
    text-align: center;
}
    .burger{
        display: none;
        position: absolute;
        right: 10%;
        top: 15px
}
   .line{
       width: 421%;
       background-color: white;
       height: 4px;
       margin: 3px 3px;
   }

    /* Media query */

@media only screen and (max-width: 990px){
    .nav-list{
        flex-direction: column;
        
    }
    .navbar{
        flex-direction: column;
        padding: 10px;
        height: 378px;
        transition: 1s;
    }
        .nav-list li {
            padding: 10px;
    }
    .rightnav {
        width: 37%;
    }
    .rightnav .btn-sm {
       max-width: 58%;
       margin-top: 8px;
    }
    #search{
        width: 100%;
    }
    #search::placeholder{
        font-size: small;
    }
    
    .box-main {
        height: 93%;
    flex-direction: column-reverse;
}
    .shalf img {
        max-width: 100%;        
        margin-top: 50px;
        margin-bottom: 20px;
    }
    .description{
        margin-top: -59px;
    }
    .description .bigtext{
        font-size: 20px;
    }
    .description .smalltext{
        font-size: 10px;
    }
    .secright, .secleft{
        max-width: 100%;
        flex-direction: column-reverse;
    
        
    }
    
    .thumbnail img {
        width: 200px;
    } 
        .form textarea {
                max-width: 100%  ;
                margin-left: 0;

}
                .contact button {
                    width: 24%;
                    margin-left: 38%;  
}
    
/* Hamburger for navigation */
.burger{
    display: block;
}
.h-nav-resp{
    height: 0px;
}
.v-class-resp{
    opacity: 0;
}
}
@media only screen and (max-width: 1024px){

.form textarea {
    max-width: 100%  ;
    margin-left: 0;

}
}

