body {
  font-family: "Poppins", sans-serif;
}

header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1000;
  padding: 1.5rem 0;
}
header .container,
header .container-fluid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
}
@media (max-width: 767px) {
  header .container,
  header .container-fluid {
    padding: 0 1rem;
  }
}
header nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (max-width: 1199px) {
  header nav {
    display: none;
  }
}
header nav .link {
  background-color: rgba(255, 255, 255, 0);
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  padding: 0.64rem 0.9rem;
  border-radius: 0.8rem;
  transition: all 0.3s ease-in-out;
  font-style: italic;
}
header nav .link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
header nav .active {
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: 800;
  backdrop-filter: blur(24px);
  border: thin solid rgba(255, 255, 255, 0.1);
}
header .header-cta {
  display: flex;
  align-items: center;
  gap: 2rem;
}
header .header-cta .main-cta {
  padding: 1rem 1.8rem;
  border-radius: 1rem;
  background-color: #04254B;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-weight: bolder;
  font-style: italic;
  display: flex;
  gap: 1rem;
}
header .header-cta .main-cta:hover {
  background-color: rgb(1.417721519, 13.1139240506, 26.582278481);
  color: #fff;
}
header .header-cta .menu-btn {
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: end;
  background-color: transparent;
  outline: none;
  border: none;
}
@media (max-width: 1199px) {
  header .header-cta .menu-btn {
    display: flex;
  }
}
header .header-cta .menu-btn::after, header .header-cta .menu-btn::before {
  content: "";
  display: block;
  position: relative;
  height: 2px;
  width: 100%;
  background-color: #000000;
  filter: invert(1);
}
header .header-cta .menu-btn::after {
  width: 80%;
}

.backdrop {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  top: 0;
  opacity: 1;
  /*  where the real magic happens  */
  backdrop-filter: blur(30px);
  background: linear-gradient(#000000, transparent);
  -webkit-mask-image: linear-gradient(rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 70%, rgba(0, 0, 0, 0) 100%);
          mask-image: linear-gradient(rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 70%, rgba(0, 0, 0, 0) 100%);
}

.hero-section {
  position: relative;
  min-height: 1080px;
  background-color: #000000;
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
  overflow: hidden;
}
.hero-section .bg-media {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.hero-section .bg-media img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hero-section .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 3;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.9));
  display: flex;
  align-items: end;
  padding: 1rem 0 16rem;
  border-bottom-left-radius: 3rem;
  border-bottom-right-radius: 3rem;
}
.hero-section .caption h1, .hero-section .caption p {
  font-style: italic;
  color: #fff;
}
.hero-section .caption h1 {
  font-weight: 800;
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.1;
}
.hero-section .caption p {
  font-size: clamp(14px, 5vw, 18px);
  font-weight: 400;
}
.hero-section .caption .pointer {
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.5rem 0.5rem;
  border: thin solid rgba(255, 255, 255, 0.5);
  display: flex;
  border-radius: 50px;
  color: #fff;
  margin: 2rem auto 0;
}

.programs {
  position: relative;
  padding: 4rem 0;
  margin-top: -150px;
  overflow-x: hidden;
  z-index: 5;
}
.programs .owl-carousel .owl-stage-outer {
  overflow: visible;
}
.programs .program-card {
  position: relative;
  border-radius: 3rem;
  background-color: #fff;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}
.programs .program-card svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: auto;
  z-index: 0;
}
.programs .program-card svg path {
  fill: #04254B;
}
.programs .program-card img {
  position: relative;
  top: -2rem;
  display: block;
  width: 100%;
  height: 400px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  transition: all 0.3s ease-in-out;
}
.programs .program-card .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 0rem 2rem 2rem;
  border-radius: 2rem;
}
.programs .program-card .content h4, .programs .program-card .content p {
  text-align: center;
}
.programs .program-card .content h4 {
  font-weight: 800;
  font-size: clamp(18px, 5vw, 40px);
  line-height: 1.1;
  font-style: italic;
}
.programs .program-card .content p {
  font-size: clamp(14px, 5vw, 18px);
  font-weight: 400;
  color: rgba(30, 30, 30, 0.8);
}
.programs .program-card .content .card-cta {
  width: 100%;
  justify-content: center;
}
.programs .program-card:hover {
  transform: translateY(-1rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.3);
}
.programs .program-card:hover img {
  transform: scale(1.1);
}
.programs .cricket svg path {
  fill: #1E1E1E;
}
.programs .cricket .content h4 {
  color: #1E1E1E;
}
.programs .cricket .content .card-cta {
  padding: 1rem 1.8rem;
  border-radius: 1rem;
  background-color: #1E1E1E;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-weight: bolder;
  font-style: italic;
  display: flex;
  gap: 1rem;
}
.programs .cricket .content .card-cta:hover {
  background-color: rgb(4.5, 4.5, 4.5);
  color: #fff;
}
.programs .football svg path {
  fill: #04254B;
}
.programs .football .content h4 {
  color: #04254B;
}
.programs .football .content .card-cta {
  padding: 1rem 1.8rem;
  border-radius: 1rem;
  background-color: #04254B;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-weight: bolder;
  font-style: italic;
  display: flex;
  gap: 1rem;
}
.programs .football .content .card-cta:hover {
  background-color: rgb(1.417721519, 13.1139240506, 26.582278481);
  color: #fff;
}
.programs .basketball svg path {
  fill: #FF5903;
}
.programs .basketball .content h4 {
  color: #FF5903;
}
.programs .basketball .content .card-cta {
  padding: 1rem 1.8rem;
  border-radius: 1rem;
  background-color: #FF5903;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-weight: bolder;
  font-style: italic;
  display: flex;
  gap: 1rem;
}
.programs .basketball .content .card-cta:hover {
  background-color: rgb(207, 70.6428571429, 0);
  color: #fff;
}

.section {
  position: relative;
  padding: 5rem 0;
}

.section-title {
  display: flex;
  gap: 8px;
  flex-direction: column;
  margin-bottom: 1rem;
}
.section-title small {
  color: #FF5903;
  text-transform: uppercase;
  font-weight: bold;
  font-style: italic;
}
.section-title h2 {
  font-size: clamp(32px, 5vw, 40px);
  line-height: 1.1;
  font-weight: 800;
  font-style: italic;
  text-transform: capitalize;
}

.section-cta {
  padding: 1rem 1.8rem;
  border-radius: 1rem;
  background-color: #04254B;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-weight: bolder;
  font-style: italic;
  display: flex;
  gap: 1rem;
}
.section-cta:hover {
  background-color: rgb(1.417721519, 13.1139240506, 26.582278481);
  color: #fff;
}

.data-card {
  border: thin solid #eee;
  padding: 1rem;
  border-radius: 1.5rem;
  background-color: #fff;
  display: grid;
  grid-template-columns: 50% 50%;
  align-items: center;
  background: radial-gradient(29.78% 55.27% at 71.6% 67.83%, #FFE5D7 0%, #FFFFFF 100%);
  transition: all 0.3s ease-in-out;
}
.data-card:hover {
  box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.1);
}
.data-card .content {
  display: flex;
  flex-direction: column;
}
.data-card .content .number {
  font-weight: bold;
  font-size: 40px;
  font-style: italic;
  line-height: 1;
}
.data-card img {
  width: 100%;
  display: block;
}

.about .card-section {
  padding: 3rem;
  border-radius: 3rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}
.about .card-section p {
  color: rgba(30, 30, 30, 0.7);
}
.about .card-section .section-cta {
  width: -moz-fit-content;
  width: fit-content;
}
.about .card-section .data-card {
  height: 100%;
}

.card-why {
  background-color: #04254B;
  padding: 3rem;
  border-radius: 3rem;
}
.card-why .section-title h2 {
  color: #fff;
}
.card-why .point-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.card-why .point-list .point-list-item {
  display: flex;
  gap: 1rem;
}
.card-why .point-list .point-list-item img {
  height: 100px;
  width: 120px;
  background-color: #eee;
  border-radius: 1rem;
}
.card-why .point-list .point-list-item .content h4 {
  color: #fff;
  font-size: clamp(18px, 5vw, 22px);
  font-weight: bold;
}
.card-why .point-list .point-list-item .content p {
  color: rgba(255, 255, 255, 0.8);
}

.card-vision {
  position: relative;
  border-radius: 3rem;
  overflow: hidden;
  height: 100%;
}
@media (max-width: 991px) {
  .card-vision {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.card-vision img {
  display: block;
  width: 100%;
  height: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-vision .content {
  background-color: #FF5903;
  padding: 3rem;
  height: 50%;
}
@media (max-width: 991px) {
  .card-vision .content {
    height: -moz-fit-content;
    height: fit-content;
  }
}
.card-vision .content .section-title small {
  color: #fff;
  text-transform: capitalize;
}
.card-vision .content .section-title h2 {
  color: #fff;
  text-transform: capitalize;
}
.card-vision .content p {
  color: rgba(255, 255, 255, 0.8);
}

.membership {
  background-color: #000000;
  color: #fff;
  overflow: hidden;
  padding: 5rem 0;
  background-image: url("../img/section-bg-vector.svg");
  background-position: right bottom;
  background-size: 40%;
  background-repeat: no-repeat;
}
.membership strong {
  margin: 2rem 0 1rem;
  display: block;
}
.membership ul {
  margin: 0;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.membership .option-card {
  position: relative;
  background-color: #fff;
  border-radius: 2rem;
  overflow: hidden;
}
.membership .option-card img {
  display: block;
  width: 100%;
  height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 1rem;
}
.membership .option-card .card-cta {
  padding: 1rem 1.8rem;
  border-radius: 1rem;
  background-color: #1E1E1E;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-weight: bolder;
  font-style: italic;
  display: flex;
  gap: 1rem;
}
.membership .option-card .card-cta:hover {
  background-color: rgb(4.5, 4.5, 4.5);
  color: #fff;
}
.membership .option-card .card-cta {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  justify-content: center;
}
.membership .football .card-cta {
  padding: 1rem 1.8rem;
  border-radius: 1rem;
  background-color: #FF5903;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  font-weight: bolder;
  font-style: italic;
  display: flex;
  gap: 1rem;
}
.membership .football .card-cta:hover {
  background-color: rgb(207, 70.6428571429, 0);
  color: #fff;
}
.membership .football .card-cta {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  justify-content: center;
}

footer {
  background-color: #1E1E1E;
  background-image: linear-gradient(45deg, #04254B, black);
  color: #fff;
  padding: 5rem 0 2rem;
}
footer h3 {
  display: block;
  margin-bottom: 2rem;
  font-size: 18px;
  line-height: 1;
  font-style: italic;
  font-weight: 800;
}
footer .links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
footer .links .link {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease-in-out;
}
footer .links .link:hover {
  opacity: 1;
  color: #fff;
  padding-left: 1rem;
}
footer .footer-note {
  border-top: thin solid rgba(255, 255, 255, 0.05);
  margin-top: 2rem;
  padding-top: 4rem;
}
footer .footer-note .container p {
  text-align: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 200;
  opacity: 0.5;
}
footer .footer-note .container p a {
  color: #fff;
  text-decoration: none;
  opacity: 1;
}
footer .footer-note .container p a:hover {
  opacity: 0.8;
}

.page-cover {
  padding: 180px 0 90px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(0, 0, 0, 0.15) 0%, transparent 50%), linear-gradient(135deg, #04254B 0%, rgb(1.9341772152, 17.8911392405, 36.2658227848) 100%);
}
.page-cover::before {
  content: "";
  background-image: linear-gradient(195deg, rgba(4, 37, 75, 0.9) 25%, rgba(0, 0, 0, 0.85));
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}
.page-cover::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: #fff;
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
  z-index: 3;
}
.page-cover .cover-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.page-cover .breadcrumb-custom {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(5px);
  margin-bottom: 0.5rem;
}
.page-cover .breadcrumb-custom a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
}
.page-cover .breadcrumb-custom a:hover {
  color: #FF5903;
}
.page-cover .breadcrumb-custom .separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}
.page-cover .breadcrumb-custom .current {
  color: #FF5903;
  font-weight: 700;
}
.page-cover .title {
  font-weight: 900;
  color: #fff;
  font-size: clamp(28px, 6vw, 48px);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
  position: relative;
  z-index: 2;
}
.page-cover .description {
  font-size: clamp(14px, 2.5vw, 16px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
  font-weight: 400;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.page-cover .cover-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.fullscreen-overlay-menu {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
  transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
  transform: translateX(-100%);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}
.fullscreen-overlay-menu.active {
  transform: translateX(0);
}
.fullscreen-overlay-menu.active .body .main-links .link, .fullscreen-overlay-menu.active .body .link-group .link {
  opacity: 1;
  transform: translateX(0);
}
.fullscreen-overlay-menu.active .body .main-links .link:nth-child(1) {
  transition-delay: 0.08s;
}
.fullscreen-overlay-menu.active .body .main-links .link:nth-child(2) {
  transition-delay: 0.16s;
}
.fullscreen-overlay-menu.active .body .main-links .link:nth-child(3) {
  transition-delay: 0.24s;
}
.fullscreen-overlay-menu.active .body .main-links .link:nth-child(4) {
  transition-delay: 0.32s;
}
.fullscreen-overlay-menu.active .body .main-links .link:nth-child(5) {
  transition-delay: 0.4s;
}
.fullscreen-overlay-menu.active .body .main-links .link:nth-child(6) {
  transition-delay: 0.48s;
}
.fullscreen-overlay-menu.active .body .main-links .link:nth-child(7) {
  transition-delay: 0.56s;
}
.fullscreen-overlay-menu.active .body .main-links .link:nth-child(8) {
  transition-delay: 0.64s;
}
.fullscreen-overlay-menu.active .body .main-links .link:nth-child(9) {
  transition-delay: 0.72s;
}
.fullscreen-overlay-menu.active .body .main-links .link:nth-child(10) {
  transition-delay: 0.8s;
}
.fullscreen-overlay-menu.active .body .link-group .link:nth-child(1) {
  transition-delay: 0.26s;
}
.fullscreen-overlay-menu.active .body .link-group .link:nth-child(2) {
  transition-delay: 0.32s;
}
.fullscreen-overlay-menu.active .body .link-group .link:nth-child(3) {
  transition-delay: 0.38s;
}
.fullscreen-overlay-menu.active .body .link-group .link:nth-child(4) {
  transition-delay: 0.44s;
}
.fullscreen-overlay-menu.active .body .link-group .link:nth-child(5) {
  transition-delay: 0.5s;
}
.fullscreen-overlay-menu.active .body .link-group .link:nth-child(6) {
  transition-delay: 0.56s;
}
.fullscreen-overlay-menu.active .body .link-group .link:nth-child(7) {
  transition-delay: 0.62s;
}
.fullscreen-overlay-menu.active .body .link-group .link:nth-child(8) {
  transition-delay: 0.68s;
}
.fullscreen-overlay-menu.active .body .link-group .link:nth-child(9) {
  transition-delay: 0.74s;
}
.fullscreen-overlay-menu.active .body .link-group .link:nth-child(10) {
  transition-delay: 0.8s;
}
.fullscreen-overlay-menu .body {
  flex-grow: 1;
  display: flex;
  overflow: auto;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 0;
  border-top: thin solid rgba(0, 0, 0, 0.05);
  border-bottom: thin solid rgba(0, 0, 0, 0.05);
}
.fullscreen-overlay-menu .body .main-links .link {
  font-size: clamp(18px, 5vw, 40px);
  display: block;
  font-weight: 800;
  line-height: 1.5;
  font-style: italic;
  text-transform: capitalize;
  text-decoration: none;
  color: #1E1E1E;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.3s ease-in-out, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease-in-out;
}
.fullscreen-overlay-menu .body .main-links .link:hover {
  opacity: 1;
  color: #FF5903;
  padding-left: 1rem;
}
.fullscreen-overlay-menu .body .main-links .active {
  color: #FF5903;
}
.fullscreen-overlay-menu .body .link-group .link {
  font-size: clamp(16px, 5vw, 24px);
  display: block;
  font-weight: 600;
  line-height: 1.5;
  font-style: italic;
  text-transform: capitalize;
  text-decoration: none;
  color: #1E1E1E;
  opacity: 0;
  transform: translateX(-20px);
  transition: all 0.3s ease-in-out, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease-in-out;
}
.fullscreen-overlay-menu .body .link-group .link:hover {
  opacity: 1;
  color: #FF5903;
  padding-left: 1rem;
}
.fullscreen-overlay-menu .body .link-group .active {
  color: #FF5903;
}
.fullscreen-overlay-menu .body .menu-cta-banner {
  background: linear-gradient(135deg, #04254B 0%, #053C7C 100%);
  border-radius: 1.5rem;
  padding: 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(4, 37, 75, 0.15);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
}
.fullscreen-overlay-menu .body .menu-cta-banner h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
  font-style: italic;
}
.fullscreen-overlay-menu .body .menu-cta-banner p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.fullscreen-overlay-menu .body .menu-cta-banner .menu-cta-link {
  display: inline-block;
  background-color: #FF5903;
  color: #fff;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: bold;
  font-style: italic;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255, 89, 3, 0.3);
}
.fullscreen-overlay-menu .body .menu-cta-banner .menu-cta-link:hover {
  background-color: rgb(255, 105.7976190476, 28.5);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 89, 3, 0.45);
}
.fullscreen-overlay-menu .header, .fullscreen-overlay-menu .footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fullscreen-overlay-menu .header img, .fullscreen-overlay-menu .footer img {
  height: 60px;
}
.fullscreen-overlay-menu .footer .social {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.fullscreen-overlay-menu .footer .social a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  border-radius: 50%;
  border: 1px solid rgba(30, 30, 30, 0.2);
  color: #1E1E1E;
}
.fullscreen-overlay-menu .footer .social a:hover {
  color: #FF5903;
  border: 1px solid rgba(30, 30, 30, 0.2);
}
.fullscreen-overlay-menu .close-btn {
  background: none;
  border: none;
  color: #1E1E1E;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fullscreen-overlay-menu .close-btn:hover {
  transform: rotate(180deg) scale(1.1);
  color: #FF5903;
}/*# sourceMappingURL=main.css.map */