#clock-section #clock {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#clock-section #clock .clock-item {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  margin: 15px;
  text-align: center;
  position: relative;
  padding: 70px 0px;
}
@media (min-width: 768px) {
  #clock-section #clock .clock-item {
    width: 20%;
  }
}
#clock-section #clock .clock-item span {
  display: inline-block;
  font-size: 40px;
}
#clock-section #clock .clock-item .smalltext {
  font-size: 25px;
}
#clock-section #clock .clock-item .circular-chart {
  display: block;
  margin: 10px auto;
  max-width: 100%;
  max-height: 250px;
  position: absolute;
}
#clock-section #clock .clock-item .circle {
  stroke: #3813c2;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  animation: progress 1s ease-out forwards;
}
#clock-section #clock .clock-item .circle-bg {
  stroke: #ccc;
  fill: none;
  stroke-width: 1.8;
}

.last-date {
  position: absolute;
  width: 25%;
  z-index: 999;
  right: 25px;
  bottom: 25px;
}
.last-date img {
  max-width: 100%;
}

#about-section .button {
  display: block;
  width: 250px;
  padding: 5px 10px;
  text-align: center;
  border-radius: 50px;
  border: 1px #3813c2 solid;
  color: #3813c2;
  transition: all 0.3s ease-in;
  margin: 0 auto;
  font-weight: bold;
}
#about-section .button:hover {
  text-decoration: none;
  background: #3813c2;
  color: white;
}
#about-section ul {
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
#about-section li {
  padding: 20px;
  border-radius: 5px;
  box-shadow: 1px 1px 15px rgba(200, 200, 200, 0.5);
  margin: 10px;
  transition: all 0.1s ease;
  cursor: pointer;
  font-size: 1.5rem;
  color: white;
  background: linear-gradient(45deg, #0075ee 0%, #00adee 50%);
  display: flex;
  flex: 1 1 100%;
  text-align: center;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  #about-section li {
    flex: 1 1 30%;
  }
}
#about-section li:before {
  content: "";
  display: table;
  padding-top: 30%;
}
#about-section li p {
  font-family: "Libre Baskerville", times;
  font-weight: 700;
  font-size: 2.5rem;
}
#about-section li:hover {
  transform: scale(1.05);
}

#benefits .card {
  border-radius: 0px;
  border: none;
  box-shadow: 0px 0px 15px rgba(200, 200, 200, 0.4);
}
#benefits .card h3 {
  margin-bottom: 20px;
  padding: 10px 0px 20px 0px;
  border-bottom: 2px solid #3813c2;
}

#register-section .register-container {
  width: 100%;
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-top: 40px;
}
#register-section .register-container .register-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  filter: drop-shadow(0 0 10px rgba(200, 200, 200, 0.4));
  margin: 0 10px 0 10px;
}
@media (min-width: 768px) {
  #register-section .register-container .register-item {
    width: 30%;
  }
}
#register-section .register-container .register-item .top {
  padding-top: 50px;
  margin-bottom: -1px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  background: #ffffff;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 12px));
          clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 12px));
}
#register-section .register-container .register-item .top .title {
  padding-bottom: 20px;
}
#register-section .register-container .register-item .top .title h3 {
  text-align: center;
}
#register-section .register-container .register-item .bottom {
  height: 100%;
  background: #ffffff;
  -webkit-clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 12px, 100% 100%, 0 100%, 0 12px);
          clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 12px, 100% 100%, 0 100%, 0 12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}
#register-section .register-container .register-item .bottom p {
  padding: 30px 20px 10px;
}
#register-section .register-container .register-item .down {
  background: #ffffff;
  text-align: center;
}
#register-section .register-container .register-item .down .button {
  background: #3813c2;
  display: block;
  margin: 20px 30px 25px;
  padding: 15px;
  color: white;
}
#register-section .register-container .register-item .down .button:hover {
  background: #f20487;
  text-decoration: none;
}

#speaker-section .speakers,
#investor-section .speakers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 768px) {
  #speaker-section .speakers,
#investor-section .speakers {
    justify-content: start;
  }
}
#speaker-section .speakers .speaker-item,
#investor-section .speakers .speaker-item {
  width: 45%;
  padding: 10px;
}
@media (min-width: 768px) {
  #speaker-section .speakers .speaker-item,
#investor-section .speakers .speaker-item {
    width: 25%;
  }
}
#speaker-section .speakers .speaker-item .speaker img,
#investor-section .speakers .speaker-item .speaker img {
  max-width: 100%;
  transition: all 0.1s ease-in;
  filter: grayscale(80%);
  cursor: pointer;
}
#speaker-section .speakers .speaker-item .speaker img:hover,
#investor-section .speakers .speaker-item .speaker img:hover {
  filter: grayscale(0%);
}
#speaker-section .speakers .speaker-item .speaker .desc h4,
#investor-section .speakers .speaker-item .speaker .desc h4 {
  margin-top: 10px;
  text-align: center;
}
#speaker-section .speakers .speaker-item .speaker .desc p,
#investor-section .speakers .speaker-item .speaker .desc p {
  font-size: 12px;
  margin-bottom: 0px;
  text-align: center;
}

#count-section {
  background: #3813c2;
}
#count-section .count {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  width: 90%;
  margin: 0 auto;
}
#count-section .count .cell {
  flex: 0 0 80%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 0.5rem;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  #count-section .count .cell {
    flex: 0 0 30%;
  }
}
#count-section .count .cell:before {
  content: "";
  display: table;
  padding-top: 100%;
}
#count-section .count .cell .item {
  flex-grow: 1;
  background: #3813c2;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#count-section .count .cell .item i {
  font-size: 40px;
}
#count-section .count .cell .item span {
  font-size: 40px;
}
#count-section .count .cell .item h3 {
  color: white;
  text-align: center;
}

#gallery-section {
  padding: 50px 30px;
  background-color: #222;
  text-align: center;
}
#gallery-section label[for] {
  cursor: pointer;
}
#gallery-section input[type=checkbox] {
  display: none;
}
#gallery-section .lightbox {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  min-height: 100%;
  z-index: 1;
  overflow: auto;
  transform: scale(0);
  transition: transform 0.75s ease-out;
}
#gallery-section .lightbox img {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 96%;
  max-height: 96%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
#gallery-section input[type=checkbox]:checked + .lightbox {
  transform: scale(1);
}
#gallery-section input[type=checkbox]:checked ~ .grid {
  opacity: 0.25;
}
#gallery-section .grid {
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #222;
  z-index: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  padding: 16px;
  overflow: auto;
  text-align: center;
  transition: opacity 0.75s;
  margin-bottom: 25px;
}
#gallery-section .grid .grid-item {
  width: 100%;
  display: inline-block;
  padding: 16px;
  opacity: 0.6;
  transition: opacity 0.5s;
}
#gallery-section .grid .grid-item:hover {
  opacity: 1;
}
@media (min-width: 768px) {
  #gallery-section .grid .grid-item {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  #gallery-section .grid .grid-item {
    width: 25%;
  }
}
#gallery-section .grid img {
  max-width: 100%;
  max-height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
#gallery-section .button {
  border: 1px solid white;
  padding: 10px 15px;
  border-radius: 50px;
  color: white;
  transition: all 1s ease;
}
#gallery-section .button:hover {
  text-decoration: none;
  background: white;
  color: #222;
}

#host-section {
  padding-top: 60px;
}
#host-section .hosts {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}
#host-section .hosts .cell {
  flex: 0 0 75%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 0.5rem;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  #host-section .hosts .cell {
    flex: 0 0 25%;
  }
}
#host-section .hosts .cell:before {
  content: "";
  display: table;
  padding-top: 100%;
}
#host-section .hosts .cell .item {
  flex-grow: 1;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#host-section .hosts .cell .item i {
  font-size: 40px;
}
#host-section .hosts .cell .item span {
  font-size: 40px;
}
#host-section .hosts .cell .item h3 {
  color: white;
  text-align: center;
}

#partners-section {
  background: #18053d;
}
#partners-section h2 {
  color: white;
}
#partners-section h4 {
  color: white;
  margin-top: 40px;
  margin-top: 10px;
  font-family: "Blinker", sans-serif;
  text-align: center;
}
#partners-section #partners {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  margin: 0 auto;
}
#partners-section #partners .partner-cover {
  width: 50%;
  padding: 5px;
  cursor: pointer;
  position: relative;
  display: flex;
}
@media (min-width: 768px) {
  #partners-section #partners .partner-cover {
    width: 25%;
    min-width: 277px;
  }
}
#partners-section #partners .partner-cover .partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  margin: 0px 0px 0px 0px;
  padding: 10px 5px 10px 5px;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: rgba(37, 37, 37, 0.35);
  border-radius: 5px 5px 5px 5px;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
}
#partners-section #partners .partner-cover .partner-item:hover {
  border-color: rgba(37, 37, 37, 0.5);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.24);
}
#partners-section #partners .partner-cover .partner-item:hover h3 {
  color: #00aef0;
}
#partners-section #partners .partner-cover .partner-item .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#partners-section #partners .partner-cover .partner-item .logo img {
  width: 100%;
}
#partners-section #partners .partner-cover .partner-item h3 {
  font-family: "Blinker", sans-serif;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

#video-slider {
  height: 80vh;
  position: relative;
}
#video-slider .info-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#video-slider .info-container h3 {
  background: white;
  padding: 0.5rem 1rem;
}
#video-slider .info-container h1 {
  color: white;
  font-size: 6rem;
}
#video-slider .info-container p {
  color: white;
  font-size: 2rem;
  font-weight: bold;
}
#video-slider .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #013367;
  opacity: 0.6;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
#video-slider .register-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 3rem;
}

.home-banner .slide .video-slide {
  background-color: #000;
}

.home-banner.loading .video-background {
  opacity: 0;
}

.video-background {
  position: absolute;
  top: 50%;
  left: 0;
  padding-top: 56.25%;
  width: 100%;
  transform: translateY(-50%);
  transition: 2s opacity ease;
  opacity: 1;
}

.video-foreground,
.video-background iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.popover__wrapper {
  position: relative;
  margin-top: 1.5rem;
  display: inline-block;
}

.popover__content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: -150px;
  transform: translate(0, 10px);
  background-color: #18053d;
  color: white;
  padding: 1.5rem;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  width: auto;
  font-size: 1.5rem;
}

.popover__content:before {
  position: absolute;
  z-index: -1;
  content: "";
  right: calc(50% - 10px);
  top: -8px;
  border-style: solid;
  border-width: 0 10px 10px 10px;
  border-color: transparent transparent #18053d transparent;
  transition-duration: 0.3s;
  transition-property: transform;
}

.popover__wrapper:hover .popover__content {
  z-index: 10;
  opacity: 1;
  visibility: visible;
  transform: translate(0, -20px);
  transition: all 0.5s cubic-bezier(0.75, -0.02, 0.2, 0.97);
}

.kochi {
  display: flex;
  font-size: 1.5rem;
  font-weight: bold;
  justify-content: center;
}

.vertical-center-data {
  min-height: 100%;
  min-height: 100vh;
  align-items: center;
  text-align: center;
  display: flex;
  justify-content: center;
}

/*# sourceMappingURL=home.9c287422.css.map */