/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

.icon{
  width: 200%;
}
body {
  font-family: "Open Sans", sans-serif;
  color: #929090;
}

a {
  color: #fffefe;
  text-decoration: none;
}

a:hover {
  color: #b0adad;
  text-decoration: underline;
}

.horizontal-line {
  border-bottom: 3px solid #973034;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #973034;
  border: 2px solid white;
  width: 40px;
  height: 40px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #e72323;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #973034;
  border-top-color: #efefef;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px), screen and (orientation: portrait) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #d0cdcd;
  font-size: 15px;
  height: 40px;
  padding: 0;
  color: rgba(255, 255, 255, 0.6);
}

#topbar .contact-info a {
  line-height: 0;
  color: #973034;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #973034;
}

#topbar .contact-info i {
  color: #973034;
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .social-links a {
  color: #973034;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:focus {
  color: #05dc50;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
  border-bottom: 3px solid #973034;
}

#header.fixed-top {
  background: #ffffff; /* when we scroll down*/
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #262425;
}

#header .logo img {
  height: 150px;
  width: auto;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  margin-left: 5px;
}

.navbar a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 15px 24px 15px;
  font-size: 14px;
  color: #973034;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 15px 24px 15px;
  font-size: 14px;
  color: #f6f6f6;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  background: #973034;
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  color: #262425;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #fff;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #973034;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #973034;
}

/* Show hamburger nav on small screens OR portrait orientation */
@media (max-width: 991px), (orientation: portrait) {
  #header .logo img {
    height: 100px;
  }

  #header .logo {
    font-size: 20px;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }

  a{
    display:flex;
    font-size: medium;
    text-align:center;
    align-items: center;
  }
}

/* Hide the text logo title on mobile/portrait to avoid header crowding */
@media (max-width: 991px), (orientation: portrait) {
  h1.logo {
    display: none !important;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
  padding: 0 15px;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #262425;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #973034;
  background: none;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #973034;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.container_a {
  width: 70%;
  padding-left: 60px;
  padding-right: 15px;
}

.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* ------------------- HERO SECTION ------------------- */

#hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 130px);
  background: url("../img/planeTaxiTest.JPG") center;
  background-size: cover;
  display: flex;
  justify-content: top center;
  align-items: top;
  text-align: top center;
  padding-top: 0px;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #320101d0;
  opacity: 0.65;
}

#hero h1,
#hero2 h1,
#hero3 h1,
#hero4 h1 {
  font-weight: 650;
  color: #d79d47; /* #a86869*/
  font-size: clamp(1.75rem, 5vw, 3rem);
  line-height: 1.2;
}

#hero h2,
#hero2 h2,
#hero3 h2,
#hero4 h2 {
  font-size: clamp(1rem, 3.5vw, 1.5rem);
  line-height: 1.4;
}

#hero h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #973034;
  border-color: #973034;
}

@media (min-width: 1024px) and (orientation: landscape) {
  #hero {
    background-attachment: fixed;
  }
}

/* Hero sections go auto-height in portrait or on small screens */
@media (max-width: 768px), (orientation: portrait) {
  #hero,
  #hero2,
  #hero3,
  #hero4 {
    height: auto;
    min-height: 50vh;
    padding: 80px 20px;
  }

  #hero::before,
  #hero3::before,
  #hero4::before {
    background-color: #320101d0;
  }
}

/* ------------------- HERO 2 ------------------- */

#hero2 {
  width: 100%;
  height: calc(100vh - 110px);
  background: url("../img/flight2.png") center;
  background-size: cover;
  position: relative;
}

#hero2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#hero2 h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

#hero2 h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
}

#hero2 .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero2 .btn-get-started:hover {
  background: #973034;
  border-color: #973034;
}

@media (min-width: 1024px) and (orientation: landscape) {
  #hero2 {
    background-attachment: fixed;
  }
}

@media (max-width: 768px), (orientation: portrait) {
  #hero2 {
    text-align: center;
  }

  #hero2 .container {
    padding-top: 40px;
  }

  #hero2 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero2 h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/* ------------------- HERO 3 ------------------- */

#hero3 {
  position: relative;
  width: 100%;
  height: calc(100vh - 110px);
  background: url("../img/sponsor_wing_photo.JPG") center 35%;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#hero3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #320101d0;
  opacity: 0.7;
}

#hero3 h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

#hero3 h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
}

#hero3 h3 {
  color: #eee;
  margin-bottom: 24px;
  font-size: 20px;
}

#hero3 .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero3 .btn-get-started:hover {
  background: #973034;
  border-color: #973034;
}

@media (min-width: 1024px) and (orientation: landscape) {
  #hero3 {
    background-attachment: fixed;
  }
}

@media (max-width: 768px), (orientation: portrait) {
  #hero3 .container {
    padding-top: 40px;
  }

  #hero3 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero3 h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero3 h3 {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 30px;
    color: #fff;
  }
}

/* ------------------- HERO 4 ------------------- */

#hero4 {
  position: relative;
  width: 100%;
  height: calc(100vh - 110px);
  background: url("../img/compTeamPhoto2.JPG") bottom center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#hero4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #270101e8;
  opacity: 0.7;
}

#hero4 h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

#hero4 h2 {
  color: #eee;
  margin-bottom: 30px;
  font-size: 24px;
}

#hero4 h3 {
  color: #eee;
  margin-bottom: 24px;
  font-size: 20px;
}

#hero4 .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 10px 28px;
  transition: 0.5s;
  border: 2px solid #fff;
  color: #fff;
}

#hero4 .btn-get-started:hover {
  background: #973034;
  border-color: #973034;
}

@media (min-width: 1024px) and (orientation: landscape) {
  #hero4 {
    background-attachment: fixed;
  }
}

@media (max-width: 768px), (orientation: portrait) {
  #hero4 .container {
    padding-top: 40px;
  }

  #hero4 h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero4 h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  #hero4 h3 {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 30px;
    color: #fff;
  }
}

/* ------------------- SMALL DEVICES ------------------- */

@media (max-width: 460px) {
  #hero h1,
  #hero2 h1,
  #hero3 h1,
  #hero4 h1 {
    font-size: 1.4rem;
  }

  #hero h2,
  #hero2 h2,
  #hero3 h2,
  #hero4 h2 {
    font-size: 1rem;
  }

  .hero-content {
    padding: 0 10px;
  }
}

@media (max-width: 660px), (orientation: portrait) {
  .container_a {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
  }

  #hero,
  #hero2,
  #hero3,
  #hero4 {
    text-align: center;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .hero-content {
    text-align: center;
    margin: 0 auto;
  }

  #hero h1,
  #hero2 h1,
  #hero3 h1,
  #hero4 h1,
  #hero h2,
  #hero2 h2,
  #hero3 h2,
  #hero4 h2 {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

@media (max-width: 767px), (orientation: portrait) {
  section {
    padding: 30px 0;
  }
}

.section-title {
  text-align: center;
  padding: 30px 0;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #262425;
  position: relative;
  z-index: 2;
}

.section-title span {
  position: absolute;
  top: 30px;
  color: #f4f4f4;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 0;
}

.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 575px), (orientation: portrait) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-title span {
    font-size: 38px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about{
  background-color: #ffffff;
}
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #973034;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.plane-bullets .bullet-item {
    align-items: center;
    margin-right: 20px;
  }

@media (max-width: 1200px){
  .plane-bullets {
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .plane-bullets .bullet-item {
    align-items: center;
    display: flex;
  }
}

/*--------------------------------------------------------------
# About_alt
--------------------------------------------------------------*/
.about_alt{
  background-color: #973034;
  color: #fff;
}
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #973034;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/* Carousel images on mobile: cap height so portrait images don't dominate */
@media (max-width: 767px), (orientation: portrait) {
  .carousel-item img {
    max-height: 280px;
    object-fit: cover;
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Why Us / Subteams
--------------------------------------------------------------*/
.about-us {
  padding-top: 10px;
}

.subteam-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-evenly;
}

.about-us .box {
  height: 100%;
  padding: 40px 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
}

.about-us .box span {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #973034;
}

.about-us .box h4 {
  font-size: 24px;
  font-weight: 600;
  padding: 0;
  margin: 20px 0;
  color: #262425;
}

.about-us .box p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}

.about-us .box:hover {
  background: #973034;
  padding: 30px 30px 70px 30px;
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.about-us .box:hover span,
.about-us .box:hover h4,
.about-us .box:hover p {
  color: #fff;
}

/* Subteam column responsive sizing */
.subteam-col {
  padding: 0 10px;
  margin-bottom: 1rem;
}

/* Portrait / small mobile: 1 column */
@media (max-width: 767px), (orientation: portrait) {
  .subteam-col {
    width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .about-us .box {
    padding: 30px 20px;
  }

  .about-us .box:hover {
    padding: 20px 20px 50px 20px;
  }
}

/* Landscape tablets: 2 columns */
@media (min-width: 576px) and (max-width: 991px) and (orientation: landscape) {
  .subteam-col {
    width: 48%;
    flex: 0 0 48%;
    max-width: 48%;
  }
}

/*--------------------------------------------------------------
# sponsors
--------------------------------------------------------------*/
.sponsors {
  background: #ffffff;
  padding: 15px 0;
  text-align: center;
}

.sponsors img {
  filter: grayscale(100);
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  padding-bottom: 30px;
  max-width: 100%;
  height: auto;
}

.sponsors img:hover {
  filter: none;
  transform: scale(1.1);
}

/* Sponsor row containers */
#title-sponsor,
#platinum-sponsor,
#gold-sponsor,
#silver-sponsor,
#bronze-sponsor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  width: 100%;
}

/* Title sponsor - largest */
#title-sponsor {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
}

#title-sponsor .sponsor-item {
  display: flex;
  justify-content: center;
  width: 100%;
}

#title-sponsor img {
  width: 40%;
  min-width: 250px;
  max-width: 400px;
  margin: 0 auto;
}

/* Platinum sponsors - very large */
#platinum-sponsor .col-lg-3 {
  flex: 0 0 auto;
  width: 30%;
  min-width: 200px;
  max-width: 300px;
}

/* Gold sponsors - large */
#gold-sponsor .col-lg-3 {
  flex: 0 0 auto;
  width: 25%;
  min-width: 180px;
  max-width: 250px;
}

/* Silver sponsors - medium */
#silver-sponsor .col-lg-3 {
  flex: 0 0 auto;
  width: 20%;
  min-width: 150px;
  max-width: 200px;
}

/* Bronze sponsors - small */
#bronze-sponsor .col-lg-3 {
  flex: 0 0 auto;
  width: 15%;
  min-width: 120px;
  max-width: 150px;
}

@media (max-width: 768px), (orientation: portrait) {
  .sponsors {
    padding: 10px 0;
  }

  #title-sponsor {
    margin-bottom: 20px;
  }

  #title-sponsor .sponsor-item {
    width: 100%;
  }

  #title-sponsor img {
    width: 70%;
    min-width: 180px;
    max-width: 300px;
    margin: 0 auto;
  }

  #platinum-sponsor .col-lg-3 {
    width: 45%;
    min-width: 150px;
  }

  #gold-sponsor .col-lg-3 {
    width: 40%;
    min-width: 130px;
  }

  #silver-sponsor .col-lg-3 {
    width: 35%;
    min-width: 120px;
  }

  #bronze-sponsor .col-lg-3 {
    width: 30%;
    min-width: 100px;
  }

  #title-sponsor,
  #platinum-sponsor,
  #gold-sponsor,
  #silver-sponsor,
  #bronze-sponsor {
    margin-bottom: 20px;
    gap: 20px;
  }
}

/* Remove old sponsor-specific classes as they're now handled by the ID selectors */
.title-sponsor img,
.platinum-sponsor img,
.gold-sponsor img,
.silver-sponsor img,
.bronze-sponsor img {
  width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #f3f1f1;
  padding: 0 0 30px 0;
  color: #000;
  font-size: 14px;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
}

#footer .footer-info {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

#footer .footer-info h3 {
  font-size: 32px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #262425;
}

#footer .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 20px;
  font-family: "Raleway", sans-serif;
  color: #4d4c4c;
}

#footer .footer-info .social-links {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

#footer .footer-info .social-links a {
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #973034;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: 0.3s;
}

#footer .footer-info .social-links a:hover {
  background: #b0adad;
  text-decoration: none;
}

#footer .footer-img {
  display: block;
  max-width: 200px;
  height: auto;
  margin: 0 auto 30px;
  object-fit: contain;
}

#footer .map-container {
  border-radius: 8px;
  overflow: hidden;
  max-width: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

#footer .footer-logo-small {
  max-width: 100px;
  height: auto;
  display: block;
  margin: 0 auto;
}

#footer .footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Footer responsive: stack columns on mobile/portrait */
@media (max-width: 767px), (orientation: portrait) {
  #footer .footer-top {
    padding: 30px 0;
  }

  #footer .row {
    flex-direction: column;
  }

  #footer .col-lg-6 {
    width: 100%;
    text-align: center;
  }

  #footer .footer-info {
    text-align: center;
    margin-top: 20px;
    padding: 0 15px;
  }

  #footer .footer-info h3 {
    font-size: 24px;
  }

  #footer .map-container {
    margin-bottom: 20px;
  }

  #footer .footer-logos {
    justify-content: center;
    margin-top: 15px;
  }

  #footer .footer-img {
    max-width: 150px;
  }

  #footer .footer-logo-small {
    max-width: 80px;
  }
}
