
* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    overflow-y: hidden;
    overflow: scroll;
    background: #2b3131;
    overflow-x: hidden;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(img/mashalla\ 🌹.jpg);
}


html {
    scroll-behavior: smooth;
}


/* preload */
#preload {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    z-index: 99999;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;    
    align-items: center;
}

#preload.loaded {
    opacity: 0;
    pointer-events: none;
}

.allah-icon > img {
    width: 100%;
    height: 80px;
}

.rw-colors {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
}

.dispear {
    animation: vanursh 2s forwards;
}

@keyframes vanursh {
    100% {
        opacity: 0;
        visibility: hidden;
    }
}


.red {
    background-color:rgb(236, 68, 68);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 10px;
}

.green {
    background-color:rgb(68, 236, 68);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 10px;
}

.blue {
    background-color:rgb(68, 68, 236);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 10px;
}

.yellow {
    background-color:rgb(236, 236, 68);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 10px;
}

.purple {
    background-color:rgb(236, 68, 236);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin: 10px;
}



.red {   
    animation: formSlide 5s linear infinite reverse;
    transition: .5s;
}

@keyframes formSlide {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

 .yellow {
    animation: formSlide 4s linear infinite reverse;
    transition: .5s;
}

@keyframes formSlide {
    0% {
        opacity: 0;
        transform: translateX(75px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


 .green {
    animation: formSlide 3s linear infinite reverse;
    transition: .5s;
}

@keyframes formSlide {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}




 .blue{
    animation: formSlide 2s linear infinite;
    transition: .5s;
}

@keyframes formSlide {
    0% {
        opacity: 0;
        transform: translateX(25px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.purple {
    animation: formSlide 1s linear infinite reverse;
    transition: .5s;
}

@keyframes formSlide {
    0% {
        opacity: 0;
        transform: translateX(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(-10);
    }
}





#sidebar {
    
    width: 80%;
    height: 100%;
    background: #ffffffbd;
    position: fixed;
    display: none;
    backdrop-filter: blur(5px);
    flex-direction: column;
    padding: 20px;
    top: 0;
    right: 0;
    transition: 0.5s;
    z-index: 999999;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: 0.5s; 
    animation: slideRights .3s ease-in forwards;
}

@keyframes slideRights {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
    
}

.lo-navbar {
    margin: 10px 0 30px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


.lo-navbar > .logo-mo {
    height: 35px;
}


.lo-navbar > .close {
    height: 35px;
    padding: 5px;
    background: #000;
    border-radius: 50px;
    cursor: pointer;
}

.memu {
    cursor: pointer;
    display: none;
}

.memu > img {
    height: 35px;
}


#sidebar li {
    padding: 20px 0;
    text-align: left;
    margin: 0px 10px 5px 10px;
}

#sidebar li a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    cursor: pointer;
    position: relative;
    padding-bottom: 5px;
}


#sidebar li a::after {
    content: '';
    width: 0;
    height: 2px;
    background: #4766D8;
    display: block;
    margin: auto;
    transition: .5s;
    position: absolute;
    left: 0;
}

#sidebar li a:hover::after {
    width: 100%;
}


 
/* Sign In */

.Sign-in {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ffffffbd;
    backdrop-filter: blur(10px);
    z-index: 99999;
    transition: 0.5s;
    display: none;
    flex-direction: column;
    justify-content: center;    
    align-items: center;
}


.sign-in-bg {
    background-color: rgb(223, 221, 221);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    width: 450px;
    height: 350px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    padding: 50px;
    margin: 0 auto;
}


.sign-in-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}


.sign-in-head p {
    font-size: 18px;
    font-weight: 600;
}   


.sign-in-head p a:nth-child(2) {
    color: #4766D8;
    text-decoration: none;
    font-weight: 600;
}



/* Sign up */

.form-poptop {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ffffffbd;
    backdrop-filter: blur(10px);
    z-index: 99999;
    transition: 0.5s;
    display: none;
    flex-direction: column;
    justify-content: center;    
    align-items: center;
}

form {
    margin-top: -150px;
}

.logo-poptop {
    margin-bottom: 20px;
    text-align: center;
}

.logo-poptop > img {
    height: 50px;
}


.sign-up-bg {
    background-color: rgb(223, 221, 221);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    width: 450px;
    height: 400px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    padding: 50px;
    margin: 0 auto;
}


.sign-up-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}


.sign-up-head p {
    font-size: 18px;
    font-weight: 600;
}   


.sign-up-head p:nth-child(2) {
    color: #4766D8;
}


.input-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 100px;
}


.input-methods input {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: none;
    outline: none;
    padding: 0 20px;
}


.input-methods button {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: none;
    outline: none;
    background-color: #4766D8;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.gogle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: 1px solid #727273;
    outline: none;
    background-color: #fff;
    color: #4766D8;
    font-weight: 600;
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 0;
    margin-bottom: 10px;
}


.gogle-btn img {
    width: 20px;
}

.already {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: none;
    outline: none;
    color: #000000;
    font-weight: 600;
}


/* top navbar */


.top-navbar {
    width: 100%;
    height: 50px;
    background: #fff;
    margin-bottom: 30px;
     position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}



/* navigation */

header {
    max-width: 100%;
    height: 90px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    margin: 0px 15%;
    border-radius: 50px;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
    transition: 0.5s;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 9999;
}


ul {
    list-style: none;
}


nav ul li {
    display: inline-block;
    padding: 0 18px;
}


nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    padding-bottom: 5px;
    position: relative;
}


nav ul li a::after {
    content: '';
    width: 0;
    height: 2px;
    background: #4766D8;
    display: block;
    margin: auto;
    transition: .5s;
    position: absolute;
    left: 0;
}

nav ul li a:hover::after {
    width: 100%;
}

.btn, .btn2 {
    transition: .5s;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 30px;
    background: #4766D8;
    color: #fff;
    font-weight: 500;
}


.btn:hover, .btn2:hover {
    background: #aa4141;
}


.wrapper {
    padding: 0% 15% 0;
}

 
/* Hero Section */

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 0px;
    padding: 15% 0 50px;
}

.video-content {
    display: flex;
    flex-direction: row;
    align-items: center;
}



video {
    object-fit: cover; 
    object-position: center; 
    border-radius: 200px;
    width: 348px;
    height:  648px; 
    margin: 0 20px 0 0;
   
}

.star {
    margin-bottom: 30px;
}

.hero-content h1 {
    color: #4766D8;
    font-size: 60px;
    font-weight: bolder;
    line-height: 70px;
    margin-bottom: 20px;
}

.hero-content p {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 30px;
}

.number {
    display: flex;
    flex-direction: row;
    gap: 30px;
    text-align: center;
}

.f-num-span, .s-num-span, .t-num-span {
    color: #4766D8;
    font-size: 30px;
    font-weight: bolder;
}



.thosands {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}


.hero-arrow > img {
    padding: 8px;
    height: 50px;
    cursor: pointer;
}

.hero-arrow > img:hover {
    background-color: #363636;
}






/* about section */

.about{
    padding: 150px 0;
}

.about-content {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 50px;
}


.video-image img {
    width: 450px;
}


.about-content h2 {
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: -30px;
}

.about-text > .about-p {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
}

.about-text > .about-p::before {
    content: '';
    width: 100px;
    height: 2px;
    background: #4766D8;
    display: block;
    margin: auto;
    position: absolute;
    left: 95px;
    bottom: 9px;

}

.about-text > #about-span {
    color: #4766D8;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;

}

.about-text > p {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 30px;
    line-height: 30px;
}



/* highlights section */


.highlights {
    padding: 50px 0;
}   


.highlights-text {
    display: flex;
    flex-direction: column;
    margin-bottom: 25px;
}

.highlights-p {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
}

.highlights-p::before {
    content: '';
    width: 100px;
    height: 2px;
    background: #4766D8;
    display: block;
    margin: auto;
    position: absolute;
    left: 140px;
    bottom: 9px;
}

.highlights-text h2 {
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: -30px;
}



#highlights-span {
    color: #4766D8;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 20px;
}


.highlights-text p:last-child {
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 30px;
    width: 450px;
}

.row {
        --bs-gutter-x: 0;
        justify-content: space-between;
    }

.highlights-content {
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}


.audio-content {
    width: 350px;
    background-color: #fff;
    padding: 35px;
    text-align: center;
    border-bottom-left-radius: 50px;
    border-top-right-radius: 50px;
    margin: 0 0 30px 0;

}




.audio-content > img {
    margin-bottom: 15px;
}


.about-content > h3 {
    color: #000000;
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}





 #para {
    color: #000000;
    font-size: 16px;
    font-weight: 300;
    line-height: 25px;
    margin-bottom: 30px;
}

.highlights-btn {
    transition: .5s;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 30px;
    background: #4766D8;
    color: #fff;
    font-weight: 500;   
}


 .highlights-btn:hover {
    background-color:#aa4141;
}



.audio-content-arrow {
    text-align: center;
    max-width: 100%;
    margin-left: 55px;
}

.audio-content-arrow > .arrow-next {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: 0.5s;
    border-bottom: 2px solid #4766D8;
}

.maki-arrow {
    height: 20px;
}

.audio-content-arrow > .arrow-next:hover {
    color: #4766D8;
}
/* see more  */

.see-container {
    margin: 15% 0 auto;
}

/* QURAN CONTENT */

.wrapper-quran {
    margin: 15% 15% 0;
    background-color: #fff;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    height: 100%;
    padding: 20px 0;
    position: relative;
}

.bottom-arrow > a > img {
    width: 50px;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: rotate(180deg);
    padding: 10px;
    border-radius: 5px;
    background-color: gray;
    margin: 0 -100px 30px 0;
    transition: .5s;
    cursor: pointer;
}

.bottom-arrow > a > img:hover {
    background-color: #fff;
}

.heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    
}

a {
    text-decoration: none;
}


.download-btn {
    transition: .5s;
    text-decoration: none;
    padding: 10px 30px;
    border-radius: 30px;
    background: #4766D8;
    color: #fff;
    font-weight: 500;
    
}


.download-btn:hover {
    background: #aa4141;
}

ol {
    margin-left: 20px;
}

.hori {
    margin-left: 0px;
}

hr {
    margin-left: -20px;
}

.quran-content {
    display: flex;
    flex-direction: column;
}

.quran-audio {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
}



.quran-audio > .check {
    font-size: 18px;
    color: #0000;
    font-weight: 600;
    font-weight: 600;
}


.quran-audio > .play-download {
    display: flex;
    align-items: center;
}

.play-download > audio {
color: #fff;
object-fit: contain;
border-radius: 50px;

}

.play-download > .download {
    display: none;
}




/* library */

.libery {
    padding: 50px 15%;
    background-color: #F6F4F9;
    position: relative;
    z-index: -10px;
}

.libery-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: center;
    align-items: center;
}

slide-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    padding-block: 10rem;
}

.swiper {
  width: 100%;
  height: 500px;
}


.img-bg {
    width: 300px;
    background-image: url(img/Holy\ Quran.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: center;
    border-radius: 50px;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    cursor: grab;
    user-select: none;
    margin-bottom: 70px 0px;
}

.img-bg > p {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    margin-top: 50%;
}

.libery-text {
    text-align: center;
    margin-bottom: 30px;
}


.libery-content h2 {
    color: #000000;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: -30px;
}

.libery-text > .libery-p {
    color: #000000;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 10px;
    position: relative;
}

.libery-text > .libery-p::before {
    content: '';
    width: 100px;
    height: 2px;
    background: #4766D8;
    display: block;
    margin: auto;
    position: absolute;
    left: 80px;
    bottom: 9px;
}

.libery-text > #libery-span {
    color: #4766D8;
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 40px;
}


/*
.dot-box {
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.dot-box > img {
    width: 120px;
    height: 120px;
}

 */




/* footer */

footer {
    width: 100%;
    background-color: #4766D8;
    margin: 0 auto;
    overflow: hidden;
}

.footer-content {
    display: flex;
    flex-direction: row;
    padding: 50px 15%;
    justify-content: space-between;
    color: #fff;

}


.social-media {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-right: 40px;
}


.social-media > a > img {
    height: 50px;
}


.social-media > p {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;

}


.social-media-icons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    
}


.social-media-icons > a > i {
    padding: 10px 12px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 20px;
}


.social-media-icons > a > i:hover {
    color: #4766D8;
    background-color: #fff;
    transform: scale(0.9);
}

.useful-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
   width: 350px;
}   


.useful-links > h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.useful-links > p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.contact-us {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 350px;
    margin-right: 40px;
}   

.contact-us > h5 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.contact-us > p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}


.contact-us > a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}







.copyright > p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}


.copyright > p > span { 
    color: #4766D8;
    font-size: 30px;
    font-weight: 500;  
    margin-right: 10px; 
}


.copyright > a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}


.copyright > a > img {
    width: 30px;
    height: 30px;
}




.copy-right {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}

/* MEDIA QUERIES */







/* @media */

@media screen and (max-width: 425px) {

    .swiper-wrapper {
    padding: 0 20px;
  }
    
}


@media screen and (min-width: 768px) {

    /* .swiper-wrapper {
        margin-inline: 3rem;
    } */


}


@media screen and (min-width: 1024px) {

        .slide-content {
            max-width: 1120px;
        }

        .swiper-button-prev {
            left: -1rem;
        }
        .swiper-button-next {
            right: -1rem;
        }

}



@media screen and (max-width: 600px),(max-width: 425px)  {

    header {
        padding: 15px 20px;
        margin: 0 30px;
    }

    

    nav {
        display: none;
    }

    .btn {
        display: none;
    }

    .btn2 {
        display: block;
    }

    .memu {
    cursor: pointer;
    display: block;
    }

    .wrapper {
        padding: 0% 3%;
        
    }

    /* Sign Up */
    

    .sign-up-bg {
        width: 100%;
        margin: 0% 4%;
    }




    /* Hero Section */

    .hero-content {
        flex-direction: column;
        align-items: center;
        position: relative;
        padding-top: 60%;
    }

    .video-content {
        width: 100%;
        height: 100%;

    }

    .small {    
        display: none;
    }

    .star {
        position: absolute;
        top: 150px;
        right: 20px;
        object-fit: cover;
    }
    

    /* About Section */

    .about-content {
        flex-direction: column;
    }

    .about-text {
        width: 100%;
    }
    

    .about-img {
        width: 100%;
    }

    .video-image img {
        width: 100%;
        height: 100%;
    }

    /* highlights */
   .small {    
        
    }



    /* Libery */

    .libery-content {
        flex-direction: column;
        grid-template-columns: repeat(1, 1fr);
    }


    .libery-text {
        width: 100%;
    }


    .libery-img {
        width: 100%;
        height: 100%;

    }


    /* Download pages */

    .wrapper-quran {
    margin: 35% 0% 0;
    border-radius: 0;
}

.heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-bottom: 20px;
}

.quran-heading-img > img {
    width: 60px;
    border-radius: 100px;
    object-fit: contain;
    border-radius: 10px;
}

ol {
    margin-left: 30px;
}

.hori {
    margin-left: 0px;
}

hr {
    margin-left: -30px;
}

.quran-content {
    display: flex;
    flex-direction: column;
}

.quran-audio {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10px;
}



.quran-audio > .check {
    font-size: 16px;
    color: #0000;
    font-weight: 600;
    font-weight: 600;

}



.quran-audio > .play-download {
    display: flex;
    align-items: center;
}

.play-download > audio {
margin-right: 10px;
color: #fff;
object-fit: contain;
border-radius: 50px;
max-width: 100%;

}

.play-download > .download {
    display: none;
}

.quran-audio > .download:hover {
    background-color: brown;
    color: #fff;
}


.bottom-arrow > a > img {
    margin: 0 0 30px 0;
}




    /* Footer */


.footer-content {
     padding: 50px 5%;
    display: block;
     text-align: center;
    object-fit: contain;
}


.social-media {
    margin-right: 0px;
    width: 100%;
}


.social-media-icons {
    justify-content: center;
    gap: 20px;
    
}

.useful-links {
   margin: 30px 0; 
    gap: 10px;
   width: 100%;
}   


.contact-us {
    margin: 20px 0; 
    gap: 10px;
   width: 100%;
}   









.copyright > p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}


.copyright > p > span { 
    color: #4766D8;
    font-size: 30px;
    font-weight: 500;  
    margin-right: 10px; 
}


.copyright > a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
}


.copyright > a > img {
    width: 30px;
    height: 30px;
}




.copy-right {
    text-align: center;
    color: #fff;
    margin-bottom: 20px;
}
}



@media screen and (max-width: 990px), (max-width: 768px) {

    header {
        padding: 15px 20px;
        margin: 0 30px;
    }



    nav {
        display: none;
    }

    .btn {
        display: none;
    }

    .memu {
    cursor: pointer;
    display: block;
    }

    

    .wrapper {
        padding: 0% 30px;
        
    }

    /* Hero Section */

    .hero-content {
        flex-direction: column;
        align-items: center;
        position: relative;
        
    }

    .video-content {
        width: 100%;
        height: 100%;

    }

    


    

    /* About Section */

    .about-content {
        flex-direction: column;
    }

    .about-text {
        width: 100%;
    }

    /* Highlights */
    
    .row {
        --bs-gutter-x: 0;
    }

    .audio-content-arrow {
        text-align: center;
        margin: 0;
    }

    .audio-content {
        width: 100%;
        height: 100%;
        margin: 0 0 20px 0;
        text-align: center;
        
    }

    .audio-content > img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        
    }


     .audio-text {
        width: 100%;
         padding: 10px;
    }

    .audio-text > h3 {
        font-size: 18px;
        padding-top: 0;
        margin-bottom: 5px;
    }


    #para {
        font-size: 14px;
        margin-bottom: 10px;
    }


    .highlights-btn {
        font-size: 14px;
    } 


    /* Libery */

    .libery-content {
        flex-direction: column;
        grid-template-columns: repeat(2, 1fr);
    }


    .libery-text {
        width: 100%;
    }


    .libery-img {
        width: 100%;
        height: 100%;

    }


    

    /* Footer */
}


/* @media screen and (max-width: 450px) {

    .highlights-content {
        grid-template-columns: repeat(1, 1fr);
    }
    
} */



 
/* scroll */

.hidden {
    transform: translateY(100px);
    opacity: 0;
    transition: 1s;
}

.show {
    transform: translateY(0);
    opacity: 1;
}



/* KEYFRAMES */

.logo, video-image > img, .highlights-text, .img-bg {
    animation: slideLeft 1s ease-in forwards;
    transition: .5s;
}

@keyframes slideLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

li a {
    animation: slideTop 1s ease-in forwards;
    transition: .5s;
}

@keyframes slideTop {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


.btn, .about-text, .libery-text {
    animation: slideRight 1s ease-in forwards;
    transition: .5s;
}

@keyframes slideRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


.hero-content, .highlights-content {
    animation: slideDown 1s ease-in forwards;
    transition: .5s;
}

@keyframes slideDown {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}


.hero-arrow {
    animation: hero-arrow 1s linear infinite alternate;

}

@keyframes hero-arrow {
    0% {
        transform: translateY(50px);
    }
    100% {
        transform: translateY(0);
    }
}
