:root {
  --font: #000;
  --links: #5a5a5a;
  --bg: #fff;
  --green: #bbd80a;
  --blue: #000061;
  --light-gray: rgb(190, 190, 190);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  color: var(--font);
  /* text-align: left; */
}

section p {
  text-align: left;
}

@media screen and (min-width: 700px) {
  * {
    text-align: justify;
  }

  section p {
    text-align: justify;
  }
}

/* .spine-part:nth-child(even) p {
  text-align: right;
} */

/* 
.coach-info p,
.school-info p,
.training-info p,
.pillars-info p,
.about-me-text p {
  text-align: justify;
} */

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
}

section {
  width: auto;
  min-height: 80vh;
  overflow: hidden;
}

.container {
  padding: 2em 0;
  margin: 0 5vw;
  width: auto;
  display: flex;
  flex-direction: column;
}

h1 {
  font-family: "Lora", serif;
  font-size: 2.2em;
  padding: 20px 0;
  text-align: center;
}

p {
  font-size: 120%;
}

a {
  color: var(--links);
  text-decoration: none;
  cursor: pointer;
  height: fit-content;
}

.header-line {
  /* margin-top: 28vh; */
  width: 80vw;
  margin-left: auto;
  margin-right: auto;
  height: 20px;
}

.header-line-container {
  height: 20px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.line-circle {
  height: 20px;
  width: 20px;
  background-color: var(--green);
  border-radius: 50%;
}

#switch img {
  width: 38px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.293);
}

#switch img {
  width: 38px;
  border-radius: 3px;
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.info-bold p {
  font-weight: 600;
}

.section-info {
  padding: 10px 0;
}

.section-links-container {
  display: flex;
  gap: 1.4em;
}

.section-links {
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  width: fit-content;
}

.section-links a {
  padding: 5px;
  font-size: 20px;
  margin-left: 10px;
  width: fit-content;
  position: relative;
}

.section-links a::before {
  content: "";
  z-index: -1;
  position: absolute;
  bottom: -6px;
  left: -10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--green);
  opacity: 0.3;
  transition: all 0.4s ease;
}

.section-links a:hover::before {
  width: 40px;
  height: 40px;
  opacity: 1;
}

.section-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 1px;
  background-color: var(--font);
  transition: all 0.4s ease;
}

.section-links a:hover {
  color: var(--font);
}

.section-links a:hover::after {
  width: 100%;
}

.section-links a:hover {
  color: var(--font);
}

.blue-section {
  flex-direction: column-reverse;
}

.training-section,
.coach-section,
.studio-section,
.pillars-section,
.school-section {
  position: relative;
}

.coach-info,
.training-info,
.studio-info,
.pillars-info,
.school-info {
  width: 100%;
  margin-top: 240px;
}

#top-return-btn {
  background-color: var(--bg);
  color: var(--green);
  border: 3px solid var(--green);
  padding: 10px 15px;
  border-radius: 30px;
  margin-top: 15px;
  position: absolute;
  top: -20px;
  right: 0px;
  transition: all 0.3s ease;
}

#top-return-btn:hover {
  background-color: var(--green);
  color: var(--bg);
}

#top-return-btn::after {
  background-color: var(--bg);
}

/* 
    HERO SECTION
*/

.hero-section,
footer {
  min-height: 100vh;
}

footer {
  padding-top: 100px;
}

.logo img {
  height: 140px;
}

.nav-container {
  height: 25vh;
  position: static;
  z-index: 50;
}

.nav {
  display: flex;
  justify-content: space-between;
  position: relative;
}

#menu-icon {
  position: fixed;
  cursor: pointer;
  right: 0;
  top: 65px;
  transform: translateY(-50%);
  z-index: 90;

  padding: 30px 20px 100px 100px;

  background-color: var(--green);

  clip-path: circle(60% at 100% 0);
}

.line {
  width: 30px;
  height: 3px;
  background-color: var(--bg);
  border-radius: 3px;
  margin: 5px;
}

.hero-links {
  position: fixed;
  background-color: var(--green);
  transform: translate(-5%, -8%);
  height: 110vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2em;

  z-index: 10;

  clip-path: circle(100px at 100% -20%);

  transition: all 1s ease-out;
}

#menu-icon div {
  width: 35px;
  height: 3px;
  margin-bottom: 8px;
  background-color: var(--bg);
  border-radius: 5px;
  transition: transform 500ms cubic-bezier(0.6, 0.05, 0.28, 0.91), opacity 500ms,
    background-color 250ms;
}

#menu-icon.open #top-line {
  transform: translateY(11px) rotate(-142deg);
}

#menu-icon.open #middle-line {
  opacity: 0;
  transform: rotate(140deg);
}

#menu-icon.open #bottom-line {
  transform: translateY(-12px) rotate(-42deg);
}

.hero-links.open {
  clip-path: circle(1500px at 90% 10%);
}

.hero-links a {
  position: relative;
  transition: all 0.4s ease;
  font-size: 2em;
  color: var(--bg);
}

.hero-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.6px;
  background-color: var(--green);
  transition: all 0.4s ease;
}

.hero-links a:hover {
  color: var(--font);
}

.hero-links a:hover::after {
  width: 100%;
}

.hero-header h1,
.hero-header p {
  text-align: center;
  color: var(--blue);
}

.hero-header {
  margin: 1em auto;
  width: 90vw;
}

#spine {
  display: none;
}

/*
  scroll down animation
*/
.scrolldown {
  --sizeX: 30px;
  --sizeY: 50px;
  position: relative;
  width: var(--sizeX);
  height: var(--sizeY);
  border: calc(var(--sizeX) / 10) solid var(--blue);
  border-radius: 50px;
  margin: auto;
  margin-top: 100px;
}

.scrolldown::before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: var(--blue);
  border-radius: 100%;
  animation: scrolldown-anim 2s infinite;
  box-sizing: border-box;
  box-shadow: 0px -5px 3px 1px #ffffff66;
}

@keyframes scrolldown-anim {
  0% {
    opacity: 0;
    height: 6px;
  }
  40% {
    opacity: 1;
    height: 10px;
  }
  80% {
    transform: translate(0, 20px);
    height: 10px;
    opacity: 0;
  }
  100% {
    height: 3px;
    opacity: 0;
  }
}

.chevrons {
  padding: 6px 0 0 0;
  margin-left: -3px;
  margin-top: 48px;
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.chevrondown {
  margin-top: -6px;
  position: relative;
  border: solid var(--blue);
  border-width: 0 3px 3px 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.chevrondown:nth-child(odd) {
  animation: pulse 500ms ease infinite alternate;
}

.chevrondown:nth-child(even) {
  animation: pulse 500ms ease infinite alternate 250ms;
}

@keyframes pulse {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.5;
  }
}

#contact-me {
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: all 0.4s ease;
  z-index: 20;
}

#contact-me-container {
  background-color: var(--blue);
  border-radius: 40px;
  padding: 0.6em;
  padding-bottom: 0.3em;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

#contact-me-icon img {
  width: 40px;
  height: 40px;
  padding: 4px;
}

#contact-me:hover img {
  transition: all 0.4s ease;
}

#contact-me:hover #contact-me-container {
  padding-right: 180px;
  transition: all 0.4s ease;
}

#contact-me-text {
  display: none;
}

#contact-me:hover #contact-me-text {
  display: inline;
  position: absolute;
  color: var(--bg);
  top: 16px;
  left: 60px;
}

/* 
    BUY ME COFFEE BTN
*/

#buy-coffee {
  position: fixed;
  bottom: 100px;
  right: 30px;
  transition: all 0.4s ease;
  z-index: 20;
}

#buy-coffee-container {
  background-color: #f1732f;
  border-radius: 40px;
  padding: 0.6em;
  padding-bottom: 0.3em;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
}

#buy-coffee-icon img {
  width: 40px;
  height: 40px;
}

#buy-coffee:hover img {
  transition: all 0.4s ease;
}

#buy-coffee:hover #buy-coffee-container {
  padding-right: 180px;
  transition: all 0.4s ease;
}

#buy-coffee-text {
  display: none;
}

#buy-coffee:hover #buy-coffee-text {
  display: inline;
  position: absolute;
  color: var(--bg);
  top: 16px;
  left: 60px;
}

#coffee-in-contact {
  margin-right: 12px;
}

/* #coffee-in-contact:hover #buy-coffee-container {
  background-color: #e2550a;
} */

#coffee-in-contact:hover #buy-coffee-icon img,
#coffee-in-contact:focus #buy-coffee-icon img {
  animation: bellshake 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  backface-visibility: hidden;
  transform-origin: top right;
}

@keyframes bellshake {
  0% {
    transform: rotate(0);
  }
  15% {
    transform: rotate(5deg);
  }
  30% {
    transform: rotate(-5deg);
  }
  45% {
    transform: rotate(4deg);
  }
  60% {
    transform: rotate(-4deg);
  }
  75% {
    transform: rotate(2deg);
  }
  85% {
    transform: rotate(-2deg);
  }
  92% {
    transform: rotate(1deg);
  }
  100% {
    transform: rotate(0);
  }
}

@media screen and (max-width: 768px) {
  .coffee-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
}
/* 
    CIRCLES SETUP
*/

.coach-circle,
.training-circle,
.studio-circle,
.pillars-circle,
.school-circle {
  position: absolute;
  top: 0;
  width: 300px;
  height: 300px;
}

.studio-circle,
.pillars-circle {
  left: -70px;
}

.coach-circle,
.training-circle,
.school-circle {
  right: -60px;
}

.training-circle img,
.coach-circle img,
.studio-circle img,
.pillars-circle img,
.school-circle img {
  width: 280px;
  height: auto;
}

/* 
    CONTACT SECTION
*/
.contact-section .container {
  padding: 0;
  padding-top: 0;
  margin: 0;
}

.contact-left {
  padding-top: 100px;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100vw;
  height: 700px;
}

.contact-right {
  padding: 3em 0;
  margin: 0 5vw;
}

.form-circle {
  height: 450px;
  width: 450px;
  background-color: var(--blue);
  border-radius: 50%;
  outline: 5px solid var(--blue);
  border: 8px solid white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.form-circle::before {
  content: url("../static/circles/contact2.png");
  position: absolute;
  width: 500px;
  height: 200px;
  top: -100px;
  left: -55px;
  z-index: -1;
}

.form-circle input {
  box-sizing: border-box;
  outline: none;
  display: block;
  width: 100%;
  padding: 7px;
  border: none;
  border-bottom: 1px solid #fff;
  background: transparent;
  margin-bottom: 10px;
  height: 45px;
  color: #fff;
}

.form-circle input::placeholder {
  color: var(--light-gray);
}

.form-inputs {
  padding: 70px;
}

/* ============== Select Box ================ */
.sel {
  display: inline;
  background-color: transparent;
  position: relative;
  cursor: pointer;
  width: 100%;
}

/* arrow pointing down */
.sel::before {
  position: absolute;
  content: "\f063";
  font-family: "FontAwesome";
  color: var(--bg);
  left: calc(100% - 10px);
  font-size: 0.7em;
  top: calc(50% - 8px);
}

/* turn the arrow up when clicked */
.sel.active::before {
  transform: rotateX(-180deg);
}

.sel-placeholder {
  height: 45px;
  display: block;
  color: var(--light-gray);
  border-bottom: 2px solid var(--light-gray);
  padding: 7px;
  text-align: left;
  pointer-events: none;
  user-select: none;
  visibility: visible;
}

.sel.active .sel-placeholder {
  visibility: hidden;
}

.sel-placeholder::before {
  position: absolute;
  content: attr(data-placeholder);
  visibility: hidden;
}

.sel.active .sel-placeholder::before {
  visibility: visible;
}

/* selection options */
.sel-box {
  position: absolute;
  top: calc(100%);
  left: 0;
  display: none;
  list-style-type: none;
  text-align: left;
  font-size: 1rem;
  background-color: rgb(250, 250, 250);
  width: 100%;
  box-sizing: border-box;
  z-index: 5;
}

.sel.active .sel-box {
  display: block;
}

.sel-box-options {
  display: list-item;
  font-size: 0.8em;
  color: #555f66;
  padding: 0.5em 1em;
  user-select: none;
  background-color: rgb(250, 250, 250);
}

/* check marks near the chosen element */
.sel-box-options::after {
  content: "\f00c";
  font-family: "FontAwesome";
  font-size: 0.6em;
  margin-left: 5px;
  display: none;
}

.sel-box-options.selected::after {
  display: inline;
}

.sel-box-options:hover {
  background-color: #ebedef;
}

/*
  submit button animation
*/
.form-circle #submit-btn {
  background-color: var(--green);
  width: 230px;
  height: 70px;
  margin-bottom: 0;
  font-size: 22px;
  border-radius: 40px;
  text-align: center;
  font-weight: 600;
  padding: 0.6em 1.6em;
  border: none;
  outline: none;
  bottom: -40px;
  left: 50%;
  transform: translate(-50%, -80%);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: 0.6s;
}

.form-circle #submit-btn p {
  color: var(--bg);
  transition: 0.6s;
}

.check-box {
  width: 66px;
  height: 66px;
  border-radius: 40px;
  box-shadow: 0 0 12px -2px rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 2px;
  right: -32px;
  opacity: 0;
  transition: 0.6s;
}

.check-box svg {
  color: var(--bg);
  width: 34px;
  margin: 15px;
}

svg path {
  stroke-width: 4;
  color: var(--bg);
  stroke: var(--bg);
  stroke-dasharray: 34;
  stroke-dashoffset: 34;
  stroke-linecap: round;
}

.form-circle #submit-btn:hover {
  background: var(--blue);
  transition: 0.6s;
}

.form-circle #submit-btn:hover .check-box {
  right: 0;
  opacity: 0.6;
  transition: 0.6s;
}

.form-circle #submit-btn:hover p {
  margin-right: 45px;
  transition: 0.6s;
}

.form-circle #submit-btn:hover svg path {
  stroke-dashoffset: 0;
  transition: 0.6s;
  transition-delay: 0.6s;
}

.contact-link {
  display: flex;
  align-items: center;
  padding: 10px;
}

.contact-icon {
  background-color: var(--green);
  min-width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 1.5em;
  transition: all 0.4s ease;
}

.phone-icon,
.email-icon,
.map-icon {
  position: relative;
}

.phone-icon::before {
  content: url("../static/icons/phone.png");
  position: absolute;
  top: 6px;
  right: -20px;
  width: 50px;
  height: 50px;
}

.email-icon::before {
  content: url("../static/icons/email.png");
  position: absolute;
  top: 14px;
  right: -18px;
  width: 50px;
  height: 50px;
}

.map-icon::before {
  content: url("../static/icons/map.png");
  position: absolute;
  top: 10px;
  right: -14px;
  width: 50px;
  height: 50px;
}

.contact-link-underline {
  cursor: auto;
}

/* .contact-link-underline {
  position: relative;
}

.contact-link-underline::after {
  content: "";
  width: 10%;
  height: 2px;
  background-color: var(--green);
  bottom: -3px;
  left: 0;
  position: absolute;
  transition: all 0.4s ease;
}

.contact-link-underline:hover:after {
  width: 100%;
} */

/* 
    FOOTER
*/
footer {
  width: auto;
  overflow: hidden;
}

.social-media-container {
  margin: 2em 0;
}

.social-media-icons {
  display: flex;
  gap: 2em;
  justify-content: center;
}

.social-icon {
  width: 50px;
  height: 50px;
  position: relative;
}

.social-icon img {
  width: 40px;
  margin: 10px;
}

.social-icon::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--green);
  transition: all 0.4s ease;
}

.social-icon:hover::after {
  width: 120%;
  height: 120%;
}

.footer-circles {
  height: 300px;
}

.footer-outline {
  height: 100vw;
  width: 100vw;
  padding: 100px;
  border: 3px solid var(--green);
  border-radius: 50%;
  transform: translateY(100px);
  position: relative;
}

.footer-outline::before {
  content: "";
  border: 3px solid var(--blue);
  border-radius: 50%;
  position: absolute;
  top: 80px;
  right: -80px;
  width: 200px;
  height: 200px;
}

.footer-outline::after {
  content: "";
  border: 3px solid var(--blue);
  border-radius: 50%;
  position: absolute;
  top: 0px;
  left: -100px;
  width: 150px;
  height: 150px;
}

/* RWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWD */
/* RWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWD */
/* RWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWD */
/* RWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWD */
/* RWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWD */
/* RWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWD */
/* RWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWD */
/* RWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWD */
/* RWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWD */
/* RWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWD */
/* RWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWD */
/* RWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWD */
/* RWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWD */
/* RWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWD */
/* RWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWD */
/* RWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWD */
/* RWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWD */
/* RWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWD */
/* RWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWDRWD */

/* tablets */
@media screen and (min-width: 768px) {
    .header-line {
    height: 30px;
  }

  .header-line-container {
    height: 30px;
  }

  .line-circle {
    height: 30px;
    width: 30px;
  }

  h1 {
    font-size: 3em;
    padding: 20px 50px;
  }

  .scrolldown {
    margin-top: 30px;
    transform: translateX(-20px);
  }

  .studio-info,
  .pillars-info {
    width: fit-content;
    margin-top: 140px;
    margin-left: 160px;
  }

  .coach-info,
  .training-info,
  .school-info {
    width: fit-content;
    margin-top: 140px;
    margin-right: 160px;
  }

  .section-links-container {
    gap: 4em;
  }

  .section-links a {
    margin-left: 0;
  }

  /* 
      CONTACT SECTION
  */
  .contact-section .container {
    display: flex;
    flex-direction: row;
    align-items: center;
  }

  .contact-right {
    padding: 3em 0;
    margin: 140px 5vw 0 10vw;
    width: 40vw;
  }

  .contact-left {
    width: 580px;
    height: 680px;
  }

  .form-circle {
    margin: 10px 0 10px 30px;
  }

  .form-circle::before {
    content: url("../static/circles/contact.png");
    top: -110px;
  }

  .form-circle #submit-btn {
    transform: translate(0, -100%);
  }

  /* 
    FOOTER
  */
  footer {
    position: relative;
  }

  .social-media-container {
    margin: 0;
    position: absolute;
    bottom: 40px;
    left: 60px;
  }

  .footer-outline {
    height: 50vw;
    width: 50vw;
    transform: translateY(0);
    transform: translateX(150px);
    margin-left: auto;
  }

  .footer-outline::before {
    top: -80px;
    right: 60px;
  }

  .footer-outline::after {
    top: 220px;
  }

  #top-return-btn {
    position: static;
  }
}

/* laptops */
@media screen and (min-width: 992px) {
  .scroll-to {
    height: 12vh;
  }

  .container {
    margin: 0 2vw;
  }

  h1 {
    font-size: 4em;
    padding: 20px 100px;
  }

  .header-line {
    width: 60vw;
    margin-top: 28vh;
    height: 40px;
  }

  .line-circle {
    height: 40px;
    width: 40px;
  }

  .hero-header {
    margin: 0;
    margin-top: 4vh;
  }

  #menu-icon {
    display: none;
  }

  #menu-icon {
    display: none;
  }

  .hero-links {
    background-color: var(--bg);
  }

  .hero-links a {
    color: var(--links);
    font-size: 1.2em;
  }

  .hero-links {
    position: static;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 1.4em;
    height: fit-content;
    width: auto;

    transform: translate(0, 0);

    clip-path: none;
  }

  .studio-info,
  .pillars-info {
    max-width: 60vw;
    margin-top: 200px;
    margin-left: 300px;
  }

  .training-info {
    margin-top: 120px;
  }

  .coach-info,
  .training-info,
  .school-info {
    max-width: 60vw;
    margin-top: 200px;
    margin-right: 300px;
    margin-left: 100px;
  }

  /* 
    HERO SECTION
*/
  .logo img {
    height: 22vh;
  }

  .nav-container {
    height: 28vh;
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    padding: 30px;
    padding-bottom: 0;
    transition: all 0.3s ease;
  }

  .studio-circle,
  .pillars-circle {
    left: -110px;
    width: 500px;
    height: 500px;
  }

  .coach-circle,
  .training-circle,
  .school-circle {
    right: -110px;
    width: 500px;
    height: 500px;
  }

  .training-circle img,
  .coach-circle img,
  .studio-circle img,
  .pillars-circle img,
  .school-circle img {
    width: 450px;
    height: auto;
  }

  .hero-links {
    padding-top: 15px;
  }

  .section-links-container {
    gap: 6em;
  }

  #spine {
    display: block;
    position: absolute;
    top: 14vh;
    right: 5vw;
    z-index: 60;
  }

  #spine-container {
    position: relative;
  }

  #spine-img {
    height: 60vh;
  }

  .spine-icon {
    position: absolute;
  }

  #insta-icon {
    bottom: 0;
    left: -15px;
  }

  #fb-icon {
    top: 45px;
    left: 85px;
  }
}

/* large screen */
@media screen and (min-width: 1200px) {
  .container {
    margin: 0 3vw;
  }

  h1 {
    font-size: 4em;
    padding: 20px 200px;
  }

  /* 
    HERO SECTION
*/
  .hero-header {
    margin: 0;
    margin-top: 4vh;
  }

  .logo img {
    height: 24vh;
  }

  .nav-container {
    height: 30vh;
  }

  .hero-links a {
    font-size: 1.4em;
  }

  .hero-links {
    gap: 2em;
  }
}
