@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

body{
    margin: 0;
    font-family: "Open Sans", sans-serif;
    font-optical-sizing: auto;
    background-color: #000;
}

.main-section{
    padding-top: 10vh;
    height: 90vh;
    max-width: 100vw!important;
    display: flex;
}

.section{
    height: 100%;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
}

.text{
    color: white;
    margin: 0%;
}

.head-text{
    font-size:2.1rem;
    font-weight: 800;
}

.description-text{
    font-size: 1.1rem;
    font-weight: 350;
    line-height: 2rem;
}

.step-video{
    height: 100%;
    width: 100%;
}

.inner-section{
    width: 40%;
    padding-right: 8rem;
}
.video-section{
    flex: 1;
    height: 85%;
}

/* Swiper settings */
.swiper {
    width: 100%;
    height: 100%;
}

.swiper-pagination-bullet {
    width: 0.6rem!important;
    height: 0.6rem!important;
    background-color: rgba(255, 255, 255, 0.6) !important;
}
.swiper-pagination-bullet-active{
    width: 0.65rem!important;
    height: 0.65rem!important;
    background-color: white !important;
}

.swiper-button-disabled{
    display: none!important;
}
.spacer{
    padding:1rem;
}

.swiper-button-prev, .swiper-button-next {
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    border: none;   
    color:transparent!important;
    height:2rem!important; 
    width:2rem !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.no-select-highlight{
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.swiper-button-prev {
    background-image: url('../images/left-arrow.png'); /* Replace with your custom previous icon image */
}

.swiper-button-next {
    background-image: url('../images/right-arrow.png'); /* Replace with your custom next icon image */
}

/* Settings related to video player */

video {
    width: 100%;
    height: auto;
    pointer-events: none; /* Disable pointer events on video to prevent controls showing */
}
/* Hide video controls */
video::-webkit-media-controls {
    display: none !important;
}
video::-webkit-media-controls-enclosure {
    display: none !important;
}
video::-webkit-media-controls-panel {
    display: none !important;
}
video::-webkit-media-controls-overlay-container {
    display: none !important;
}
video::-webkit-media-controls-overlay-play-button {
    display: none !important;
}

/* FaQ */
.faq-container {
    margin: 0 auto;
    max-width: 100vw;
    padding: 0rem 10rem;
    text-align: center;
}
details {
    margin-bottom: 1rem;
    border-radius: 0.4rem;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 1rem 1.2rem;
    color: white;
    position: relative; /* To position pseudo-elements inside */
    text-align: left;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.3);
}
summary {
    font-weight: 400;
    cursor: pointer;
    font-size: 1.1rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::after {
    content: "";
    background-image: url('../images/right-arrow.png'); /* Replace with your image path */
    background-size: 1rem 1rem;
    background-repeat: no-repeat;
    height: 1rem;
    width: 1rem;
    transform: rotate(90deg); 
    position: relative;
    transition: transform 0.3s;
    margin-left: 0.7rem;
    margin-top: 0;
}

details[open] summary::after {
    transform: rotate(270deg); /* Rotate back to normal */
}
summary:focus{
    outline: none;
    box-shadow: none;
}
summary::-webkit-details-marker,summary::marker {
    display: none;
}
summary::before {
    font-size: 12px;
    margin-right: 5px;
}
.faq-content {
    margin-top: 1rem;
    font-size: 1rem!important;
    color:	#e1e1e1;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer{
    padding-top: 4rem;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
        url('https://cinedubs.com/wp-content/uploads/2023/09/home-1.jpg');
    background-size: cover;
    background-position: center;
}
.footer-text{
    text-align: justify;
}
.copyright-text{
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    background-color: #2E2E2E;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2rem;
    padding: 0.5rem 0rem;
}
.app-icons{
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
.footer>div{
    display: flex;
    padding: 0 12%;
    justify-content: center;
}
.company-info{
    width: 55%;
}

/* Media queries */

@media (max-width: 480px) {
    .section{
        height: fit-content;
        flex-direction: column;
    }
    .head-text{
        font-size:1.6rem;
        font-weight: 800;      
    }
    
    .description-text{
        font-size: 1rem;
        font-weight: 350;
        line-height: 1.4rem;
    }
    
    .step-video{
        width: 100%
    }
    
    .inner-section{
        height: fit-content;
        width: 90%;
        text-align: center;
        padding-right: 0rem;
    }
    .video-section{
        width: 70%;
    }
    .spacer{
        padding:1rem;
    }
    .small-spacer{
        padding:0.5rem;
    }
    .main-section{
        height: fit-content;  
        
    }
    .swiper-button-prev, .swiper-button-next {
        height:1.5rem!important; 
        width:1.5rem !important;
    }
    .faq-container {
        padding: 0rem 2%;
    }

    .footer{
        border-top: 1px solid rgba(255, 255, 255, 0.3);
        padding-top: 2rem!important;
    }

    .footer>div{
        flex-direction: column;
        padding: 0 2%;
    }
    .company-info{
        width: 100%;
    }
    .app-icons{
        align-items: center;
    }
    .app-icons>a{
        text-align: center;
    }
    .app-icons>a>img{
        width: 90%;
    }
    .company-info{
        text-align: center;
    }
    .faq-text{
        font-size: 1.25rem;
    }

    summary, .faq-content{
        font-size: 0.9rem!important;
    }

    a{
        color:white;
    }
}
