@font-face {
  font-family: "Morganite";
  src: url("../fonts/Morganite-Light.ttf");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Morganite";
  src: url("../fonts/Morganite-Book.ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Morganite";
  src: url("../fonts/Morganite-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "Morganite";
  src: url("../fonts/Morganite-SemiBold.ttf");
  font-weight: 600;
  font-style: normal;
}

:root {
  font-size: 62.5%;
}

:root body {
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
}

.title {
  margin-top: 10px;
  margin-bottom: 30px;
  position: relative;
  z-index: 500;
}

.title h1 {
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: .1rem;
  line-height: 8rem;
}

.title h3 {
  font-size: 4.5rem;
  letter-spacing: .125rem;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  color: rgba(245, 176, 12, 0.8);
}

h1,
h2,
h3 {
  font-family: "Morganite", "Helvetica", sans-serif;
}

h1 {
  font-size: 8rem;
}

h1 small {
  font-size: 5rem;
}

h2 {
  font-size: 7rem;
}

h2 small {
  font-size: 4rem;
}

h3 {
  font-size: 6rem;
}

h4 {
  font-size: 2.6rem;
}

h5 {
  font-size: 2rem;
}

h6 {
  font-size: 1.8rem;
}

p {
  color: #666;
  font-size: 1.6rem;
  margin: 20px 0;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

section {
  padding: 100px 0;
  overflow: hidden;
}

.text-highlight {
  color: #f5b00c;
}

.half-width-wrapper {
  padding-left: 54vw;
  padding-right: 4vw;
  padding-top: 10vw;
  position: relative;
}

@media screen and (max-width: 769px) {
  .half-width-wrapper {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0;
  }
}

.img-responsive {
  max-width: 100%;
}

.gutter-50 {
  padding: 25px 0;
}

.gutter-100 {
  padding: 50px 0;
}

.readmore, .danger-btn {
  height: 50px;
  padding: 0 30px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: inline-block;
  line-height: 50px;
  font-weight: 400;
  margin-top: 20px;
  letter-spacing: .1rem;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
}

.readmore:hover, .danger-btn:hover, .readmore:focus, .danger-btn:focus {
  color: #fff;
  text-decoration: none;
  border-color: #fff;
}

.danger-btn {
  position: relative;
  z-index: 500;
  border: 0;
  background-color: #f5b00c;
}

.danger-btn:hover, .danger-btn:focus {
  background-color: #c88a05;
  border-color: #c88a05;
}

.hero {
  height: 100vh;
  background-color: #222;
  background-image: url("../img/hero.jpg");
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.hero .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.hero .slogan {
  position: relative;
  z-index: 100;
}

.hero .slogan h1 {
  font-size: 25rem;
  color: #fff;
  font-weight: 300;
  z-index: 999;
  line-height: 22rem;
  text-transform: uppercase;
  text-align: center;
}

.hero .slogan h3 {
  text-align: center;
  font-size: 6rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
  letter-spacing: 0.3rem;
  margin: 0;
  text-transform: uppercase;
}

@media screen and (max-width: 769px) {
  .hero {
    background-position: center;
  }
  .hero .slogan h3 {
    font-size: 4rem;
  }
  .hero .slogan h1 {
    font-size: 18rem;
    line-height: 15rem;
  }
}

.big-cover {
  padding: 20px;
  width: 100%;
  height: 800px;
}

.big-cover .img-cont {
  background-color: #222;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0 100px;
  position: relative;
}

.big-cover .img-cont .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(14, 29, 51, 0.6)), to(rgba(14, 29, 51, 0)));
  background: linear-gradient(to right, rgba(14, 29, 51, 0.6), rgba(14, 29, 51, 0));
}

.big-cover .img-cont .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
}

.big-cover .title h1 {
  color: #fff;
}

.big-cover .name {
  background-color: #fff;
  display: inline-block;
  padding: 0 10px;
  margin-bottom: 20px;
}

.big-cover .name h3 {
  color: #111;
  display: inline-block;
  line-height: 5.5rem;
}

.big-cover .name h3 span {
  font-weight: 300;
}

.big-cover h2,
.big-cover h5 {
  color: #fff;
}

.big-cover h5 {
  margin-bottom: 30px;
}

.big-cover p {
  color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width: 769px) {
  .big-cover {
    height: auto;
  }
  .big-cover .img-cont {
    padding: 30px 15px;
  }
  .big-cover .img-cont .overlay {
    background: -webkit-gradient(linear, left top, right top, from(rgba(14, 29, 51, 0.6)), to(rgba(14, 29, 51, 0.5)));
    background: linear-gradient(to right, rgba(14, 29, 51, 0.6), rgba(14, 29, 51, 0.5));
  }
  .big-cover .img-cont .content p {
    font-weight: 300;
  }
}

.fancy-images .img-cont {
  width: 100%;
  padding-top: 150%;
  background-color: #ededed;
  position: relative;
}

.fancy-images .img-cont .red-block {
  position: absolute;
  width: 240px;
  height: 240px;
  background-color: #f5b00c;
  z-index: 100;
}

.fancy-images .img-cont .red-block.top-left {
  left: -100px;
  top: -150px;
}

.fancy-images .img-cont .red-block.bottom-right {
  right: -30px;
  bottom: -50px;
}

.fancy-images .img-cont .red-block.small {
  width: 150px;
  height: 150px;
}

.fancy-images .img-cont .second-image {
  position: absolute;
  top: 100px;
  right: -150px;
  width: 300px;
  height: 220px;
  z-index: 300;
}

.fancy-images .img-cont .second-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.fancy-images .img-cont .first-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
}

.fancy-images .img-cont .first-image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 769px) {
  .fancy-images {
    margin-top: 70px !important;
  }
  .fancy-images .img-cont .second-image {
    top: -42px;
    right: -30px;
  }
  .fancy-images .img-cont .red-block {
    width: 200px;
    height: 200px;
  }
  .fancy-images .img-cont .red-block.top-left {
    left: -100px;
    top: -50px;
  }
  .fancy-images .img-cont .red-block.bottom-right {
    right: -30px;
    bottom: -50px;
  }
  .fancy-images .img-cont .red-block.small {
    width: 150px;
    height: 150px;
  }
}

#stretching .img-box {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

#stretching .img-box .img-cont {
  width: 100%;
  height: 60%;
  position: absolute;
  left: 0;
  top: 20%;
  z-index: 300;
}

#stretching .img-box .img-cont img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#stretching .img-box .red-bg {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 10%;
  width: 250px;
  height: 100%;
  background-color: #f5b00c;
}

@media screen and (max-width: 769px) {
  #stretching .img-box {
    margin-bottom: 20px;
  }
  #stretching .img-box .red-bg {
    left: 0;
    right: 0;
    margin: auto;
  }
}

#services-home {
  padding-top: 0;
  position: relative;
  z-index: 800;
}

.service-home {
  position: relative;
  width: 100%;
  padding-top: 75%;
  background-color: #ededed;
  margin: 30px 0;
  overflow: hidden;
  transform: scale(1);
  -webkit-transform: scale(1);
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  -moz-transition-duration: 0.2s;
  -o-transition-duration: 0.2s;
}

.service-home .link {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 500;
  width: 100%;
  height: 100%;
}

.service-home .content {
  z-index: 400;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.service-home .content h3 {
  color: #fff;
}

.service-home .overlay {
  z-index: 200;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgba(14, 29, 51, 0.6)), to(rgba(14, 29, 51, 0)));
  background: linear-gradient(to right, rgba(14, 29, 51, 0.6), rgba(14, 29, 51, 0));
}

.service-home .img-box {
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #cacaca;
  overflow: hidden;
  transform: scale(1);
  -webkit-transform: scale(1);
  transition-duration: 0.7s;
  -webkit-transition-duration: 0.7s;
  -moz-transition-duration: 0.7s;
  -o-transition-duration: 0.7s;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}

.service-home .img-box img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  filter: grayscale(90%);
  -webkit-filter: grayscale(90%);
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
}

@media screen and (min-width: 993px) {
  .service-home:hover, .service-home:focus {
    z-index: 600;
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    transition-duration: 0.1s;
    -webkit-transition-duration: 0.1s;
    -moz-transition-duration: 0.1s;
    -o-transition-duration: 0.1s;
  }
  .service-home:hover .img-box, .service-home:focus .img-box {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
  }
  .service-home:hover .img-box img, .service-home:focus .img-box img {
    filter: grayscale(0%);
    -webkit-filter: grayscale(0%);
  }
}

.inner-header {
  height: 400px;
  width: 100%;
  background-color: #222;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  background-image: url("../img/inner.jpg");
  background-position: center;
  background-size: cover;
}

.inner-header .overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.inner-header .slogan {
  text-align: center;
}

.inner-header .slogan h1 {
  font-size: 8rem;
  color: #fff;
}

ol.excercise-list {
  counter-reset: my-awesome-counter;
  list-style: none;
  padding-left: 40px;
  margin-top: 40px;
  position: relative;
}

ol.excercise-list .bg {
  position: absolute;
  width: 120%;
  height: 140%;
  background-color: #f5f5fa;
  left: -200px;
  top: -25%;
}

ol.excercise-list li {
  margin: 3rem 0;
  counter-increment: my-awesome-counter;
  position: relative;
}

ol.excercise-list li::before {
  content: counter(my-awesome-counter);
  color: #fff;
  font-size: 1.4rem;
  position: absolute;
  --size: 25px;
  left: calc(-1 * var(--size) - 15px);
  line-height: var(--size);
  width: var(--size);
  height: var(--size);
  top: 0;
background: rgba(245, 176, 12, 0.4);
  border-radius: 50%;
  text-align: center;
}

.type-box {
  margin: 30px 0;
}

.type-box h4 {
  font-size: 2rem;
  color: #f5b00c;
  line-height: 3rem;
}

.type-box p {
  font-weight: 300;
}

#stretching ul li {
  color: #666;
  font-weight: 300;
  margin: 15px 0;
}

#stretching ul li i {
  color: #f5b00c;
}

#aerobic {
  padding-top: 0;
}

#testimonials, #stretching {
  padding-top: 0;
  overflow: visible;
}

#testimonials .left-diagonal, #stretching .left-diagonal {
  position: relative;
  width: 100%;
}

#testimonials .left-diagonal:before, #stretching .left-diagonal:before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 600px;
  top: 20%;
  -webkit-transform: skewY(17deg);
  transform: skewY(17deg);
  background: #f9fafc;
}

.t_box {
  text-align: center;
  margin: 30px 0;
}

.t_box h4 {
  font-size: 1.9rem;
  margin-top: 25px;
  font-weight: 400;
}

.t_box p {
  margin-top: 10px;
  font-weight: 300;
}

.t_box .avatar {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
}

.t_box .avatar i {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 20px;
  color: #f5b00c;
}

.t_box .avatar figure {
  width: 80px;
  height: 80px;
  background-color: #ededed;
  border-radius: 50%;
  overflow: hidden;
}

.t_box .avatar figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#contact {
  padding-top: 0;
}

#contact .map-cont {
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
  height: 0;
  margin-top: 50px;
  border: 1px solid #ededed;
}

#contact .map-cont #map {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

#contact .form-cont {
  margin-top: 50px;
}

#contact .form-cont h4 {
  margin-bottom: 20px;
  letter-spacing: -1px;
}

#contact form .input-cont {
  width: 100%;
  margin-bottom: 25px;
}

#contact form label {
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin: 0;
}

#contact form button {
  background-color: #111;
  border: 0;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  color: #fff;
  width: 100%;
  height: 60px;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
}

#contact form button:hover, #contact form button:focus {
  background-color: rgba(17, 17, 17, 0.8);
}

#contact form input,
#contact form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #111;
  outline: none !important;
  height: 40px;
  font-size: 1.4rem;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
}

#contact form input:focus,
#contact form textarea:focus {
  border-color: #f5b00c;
}

#contact form textarea {
  padding-top: 10px;
  height: 100px;
  resize: none;
}

.info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 30px 0;
  padding-left: 50px;
}

.info-box .icon {
  margin-right: 20px;
  position: relative;
  z-index: 500;
  color: #f5b00c;
  font-size: 24px;
  padding-top: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 32px;       /* fixed width for all icons */
}

.info-box .content h5 {
  margin: 0;
}

.info-box .content p {
  margin: 0;
}


@media screen and (max-width: 769px) {
  .info-box {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-left: 50px;
  }
}

.profile-img {
  width: 50vw;
  height: 100vh;
  background-color: #111;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 900;
}

.profile-img .img-cont {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;                 /* remove extra padding */
}

.profile-img .img-cont img {
  max-height: 85%;
  max-width: 85%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.profile-img.absolute {
  position: absolute;
  top: auto;
  left: 0;
  bottom: 0;
}

@media screen and (max-width: 769px) {
  .profile-img {
    position: static;
    width: 100%;
    height: 300px;
  }
}

.trainer-info {
  margin-bottom: 50px;
}

.trainer-info h3 {
  color: #f5b00c;
}

.trainer-info h3 span {
  font-weight: 300;
}

.trainer-info h5 {
  font-weight: 300;
  color: #666;
}

.qual {
  border: 1px solid rgba(255, 59, 48, 0.4);
  padding: 35px 40px;
  color: #222;
  margin: 50px 0;
  border-radius: 5px;
}

.qual h4 {
  margin-bottom: 30px;
  color: #f5b00c;
}

.qual .qual-list {
  margin-left: 1.6em;
}

.qual .qual-list li {
  margin: 10px 0;
  color: rgba(102, 102, 102, 0.7);
}

.qual .qual-list i {
  color: #f5b00c;
}

/* Alpha Elite: trainer photos on Meet the Trainers page */
.trainer-photo {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}

/* Give a bit of breathing room on small screens */
@media screen and (max-width: 769px) {
  #trainers {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* Alpha Elite: trainer photos on About page */
.coach-photo {
  width: 100%;
  max-width: 380px;       /* size on desktop – you can bump this up a bit if needed */
  aspect-ratio: 4 / 5;    /* same shape for both photos */
  object-fit: cover;      /* crops to fit nicely */
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 8px;
}

/* Make them a bit larger on wider screens */
@media (min-width: 992px) {
  .coach-photo {
    max-width: 420px;
  }
}

/* If Corey is too “in your face”, show a bit more torso */
.coach-photo-corey {
  object-position: top;   /* shift crop up so we see more chest, less chin-only zoom */
}


@media screen and (max-width: 769px) {
  .about-intro {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

.navbar {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  background-color: transparent !important;
  color: #fff;
  padding: 10px 40px;
}

.navbar .social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.navbar .navbar-toggler i {
  color: #fff;
  font-size: 2rem;
}

.navbar .nav-item {
  margin: 0 10px;
}

.navbar .nav-item .nav-link {
  color: #fff;
  font-weight: 400;
  font-size: 1.4rem;
}

.navbar .nav-item .nav-link:hover, .navbar .nav-item .nav-link:focus {
  color: #fff;
  opacity: 0.8;
}

.navbar .navbar-brand {
  color: #fff;
}

.navbar .navbar-brand h3 {
  font-weight: 300;
  opacity: 0.7;
}

.navbar.dark .nav-link {
  color: #222;
  font-weight: 400;
  font-size: 1.4rem;
}

.navbar.dark .nav-link:hover, .navbar.dark .nav-link:focus {
  color: #222;
  opacity: 0.8;
}

@media screen and (max-width: 769px) {
  .navbar.dark .nav-link {
    color: #fff;
  }
  .navbar.dark .nav-link:hover, .navbar.dark .nav-link:focus {
    color: #fff;
  }
}

.navbar.black {
  background-color: #222 !important;
}

@media screen and (max-width: 992px) {
  .navbar .navbar-collapse {
    background-color: #222;
    padding: 20px;
    text-align: center;
  }
  .navbar .social-links {
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px;
  }
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 999;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  background-color: #f5b00c;
  text-align: center;
  opacity: 0;
  display: none;
  transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
}

.back-to-top:focus, .back-to-top:hover {
  color: #fff;
  opacity: 0.8;
}

.back-to-top.shown {
  display: block;
  opacity: 1;
}

#aerobic {
  position: relative;
  z-index: 800;
}

#why .fancy-images,
.reasons-sec .fancy-images {
  margin-top: 150px;
}

#why .reasons ol,
.reasons-sec .reasons ol {
  counter-reset: my-awesome-counter;
  list-style: none;
  padding-left: 40px;
  margin-top: 40px;
  position: relative;
}

#why .reasons ol .bg,
.reasons-sec .reasons ol .bg {
  position: absolute;
  width: 120%;
  height: 140%;
  background-color: #f5f5fa;
  left: -200px;
  top: -25%;
}

#why .reasons ol li,
.reasons-sec .reasons ol li {
  margin: 3rem 0;
  counter-increment: my-awesome-counter;
  position: relative;
}

#why .reasons ol li::before,
.reasons-sec .reasons ol li::before {
  content: counter(my-awesome-counter);
  color: #fff;
  font-size: 1.4rem;
  position: absolute;
  --size: 25px;
  left: calc(-1 * var(--size) - 15px);
  line-height: var(--size);
  width: var(--size);
  height: var(--size);
  top: 0;
  background: rgba(245, 176, 12, 0.4);
  border-radius: 50%;
  text-align: center;
}

@media screen and (max-width: 769px) {
  #why .reasons,
  .reasons-sec .reasons {
    margin-bottom: 50px;
  }
}

footer {
  background-color: #111;
  color: rgba(255, 255, 255, 0.7);
  padding: 30px 0;
}

footer p {
  font-size: 1.4rem;
  margin: 0;
}

footer h1 {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0;
}

#contact .contact-details {
  margin-top: 50px;
}

@media screen and (max-width: 769px) {
  #contact .contact-details {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}

/* Navbar logo size */
.navbar .navbar-brand img.nav-logo {
  max-height: 90px;   /* was 60px */
  height: auto;
}

@media screen and (max-width: 769px) {
  .navbar .navbar-brand img.nav-logo {
    max-height: 70px;  /* was 50px */
  }
}

/* Footer logo size */
footer .footer-logo {
  max-height: 80px;   /* was 60px */
  height: auto;
  margin-bottom: 10px;
}

@media screen and (max-width: 769px) {
  footer .footer-logo {
    max-height: 65px;  /* was 50px */
  }
}

/* Home hero logo (centered on home page) */
header .hero-logo {
  display: block;
  margin: 0 auto 15px auto;
  height: auto;
  max-height: 220px;  /* adjust if needed on desktop */
}

@media (max-width: 768px) {
  header .hero-logo {
    max-height: 150px;
  }
}

/* Optional: hero tagline class if you use it */
header .hero-tagline {
  font-size: 1.1rem;
  letter-spacing: 0.08rem;
  text-transform: uppercase;
  color: #ffffff !important;
  margin-top: 8px;
}

/* Alpha Elite: contact link colors and states */
#contact .info-box .content a:link,
#contact .info-box .content a:visited,
#contact .info-box .content a:active,
#contact .info-box .content a:link p,
#contact .info-box .content a:visited p,
#contact .info-box .content a:active p {
  color: #f5b00c !important;   /* gold for normal + visited */
  text-decoration: none !important;
}

#contact .info-box .content a:hover,
#contact .info-box .content a:hover p {
  color: #c88a05 !important;   /* darker gold on hover */
  text-decoration: underline !important;
}

/* Map link helper (if you use map-link class) */
#contact .map-link {
  color: #f5b00c;
  text-decoration: none;
}

#contact .map-link:visited {
  color: #f5b00c;
}

#contact .map-link:hover {
    color: #c88a05;
  text-decoration: underline;
}

/* Remove iOS auto-detected address styling */
a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  border-bottom: none !important;
}

/* Alpha Elite: Services page spacing tweaks */
#services-intro {
  padding-bottom: 60px;   /* was 100px via global section rule */
}

#youth {
  padding-top: 40px;      /* was 100px via global section rule */
}

/* Alpha Elite: tighten spacing above Holiday section */
#holiday {
  padding-top: 50px;   /* smaller than the default 100px */
}

/* Alpha Elite: tighten spacing between “More Ways to Train” and Holiday section */
#stretching {
  padding-bottom: 40px;   /* was 100px via generic section rule */
}

#holiday {
  padding-top: 30px;      /* was 50px or 100px depending on your last value */
}


/* Alpha Elite: link styles inside Holiday section */
#holiday a:link,
#holiday a:visited,
#holiday a:active {
  color: #f5b00c;              /* gold */
  text-decoration: none;
}

/* Alpha Elite: link styles inside Holiday section */
#holiday a:link,
#holiday a:visited,
#holiday a:active {
  color: #f5b00c;              /* gold */
  text-decoration: none;
}

#holiday a:hover {
  color: #c88a05;              /* slightly darker gold on hover */
  text-decoration: underline;
}

/* Alpha Elite: Holiday section list alignment */
#holiday ul {
  margin-left: 0;         /* remove extra browser margin */
  padding-left: 2.5rem;   /* indent bullets inward */
}

/* Alpha Elite: featured event section on home page */
#featured-event {
  padding-top: 60px;
  padding-bottom: 80px;
}

#featured-event .event-poster {
  margin: 20px auto 10px auto;
}

#featured-event .event-poster img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}



/*# sourceMappingURL=main.css.map */
