@charset "UTF-8";

/*
Theme Name: Rock 31
Version: 1.1
*/

/* Fonts */
/* 
@font-face {
  font-family: "Gotham Bold";
  src: url(/wp-content/themes/rock31-2023/assets/fonts/Gotham-Bold.otf);
}

@font-face {
  font-family: "Gotham Book";
  src: url(/wp-content/themes/rock31-2023/assets/fonts/Gotham-Book.otf);
}

@font-face {
  font-family: "Gotham Medium";
  src: url(/wp-content/themes/rock31-2023/assets/fonts/Gotham-Medium.otf);
}

@font-face {
  font-family: "Proxima Nova Light";
  src: url(/wp-content/themes/rock31-2023/assets/fonts/ProximaNova-Light.otf);
}
 */

:root {
	/* Colors */
	--white: #fff;
	--black: #000;
	--dark-blue: #425176;
	--dark-blue-c: #425176c7;
	--light-blue: #92a5c5;
	--light-blue-c: #92a5c5c7;
	--orange: #da763f;
	--orange-c: #da753fc7;

    /*Fonts*/
    --font-family-primary: proxima-nova, sans-serif;

    /*Font Sizes*/
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-rg: 1rem;
    --font-size-rg-md: 1.125rem;
    --font-size-md: 1.25rem;
    --font-size-mdlg: 1.5rem;
    --font-size-lg: 2rem;
    --font-size-lgxl: 3rem;
    --font-size-xl: 4rem;

    /*Font Weights*/
    --font-weight-reg: 400;
    --font-weight-med: 500;
    --font-weight-semi-bold: 600;
    --font-weight-bold: 700;

}

body {
  font-family: var(--font-family-primary);
  background: var(--dark-blue);
  font-size: 1rem;
}

main {
  min-height: 80vh;
}

section:not(.splide) {
  --section-margin-y: 2rem;
  margin-bottom: var(--section-margin-y);
  margin-top: var(--section-margin-y);
}

/* ========================================== GLOBAL ==========================================*/

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  text-wrap: balance;
}

p {
/* 
  font-family: "Gotham";
 */
}

.page-width {
  width: 80%;
  margin: 0 auto;
  max-width: 1750px;
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-orange,
input.btn-primary,
.gform_button {
  background: var(--orange-c) !important;
  border: none !important;
  color: var(--white) !important;
  padding: 1rem 2rem !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  transition: 0.2s all !important;
  text-decoration: none;
}

.btn-orange:hover,
input.btn-primary:hover,
.gform_button:hover {
  cursor: pointer !important;
  background: var(--orange) !important;
  transition: 0.2s all !important;
  text-decoration: none;
}

input.btn-primary {
  border-radius: 0;
}

.btn-white {
  background: var(--white);
  border: none;
  color: var(--dark-blue);
  padding: 1rem 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.2s all;
  text-decoration: none;
}

.btn-white:hover {
  cursor: pointer;
  background: var(--dark-blue);
  color: var(--white);
  transition: 0.2s all;
}

.btn-clear {
  background: transparent;
  border: none;
  color: var(--orange);
  padding: 1rem 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.2s all;
  text-decoration: none;
}

.btn-clear:hover {
  cursor: pointer;
  background: var(--orange-c);
  color: var(--white);
  transition: 0.2s all;
}

.btn-text {
  background: transparent;
  border: none;
  color: var(--dark-blue);
  padding: 1rem 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: 0.2s all;
  text-decoration: none;
}

#page {
  /* border-top: 3px solid var(--light-blue); */
  overflow-x: hidden;
}

.homepage-container > *:not(.slider-container, .sub-hero-top-mobile) {
  padding-left: 1rem;
  padding-right: 1rem;
}

.page-divider {
  height: 1px;
  width: 100%;
  background-color: var(--light-blue);
  margin: 4rem 0;
}

.align-left {
  text-align: left !important;
}

@media (max-width: 2000px) {
  .page-width {
    max-width: 1350px;
  }
}

@media (max-width: 1500px) {
  .page-width {
    width: 80%;
  }
}

@media (max-width: 800px) {
  .page-width {
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
  }
}

/* ========================================== HEADER ==========================================*/
.opened {
  max-height: 500px !important;
  transition: max-height 0.5s ease;
}

.primary-nav {
  position: absolute;
  display: flex;
  justify-content: space-between;
  /* == Overridden in @media ==*/
  padding: 0 7rem;
  top: 5rem;
  width: 100%;
  z-index: 5;
  font-size: 0.65rem;
}

.primary-nav img {
  height: 4rem;
  margin-bottom: 5rem;
}

#main-menu {
  color: var(--white);
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  margin: 0.75rem 0 0 0;
  justify-content: end;
}

.primary-nav nav {
  display: flex;
  max-width: 70%;
}

#main-menu .menu-item {
  display: inline-block;
}

#main-menu .menu-item {
  position: relative;
  margin: 0.5rem 0.6rem 0.5rem 0.6rem;
}

/* .menu-item ul {
    position: relative;
} */

.menu-item ul > li {
  display: block;
  width: fit-content;
}

.menu-item ul > li:first-of-type {
  margin-top: var(--menu-item-margin);
}

.menu-item ul > li:last-of-type {
  margin-bottom: 0;
}

.menu-item a {
  color: var(--white) !important;
  text-decoration: none;
  text-transform: uppercase;
  margin: 2rem 0;
  letter-spacing: 0.15em;
}

.menu-item ul > li a {
  font-size: 0.95em;
  letter-spacing: 0.05em;
}

.menu-item a:hover {
  color: var(--orange) !important;
  cursor: pointer;
  transition: 0.2s all;
}

.sub-menu {
  max-height: 0;
  overflow: hidden;
  position: absolute;
  width: 10rem;
  padding: 0;
  z-index: 2000;
  transition: all 0.3s ease-in-out;
  color: var(--white);
}

.sub-menu.opened {
  background-color: #425176;
  padding: 0.3rem 0 0.3rem 0.3rem;
}

.sub-menu li a {
  text-decoration: none;
  color: var(--white);
}

.mobile-nav {
  display: none;
}

.border-box {
  -webkit-box-shadow: -100px 0px 74px 50px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: -100px 0px 74px 50px rgba(0, 0, 0, 0.25);
  box-shadow: -100px 0px 74px 50px rgba(0, 0, 0, 0.25);
}

#mainMenuBtn,
.mobile-logo {
  display: none;
}

.menu-right-container {
  display: block;
  position: absolute;
  top: 2rem;
  right: 7rem;
  z-index: 10;
}

.menu-right-content a {
  text-decoration: none;
  color: var(--light-blue);
  font-weight: var(--font-weight-bold);
  /* font-family: "Gotham Bold"; */
  padding: 0 1rem;
}

#mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#mobile-menu .menu-item {
  padding-bottom: 2px;
}

#mobile-menu .menu-item.current-menu-item {
  border-bottom: 2px solid var(--orange);
}

@media (max-width: 1550px) {
  .primary-nav {
    padding-left: 6rem;
  }

  #main-menu {
    margin-left: -2rem;
    list-style: none;
  }

  .primary-nav img {
    height: 3.5rem;
  }
}

@media (max-width: 1500px) {
  .primary-nav nav {
    max-width: 80%;
  }
}

@media (max-width: 1210px) {
  .slider-float-4 {
    display: none;
  }

  .primary-nav {
    display: none;
  }

  .menu-right-container {
    display: none;
  }

  .mobile-logo {
    display: block;
    position: absolute;
    z-index: 6;
    top: 3rem;
    left: 6rem;
  }

  .mobile-logo img {
    height: 3rem;
  }

  /* .hamburger, .close-menu {
        display: block;
        position: absolute;
        z-index: 20;
        top: 3rem;
        right: 3rem;
        cursor: pointer;
    }
    .hamburger i, .close-menu i {
        color: var(--white);
        font-size: 2rem;
    } */
  #mobile-nav {
    --nav-closed-position: calc(-100% - 40%);
    --nav-open-position: 0px;
    --nav-open-timer: 0.3s;
    display: none;

    position: fixed;
    top: 0px;
    right: var(--nav-closed-position);

    z-index: 200;

    height: 100%;
    width: 50%;
    padding: 3rem;
    overflow: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    background: var(--dark-blue);
    box-shadow: -10px 0px 30px hsla(223, 28%, 20%, 0.5);
    transition: all var(--nav-open-timer) ease-in-out;
  }

  #mobile-nav.open {
    display: flex;
    right: 0;
    transition: all var(--nav-open-timer) ease-in-out;
  }

  @media (max-width: 800px) {
    #mobile-nav {
      width: 100%;
    }
  }

  /* Main menu button styles */
  #mainMenuBtn {
    --nav-open-timer: 0.3s;
    display: grid;
    place-items: center;

    position: absolute;
    top: 3rem;
    right: 3rem;
    z-index: 1000;

    background-color: transparent;
    border: none;

    transition: all 0.3s ease-in-out var(--nav-open-timer);
  }

  /* Style icons */
  #mainMenuBtn i {
    font-size: 2rem;
    color: var(--white);
  }

  /* Stack icons on top of each other */
  #mainMenuBtn > * {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
  }

  /* Hide hamburger / close icons at correct time */
  #mainMenuBtn[data-open="true"] .hamburger-icon,
  #mainMenuBtn[data-closed="true"] .close-icon {
    display: none;
  }

  /* Show hamburger / close icons at correct time */
  #mainMenuBtn[data-closed="true"] .hamburger-icon,
  #mainMenuBtn[data-open="true"] .close-icon {
    display: block;
  }

  .mobile-nav a img {
    width: 100%;
    min-width: 12rem;
    max-width: 23rem;
    margin-bottom: 2rem;
  }

  #mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .slider-float-1 {
    display: none;
  }
}

@media (max-width: 800px) {
  .mobile-nav {
    width: 100%;
  }
}

@media (max-width: 550px) {
  .mobile-logo {
    display: block;
    position: absolute;
    z-index: 6;
    top: 3.25rem;
    left: 3rem;
  }

  .mobile-logo img {
    height: 2rem;
  }
}

/* ========================================== HOMEPAGE ==========================================*/
.homepage-container {
  position: relative;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 2%,
    rgba(219, 198, 124, 0) 50%,
    rgba(225, 208, 148, 0) 85%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

.gradient {
  position: absolute;
  z-index: 7;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 2%,
    rgba(219, 198, 124, 0) 50%,
    rgba(225, 208, 148, 0) 85%,
    rgba(0, 0, 0, 0.9) 100%
  );
}

/* Slider Floats */
.slider-float-2 {
  position: absolute;
  z-index: 6;
  height: 20rem;
  width: 7%;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 0) 61%),
    var(--orange);
}

.slider-float-3 {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  height: 30rem;
  width: 10%;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 0) 61%),
    var(--orange);
}
.splide__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*===============Taylor's Adjustments ==============*/
.card:hover {
  scale: 1.02;
  z-index: 5;
  box-shadow: 0 0 5px 2px darkgray;
}

.card {
  transition: all 0.2s ease-in-out;
}

/*============ Coworking Community Carousel ========*/
.carousel-item {
  max-height: 50vh;
  min-width: 100%;
  height: 50vh;
  position: relative;
}

.timeline__item_inner::after {
  background: #da763f;
}

.timeline__item--left .timeline__content {
  /* background: linear-gradient(-60deg, var(--orange), #FFC371); */
  background: linear-gradient(-60deg, var(--orange), var(--orange-c));
}

.timeline__item--right .timeline__content {
  /* background: linear-gradient(60deg, var(--dark-blue), #92EFFD); */
  /* background: linear-gradient(60deg, var(--orange), #FFC371); */
  /* background: linear-gradient(60deg, var(--orange), var(--dark-blue)); */
  /* background: linear-gradient(60deg, var(--dark-blue-c), var(--dark-blue)); */
  background: linear-gradient(60deg, var(--orange), var(--orange-c));
  /* background: var(--orange-c); */
}

.timeline--mobile .timeline__content {
  background: linear-gradient(60deg, var(--orange), var(--orange-c));
}

.heading-link {
  color: inherit;
}

.timeline__content:before,
.timeline__content:after {
  color: var(--orange-c);
}

.timeline__content h4 {
  font-weight: 700;
}

.timeline__content {
  color: var(--white);
  box-shadow: 0 0 5px 2px darkgray;
}

.timeline__wrap {
  overflow: visible;
}

.display-row h3 {
  color: var(--white);
  position: absolute;
  font-size: 3rem;
  z-index: 5;
  bottom: 0;
  left: 0;
}

.display-screen {
  position: absolute;
  background: radial-gradient(
    circle at center,
    transparent,
    rgb(0, 0, 0, 0.6) 95%
  );
  z-index: 3;
  min-width: 100%;
  min-height: 100%;
}

.display-parent {
  max-height: 30vh;
}

.display-row {
  height: 40vh;
  position: relative;
}

section {
  width: 100%;
}

.page-content {
  padding-top: 5rem;
}

.carousel {
  width: 100%;
}

.carousel-item img,
.display-row img,
.explore-img {
  width: 100%;
  height: 100%;
  object-position: 50% 50%;
  object-fit: cover;
}

.carousel-screen {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(0, 0, 0, 0.45);
}

.highlights {
  list-style-image: url("/wp-content/uploads/2023/12/rock31-icon.png") !important;
  font-weight: 500;
}

.highlights li {
  margin: 0.5rem;
  padding-left: 0.5rem;
}

.splide {
  overflow: hidden;
}

.sweetwater i {
  font-size: 3rem;
  color: var(--orange);
  display: inline-block;
}

.sweetwater i:hover {
  color: var(--orange-c);
}

[class^="carousel-control-"] {
  z-index: 2000;
}

.amenities {
}

.sbi_header_img {
  background-color: var(--orange);
}

.slider-float-4 {
  /* ===================== Got rid of the nasty blue stripe for now ========================== */
  position: absolute;
  z-index: 5;
  height: 50rem;
  width: 38%;
  clip-path: polygon(0 0, 100% 0%, 325px 100%, 0% 100%);
  background: transparent;
  /* background: linear-gradient(0deg, rgba(244,244,244,0) 0%, rgba(66,81,118,0.2357536764705882) 21%, rgba(66,81,118,1) 96%, rgba(0,0,0,1) 100%); */
  /*    background: linear-gradient(0deg, rgba(244,244,244,0) 0%, rgba(66,81,118,0.2357536764705882) 15%, rgba(66,81,118,0.65) 50%, rgba(66,81,118,1) 88%, rgba(66,81,118,1) 97%, rgba(0,0,0,1) 100%);
 */
}

/*===================== End Taylor's Adjustments...kinda.==================*/

.slider-float-5 {
  position: absolute;
  z-index: 6;
  height: 20rem;
  width: 7%;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 0) 61%),
    var(--orange);
}

@media (max-width: 2000px) {
  .slider-float-1 {
    width: 35%;
  }
}

/* Homepage Slider */
.slider-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.hp-slider-content {
  display: flex;
  z-index: 10;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: var(--white);
  width: 30%;
  min-width: 30rem;
  text-align: center;
  margin-left: -2rem;
}
.splide {
  position: relative;
}
#splide-1 .splide__slide {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* min-height: 85vh; */
  padding: 28rem 0 35rem 0;
  width: 100vw !important;
}
.sub-hero {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub-hero-content {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  bottom: 10%;
  z-index: 1000;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.sub-hero-left,
.sub-hero-center,
.sub-hero-right {
  flex: 1;
  padding: 2rem;
  height: 100%;
}

.sub-hero-left,
.sub-hero-right {
  padding: 0 3rem;
}
.sub-hero-mobile {
  display: none;
}
.sub-hero-mobile {
  display: none;
}
@media (max-width: 1550px) {
  .sub-hero-left,
  .sub-hero-right {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
  }
}

@media (max-width: 2000px) {
  #splide-1 .splide__slide {
    padding: 28rem 0 40rem 0;
  }
}
@media (max-width: 1753px) {
  #splide-1 .splide__slide {
    padding: 28rem 0 33rem 0;
  }
  p {
    font-size: 1rem;
  }
}
@media (max-width: 1125px) {
  #splide-1 .splide__slide {
    padding: 28rem 0 36rem 0;
  }
}

@media (max-width: 1100px) {
  .sub-hero {
    display: none;
  }
  .sub-hero-content {
    position: relative;
  }
  #splide-1 .splide__slide {
    padding: 28rem 0 7rem 0;
  }
  #slider-img {
    max-width: 75% !important;
    height: auto !important;
  }
  .sub-hero-mobile-top {
    background: var(--dark-blue);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    height: 30px;
    width: 100%;
    margin-bottom: -1px;
    margin-top: -30px;
    position: relative;
    border-bottom: 2px solid var(--dark-blue);
    z-index: 5;
  }
  .sub-hero-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sub-hero-content {
    flex-direction: column;
  }
  .sub-hero-center {
    border-top: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    border-left: none !important;
    border-right: none !important;
    padding: 2rem 0;
  }
  .sub-hero-left,
  .sub-hero-center,
  .sub-hero-right {
    flex: 1;
    padding: 2rem 0 !important;
    margin: 0 2rem !important;
    height: 100% !important;
  }
}

@media (max-width: 767px) {
  .sub-hero-center {
    border-right: none !important;
    border-left: none !important;
    border-top: 2px solid var(--white) !important;
    border-bottom: 2px solid var(--white) !important;
  }
}
.sub-hero-content a {
  text-decoration: none;
  color: var(--light-blue);
}

.sub-hero h3 {
  width: 100%;
  color: var(--dark-blue) !important;
}

.sub-hero p {
  color: var(--white) !important;
}

.sub-hero-left p,
.sub-hero-center p,
.sub-hero-right p {
  color: var(--white);
}

.sub-hero-content h3 {
  color: var(--light-blue);
}

.sub-hero-center {
  padding: 0 3rem;
  border-left: 2px solid var(--white);
  border-right: 2px solid var(--white);
}

#above-slider {
  position: relative;
  z-index: 50;
}

#slider-img {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  top: 15rem;
  margin-left: auto;
  margin-right: auto;
  height: 10rem;
  width: auto !important;
}

/*===== Mobile -> 650px ==========*/
@media (max-width: 650px) {
  #slider-img {
    width: 21rem;
  }

  .hp-slider-content {
    top: 30%;
  }
}

@media (max-width: 480px) {
  .hp-slider-content {
    width: 50%;
  }
}

@media (max-width: 450px) {
  #slider-img {
    width: 17rem;
  }
}

/* Homepage Events */
.hp-events-conteainer {
  background: var(--light-blue);
  position: relative;
  z-index: 1;
}

.hp-events-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 0;
}

.events-top {
  background: var(--light-blue);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  height: 30px;
  width: 100%;
  margin-bottom: -1px;
  margin-top: -30px;
  position: relative;
  z-index: 5;
}

.events-bottom {
  background: var(--light-blue);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  height: 30px;
  width: 100%;
  margin-top: -1px;
  position: relative;
  z-index: 5;
}

.hp-events-left h1 {
  color: var(--dark-blue);
  text-transform: uppercase;
}

.hp-events-right {
  flex: 1;
  overflow: hidden;
}

.hp-events-left {
  margin-right: 5rem;
}

#splide-2 .splide__arrow--prev {
  left: 0rem;
}

#splide-2 .splide__arrow--next {
  right: 0rem;
}

.splide__slide {
  padding: 0 2rem;
}

.single-event {
  height: 100%;
  width: 100%;
}

.single-event a {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  border: 1px solid var(--white);
  text-decoration: none;
  color: var(--white);
}

.single-event a:hover .single-event-left {
  background: var(--orange);
  transition: 0.2s;
}

.single-event a p {
  margin: 0 !important;
  padding: 0 !important;
}

.single-event a .single-event-left {
  flex: 1;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-right: 1px solid var(--white);
  background: var(--dark-blue);
  color: var(--white);
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  transition: 0.2s;
}

.single-event a .single-event-left .day {
  font-size: 30px;
  margin-top: -10px !important;
}

.single-event-right a {
  color: var(--white);
  text-transform: uppercase;
  text-decoration: none;
}

.single-event a .single-event-right {
  flex: 3;
  padding: 0.4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#splide-2 .splide__track {
  padding: 2.5rem 0.5rem;
}

@media (max-width: 1100px) {
  .hp-events-content {
    flex-direction: column;
    justify-content: center;
    align-items: unset;
    text-align: center;
  }

  .hp-events-left {
    margin-right: 0;
    margin-bottom: 2rem;
  }

  .splide__track {
    margin: 0px;
  }
}

/* Podcasts */
.hp-vault-container {
  padding: 5rem 0 0 0;
  margin-top: -30px;
  background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0) 15%,
      rgba(0, 0, 0, 0) 85%,
      rgba(0, 0, 0, 0.4) 100%
    ),
    var(--orange);
}

.hp-vault-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.hp-vault-left {
  margin-right: 5rem;
}

.hp-vault-left img {
  height: 20rem;
}

.hp-vault-right {
  /* flex: 1; */
  overflow: hidden;
  margin-bottom: 3rem;
}

.hp-vault-right-title {
  text-align: center;
}

.hp-vault-right-title h4 {
  text-transform: uppercase;
  color: var(--dark-blue);
  font-weight: var(--font-weight-bold);
  /* font-family: "Gotham Bold"; */
}

.hp-vault-right-title p {
  text-transform: uppercase;
  color: var(--white);
  font-weight: var(--font-weight-med);
  /* font-family: "Gotham Medium"; */
}

#splide-3 .splide__arrow--prev {
  left: 0rem;
}

#splide-3 .splide__arrow--next {
  right: 0rem;
}

#splide-3 .splide__track {
  margin: 0px 3rem;
}

.hp-single-podcast a {
  color: var(--white);
  text-decoration: none;
}

@media (max-width: 1350px) {
  .hp-vault-content {
    flex-direction: column-reverse;
    align-items: center;
  }

  .hp-vault-right {
    width: 100%;
    margin-bottom: 2rem;
  }

  .hp-vault-left img {
    width: 100%;
    height: auto;
  }

  .hp-vault-left {
    margin: 0;
  }
}

@media (max-width: 500px) {
  .splide__slide {
    padding: 1rem 0;
  }

  .events {
    padding-bottom: 2rem;
  }
}

/* ========================================== INTERIOR PAGE ==========================================*/
.page-header-container {
  clip-path: polygon(0 0%, 100% 0, 100% 100%, 0 88%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header-content {
  padding: 13rem 0 10rem 0;
  text-align: center;
}

.page-header-content h1 {
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  /* font-family: "Gotham Bold"; */
  color: var(--white);
}

.page-header-content p {
  color: var(--white);
  /* margin: 4rem 0 -4rem 0; */
}

.page-container {
  background: linear-gradient(
      181deg,
      rgba(66, 81, 118, 1) 0%,
      rgba(66, 81, 118, 0) 6rem
    ),
    var(--white);
  clip-path: polygon(0 0, 100% 3rem, 100% 100%, 0 100%);
  margin-top: -3rem;
}

.entry-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.interior-top {
  display: flex;
  justify-content: start;
  flex-direction: column;
  width: 52%;
  padding: 8rem 0;
}

.interior-all {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  max-width: 60rem;
  width: 80%;
  padding: 2rem 0;
}

.interior-top h2,
.interior-all h2 {
  color: var(--dark-blue);
  font-weight: var(--font-weight-bold);
  /* font-family: "Gotham Bold"; */
  text-transform: uppercase;
  text-align: start;
  margin-bottom: 0.85rem;
}

.interior-top .secondary,
.interior-all .secondary {
  padding-top: 3rem;
  color: var(--light-blue);
}

.interior-top a,
.interior-all a {
  color: var(--orange);
  text-decoration: none;
  text-align: start;
}

.interior-top ul,
.interior-all ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
}

.amenities-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  font-size: 1rem;
  row-gap: 0.5rem;
}

.splide-3-list li {
  width: 100%;
}

.amenities-half {
  background-color: var(--orange-c);
}

.amenities-list li {
  font-weight: bold;
}

.amenity {
  margin: 1rem;
  width: 10rem;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.amenity i {
  color: var(--dark-blue);
  font-size: 28px;
  padding-bottom: 1rem;
}

.vmp {
  padding: 2rem;
  background: url("/wp-content/uploads/2023/12/vmp-front-entrance-bkgd-scaled.jpg")
    no-repeat center center;
  background-size: cover;
  color: rgba(255, 255, 255, 0.9);
}

.vmp h2 {
  color: var(--light-blue);
}

.team-cards {
  /* display: flex;
    justify-content: space-between; */
  align-items: start;
}

.attorneys,
.accountants {
}

.accordion {
  width: 100%;
  overflow: hidden;
}

.table i {
  color: var(--orange);
  font-size: 1.5rem;
  display: flex;
  justify-content: center;
}

thead th {
  text-align: center;
}

.table td {
  text-align: center;
  vertical-align: middle;
}

@media (max-width: 650px) {
  .table {
    font-size: 1rem;
  }

  .table-row {
    overflow-x: scroll;
  }
}
/* .table tr td {
    display: flex;
    align-items: center;
    justify-content: center;
} */

@media (max-width: 1300px) {
  .interior-all {
    width: 80%;
  }

  .page-header-content h1 {
    text-align: center;
  }

  .page-header-content p {
    margin: 0;
  }
}

@media (max-width: 800px) {
  .page-header-content {
    padding: 10rem 0;
  }

  .interior-top,
  .interior-all {
    width: 100%;
  }

  .interior-top h2,
  .interior-all h2 {
    text-align: start;
  }
}

/* ========================================== EVENTS ==========================================*/
.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
  padding-top: 0;
  width: 80%;
}

/* ========================================== CONTACT PAGE ==========================================*/
.gform-theme--foundation .gform_fields {
  gap: 1rem !important;
}

/* ========================================== FOOTER ==========================================*/
.footer-container {
  position: relative;
  z-index: 10;
  background: var(--dark-blue);
  padding: 3rem 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
}

.footer-left img {
  height: 3rem;
}

.footer-right {
  display: flex;
  align-items: center;
}

.footer-left-one p {
  margin-top: 1rem;
  color: var(--white);
}

.footer-right-one img {
  height: 3rem;
}

.footer-right-two {
  padding: 1rem 0 1rem 3rem;
  margin-left: 3rem;
  border-left: 1px solid var(--white);
}

.footer-right-two img {
  height: 5rem;
}

.footer-left-two {
  padding: 0 3rem;
  margin: 0 3rem;
  border-left: 1px solid var(--white);
  border-right: 1px solid var(--white);
  color: var(--white);
}

.footer-left-two a {
  text-decoration: none;
  color: var(--white);
}

.footer-left h5 {
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-left-two p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.social-icons a {
  color: var(--dark-blue);
  font-size: 22px;
  padding: 8px 12px;
  margin-right: 1rem;
  background: var(--white);
  border-radius: 50px;
}

@media (max-width: 2000px) {
  .footer-left img {
    height: 2rem;
  }

  .footer-right-one img {
    height: 2rem;
  }

  .footer-right-two img {
    height: 3rem;
  }
}

@media (max-width: 1500px) {
  .footer-left-two {
    padding: 0 2rem;
    margin: 0 2rem;
  }

  .footer-right-two {
    padding: 1rem 0 1rem 2rem;
    margin-left: 2rem;
  }
}

@media (max-width: 1450px) {
  .footer-content {
    flex-direction: column;
  }

  .footer-right {
    margin-top: 3rem;
  }

  .footer-right-two {
    border: none;
  }
}

@media (max-width: 800px) {
  .footer-left {
    flex-direction: column;
  }

  .footer-left-two {
    margin: 0 0 1rem 0;
    padding: 1rem 0;
    border: none;
  }

  .footer-left-three {
    text-align: center;
  }

  .social-icons a {
    margin: 0 0.5rem;
  }
}

@media (max-width: 550px) {
  .footer-right {
    flex-direction: column;
  }

  .footer-right-two {
    margin: 0;
    padding: 1rem;
  }
}

@media (max-width: 400px) {
  .footer-right-one img {
    height: auto;
    width: 100%;
  }
}
