:root {
  --main-color: #60afad;
  --main-color-bright: #97f8f6;
  --secondary-color: #72b964;
  --tertiary-color: #9e9ea0;
}

body {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1px;
}

img,
video {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: var(--main-color-bright);
}

a.casely-btn {
  border: 1px solid var(--main-color-bright);
  padding: 5px 35px;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 3px;
}

a.casely-btn-secondary {
  border: 0;
}

a.casely-btn-secondary:hover {
  color: var(--main-color);
  font-weight: 500;
}

ul {
  list-style-type: none;
}

span.highlight {
  color: var(--main-color);
}

span.bold {
  font-weight: 700;
}

.video-container {
  position: relative;
}

.video-play-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  cursor: pointer;
  z-index: 100;
}

.video-play-overlay i.video-play-icon {
  position: absolute;
  top: 10px;
  right: 25px;
  color: var(--secondary-color);
  font-size: 50px;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 576px) {
  a.casely-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
    padding: 5px 35px;
    font-size: 10px;
  }

  .button-container .casely-btn:first-of-type {
    margin-bottom: 25px;
    min-width: 225px;
  }

  a.casely-btn img {
    margin-right: 7.5px;
    margin-left: 5px;
  }
}

/* ================================ */
/* NAVIGATION */
/* ================================ */

.navigation {
  padding-top: 2.5px;
  padding-bottom: 2.5px;
  background-color: #000;
  text-align: center;
  border-bottom: 1px solid rgba(96, 175, 172, 0.5);
}

.navigation .atlantis-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-list {
  display: flex;
  height: 100%;
  margin-bottom: 0;
  padding: 0;
}

.nav-list .nav-list-item {
  color: var(--main-color);
  padding-left: 50px;
  padding-right: 50px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  font-weight: 500;
  width: 33.3%;
  height: 100%;
  border-right: 1px solid rgba(96, 175, 172, 0.25);
}

.nav-list .nav-list-item:first-child {
  border-left: 1px solid rgba(96, 175, 172, 0.25);
}

.nav-list .nav-list-item a.nav-link-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}

.nav-list .nav-list-item a.nav-link-item:hover {
  color: var(--secondary-color);
}

nav.navbar {
  color: #fff;
  z-index: 100;
  max-width: 90%;
  margin: auto;
}

.navbar .navbar-brand {
  text-align: center;
  width: 250px;
}

.navbar-nav {
  margin: auto;
}

.navbar-nav .nav-link {
  color: #97f8f6;
  margin: 0 50px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

@media only screen and (max-width: 1500px) {
  .nav-list .nav-list-item {
    padding-left: 25px;
    padding-right: 25px;
    font-size: 10px;
  }
}

@media only screen and (max-width: 1200px) {
  .nav-list .nav-list-item {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (max-width: 992px) {
  .nav-logo-container {
    display: none;
  }

  .nav-list .nav-list-item a.nav-link-item {
    font-size: 10px;
    justify-content: center;
  }
}

@media only screen and (max-width: 769px) {
  .nav-list .nav-list-item:first-child {
    display: none;
  }

  .nav-list .nav-list-item {
    width: 50%;
    padding-top: 3px;
    padding-bottom: 3px;
  }
}

@media only screen and (max-width: 576px) {
  .nav-list .nav-list-item a.nav-link-item span {
    display: none;
  }
}

/* ================================ */
/* ANNOUNCEMENT BAR */
/* ================================ */
.announcement-bar {
  background-color: var(--main-color);
  background: linear-gradient(
    135deg,
    rgba(151, 248, 246, 0.75) 0%,
    rgba(0, 0, 0, 1) 75%
  );
  text-align: center;
  color: #fff;
  padding-top: 7.5px;
  padding-bottom: 7.5px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.announcement-bar h1 {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 0;
  margin-left: 50px;
  margin-right: 50px;
  letter-spacing: 2.5px;
}

.announcement-bar span.line {
  width: 200px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  height: 1px;
}

/* ================================ */
/* CASELY TENNIS ACADEMY */
/* ================================ */
.casely-tennis-academy {
  height: 750px;
  position: relative;
}

.casely-tennis-academy .background-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casely-tennis-academy .dark-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.casely-tennis-academy .content-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  text-align: center;
  z-index: 100;
  color: #fff;
}

.casely-tennis-academy h2 {
  color: #97f8f6;
  font-size: 21px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.casely-tennis-academy h3 {
  font-size: 14px;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.casely-tennis-academy h1 {
  text-transform: uppercase;
  font-size: 72px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.casely-tennis-academy .button-container {
  margin-bottom: 25px;
}

.casely-tennis-academy a.casely-btn {
  margin-left: 10px;
  margin-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.casely-tennis-academy p {
  font-size: 12px;
}

@media only screen and (max-width: 1200px) {
  .casely-tennis-academy h1 {
    font-size: 52px;
  }

  .casely-tennis-academy h2 {
    font-size: 14px;
  }
}

@media only screen and (max-width: 992px) {
  .casely-tennis-academy h1 {
    font-size: 44px;
  }
}

@media only screen and (max-width: 576px) {
  .casely-tennis-academy {
    height: 600px;
  }

  .casely-tennis-academy h1 {
    font-size: 24px;
  }

  .casely-tennis-academy h2 {
    font-size: 8px;
    letter-spacing: 2px;
  }

  .casely-tennis-academy h3 {
    font-size: 10px;
  }

  .casely-tennis-academy .button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .casely-tennis-academy a.casely-btn {
    padding-top: 0;
    padding-bottom: 0;
  }
}

@media only screen and (max-width: 400px) {
  .casely-tennis-academy h1 {
    font-size: 21px;
  }
}

/* ================================ */
/* MAIN AREA */
/* ================================ */
.main-area {
  padding-bottom: 50px;
}

.main-content-area {
  height: fit-content;
}

/* ================================ */
/* CASELY TRAINED ATHLETES */
/* ================================ */

.casely-trained-athletes {
  padding-top: 50px;
  padding-bottom: 50px;
}

.casely-trained-athletes h3 {
  font-size: 24px;
  font-weight: 900;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 25px;
}

.casely-trained-athletes .player-row {
  justify-content: center;
}

.casely-trained-athletes .player-container {
  border: 1px solid var(--main-color-bright);
  border-radius: 10px;
  padding: 25px;
  display: flex;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 25px;
}

.casely-trained-athletes .player-container hr {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--main-color);
}

.casely-trained-athletes .player-container .player-img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  margin-right: 25px;
}

.casely-trained-athletes .player-container .player-name {
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 0;
  color: var(--main-color);
}

.casely-trained-athletes .player-container p {
  font-size: 12px;
}

@media only screen and (max-width: 1200px) {
  .casely-trained-athletes h3 {
    font-size: 28px;
  }

  .casely-trained-athletes .player-container {
    padding: 15px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 90%;
  }

  .casely-trained-athletes .player-container .player-img {
    margin-right: 0;
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 992px) {
  .casely-trained-athletes {
    padding-top: 25px;
  }

  .casely-trained-athletes h3 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 576px) {
  .casely-trained-athletes h3 {
    font-size: 15px;
  }
}

/* ================================ */
/* COACH CASELY */
/* ================================ */
.award-winning-instruction {
  padding-top: 50px;
}

.award-winning-instruction h3 {
  font-size: 14px;
  color: var(--main-color);
}

.award-winning-instruction h2 {
  font-size: 24px;
}

.award-winning-instruction p {
  font-size: 14px;
}

.award-winning-instruction .right-side {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.award-winning-instruction .fiu-image {
  width: 100%;
  height: 375px;
  margin-bottom: 10px;
}

.award-winning-instruction figcaption {
  font-size: 10px;
  margin-bottom: 15px;
}

.award-winning-instruction .casely-btn-secondary {
  display: block;
  margin-bottom: 10px;
}

@media only screen and (max-width: 1500px) {
  .award-winning-instruction a.casely-btn {
    padding: 5px 25px;
  }

  .award-winning-instruction p {
    font-size: 12px;
  }
}

@media only screen and (max-width: 1200px) {
  .award-winning-instruction .row {
    flex-direction: column-reverse;
  }

  .award-winning-instruction .right-side {
    margin-bottom: 25px;
  }

  .award-winning-instruction figcaption {
    font-size: 8px;
  }
}

@media only screen and (max-width: 576px) {
  .award-winning-instruction {
    text-align: center;
  }

  .award-winning-instruction .fiu-image {
    height: 250px;
  }

  .award-winning-instruction .button-container .casely-btn:first-of-type {
    margin-bottom: 10px;
  }
}

/* ================================ */
/* ENDORSEMENT VIDEO */
/* ================================ */

.endorsements {
  padding-bottom: 50px;
}

.endorsements h2 {
  text-align: center;
  font-size: 24px;
  color: var(--main-color);
}

.endorsements .endorsement-video-block {
  width: 20%;
}

.endorsements .endorsement-video {
  height: 125px;
  box-shadow: 5px 5px 5px 0px rgb(0 0 0 / 75%);
  margin-bottom: 10px;
}

.endorsements .international-flags-container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  width: 100%;
  margin-top: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 2.5px solid var(--main-color);
  border-bottom: 2.5px solid var(--main-color);
}

.endorsements .international-flags-container img.country-flag {
  box-shadow: 5px 5px 5px 0px rgb(0 0 0 / 10%);
  height: 45px;
  width: 75px;
}

@media only screen and (max-width: 1200px) {
  .endorsements h2 {
    max-width: 575px;
    margin-left: auto;
    margin-right: auto;
  }

  .endorsements .endorsement-video-block {
    width: 50%;
  }

  .endorsements .endorsement-video {
    height: 175px;
  }
}

@media only screen and (max-width: 576px) {
  .endorsements .endorsement-video-block {
    width: 100%;
  }

  .endorsements .endorsement-video {
    height: 200px;
  }

  .endorsements h2 {
    font-size: 18px;
  }
}

@media only screen and (max-width: 400px) {
  .endorsements h2 {
    font-size: 16px;
  }
}

/* ================================ */
/* HIGH PERFORMANCE TRAINING */
/* ================================ */

.high-performance-training {
  text-align: center;
  padding-top: 50px;
}

.high-performance-training h2 {
  font-size: 40px;
  color: var(--main-color);
  margin-bottom: 25px;
}

.high-performance-training .button-container {
  margin-bottom: 25px;
}

.high-performance-training .button-container .casely-btn {
  border: 0;
}

.high-performance-training h2 span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.high-performance-training h3 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 50px;
}

.high-performance-training .video-container {
  max-width: 900px;
  margin: auto;
}

.high-performance-training .video-container video {
  box-shadow: 5px 5px 5px 0px rgb(0 0 0 / 75%);
  height: 100%;
  border-radius: 25px;
}

.high-performance-training .video-play-overlay i.video-play-icon {
  position: absolute;
  top: 25px;
  right: 25px;
  color: var(--secondary-color);
  font-size: 75px;
}

.high-performance-training .video-container + p {
  font-weight: 600;
  max-width: 900px;
  margin: auto;
  margin-bottom: 25px;
}

.college-scholarship-container + p > a:hover {
  color: #60afad;
}

@media only screen and (max-width: 1200px) {
  .high-performance-training h2 {
    font-size: 32px;
  }

  .high-performance-training .button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .high-performance-training .video-container + p {
    font-size: 12px;
  }
}

@media only screen and (max-width: 576px) {
  .high-performance-training h2 {
    font-size: 24px;
  }

  .high-performance-training h2 span {
    font-size: 12px;
  }

  .high-performance-training .button-container .casely-btn:first-of-type {
    margin-bottom: 10px;
  }

  .high-performance-training .video-play-overlay i.video-play-icon {
    font-size: 50px;
  }

  .high-performance-training .video-container + p {
    font-size: 8px;
  }

  .high-performance-training
    .college-scholarship-container
    .atlantis-university-logo {
    width: 75px;
  }

  .high-performance-training .college-scholarship-container p {
    font-size: 10px;
  }
}

@media only screen and (max-width: 400px) {
  .high-performance-training h2 {
    font-size: 20px;
  }
}

/* ================================ */
/* UPCOMING EVENTS AREA */
/* ================================ */

.upcoming-events-area {
  margin-top: 50px;
}

.upcoming-events-area .facility-video {
  box-shadow: 5px 5px 5px 0px rgb(0 0 0 / 75%);
  margin-bottom: 25px;
}

.upcoming-events-area h3 {
  text-align: center;
  margin-bottom: 25px;
  color: var(--main-color);
}

.upcoming-events-area .calendar-list {
  padding-left: 0;
  text-align: left;
  overflow: scroll;
}

.upcoming-events-area .calendar-list .calendar-item {
  border: 1px solid var(--main-color-bright);
  border-left: 10px solid var(--main-color);
  border-radius: 10px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  margin-bottom: 25px;
}

.upcoming-events-area .calendar-list .calendar-item a:hover {
  color: var(--main-color);
}

.upcoming-events-area .calendar-list .date {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--main-color);
  margin-bottom: 5px;
  color: var(--main-color);
}

.upcoming-events-area .calendar-list .title {
  font-size: 12px;
  font-weight: 400;
}

@media only screen and (max-width: 1200px) {
  .upcoming-events-area h3 {
    font-size: 21px;
  }
}

@media only screen and (max-width: 992px) {
  .upcoming-events-area .calendar-list .calendar-item {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ================================ */
/* ATLANTIS UNIVERSITY SECTION */
/* ================================ */

.atlantis-university-section {
  padding-top: 25px;
}

.atlantis-university-section .college-scholarship-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.atlantis-university-section
  .college-scholarship-container
  .atlantis-university-logo {
  margin-right: 25px;
}

.atlantis-university-section .college-scholarship-container p {
  margin-bottom: 0;
}

.atlantis-university-section .video-container {
  max-width: 90%;
  width: 900px;
  margin: auto;
  padding: 0;
}

.atlantis-university-section .video-container video {
  box-shadow: 5px 5px 5px 0px rgb(0 0 0 / 75%);
  height: 100%;
  border-radius: 25px;
}

.atlantis-university-section .video-play-overlay i.video-play-icon {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #ff0305;
  font-size: 75px;
}

/* 
/
/
/
/
/
/
/
/
/
/
/
/

*/

/* ================================ */
/* WELCOME SECTION */
/* ================================ */

.welcome-section {
  text-align: center;
  margin-top: -100px;
  position: relative;
}

/* BACKGROUND VIDEO */
.welcome-section .dark-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}

.welcome-section .main-featured-video {
  width: 100%;
  min-height: 101vh;
  object-fit: cover;
}

/* FEATURED ATHLETE OVERLAY */
.featured-athletes-overlay {
  position: absolute;
  top: 150px;
  left: 50px;
}

.featured-athletes-overlay .featured-container {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50px;
}

.featured-athletes-overlay .header-container {
  background: linear-gradient(
    90deg,
    rgba(151, 248, 246, 0.75) 0%,
    rgba(0, 0, 0, 1) 60%
  );
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 25px 25px 0 0;
  border-bottom: 1px solid #97f8f6;
}

.featured-athletes-overlay .header-container h2 {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 5px;
  margin-bottom: 0;
}

.featured-athletes-overlay .featured-athletes {
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding-top: 15px;
  padding-bottom: 10px;

  max-width: 300px;
}

.featured-athletes-overlay .featured-athlete {
  padding-left: 10px;
  padding-right: 10px;
  border-bottom: 1px solid #b6ff9c;
  margin-bottom: 25px;
}

.featured-athletes-overlay .featured-athlete:last-of-type {
  margin-bottom: 0;
  border-bottom: 0;
}

.featured-athletes-overlay .featured-athlete img {
  width: 150px;
  height: 150px;
  border-radius: 125px;
  object-fit: cover;
  margin-bottom: 10px;
  border: 1px solid #97f8f6;
}

.featured-athlete h2.athlete-name {
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
}

.featured-athlete h3.highlight {
  font-size: 12px;
  color: #97f8f6;
  padding-bottom: 10px;
}

/* RIGHT-SIDE OVERLAY */
.right-side-overlay {
  position: absolute;
  top: 200px;
  right: 50px;
}

.right-side-overlay h2 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 0;
  padding: 10px 0;
  text-align: center;
  letter-spacing: 3px;
  line-height: 1.5;
  border-bottom: 5px solid #b6ff9c;
  border-radius: 10px;
  margin-bottom: 25px;
  background: linear-gradient(
    90deg,
    rgba(151, 248, 246, 0.75) 0%,
    rgba(0, 0, 0, 1) 60%
  );
}

/* CONTACT BOX OVERLAY */
.contact-box-overlay {
  width: 350px;
  color: #fff;
  text-align: left;
  margin-bottom: 50px;
}

.contact-box-overlay .contact-block {
  border-left: 5px solid #b6ff9c;
  border-right: 5px solid #b6ff9c;
  border-top: 1px solid #b6ff9c;
  border-bottom: 1px solid #b6ff9c;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px 15px;
  margin-bottom: 15px;
  border-radius: 50px;
}

.contact-box-overlay .contact-link {
  display: block;
  padding-left: 25px;
  letter-spacing: 3px;
  font-size: 12px;
  text-transform: uppercase;
}

.contact-box-overlay .contact-link:first-of-type {
  border-left: 5px solid #97f8f6;
  border-right: 5px solid #97f8f6;
  border-top: 1px solid #97f8f6;
  border-bottom: 1px solid #97f8f6;
}

.contact-box-overlay .contact-link i {
  margin-right: 10px;
}

.contact-box-overlay .contact-link img {
  vertical-align: middle;
  margin-left: 5px;
}

.contact-box-overlay .location-block p {
  padding-left: 10px;
  letter-spacing: 3px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* SOCIAL MEDIA OVERLAY */
.social-media-overlay {
  margin-bottom: 50px;
  text-align: center;
}

.social-media-overlay i {
  border-radius: 50px;
  font-size: 14px;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.377);
  border: 2.5px solid #b6ff9c;
  height: 35px;
  width: 35px;
  margin: 10px;
  padding: 5px;
}

/* FEATURED COACHES OVERLAY */
.featured-coaches-overlay {
  color: #fff;
  max-width: 325px;
  margin-left: auto;
}

.featured-coaches-overlay .featured-coach {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  padding-left: 25px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 5px;
  border-left: 5px solid #97f8f6;
  border-right: 5px solid #97f8f6;
  border-top: 1px solid #97f8f6;
  border-bottom: 1px solid #97f8f6;
  border-radius: 25px;
  margin-bottom: 25px;
  text-align: left;
}

.featured-coaches-overlay .featured-coach img.country-flag {
  margin-right: 5px;
  vertical-align: middle;
}
