header{
    height: 100vh;
   
    display: flex;
    flex-direction: column;
}


header.pages{
    height: auto;
}
.top-bar {
    padding: 20px 0;
    height: 85px;
}

.top-bar .main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.media-header ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.media-header ul li a {
    width: 45px;
    display: flex;
    height: 45px;
    align-items: center;
    justify-content: center;
    color: var(--color-Primary2);
    z-index: 1;
    border-radius: 50%;
    transition: all .3s linear;
    position: relative;
    border: 1px solid var(--color-Primary2);
}

.media-header ul li a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    height: 95%;
    width: 95%;
    right: 0;
    border-radius: 50%;
    transform: scale(0);
    transition: all .2s linear;
    z-index: -1;
    background-color: var(--color-Primary2);
    left: 0;
    margin: auto;
}

.media-header ul li a:hover i {
    /* animation: infinite; */
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.media-header ul li a:hover {
    color: var(--color-white);
}

.media-header ul li a:hover::after {
    transform: scale(1);
}

.btns-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language {
    display: flex;
    transition: all .3s linear;
    align-items: center;
    gap: 5px;
}

.language:hover {
    color: var(--color-Primary2);
}

.language:hover i {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}



.nav-bar {
    display: flex;
    background-color: var(--color-white);
    justify-content: space-between;
    align-items: center;
    color: var(--color-white);
    height: 85px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;

}
.nav-bar::before {
    content: "";
    position: absolute;
    background-image: url(../images/nav-after.svg);
    right: 0;
    top: 0;
    z-index: 1;
    height: 100%;
    width: 50px;
    object-fit: contain;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.nav-bar .main-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    z-index: 999;
    position: relative; 
}

.nav-bar .element {
    height: 100%;
}
.nav-bar img {
    height: 55%;
    object-fit: contain;
}
.nav-bar a {
    color: var(--color-text);
}

.element>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    height: 100%;
}

.element>ul>li {
    position: relative;
    height: 100%;
}

.element>ul>li>a {
    padding: 25px 0;
    font-family: 'font_main';
    display: flex;
    transition: all .3s linear;

    align-items: center;
    align-items: center;
    font-size: 14px;
    gap: 10px;
    height: 100%;

}



.element ul li a {
    position: relative;
    transition: all .3s linear;
}

.element ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0%;
    right: 0;
    left: 0;
    transition: all .3s linear;
    height: 2px;
    z-index: 2;
    background-color: var(--color-Primary1);
}


.element>ul>li a:hover ,
.element>ul>li.active a{
    color: var(--color-Primary1);
}

.element>ul>li.active a::after ,
.element ul li a:hover::after {
    width: 100%;
}



.element>ul>li.active a svg path {
    fill: var(--color-Primary1);
    transition: all .3s linear;
}

.element ul li a:hover svg path {
    fill: var(--color-Primary1);
    transition: all .3s linear;
}

.element>ul>li>a i {
    line-height: 0;

    padding-top: 5px;
}

.drop-element {
    top: 100%;
    color: var(--color-Primary1);
    border: 1px solid var(--color-Primary1);
    background-color: var(--color-white);
    width: 200px;
    opacity: 0;
    transition: all .3s linear;
    z-index: 2;
    user-select: none;
    overflow: hidden;
    position: absolute;
    border-radius: 10px;
    transition: all .3s linear;
    box-shadow: 0 2px 5px #ffffffad;
    height: 0;
}

.element>ul>li.drop-menu:hover .drop-element {
    opacity: 1;
    height: auto;
}



.element>ul>li.drop-menu:hover a::after{
    width: 0%;

}



.element>ul>li.drop-menu li:hover a::after{
    width: 100%;

}



.drop-element ul li a {
    padding: 10px 15px;
    font-size: 15px;
    display: flex;
    position: relative;
    gap: 10px;
    align-items: center;
}

.drop-element ul li a:hover {
    color: var(--color-white);
    background-color: var(--color-Primary1);
    transition: all .3s linear;
}


.drop-element ul li a:hover svg path {
    fill: var(--color-white);
    transition: all .3s linear;
}

/* hero section */

.hero{
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}


.hero .right-vector{
    position: absolute;
    inset: 0;
    z-index: 0;
    right: 0;
    bottom: 0;
    height: 100%;
}
.hero .right-vector img {
    height: 100%;
    object-fit: contain;
}

.hero .left-vector{
    position: absolute;
    inset: 0;
    z-index: 0;
    left: 0;
    bottom: 0;
    height: 100%;
}
.hero .left-vector img {

    height: 100%;
    object-fit: contain;
}


.video-bg {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;

  }
  
  .video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
  }
  
  .video-bg .content {
    position: relative;
    z-index: 1;
    color: #fff;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }



  .video-bg .content h1{
    font-size: clamp(20px, 3vw, 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'font_bold';
    gap: 10px;
    span{
      
        color: var(--color-Primary1);
        line-height: 1;
        align-content: end
    }
  }


  .video-bg .sec-header {
    margin-bottom: 20px;
    background-color: rgba(72, 190, 160, 0.35);
    border: 2px solid var(--color-Primary1);
    padding: 10px;
  }

  .video-bg .sec-header h2 {
    font-size: 14px;
    font-family: 'font_bold';
color: var(--color-white) ;

border: none;
padding: 0;
background-color: transparent;

  }

  .video-bg p{
    color: #fff;
  }

  .video-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(69, 194, 177, 0.25);
    z-index: 0;
  }
  



  .our-sponsers {

    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
    background: linear-gradient(to bottom, rgba(38, 60, 144, 0), rgba(38, 60, 144, 1));
    .sponser-item {
        max-width: 200px;
        height: 40px;
        object-fit: contain;
    }

    .sponser-item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

   
      
      .partners-carousel .item {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding: 10px 20px;
        border-radius: 5px;
        height: 75px;
      }
      .partners-carousel .item img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 5px;
      }
      .partners-container {
        width: 100%;
      }
      .partners-container .owl-carousel.seconed .owl-stage {
        /* display: flex;
          flex-direction: row-reverse; */
        transition-timing-function: linear !important;
      }
  }




  .sub-header{
    background-color: var(--color-Primary2);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    
    .main-container{
        display: flex;
        flex-direction: column;
        gap: 20px;
       
    }
    h2{
        font-size: clamp(14px, 3vw, 24px);
        font-family: 'font_bold';
        color: var(--color-white);
        position: relative;
        z-index: 99;
    }
    .path{
        display: flex;
        align-items: center;
        gap: 10px;
        position: relative;
        z-index: 99;


        a{
            color: var(--color-white);
            font-size: clamp(10px, 2vw, 14px);
            font-family: 'font_bold';
        }
    }

    .sub-bg{

        position: absolute;
        bottom: 40%;
        left: 0;
        width: 280px;
        height: 100%;
        z-index: 0;
        

    }
  }