@import url('https://fonts.googleapis.com/css2?family=Ubuntu&display=swap');
*{
    margin:0;
    padding:0;
}

html{
    scroll-behavior: smooth;
}

.logo{
    width:20%;
    display:flex;
    justify-content: center;
    align-items: center ;
    border:3px white;
    border-radius: 50px;
}
.logo img{
    width: 38%;
    border: 2px solid white;
    border-radius: 53%;
    margin: 3px;
}

    .navbar{
    display:flex;
    align-items:center;
    justify-content: center;
    position:sticky;
    top:0;
    cursor: pointer;
    
}
.nav-list{
width:70%;
display:flex;
align-items:center;
}

.nav-list li{
list-style: none;
 padding:26px 30px;
 font: 'ubuntu',sans-serif;
 font-size: 20px;
}

.nav-list li a{
text-decoration: none;
color:white;
}

.nav-list li a:hover{
text-decoration:none;
color: white;
}

.rightNav{
    width:30%;
    text-align:right;
    padding:0 23px;
}

#Search{
    padding:5px;
    font-size: 17px;
    border:2px solid grey;
    border-radius:9px;
}
 
.background{
    background: rgba(0, 0, 0,0.7) url(bg.jpg);
    background-size:cover;
    background-blend-mode:darken;
}

.box-main{
    display:flex;
     justify-content:center ;
     align-items: center;
     color:white;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     max-width:50%;
     margin:auto;
     height:80%;
}

.firstSection{
    height: 100vh;
}

.firstHalf{
width:80%;
display:flex;
flex-direction:column;
justify-content:center;
}

.secondHalf{
    width:30%;

}

.secondHalf img{
    width:120%;
    padding:4px o;
    border:2px solid white;
    border-radius:100%;
    display:block;
    margin: auto;
}

.text-big{
font-size:41px;
}

.text-small{
font-size:18px;
}

.btn{
    padding: 6px 20px;
    margin: 7px 3px;
    border: 2px solid white;
    border-radius: 20px;
    font-size: 18px;
    background: none;
    color:white;
    cursor:pointer;
    font-size: 20px;
}

.btn-sm{
    padding: 6px 10px;
    vertical-align: middle;
    border: 2px solid white;
    border-radius: 15px;
    background: none;
    color: white;
    cursor: pointer;
    font: 'ubuntu',sans-serif;
    font-size: 16px;
}

.btn-dark{
    color:black;
    border: 2px solid grey;
}

.section{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 80%;
    margin: auto;
    font: 'ubuntu',sans-serif;
    cursor: pointer;
}

.section-left{
    
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 80%;
    margin: auto;
    flex-direction: row-reverse;
}

.paras{
    margin:auto;
    padding:20px 18px;
}

.sectionTag{
    padding:16px 0;
}
.sectionSubTag{
    font-family:serif;
}

.thumbnail img{
    width:250px;
    border:2px solid black;
    border-radius: 26px;
    margin-top: 19px;
}

.contact{
    background:rgba(250, 235, 215, 0.449);
    height:662px;
}

.text-center{
    text-align:center;
    font-size: 33px;
    font-family: 'ubuntu',sans-serif;
    padding-top: 30px;
}


.form{
    max-width:62%;
    margin:25px auto ;
}
.form-input{
    margin:14px 0;
    padding:5px 13px;
    width:100%;
    font-size: 19px;
    border:2px solid grey;
    border-radius:6px;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.text-footer{
    text-align:center;
    font-family: 'ubuntu',sans-serif;
    padding: 30px 0;
    display:flex;
    justify-content:center;
    color:white;
}

.burger{
     display:none;
     position: absolute;
     cursor: pointer;
     right:5%;
     top:15px;
}

.line{

     width:33px;
     background-color: white;
     height: 4px;
     margin: 5px 3px;
}

@media only screen and (max-width:1100px){
   
   .logo{
    width:53%;
   }
    .nav-list{
        flex-direction: column;
    }
    .navbar{
        flex-direction:column;
        transition: all 0.7s ease-out ;
        height:447px;
    }
    .rightNav{
        text-align: center;
    }

    .box-main{
        flex-direction: column-reverse;
        max-width: 100%;
    }
    #Search{
        width:100%;
    }
    .burger{
        display:block;
    }

    .h-nav-resp{
        height:72px;
    }
    
    .v-class-resp{
        opacity: 0;
    }

    .section{
        flex-direction:column-reverse ;
    }
    
    .section-left{
        flex-direction:column-reverse ;
    }

    .text-small{
        text-align: center;
    }

    .text-big{
        text-align: center;
        font-size: 28px;
        font-family: 'ubuntu',sans-serif;
    }
     
    .firstHalf{
        padding-top: 14px;
    }

        .btn {
            padding: 3px 4px;
            margin: 4px 4px;
            border: 1px solid white;
            border-radius: 7px;
            background: none;
            color: white;
            cursor: pointer;
            font-size: 14px;
        }
    
    .buttons{
        text-align: center;
    }

    .paras{
        padding: 0px;
    }
}