*,
*::before,
*::after{
    box-sizing: border-box;
}
html{
    font-family: sans-serif;
    line-height: 1.15;
}
body{
    font-family: 'lato', sans-serif;
    color: var(--text-color);
    font-weight: 300;
    background: var(--base-color);
}
a{
    color: var(--link-color);
    font-weight: 400;
    outline: none;
    text-decoration: none;
    transition: 0.5s;
}

a:hover,
a:focus{
    outline: none;
    text-decoration: none;
}
.p1{
    color: var(--text-color);
}
p{
    padding: 0;
    margin: 0 0 15px 0;
    color: var(--text-color); 
    font-weight: 300;
}
h1,
h2,
h3,
h4,
h5,
h6{
    padding: 0;
    margin: 0 0 15px 0;
    color: var(--text-color);
    font-weight: 700;
}
img{
    width: 100%;
    height: auto;
}
.container{
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.section-title{
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 80px;
    margin-top: 40px;
    text-align: center;
}
.section-title h1{
    display: inline-block;
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 5px;
    position: relative;
}
.section-title h1::before{
    content: '';
    left: 0;
    position: absolute;
    height: 3px;
    right: 32%;
     background-color: var(--primary-color);
    bottom: -5px;

}
.container .section-title h1::before{
    left: 30%;
}
.row{
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.column{
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 100%;
    max-width: 100%;
}
.team{
    margin-bottom:30px ;
}
.team .team-img{
    position: relative;
    font-size: 0;
    text-align: center;
}
.team .team-img img{
    width: 160px;
    height: 250px;
    border-radius: 2%;
    border: 3px solid var(--primary-color);
    object-fit: cover;
}

.team .team-content{
    padding: 80px 20px 20px 20px;
    margin-top: -80px;
    text-align: center;
    background: transparent;
    border-radius: 10px;
}
.team .team-content h2{
font-size: 25px;
font-weight: 400;
letter-spacing: 2px;
}
.team .team-content h3{
    font-size: 16px;
    font-weight: 300;
}
.team .team-content h4{
    font-size: 16px;
font-weight: 300;
letter-spacing: 1px;
font-style: italic;
margin-bottom: 0;
}
.team .team-content p{
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: var(--text-color); 
}
.team .team-social{
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 35px;
    top: 0;
    left:0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0);
    transition: all .3s;
    font-size: 0;
    z-index: 1;
    opacity: 0;
}
.team:hover .team-social{
    opacity: 1;
}
.team .team-social a{
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right:5px ;
    padding: 11px 0 10px 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 16px;
    text-align: center;
    color: var(--button-text);
    border-radius: 10px;
    transition: all .3s;
    margin-top: 50px;
}
.team .team-social a.social-tw{
    background: #00acee;
}
.team .team-social a.social-fb{
    background: #3b5998;
}
.team .team-social a.social-li{
    background: #0e76a8;
}
.team .team-social a.social-in{
    background: #3f729b;
}
.team .team-social a.social-yt{
    background: #c4302b;
}
.team .team-social a:last-child{
    margin-right: 0;
}
.team:hover .team-social a{
    margin-top: 0;
}
.team .team-social a:hover{
    background: #222222;
}


/* Mobile Responsive */
@media (max-width: 767px) {
    .column {
        max-width: 50%; /* For mobile view, 2 profiles in a row */
    }
    hr {
        display: none;
    }
}
@media (min-width: 576px){
    .container{
        max-width: 540px;
    }
    .column{
        max-width: 50%;
    }
    hr {
        display: none;
    }
}
@media (min-width: 768px){
    .container{
        max-width: 720px;
    }
    .column{
        max-width: 33.333333%;
    }
    hr {
        display: none;
    }
}
@media (min-width: 992px){
    .container{
        max-width: 960px;
    }
    .column{
        max-width: 25%;
    }
    hr {
        display: none;
    }
}
@media (min-width: 1200px){
    .container{
        max-width: 1140px;
    }
   
    
}





/* FOOTER */
.copyright{
    background-color: var(--base-variant);
    padding: 10px;
    margin: 0px;
    text-align: center;
    transition: 0.5s;
    color: var(--text-color); 
}

footer{
    bottom: 0px;
    width: 100%;
    position:relative;
}

.copyright:hover{
    font-size: 16.5px;
}

/* Slideshow container */
.slideshow-container {
    max-width: 80%;
    position: relative;
    margin: auto;
  }
  
  /* Hide the images by default */
  .mySlides {
    display: none;
  }
  
  .mySlides img {
    border-radius: 10px;
  }
  
  /* Next & previous buttons */
  .prev,
  .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: var(--text-color);
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
  }
  
  /* Position the "next button" to the right */
  .next {
    right: 0;
    border-radius: 3px 0 0 3px;
  }
  
  /* On hover, add a black background color with a little bit see-through */
  .prev:hover,
  .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  /* Caption text */
  .text {
     color: var(--text-color);
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: var(--text-color);
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
     background-color: var(--secondary-text);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active,
  .dot:hover {
     background-color: var(--primary-color); 
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 1.5s;
  }
  
  @keyframes fade {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }
  
  .slideshow-container {
    max-width: 80%;
  }
  
  /* ---------- Responsive for mobile ---------- */
  
  @media only screen and (min-width:601px) and (max-width: 800px) {
    .events {
      max-width: 100%;
    }
  
    .left img {
      width: 200px;
      height: 200px;
      padding: 0;
      margin-left: 10px;
    }
  }
  
  @media only screen and (min-width: 380px) and (max-width: 600px) {
    .events {
      width: 95%;
      padding: 0;
      margin: 10px;
      box-sizing: border-box;
      margin-bottom: 100px;
    }
  
    .container {
      box-sizing: border-box;
      width: 100%;
      display: block;
      justify-content: center;
      text-align: center;
    }
  
    .left img {
      box-sizing: border-box;
      margin: 30px;
      top: 100px;
    }
  
    .right p {
      box-sizing: border-box;
      padding: 30px;
      bottom: 20px;
    }
  }
  
  @media only screen and (min-width:280px) and (max-width: 379px) {
    .events {
      width: 95%;
      padding: 0;
      margin: 10px;
      box-sizing: border-box;
      margin-bottom: 100px;
    }
  
    .container {
      box-sizing: border-box;
      width: 100%;
      display: block;
      justify-content: center;
      text-align: center;
    }
  
    .left img {
      box-sizing: border-box;
      margin: 30px;
      top: 100px;
      height: 200px;
      width: 200px;
    }
  
    .right p {
      box-sizing: border-box;
      padding: 30px;
      bottom: 20px;
    }
  }
  
  @media only screen and (max-width: 279px) {
    .events {
      width: 95%;
      padding: 0;
      margin: 10px;
      box-sizing: border-box;
      margin-bottom: 100px;
    }
  
    .container {
      box-sizing: border-box;
      width: 100%;
      display: block;
      justify-content: center;
      text-align: center;
    }
  
    .left img {
      box-sizing: border-box;
      margin: 30px;
      top: 100px;
      height: 100px;
      width: 100px;
    }
  
    .right p {
      box-sizing: border-box;
      padding: 30px;
      bottom: 20px;
    }
  }
.row{
  display: flex;
  justify-content: space-evenly;
}
#toggle-button{
    position: fixed;
    top: 18px;
    right: 20px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--button-text);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
}