*{
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

.banner{
    width: 100%;
    /* height: 100hv; */
    background-image: url(../Images/image.jpg); 
    /* filter: blur(8px);
    -webkit-filter: blur(8px); */
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.navbar{
    width: 85%;
    /* margin: auto; */
    padding: 35px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo{
    width: 350px;
    cursor: pointer;
    
}

.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 20px 10px;
    position: relative;
}

.navbar ul li a{
    text-decoration: none;
    color: rgb(0, 0, 0);
    text-transform: uppercase;
    font-size: 25px;
    font-weight: bold;
}

.navbar ul li::after{
    content: '';
    height: 3px;
    width: 0;
    background: #009688;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}

.navbar ul li:hover::after{
    width: 100%;
}

.text-box{
    color: #fff;
    position: absolute;
    bottom: 8%;
    text-transform: uppercase;
    margin-left: 20px;
}

.text-box h1{
    font-size: 160px;
    line-height: 160px;
    margin-left: -10px;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
    background: url(../Images/back.png);
    -webkit-background-clip: text;
    background-position: 0 0;
    animation: back 20s linear infinite;
}

@keyframes back{
    100%{
        background-position: 2000px 0;
    }
}

.text-box p{
    font-size: 30px;
    font-weight: 600;
}

.text-box .row{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
    left: 30px;
}

.btn{
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
    margin-right: 20px;
    border: 2px solid #fff;
    font-size: 30px;
    /* align-items: center; */
    display: flex;
    flex-direction: column;
    background: #000;
    border-radius: 30px;
    transition: transform 0.3s ease;
    position: relative;
}

.btn::after, .btn::before{
    content: "";
    position: absolute;
    opacity: 0.3;
    background: #000;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: transform 0.3s ease;
}

.btn:hover{
    transform: translate(-12px, -12px);
}

.btn::after{
    transform: translate(6px,6px);
}

.btn::before{
    transform: translate(12px,12px);
}
