* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", serif;
  overflow-y: hidden;
  overflow-x: hidden;
}

@media (max-width: 1024px) {
  * {
    font-family: "Roboto", sans-serif;
  }
}

html {
  overflow-y: scroll !important;
  overflow-x: hidden;
  background-color: rgba(0, 0, 0, 0.05);
}

/* Scrollbar */

::-webkit-scrollbar {
  width: 0.5vw;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}

::-webkit-scrollbar-thumb {
  background: black;
  border: 0.125vw solid rgba(0, 0, 0, 0.2) !important;
  border-radius: 0.625vw;
}

::-webkit-scrollbar-thumb:hover {
  background: #fff;
  cursor: pointer;
}

/* header */
header,
header .navbar,
header .navbar ul,
header .navbar ul li {
  overflow: visible !important;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  width: 100vw;
  height: 10vh;
  box-shadow: 0 0.3vw 0.6vw rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease-in-out;
}

.hidden {
  transform: translateY(-100%);
}

nav {
  height: 100%;
}

header .navbar .nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4vw;
  list-style-type: none;
  height: 100%;
  margin: 0;
  padding: 0;
}

header .navbar .nav-menu li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

header .navbar .nav-menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 1vw;
}

header .navbar .nav-menu li a:hover {
  color: darkred;
}

/* Dropdown Styles */
header .dropdown {
  position: relative;
  overflow: visible;
}

header .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 0 0 0.3vw 0.3vw;
  display: none !important;
  width: 10vw;
  z-index: 1000;
  margin: 0;
  padding: 0 !important;
}

header .dropdown-menu li {
  width: 100%;
  list-style: none;
  padding: 0.5vw;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

header .dropdown-menu li a {
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: black;
  font-size: 1vw;
  display: block;
  padding: 1vh 0;
  transition: color 0.3s ease-in-out;
}

header .dropdown-menu li a:hover {
  color: darkred;
}

header .dropdown a {
  display: flex;
  align-items: center;
}

header .dropdown a div {
  margin-left: 0.5vw;
  transition: transform 0.3s ease-in-out;
}

header .dropdown:hover a div {
  transform: rotate(180deg);
}

header .dropdown:hover .dropdown-menu {
  display: flex !important;
  flex-direction: column;
  gap: 0;
  height: auto !important;
}

/* Logos */
header .acmLogo {
  height: 7vh;
  width: 7vh;
  margin-left: 3vw;
  cursor: pointer;
}

header .tiuLogo {
  height: 7vh;
  width: 7vh;
  margin-left: 1vw;
  cursor: pointer;
}

header .technoLogo {
  height: 5vh;
  width: 35vh;
  margin-right: auto;
  margin-left: 1vw;
  cursor: pointer;
}

/* Register Button */
header nav .reg {
  font-size: 1.1vw;
  font-weight: 700 !important;
  color: #fff !important;
  background-color: rgb(255, 35, 35) !important;
  padding: 1.55vh 2.25vw;
  margin-right: 4vw;
  border-radius: 0.25vw;
  transition: background-color 0.5s ease-in-out, color 0.5s ease-in-out,
    box-shadow 0.5s ease-in-out;
}

header nav .reg:hover {
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
}

header nav .active {
  color: rgb(255, 35, 35) !important;
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-right: 1vw;
}

.hamburger span {
  height: 2px;
  width: 20px;
  background: #000;
  margin: 2px 5px;
  transition: all 0.3s;
}

/* Tablet styles: Devices between 769px and 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header {
    height: 10vh;
    padding: 0 4vw;
  }
  header .acmLogo,
  header .tiuLogo {
    height: 6vh;
    width: 6vh;
    margin-left: 2vw;
  }
  header .technoLogo {
    height: 4.5vh;
    width: auto;
  }
  header .navbar .nav-menu {
    gap: 2vw;
  }
  header .navbar .nav-menu li a {
    font-size: 1.5vw;
  }
  header nav .reg {
    font-size: 1.5vw;
    padding: 1vh 2vw;
  }
  header .dropdown-menu {
    width: 20vw;
  }
}

/* Mobile styles: Devices up to 768px */
@media screen and (max-width: 768px) {
  header {
    flex-direction: row;
    height: auto;
    padding: 1vh 2vw;
  }

  /* Show hamburger and hide nav-menu initially */
  .hamburger {
    display: flex;
  }

  header .navbar .nav-menu {
    display: none;
    position: absolute;
    top: 6.5vh; /* Adjust based on header height */
    right: 0;
    flex-direction: column;
    gap: 2vw;
    width: 40%;
    height: auto;
    background-color: #ffffff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.25);
    z-index: 999;
  }
  .navbar .nav-menu.active {
    display: flex;
  }

  /* Adjust logos for mobile */
  header .acmLogo,
  header .tiuLogo {
    height: 4vh;
    width: 4vh;
    margin-left: 2vw;
  }
  header .acmLogo {
    margin-right: -5vw;
  }
  header .tiuLogo {
    margin-left: auto;
  }
  header .technoLogo {
    height: 2.5vh;
    width: auto;
    margin: 1vh auto;
    margin-left: 2vw;
    display: block;
  }
  /* Center nav items and adjust spacing */
  header .navbar .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 1vh 0;
  }
  header .navbar .nav-menu li a {
    font-size: 3vw;
    font-weight: 400;
  }
  /* Adjust register button for mobile */
  header nav .reg {
    font-size: 3vw;
    padding: 0.8vh 6vw;
    border-radius: 0.5vw;
    margin: 1vh auto;
  }
  /* Dropdown adjustments */
  header .dropdown-menu {
    width: 40vw;
    left: 50%;
    transform: translateX(-50%);
  }
}

/*Previous Events gallery*/

.gallery {
  overflow: hidden; /* Hide images outside the container */
  padding: 0;
  background-color: #f2f2f2;
  padding-top: 10vh;
  margin-top: 10vh;
}

.gallery h2 {
  font-size: 3vw;
  font-weight: 700;
  margin-bottom: 2.5vh;
  text-align: center;
}

.gallery .row {
  overflow: hidden;
  padding-bottom: 1vh;
  background-color: #0d1128;
}

.gallery .row .track {
  width: max-content;
  display: flex;
  flex-wrap: wrap;
  /* Set a long duration for a slow, smooth scroll */
  animation: slide 60s linear infinite;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    /* Moves left by 50% of the total track width, which equals the width of the original set */
    transform: translateX(-50%);
  }
}
.gallery .row img {
  width: 30vw !important;
  height: 30vh !important;
  object-fit: cover;
  /* Optional: add spacing between images */
  margin-right: 0.5vw;
}

/* mobile style */
@media (max-width: 1024px) {
  .gallery {
    padding-top: 6vh;
    margin-top: 0vh;
  }
  .gallery .row img {
    width: 45vh !important;
    height: 45vw !important;
    object-fit: cover;
    margin-right: 0.5vw;
  }
  .gallery .row .track {
    animation: slide 50s linear infinite;
  }
}

/* .container {
  margin-top: 5vh; 
  position: relative; 
  height:  59vw; instead of height: 100vh 
  width: 100vw; 
  overflow: visible; allow content overflow 
   background-color: #0d1128; 
  }  */

/* .bg-video,
.fallback {
   position: absolute; this makes it stay in place during scroll 
  top: 5vh;
  left: 0;
  width: 100vw;
  height: auto;
  object-fit: cover;
  z-index: 0; 
 }  */
/* .sound-toggle {
  position: absolute;
  top: 10%;
  left: 95%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 1.5vw;
  cursor: pointer;
  z-index: 10;
} */

/* .register-btn {
  position: absolute;
  bottom: 6%;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 30px;
  background-color: red;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 1vw;
  cursor: pointer;
  transition: background 0.3s ease;
} */

/* .register-btn:hover {
  background-color: darkred;
} */

/* .countdown {
  width: 100%;
  margin: 0 auto;
  position: absolute;
  text-align: center;
  bottom: 0.5%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2vw;
  color: white;
  letter-spacing: 2px;
  animation: changeColor 0.5s infinite alternate;
} */

/* @keyframes changeColor {
  0% {
    color: #0d1128;
  }
  100% {
    color: red;
  }
} */

/* @media screen and (max-width: 768px) {
  .container {
    height: 57vw;
    width: 100vw;
  }
  
  .bg-video,
  .fallback {
    top: 0;
    width: 100vw;
    height: auto;
  }

  .sound-toggle {
    font-size: 5vw;
    } 

   .register-btn {
    bottom: 16vw;
    padding: 10px 30px;
    font-size: 5vw;
    border-radius: 1vw;
  }

  .countdown {
    bottom: 4vw;
    font-size: 3.5vw;
  } 
}   */

/* .marquee-wrapper {
  background-color: #ffd633;
  overflow: hidden;
  white-space: nowrap;
  padding: 15px 0;
} */

/* .marquee {
  width: max-content;
  display: flex;
} */

/* .track {
  width: max-content;
  display: flex;
  animation: scroll 15s linear infinite;
} */

/* .track span {
  width: max-content;
  display: inline-block;
  font-weight: bold;
  font-size: 1.2vw;
  color: #000;
  margin-right: 50px;
} */

/* @keyframes scroll {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
} */

/* @media screen and (max-width: 768px) {
  .track span {
    font-size: 4.2vw;
    color: #000;
    margin-right: 50px;
  }
} */

.ticket {
  margin: 5vh auto;
  margin-top: 8vh;
  display: flex;
  width: 96vw;
  height: auto;
  background-image: url("../event/ticket-bg.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  color: white;
  position: relative;
}

/* Left Section */
.left {
  flex: 3;
  padding: 4vw;
  padding-left: 10vw;
}

.guests-title {
  font-size: 1.7vw;
  font-weight: 400;
  margin-bottom: 16px;
}

.guests {
  display: flex;
  align-items: start;
  gap: 2vw;
  margin-bottom: 0px;
}

.guests img {
  width: 6vw;
  height: 6vw;
  border: 1px solid #fff;
  border-radius: 50%;
}

.guest {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
  font-size: 1.4vw;
  color: #ccc;
  margin-bottom: 1.5vw;
  width: 12vw;
  text-align: center;
}

.left h1 {
  font-size: 2.4vw;
  margin-bottom: 1vw;
}

.left h2 {
  font-size: 1.5vw;
  font-weight: 500;
  margin-bottom: 1vw;
}

/* .rsvp {
  background: #ffe600;
  color: #000;
  border: none;
  padding: 0.5vw 1.8vw;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1vw;
  margin-bottom: 10px;
} */
.rsvp {
  /* background: #ffe600; */
  color: #fff !important;
  background-color: rgb(255, 35, 35) !important;
  padding: 1.25vh 2.5vw;
  /* margin-right: 4vw; */
  text-decoration: none;
  font-size: 1.25vw;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border-radius: 0.5vw;
  margin-bottom: 0.27vw;
  cursor: pointer;
  box-shadow: 2px 2px 10px rgba(167, 165, 165, 0.5);
  outline: none;
}
.rsvp:hover {
}

.rsvp a {
  text-decoration: none;
  color: inherit;
}

/* Right Section */
.right {
  flex: 1;
  padding: 2vw 4vw;
  padding-right: 5vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.scan-label {
  font-size: 1.2vw;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.qr-code {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 2px solid #fff;
}

.ticket-code {
  font-size: 0.85vw;
  font-weight: bold;
  color: #000;
}

@media screen and (max-width: 768px) {
  /* Stack content vertically */
  .ticket {
    width: 95vw;
    margin: 5vh auto;
  }

  .left {
    padding-left: 10vw;
  }

  /* Adjust Heading sizes */
  .left h1 {
    font-size: 2.5vw;
    margin-bottom: 1vw;
  }
  .left h2 {
    font-size: 1.5vw;
    margin-bottom: 1vw;
  }
  .left h6 {
    font-size: 20px;
  }
  /* Guest Section */
  .guests-title {
    font-size: 2.2vw;
    margin-bottom: 1.2vw;
  }
  .guests {
    justify-content: flex-start;
    margin-bottom: 1vw;
    gap: 8vw;
  }
  .guest {
    font-size: 1.5vw;
    margin-bottom: 1vw;
  }
  .guests img {
    width: 6vw;
    height: 6vw;
  }

  /* RSVP Button */
  .rsvp {
    font-size: 2vw;
    padding: 0.5vw 3vw;
    margin-bottom: 1vw;
    border-radius: 1.15vw;
  }

  /* Right Section Adjustments */
  .right {
    padding-left: 0;
  }
  .scan-label {
    font-size: 2vw;
    margin-bottom: 1vw;
  }
  .qr-code {
    width: 15vw;
    margin-bottom: 2vw;
  }
  .ticket-code {
    font-size: 1.5vw;
  }
}

.guests-section {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 10vh 0;
  padding: 8vh 4vw;
  background-color: #d9d9d9;
}
.guests-section h2 {
  font-size: 3vw;
  font-weight: 700;
  margin-bottom: 5vh;
  text-align: center;
}

.guests-section .guest-circles {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  gap: 2vw;
  flex-wrap: wrap;
}

.guests-section .guest-circles .guest {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5vw;
  font-size: 1vw;
  color: #000;
}

.guests-section .guest-circles img {
  width: 8vw;
  height: 8vw;
  border-radius: 50%;
  border: 2px solid #000;
}

.guests-section .guest-circles img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.guests-section .guest-circles strong {
  font-size: 1.5vw;
  color: #000;
  margin-top: 1vh;
}

.guests-section .guest-circles p {
  font-size: 1vw;
  color: #000;
  margin-top: 0.5vh;
}

/* Mobile Specific Styles */
@media screen and (max-width: 768px) {
  .guests-section .guest-circles .guest {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 90vw;
  }

  .guests-section .guest-circles {
    gap: 4vh;
  }

  .guests-section {
    margin: 5vh 0;
    padding: 6vh 4vw;
  }

  .guests-section .guest-circles .guest {
    font-size: 4vw; /* Increase text size for mobile */
  }

  .guest-circles .guest img {
    width: 25vw;
    height: 25vw;
  }

  .guests-section .guest-circles strong {
    font-size: 5vw;
    margin-top: 2vh;
    text-align: center;
  }

  .guests-section .guest-circles p {
    font-size: 4vw;
    text-align: center;
  }
}

/* About Event Section */
.about {
  background: #f2f2f2;
  padding: 2vh 0;
  margin: 0;
  overflow: hidden;
  padding: 2vh 4vw;
  margin-bottom: 6vh;
}

.about h2 {
  font-size: 3vw;
  color: #1a1a1a;
  margin-bottom: 4vh;
  text-align: left;
  position: relative;
}

.about-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 5vw;
}

.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2vh;
}

.event-poster {
  width: 47%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin: 2vh 1vw;
}

.event-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
  padding: 2vh 1vw;
}

.info-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  /* transform: translateY(-5px); */
  /* box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15); */
}

.info-card.full-width {
  grid-column: 1 / -1;
}

.info-card strong {
  display: block;
  color: #0d1128;
  font-size: 1.5vw;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.info-card p {
  color: #444;
  line-height: 1.6;
  font-size: 1vw;
}

.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlights-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: #444;
  font-size: 1vw;
}

.highlights-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #0d1128;
  font-weight: bold;
}

.date-time {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.date-time i {
  font-size: 1.75vw;
  color: #0d1128;
}

.date-time div {
  font-size: 0.9vw;
  color: #444;
}
.date-time p {
  font-size: 1.25vw;
}
.location {
  font-size: 1.25vw;
  color: #666;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location i {
  font-size: 1.75vw;
  color: #0d1128;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 600px) {
  .about {
    padding: 4vh 4vw;
    margin-bottom: 6vh;
  }

  .about h2 {
    font-size: 6vw;
    text-align: center;
    margin-bottom: 4vh;
  }

  .about-container {
    flex-direction: column;
    align-items: center;
    gap: 3vh;
  }

  .about-content {
    width: 100%;
  }

  .event-poster {
    width: 100%;
    margin: 2vh auto;
  }

  .event-info {
    grid-template-columns: 1fr;
    gap: 2vh;
    padding: 1vh 2vw;
  }

  .info-card {
    padding: 15px;
  }

  .info-card strong {
    font-size: 5vw;
  }

  .info-card p {
    font-size: 3.5vw;
  }

  .highlights-list li {
    font-size: 3.5vw;
    padding-left: 20px;
    margin-bottom: 10px;
  }

  .date-time i,
  .location i {
    font-size: 4vw;
  }

  .date-time div,
  .location div {
    font-size: 3.5vw;
  }
}

/* Footer */
/* Base Footer Styles */
.footer {
  background-color: #0d1128;
  color: #fff;
  padding: 15vh 10vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: auto;
  flex-wrap: wrap;
}

.footer-column {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: center;
  width: max-content;
  margin-bottom: 2vh;
}

.footer-column:nth-last-of-type(1) {
  align-items: flex-end;
}

.footer-column:nth-last-of-type(1) > div {
  width: 100%;
  display: flex;
  justify-content: center !important;
}

.footer-column .title {
  font-size: 1.5vw;
  font-weight: 500;
  margin-bottom: 1.5vh;
  margin-top: 5vh;
  color: #fff;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-column a {
  text-decoration: none;
  color: #fff;
  margin-bottom: 1vh;
  font-size: 1vw;
  font-weight: 400;
  transition: color 0.3s ease;
}

.footer-column:nth-of-type(1) .title {
  font-size: 2vw;
}

.footer-column:nth-of-type(1) a {
  font-size: 1.5vw;
}

.footer-column .social-icons {
  display: flex;
  gap: 10px;
  margin-top: 0;
  color: #fff;
}

.footer-column .social-icons img {
  width: 28px;
  height: 28px;
  cursor: pointer;
  transition: transform 0.3s ease;
  filter: invert(1);
}

.footer-column .social-icons img:hover {
  transform: scale(1.1);
}

.footer-column .title .svg {
  width: 100%;
  height: auto;
  margin-right: 0.5vw;
  margin-bottom: 1vh;
}

.footer-column .title .logo,
.footer-column .title .acmlogo {
  width: 5vw;
  margin-right: 0.5vw;
}

.footer-column .title .name {
  filter: invert(1);
}

.footer-column .email,
.footer-column .address {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  color: #fff;
  margin: 0.5vh 0.25vw;
}

.footer-column .email i,
.footer-column .address i {
  font-size: 1.5vw;
  margin-right: 0.5vw;
  margin-top: 0.5vh;
  color: #fff;
}

#map {
  width: 90%;
  height: 40vh;
  margin-top: 4vh;
}

#map * {
  overflow: visible !important;
}

/* Tablet Styles */
@media (max-width: 1024px) {
  .footer {
    padding: 12vh 8vw;
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
  }
  .footer-column {
    width: 100%;
    align-items: center;
  }
  .footer-column:nth-last-of-type(1) {
    align-items: center;
  }
  .footer-column .title {
    font-size: 2.5vw;
    margin-top: 4vh;
    justify-content: center;
  }
  .footer-column a {
    font-size: 1.75vw;
  }
  .footer-column:nth-of-type(1) .title {
    font-size: 3vw;
  }
  .footer-column:nth-of-type(1) a {
    font-size: 2vw;
  }
  .footer-column .social-icons img {
    width: 32px;
    height: 32px;
  }
  .footer-column .title .logo,
  .footer-column .title .acmlogo {
    width: 7vw;
  }
  .footer-column .email i,
  .footer-column .address i {
    font-size: 2vw;
  }
  #map {
    width: 95%;
    height: 35vh;
    margin-top: 3vh;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .footer {
    padding: 8vh 4vw;
    flex-direction: column-reverse;
    align-items: center;
    text-align: start;
  }
  .footer-column {
    width: 90%;
    align-items: center;
  }
  .footer-column .title {
    font-size: 5vw;
    margin-top: 3vh;
    justify-content: center;
  }
  .footer-column a {
    font-size: 3vw;
    font-weight: 300;
  }

  .footer-column:nth-of-type(1) .title {
    font-size: 5vw;
  }
  .footer-column:nth-of-type(1) a {
    font-size: 4vw;
  }
  .footer-column .social-icons {
    justify-content: center;
  }
  .footer-column .social-icons img {
    width: 24px;
    height: 24px;
  }
  .footer-column .title .logo,
  .footer-column .title .acmlogo {
    width: 15vw;
  }
  .footer-column .email i,
  .footer-column .address i {
    font-size: 4vw;
  }
  #map {
    width: 80%;
    height: 25vh;
    margin-top: 3vh;
  }
}

.openInPC {
  display: none;
}

@media (max-width: 1024px) {
  .openInPC {
    display: block;
    color: #000;
    font-size: 1.5vw;
    font-weight: 600;
    text-align: center;
    background-color: #cfff41;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000000;
  }
}
.ticket .left h6 {
  font-size: 1.85vw;
  font-weight: 400;
  margin-bottom: 1vw;
}
