@import url("https://use.typekit.net/cid1vin.css");
:root {
  --black-color: #000;
  --white-color: #fff;
  --red-color: #ff0000;
  --gray-color: #f0f0f0;
  --museosans: museo-sans, sans-serif;
  --lato: lato, sans-serif;
}

body,
html {
  font-size: 10px;
  font-family: var(--museosans);
  color: var(--black-color);
}

p {
  font-size: 22px;
  font-family: var(--museosans);
}

i {
  font-size: 18px;
}

a {
  font-family: var(--museosans);
  color: var(--black-color);
}

.btn-custom a {
  font-family: var(--museosans);
  font-size: 24px;
  border: 1px solid var(--red-color);
  text-transform: uppercase;
  color: var(--black-color) !important;
  padding: 10px 40px;
  border-radius: 30px;
  background: var(--white-color);
  font-weight: 700;
  transition: 300ms all ease-in;
  -webkit-transition: 300ms all ease-in;
  -moz-transition: 300ms all ease-in;
}
.btn-custom a:hover {
  text-decoration: none;
  color: var(--red-color) !important;
}

#masthead {
  display: flex;
  justify-content: space-between;
}
#masthead .site-header-fl {
  min-width: 290px;
  padding: 0;
}
#masthead .site-header-fl .c-logo {
  width: 100%;
  max-width: 290px;
  height: auto;
}
#masthead .site-header-fr {
  width: calc(100% - 290px);
}
#masthead .site-header-fr #topbar {
  padding: 8px 30px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-color);
}
#masthead .site-header-fr #topbar .topbar-cta {
  color: var(--red-color);
  font-family: var(--lato);
  font-weight: 700;
  font-size: 20px;
}
#masthead .site-header-fr #topbar .topbar-social a {
  margin-left: 10px;
  font-size: 20px;
  color: var(--black-color);
}
#masthead .site-header-fr #bottombar {
  padding: 0 30px;
  display: flex;
  height: 60px;
}
#masthead .site-header-fr #bottombar .main-navigation {
  padding: 0;
}
#masthead .site-header-fr #bottombar .main-navigation .navbar-toggler {
  outline: none;
}
#masthead .site-header-fr #bottombar .main-navigation ul#primary-menu li {
  margin-right: 68px;
}
#masthead .site-header-fr #bottombar .main-navigation ul#primary-menu li:last-child {
  margin-right: 0;
}
#masthead .site-header-fr #bottombar .main-navigation ul#primary-menu li .dropdown-menu {
  border: 0;
  min-width: 220px;
}
#masthead .site-header-fr #bottombar .main-navigation ul#primary-menu li .dropdown-menu li {
  margin-right: 0;
}
#masthead .site-header-fr #bottombar .main-navigation ul#primary-menu li .dropdown-menu li a {
  padding: 5px 10px;
  transition: 300ms all ease-in;
  -webkit-transition: 300ms all ease-in;
  -moz-transition: 300ms all ease-in;
}
#masthead .site-header-fr #bottombar .main-navigation ul#primary-menu li .dropdown-menu li a:hover {
  background: var(--gray-color);
}
#masthead .site-header-fr #bottombar .main-navigation ul#primary-menu li a {
  color: var(--black-color);
  font-family: var(--museosans);
  font-weight: 600;
  font-size: 20px;
}
#masthead .site-header-fr #bottombar .main-navigation ul#primary-menu li a::after {
  margin-bottom: -3px;
}
#masthead .site-header-fr #bottombar .main-navigation .lines {
  display: inline-block;
  height: 2px;
  width: 30px;
  border-radius: 0;
  transition: 0.3s;
  position: relative;
  background-color: var(--black-color);
}
#masthead .site-header-fr #bottombar .main-navigation .lines::before {
  background-color: var(--black-color);
  top: 8px;
  display: inline-block;
  height: 2px;
  width: 30px;
  border-radius: 0;
  transition: 0.3s;
  content: "";
  position: absolute;
  left: 0;
  -webkit-transform-origin: 2.85714px center;
  transform-origin: 2.85714px center;
  width: 100%;
}
#masthead .site-header-fr #bottombar .main-navigation .lines:after {
  top: -8px;
  background-color: var(--black-color);
  display: inline-block;
  height: 2px;
  width: 30px;
  border-radius: 0;
  transition: 0.3s;
  content: "";
  position: absolute;
  left: 0;
  -webkit-transform-origin: 2.85714px center;
  transform-origin: 2.85714px center;
  width: 100%;
}
#masthead .site-header-fr #bottombar .main-navigation .active .lines {
  background: transparent !important;
  -webkit-transform: scale3d(0.8, 0.8, 0.8);
  transform: scale3d(0.8, 0.8, 0.8);
}
#masthead .site-header-fr #bottombar .main-navigation .active .lines:before {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  top: 0;
  width: 30px;
}
#masthead .site-header-fr #bottombar .main-navigation .active .lines:after {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  top: 0;
  width: 30px;
}

.tparrows:before {
  font-size: 30px !important;
}

#home-hero {
  background: url(images/hero-image.jpg) no-repeat 0 0;
  background-size: cover;
}
#home-hero .home-hero__copy {
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#home-hero .home-hero__copy h2.hero-header {
  font-family: var(--museosans);
  font-size: 60px;
  color: var(--black-color);
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 30px;
}

h2.hero-header {
  font-family: var(--museosans) !important;
  font-size: 60px;
  color: var(--black-color) !important;
  line-height: 1.3 !important;
  text-transform: uppercase;
  margin-bottom: 30px;
}

h2.info-text {
  font-family: var(--museosans);
  color: var(--white-color);
  font-weight: 900;
}

#book-hero {
  background: url(images/girl-eye.jpg) no-repeat 0 0;
  background-size: cover;
  min-height: 580px;
}
#book-hero .book-hero__copy {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#book-hero .book-hero__copy h2.book-header {
  font-family: var(--museosans);
  font-size: 60px;
  color: var(--black-color);
  line-height: 1.3;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.home-services .service-card-image img {
  width: 100%;
  height: auto;
}
.home-services .service-card-copy {
  max-width: 80%;
  margin: 0 auto;
  margin-top: -100px;
  background: #fff;
  box-shadow: 0px 2px 8px 5px rgba(0, 0, 0, 0.05);
  z-index: 2;
  position: relative;
  padding: 20px 0;
}
.home-services .service-card-copy .btn-custom a {
  font-size: 18px;
}
.home-services .service-card-copy h2 {
  font-size: 28px;
  color: var(--black-color);
  font-weight: 700;
  margin-bottom: 20px;
}

.page-hero {
  padding: 120px 0;
  position: relative;
}
.page-hero .wp-block-column {
  z-index: 2;
}
.page-hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-hero {
  background: url(images/About-Hero.jpg) no-repeat center center;
  background-size: cover;
}

.about-section {
  background: url(images/about-hero-new.jpg) no-repeat left top;
  background-size: 45%;
}

.about-section h3 {
  font-family: var(--museosans);
}

.contact-hero {
  background: url(images/Contact-Hero.jpg) no-repeat center center;
  background-size: cover;
}

.contact-lens-hero {
  background: url(images/Contact-Lenses-Hero.png) no-repeat top center;
  background-size: cover;
}

.custom-eye-hero {
  background: url(images/Custom-Eye-Wear-Hero.png) no-repeat center center;
  background-size: cover;
}

.contact-lenses-section {
  background: url(images/Contact-Lenses-Hero.png) no-repeat left top;
  background-size: 45%;
}

.custom-eyewear-section {
  background: url(images/Custom-Eye-Wear-Hero.png) no-repeat right top;
  background-size: 45%;
}

.page-header {
  font-family: var(--museosans);
  font-size: 60px;
  color: var(--black-color);
  font-weight: 300;
  text-transform: uppercase;
}

.section-header {
  font-family: var(--museosans);
  font-size: 40px;
  color: var(--black-color);
  font-weight: 300;
}

.social-links a {
  margin-left: 10px;
  font-size: 20px;
  color: var(--black-color);
}

.gform_wrapper .gfield textarea {
  max-height: 100px;
}
.gform_wrapper .gform_footer .button {
  background: var(--white-color);
  border: 1px solid var(--red-color);
  padding: 10px 25px;
  color: var(--black-color);
  font-family: var(--museosans);
  font-size: 18px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 700;
}
.gform_wrapper .gform_footer .button:hover {
  color: var(--red-color);
}

footer {
  background: var(--black-color);
  color: var(--white-color);
  padding: 40px 0;
}
footer a {
  color: var(--white-color);
}
footer #topbar .container .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
footer #topbar .container .row .topbar-social a {
  margin-left: 10px;
  font-size: 20px;
  color: var(--white-color);
}
footer #bottombar .row .cols {
  width: 55%;
  padding-top: 30px;
  margin-top: 30px;
}
footer #bottombar .row .cols:nth-child(2) {
  width: 45%;
  padding-left: 30px;
  border-left: 1px solid #e2e8eb;
}
footer #bottombar .row .widget {
  padding: 0;
}
footer #bottombar .row .widget p {
  font-size: 18px;
  font-family: var(--museosans);
}
footer #bottombar .row .widget .widget-title {
  font-size: 28px;
  font-family: var(--museosans);
  font-weight: 700;
  color: var(--white-color);
}
footer #bottombar .row .widget ul.menu {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
footer #bottombar .row .widget ul.menu li {
  margin-bottom: 10px;
  list-style: none;
  width: 45%;
}
footer #bottombar .row .widget ul.menu li a {
  text-decoration: none;
  font-size: 18px;
  color: var(--white-color);
}

@media only screen and (max-width: 991px) {
  #masthead {
    flex-direction: column;
  }
  #masthead .site-header-fl {
    text-align: center;
  }
  #masthead .site-header-fr {
    width: 100%;
    text-align: center;
    padding: 0;
  }
  #masthead .site-header-fr #topbar {
    flex-direction: column;
  }
  #masthead .site-header-fr #bottombar {
    padding: 0;
  }
  #masthead .site-header-fr #bottombar .navbar-nav .dropdown-menu {
    border: 0;
    padding: 0;
  }
  #masthead .site-header-fr #bottombar .main-navigation {
    z-index: 10;
    padding: 20px 0;
    background: var(--white-color);
    width: 100%;
  }
  #masthead .site-header-fr #bottombar .main-navigation .navbar-toggler {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    height: 40px;
  }
  #masthead .site-header-fr #bottombar .main-navigation #primary-menu {
    background: var(--white-color);
  }
  #masthead .site-header-fr #bottombar .main-navigation #primary-menu li {
    border-bottom: 1px solid #e1e2e5;
    text-align: left;
    padding: 0 20px;
    margin-right: 0 !important;
  }
  #masthead .site-header-fr #bottombar .main-navigation #primary-menu li ul.dropdown-menu li {
    padding: 0 10px;
    border-bottom: 1px solid var(--white-color);
    background-color: var(--gray-color);
  }
  #masthead .site-header-fr #bottombar .main-navigation #primary-menu li ul.dropdown-menu li:last-child {
    border-bottom: 0 solid var(--white-color);
  }

  .tparrows:before {
    font-size: 15px !important;
  }

  #home-hero .home-hero__copy h2.hero-header {
    font-size: 40px;
  }

  .btn-custom a,
.home-services .service-card-copy .btn-custom a {
    font-size: 16px;
  }

  .home-services .container > .wp-block-column {
    margin-bottom: 40px;
  }

  footer {
    padding-top: 30px;
  }
  footer #topbar .container .row {
    flex-direction: column;
    align-items: center;
  }
  footer #topbar .container .row .topbar-social {
    margin-top: 20px;
  }
  footer #bottombar .row .cols {
    width: 100% !important;
  }
  footer #bottombar .row .cols:nth-child(2) {
    padding-left: 0;
  }
  footer #bottombar .row .cols .widget {
    text-align: center;
  }
}
@media only screen and (max-width: 600px) {
  .page-header {
    font-size: 45px;
  }

  .about-section, .contact-lenses-section, .custom-eyewear-section {
    background: none;
  }
}

/*# sourceMappingURL=output.css.map */
