*{
    margin:0;
    padding: 0;
    font-family: sans-serif;
}
body {
    background: #707070;
}
.banner{
    width: 100%;
    height: 80vh;
    background-image: linear-gradient(rgb(0,0,0,0.28),rgb(0,0,0,0.68)) ,url("../Images/05.jpeg");
    background-size: cover;
    background-position: center;

}
.navbar{
    width: 100% ;
    margin: auto;
    padding: 35px 0;
    background-color: #707070;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    width: 120px;
    cursor: pointer;
    color: #000;
    text-decoration: blanchedalmond;
    text-transform: uppercase;
    font-size: 20px;
    position: absolute;
    right: 90%;
    top: 10px;
}
.h-logo {
    width: 120px;
    color: #000;
    text-decoration: blanchedalmond;
    text-transform: uppercase;
    font-family:serif, monospace;
    font-size: 20px;
}
.navbar ul {
    right: 60%;
    align-items: center;
    position: relative;
}
.navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 25px;
    position: relative;
}
.navbar ul li a {
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
}
.navbar ul .select::after {
    content: '';
    height: 3px;
    width: 0%;
    background: #3744ff;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 1.25s;

}
.navbar ul .selected::after {
    content: '';
    height: 3px;
    width: 100%;
    background: #3744ff;
    position: absolute;
    left: 0;
    bottom: -10px;

}
.navbar ul .select:hover::after {
    width: 100%;
}
.banner-half {
    background: transparent;
    color: #fff;
    left: 0%;
    height: 55vh;
    width: 100%;
    position: fixed;
}
.banner-half .contents {
    top: 10%;
    position: relative;
    align-items: center;
    text-align: center;
}
.main-heading {
    font-size: 100px;
    align-items: center;
}
.slogan {
    font-size: 50px;
    top: 50%;
    align-items: center;
    position: relative;
}
.buttons {
    left: 39.5%;
    bottom: -140%;
    width: 20%;
    background: transparent;
    align-items: center;
    align-self: center;
    text-align: center;
    position: absolute;
}
button {
    width: 200px;
    padding: 15px 0;
    text-align: center;
    margin: 20px 10px;
    border-radius: 10px;
    font-weight: none;
    border: 2px solid #333dcca6;
    color: #fff;
    font-size: 17px;
    background: #333dcca6;
    cursor: pointer;
    position: relative;
    text-transform: uppercase;
    height: 50px;
}
button:hover {
    width: 200px;
    border-radius: 10px;
    background: #3744ff;
    background-blend-mode: darken;
    
}
.context {
    margin: 10px;
    margin-top: 25px;
    font-family:'Roboto Light', 'Arial Light', sans-serif;
    font-size: 20px;
}