*
{

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

h3 {

    font-size: 33px;
    font-weight: 500;

}

p {

  color: #777;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  margin-left: auto;
  margin-right: auto;

}

html,body {

    min-height: 200vh;
    max-width: 100%;
    overflow-x: hidden;
    
}





header {

    top: 0;
    left: 0;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    background: #fff; 
    z-index: 9999;
    position: fixed;
    

}

header:hover {

    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.466);

}

nav {

    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}

.subNav a{

    font-size: 14px;

}

nav img {
    width: 200px;
}

.nav-Links {

    flex: 1;
    text-align: right;
    

}

.nav-Links ul li {

    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;

}

.nav-Links ul li::after {

    content: '';
    width: 0%;
    height: 2px;
    background: rgb(63, 120, 206);
    display: block;
    margin: auto;
    transition: 0.5s;
    border-radius: 2px;

}



.nav-Links ul li:hover::after{

    width: 100%;
}

.nav-Links ul li a {

    color: #000;
    text-decoration: none;

}

header li {

    transition-duration: 0.5s;
    display: block;

}

header li:hover{
    cursor: pointer;
}

nav ul li ul {

    visibility: hidden;
    opacity: 0;
    position: absolute;
    transition: all 0.5s ease;
    margin-top: 1rem;
    left: 0;
    display: none;
    padding-top: 15px;
    
    
}

.nav-Links ul li:hover > ul,
.nav-Links ul li ul:hover {

    visibility: visible;
    opacity: 1;
    display:-webkit-inline-flex;
    
    
}

.nav-Links ul li ul li {

    clear: both;
    width: 100%;
    text-align: center;
    
}





.nav-Links ul li .activeLink{

    border-bottom: 2px solid rgb(63, 120, 206);
    border-radius: 0.5px;
   
}


.banner img {

    display: block;
  margin-left: auto;
  margin-right: auto;
  width: 35%;
  padding-top: 200px;
    
}

.txtBox {

    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    box-sizing: border-box;
    display: flex;
    padding-bottom: 50px;
    
}

.txtBoxColumn {

    width: 35%;
    margin: 10px 30px;
    padding: 25px;
    background: rgb(255, 255, 255);
    border: 1px solid rgb(63, 120, 206);
    color: #101c5f;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
   border-radius: 8px;

}

.txtBoxColumn:hover{

    box-shadow: 0 5px 5px rgba(0,0,0,0.2);
}

.blockquoteBordered {

    border-left-width: 10px;
}

.blockquoteTxt {

    font-style: italic;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
    color: #000;
}



.blockquoteTxtName {

    font-weight: bold;
    font-style: normal;
    text-align: center;
    color: #000;
    
}



.blockquoteQuotes::before {

    content: "❝";
    font-size: 100px;
    color: #203aca;
    display: block;
    margin-bottom: -40px;
    margin-top: -20px;
}




/* Read more function*/
.txtBoxColumn a {

    display: inline-block;
    color: #000;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 10px;
    border: transparent;
}

.txtBoxColumn a:hover {

    box-shadow: 0 5px 5px rgba(0,0,0,0.2);
    
}

.txtBoxColumn p {

    margin-left: auto;
    margin-right: auto;
    height: 40vh;
    overflow: hidden;
    margin-bottom: 16px;
    
  }
  
  
  .txtBoxColumn.showContent p {
  
      height: auto;
  
  }
  
  

 

/*Visit section*/

.visit{

    width: 80%;
    margin: auto;
    text-align: center;
    display: block;
    align-items: center;

}


.button.effect1 {
    
    color:#32323e;
    border: transparent;
    background-color: #fff;
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    
    
}

.button.effect1.effect1::after,
.button.effect1.effect1::before{

    content: "";
    display:block;
    position:absolute;
    width: 20%;
    height: 20%;
    border: 2px solid;
    transition: all 0.6s ease;
    border-radius: 4px;
    
}

.button.effect1.effect1::after{

    bottom: 0;
    right: 0;
    border-top-color: transparent;
    border-left-color: transparent;
    border-bottom-color: rgb(63, 120, 206);
    border-right-color: rgb(63, 120, 206);

}

.button.effect1.effect1::before{

    top: 0;
    left: 0;
    border-bottom-color: transparent;
    border-right-color: transparent;
    border-top-color: rgb(63, 120, 206);
    border-left-color: rgb(63, 120, 206);

}


.button.effect1.effect1:hover:after,
.button.effect1.effect1:hover:before{

    width: 100%;
    height: 100%;

}





  /*Programmes*/

  .oliveGeneral {

    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;

  }

  .row {

    margin-top: 5%;
    display: flex;
    justify-content: space-between;
  }

.oliveColumn {

    flex-basis: 32%;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    
}

.oliveColumn img {

    width: 100%;
    display: block;
    border-radius: 8px;

}

.layer {

    background: transparent;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 8px;
}

.layer:hover {

    background: rgba(226,0,0,0.7);
  
}

.layer h3 {

    width: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 16px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    opacity: 0;
    transition: 0.5s;

}

.layer:hover h3 {

    bottom: 49%;
    opacity: 1;
}



/*Voices starting page*/

.voices {

    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    box-sizing: border-box;
    
}

.voicesColumn {

    flex-basis: 31%;
    border-radius: 10px;
    margin-bottom: 5%;
    text-align: center;
    box-shadow: 0 5px 5px rgba(0,0,0,0.15);
    display: block;
    

}



.voicesColumn img {

    width: 100%;
    border-radius: 10px;

}

.voicesColumn p {

    padding: 0;

}

.voicesColumn h3 {

    margin-top: 16px;
    margin-bottom: 15px;
    font-size: 25px;
    font-weight: 300;
    text-align: center;
    color: rgb(26, 62, 116);
}

/*cards section*/

.container{

    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    box-sizing: border-box;
}

.teamContainer{
    width: 100%;
    height: auto;
  
}

.teamRow{

    width: 100%;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-items: center;
    justify-content: center;
}

.profileCard{

    background-color: #ffffff;
    width: 270px;
    height: auto;
    margin: 20px 10px 10px 10px;
    border-radius: 8px;
    box-shadow: 0 5px 5px rgba(0,0,0,0.15);

}



.teamTxt{

    text-align: center;

}

.teamTxt p{

    font-size: 15px;
    color: #32323e;

}

.teamTxt h1{
    font-size: 20px;
    color: rgb(53, 57, 63);
    font-family: bebas kai;
    font-weight: bold;
}

.teamTxt h3{

    font-size: 13px;
    color: rgb(53, 57, 63);
    font-weight: bold;
}

.teamTxt a:hover {

    box-shadow: 0 5px 5px rgba(0,0,0,0.2);
}

/*Nominations section*/
.nomination {
    width: 80%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align:justify;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 200px;
}

.nomination h3{
    text-align: center;
}

.nomination a{
  color: rgb(63, 120, 206);
  text-decoration: none;
}

  /*End of pages*/

  .endHome {

    width: 100%;
    background-color: #fff;
    height: 70vh;
    padding-top: 100px;
    color: #777;
    text-align: center;
    display: flex;
    border-top: 0.3px solid rgb(187, 183, 183);
    
}

  .endHome h3{

    font-size: 20px;
    
}

.endHome .banner1 img {

    flex: 32%;
    width: 55%;
    
      
  }

  .endHome .banner2 img {

    flex: 32%;
    width: 80%;
      
  }

.signature {

    width: 100%;
    background-color: #fff;
    height: 10vh;
    color: #777;
    text-align: center;
    
}

.signature a{

    color: #777;
    text-decoration-line: none;
}


nav .fa {
    display: none;
}

/*--responsive for mobile phone--*/

@media(max-width: 700px){

  .banner img{
      width: 60%;
  }

 
  .txtBoxColumn p {

    margin-left: auto;
    margin-right: auto;
    height: 25vh;
    overflow: hidden;
    margin-bottom: 16px;
    
  }



    .txtBox p {
        font-size: 12px;
    }
    .txtBox {
        flex-direction: column;
        width: 100%;
    }
    .txtBoxColumn {
        
        width: 80%;
      
    }

    .linkWrapper{
        display:flexbox;
        width: 68%;
        text-align: center;
    }


    .row{
        flex-direction: column;

    }
}

@media(max-width:1250px){

    

    .nav-Links ul li {
        display: block;
    }
  
   
  
  
  
  .nav-Links ul li:hover > ul,
  .nav-Links ul li ul:hover {
  
      visibility: visible;
      opacity: 1;
      display: block;
      flex-direction: column;
      position:relative;
      -ms-flex-direction: column;
      z-index: 9;
      background: #f44336;
      
  }

  .dropDownMenu a{

    visibility: hidden;

}


  
.dropDownMenu.showContent a {
  
      visibility: visible;
  
}

  

  
  
  
    .nav-Links {
        position:absolute;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
        display: flexbox;
    }
  
    nav .fa{
        display: block;
        color:#32323e;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
  
    .nav-Links ul{
        padding: 30px;
    }
    
    nav .logo1{
  
      
      width: 130px;
    }
  
    nav .logo2{
  
      
      width: 130px;
    }
}












                        