:root{
    --LR-margin : 6%;
    --primary-color: #48d4e0;
    --secandry-color: rgb(185, 75, 185);
}

*{
    padding: 0px;
    margin: 0px;
}


/* -------------------------------------- HEADER -------------------------------- */
header
{
    height: auto;
   
}
header .topHeader{
    height: 40px;
    width: 100%;
    background-color: var(--primary-color) ;     
    display: flex;
    align-items: center;
 

}
.topHeader .topHl{
    float: left;
    width: 60%;
    display: flex;
    justify-content: space-between;
    margin-left: var(--LR-margin);
}
.topHeader .topHr{
    float: right;
    width: 40%;
    display: flex;
    justify-content: space-evenly;
    margin-right: var(--LR-margin);
    justify-content: right;
}
.topHeader a{
   color: aliceblue;
   text-decoration: none;
   padding: 0px 10px;
} 
.headercenter{
    height: auto;
    width: auto;
    display: flex;
}
.headercenter .aLogo{
    float: right;
    width: 30%;
}
.headercenter .rLogo{
    float: left;
    width: 30%;
}
.headercenter .rLogo  img{
    width: 10vw;
    margin-left: var(--LR-margin);
   
    height: 18vh;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    
}
.headercenter .aLogo  img{
    width: 10vw;
   
    margin-right: var(--LR-margin);
    height: 18vh;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    
}
a{
    font-size: 1.3vw;
}
.mName{
    width: 40%;
    font-size: 1.5vw;
    font-weight: 400px;
    justify-content: center;
    align-items: center;
    margin-top: 2%;
    color: green 
}

.headerBottem{
    height: 70px;
    width: auto;
    background-color: var(--secandry-color);
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.headerBottem a{
    text-decoration: none;
    color: white;
    padding: 0px 50px;
    text-align: center;
    justify-content: center;
}

ul {
    display: flex;
    justify-content: space-around;
    list-style: none;
}


.closeBtn,.menuBtn{
    display: none;
}
/* ----------------------------------- media of header for Phone ------------------------------------------- */
@media (max-width: 800px) {

    .topHeader .topHl{
        display: none;
        width: 0%;
 
    }
   
        
    .topHeader .topHr{
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    .headerBottem {
        display: none;
    }
    a{
        font-size: 3.3vw;
    }
    .headercenter .rLogo  img{
        width: 25vw;
        margin-left: var(--LR-margin);
      
        height: 18vh;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        
    }
    .headercenter .aLogo  img{
        width: 25vw;
       
        margin-right: var(--LR-margin);
        height: 18vh;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        
    }
    .mName{
        font-size: 3.5vw;
    }
}

/* -----------------------------------------------HEADER END ---------------------------------- */

/* ***************************************************** SLIDER OF # IMGS ************************************************** */


/* * ----------------------------------- media for DEtop------------------------------------------  */
@media (min-width: 1000px) {
.slideshow-container {
    padding: 40px 80px;
    transition: background-color 0.6s ease;
  
  }
}
  
  /* Caption text */
  .text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: slideln;
    animation-duration: 1.5s;
    
  }
 
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
    .text {font-size: 11px}
  }



  /* ***************************************************** SLIDER OF # IMGS END ************************************************** */