:root {
  --dark-grey: #9b9b9b;
  --white: white;
  --black: black;
  --black-2: #333;
  --dim-grey: #636363;
  --red: #fa191980;
  --grey: grey;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  color: #333;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 30px;
  font-family: Roboto, sans-serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 52px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 38px;
}

h4 {
  color: #333;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

h5 {
  color: gray;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
}

p {
  color: gray;
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
}

a {
  color: #00003a;
  padding-bottom: 5px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: box-shadow .2s, color .2s;
  box-shadow: inset 0 -2px #0000001a;
}

a:hover {
  color: #fe9d69;
  box-shadow: inset 0 -2px #000;
}

img {
  max-width: 100%;
  display: inline-block;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

.hero {
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  min-height: 100vh;
  padding-bottom: 75vh;
  display: flex;
  position: fixed;
}

.hero.pages {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 70vh;
  display: block;
}

.wrapper-title {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 5vw;
  padding-right: 5vw;
  overflow: hidden;
}

.vertical {
  z-index: 900;
  border: 1px #000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 6vw;
  height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.link {
  color: #9b9b9b;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-style: none;
  flex: 1;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 0;
  font-family: Roboto, sans-serif;
  font-size: 12px;
  text-decoration: none;
  display: flex;
  position: relative;
  transform: rotate(-90deg);
}

.link:hover {
  background-image: none;
}

.link.w--current {
  text-decoration: line-through;
  position: relative;
}

.section {
  background-color: #dcdee0;
  justify-content: space-between;
  height: 100vh;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
  top: 100vh;
}

.section.main {
  flex-direction: column;
}

.vertical-social {
  z-index: 30;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 10vw;
  height: 100vh;
  padding-top: 10vh;
  padding-bottom: 10vh;
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
}

.main-h1 {
  color: #000;
  margin-top: 5px;
  margin-bottom: 0;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 14vh;
  font-weight: 400;
  line-height: 16vh;
  position: relative;
}

.main-h1.bold {
  font-weight: 900;
}

.main-h1.bold.home {
  pointer-events: auto;
  margin-top: 0;
}

.main-h1.home {
  font-size: 25vh;
  line-height: 22vh;
}

.paragraph {
  color: #9b9b9b;
  width: auto;
  margin-bottom: 30px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
}

.paragraph.bolder {
  color: #fff;
  width: 55vw;
  font-size: 60px;
  line-height: 70px;
}

.column {
  border: 1px #000;
  flex: 1;
  overflow: hidden;
}

.column._100vh {
  color: #fff;
  background-color: #000000bf;
  flex: none;
  align-items: center;
  width: 50%;
  min-height: 100vh;
  padding-left: 15vw;
  padding-right: 10vw;
  display: flex;
  overflow: visible;
}

.column._100vh:hover {
  opacity: 1;
  background-color: #000000bf;
}

.column.background-image {
  background-image: url('../images/Success-Compass.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: visible;
}

.column.background-image2 {
  background-image: url('../images/bullseye.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: visible;
}

.column.background-image3 {
  background-image: url('../images/maze.webp');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  overflow: visible;
}

.column.about {
  clear: none;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  color: #fff;
  background-color: #000000bf;
  flex: none;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  min-width: auto;
  height: auto;
  min-height: auto;
  display: block;
  overflow: visible;
}

.column.about:hover {
  opacity: 1;
  background-color: #000000bf;
}

.home-subhead {
  justify-content: flex-start;
  align-items: center;
  width: 30vw;
  margin-top: 30px;
  font-weight: 400;
  display: flex;
}

.hr {
  background-color: #9b9b9b;
  width: 35px;
  height: 1px;
  margin-top: 12px;
  margin-right: 30px;
}

.hr.mail {
  margin-top: 30px;
  margin-bottom: 50px;
  margin-right: 0;
}

.h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 38px;
  line-height: 48px;
}

.h2.mail {
  color: #333;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 400;
  line-height: 32px;
}

.h2.white {
  color: #fff;
  margin-bottom: 45px;
  font-size: 24px;
}

.h2.contact {
  text-align: center;
  width: 40vw;
}

._w-h1 {
  padding-right: 10vw;
  position: relative;
  overflow: hidden;
}

._w-link {
  color: #636363;
  letter-spacing: 0;
  text-transform: none;
  border-bottom-style: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 20px;
  padding-bottom: 2px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  line-height: 30px;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

._w-link:hover {
  color: #000;
}

._w-link.social {
  color: #333;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 15px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
}

.line-hover {
  background-color: #ddd;
  width: 100%;
  height: 2px;
  margin-top: 3px;
  overflow: hidden;
}

.project-info {
  z-index: 20;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 400;
  display: flex;
  position: relative;
}

.project-info.head {
  align-items: flex-start;
  left: 0;
}

.icon-social {
  color: #0000004d;
  border-bottom-style: none;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  margin-top: 20px;
  font-family: Icomoon;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: flex;
}

.icon-social:hover {
  color: #fff;
  background-color: #4d4d4d;
}

.fill-hover {
  background-color: #000;
  width: 100%;
  height: 2px;
}

.section-2 {
  float: none;
  height: auto;
  position: relative;
  top: 0;
}

.wrapper {
  background-color: #fff;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.wrapper.contact {
  background-color: #f8f8f8;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  padding-top: 20vh;
  padding-bottom: 20vh;
}

.wrapper.center {
  position: sticky;
}

.wrapper.center.form {
  justify-content: flex-start;
  min-height: auto;
  padding-top: 70px;
  padding-bottom: 70px;
}

.wrapper.center.form.base {
  padding-bottom: 30vh;
}

.wrapper.center.form.base.hide {
  display: none;
}

.wrapper.about {
  z-index: 100;
  clear: none;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -webkit-text-fill-color: inherit;
  background-image: url('../images/bio.jpg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: fixed;
  background-clip: border-box;
  border-radius: 0;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: stretch;
  align-items: flex-start;
  width: 1413px;
  min-width: auto;
  max-width: none;
  min-height: auto;
  margin-top: 0;
  margin-left: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
  overflow: visible;
}

.div-block-4 {
  flex-direction: row;
  flex: 1;
  justify-content: center;
  align-self: stretch;
  align-items: center;
  width: 6vw;
  height: auto;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.main-section {
  flex-direction: column;
  align-items: center;
  display: flex;
}

._w-title {
  flex-direction: column;
  justify-content: flex-end;
  width: 100vw;
  height: 70vh;
  margin-bottom: 150px;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
}

.wide-background {
  background-color: #657580;
  width: 100vw;
  height: 100vh;
  margin-bottom: 10%;
}

.wide-background._01 {
  background-image: url('../images/5b109a993a8396648e723c7a_screen-001.jpg');
  background-position: 0 0;
  background-size: cover;
}

.div-block-10 {
  margin-bottom: 30px;
  display: flex;
}

.wrapper-info1 {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 20vh;
  padding-bottom: 20vh;
  display: flex;
}

.wrapper-info1.about {
  border-bottom: 1px #e4e4e4;
  width: 100%;
  margin-top: auto;
  padding-top: 5vh;
  padding-bottom: 5vh;
}

.wrapper-info1.contact {
  padding-top: 0;
  padding-bottom: 0;
}

.wrapper-vertical-nav {
  z-index: 900;
  border-right-style: solid;
  border-right-color: #ddd;
}

.light {
  color: #9b9b9b;
  margin-top: 20px;
  font-family: Varela Round, sans-serif;
  font-size: 12px;
}

.div-block-14 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  display: flex;
}

.wrapper-list-links {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: center;
  width: 70%;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.div-block-16 {
  flex-flow: column;
  align-items: center;
  margin-bottom: 40px;
  display: flex;
}

.wrap-content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: 0 auto;
  order: 0;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: flex-start;
  width: 35vw;
  margin-top: -850px;
  padding-top: 0;
  padding-left: 20px;
  padding-right: 5vw;
  display: block;
  position: relative;
}

.wrap-content.links {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.wrap-content.dark-bg {
  background-color: var(--dark-grey);
}

.field {
  border: 1px solid #fff;
  border-bottom-color: #bbb;
  height: 60px;
  margin-bottom: 45px;
  padding-left: 0;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 22px;
}

.div-block-18 {
  flex: 0 auto;
  width: 30vw;
  margin-right: 10vw;
}

.button {
  background-color: #000;
  padding: 25px 55px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 18px;
  transition: background-color .4s, box-shadow .4s, color .4s;
}

.button:hover {
  color: #000;
  background-color: #fff;
  box-shadow: inset 0 0 0 3px #000;
}

.link-block-2 {
  color: #9b9b9b;
  border-bottom-style: none;
  justify-content: center;
  align-items: center;
  height: 60%;
  text-decoration: none;
  display: flex;
  position: relative;
}

.link-block-2:hover {
  text-decoration: line-through;
}

.link-block-2.w--current {
  border-bottom-style: none;
  border-right: 2px #000;
  flex: 1;
  text-decoration: none;
  box-shadow: inset 5px 0 #fa191980;
}

.container {
  padding-top: 50px;
}

.body {
  background-color: #f0f0f0;
}

.div-block-20 {
  background-color: #fff;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding: 0;
  display: block;
  box-shadow: 0 1px 1px #0000001f;
}

.div-block-24 {
  justify-content: space-between;
  margin-top: 0;
  display: flex;
}

.link-block-3 {
  color: #9b9b9b;
  border: 1px #e7e5e5;
  border-radius: 0;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  font-size: 12px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.link-block-3:hover {
  color: #272727;
  background-color: #f8f8f8;
  box-shadow: inset 0 0 0 2px #000;
}

.image-8 {
  height: 23px;
  margin-bottom: 10px;
}

.heading-6 {
  color: #c3c3c3;
  margin-bottom: 50px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 32px;
  line-height: 66px;
}

.bold {
  color: #161616;
}

.text-block-3 {
  text-align: center;
  line-height: 16px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.alt-next {
  color: #9b9b9b;
  margin-bottom: 20px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 60px;
}

.div-block-25 {
  justify-content: space-between;
  width: 100vw;
  height: 20vh;
  display: flex;
}

.navbar {
  z-index: 100;
  float: none;
  clear: none;
  aspect-ratio: auto;
  pointer-events: auto;
  mix-blend-mode: normal;
  background-color: #0000;
  width: auto;
  height: 175px;
  padding: 5vh 5vw;
  position: sticky;
  inset: auto;
}

.brand {
  box-shadow: none;
  border-bottom: 1px #000;
  align-items: center;
  height: 90px;
  display: flex;
}

.brand:hover {
  box-shadow: none;
  border-bottom-style: none;
}

.brand.w--current, .brand.w--current:hover {
  box-shadow: none;
}

.link-nav {
  box-shadow: none;
  color: gray;
  margin-left: 10px;
  margin-right: 10px;
  padding: 0 0 5px;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
  transition: color .2s, box-shadow .2s;
}

.link-nav:hover, .link-nav.w--current {
  color: #000;
  box-shadow: inset 0 -3px #00000080;
}

.signature {
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.div-block-26 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 90%;
  padding-top: 90px;
  padding-bottom: 90px;
  display: flex;
}

.footer-2 {
  background-color: #f3f3f3;
  justify-content: center;
  height: 60vh;
  display: block;
}

.div-block-27 {
  pointer-events: auto;
  background-color: #fafafa;
  border-top: 1px #dbdbdb;
  width: 100%;
  height: auto;
  padding-left: 5vw;
  padding-right: 5vw;
}

.small-p {
  color: #b8b8b8;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.logo-footer {
  margin-bottom: 30px;
}

.nav-menu {
  float: right;
  justify-content: flex-start;
  align-items: center;
  padding-top: 4vh;
  padding-bottom: 2vh;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.arrow {
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.number {
  float: none;
  color: gray;
  margin-bottom: 0;
  margin-left: 0;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 60px;
  position: relative;
}

.big-link {
  color: #000;
  margin-bottom: 10px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 50px;
  line-height: 80px;
}

.proj_body-wrap {
  text-align: center;
  width: 90vw;
}

._w-form {
  min-height: 400px;
}

.proj_body {
  text-align: left;
}

.proj_body h2, .proj_body p, .proj_body h4 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.proj_body figure {
  clear: none;
  margin-left: auto;
  margin-right: auto;
  display: inline-block;
}

.proj_body figcaption {
  color: gray;
  margin-bottom: 20px;
}

.next-project {
  padding: 5vw;
}

.project-link {
  color: #fff;
  box-shadow: inset 0 -2px #fff3;
}

.project-link:hover {
  color: #fff;
  box-shadow: inset 0 -2px #fff;
}

.paragraph-2 {
  margin-bottom: 0;
}

.project-description {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.image-licensing {
  background-color: #0000000d;
  border: 1px solid #0000001a;
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 15px;
  line-height: 24px;
}

.footer-links {
  margin-bottom: 20px;
  margin-right: 20px;
}

.image-9 {
  position: absolute;
  inset: 0% 0% auto auto;
}

.body-2 {
  clear: none;
  
}

.body-3 {
  box-sizing: border-box;
  aspect-ratio: auto;
  object-fit: fill;
}

.paragraph-3 {
  margin-top: auto;
}

.paragraph-3.white-text {
  color: var(--white);
  margin-bottom: 0;
}

.image-10 {
  float: right;
  width: auto;
  padding-left: 0;
  display: block;
  position: relative;
  inset: auto 0% auto auto;
}

.heading-7 {
  float: none;
  clear: both;
  text-align: center;
  position: relative;
}

.heading-7.white-text {
  color: var(--white);
}

.heading-8 {
  margin-top: 0;
  margin-bottom: 40px;
}

.heading-8.white-text {
  color: var(--white);
  margin-bottom: 0;
}

.paragraph-4 {
  color: #5C5B5C;
  font-weight: 800;
}

.phrase-description {
  color: #fff;
  font-weight: 900;
}


.section-3 {
  background-color: var(--dark-grey);
  padding-left: 0%;
  padding-right: 0%;
}

.col-1-2 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  width: 50%;
  padding: 40px;
}

.col-1-2.bg-image {
  background-image: url('../images/bio.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  max-width:100%;
  height:auto;
  display:block;
}

.col-1-2.header-col {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.col-1-2.right-items {
  justify-content: flex-end;
  align-items: flex-start;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.meet-your-coach-wrappaer {
  align-items: stretch;
}

.section-4 {
  display: none;
}

.heading-9 {
  text-align: center;
}

.heading-9.white-text {
  color: var(--white);
}

.paragraph-5 {
  text-align: center;
}

.paragraph-5.white-text {
  color: var(--white);
}

.heading-10 {
  text-align: center;
}

.heading-10.white-text {
  color: var(--white);
}

.paragraph-6 {
  text-align: center;
}

.paragraph-6.white-text {
  color: var(--white);
}

.heading-11 {
  text-align: center;
}

.heading-11.white-text {
  color: var(--white);
}

.paragraph-7 {
  text-align: center;
}

.paragraph-8 {
  color: #1c1b1b;
  font-size: 24px;
  font-weight: 900;
}

.paragraph-9 {
  color: #1c1b1b;
  font-size: 20px;
  font-weight: 900;
  text-align: center;
}

.paragraph-10 {
  color: #1c1b1b;
  font-size: 18px;
  text-align: left;
  padding-left: 30px;
  font-weight: 500;
}

.box11 {
  color: #5C5B5C;
  font-size: 16px;
  text-align: left;
  padding: 10px;
  width: 400px;
  border: 0px solid #000;
  background-color: white;
  
}

.paragraph-7.white-text {
  color: var(--white);
}

.section-5 {
  background-color: var(--dark-grey);
  margin-bottom: 0;
  padding-top: 40px;
  padding-bottom: 40px;
}

.navbar-2 {
  background-color: var(--dark-grey);
  width: 100%;
}

.container-2 {
  justify-content: space-between;
  min-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: static;
}

.image-11 {
  max-width: 272px;
}

.brand-2.w--current {
  box-shadow: none;
  -webkit-text-stroke-color: var(--white);
  border: 0 solid #000;
}

.navbarnew {
  z-index: 999;
  background-color: var(--white);
  pointer-events: auto;
  position: sticky;
}

.section-6, .container-3 {
  height: 76px;
}

.section-7 {
  box-sizing: border-box;
  float: none;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: left;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.container-4, .container-5 {
  width: 50%;
}

.section-8 {
  padding-top: 40px;
  padding-bottom: 40px;
  display: block;
}

.cell {
  text-align: center;
}

.code-block {
  align-self: center;
  width: 80%;
}

.section-9 {
  background-color: #f8f8f8;
  padding-top: 60px;
  padding-bottom: 60px;
}

.container-6 {
  text-align: center;
}

.code-embed {
  overflow-wrap: normal;
}

@media screen and (max-width: 991px) {
  a {
    margin-bottom: 20px;
  }

  .hero {
    justify-content: flex-start;
    padding-left: 0;
  }

  .wrapper-title {
    width: 100vw;
  }

  .vertical {
    flex-direction: row;
    justify-content: space-between;
    width: 100vw;
    height: 20vh;
    padding: 0 10vw;
  }

  .link {
    transform: none;
  }

  .section.main {
    justify-content: flex-start;
  }

  .main-h1, .main-h1.bold {
    font-size: 84px;
    line-height: 80px;
  }

  .main-h1.bold.home {
    line-height: 15vh;
  }

  .main-h1.home {
    font-size: 18vh;
    line-height: 15vh;
  }

  .paragraph.bolder {
    width: auto;
    margin-bottom: 0;
  }

  .column._100vh {
    width: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .column.about {
    width: auto;
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .home-subhead {
    width: 50vw;
  }

  .project-info {
    width: 100%;
    padding: 10vh 5vw;
  }

  .project-info.head {
    margin-bottom: 0;
    padding-left: 0;
  }

  .wrapper {
    flex-direction: column-reverse;
  }

  .wrapper.center.form {
    padding-left: 70px;
  }

  ._w-title {
    margin-bottom: 5vh;
  }

  .wrapper-list-links {
    flex-direction: column;
    align-items: flex-start;
    width: auto;
  }

  .wrap-content {
    width: 100%;
  }

  .div-block-18, .div-block-26 {
    width: auto;
  }

  .div-block-27 {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .big-link {
    font-size: 40px;
    line-height: 40px;
  }

  .heading-8.white-text {
    font-size: 38px;
  }

  .nav-menu-2 {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .hero.pages {
    text-align: center;
    padding-left: 40px;
  }

  .vertical-social {
    background-color: #fff;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    height: 30vh;
    position: relative;
  }

  .paragraph.bolder {
    width: auto;
  }

  .column._100vh {
    width: 100%;
    min-height: auto;
  }

  .column.background-image {
    flex: 0 auto;
    width: 100%;
  }

  .column.about {
    width: 100%;
  }

  .project-info.head {
    padding-left: 0;
  }

  .wrapper.center {
    padding-left: 40px;
    padding-right: 40px;
  }

  ._w-title {
    margin-bottom: 5vh;
  }

  .wrapper-list-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .div-block-20 {
    flex-direction: column;
    align-items: center;
  }

  .navbar {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding-top: 5vh;
    padding-left: 5vw;
    padding-right: 5vw;
    display: block;
  }

  .brand {
    height: auto;
  }

  .brand.w--current {
    height: auto;
    margin-bottom: 0;
  }

  .nav-menu {
    padding-top: 0;
    padding-bottom: 0;
  }

  .big-link {
    font-size: 30px;
    line-height: 30px;
  }

  .col-1-2 {
    width: 100%;
  }

  .col-1-2.bg-image {
    height: 550px;
  }

  .col-1-2.header-col {
    padding-top: 0;
  }

  .meet-your-coach-wrappaer {
    flex-flow: wrap-reverse;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .hero {
    padding-bottom: 48vh;
    padding-left: 0;
    inset: auto 0% -17%;
  }

  .hero.pages {
    text-align: center;
  }

  .vertical-social {
    background-color: #fff;
    height: 60px;
    position: relative;
    inset: auto 0 0;
  }

  .main-h1 {
    font-size: 50px;
    line-height: 50px;
  }

  .main-h1.bold {
    font-size: 60px;
    line-height: 50px;
  }

  .main-h1.bold.home {
    line-height: 8vh;
  }

  .main-h1.home {
    font-size: 8vh;
    line-height: 8vh;
  }

  .paragraph.bolder {
    width: auto;
    font-size: 30px;
    line-height: 40px;
  }

  .column._100vh {
    padding: 60px 40px;
  }

  .column.background-image {
    flex: 0 auto;
    width: 100%;
  }

  .column.about {
    justify-content: flex-start;
    align-items: center;
    margin-top: 40px;
    padding: 60px 40px;
  }

  .home-subhead {
    width: auto;
  }

  .h2 {
    font-size: 30px;
    line-height: 40px;
  }

  .h2.mail {
    font-size: 24px;
  }

  .h2.contact {
    width: auto;
  }

  .project-info {
    padding: 0;
  }

  .project-info.head {
    margin-bottom: 0;
    padding: 50px 40px;
  }

  .wrapper {
    flex: none;
  }

  .wrapper.center {
    padding-left: 0;
    padding-right: 0;
  }

  .wrapper.center.form {
    padding-left: 40px;
    padding-right: 40px;
  }

  ._w-title {
    margin-bottom: 5vh;
  }

  .wrapper-info1 {
    flex-direction: column;
  }

  .wrapper-info1.about {
    flex-direction: column;
    padding-left: 40px;
    padding-right: 40px;
  }

  .wrapper-info1.contact {
    flex-direction: column;
  }

  .wrap-content, .div-block-18 {
    width: auto;
  }

  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .div-block-24 {
    flex-direction: column;
  }

  .heading-6 {
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 24px;
  }

  .alt-next {
    font-size: 20px;
    line-height: 40px;
  }

  .navbar {
    text-align: center;
    flex-direction: column;
    height: 225px;
    padding-top: 2vh;
  }

  .brand {
    float: none;
    justify-content: center;
    width: 100%;
    height: 80px;
    padding-left: 0;
  }

  .brand.w--current {
    float: none;
    justify-content: center;
    height: 80px;
    padding-left: 0;
  }

  .div-block-27 {
    padding-left: 40px;
    padding-right: 40px;
  }

  .nav-menu {
    justify-content: space-between;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .big-link {
    font-size: 20px;
    line-height: 20px;
  }

  .image-9 {
    margin-left: auto;
    margin-right: auto;
    inset: 25% 0% 0% 8%;
  }

  .heading-8.white-text {
    font-size: 34px;
  }

  .section-3 {
    margin-top: 0;
  }

  .col-1-2 {
    padding: 25px;
  }

  .col-1-2.bg-image {
    height: 350px;
  }

  .col-1-2.right-items.mobile-middle {
    justify-content: center;
    align-items: flex-start;
    padding-left: 0;
  }

  .section-5 {
    margin-bottom: 140px;
    padding-bottom: 60px;
  }

  .container-2 {
    flex-flow: column;
  }

  .brand-2 {
    padding-left: 0;
  }

  .flex-block {
    justify-content: space-between;
    width: 100%;
  }
}
  .contact-container {
      height: 50vh;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .contact {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 20px;
        }
  .contact-title h2{
      font-weight:600;
      font-size: 40px;
      margin-bottom: 20px;
  }
  .contact-inputs{
      width: 400px;
      height: 50px;
      padding-left: 15px;
      font-weight: 500;
      border-radius: 50px;
      gap: 20px;
      
  }
  .contact textarea{
      height: 140px;
      padding-top:15px;
      border-radius: 20px;
      gap: 15px;
  }
  