/*
Theme Name: Jef
Author: Joseph Hategekimana
Version: 1.0.18
Text Domain: jef
*/

 body {margin: 0;
      font-family: sans-serif;
    }

    .video-section {
      position: absolute;
      width: 100%;
      height: 100vh; /* Adjust height as needed */
      overflow: hidden;
    }

    .video-section iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      min-width: 120%;
      min-height: 120%;
      width: auto;
      height: auto;
      aspect-ratio: 16 / 9;
      pointer-events: none; /* So clicks pass through */
      z-index: 1;
    }

    @media (min-aspect-ratio: 16/9) {
      .video-section iframe {
        width: 100vw;
        height: 56.25vw; /* 100 / (16 / 9) */
      }
    }





    .countdown-container {
            text-align:left;
            background:transparent;
            padding:0;
			width:100%
        }

        .countdown {
            display: flex;
            justify-content:left;
            gap: 0.6rem;
        }

        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: left;
            background: #1e579d;
            color: white;
            padding: 0.6rem;
            border-radius: 5px;
            min-width: 70px;
        }

        .countdown-item span:first-child {
            font-size: 1.8rem;
            font-weight: bold;
        }

        .countdown-label {
            font-size: 0.6rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-top:0.09rem;
            opacity: 0.8;
	}
    
    .modal{color:#1e579d !important;}
    .modal-title{color:#1e579d !important;}



    .slider {
            display: flex;
            width: 100%;
            margin: 0 auto;
            overflow: hidden;
            padding-top: 0px;
          }

          .slider .item {
            animation: 40s linear infinite animate;
            padding:0 10px;
          }

          .slider .item a span {
            font-size: 20px;
            line-height: 1.5em;
            display: block;
            height: 3em;
            overflow: hidden;
          }

          .slider .item img {
            min-width: 100px;
            max-width: 150px;
            border-radius: 10px;
            
          }

          .slider:hover .item {
            animation-play-state: paused;
            cursor: pointer;
            border-radius: 10px;
          }

          @keyframes animate {
            0% {
              transform: translate3d(0, 0, 0)
            }

            100% {
              transform: translate3d(-1800px, 0, 0)
            }
          }

.side-event img{ border: 1px solid #ccc}
          .side-event img,
          .nav-tabs li a.nav-link{ border-radius:10px;}

          .page-card-contents{background-color: var(--background-color);}