:root {
  --clr-neon-btn: #0fa;
}
@keyframes shadowanime {
  50% {
    box-shadow: 0 0 2rem #fff;
  }
}
@keyframes btnRound {
  0% {
    transform: translateY(-60%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(+60%);
    opacity: 0;
  }
}
/********************************/
/* HEADER */
/********************************/

.header {
  width: 100%;
  padding: 2.4rem 0 2.4rem 4.6rem;
  display: flex;
  justify-content: end;
  align-items: center;

  position: absolute;
  z-index: 2;
  /* background-color: #000; */
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 3.6rem;
}

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
}

.main-nav-link {
  text-decoration: none;
  text-transform: capitalize;
  color: #fff;
  font-weight: 700;
  padding: 1rem 3.6rem;
  font-size: 1.8rem;
  transition: all 0.3s;
  position: relative;
}

/* .main-nav-link::after {
  content: "";
  width: 6rem;
  height: 2px;
  background-color: #444;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: none;
} */

.main-nav-link:hover {
  color: #aaa;
}

/* .main-nav-link:hover.main-nav-link::after {
  display: inline-block;
} */

.btn-main-nav {
  border-top-left-radius: 3.2rem;
  border-bottom-left-radius: 3.2rem;
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: capitalize;
  background: none;
  color: #f7f7f7;
  border: 2px solid #f7f7f7;
  border-right: transparent;
}

.btn-main-nav:hover {
  background-color: #f7f7f7;
  color: #4ca5e8;
}

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
  z-index: 1000;
}

.icon-mobile-nav {
  font-size: 2.6rem;
  color: #b4b4b4;
  border: none;
  font-weight: 700;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}

/********************************/
/* HERO */
/********************************/

.section-hero {
  background-color: #000;
  background-image: url("../img/heroBg.jpg");
  background-size: cover;
  height: 100vh;
  min-height: 80rem;

  position: relative;
  overflow: hidden;
  z-index: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.pseudo-bg {
  /* background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.36),
    rgba(0, 0, 0, 0.119)
  ); */
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
}

.hero-text-container {
  background-color: rgba(255, 255, 255, 0.762);
  background: linear-gradient(to right, #f7f7f7ca 30%, rgba(68, 68, 68, 0));
  width: 100%;
  padding: 4.2rem 3rem 4.2rem 8.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
}
.text-wrap {
  width: 60%;
}

.logo-wrap {
  background-color: #fff;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translate(50%, -50%);
  box-shadow: 0 0 1rem rgba(255, 255, 255, 0.626);
  animation: shadowanime 3s infinite;
}

.logo-wrap img {
  height: 5rem;
}

.heading-hero {
  font-size: 5.2rem;
  color: #444;
  font-weight: 400;
  position: relative;
}

.section-hero .heading-secondary {
  font-size: 3.6rem;
  letter-spacing: 1px;
  color: #0673c8;
  font-weight: 400;
  margin-bottom: 2rem;
}

.hero-btn-wrap {
  display: flex;
  gap: 3rem;
  margin-top: 4.6rem;
}

.btn-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  outline: 1px solid rgba(68, 68, 68, 0.108);
  outline-offset: -1px;
  color: #444;
  background-color: #fff;
}

.btn-live:hover {
  background-color: rgba(207, 207, 207, 0.079);
  color: #000;
}

.btn-meta {
  letter-spacing: 1px;
  font-weight: lighter;
  outline: none;
  color: #444;
  box-shadow: 0 0 1rem #4ca4e8af;
  position: relative;
  transition: all 100ms linear !important;
}

.btn-meta:hover,
.btn-meta:focus {
  background: #4ca5e8;
  box-shadow: 0 0 1rem #4ca5e8;
  outline: transparent;
}

.btn-meta:hover.btn-meta a,
.btn-meta:focus.btn-meta a,
.btn-meta:hover.btn-meta i,
.btn-meta:focus.btn-meta i {
  color: #fff;
  text-shadow: none;
}

.btn-meta:hover::after {
  opacity: 1;
}

.btn-round {
  text-decoration: none;
  color: #f7f7f7;
  background-color: transparent;
  border: 2px solid #f7f7f7;
  height: 6rem;
  width: 4rem;
  border-radius: 20rem;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;

  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}

.btn-round i {
  animation: btnRound 1.3s infinite;
}

.btn-wrap {
  width: 17rem;
  height: 6rem;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0 3rem 0 4rem;
  border-radius: 3.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;

  position: absolute;
  top: 5%;
  left: 5%;
}

.btn-wrap img {
  width: 100%;
  transform: translateX(-20%);
}

.btn-wrap button {
  border: none;
  transform: translateX(-80%);
  background-color: #f7f7f7;
  padding: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
  transition: all 0.3s;
}

.btn-wrap button:hover {
  background-color: #4ca5e8;
}

.btn-wrap:hover.btn-wrap i {
  color: #f7f7f7;
}

.btn-wrap i {
  font-size: 1.8rem;
  color: #4ca5e8;
  transition: all 0.3s;
}

/********************************/
/* ABOUT */
/********************************/

.section-about {
  padding: 9.6rem 0;
  background-color: #f7f7f7;
  overflow-x: hidden;
}

.section-about .grid--2--cols {
  height: 100%;
  margin-bottom: 6.4rem;
  gap: 4.6rem;
}

.section-about h1 {
  text-align: center;
  margin-bottom: 4.6rem;
}

.about-text-container {
  position: relative;
  /* padding: 0 4.6rem; */
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-text-wrap {
  width: 70%;
}

h1 .logo {
  height: 7.2rem;
}

.para-regular {
  color: #444;
  font-size: 1.6rem;
  line-height: 1.6;
}

.btn-more {
  margin-top: 4.6rem;
  color: #444;
  background-color: #f7f7f7;
  border: 1px solid #444;
  transition: all 0.3s;
}

.btn-more:hover {
  background-color: #25aae3b1;
  color: #f7f7f7;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.257);
  border: 1px solid transparent;
}

.about-img-container {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}
.about-img {
  width: 100%;
  display: block;
}

.banner-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #244298;
  padding: 1.8rem 0;
  outline: 5rem solid #4ca4e819;
}
.banner {
  width: 55%;
}

.btn-about {
  background-color: #4ca5e8;
  color: #f7f7f7;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.btn-about:hover {
  background-color: #0673c8;
}

/********************************/
/* EVENT */
/********************************/

.section-event {
  padding: 9.6rem 0;
}

.section-event .heading-primary img {
  height: 10rem;
}

.section-event .heading-primary {
  margin-bottom: 3.2rem;
}

.section-event .heading-secondary {
  margin-bottom: 3.2rem;
  color: #0673c8;
}

.cards-container {
  margin-top: 8.4rem;
}

.section-event .grid--3--cols {
  gap: 4.6rem;
}

.cards-container {
  position: relative;
}

.outer-ring {
  padding: 10rem;
  background-color: #4ca4e819;
  border-radius: 50%;
  height: 50rem;
  width: 50rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.inner-ring {
  background-color: #fff;
  border-radius: 50%;
  height: 100%;
  width: 100%;
}

.outer-ring-2 {
  display: none;
  padding: 10rem;
  background-color: #4ca4e819;
  border-radius: 50%;
  height: 40rem;
  width: 40rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.card {
  outline: 3px solid #4ca4e848;
  aspect-ratio: 1/1;
  padding: 2rem;
  border-radius: 0.4rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.052);
  transition: all 0.3s;
  backdrop-filter: blur(50px);
}

.card:hover {
  box-shadow: 0 0 1.6rem rgba(0, 0, 0, 0.177);
}

.card .heading-tertiary {
  font-size: 2rem;
  color: #444;
  margin-bottom: 3rem;
  text-align: center;
}

.card .para-light {
  font-size: 1.4rem;
  line-height: 1.6;
}

.trans-right {
  transform: translateX(55%);
}

/********************************/
/* META SECTION */
/********************************/

.section-meta {
  padding: 6.4rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/bgs.jpg");
}

.section-meta .btn-meta:hover {
  background-color: #f00;
  box-shadow: 0 0 1rem #f00;
}

/********************************/
/* CONTACT */
/********************************/

.section-contact {
  padding: 4.6rem;
  background-color: #000;
  position: relative;
}

.section-contact::before {
  content: "";
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #f00, #ff0, #0f0);
  position: absolute;
  top: 4px;
  left: 0;
  right: 0;
}

.outer-grid {
  gap: 4.6rem;
}
.inner-grid {
  gap: 2.4rem;
}
.contact-child-container {
}
.contact-heading {
  color: #f7f7f7;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1.6rem;
  text-transform: capitalize;
}
.contact-heading:not(:first-child) {
  margin-top: 2.4rem;
}
.contact-para {
  color: #aaa;
  font-size: 1.4rem;
  line-height: 1.6;
}
.contact-para a {
  display: block;
  text-decoration: none;
  color: #4ca5e8;
}
.address-para {
}

.social-container {
  display: flex;
  gap: 2rem;
  margin-top: 4.2rem;
}

.social-container a {
  text-decoration: none;
  font-size: 2rem;
  color: #aaa;
  transition: all 0.3s;
}

.social-container a:hover {
  color: #4ca5e8;
}

.location-wrap {
}

.map-wrap {
  height: 30rem;
  /* overflow: hidden; */
}

.map-wrap iframe {
  height: 100%;
  width: 100%;
  border-radius: 0.225rem;
  outline: 1px solid #f7f7f7;
  outline-offset: 2px;
}

/********************************/
/* FOOTER */
/********************************/

.footer {
  background-color: #333;
}

.footer-para {
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  padding: 0.4rem;
}
.footer-para a {
  color: #4ca5e8;
  text-decoration: none;
}
