@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Montserrat", sans-serif;
    direction: rtl;
}

.header{
    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: #fff;
    font-weight: 700;
}

.social-media{margin: 0 50px 0 auto;}

    .social-media a{
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        background: transparent;
        border: 2px solid #fff;
        border-radius: 6px;
        margin-right: 10px;
        transition: .5s;
    }

        .social-media a:hover{ background: #fff;}

        .social-media a i{
            font-size: 20px;
            color: #fff;
            transition: .5s;
        }

            .social-media a:hover i{ color: #444;}

.navbar a{
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    margin-left: 30px;
    text-shadow: 0 0 10px rgba(0, 0, 0, .2);
}

.banner{
    background: #000;
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider .slide{
    position: absolute;
    width: 100%;
    height: 100%;
}

    .slide img{
        filter: brightness(0.3);
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        pointer-events: none;
        opacity: 0;
        transition: .3s ease;
    }

        .slide.active img{ opacity: 1;}

    .slide .left-info{
        position: absolute;
        top: 0;
        right: 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: rgba(255, 255, 255, .1);
            backdrop-filter: blur(20px);
            display: flex;
            justify-content: flex-end;
            align-items: center;
            -webkit-mask: linear-gradient(#000 0 0), linear-gradient(#000 0 0);
            -webkit-mask-clip: text, padding-box;
            -webkit-mask-composite: xor;
            padding-left: 20px;
        }

            .penetrate-blur h1{
                font-size: 250px;
                text-shadow: 0 0 10px rgba(255, 255, 255, .8);
            }

                .slide:nth-child(1) .penetrate-blur h1, .slide:nth-child(4) .penetrate-blur h1 {margin-right: -10px;}

        .left-info .content{
            position: absolute;
            top: 36px;
            right: 15%;
            color: #fff;
        }

            .content h3{
                font-size: 20px;
                margin-right: 35%;
            }

            .content p{
                font-size: 16px;
                margin: 10px 40% 15px 10%;
                text-align: justify;
            }

            .content .btn{
                display: inline-block;
                padding: 13px 28px;
                background: #fff;
                border: 2px solid #fff;
                border-radius: 6px;
                box-shadow: 0 0 10px rgba(0, 0, 0, .1);
                font-size: 16px;
                color: #444;
                font-weight: 600;
                transition: .5s;
                position: fixed;
                bottom: 10%;
                transform: scale(1.3);
            }

                .content .btn:hover{
                    background: transparent;
                    color: #fff;
                }

    .slide .right-info{
        position: absolute;
        top: 0;
        left: 0;
        width: 50%;
        height: 100%;
        display: flex;
        align-items: center;
        transform: translateX(-100%);
        transition: 0s;
    }

        .slide.active .right-info{
            transform: translateX(0);
            z-index: 1;
            transition: .5s ease;
        }

        .right-info h1{
            font-size: 250px;
            color: #fff;
            text-shadow: 
                0 1px 0 #ccc,
                0 2px 0 #c9c9c9,
                0 3px 0 #bbb,
                0 4px 0 #b9b9b9,
                0 5px 0 #aaa,
                0 6px 1px rgba(0, 0, 0, .1),
                0 6px 1px rgba(0, 0, 0, .1),
                0 1px 3px rgba(0, 0, 0, .3),
                0 3px 5px rgba(0, 0, 0, .2),
                0 5px 10px rgba(0, 0, 0, .25),
                0 10px 20px rgba(0, 0, 0, .2),
                0 20px 20px rgba(0, 0, 0, .15);
        }

            .slide:nth-child(2) .right-info h1, .slide:nth-child(4) .right-info h1 { margin-left: 10px;}

        .right-info h3{
            position: absolute;
            font-size: 80px;
            color: #fff;
            text-shadow: 0 0 10px rgba(0, 0, 0, .5);
            transform: translateY(150%);
            margin-right: 33px;
            margin-top: 21px;
        }

.navigation{
    position: absolute;
    bottom: 8%;
    left: 5%;
    z-index: 99;
    direction: ltr;
}

    .navigation span{
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 50px;
        background: #fff;
        border: 2px solid #fff;
        border-radius: 6px;
        box-shadow: 0 0 10px rgba(0, 0, 0, .5);
        cursor: pointer;
        margin-left: 25px;
        transition: .5s;
    }

        .navigation span:nth-child(1){background: transparent;}

            .navigation span:nth-child(1):hover {background: #fff;}

        .navigation span i{
            font-size: 45px;
            color: #444;
            transition: .5s;
        }

            .navigation span:nth-child(1) i{ color: #fff;}

                .navigation span:nth-child(1):hover i {color: #444;}

@media only screen and (max-width: 1032px) {
  .right-info h1 {font-size: 85px;}
.right-info h3 {font-size: 45px;margin: -50px 10px 0 0;font-weight: 100;}
.penetrate-blur h1 {font-size: 85px;padding-top: 7px;}
.left-info .penetrate-blur {padding-left: 5px;width: 90%;}
.active .left-info .content {left: -115%;right: -93%;top: 24%;}
.slide .right-info {width: 54%;}
.content .btn {right: 0;bottom: 8%;text-align: center;min-width: 77%;transform: none;}
.content .btn {right: 7%;}
.social-media {margin: 0 13px;width: min-content;}
.navbar a {margin-left: 15px;}
nav.navbar {width: 100%;text-align: left;}
.social-media a {margin: 3px 0;}
}
