@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

.container{
    max-width: 2000px;
    margin-left: 40px;
    padding-left: 30px;
    padding-right: 0px;

}

.navigation{
    display: flex;
    align-items: center;
    padding: 20px;
}


nav{
    flex: 1;
    text-align: right;
}

nav ul{
    display: inline-block;
    list-style-type: none;
}
nav ul li{
    display: inline-block;
    margin-right: 80px;
    margin-top:auto;

}

a{
    text-decoration: none;
    color: rgb(37, 37, 37);

}

p{
    color: rgb(0, 0, 0);
}

.dropbtn {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 16px;
  font-size: 16px;
  border: none;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgb(91, 194, 194);
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: rgb(255, 255, 255);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.checkbtn{
  color:rgb(61, 131, 131);
  font-size: 25px;
  cursor: pointer;
  float: right;
  display:none;
}

#check{
  display: none;
}

@media screen and (max-width: 990px){
  nav{
    padding:0px 50px;
  }
  .checkbtn{
    display: block;
  }
  nav .logo p{
    font-size: 30px;
  }
  nav ul{
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    position: fixed;
    top: 75px;
    left: -100%;
    text-align: center;
    transition: 0.4s ease;
  }
  nav ul li{
    display:block;
    margin: block;
    line-height: 20px;
  }
  #check:checked ~ ul{
    left: 0;

  }
}
.dropdown-content a:hover {background-color: rgb(228, 99, 99);}

.dropdown:hover .dropdown-content {display: block;}

.dropdown:hover .dropbtn {background-color: #ffffff;}



.event-title{
  text-decoration: underline;
  font-size: medium;
  text-align: center;
}

.slide-container {
  display: grid;
  place-items: center;
}

.slider {
  height: 250px;
  margin: auto;
  position: relative;
  width: 90%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.slide-track {
  display: flex;
  width: calc(250px * 56);
  animation: scroll 70s linear infinite;
}

.slide-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100%{
    transform: translateX(calc(-250px * 53));
  }
}

.slide {
  height: 200px;
  width: 250px;
  display: flex;
  align-items: center;
  padding: 15px;
  perspective: 100px;
}

.slide img{
  width: 100%;
  transition: transform 1s;
}

.slide img:hover{
  transform: translateZ(20px);
}

.slider::before,
.slider::after {
  background: linear-gradient(to right, rgba(255,255,255,1)0%,
  rgba(255,255,255,0,)100%);
  content: '';
  height: 100%;
  position: absolute;
  width: 15%;
  z-index: 2;
}

.slider::before {
  left: 0;
  top: 0;
}

.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}

.aboutus-btn{
    display: inline-block;
    background: rgb(83, 187, 187);
    color:#fff;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    transition: background 0.5s;
}

.aboutus-btn:hover{
    background: rgb(228, 99, 99);
}

.event-container {
  font-family: "Poppins" ,  sans-serif;
  max-width: 800px;
  margin: 0 auto;
}

.event-container h3.year {
  font-size: 40px;
  text-align: center;
  border-bottom: 1px solid #b1b1b1;
  color:rgb(60, 143, 143);
}

.event-container .event {
  box-shadow: 0px 16px -8px #3d9ea5;
  display: flex;
  border-radius: 8px;
  margin: 32px 0;
}

.event .event-left {
  background: rgb(91, 194, 194);
  min-width: 82px;
  display: flex;
  align-items: center;
  justify-content:center;
  color: rgb(255, 255, 255);
  padding: 8px 48px;
  font-weight: bold;
  text-align: center;
  border-radius: 8px 0 0 08px;
}

.event .event-left .date{
  font-size: 56px;
}

.event .event-left .month{
  font-size: 16px;
  font-weight: normal;
}

.event .event-right {
  display:flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 24px;
}

.event .event-right h3.event-title {
  font-size: 24px;
  margin: 24px 0 10px 0;
  color: rgb(153, 37, 37);
  text-transform: uppercase;
}

.event .event-right .event-timing{
  background: #ebc3c3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  padding: 8px;
  border-radius: 10px;
  margin: 24px 0;
  font-size: 14px;
}

.event .event-right .event-timing img {
  height: 20px;
  padding-right: 8px;
}

@media (max-width: 550px) {
  .event {
    flex-direction: column;
  }

  .event .event-left {
    padding: 0;
    border-radius: 8px 8px 0 0;
  }
}

.past-title h3.event-title {
  font-size: 24px;
  margin: 24px 0 10px 0;
  color: rgb(153, 37, 37);
  text-transform: uppercase;
  text-align: center;
}

img {
  vertical-align: middle;
}

/* Position the image container (needed to position the left and right arrows) */
.container {
  position: relative;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Add a pointer when hovering over the thumbnail images */
.cursor {
  cursor: pointer;
}

/* Next & previous buttons */
.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 40%;
  width: auto;
  padding: 16px;
  margin-top: -50px;
  color: rgb(255, 255, 255);
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
  -webkit-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(175, 91, 91, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* Container for image text */
.caption-container {
  text-align: center;
  background-color: rgb(101, 179, 168);
  padding: 2px 16px;
  color: white;
}


.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Six columns side by side */
.column {
  float: left;
  width: 16.66%;
}

/* Add a transparency effect for thumnbail images */
.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

.aboutus-btn{
  display: inline-block;
  background: rgb(83, 187, 187);
  color:#fff;
  padding: 8px 30px;
  margin: 30px 0;
  border-radius: 30px;
  transition: background 0.5s;
}

.aboutus-btn:hover{
  background: rgb(228, 99, 99);
}

.title{
  text-align: center;
}
.header{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer {
  padding: 40px 0;
  background-color: rgb(182, 221, 221);
}

.footer .social{
  text-align: center;
  padding-bottom: 25px;
  color:#717171;
}

.footer .social a{
  font-size: 24px;
  color: inherit;
  border: 5px solid rgb(182, 221, 221);
  width: 40px;
  height: 40px;
  line-height: center;
  border-radius: 50%;
  margin: 0 8px;
  opacity: 0.75
}

.footer .social a:hover {
  opacity: 0.9;
}

.footer ul {
  margin-top: 0;
  padding: 0;
  list-style: none;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
}

.footer ul li a{
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
}

.footer ul li{
  display: inline-block;
  padding: 0 15px;
}

.footer ul li a:hover{
  opacity: 1;
}

.footer .copyright{
  margin-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #717171;
}


@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}