@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;500&display=swap');
*{
    margin: 0;
    padding: 0;
}
html{
    scroll-behavior: smooth;
}

.navbar{
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    cursor: pointer;
}
.navbar ul{
    width: 70%;
    display: flex;
    align-items: center;
}
.navbar ul div img{
    margin: 10px;


}
.navbar li{
    list-style: none;
   padding: 26px 40px;
}
.navbar li a{
    text-decoration: none;
    color: white;
    font-size: 18px;
    font-family: "Ubuntu", sans-serif;


}
.right-nav{
    width: 30%;
    text-align: right;
    padding: 0 23px;
}
.navbar li a:hover{
    color: lightcoral;
}
.right-nav input {
    font-size: 17px;
    border: 2px solid grey;
    border-radius: 9px;
    width: 213px;
    height: 30px;
    margin-bottom: 20px;


}
.background{
    background: rgba(0, 0, 0, 0.7) url(../img/burgershopbg.jpg.png);
    background-size:cover ;
    background-blend-mode: darken;
}
.firstSection{
    height: 100vh;
}
.box-main{
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 50%;
    margin: auto;
    height: 75%;
}
.firstHalf{
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.secondHalf{
    width: 30%;
}

.secondHalf img{
    display: block;
    margin: auto;
}
.text-big{
    font-size: 35px;
}
.text-small{
    font-size: 18px;
}
.btn{
    background: none;
    color: white;
    border: 2px solid white;
    border-radius:8px ;
    padding: 8px 20px;
    margin: 7px 3px;
    cursor: pointer;
    font-family: "Ubuntu", sans-serif;;
}
.btn:hover{
    color: lightcoral;
}
.btn:active{
    border: 2px solid black;
}
.btn-sm{
    padding: 6px 10px;
    margin-bottom: 27.5px;
}
.section{
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 80%;
    margin: auto;   
    font-family: "Ubuntu", sans-serif;
}
.section-left{
    flex-direction: row-reverse;
}
.paras-justify{
    text-align: justify;
}
.text-big{
    text-align: center;
}
.sectionTag{
    padding: 17px 0;
}
.sectionSubTag{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.thumbnail img{
    margin: 10px;
    margin-top: 60px;
}
.contact{
    background-color: rgb(233, 233, 233);
    height: 90vh;
    margin-top: 3px;
}
.text-center{
    text-align: center;
    padding-top: 20px;
    font-family: "Ubuntu", sans-serif;
    font-size: 35px;
}
.form{
    max-width: 62%;
    margin: 25px auto;
}
.form-input{
    width: 100%;
    font-size: 18px;
    border: 3px solid grey;
    border-radius: 6px;
    margin: 7px 0;
    padding: 5px 3px;
}
.submit-btn{
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-dark{
    color: black;
    border: 2px solid black;
}
.btn-dark:hover{
    color: lightcoral ;
 
}
.btn-dark:active{
    border: 2px solid lightcyan ;
}

.text-footer{

    text-align: center;
    padding: 20px 0;
    font-family: "Ubuntu", sans-serif;
    color: white;


}
.burger{
    position: absolute;
    top: 15px;
    right: 4%;
    display: none;
    cursor: pointer;

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