@import url("https://fonts.googleapis.com/css2?family=Acme&family=Roboto:wght@100;300;700;900&display=swap");
:root {
  --green: #009444;
  --grey: #e6e7e8;
  --yellow: #33377f;
}

* {
  padding: 0;
  margin: 0;
}

body {
  padding: 0;
  margin: 0;
  font-family: "Roboto";
  background-color: white;
}

section {
  width: 100%;
  height: 100%;
}
section .main-header {
  background-image: url(/images/header-15.png);
  background-position: center;
  background-repeat: no-repeat;
  height: -moz-max-content;
  height: max-content;
  margin: 0;
}
section .main-header .header-section {
  margin-left: 1em;
  margin-right: 1em;
  padding-top: 1em;
  height: -moz-max-content;
  height: max-content;
}
section .main-header .header-section .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 2em;
}
section .main-header .header-section .header-container nav ul {
  display: inline-flex;
}
section .main-header .header-section .header-container nav ul li {
  list-style: none;
  margin-right: 2em;
  font-size: 1em;
}
section .main-header .header-section .header-container nav ul li .dropdown {
  display: none;
}
section .main-header .header-section .header-container nav ul li :hover {
  color: #4a9293;
}
section .main-header .header-section .header-container nav ul li a {
  text-decoration: none;
  color: #33377f;
}
section .main-header .header-section .header-container nav ul li:hover .dropdown {
  display: block;
  position: absolute;
  background: var(--green);
  margin-left: -15px;
}
section .main-header .header-section .header-container nav ul li:hover .dropdown ul {
  display: block;
  position: absolute;
  background: #bcbec0;
  height: 6em;
}
section .main-header .header-section .header-container nav ul li:hover .dropdown ul li {
  padding-top: 1em;
  padding-left: 1em;
}
section .main-header .header-section .header-container .event-logo {
  display: block;
}
section .main-header .header-section .header-container .event-logo img {
  height: 70px;
  margin-right: 0.5em;
}
section .main-header .hero-section {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 1em;
}
section .main-header .hero-section .hero-slider {
  background-image: url(/images/DSC_0369.JPG);
  background-size: cover;
  background-position: center;
  padding-bottom: 4em;
  padding-top: 3em;
  transition: 0.5s;
}
section .main-header .hero-section .hero-slider .slider1 {
  margin-left: 1em;
  margin-right: 1em;
  transition: 0.5s;
}
section .main-header .hero-section .hero-slider .slider1 .hero-font {
  font-size: 500%;
  color: white;
  font-weight: 900;
  padding-bottom: 0.5em;
}
section .main-header .hero-section .hero-slider .slider1 .hero-font2 {
  font-size: 350%;
  color: white;
  font-weight: 900;
  padding-bottom: 0.5em;
}
section .main-header .hero-section .hero-slider .slider1 h5 {
  font-size: 1.8em;
  color: white;
  padding-bottom: 0.4em;
}
section .main-header .hero-section .hero-slider .slider1 p {
  color: white;
  font-size: 20px;
  padding-bottom: 2em;
}
section .main-header .hero-section .hero-slider .slider1 button {
  padding: 1em 4em 1em 4em;
  background-color: #499494;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
section .main-header .hero-section .hero-slider .slider1 button a {
  text-decoration: none;
  color: white;
  font-family: "Roboto";
  font-weight: 700;
}
section .main-header .hero-section .hero-slider .slider1 button:hover {
  background-color: #e6e7e8;
  color: #499494;
}

.hamburger {
  position: relative;
  display: block;
  width: 35px;
  cursor: pointer;
  margin-left: 3em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  outline: none;
  border: none;
}

.hamburger .bar, .hamburger:after, .hamburger:before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #33377f;
  margin: 6px 0px;
  transition: 0.4s;
}

.hamburger.is-active:before {
  transform: rotate(-45deg) translate(-8px, 6px);
}

.hamburger.is-active:after {
  transform: rotate(45deg) translate(-9px, -8px);
}

.hamburger.is-active .bar {
  opacity: 0;
}

.mobile-nav {
  display: block;
  position: fixed;
  top: 15%;
  left: 100%;
  right: 0;
  width: 100%;
  min-height: 100vh;
  background-color: #33377f;
  padding-top: 120px;
  transition: 0.4s;
  z-index: 1;
}

.mobile-nav.is-active {
  left: 0;
}

.mobile-nav a {
  display: block;
  text-align: center;
  margin-bottom: 16px;
  padding: 12px 16px;
  background-color: #4a9293;
  text-decoration: none;
  color: white;
}

.mobile-nav a:hover {
  background-color: #dbdbdb;
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
  .hamburger {
    display: none;
  }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .hero-font {
    display: none;
  }
}
.about-section {
  padding-top: 4em;
  padding-bottom: 4em;
}
.about-section .about {
  margin-left: 1em;
  margin-right: 1em;
}
.about-section .about .about-container .about-left h2 {
  font-weight: 800;
  padding-bottom: 1em;
}
.about-section .about .about-container .about-left h2 span {
  color: #4a9293;
}
.about-section .about .about-container .about-right p {
  line-height: 1.5em;
  padding-bottom: 1em;
  font-size: 16px;
}

.highlight-section {
  background-color: #dff4f4;
}
.highlight-section .highlights {
  margin-left: 1em;
  margin-right: 1em;
  padding-top: 4em;
  padding-bottom: 2em;
}
.highlight-section .highlights .highlights-container h2 {
  font-size: 3em;
  color: #4a9293;
}
.highlight-section .highlights .highlights-container .high-container {
  padding-bottom: 1em;
}
.highlight-section .highlights .highlights-container .high-container .high-right {
  margin-top: 2em;
}
.highlight-section .highlights .highlights-container .high-container .high-right p {
  line-height: 1.5em;
  padding-bottom: 2em;
  font-size: 16px;
  margin-bottom: 2em;
}
.highlight-section .highlights .highlights-container .high-container .high-right .butt-1 {
  height: 100px;
}
.highlight-section .highlights .highlights-container .high-container .high-right .butt-1 .but-1 {
  height: 80px;
}
.highlight-section .highlights .highlights-container .high-container .high-right .butt-1 .but-1 a {
  border-style: solid;
  border-color: #4a9293;
  padding: 1em 4em 1em 4em;
  border-radius: 10px;
  border-width: 0.1rem;
  cursor: pointer;
  text-decoration: none;
  color: #499494;
  cursor: pointer;
}
.highlight-section .highlights .highlights-container .high-container .high-right .butt-1 .but-1 a:hover {
  background-color: #499494;
  color: #fff;
}
.highlight-section .highlights .highlights-container .high-container .high-right .butt-1 .but-2 {
  height: 80px;
}
.highlight-section .highlights .highlights-container .high-container .high-right .butt-1 .but-2 a {
  border: none;
  background-color: #499494;
  padding: 1em 3em 1em 3em;
  border-radius: 10px;
  text-decoration: none;
  color: whitesmoke;
  cursor: pointer;
}
.highlight-section .highlights .highlights-container .high-container .high-right .butt-1 .but-2 a:hover {
  background-color: #fff;
  color: #499494;
  border: solid;
  border-color: #499494;
  border-width: 0.1rem;
}
.highlight-section .highlights .highlights-container .high-container .high-right2 {
  width: 100%;
}
.highlight-section .highlights .highlights-container .high-container .high-right2 p {
  line-height: 1.5em;
  padding-bottom: 2em;
  padding-top: 2em;
  width: 80%;
}
.highlight-section .highlights .highlights-container .high-container .high-left2 {
  width: 100%;
  padding-bottom: 2em;
}
.highlight-section .highlights .highlights-container .high-container .high-left2 img {
  max-width: 100%;
  max-width: 100%;
}
.highlight-section .highlights .highlights-container .high-container hr {
  color: var(--green);
  width: 50%;
}

.sponsor-section {
  padding-top: 1em;
  padding-bottom: 3em;
}
.sponsor-section .sponsorship {
  margin-left: 1em;
  margin-right: 1em;
}
.sponsor-section .sponsorship h2 {
  font-size: 2em;
  color: #32357f;
  padding-bottom: 1em;
}
.sponsor-section .sponsorship p {
  padding-bottom: 3em;
}
.sponsor-section .sponsorship .sponsor-container {
  padding-top: 1em;
}
.sponsor-section .sponsorship .sponsor-container .sponsor-left .oppo-spon {
  background-color: #fff;
  margin-bottom: 1em;
  max-width: 100%;
  padding-bottom: 4em;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
}
.sponsor-section .sponsorship .sponsor-container .sponsor-left .oppo-spon img {
  max-width: 100%;
}
.sponsor-section .sponsorship .sponsor-container .sponsor-left .oppo-spon h3 {
  color: black;
  font-size: 1.5em;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 1em;
}
.sponsor-section .sponsorship .sponsor-container .sponsor-left .oppo-spon p {
  padding-bottom: 2em;
  line-height: 1.5em;
  padding-left: 1em;
}
.sponsor-section .sponsorship .sponsor-container .sponsor-left .oppo-spon a {
  color: #499494;
  text-decoration: none;
  border-style: solid;
  border-color: #499494;
  border-radius: 10px;
  border-width: 0.1rem;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 3em;
  padding-right: 3em;
  cursor: pointer;
  margin-left: 1em;
}
.sponsor-section .sponsorship .sponsor-container .sponsor-left .oppo-spon a:hover {
  background-color: #499494;
  color: white;
}

.sponsor-section2 {
  padding-top: 1em;
  padding-bottom: 3em;
}
.sponsor-section2 .sponsorship2 {
  margin-left: 1em;
  margin-right: 1em;
}
.sponsor-section2 .sponsorship2 h2 {
  font-size: 2em;
  color: #32357f;
  padding-bottom: 1em;
}
.sponsor-section2 .sponsorship2 p {
  padding-bottom: 3em;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 {
  padding-top: 1em;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 .spon-cont .packages {
  margin-bottom: 1em;
  padding: 2em 2em 2em 2em;
  background-color: rgb(249, 243, 243);
  max-height: 300px;
  border-radius: 5px;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 .spon-cont .packages h3 {
  color: #499494;
  padding-bottom: 1em;
  font-size: 1.5em;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 .spon-cont .packages li {
  margin-left: 1.5em;
  list-style: square;
  padding-bottom: 0.5em;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 .spon-cont .packages a {
  color: #499494;
  margin-top: 3em;
  text-decoration: underline;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 .spon-cont .packages a:hover {
  color: #32357f;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 .spon-cont2 .cont2 {
  width: 100%;
  padding-bottom: 2em;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 .spon-cont2 .cont2 img {
  max-width: 100%;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 .spon-cont2 .cont3 {
  padding-top: 1em;
  padding-bottom: 1em;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 .spon-cont2 .cont3 .cont3-a {
  padding-bottom: 5em;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 .spon-cont2 .cont3 .cont3-a h2 {
  font-size: 1.8em;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 .spon-cont2 .cont3 .cont3-a p {
  padding-bottom: 1em;
  margin-bottom: 1em;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 .spon-cont2 .cont3 .cont3-a a {
  padding: 1em 5em 1em 5em;
  cursor: pointer;
  background-color: #499494;
  border: none;
  border-radius: 5px;
  color: white;
  text-decoration: none;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 .spon-cont2 .cont3 .cont3-a a:hover {
  background-color: white;
  border: solid;
  border-color: #4a9293;
  border-width: 0.5px;
  color: #499494;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 form {
  width: 100%;
  /* Popup container */
  /* Popup content */
  /* Close button */
}
.sponsor-section2 .sponsorship2 .sponsor-container2 form .form-group {
  margin-bottom: 15px;
  max-width: 100%;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 form .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 form .form-group input[type=text],
.sponsor-section2 .sponsorship2 .sponsor-container2 form .form-group input[type=email],
.sponsor-section2 .sponsorship2 .sponsor-container2 form .form-group input[type=url],
.sponsor-section2 .sponsorship2 .sponsor-container2 form .form-group input[type=file],
.sponsor-section2 .sponsorship2 .sponsor-container2 form .form-group input[type=number],
.sponsor-section2 .sponsorship2 .sponsor-container2 form .form-group input[type=tel] {
  padding: 10px;
  width: 95%;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 form .form-group textarea {
  width: 100%;
  height: 200px;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 form .form-group #mouAgreement {
  width: 100%;
  height: 3em;
  padding-left: 1em;
  font-family: "Roboto";
}
.sponsor-section2 .sponsorship2 .sponsor-container2 form .form-group .radio-group {
  display: flex;
  flex-direction: column;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 form .form-group .radio-group label {
  margin-bottom: 10px;
  font-weight: normal;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 form .popup {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
  z-index: 1000; /* Sit on top */
}
.sponsor-section2 .sponsorship2 .sponsor-container2 form .popup-content {
  background-color: #fff;
  margin: 5% auto; /* Centered with some top margin */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Width of the popup */
  max-width: 500px; /* Maximum width */
  border-radius: 8px;
  position: relative;
  max-height: 80vh; /* Maximum height relative to the viewport */
  overflow-y: auto; /* Enable vertical scrolling */
}
.sponsor-section2 .sponsorship2 .sponsor-container2 form .close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  font-weight: bold;
  color: #888;
  cursor: pointer;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 form .close:hover {
  color: #000;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 form button {
  width: 100%;
  padding: 10px;
  background-color: #499494;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 2em;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 form button:hover {
  background-color: #dff4f4;
  color: #499494;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 form .nda {
  padding-top: 2em;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 form .nda a {
  color: #32357f;
  font-weight: bold;
  font-style: italic;
}
.sponsor-section2 .sponsorship2 .sponsor-container2 form .nda a:hover {
  color: #499494;
}

.venue-section {
  padding-top: 3em;
  padding-bottom: 3em;
  background-color: #33377f;
  color: white;
}
.venue-section .venue {
  margin-left: 1em;
  margin-right: 1em;
}
.venue-section .venue .venue-container .venue-left {
  padding-bottom: 2em;
}
.venue-section .venue .venue-container .venue-left img {
  max-width: 100%;
  max-height: 100%;
}
.venue-section .venue .venue-container .venue-right {
  padding-bottom: 2em;
}
.venue-section .venue .venue-container .venue-right .prog-venue {
  padding-bottom: 3em;
}
.venue-section .venue .venue-container .venue-right .prog-venue h3 {
  font-size: 1.5em;
  padding-bottom: 0.3em;
}
.venue-section .venue .venue-container .venue-right .prog-venue p {
  line-height: 1.5em;
  padding-bottom: 1em;
}
.venue-section .venue .venue-container .venue-right .prog-venue ul {
  padding-left: 2em;
}

.contact-section {
  padding-top: 4em;
  padding-bottom: 4em;
}
.contact-section .contact {
  margin-left: 1em;
  margin-right: 1em;
}
.contact-section .contact .contact-container .form {
  width: 100%;
  padding-bottom: 6em;
  margin: auto;
}
.contact-section .contact .contact-container .form label {
  font-size: 18px;
}
.contact-section .contact .contact-container .form label input {
  padding-top: 1em;
  padding-bottom: 1em;
  width: 95%;
  margin-bottom: 2em;
  border-style: solid;
  border-radius: 5px;
  padding-left: 0.5em;
}
.contact-section .contact .contact-container .form label textarea {
  width: 95%;
  border-radius: 5px;
  resize: none;
  border-style: solid;
  padding-left: 0.5em;
  height: 200px;
  margin-bottom: 2em;
}
.contact-section .contact .contact-container .form .btn-submit {
  padding: 1em 4em;
  border: none;
  cursor: pointer;
  font-family: "Roboto";
  font-weight: 700;
  border-radius: 5px;
  background-color: #499494;
  color: #fff;
}
.contact-section .contact .contact-container .form .btn-submit:hover {
  background-color: whitesmoke;
  color: #32357f;
}
.contact-section .contact .contact-container .address h4 {
  font-size: 20px;
}
.contact-section .contact .contact-container .address img {
  height: 60px;
  padding-bottom: 2em;
}
.contact-section .contact .contact-container .address p {
  padding-bottom: 1em;
  line-height: 1.5em;
}

.socials-section {
  padding-top: 3em;
  padding-bottom: 1em;
  background-color: white;
}
.socials-section .socials-container {
  margin-left: 1em;
  margin-right: 1em;
}
.socials-section .socials-container .con-tact {
  padding-bottom: 1em;
}
.socials-section .socials-container .con-tact .t-1 {
  padding-bottom: 2em;
}
.socials-section .socials-container .con-tact .t-1 h3 {
  font-size: 1.5em;
  padding-bottom: 0.5rem;
  color: #4a9293;
}
.socials-section .socials-container .con-tact .t-1 li {
  list-style: none;
  padding-bottom: 0.5em;
}
.socials-section .socials-container .con-tact .t-1 li a {
  text-decoration: none;
  color: #33377f;
  cursor: pointer;
}
.socials-section .socials-container .con-tact .t-1 li a:hover {
  color: #499494;
}
.socials-section .socials-container .con-tact .t-2 {
  padding-bottom: 2em;
}
.socials-section .socials-container .con-tact .t-2 h3 {
  font-size: 1.5em;
  padding-bottom: 0.5rem;
  color: #4a9293;
}
.socials-section .socials-container .con-tact .t-2 h4 {
  font-weight: 400;
  padding-bottom: 0.5rem;
}
.socials-section .socials-container .con-tact .t-3 {
  padding-bottom: 2em;
}
.socials-section .socials-container .con-tact .t-3 h3 {
  font-size: 1.5em;
  padding-bottom: 0.5rem;
  color: #4a9293;
}
.socials-section .socials-container .con-tact .t-3 img {
  max-width: 70%;
}
.socials-section .socials-container .con-tact .t-4 .fa {
  padding: 20px;
  font-size: 30px;
  width: 20px;
  text-decoration: none;
  color: #499494;
}
.socials-section .socials-container .con-tact .t-4 .fa:hover {
  color: #32357f;
}

.footer-section {
  background-color: #32357f;
  color: white;
  padding-top: 1em;
  padding-bottom: 3em;
}
.footer-section footer {
  text-align: center;
  margin-left: 1em;
  margin-right: 1em;
}
.footer-section footer .footer-container p {
  padding-bottom: 1em;
}
.footer-section footer .footer-container p a {
  text-decoration: none;
  color: #499494;
  font-weight: bold;
}

@media only screen and (min-width: 896px) {
  .hero-section {
    display: block;
    max-width: 100%;
    margin: auto;
    height: 610px;
  }
  .hero-section .hero-slider {
    width: 100%;
    height: 100%;
    text-align: center;
    padding-bottom: 3em;
    padding-top: 3em;
  }
  .hero-section .hero-slider .hero-font2 {
    display: none;
  }
  .about-container {
    display: flex;
    width: 100%;
    justify-content: center;
  }
  .about-container .about-left {
    width: 90%;
  }
  .about-container .about-left h2 {
    font-size: 3em;
  }
  .about-container .about-right {
    width: 90%;
  }
  .about-container .about-right p {
    font-size: 15px;
  }
  .highlights-section {
    margin-bottom: 2em;
  }
  .highlights-section .highlights {
    padding-bottom: 7em;
    height: 100%;
  }
  .high-container {
    display: flex;
  }
  .high-container .high-left {
    width: 100%;
    height: 540px;
    margin-right: 2em;
    padding-top: 2em;
    padding-bottom: 2em;
  }
  .high-container .high-right {
    width: 100%;
    margin-left: 2em;
    padding-top: 2em;
    padding-bottom: 2em;
  }
  .sponsorship h2 {
    text-align: center;
  }
  .sponsor-container {
    display: flex;
  }
  .sponsor-container .sponsor-left {
    width: 100%;
    margin: 1em;
  }
  .sponsor-tab {
    width: 100%;
  }
  .sponsor-tab .sponsortab-container {
    display: flex;
    width: 80%;
    margin: auto;
  }
  .sponsor-tab .sponsortab-container .table {
    margin-right: 3em;
    width: 40%;
  }
  .venue-container {
    display: flex;
    align-items: center;
  }
  .venue-container .venue-left {
    width: 100%;
  }
  .venue-container .venue-right {
    width: 100%;
  }
  .venue-container .venue-right h4 {
    max-width: 70%;
  }
  .venue-container .venue-right p {
    max-width: 100%;
  }
  .partners-container {
    display: flex;
    justify-content: center;
  }
  .partners-container .partner-logo {
    padding: 2em;
  }
  .partners-container2 {
    display: flex;
    justify-content: center;
  }
  .partners-container2 .partner-logo {
    padding: 2em;
  }
  .contact-container {
    display: flex;
    max-width: 100%;
    margin: auto;
  }
  .contact-container .form {
    width: 100%;
    padding: 2em;
  }
  .contact-container .form textarea {
    height: 200px;
  }
  .contact-container .address {
    width: 100%;
    padding: 2em;
  }
  .socials-section .socials-container {
    width: 80%;
    margin: auto;
  }
  .socials-section .socials-container .socials {
    width: 40%;
  }
}
@media only screen and (min-width: 1200px) {
  body {
    font-size: 100%;
  }
  .hero-font2 {
    display: none;
  }
  .header-container .event-logo img {
    height: 80px;
    margin-right: 0.5em;
  }
  .hero-section {
    display: block;
    max-width: 100%;
    margin: auto;
    height: 610px;
  }
  .hero-section .hero-slider {
    width: 100%;
    height: 100%;
    text-align: center;
    padding-bottom: 3em;
    padding-top: 3em;
  }
  .hero-section .hero-slider .hero-font2 {
    display: none;
  }
  .hero-section .hero-slider .slider1 {
    padding-top: 4em;
  }
  .hero-section .hero-slider .hero-font {
    width: 70%;
    margin: auto;
  }
  .about-container {
    max-width: 90%;
    margin: auto;
  }
  .about-container .about-left {
    padding: 2em;
  }
  .about-container .about-left h2 {
    line-height: 5rem;
    font-size: 5em;
  }
  .about-container .about-right {
    padding: 2em;
  }
  .highlights-container {
    max-width: 70%;
    margin: auto;
    text-align: center;
  }
  .highlights-container .high-right {
    padding: 0;
    margin: 0;
    text-align: center;
  }
  .highlights-container .high-right .butt-1 {
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  .highlights-container .high-right .butt-1 .but-1 {
    margin-bottom: 0;
  }
  .highlights-container .high-right .butt-1 .but-2 {
    margin-top: 0;
  }
  .highlights-container .special {
    margin-top: 2em;
    margin-bottom: 2em;
  }
  .sponsor-container {
    max-width: 90%;
    margin: auto;
  }
  .sponsor-container .sponsor-left {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 10px;
  }
  .sponsor-container .sponsor-left .oppo-spon {
    align-content: center;
  }
  .sponsorship {
    padding-top: 3em;
    padding-bottom: 2em;
  }
  .sponsor-section2 .sponsorship2 .sponsor-container2 h2 {
    text-align: center;
  }
  .sponsor-section2 .sponsorship2 .sponsor-container2 p {
    text-align: center;
    width: 70%;
    margin: auto;
  }
  .sponsor-section2 .sponsorship2 .sponsor-container2 .spon-cont {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    gap: 10px;
    width: 80%;
    margin: auto;
  }
  .sponsor-section2 .sponsorship2 .sponsor-container2 .spon-cont .packages {
    margin-bottom: 0%;
  }
  .sponsor-section2 .sponsorship2 .sponsor-container2 .spon-cont2 {
    margin: auto;
  }
  .sponsor-section2 .sponsorship2 .sponsor-container2 .spon-cont2 .cont3 {
    width: 100%;
    padding-top: 3em;
    display: flex;
    gap: 15px;
    justify-content: center;
  }
  .sponsor-section2 .sponsorship2 .sponsor-container2 .spon-cont2 .cont3 .cont3-a {
    text-align: center;
    width: 300px;
    border: solid;
    border-color: #499494;
    border-width: 0.1em;
    height: 250px;
    padding: 1em 2em 1em 2em;
    align-content: center;
  }
  .venue-container {
    max-width: 80%;
    margin: auto;
  }
  .venue-container .venue-left img {
    width: 65%;
  }
  .partners-container {
    max-width: 70%;
    margin: auto;
  }
  .partners-container2 {
    max-width: 70%;
    margin: auto;
  }
  .contact-container {
    width: 80%;
    margin: auto;
  }
  .contact-container .address {
    margin-left: 2em;
  }
  .con-tact {
    display: flex;
    width: 100%;
  }
  .con-tact .t-1 {
    width: 100%;
  }
  .con-tact .t-2 {
    width: 100%;
  }
  .con-tact .t-3 {
    width: 100%;
  }
  .con-tact .t-3 img {
    width: 30%;
    padding-right: 1em;
  }
  .con-tact .t-4 {
    display: flex;
  }
  .con-tact .t-4 .fa {
    padding: 10px;
    font-size: 30px;
    width: 10px;
    text-decoration: none;
    color: #499494;
  }
  .sponsor-section2 .sponsorship2 .sponsor-container2 {
    padding-top: 4em;
    padding-bottom: 4em;
  }
  .sponsor-section2 .sponsorship2 .sponsor-container2 form {
    width: 50%;
    margin: auto;
  }
}
.sponsor-op {
  background-color: #4a9293;
}
.sponsor-op .header-text {
  padding-top: 4em;
  padding-bottom: 4em;
  margin-left: 1em;
  margin-right: 1em;
  text-align: center;
  color: white;
}
.sponsor-op .header-text h2 {
  font-size: 1.5em;
}

.sponsor-tab {
  padding-top: 4em;
}
.sponsor-tab .sponsortab-container {
  margin-left: 1em;
  margin-right: 1em;
}
.sponsor-tab .sponsortab-container .table {
  background-color: var(--grey);
  margin-bottom: 1em;
  padding-left: 1em;
  padding-right: 1em;
}
.sponsor-tab .sponsortab-container .table img {
  height: 20px;
  float: right;
  cursor: pointer;
  padding-top: 0.9em;
}
.sponsor-tab .sponsortab-container .table h4 {
  font-size: 20px;
  padding-bottom: 1em;
  padding-top: 1em;
}
.sponsor-tab .sponsortab-container .table .table-slot {
  padding-bottom: 2em;
}
.sponsor-tab .sponsortab-container .table .table-slot h5 {
  font-size: 1.2em;
  padding-bottom: 1em;
}
.sponsor-tab .sponsortab-container .table .table-slot p {
  line-height: 1.5em;
  padding-bottom: 1em;
}

.gallery-section {
  margin-left: 1em;
  margin-right: 1em;
}

.gallery-container {
  width: 80%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding-top: 4em;
  padding-bottom: 4em;
}
.gallery-container .gallery-show {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 30px;
  width: 100%;
}
.gallery-container .gallery-show img {
  width: 100%;
}

@media only screen and (min-width: 1200px) {
  .map-section .map-container {
    width: 100%;
    margin: 0;
    display: block;
    align-items: center;
    justify-content: center;
  }
  .map-section .map-container .map-frame {
    width: 80%;
    margin: auto;
  }
}
.speakers {
  box-sizing: border-box;
}
.speakers .speakers-section {
  width: 80%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding-top: 4em;
  padding-bottom: 4em;
}
.speakers .speakers-section .speakers-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
  width: 100%;
}
.speakers .speakers-section .speakers-container .speaker-box {
  width: 100%;
  padding-bottom: 1em;
  background-color: #32357f;
  margin-bottom: 2em;
  border-radius: 0 0 1em 1em;
}
.speakers .speakers-section .speakers-container .speaker-box img {
  max-width: 100%;
}
.speakers .speakers-section .speakers-container .speaker-box .speaker-content {
  color: white;
  text-align: center;
  padding: 1em;
}
.speakers .speakers-section .speakers-container .speaker-box .speaker-content p {
  padding-bottom: 1em;
}

.video-section .video-container {
  margin-left: 1em;
  margin-right: 1em;
  padding-top: 4em;
  padding-bottom: 4em;
}
.video-section .video-container .video-box {
  width: 100%;
}
.video-section .video-container .video-box iframe {
  max-width: 100%;
}

@media only screen and (min-width: 896px) {
  .video-container {
    margin: auto;
    align-content: center;
    align-items: center;
  }
  .video-container .video-box {
    text-align: center;
    width: 200%;
  }
  .video-container .video-box iframe {
    max-width: 200%;
  }
}
@media only screen and (min-width: 1200px) {
  .video-container {
    margin: auto;
    align-content: center;
    align-items: center;
  }
  .video-container .video-box {
    text-align: center;
    width: 200%;
  }
  .video-container .video-box iframe {
    max-width: 200%;
  }
}/*# sourceMappingURL=main.css.map */