
body{
  background-image: #fff;
}

/*Main hero slider*/

@media (max-width: 50rem) {
  body {
    font-size: 3vw;
  }
}

.reg-btn {

    margin: 0em;
    font-size: 1em;
    padding: 1em 1.5em;
    background-color: #b91e1e;
    color: #fff;
    font-size: 1.4rem;
    font-family: sans-serif;
    border-radius: 3px;
    border: 0!important;
    cursor: pointer;
    border: 1px solid #0004;
    display: inline-block;
    text-decoration: none;
}

.reg-btn:hover {
  background: black;
  color: white;
  border: 1px solid #fff;
}

/* ========== .hero background... ========== */

.hero {
  color: white;
  aspect-ratio: 16 / 9;
  background-color: #558;
/*  background-image: url(https://source.unsplash.com/640x360?0);*/
  background-size: cover;
  background-position: center;

  /* https://cubic-bezier.com/#0,0,0,1 */
  animation: slides calc(4 * 5s) cubic-bezier(0, 0, 0, 3) 5s infinite;
  /* animation: name duration timing-function delay iteration-count direction fill-mode; */
  animation-play-state: running;
}

@keyframes slides {
  25% {
    background-image: url(../images/banner-ind-uae1.jpg);
  }
  50% {
    background-image: url(../images/banner-ind-uae2.jpg);
  }
  100% {
    background-image: url(../images/banner-ind-uae3.jpg);
  }
}
/* ========== .hero background. ========== */

.hero .content-hero {
    aspect-ratio: 16/9;
    text-align: left;
    background-color: #0008;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 10vw;
}


.content-hero h1{
    font-size: 3.5rem;
    color: #fff;
    font-family: sans-serif;
    font-weight: 600;
}

.content-hero h2{
    font-size: 1.3rem;
    color: #fff;
    font-family: sans-serif;
    font-weight: 400;
    line-height: 1.5;
}



/*Youtube owl carousel*/

 .slider-container-js {
        overflow: hidden;
        width: 100%;
        max-width: 1200px; /* Set your preferred width */
        margin: 0 auto;
    }

    .slider-js {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .item {
        flex: 0 0 25%; /* Display 4 slides at once */
        box-sizing: border-box;
        margin: 0px 3px 0 0;
    }

    .item iframe {
        width: 100%;
        height: 315px; /* Adjust the height as needed */
    }

    .btn-container {
        display: flex;
        justify-content: center;
        margin: 15px 0;
    }

    .btn-container button {
        margin-right: 2px;
        padding: 8px 20px;
        border-radius: 3px;
        font-family: system-ui;
        font-weight: 500;
        border: none;
        background-color: #b91e1e;
        color: #fff;
    }

    @media(max-width:600px){
        .item {
            flex: 0 0 25%; /* Display 4 slides at once */
            box-sizing: border-box;
            margin: 0px 3px 0 0;
        }
    }