@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&family=Poppins:wght@500&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat',sans-serif;
}
.head{
    position: fixed;
    top:0%;
    left: 0%;
    width: 100% ;
    padding: 30px 5%;
    background: transparent;
    display: flex;
    align-items: center;
    z-index: 100;
}
.logo{
    font-size: 30px;
    color: aliceblue;
    text-decoration: none;
    font-weight: 700;
}
.social{
    margin: 0 auto 0 50px;
}
.social a{
    display: inline-flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 2px solid #fff;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 10px;
    transition: .5s;
}
.social a:hover{
    background-color: aliceblue;
}
.social a i{
    font-size: 20px;
    color: aliceblue;
    position: relative;
    transition: .5s;
}
.social a i:hover{
    color: black;
}
.navbar a{
    position: relative;
    color: aliceblue;
    text-decoration: none;
    margin-left: 40px;
    font-size: 1.1em;
    font-weight: 700;

}
.navbar a::after{
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -6px;
    height: 3px;
    background: aliceblue;
    border-radius: 5px;
    transform: scaleX(0);
    transition: transform .5s;
}
.navbar a:hover::after{
    transform-origin: left;
    transform: scaleX(1);
}
.banner{
    position:absolute;
    width:100%;
    height:100%;
}
.slide{
    position:absolute;
    width:100%;
    height:100%;
}
.slide img{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    /* opacity:0; */
    transition: .3s ease;
}
.slide img active{
    /* opacity: 1; */
}
.slide .left-info{
    position: absolute;
    top: 0%;
    left: 0%;
    width: 50%;
    height: 100%;
    transform: translateX(-100%);
    transition: 0s;
}
.slide.active .left-info{
    transform: translateX(0);
    z-index: 1;
    transition: .5s ease;
}
.left-info .penetrate-blur{
    
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(225, 225, 225, .1);
    backdrop-filter: blur(20px);
    display: flex;
    -webkit-mask: linear-gradient(#000 0 0), 
    linear-gradient(#000 0 0) ;
    -webkit-mask-clip: text, padding-box;
    -webkit-mask-composite: xor;
    padding-right:20px;
}
.penetrate-blur h1{
    /* position: absolute; */
    padding-top: 35%;
    padding-left: 15%;
    text-align: right;
    font-size: 150px;
    text-shadow: 0 0 10px rgba(255,255,255,.8)
}
.penetrate-blur h1{

    animation-name: changeColor;
    animation-duration: 6s;
    animation-iteration-count: infinite;
    animation-direction: alternate;

}
@keyframes changeColor
{
    0%{text-shadow: 0 0 10px rgba(255,255,255,.8)}
    25%{text-shadow: 0 0 10px rgba(255, 125, 125, 0.8)}
    50%{text-shadow: 0 0 10px rgba(112, 228, 249, 0.8)}
    75%{text-shadow: 0 0 10px rgba(133, 253, 161, 0.8)}
    100%{text-shadow: 0 0 10px rgba(252, 116, 85, 0.8)}
}
.left-info .content{
    position: absolute;
    bottom: 8%;
    left: 10%;
    color: #fff;
}
.content h3{
    font-size:20px ;
}
.content p{
    font-size: 16px;
    margin: 10px 0 15px;
}
.content .btn{
    display: inline-block;
    padding: 13px 28px;
    background-color: aliceblue;
    border: 2px solid aliceblue;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, -1);
    font-size: 16px;
    color: #444;
    text-decoration: none;
    font-weight: 600;
}
.content .btn:hover{
    background: transparent;
    color: aliceblue;
}
.slide .right-info{
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    /* background: turquoise; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    transform: translateX(100%);
    transition:0s;
}
.slide.active .right-info{
    transform: translateX(0);
    z-index:1;
    transition:.5s ease;
}
.right-info h1{
    font-size: 150px;
    color: aliceblue;
    text-shadow: 0 0 10px rgba(0, 0, 0, .5);
    padding-left: 105%;
}
.right-info h3{
    font-size: 60px;
    color: aliceblue;
    text-shadow: 0 0 10px rgba(0, 0, 0, .5);
    transform: translateY(-20%);
    margin-left: 12px;

}
/* Style the dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Style the dropdown button */
.dropbtn {
    background-color: #0b87da;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

/* Style the dropdown links */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color on hover */
.dropdown-content a:hover {
    background-color: #ddd;
}

/* Show the dropdown content when the button is clicked */
.show {
    display: block;
}


.prev .next{
    height: 50px;
    width: 50px;
    z-index: 100000;
}
#scrollBtn
{z-index: 100000;
    height: 20px;
    width: 20px;
}
.dropbtn{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    


}
.btn
{
    margin-top: -200px;
    margin-left: 100px;
    z-index: 100000;
    position: absolute;
    width: 350px;
    cursor: pointer;
}
#arrows button
{
height: 60px;
width: 60px;
border-radius: 50%;

}
.leftArrow{
    background-image: url("https://www.svgrepo.com/show/27797/right-arrow.svg");
    background-size: cover ;
    background-repeat: no-repeat;
    transform: rotate(180deg);
}
.rightArrow{
    background-image: url("https://www.svgrepo.com/show/27797/right-arrow.svg");
    background-size: cover ;
    background-repeat: no-repeat;
}
#arrows button{
background-color: transparent;
cursor: pointer;
}
#arrows{
    z-index: 190909;
    position: fixed;
    bottom: 100px;
    left: 90%;
    display: flex;
    flex-direction: row;
}

.rightArrow{
    margin-left: 25px;
    backdrop-filter: blur(20px);
}
