*{
    padding: 0;
    margin: 0;
}
.logo{
    width: 20%;
    justify-content:center;
    align-items:center;
    text-align: center;
}
.logo img{
    width:30%;
    border: 2px solid white;
  
}
.navbar{
    display: flex;
    align-items: center;
    justify-content:center;
    position:sticky;
    top:0;
    cursor:pointer;
}
.nav-list{
    width: 70%;
    /*background-color:black;*/
    display: flex;
    align-items: center;
}
.nav-list li{
    list-style:none;
    padding: 20px 15px;
}
.nav-list li a{
    text-decoration:none;
    color: whitesmoke;
    font-size: 16px;
}
.nav-list li a:hover{
    text-decoration:none;
    color:grey;
    font-size: 16px;
}
.rightNav{
    /*background-color: black;*/
    width:30%;
    text-align: right;
    padding: 0 10px;
}
#search{
    padding:5px;
    font-size:17px;
    border: 2px solid grey;
    border-radius:10px;
}
.background{
    background: rgba(0,0,0,0.7) url('../img/bg.jpg');
    background-size: cover;
    background-blend-mode: darken ;
}
.firstsection{
    height:80vh;
}
.box-main{
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Courier New', Courier, monospace;
    max-width: 50%;
    margin: auto;
    height:80%;
}
.firsthalf{
    width:80%;
    display:flex;
    flex-direction:column;
    justify-content:center;

}
.secondhalf{
    width:30%;
}
.secondhalf img{
    width: 70%;
    border: 2px solid white;
    border-radius: 150%;
    display: block;
    margin: auto;
    padding: 4px;
}
.text-big{
    font-size: 30px;
}
.text-small{
    font-size:16px;
    text-align: justify;
}
.btn{
    padding: 6px 16px;
    margin: 2px 0;
    border: 2px solid white;
    border-radius: 8px;
    cursor: pointer;
    background:none;
    color: white;
    font-size: 18px;
}
.btn-sm{
    padding: 6px 16px;
    vertical-align: middle;
    font-size: 14px;
}
.section{
    /*height: 300px;*/
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    text-align: justify;
    max-width: 80%;
    margin: auto;
}
.left{
    flex-direction: row-reverse;
}
.paras{
    padding: 0px 60px;
}
.sectionTag{
    padding:8px 0px;}
.sectionSubTag{
    font-family: Verdana, Geneva, Tahoma, sans-serif ;
}
.thumbnail-1 img{
    width: 800px;
    border: 3px solid rgb(238, 231, 231);
    border-radius: 23px;
}
.contact{
    background-color:#f9f7f6;
    height:500px;

}
.text-center{
    text-align: center;
    padding-top: 25px;
    font-family: cursive;
    font-size: xx-large;
}
.form{
    max-width: 90%;
    margin: 30px auto;
}
.form-input{
    width: 100%;
    border: 1px solid black;
    font-size: 16px;
    border-radius: 5px;
    margin: 10px 0px;
    padding: 5px 6px;
}
.btn-blk{
    color: grey;
    border: 1px solid grey;
}
.text-footer{
    text-align: center;
    padding: 15px 0px;
    font-family: cursive;
    font-size: small;
    display: flex;
    justify-content:center;
    align-items:center;
    color: white;
}

.burger{
    position:absolute;
    top: 15px;
    right:18px;
    display: none;

}
.line{
    width: 33px;
    height:3px;
    background-color:white;
    margin: 4px 0px;
    border-radius: 5px;
}

@media only screen and (max-width:1120px){
   .navbar{
       flex-direction: column;
       transition: all 0.9s ease-out;
       height:auto;
   }
   .nav-list{
        flex-direction: column;
   }
   .rightNav{
       text-align: center;
   }
   .burger{
    display: block;
   }
   .h-nav{
       height:55px;
   }
   .v-class{
       opacity: 0;
   }
   #search{
       width:100%;
   }
   .box-main{
        flex-direction: column-reverse;
        max-width: 100%;
   }
   .section{
    flex-direction: column-reverse;
   }
   .section img{
       width:100%;
       height:auto;
       margin-top: 5px;
   }
   .text-small{
       text-align: center;
       text-align: justify;
   }
   .text-big{
    text-align: center;
    }
    .buttons{
        text-align: center;
    }
    .paras {
        padding: 0px;
    }
}
