*:focus {
  outline: none !important;
  box-shadow: none !important;
}

:root {
  --ak-orange: #ce6d46;
}
.moday-body {
  max-width: 100%;
}
header {
  background-color: white;
  width: 100vw;
  height: 115px;
  position: absolute;
}

footer {
  background-color: white;
  width: 100vw;
  height: 130px;
  position: absolute;
}

body {
  margin: 0;
}

h1 {
  text-align: center;
  font-family: "argesta_displayregular";
  font-size: 3.5rem;
}

h2 {
  text-align: center;
  font-family: "argesta_displayregular";
  font-size: 3.5rem;
}

#bannerContent h5 a {
    text-decoration: underline;
}

.content {
  padding-top: 150px;
}
.content.back {
  z-index: -3;
}
#eventLink {
  color: black;
}
#eventLink:hover {
  color: var(--ak-orange);
  text-decoration: none;
}

#event_modal #description {
  text-transform: none;
  text-align: left;
}

@media (max-width: 1200px) {
}
@media (max-width: 992px) {
}
@media (max-width: 768px) {
}
@media (max-width: 576px) {
}

/* FONTS*/

@font-face {
  font-family: "argesta_displayregular";
  src: url("./Fonts/webfontkit-20200915-113005/argestadisplay-regular-webfont.woff")
      format("woff"),
    url("/Fonts/webfontkit-20200915-113005/argestadisplay-regular-webfont.woff2")
      format("woff2");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Roboto", sans-serif;
}

/* HEADER HOME PAGE*/

.menu {
  position: fixed;
  right: 80px;
  top: 100px;
  text-align: right;
  transition: all 0.5s ease;
  z-index: 10;
  background: #ce6d46;
  width: 460px;
  max-width: 100%;
  height: 100vh;
  min-height: 1000px;
  padding-top: 100px;
  top: 0px;
  right: 0;
  padding-right: 40px;
  padding-left: 15px;
  -webkit-box-shadow: 2px 22px 20px 14px rgba(0, 0, 0, 0.38);
  -moz-box-shadow: 2px 22px 20px 14px rgba(0, 0, 0, 0.38);
  box-shadow: 2px 22px 20px 14px rgba(0, 0, 0, 0.38);
}
.menu.closed {
  visibility: hidden;
  transform: translateX(200%);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.75);
  z-index: 9;
}
.menu-overlay.closed {
  display: none;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.menu-link {
  text-decoration: none;
  color: black;
  font-family: "Arsenal", sans-serif;
  font-weight: 700;
  font-size: 2rem;
}

.menu-item {
  transition: all 0.3s ease;
}

.menu-item:hover {
  transform: scale(1.02) translateX(-4%);
}
.menu-link:hover {
  color: white;
  text-decoration: none;
  transform: scale(1.1);
}

.mountain-quote {
  position: absolute;
  width: 100%;
  top: 58%;
}

.mountain-quote .small {
  display: none;
  font-size: 14px;
}
.mountain-quote .large {
  display: block;
}

#mountain-quote {
  margin: 0 auto;
  width: 600px;
  max-width: 100%;
  color: white;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.1em;
  opacity: 0;
  text-shadow: 2px 2px 11px rgba(145, 145, 145, 1);
}
#mountain-quote.zoom {
  opacity: 1;
  transition: all 1.5s ease-in-out;
}

.mountain-wrapper {
  position: relative;
  height: 100vh;
  min-height: 500px;
  background-color: white;
}

@media (max-width: 1200px) {
}
@media (max-width: 992px) {
}
@media (max-width: 768px) {
  .mountain-wrapper {
    height: 72vh;
  }
}

.mobile-scroll-down {
  display: none;
}
@media (max-width: 576px) {
  .mobile-scroll-down {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
  }
  .mountain-quote .small {
    display: block;
  }
  .mountain-quote .large {
    display: none;
  }
  .mountain-wrapper {
    height: 50vh;
    min-height: 0;
  }
  .mountains {
    height: 50vh;
    min-height: 50vh;
    top: 0;
  }
  .mountains .one,
  .mountains .two,
  .mountains .three,
  .mountains .four,
  .mountains .five {
    background-position: bottom center !important;
  }
  #mountain-quote {
    color: rgba(0, 0, 0, 1) !important;
  }
  .site-title {
    top: 38%;
  }
  .arrow,
  .scroll_down {
    display: none;
  }
  .mountain-quote {
    top: 50vh;
    padding: 15px 52px;
  }
  .mountain_section {
    padding-top: 40px;
  }
  .rock_buttons {
    margin-top: 50vh;
  }
}

/* HEADER NON-HOMEPAGE*/

.logo {
  position: absolute;
  height: 80px;
  margin-left: 20px;
  margin-top: 10px;
}

@media (max-width: 1200px) {
}
@media (max-width: 992px) {
}
@media (max-width: 768px) {
}
@media (max-width: 576px) {
}

/* Codepen Hamburger Menu*/
.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  position: fixed;
  right: 10px;
  z-index: 11;
}
.hamRotate.active {
  transform: rotate(45deg);
}
.hamRotate180.active {
  transform: rotate(180deg);
}
.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #000;
  stroke-width: 5.5;
  stroke-linecap: round;
}

.ham7 .top {
  stroke-dasharray: 40 82;
}
.ham7 .middle {
  stroke-dasharray: 40 111;
}
.ham7 .bottom {
  stroke-dasharray: 40 161;
}
.ham7.active .top {
  stroke-dasharray: 17 82;
  stroke-dashoffset: -62px;
}
.ham7.active .middle {
  stroke-dashoffset: 23px;
}
.ham7.active .bottom {
  stroke-dashoffset: -83px;
}

@media (max-width: 1200px) {
}
@media (max-width: 992px) {
}
@media (max-width: 768px) {
}
@media (max-width: 576px) {
}

/* PARALLAX MOUNTAINS*/

.storyteller-title {
  position: absolute;
  color: white;
  font-size: 25px;
  font-weight: 100;
  text-transform: uppercase;
  z-index: 9;
  width: 100%;
  top: 34%;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
}

.site-title {
  position: absolute;
  color: white;
  font-size: 100px;
  font-weight: 100;
  text-transform: uppercase;
  z-index: 9;
  width: 100%;
  top: 36%;
  text-shadow: 2px 4px 3px rgba(0, 0, 0, 0.3);
}
.mountains {
  position: absolute;
  display: block;
  bottom: -5px;
  width: 100%;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
}

.mountains .one,
.mountains .two,
.mountains .three,
.mountains .four,
.mountains .five {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 105%;
}
.mountains .one {
  background-image: url("images/mountains-1.svg");
  z-index: 0;
}
.mountains .two {
  background-image: url("images/mountains-2.svg");
  z-index: -1;
}
.mountains .three {
  background-image: url("images/mountains-3.svg");
  z-index: -2;
}
.mountains .four {
  background-image: url("images/mountains-4.svg");
  z-index: -3;
}
.mountains .five {
  background-image: url("images/mountains-5.svg");
  z-index: -4;
}

/* ARROW BOUNCE*/

@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.arrow {
  position: absolute;
  bottom: 50px;
  left: 50%;
  margin-left: -20px;
  width: 40px;
  height: 40px;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxNi4wLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+DQo8c3ZnIHZlcnNpb249IjEuMSIgaWQ9IkxheWVyXzEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB3aWR0aD0iNTEycHgiIGhlaWdodD0iNTEycHgiIHZpZXdCb3g9IjAgMCA1MTIgNTEyIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA1MTIgNTEyIiB4bWw6c3BhY2U9InByZXNlcnZlIj4NCjxwYXRoIGZpbGw9IiNGRkZGRkYiIGQ9Ik0yOTMuNzUxLDQ1NS44NjhjLTIwLjE4MSwyMC4xNzktNTMuMTY1LDE5LjkxMy03My42NzMtMC41OTVsMCwwYy0yMC41MDgtMjAuNTA4LTIwLjc3My01My40OTMtMC41OTQtNzMuNjcyICBsMTg5Ljk5OS0xOTBjMjAuMTc4LTIwLjE3OCw1My4xNjQtMTkuOTEzLDczLjY3MiwwLjU5NWwwLDBjMjAuNTA4LDIwLjUwOSwyMC43NzIsNTMuNDkyLDAuNTk1LDczLjY3MUwyOTMuNzUxLDQ1NS44Njh6Ii8+DQo8cGF0aCBmaWxsPSIjRkZGRkZGIiBkPSJNMjIwLjI0OSw0NTUuODY4YzIwLjE4LDIwLjE3OSw1My4xNjQsMTkuOTEzLDczLjY3Mi0wLjU5NWwwLDBjMjAuNTA5LTIwLjUwOCwyMC43NzQtNTMuNDkzLDAuNTk2LTczLjY3MiAgbC0xOTAtMTkwYy0yMC4xNzgtMjAuMTc4LTUzLjE2NC0xOS45MTMtNzMuNjcxLDAuNTk1bDAsMGMtMjAuNTA4LDIwLjUwOS0yMC43NzIsNTMuNDkyLTAuNTk1LDczLjY3MUwyMjAuMjQ5LDQ1NS44Njh6Ii8+DQo8L3N2Zz4=);
  background-size: contain;
  opacity: 0.4;
}

.scroll_down {
  letter-spacing: 1.75px;
  text-align: center;
  bottom: 48px;
  position: relative;
  font-size: 12px;
  color: rgba(225, 225, 225, 0.5);
}

.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

@media (max-width: 1200px) {
  .arrow {
    bottom: 124px;
  }
  .scroll_down {
    bottom: 110px;
  }
}
@media (max-width: 992px) {
  .site-title {
    font-size: 75px;
    top: 37%;
  }
  #mountain-quote {
    width: 450px;
    margin-top: 32px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  /* .mountains .one,
  .mountains .two,
  .mountains .three,
  .mountains .four,
  .mountains .five {
    display: none;
  }
  .mountains{
    background-image: url('images/mountain_background_sm.png');
    background-size: cover;
    background-repeat: no-repeat;
  } */

  .mountains {
    height: 72vh;
    top: 0;
  }

  .storyteller-title {
    font-size: 20px;
    top: 34%;
  }

  .site-title {
    font-size: 50px;
    top: 42%;
  }

  #mountain-quote {
    margin-top: 22px;
    font-size: 12px;
  }

  .arrow {
    bottom: 103px;
  }
  .scroll_down {
    bottom: 100px;
  }
}

@media (max-width: 576px) {
  .storyteller-title {
    font-size: 15px;
    top: 42%;
  }

  .site-title {
    font-size: 34px;
    top: 50%;
  }

  /* .mountain-quote {
    top: 40%;
    padding: 0px 30px;
  } */
  .arrow {
    bottom: 157px;
  }
  .scroll_down {
    bottom: 145px;
  }
  .mountains {
    height: 47vh;
    top: 0;
  }
}

/* HOME PAGE QUOTE- LEAD TO ABOUT PAGE*/

.home-page-quote {
  margin: 0px auto;
  padding-bottom: 200px;
  width: 82%;
  font-family: "argesta_displayregular";
  font-size: 20px;
}

.home-quote-link {
  color: #ce6d46;
  text-decoration: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 20px;
  text-align: right;
  float: right;
}

.home-quote-link:hover {
  text-decoration: underline;
  color: #ce6d46;
}

.home-quote-link:visited {
  color: #ce6d46;
  text-decoration: none;
}

/* ROCK BUTTONS*/
.button-wrapper {
  width: 400px;
  max-width: 100%;
  margin: 50px auto;
}

.button-orange {
  background-color: var(--ak-orange);
  color: white;
  text-transform: uppercase;
  font-size: 13px;
  box-shadow: -3px 3px 2px grey;
  border-radius: 6px;
  letter-spacing: 1.75px;
  width: 100%;
  max-width: 240px;
  display: block;
  margin: 0 auto;
}

.button-orange:focus {
  background-color: var(--ak-orange);
  color: white;
  text-transform: uppercase;
  font-size: 13px;
  box-shadow: -3px 3px 2px grey !important;
  border-radius: 6px;
  letter-spacing: 1.75px;
  width: 100%;
  max-width: 240px;
  display: block;
  margin: 0 auto;
}

.button-orange:hover {
  transform: scale(1.18);
  transition: all 0.1s ease-in-out;
}

@media screen and (max-width: 468px) {
  .button-orange {
    height: 67px;
  }
}
.modal-dialogm .modal,
.modal-body {
  max-width: calc(100% - 10px);
}

.rock-buttons {
  display: block;
  /* height: 450px; */
  max-height: 450px;
  margin-bottom: 100px;
  margin-top: 50px;
}

.rock-buttons:hover {
  transform: scale(1.18);
  transition: all 0.1s ease-in-out;
}

@media (max-width: 1200px) {
}
@media (max-width: 992px) {
  .rock-buttons {
    margin-bottom: 100px;
  }
}
@media (max-width: 768px) {
  .rock-buttons {
    margin-bottom: 50px;
  }
}
@media (max-width: 576px) {
  .modal-title,
  .modal-content,
  .modal {
    width: auto;
  }
  /* .rock-buttons{
    margin-top: -100px;
    margin-bottom: -100px;
  } */
}

/* NON HOME PAGE PAGE TITLE */
.page-title {
  text-align: center;
  padding-bottom: 20px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
@media (max-width: 1200px) {
}
@media (max-width: 992px) {
}
@media (max-width: 768px) {
}
@media (max-width: 576px) {
  .page-title h1 {
    font-size: 2rem;
  }
}

/*ABOUT ME PAGE*/

.about-page-quote {
  margin: 0 auto;
  width: 631px;
  max-width: 100%;
  padding: 56px;
  text-shadow: 1px 1px 14px rgba(79, 144, 191, 0.75);
  text-align: center;
  font-size: 18px;
}

.about-wrapper {
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.andrea-portrait {
  /* position: relative;
    display:block; */
  /* margin: 0 auto; */
  /* height: 600px; */
  /* margin-top: 150px; */
  /* margin-bottom: 200px; */
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.about-me-copy {
  margin-top: 82px;
  margin-left: 12px;
  margin-right: 12px;
  text-align: center;
  font-size: 18px;
  line-height: 31px;
  letter-spacing: 1px;
}

#am-copy-1 {
  padding-left: 100px;
}

#am-copy-2 {
  padding-right: 40px;
}

#am-copy-3 {
  padding-left: 90px;
  padding-top: 50px;
}

#am-copy-4 {
  padding-right: 150px;
}

#am-copy-5 {
  padding-left: 40px;
  padding-top: 20px;
}

#am-copy-6 {
  padding-right: 80px;
  padding-top: 55px;
}

@media (max-width: 1200px) {
  .andrea-portrait {
    width: 100%;
    height: 75%;
  }

  #am-copy-1 {
    padding-left: 0px;
  }

  #am-copy-2 {
    padding-right: 0px;
  }

  #am-copy-3 {
    padding-left: 0px;
    padding-top: 0px;
  }

  #am-copy-4 {
    padding-right: 0px;
  }

  #am-copy-5 {
    padding-left: 0px;
  }

  #am-copy-6 {
    padding-right: 0px;
  }
}
@media (max-width: 992px) {
  .about-me-copy {
    margin: 0px 0px 0px 33px;
    text-align: left;
  }

  .andrea-portrait {
    width: 77%;
    height: 100%;
  }

  #am-copy-1 {
    padding-left: 0px;
    padding-top: 50px;
  }

  #am-copy-2 {
    padding-top: 50px;
  }

  #am-copy-3 {
    padding-top: 50px;
  }

  #am-copy-4 {
    padding-top: 50px;
  }

  #am-copy-5 {
    padding-top: 50px;
  }

  #am-copy-6 {
    padding-top: 50px;
  }
}
@media (max-width: 768px) {
  .andrea-portrait {
    width: 90%;
    height: 88%;
  }

  #am-copy-1 {
    padding-top: 25px;
  }

  #am-copy-2 {
    padding-top: 25px;
  }

  #am-copy-3 {
    padding-top: 25px;
  }

  #am-copy-4 {
    padding-top: 25px;
  }

  #am-copy-5 {
    padding-top: 25px;
  }

  #am-copy-6 {
    padding-top: 25px;
  }
}

@media (max-width: 576px) {
  .andrea-portrait {
    width: 100%;
    height: 100%;
  }

  .about-me-copy {
    margin: 0px 15px;
  }
}

/*HIRE MEPAGE*/

.form-background {
  position: relative;
  background-image: url(./images/Hire_Me_Form-09.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 50px auto;
  /* padding-top: 22px;
  margin-bottom: 200px; */
  height: 100%;
  width: 80%;
  border-radius: 36px;
  -webkit-box-shadow: -23px 18px 18px -4px rgba(0, 0, 0, 0.38);
  -moz-box-shadow: -23px 18px 18px -4px rgba(0, 0, 0, 0.38);
  box-shadow: -23px 18px 18px -4px rgba(0, 0, 0, 0.38);
}
.form-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border-radius: 36px;
  z-index: -1;
  -webkit-box-shadow: -23px 18px 18px -4px rgba(0, 0, 0, 0.38);
  -moz-box-shadow: -23px 18px 18px -4px rgba(0, 0, 0, 0.38);
  box-shadow: -23px 18px 18px -4px rgba(0, 0, 0, 0.38);
}

.form-copy {
  position: relative;
  text-align: center;
  width: 75%;
  margin: 0 auto;
  padding: 30px 0px 0px 0;
  /* padding-left: 21%;
  padding-right: 20%;
  padding-bottom: 25%;
  padding-top: 10%; */
  color: white;
  font-size: 20px;
}

.offerings-link {
  color: white;
}

.offerings-link:hover {
  color: white;
  transform: scale(1.1);
  transition: all 0.2s ease-in-out;
  text-transform: underline white;
}

.form-btn {
  position: relative;
  background-color: #97cbe8;
  border: 3px solid #ce6d46;
  padding: 5px 0px;
  width: 385px;
  margin: 0 auto;
  display: block;
  max-width: 80%;
  letter-spacing: 1px;
  color: #ce6d46;

  transition: all 0.2s ease-in-out;
}

.contact-link {
  padding: 0px 0px 20px 0;
}

.form-btn:hover {
  transform: scale(1.1);
  color: #b5603e;
  border-color: #b5603e;
  background-color: #8cbdd7;
}

#mailForm {
  color: white;
}
#mailForm .form-wrapper {
  width: 385px;
  max-width: 80%;
  margin: 30px auto;
}

.swiper-container {
  width: 100vw;
  height: 400px;
  margin-top: 100px;
  margin-bottom: 100px;
  overflow-x: scroll;
}

.swiper-img {
  height: 100%;
  width: 100%;
  object-position: center;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: white;
}

@media (max-width: 1200px) {
  /* .form-background {
    margin: 50px 112px;
  } */

  /* .form-copy {
    padding-left: 17%;
    padding-right: 17%;
    padding-bottom: 27%;
    padding-top: 10%;
  } */
}
@media (max-width: 992px) {
  /* .form-copy {
    padding-left: 12%;
    padding-right: 12%;
    padding-bottom: 21%;
    padding-top: 5%;
  } */
  /* .form-background {
    margin: 50px 63px;
  } */

  .swiper-container {
    height: 300px;
  }
}
@media (max-width: 767px) {
  /* .form-background {
    margin: 37px 2px;
  } */
  /* .form-copy {
    padding-left: 15%;
    padding-right: 15%;
    padding-bottom: 17%;
    padding-top: 4%;
  } */

  /* .form-btn {
    bottom: 85px;
    background-color: white;
  } */
  #mailForm .form-wrapper {
    width: 75%;
  }
  /* .form-btn {
    margin-top: -20px;
  } */

  .swiper-container {
    width: 100vw;
    height: 200px;
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .offerings-background {
    background-color: #c0e4f9;
    margin-top: 100px;
    padding-bottom: 50px;
  }

  .offerings-wrapper {
    min-height: 83px;
    margin-top: 22px;
    padding: 5px 20px;
  }
}
@media (max-width: 576px) {
  /* .form-copy {
    padding-left: 12%;
    padding-right: 12%;
    padding-bottom: 26%;
    padding-top: 7%;
    font-size: 17px;
  } */
  #mailForm .form-wrapper {
    width: 75%;
    font-size: 15px;
  }

  .form-btn {
    /* bottom: -31px; */
    font-size: 15px;
    /* margin-top: -30px; */
    /* background-color: white; */
  }

  .swiper-container {
    height: 100px;
  }
  .offerings-background {
    margin-top: 200px;
  }
}

@media (max-width: 520px) {
  /* .form-copy {
    padding-bottom: 2%;
    font-size: 14px;
  } */
}

@media (max-width: 414px) {
  .form-copy {
    /* padding-left: 14%;
    padding-right: 14%;
    padding-bottom: 20%;
    padding-top: 2%; */
    font-size: 16px;
  }
  /* .form-btn {
    padding: 5px 20px;
    margin-top: 80px;
  } */
  .form-wrapper {
    display: none;
  }
  .offerings-background {
    /* margin-top: 200px; */
  }
}

/*LEARN MORE PAGE*/

.learn-more-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 70px;
  padding: 80px;
}

.learn-more-sections {
  position: relative;
  padding-bottom: 35px;
  height: 350px;
  max-width: 350px;
  border-radius: 25px;
  -webkit-box-shadow: -23px 18px 18px -4px rgba(0, 0, 0, 0.38);
  -moz-box-shadow: -23px 18px 18px -4px rgba(0, 0, 0, 0.38);
  box-shadow: -23px 18px 18px -4px rgba(0, 0, 0, 0.38);

  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: center;

  cursor: pointer;
  transition: all 0.2s ease-in-out;
  background-color: #97cbe8;
}

.learn-more-sections:hover {
  transform: scale(1.2);
  color: #ce6d46;
}

.learn-more-section-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 295px;
  min-width: 270px;
}

.learn-more-item {
  text-decoration: none;
  text-align: center;
  font-family: "argesta_displayregular";
  text-transform: uppercase;
  color: white;
  background-color: #97cbe8;

  height: fit-content;
  position: absolute;
  padding-top: 25px;
  padding-bottom: 15px;
  bottom: 0;
  left: 0;
  right: 0;

  flex-grow: 1;
  z-index: 2;
}

.learn-more-sections:hover .learn-more-item {
  color: #2d5870;
}

.learn-more-link:hover {
  text-decoration: none !important;
}

.learn-more-modal-img {
  width: 100%;
  border-radius: 10px;
  margin: 30px 0px;
}

#learn-more-section-3 {
  object-fit: cover;
}

#learn-more-section-4 {
  object-fit: cover;
}

#learn-more-section-5 {
  object-fit: cover;
}

.indent {
  margin-left: 50px;
}

.modal-content {
  max-width: calc(100% - 10px);
  border: 0px solid rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  -webkit-box-shadow: 0px 0px 69px 22px rgba(0, 0, 10, 0.66);
  -moz-box-shadow: 0px 0px 69px 22px rgba(0, 0, 10, 0.66);
  box-shadow: 0px 0px 69px 22px rgba(0, 0, 10, 0.66);
}

.modal-header {
  border-bottom: 0px;
  letter-spacing: 3px;
}

.modal-title {
  padding: 20px 0px 10px 20px;
  font-size: 40px;
  font-family: "argesta_displayregular";
  text-transform: uppercase;
}

.modal-body {
  letter-spacing: 2px;
  padding: 20px 30px;
  font-size: 18px;
}

.cyp-btn {
  position: relative;
  background-color: transparent;
  border: 3px solid #ce6d46;
  padding: 5px 88px;
  width: 385px;
  margin: 0 auto;
  display: block;
  max-width: 80%;
  color: #ce6d46;
}

.cyp-btn:hover {
  border: 3px solid #367899;
  color: #367899;
  cursor: pointer;
  transform: scale(1.1);
  transition: all 0.2s ease-in-out;
}

.cyp-btn:focus {
  position: relative;
  background-color: transparent;
  border: 3px solid #ce6d46;
  padding: 5px 88px;
  width: 385px;
  margin: 0 auto;
  display: block;
  max-width: 80%;
  color: #ce6d46;
  text-decoration: none;
}

@media (max-width: 1200px) {
}
@media (max-width: 992px) {
}
@media (max-width: 768px) {
}
@media (max-width: 576px) {
}

/*CALENDAR PAGE*/

.fc-daygrid-day-number {
  color: #ce6d46;
}

.fc-daygrid-day-number:hover {
  color: #367899;
}

.fc-col-header-cell-cushion {
  color: #ce6d46;
}

.fc-col-header-cell-cushion:hover {
  color: #4f90bf;
}

.fc .fc-button-primary {
  color: #ce6d46;
  background-color: #8f3316;
  border: #ce6d46 1px solid;
}

.fc .fc-button-primary:disabled {
  color: rgba(190, 222, 244, 0.5);
  background-color: rgba(54, 121, 155, 0.5);
  border: rgba(190, 222, 244, 0.5) 1px solid;
}

.fc .fc-button-primary:hover {
  color: rgba(190, 222, 244, 0.75);
  background-color: rgba(54, 121, 155, 0.75);
  border: rgba(190, 222, 244, 0.75) 1px solid;
}

.fc .fc-daygrid-day.fc-day-today {
  background-color: rgba(190, 222, 244, 0.75);
}

#calendar {
  margin-top: 100px;
}

@media (max-width: 1200px) {
}
@media (max-width: 992px) {
}
@media (max-width: 768px) {
}

/*PRESS PAGE*/

.press-sections {
  position: relative;
  margin: 20px 10px;
  border-radius: 36px;
  background-color: white;
  border: 2px solid #ce6d46;
  padding-top: 30px;
  color: #000;
}

.ongoing-sections {
  position: relative;
  margin: 20px 10px;
  border-radius: 36px;
  background-color: white;
  border: 2px solid #367899;
  padding-top: 30px;
  color: black;
}

.ongoing-sections:hover {
  text-decoration: none;
}

#ongoing-affiliations {
  padding-top: 50px;
  padding-bottom: 50px;
}

.press-item {
  font-size: 1.5rem;
  padding-top: 20px;
  text-align: left;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  align-items: center;
  color: #000;
}

.press-link:hover {
  text-decoration: underline black;
}

.press-item::before {
  content: "";
  display: inline-block;
  width: 15%;
  height: 45px;
  background-image: url("images/rock_illustrations-05.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 10px;
}

.press-copy {
  padding: 20px 40px;
  text-align: left;
  margin-left: 15%;
  margin-right: 10%;
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 32px;
}

.press-page-quote {
  margin: 0 auto;
  width: 80%;
  padding: 56px;
  padding-top: 40px;
  text-shadow: 1px 1px 14px rgba(79, 144, 191, 0.75);
  text-align: center;
  font-size: 20px;
  font-style: italic;
}

@media (max-width: 1200px) {
}
@media (max-width: 992px) {
}
@media (max-width: 768px) {
}
@media (max-width: 576px) {
  .press-copy {
    padding: 20px 0px;
  }
}

/*VIDEOS*/

.video-page-quote {
  margin: 0px auto;
  padding-bottom: 100px;
  width: 65%;
  text-align: center;
  font-family: "argesta_displayregular";
  font-size: 20px;
  text-shadow: 1px 1px 14px rgba(79, 144, 191, 0.75);
}

.video {
  /* position: absolute; */
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  /* width: 600px; */
  width: 100%;
  margin: 0 auto;
  /* height: 500px; */
}

iframe {
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 20px;
}
.video iframe {
  width: 100%;
}
.video_still {
  width: 100%;
  position: relative;
  padding: 0px 30px;
}

.video_btn {
  width: 100%;
  position: absolute;
  top: 29%;
}
.video_btn img {
  width: 140px;
  margin: 0 auto;
  display: block;
  z-index: 10;
}
.video_btn img:hover {
  cursor: pointer;
  transform: scale(1.5);
}

.video_title {
  position: relative;
  bottom: 139px;
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

@media (max-width: 1200px) {
  .video_title {
    bottom: 162px;
  }
}

@media (max-width: 1000px) {
  .video_title {
    bottom: 123px;
    font-size: 1rem;
  }
}
@media (max-width: 991px) {
  .video_title {
    bottom: 231px;
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
}
@media (max-width: 576px) {
  .video_title {
    bottom: 91px;
    font-size: 14px;
  }
  .video_btn {
    top: 24%;
  }
}

/* STORY SPAY & ASSA PAGE*/

.story-space-img {
  display: block;
  margin: 40px auto;
  height: 60%;
  margin-bottom: 70px;
}

.story-space-copy {
  margin: 40px auto;
  margin-bottom: 100px;
}
.assa-img {
  display: block;
  border-radius: 50%;
}

.assa-copy {
  position: relative;
  margin: 40px auto;
}

.assa-container {
  padding-left: 40px;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
}

@media (max-width: 1200px) {
}
@media (max-width: 992px) {
}
@media (max-width: 768px) {
}
@media (max-width: 576px) {
}

/* BACKGROUND */

.background-toggle-wrapper {
  z-index: 20;
}
.background-toggle {
  z-index: 20;
  display: block;
  margin: 100px auto;
  background-color: transparent;
  border: solid 2px #ce6d46;
  border-radius: 10px;
  font-weight: 300;
  padding: 5px 15px;
}

.background-toggle:hover {
  background-color: #ce6d46;
  color: white;
  cursor: pointer;
  transform: scale(1.1);
  transition: all 0.2s ease-in-out;
}

.background-toggle-x {
  display: none;
  background-color: #ce6d46;
  border: none;
  font-size: 32px;
  padding: 0 15px;
  position: fixed;
  color: black;
  border-radius: 5px;
  top: 20px;
  right: 20px;
  z-index: 100000;
  -webkit-box-shadow: -4px 6px 6px 2px rgba(0, 0, 0, 0.57);
  -moz-box-shadow: -4px 6px 6px 2px rgba(0, 0, 0, 0.57);
  box-shadow: -4px 6px 6px 2px rgba(0, 0, 0, 0.57);
  z-index: 11;
}

.background-toggle-x:hover {
  color: white;
}

.background-toggle-x.show {
  display: block;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: -2;
  overflow: hidden;
}

.background.front {
  z-index: 11;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: -100px;
  z-index: 5;
}
.top-half {
  position: relative;
  padding-top: 62%;
}
.bottom-half {
  position: relative;
  padding-bottom: 62%;
}
.image {
  position: absolute;
  display: inline-block;
  max-width: 500px;
  width: 25%;
  z-index: 3;
}
.image img {
  position: absolute;
  width: 100%;
  opacity: 0.1;
  object-fit: cover;
}
.image img:hover {
  opacity: 1;
  cursor: pointer;
  /* transform: scale(1.1); */
  transition: all 0.5s ease-in-out;
}
#image1 {
  top: 0;
  left: 0;
}
#image2 {
  top: 0;
  left: 24%;
}
#image3 {
  top: 0;
  left: 42%;
}

#image4 {
  top: 0;
  left: 64%;
}

#image5 {
  top: 0;
  right: 0;
}
#image6 {
  top: 400px;
  left: 0;
}
#image7 {
  top: 711px;
  left: 24%;
}
#image8 {
  top: 400px;
  left: 42%;
}
#image9 {
  top: 820px;
  left: 48%;
}
#image10 {
  top: 468px;
  right: -96px;
}
#image11 {
  top: 1071px;
  left: 0;
}
#image12 {
  top: 1071px;
  left: 24%;
}
#image13 {
  top: 1200px;
  left: 40%;
}
#image14 {
  top: 1200px;
  right: 0;
}
#image15 {
  top: 1478px;
  right: 20%;
}
#image16 {
  top: 1520px;
  left: 0px;
}
#image17 {
  top: 1760px;
  left: 24%;
}
#image18 {
  top: 1556px;
  right: 0;
}

/* BACKGROUND MODAL */

.modal-image {
  width: 100%;
}
.modal-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  margin: 30px 0px;
}

.modal-footer > * {
  margin: 0rem;
}

.modal-footer {
  border: none;
  padding: 0px 35px 40px 43px;
  margin: 0 auto;
  letter-spacing: 2px;
}

@media screen and (max-width: 1800px) {
  #image8 {
    top: 359px;
    left: 42%;
    width: 33%;
  }
  #image6 {
    top: 353px;
    left: 0;
    width: 33%;
  }
  #image7 {
    top: 585px;
    left: 19%;
    width: 33%;
  }
}

@media screen and (max-width: 1600px) {
  #image6 {
    top: 280px;
    left: 0;
    width: 25%;
  }
  #image7 {
    top: 458px;
    left: 16%;
    width: 33%;
  }
}
@media screen and (max-width: 1500px) {
  #image6 {
    top: 242px;
    left: 0;
    width: 25%;
  }
  #image8 {
    top: 280px;
    left: 42%;
    width: 33%;
  }
  #image5 {
    top: 0;
    right: -105px;
    width: 33%;
  }
  #image9 {
    top: 720px;
    left: 48%;
  }
}

@media screen and (max-width: 1400px) {
  #image7 {
    top: 334px;
    left: 16%;
    width: 33%;
  }
  #image9 {
    top: 662px;
    left: 48%;
  }
}

@media screen and (max-width: 1200px) {
  #image10 {
    top: 344px;
    right: -96px;
    width: 33%;
  }
  #image9 {
    top: 585px;
    left: 48%;
  }
}

@media screen and (max-width: 1100px) {
  #image6 {
    top: 188px;
    left: 0;
    width: 25%;
  }
  #image8 {
    top: 195px;
    left: 42%;
    width: 33%;
  }
}
@media screen and (max-width: 768px) {
  .background .image {
    display: none;
  }

  .background {
    background-image: url(images/background_sm.png);
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.3;
  }

  .background-toggle-wrapper {
    display: none;
  }

  .background-toggle-x {
    display: none;
  }
}
@media screen and (max-width: 450px) {
}

.invisible {
  visibility: hidden;
}
.hidden {
  display: none;
}

/*FOOTER*/

.footer-img {
  position: relative;
  bottom: 0px;
  height: 130px;
  display: block;
  margin: 0 auto;
}

@media (max-width: 1200px) {
}
@media (max-width: 992px) {
}
@media (max-width: 768px) {
}
@media (max-width: 576px) {
  .footer-img {
    height: 96px;
  }

  footer {
    height: 111px;
  }
}

#announcementBanner {
  background-color: white;
  padding: 40px;
  margin-top: -30px;
}
#announcementBanner .announcement-banner-container {
  background-color: white;
  border: 5px solid #97cbe8;
  border-radius: 36px;
  padding: 40px;
  position: relative;
}
#announcementBanner h3 {
  background-color: white;
  width: 145px;
  position: absolute;
  top: -31px;
  padding: 10px;
  color: #052238;
  font-weight: 700;
}
#announcementBanner ul {
  margin: 10px 40px 40px;
}
#announcementBanner ul li {
  list-style-image: url("images/STAR.svg");
}
#announcementBanner ul li::marker {
  height: 50px;
}
/* #announcementBanner ul li::before {
  content: '';
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url('images/STAR.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  position: relative;
  top: 17px;
} */

#announcementBanner .announcement-banner-button,
.yss-button {
  background-color: transparent;
  border: solid 4px #052238;
  border-radius: 10px;
  font-weight: 600;
  padding: 5px 15px;
  margin: 1rem auto 3rem;
  display: block;
  max-width: 100%;
  width: 250px;

  color: #052238;
}
#announcementBanner .announcement-banner-button:hover,
.yss-button {
  background-color: #ce6d46;
  color: white;
  cursor: pointer;
  transform: scale(1.1);
  transition: all 0.2s ease-in-out;
}
#announcementBanner .announcement-banner-subtitle {
  color: #97cbe8;
  font-weight: 600;
  background-color: white;
  padding: 10px;
  position: absolute;
  right: 20px;
  bottom: -40px;
}

#announcementBanner .announcement-banner-now-sticker {
  position: absolute;
  width: 500px;
  top: 0;
  right: -78px;
}
#announcementBanner .announcement-banner-text {
  height: 110px;
  position: absolute;
  top: 31px;
  left: -41px;
  background-color: white;
  padding: 17px;
}

@media (max-width: 1200px) {
  #announcementBanner .announcement-banner-now-sticker {
    position: absolute;
    width: 394px;
    top: 0;
    right: -61px;
  }
}
@media (max-width: 992px) {
  #announcementBanner .announcement-banner-now-sticker {
    display: none;
  }
}

@media (max-width: 576px) {
  #announcementBanner {
    margin-top: 335px;
  }
  #announcementBanner .announcement-banner-container h3 {
    font-size: 20px;
    width: auto;
    position: unset;
    background-color: transparent;
    margin-top: -20px;
  }
  #announcementBanner ul {
    margin: 10px 0px;
    margin-bottom: 20px;
  }
  #announcementBanner .announcement-banner-subtitle {
    font-size: 13px;
    background-color: white;
    width: 100%;
    bottom: -100px;
    text-align: center;
    left: 3px;
  }
  #announcementBanner .announcement-banner-button,
  .yss-button {
    margin: 20px auto;
  }
}

.flex-center {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.flex-bottom {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  height: 100%;
  flex-direction: column;
}

.list {
  padding: 20px;
}

.list li {
  text-align: left;
  text-transform: none;
  list-style: circle;
  margin: 10px 0px;
}

.bold {
  font-weight: 500;
}

a {
  color: inherit;
}
a:hover {
  text-decoration: underline;
}

.text__row {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}

.text__row > * {
  flex: 1 0 0;
}

.row__vert-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.yss-button {
  width: auto;
  min-width: 200px;
}
.yss-button:hover {
  transform: scale(1.2);
}

@media screen and (max-width: 567px) {
  .text__row {
    flex-direction: column;
  }
}

.info__p {
  text-transform: none;
  text-align: left;
  margin: 1rem 0;
}
.cursor-pointer:hover {
  cursor: pointer;
}

.alert {
  font-weight: bold;
  font-style: italic;
  text-decoration: underline;
  font-size: 1.5rem;
}

.camp-details {
  margin: 4rem 0;
}
.camp-row {
  position: relative;
  padding-left: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2rem;
  align-items: center;
  width: 100%;
}

.camp-row .yss-button {
  margin: 1rem auto;
  width: 222px;
}

.camp-row p {
  margin: 0;
  padding: 0;
}

.camp-row:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  background: black;
  border-radius: 100%;
  position: absolute;
  left: 2rem;
}
@media screen and (max-width: 767px) {
  .camp-row {
    grid-template-columns: 1fr;
    padding-left: 2rem;
    margin: 1rem 0;
  }
  .camp-row:before {
    display: none;
  }
  .camp-row .yss-button {
    margin: 0rem auto 1rem;
  }
  .camp-row .text-left {
    text-align: center !important;
  }
}

.small-box {
  max-width: 500px;
  margin: 2rem auto;
}
