:root {
  --color-6: #7c5100;
  --color-5: #f1a402;
  --color-4: #51bcce;
  --color-3: #212f65;
  --color: white;
  --color-2: #333;
  --color-7: #4f3717;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #333;
  font-family: nunito-sans, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75em;
}

h2 {
  background-image: linear-gradient(159deg, var(--color-6), var(--color-5) 47%, #f3cf8e 63%, var(--color-6) 86%);
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: the-seasons, sans-serif;
  font-size: 2.5em;
  font-weight: 400;
  line-height: 1.2em;
}

h3 {
  border: 1px solid var(--color-4);
  color: var(--color-3);
  text-align: center;
  border-radius: 50px;
  margin-top: 0;
  margin-bottom: 5px;
  padding: 10px 20px;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1em;
}

h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.2em;
}

h5 {
  color: var(--color-4);
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.2em;
}

h6 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.2em;
}

p {
  margin-bottom: 20px;
  font-weight: 400;
}

.hero {
  background-image: url('../images/mountainscape.jpg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  height: 100vh;
  min-height: 700px;
  position: relative;
}

.hero-content-div {
  z-index: 5;
  text-align: center;
  background-image: linear-gradient(#0000, #0000007a);
  flex-flow: column;
  justify-content: flex-end;
  align-items: center;
  padding: 5% 5% 10%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.hero-inner-txt {
  max-width: 700px;
}

.hero-lg-line {
  background-image: linear-gradient(129deg, var(--color-6), var(--color-5) 46%, var(--color-6));
  color: var(--color-5);
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-bottom: 10px;
  font-family: the-seasons, sans-serif;
  font-size: 3.5em;
  font-weight: 400;
  line-height: 1.2em;
}

.hero-p {
  color: var(--color);
  margin-bottom: 30px;
  font-size: 1.5em;
  line-height: 1.5em;
}

.button {
  font-weight: 700;
  border: 2px solid var(--color-4);
  background-color: var(--color);
  color: #000;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 12px 30px;
  line-height: 1.2em;
  transition: all .2s ease-in-out;
}

.button:hover {
  background-color: var(--color-4);
  transform: scale(.9);
  box-shadow: 0 20px 20px 0 rgba(0, 0, 0, 0.15);

}

.button.solid {
  background-color: var(--color-4);
  margin-bottom: 10px;
  margin-right: 10px;
}

.button.solid:hover {
  border-color: var(--color-3);
  background-color: var(--color-3);
  color: var(--color);
}

.button.small {
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  margin-top: 0;
  padding: 10px 20px;
  font-size: .9em;
  line-height: 1em;
}

.navbar {
  background-color: #ddd0;
  border-bottom: 1px solid #ffffff2e;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-end;
  padding-left: 0;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-menu {
  align-items: center;
  height: 85px;
  display: flex;
}

.nav-link {
  color: var(--color-6);
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 600;
}

.nav-link:hover {
  color: var(--color-5);
}

.dropdown {
  line-height: 1.2em;
}

.dropdown-toggle {
  color: var(--color-6);
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 30px;
  font-weight: 600;
}

.dropdown-toggle:hover {
  color: var(--color-5);
}

.icon {
  margin-right: 10px;
}

.dropdown-list {
  background-color: #ddd;
}

.dropdown-list.w--open {
  background-color: var(--color-3);
}

.dropdown-link {
  color: var(--color);
}

.dropdown-link:hover {
  background-color: var(--color-6);
}

.nav-btns {
  z-index: 5;
  background-color: var(--color-3);
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 20px;
  display: flex;
  position: relative;
}

.nav-btn {
  border: 1px solid var(--color-5);
  color: var(--color);
  border-radius: 50px;
  align-items: center;
  margin-left: 10px;
  padding: 8px 20px 10px;
  font-size: .9em;
  font-weight: 600;
  line-height: 1em;
  text-decoration: none;
  display: flex;
}

.nav-btn:hover {
  background-color: var(--color);
  color: var(--color-2);
}

.nav-icon {
  width: 20px;
  margin-right: 0;
}

.nav-txt {
  margin-left: 10px;
}

.nav-btm-items {
  z-index: 5;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.nv-bg-color {
  background-color: var(--color);
  border-bottom: 1px solid #212f6540;
  position: absolute;
  inset: 0%;
}

.welcome {
  padding-top: 5%;
  padding-bottom: 3%;
}

.wrap {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

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

.wrap.flex.cat {
  background-image: linear-gradient(#ffffffe3, #ffffffe3), url('../images/mountain.png');
  background-position: 0 0, 100% 100%;
  background-repeat: repeat, no-repeat;
  background-size: auto, 60%;
  width: 100%;
  padding-bottom: 5%;
  padding-left: 5%;
  padding-right: 5%;
}

.wrap.flex.max {
  max-width: 1600px;
}

.wrap.flex.top-marg {
  margin-top: 5%;
}

.wrap.center {
  text-align: center;
}

.wrap.center.top-8 {
  margin-top: 8%;
}

.img-div-contain {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 48%;
  display: flex;
  position: relative;
}

.img-contain {
  z-index: 1;
  width: 100%;
  margin-left: 50px;
  position: relative;
}

.img-contain._2 {
  margin-left: 0;
}

.img-contain._3 {
  margin-left: 0;
  margin-right: 50px;
}

.txt-div {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.txt-div._48 {
  width: 48%;
}

.txt-div._48.btm {
  justify-content: center;
}

.txt-div._48.with-pad {
  padding-top: 30px;
  padding-bottom: 30px;
}

.heading {
  margin-bottom: 20px;
  padding-top: 8px;
}

.circle {
  background-color: var(--color-4);
  opacity: .25;
  border-radius: 100%;
  width: 300px;
  height: 300px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.circle.cta {
  opacity: .25;
  inset: auto 0% 0% auto;
}

.gold-accent-circle {
  background-image: linear-gradient(180deg, var(--color-5), var(--color-6));
  border-radius: 100px;
  width: 75px;
  height: 75px;
  margin-top: 50px;
  margin-bottom: 75px;
}

.div-block {
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.special-parallax {
  background-image: url('../images/golden-hour-mountains.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  justify-content: space-between;
  align-items: stretch;
  min-height: 0;
  padding: 15% 5%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.experience-card {
  background-color: var(--color);
  text-align: center;
  flex-flow: column;
  align-items: center;
  width: 32%;
  padding-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.number-circle {
  background-color: var(--color-6);
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  margin-bottom: 15px;
  padding: 10px 10px 10px 15px;
  font-size: 2em;
  line-height: 1em;
  display: flex;
}

.text-block {
  color: var(--color);
  font-family: the-seasons, sans-serif;
  font-weight: 400;
}

.h4-gold {
  color: var(--color-6);
}

.cataract-section {
  padding-top: 5%;
  padding-bottom: 0%;
  position: relative;
}

.icon-box {
  position: absolute;
  inset: auto 0% 0% auto;
}

.no-glasses-wrap {
  max-width: none;
  min-height: 70vh;
  color: var(--color);
  background-image: linear-gradient(273deg, #0000 1% 33%, #0000005e 68%, #00000080), url('../images/skiier.jpg');
  background-position: 0 0, 100%;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  border-radius: 0;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin: 5%;
  padding: 5% 50% 5% 5%;
  display: flex;
  position: relative;
}

.h2-white {
  background-color: var(--color);
  background-image: none;
}

.service-links {
  justify-content: flex-start;
  width: auto;
  margin-top: 75px;
  margin-bottom: -62.5px;
  display: flex;
  position: absolute;
  inset: auto auto 0% 5%;
}

.service-link-circle {
  border: 1px solid var(--color-5);
  background-color: var(--color-6);
  width: 175px;
  height: 175px;
  color: var(--color);
  text-align: center;
  text-transform: uppercase;
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-right: 30px;
  padding: 20px;
  font-family: the-seasons, sans-serif;
  font-size: 1.75em;
  font-weight: 400;
  line-height: 1.2em;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.service-link-circle:hover {
  background-image: linear-gradient(166deg, var(--color-6) 15%, #e9c27e 38%, var(--color-5) 61%, var(--color-6) 85%);
  transform: translate(0, -10px);
  box-shadow: 4px 4px 11px #00000054;
}

.eye-icon {
  width: 65px;
  margin-bottom: 20px;
}

.doc-bio-section {
  background-color: #51bcce1a;
  flex-flow: column;
  padding-top: 5%;
  padding-bottom: 5%;
  display: flex;
}

.doc-photo-wrap {
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 10%;
  padding-right: 15%;
  display: flex;
  position: relative;
}

.image {
  z-index: 1;
  max-height: 500px;
  position: relative;
}

.text-div-48 {
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 55%;
  margin-top: 70px;
  display: flex;
}

.circle-doc {
  background-color: var(--color-3);
  opacity: .25;
  border-radius: 100%;
  width: 300px;
  height: 300px;
  margin-bottom: 5%;
  margin-right: 12%;
  position: absolute;
  inset: auto 0% 0% auto;
}

.div-block-2 {
  background-color: var(--color-3);
  color: var(--color);
  border-radius: 15px;
  margin-bottom: 0;
  padding: 25px;
}

.div-block-3 {
  border-left: 5px solid var(--color-5);
  margin-bottom: 15px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 15px;
  font-size: 1.2em;
  font-style: italic;
  line-height: 1.5em;
}

.service-section {
  background-color: var(--color-3);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.div-block-4 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 60%;
  display: flex;
  position: absolute;
  inset: 0% auto 0% -12%;
}

.image-2 {
  opacity: 1;
  width: 100%;
}

.service-wrap {
  z-index: 10;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  display: flex;
  position: relative;
}

.service-title-holder {
  width: 30%;
  color: var(--color);
  margin-left: 0;
}

.link-stack {
  justify-content: space-between;
  align-items: flex-start;
  width: 60%;
  display: flex;
}

.link-holder {
  flex-flow: column;
  width: 49%;
  display: flex;
}

.service-link {
  border: 1px none var(--color-4);
  background-color: var(--color);
  color: var(--color-3);
  border-radius: 50px;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 20px;
  font-size: 1em;
  font-weight: 600;
  line-height: 1.2em;
  text-decoration: none;
  transition: all .2s ease-in-out;
  display: flex;
}

.service-link:hover {
  background-color: var(--color-5);
}

.arrow-holder {
  background-color: var(--color-5);
  border-radius: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-right: 15px;
  padding: 10px;
  display: flex;
}

.buttons {
  flex-flow: wrap;
  align-items: center;
  display: flex;
}

.footer-section {
  background-color: var(--color-3);
  background-image: linear-gradient(#212f65f7, #212f65f7), url('../images/white_Asset-6.png'), url('../images/white_mountain.png');
  background-position: 0 0, -20% 150%, 100% 100%;
  background-repeat: repeat, no-repeat, no-repeat;
  background-size: auto, 55%, 50%;
  background-attachment: scroll, scroll, fixed;
  height: auto;
  min-height: 0;
  padding-top: 5%;
  padding-bottom: 5%;
  position: relative;
}

.social-link {
  width: 30px;
  height: 30px;
  margin-right: 5px;
  transition: all .2s ease-in-out;
}

.social-link:hover {
  opacity: .4;
  transform: scale(.9);
}

.brand-footer {
  margin-bottom: 20px;
}

.link {
  color: var(--color-5);
  text-decoration: none;
}

.link:hover {
  color: var(--color-4);
}

.link.dark {
  color: var(--color-6);
}

.link.dark:hover {
  color: var(--color-5);
}

.search {
  width: 100%;
  margin-bottom: 30px;
  display: flex;
}

.search-input {
  background-color: var(--color);
  border: 1px #000;
  height: 40px;
  margin-bottom: 0;
}

.search-input:focus, .search-input::placeholder {
  color: var(--color-2);
}

.footer-content-div {
  color: var(--color);
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.footer-bottom-div {
  z-index: 1;
  justify-content: space-between;
  width: 90%;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.grid-2 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr .5fr;
  width: 100%;
}

.image-3 {
  height: 65px;
}

.search-button {
  background-color: var(--color-5);
  background-image: url('../images/icons8-magnifying-glass.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 30px;
  width: 40px;
  height: 40px;
}

.ql {
  color: var(--color-5);
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2em;
  text-decoration: none;
}

.ql:hover {
  color: var(--color-4);
}

.social-icons-holder {
  align-items: center;
  margin-bottom: 30px;
  display: flex;
}

.image-4 {
  filter: saturate(0%) brightness(10000%);
}

.background-video {
  z-index: 1;
  height: 100%;
}

.ip-header {
  background-color: #212f6596;
  background-image: linear-gradient(#ffffffe6, #ffffffe6);
  padding: 15% 5% 5%;
  position: relative;
  overflow: hidden;
}

.h2-solid {
  background-color: var(--color-3);
  background-image: none;
}

.breadcrumbs {
  align-items: center;
  display: flex;
}

.bc {
  text-transform: none;
  margin-right: 15px;
  font-weight: 600;
}

.header-mountain {
  opacity: .06;
  max-width: 55%;
  position: absolute;
  inset: auto -50px -100px auto;
}

.section {
  padding-top: 5%;
  padding-bottom: 5%;
}

.img-div {
  object-fit: cover;
  overflow: hidden;
}

.img-div._48 {
  width: 48%;
}

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

@media screen and (max-width: 991px) {
  h2 {
    font-size: 2em;
  }

  .hero {
    height: 700px;
    min-height: 400px;
    margin-top: 100px;
  }

  .hero-content-div {
    padding-bottom: 5%;
  }

  .hero-lg-line {
    font-size: 3em;
  }

  .brand {
    height: auto;
    margin-bottom: 5px;
    margin-left: 10px;
  }

  .logo-color {
    height: 60px;
    position: static;
  }

  .nav-menu {
    background-color: var(--color);
    height: auto;
  }

  .dropdown, .dropdown-toggle {
    display: block;
  }

  .nav-btn {
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .nav-txt {
    display: none;
  }

  .wrap.flex, .wrap.flex.cat, .wrap.flex.max {
    flex-flow: column;
  }

  .img-div-contain {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }

  .txt-div._48.btm, .txt-div._48.with-pad {
    width: 100%;
  }

  .gold-accent-circle {
    display: none;
  }

  .div-block {
    margin-top: 50px;
  }

  .div-block.less-mob {
    margin-top: 0;
  }

  .special-parallax {
    background-attachment: scroll;
    flex-flow: wrap;
    padding-top: 8%;
    padding-bottom: 2%;
  }

  .experience-card {
    width: 100%;
    margin-bottom: 50px;
  }

  .no-glasses-wrap {
    background-color: var(--color-3);
    text-align: center;
    background-image: url('../images/skiier.jpg');
    background-position: 100% 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: scroll;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 20px 425px;
  }

  .service-links {
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 0;
    position: static;
  }

  .service-link-circle {
    width: 125px;
    height: 125px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 10px;
    font-size: 1.5em;
  }

  .doc-photo-wrap {
    flex-flow: column;
    padding-left: 8%;
    padding-right: 5%;
  }

  .text-div-48 {
    width: 90%;
    margin-top: 0;
  }

  .circle-doc {
    width: 200px;
    height: 200px;
    margin-right: 150px;
  }

  .service-section {
    align-items: flex-end;
    padding-top: 5%;
    padding-bottom: 5%;
    padding-right: 5%;
  }

  .div-block-4 {
    justify-content: flex-end;
    display: none;
  }

  .image-2 {
    width: 120%;
    max-width: none;
    margin-bottom: -100px;
  }

  .service-wrap {
    flex-flow: column;
    width: 95%;
  }

  .service-title-holder {
    width: 100%;
  }

  .link-stack {
    flex-flow: column;
    width: 100%;
  }

  .link-holder {
    width: 100%;
  }

  .footer-bottom-div {
    margin-top: 0;
  }

  .mb.w--open {
    background-color: var(--color-5);
  }

  .ip-header {
    padding-top: 22%;
  }

  .header-mountain {
    max-width: 50%;
    bottom: -50px;
  }

  .img-div._48 {
    width: 100%;
  }

  .img-div._48.hide-mob {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .hero {
    height: 400px;
  }

  .hero-lg-line {
    font-size: 2.5em;
  }

  .hero-p {
    font-size: 1.2em;
  }

  .brand {
    padding-left: 0;
  }

  .wrap.flex.top-marg.no-mob {
    margin-top: 0%;
  }

  .circle {
    width: 200px;
    height: 200px;
  }

  .no-glasses-wrap {
    padding-bottom: 325px;
  }

  .doc-photo-wrap {
    padding-left: 5%;
  }

  .text-div-48 {
    width: 100%;
  }

  .grid-2 {
    grid-column-gap: 19px;
    grid-row-gap: 19px;
    grid-template-columns: 1fr;
  }

  .ip-header {
    padding-top: 28%;
  }

  .header-mountain {
    max-width: 65%;
    right: -150px;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    font-size: 1.6em;
  }

  .hero {
    height: 500px;
  }

  .hero-lg-line {
    font-size: 2em;
  }

  .button {
    padding-left: 20px;
    padding-right: 20px;
    font-size: .9em;
  }

  .nav-btn {
    padding: 5px;
  }

  .nav-icon {
    width: 18px;
  }

  .welcome {
    padding-bottom: 5%;
  }

  .circle {
    width: 100px;
    height: 100px;
  }

  .div-block {
    margin-top: 20px;
  }

  .special-parallax {
    padding-top: 15%;
  }

  .no-glasses-wrap {
    background-image: none;
    background-position: 0 0;
    background-repeat: repeat;
    background-size: auto;
    background-attachment: scroll;
    padding-bottom: 20px;
  }

  .service-links {
    flex-flow: column;
    align-items: center;
  }

  .service-link-circle {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
  }

  .doc-bio-section {
    overflow: hidden;
  }

  .circle-doc {
    width: 100px;
    height: 100px;
    margin-right: 25px;
  }

  .service-link {
    font-size: 1em;
  }

  .footer-section {
    background-image: linear-gradient(#212f65f0, #212f65f0), url('../images/white_mountain.png');
    background-position: 0 0, 100% 100%;
    background-size: auto, 80%;
  }

  .ip-header {
    padding-top: 45%;
  }

  .breadcrumbs {
    flex-flow: wrap;
  }

  .header-mountain {
    inset: auto -50px -25px auto;
  }
}

#w-node-_87777d0a-135f-01a0-b2b2-440c59702d48-59702d22 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}


