
*{

    margin: 0;
    padding: 0;
}

html{
    scroll-behavior: smooth;
}

.logo{
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;

}
.logo img{
    width: 35%;
    border: 3px solid rgb(0, 0, 0);
    border-radius: 80px;
}
.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;
    color: aliceblue;



}

.nav-list li a{
text-decoration: none;
color: azure;
font-size: 20px;
font-family: 'Ubuntu', sans-serif;

}

.nav-list li a:hover{
    color:antiquewhite;
}

.rightNav{
    
    width: 30%;
    text-align: right;
}

#search{
    padding: 5px;
    font-size: 17px ;
    border: 2px solid gray;
    border-radius: 9px;
}

.background{
    background: url('../bg1.jpg') ;
    background-size: cover;
    background-blend-mode: darken ;
}

.firstSection{
    height: 100vh;
    
}
.box-main{
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: 'Segoe UI', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 50%;
    margin: auto;
    height: 80%;


}

.firstHalf{
    width:85%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.secondHalf{
    width: 50%;
}

.secondHalf img{
    width:70%;
    border: 4px solid rgb(79, 79, 79);
    border-radius: 12px;
    display: block;
    margin: auto;


}

.text-big{
    font-size: 41px;
}

.text-small{
    font-size: 20px;
}

.text-medium
{
    font-size: 20px;
}

.btn{
    padding: 8px 20px;
    margin: 7px 3px;
    border: 2px solid white;
    border-radius: 8px;
    background: none;
    color: #000000;
    cursor: pointer;
    background-image: linear-gradient(to right, rgb(173, 129, 129) , rgb(87, 197, 114))
}

.btn-sn{
    padding: 6px 10px;
    vertical-align: middle;
}
.btn-dark{
    color: black;
    border: 2px solid black;
    font-size: large;
    margin: auto;

    padding: 12px;
}
.section{
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 80%;
    margin: auto;
    padding-top: 20px;
    background-image: linear-gradient(to right, rgb(240, 234, 234) , rgb(238, 238, 211))
}

.sectionleft{
    flex-direction: row-reverse;
}

.paras{
    padding: 0px 65px;

}

.sectionTag{
    padding: 16px 0;
}
.sectionsubTag{
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.thumbnail img{
width: 235px;
border-radius: 15px 50px 30px;
margin-top: 19px;

}

.thumbnail_1 img
{
    width: 350px;
    border-radius: 15px;
    margin-top: 15px;
    margin-bottom: 15px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.contain{
    background-color: darkgray;
    height:533px;
}

.text-center{
    text-align: center;
    padding: 30px;
    font-family: 'Ubuntu';
}
.form{
    max-width: 30%;
    margin: auto;
}

.form-input{
    margin: 5px 0;
    padding: 4px 10px;
    width: 100%;
    font-size: 19px;
    border: 2px solid grey;
    border-radius: 6px;
    font-family: sans-serif;
}

.text-footer{
    text-align: center;
    font-family: 'Ubuntu', sans-serif;
    padding: 10px;
    display: flex;
    
    justify-content: center;
    color: black;
}
.burger{
    display: none;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 15px;

}
.line{
    width: 33px;
    background-color: aliceblue;
    height: 4px;
    margin: 3px 3px;
}
@media only screen and (max-width: 1140px){
    .nav-list{
        flex-direction: column;
    }
    .navbar{
        height: 478px;
        flex-direction: column;
        transition: all 0.7s ease-out;
    }
    .rightNav{
        text-align: center;
    }
    #search{
        width: 100%;
    }
    .burger{
        display: block;
    }
    .h-nav-resp{
        height: 72px;
    }
    .v-class-resp{
        opacity: 0;
    }
}
