@font-face {
  font-family: 'Apalu';
  src: url('/fonts/Apalu.ttf'); /* IE9 Compat Modes */
  src: url('/fonts/Apalu.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/Apalu.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/Apalu.woff') format('woff'), /* Pretty Modern Browsers */
       url('/fonts/Apalu.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('/fonts/Apalu.svg#Apalu') format('svg'); /* Legacy iOS */
}

@font-face {
  font-family: 'Quantify';
  src: url('/fonts/Quantify.ttf'); /* IE9 Compat Modes */
  src: url('/fonts/Quantify.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/fonts/Quantify.woff2') format('woff2'), /* Super Modern Browsers */
       url('/fonts/Quantify.woff') format('woff'), /* Pretty Modern Browsers */
       url('/fonts/Quantify.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('/fonts/Quantify.svg#Quantify') format('svg'); /* Legacy iOS */
}

/*! HTML5 Boilerplate v6.1.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */

body {
  font-family: 'Montserrat', Helvetica, sans-serif;
  color: rgb(54, 52, 56);
  background-color: rgb(255, 255, 255);
}

.title,
blockquote {
  font-family: 'Playfair Display', serif;
}

main p,
main ul,
main dl {
  font-size: 1.3rem;
}

main img {
  width: 100%;
  height: auto;
}

.title {
  font-size: 2rem;
  line-height: 2.2rem;
}

.subtitle {
  font-size: 1.8rem;
  line-height: 2.2rem;
}

.section-heading {
  font-size: 1.6rem;
  line-height: 1.8rem;
  font-weight: 600;
}

#home main p,
#home .title {
  text-align: center;
}

.intro-paragraph {
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6, nav, footer {
  font-family: 'Montserrat', Helvetica, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

html {
  scroll-behavior: smooth;
}

main a,
.card-link-text {
  color: rgb(101, 178, 176);
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s ease-in;
}

main a:hover,
main a:focus {
  color: rgb(101, 178, 176);
  border-bottom: 2px solid rgb(101, 178, 176);
}

main a:hover .card-link-text,
main a:focus .card-link-text {
  border-bottom-color: rgb(101, 178, 176);
}

.breadcrumbs a {
  color: rgb(101, 178, 176);
  border-bottom-width: 1px;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus {
  text-decoration: none;
  border-bottom-width: 1px;
}

.button,
.button:hover,
.button:focus {
  background-color: rgb(101, 178, 176);
}

.section-separator-line {
  width: 100%;
  margin: 2rem auto;
  color: transparent;
  background-color: transparent;
    background-image: linear-gradient(90deg, rgb(195, 134, 185), rgb(224, 189, 131), transparent);
    border: 0;
    height: 3px;
}

/* HEADER STYLES */

.main-header,
.main-footer {
  background-color: rgb(54, 52, 66);
}

.hero {
  height: 100vh;
  position: relative;
}

.top-bar {
  position: relative;
  background-color: transparent;
  align-items: flex-start;
    -webkit-align-items: flex-start;
}

.no-js .top-bar {
  display: none;
}

.header-card {
  padding: none;
  color: rgb(255, 255, 255);
}

.header-card:hover,
.header-card:focus {
  color: rgb(255, 255, 255);
}

.header-card h1 {
  display: inline-block;
}

#header-logo {
  height: 5rem;
  width: auto;
  display: block;
  float: left;
  margin-right: 0.5rem;
  display: inline-block;
  fill: rgb(54, 52, 66);
  stroke: rgb(54, 52, 66);
  background: linear-gradient(90deg, #c67fc4, #d7c45a);
  background-size: 170%;
  -webkit-animation: GradientTransition 9s ease infinite;
    -moz-animation: GradientTransition 9s ease infinite;
      animation: GradientTransition 9s ease infinite;
}

@-webkit-keyframes GradientTransition {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes GradientTransition {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes GradientTransition {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

.header-card h1 {
  font-family: 'Quantify', sans-serif;
  font-size: 1.7rem;
  line-height: 1.6rem;
  text-transform: uppercase;
  color: rgb(224, 189, 131);
}

.header-card h1 span {
  font-family: 'Apalu', serif;
  text-transform: none;
}

/* TAGLINES STYLES */

.primary-tagline,
.secondary-tagline {
  font-family: 'Montserrat', Helvetica, sans-serif;
}

#about .tagline-wrapper {
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: 4rem;
}

#about .primary-tagline {
  width: 100%;
  margin: 0 auto;
  font-size: 2.6rem;
  line-height: 2.8rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.3rem;
  color: rgb(255, 255, 255);
}

#weddings .tagline-wrapper {
  width: 100%;
  position: absolute;
  top: inherit;
  bottom: 4rem;
}

#weddings .primary-tagline {
  font-size: 2.4rem;
  line-height: 2.8rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.3rem;
  color: rgb(54, 52, 56);
}

#weddings .secondary-tagline {
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.4rem;
  color: rgb(54, 52, 56);
}

#procourses .tagline-wrapper {
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: 4rem;
}

#procourses .primary-tagline {
  width: 100%;
  margin: 0 auto;
  font-size: 2rem;
  line-height: 2.2rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.3rem;
  color: rgb(255, 255, 255);
}

#procourses .secondary-tagline {
  width: 100%;
  margin: 0 auto;
  font-size: 1.2rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.5rem;
  color: rgb(255, 255, 255);
}

#masterclasses .tagline-wrapper {
  width: 100%;
  position: absolute;
  left: 0px;
  bottom: 4rem;
}

#masterclasses .primary-tagline {
  font-size: 3rem;
  line-height: 3.2rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.4rem;
  color: rgb(54, 52, 56);
}

#masterclasses .secondary-tagline {
  font-size: 1.8rem;
  text-align: center;
  padding-left: 0rem;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.3rem;
  color: rgb(54, 52, 56);
}

/* SKIPLINK STYLES */

.hero-inner-wrap {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}

@keyframes pulse {
  0% {
    opacity: .6;
    transform: none;
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: .6;
    transform: none;
  }
}

.skiplink {
  width: 10rem;
  margin: 0 auto;
  margin-top: 1.5rem;
  text-align: center;
}

.skiplink a {
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
}

.skiplink a::after {
  content: '';
  display: block;
  margin: 10px auto;
  width: 20px;
  height: 20px;
  background-image: url(/img/hardcoded/downarrow.png);
  background-size: 20px;
  background-repeat: no-repeat;
  animation: pulse 2s 3s ease-out infinite;
  opacity: 0.6;
}

.hero {
  overflow: hidden;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
}

#weddings .hero img,
#procourses .hero img,
#masterclasses .hero img {
  object-position: 100% 0%;
}


/* MENU STYLES */

.main-nav .menu {
  background-color: transparent;
  text-transform: uppercase;
}

.top-bar {
  background-color: transparent;
}

.main-nav .menu {
  border-radius: 0.2em;
}

.main-nav .menu a {
  color: rgb(224, 189, 131) !important;
}

.main-nav .menu a span {
  border-bottom: 2px solid rgb(54, 52, 66);
  transition: all 0.3s ease-in;
}

.main-nav .menu .current > a span,
.main-nav .menu a:hover span {
  border-bottom-color: rgb(224, 189, 131);
}

.main-nav .menu .is-dropdown-submenu {
  background-color: rgb(54, 52, 66);
}

.dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
  border-top-color: rgb(224, 189, 131);
}

.drilldown .is-drilldown-submenu-parent > a::after {
  border-left-color: rgb(224, 189, 131);
}

.drilldown .js-drilldown-back > a::before {
  border-right-color: rgb(224, 189, 131);
}

.drilldown a {
  background-color: rgb(54, 52, 66);
}

.title-bar-title {
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  height: 40px;
  padding-right: 0.2rem;
}

.menu-button {
  color: #fff;
  width: 200px;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  text-align: right;
}

.menu-icon {
  width: 2.5rem;
  height: 40px;
}

.menu-icon::after {
  height: 5px;
  -webkit-box-shadow: 0 12px 0 #fefefe, 0 24px 0 #fefefe;
          box-shadow: 0 12px 0 #fefefe, 0 24px 0 #fefefe;
}

.menu-icon:hover::after {
  height: 5px;
  -webkit-box-shadow: 0 12px 0 #b3b3b3, 0 24px 0 #b3b3b3;
          box-shadow: 0 12px 0 #b3b3b3, 0 24px 0 #b3b3b3;
}

/* FOOTER STYLES */

.main-footer,
.main-footer label {
  color: white;
}

.main-footer a {
  color: white;
}

.footer-nav {
  align-content: center;
}

.contact-social-links {
  justify-content: space-evenly;
}

.social-links svg {
  width: 50px;
  height: 50px;
}

.social-links svg path {
  fill:none;
  stroke: rgb(197, 134, 185);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  transition: all 0.5s ease-in;
}

.social-links svg polygon,
.social-links svg circle {
  fill: rgb(197, 134, 185);
  transition: all 0.5s ease-in;
}

.social-links a:hover svg path,
.social-links a:focus svg path {
  stroke: rgb(224, 189, 131);
}

.social-links a:hover svg polygon,
.social-links a:focus svg polygon,
.social-links a:hover svg circle,
.social-links a:focus svg circle {
  fill: rgb(224, 189, 131);
}

.link-label {
  padding-top: 0.35rem;
}

.contact-links a {
  display: inline;
}

.contact-links a:hover,
.contact-links a:focus,
.footer-nav a:hover,
.footer-nav a:focus,
.legal a:hover,
.legal a:focus {
  color: rgb(224, 189, 131);
  transition: all 0.5s ease-in;
}

.main-contact-form .button:hover {
  background-color: rgb(224, 189, 131);
  transition: background-color 0.5s ease-in;
}

#footer-logo {
  height: 3rem;
  width: auto;
  display: inline-block;
  fill: rgb(54, 52, 66);
  stroke: rgb(54, 52, 66);
  background: linear-gradient(90deg, #c67fc4, #d7c45a);
}

/* LIST STYLES */

.about-summaries-list {
  list-style: none;
  margin-left: unset;
}

.about-summaries-list li {
  padding: 2rem;
}


.about-summaries-list li:nth-child(even) .subtitle {
  text-align: right;
}

.key-selling-points-list,
.values-list {
  max-width: 45rem;
  margin: 0 auto;
}

.values-list {
  font-size: 1rem;
}

.values-list dt {
  text-transform: uppercase;
}

.values-list dd {
  margin-bottom: 1.5em;
}

/* PULLQUOTE STYLES */

.pullquote {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pullquote p {
  display: block;
  text-align: center;
}

blockquote {
  font-style: italic;
  border: none;
  position: relative;
  padding-left: 2rem;
  padding-right: 2rem;
}

blockquote::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(/img/hardcoded/quote-marks.png) no-repeat;
  background-size: 1.8rem;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.5;
}

blockquote::after {
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  background: url(/img/hardcoded/quote-marks.png) no-repeat;
  background-size: 1.8rem;
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.5;
  transform: rotate(180deg);
}

cite {
  font-style: normal;
  text-align: right;
}

/* CTA STYLES */

.cta {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
}

.cta p {
  font-size: 2rem;
}

.cta .button {
  font-family: 'Montserrat', Helvetica, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  box-shadow: 0 0 0 2em rgba(255, 255, 255, 0);
  border: 2px solid transparent;
}

.cta .button:hover,
.cta .button:focus {
  border-color: rgb(224, 189, 131);
}

/* CARD STYLES */

a.card {
  transition: transform 0.1s ease-in-out,
              box-shadow 0.1s ease-in;
}

.card,
.card-section,
.card-divider {
  background-color: transparent;
  border: none;
  font-family: 'Montserrat', Helvetica, sans-serif;
}

#photographer-quote-tabs .card {
  background-color: rgb(255, 255, 255);
}

a.card:hover,
a.card:focus {
  box-shadow: 10px 10px 40px -24px rgba(0,0,0,0.8);
  color: rgb(54, 52, 56);
  border-bottom: none;
  transform: translateY(-0.3rem);
}

.card-section p {
  font-size: 1.1rem;
}

.card-footer {
  flex-direction: row-reverse;
}

.card-link-text {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: bold;
}

.card-image {
  padding: 1rem;
}

.card-image img {
  border: 1px solid #fff;
}

.card blockquote p {
  font-size: 1.5rem;
}

.card-section-contents-align-start {
  align-content: flex-start;
}

/*FORM Styles */

.reveal {
  padding: 1.8rem;
}

.success-message {
  color: rgb(101, 178, 176);
  font-weight: bold;
}

.error-message {
  color: rgb(197, 134, 185)
}

/* HOMEPAGE STYLES */

#weddings .feature-card p {
  text-align: center;
}

#weddings .card .tag {
  width: 100%;
  font-size: 1rem;
  text-align: center;
  text-transform: uppercase;
  /*background-color: rgb(169, 219, 218);*/
  background-color: rgb(180, 235, 233);
}

.feature-card img {
  border: none;
}

.orbit-image {
  border: 2px solid #fff;
}

.orbit-container {
  box-shadow: 20px 20px 50px -24px rgba(0,0,0,0.8);
}

.orbit-container {
  max-width: 50rem;
  margin: 0 auto;
}

.orbit-previous,
.orbit-next {
  background-color: rgb(180, 235, 233);
  transition: all .2s ease-in-out;
}

.orbit-previous:hover,
.orbit-next:hover,
.orbit-previous:focus,
.orbit-next:focus {
  background-color: rgb(224, 189, 131);
}

/* WEDDINGS PAGE STYLES */

#weddings .secondary,
#weddings .quaternary,
#weddings .quinary {
  background-color: rgb(255, 217, 196);
}

#curveUpColor {
  background-color: transparent;
  fill: rgb(255, 217, 196);
  stroke: rgb(255, 217, 196);
  height: 4.5vw;
  vertical-align: bottom;
}

#curveUpDownColor {
  background-color: transparent;
  fill: rgb(255, 217, 196);
  stroke: rgb(255, 217, 196);
  height: 4.5vw;
  vertical-align: bottom;
}

/* Overwrite default tabs and accordion styles */

.tabs,
.tabs-content {
  background: transparent;
  border: none;
  margin: auto;
}

.tabs-panel {
  background: rgb(255, 255, 255);
}

.tabs-title > a {
  display: flex;
  padding: 0;
}

.tabs-title > a:hover,
.tabs-title > a:focus,
.tabs-title > a:active,
.tabs-title > a[aria-selected='true'] {
  background: transparent;
}

.accordion,
.accordion-content {
  background: transparent;
  border: none;
  margin: auto;
}

#photographer-quote-tabs .accordion-content {
  background: rgb(255, 255, 255);
  margin-bottom: 1rem;
}

.accordion-content:last-child {
  border-bottom: none }

.accordion-title:hover,
.accordion-title:focus,
.accordion-title:active,
.accordion-title[aria-selected='true'] {
  background: transparent;
  border: none;
}

[data-whatinput='mouse'] .accordion-title {
  outline: 0;
}

/* tabs animation */

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }

  to {
    opacity: 1; }
}

@keyframes fadeIn {
  from {
    opacity: 0; }

  to {
    opacity: 1; }
}

.tabs-content .tabs-panel {
  opacity: 0;
}

.tabs-content .tabs-panel.is-active {
  -webkit-animation: fadeIn 2s;
  animation: fadeIn 2s;
  opacity: 1;
}

/* PROCOURSES PAGE STYLES */

.feature-quote,
.citation {
  max-width: 64rem;
  margin: 0 auto;
}

#procourses .feature-quote blockquote p {
  color: rgb(99, 102, 106);
  font-size: 1.6rem;
}

/* MASTERCLASSES PAGE STYLES */



/* TEAM PAGE STYLES */

.insta-images {
  text-align: center;
}

.insta-images ul {
  list-style: none;
  display: inline-block;
}

.insta-images li {
  display: inline-block;
  padding: 1rem;
}

.insta-images img {
  max-width: 150px;
  max-height: 150px;
}

.team-social-links a {
  width: 25px;
  height: 25px;
  margin: 5px;
  margin-right: 0px;
}

.team-social-links .facebook {
  background: url('/img/hardcoded/facebook-icon.png') no-repeat;
  background-size: 25px;
}

.team-social-links .instagram {
  background: url('/img/hardcoded/instagram-icon.png') no-repeat;
  background-size: 25px;
}

.team-social-links a,
.team-social-links a:hover,
.team-social-links a:focus {
  border-bottom: none;
}



/* GALLERY STYLES */

.image-gallery {
  list-style: none;
}

.lightbox img {
  border: 5px solid #fff;
}

.lightbox img:hover,
.lightbox img:focus {
  box-shadow: 10px 10px 40px -24px rgba(0,0,0,0.8);
  color: rgb(54, 52, 56);
}

.fancybox-thumbs__list a::before {
  border-color: rgb(101, 178, 176);
}

.fancybox-progress {
  background: rgb(101, 178, 176);
}

#gallery-tabs li {
  padding: 0.5rem 0.8rem;
}

#gallery-tabs .is-active a {
  border-bottom: 2px solid rgb(101, 178, 176);
}

#gallery-tabs a {
  color: rgb(101, 178, 176);
}


/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap; /* 1 */
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
/* Small only */
@media screen and (max-width: 39.9375em) {

  #header-logo {
    height: 3rem;
  }

  .header-card h1 {
    font-size: 0.8rem;
    line-height: 0.9rem;
  }

  #weddings .hero img {
    object-position: 50% 0%;
  }

  /* TAGLINES STYLES */

  #about .primary-tagline {
    font-size: 2.6rem;
    line-height: 2.8rem;
    letter-spacing: 0.3rem;
  }

  #weddings .tagline-wrapper {
    width: 100%;
    position: absolute;
    left: 0rem;
    top: inherit;
    bottom: 4rem;
  }

  #weddings .primary-tagline {
    font-size: 2.4rem;
    line-height: 2.8rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.3rem;
    color: rgb(54, 52, 56);
  }

  #weddings .secondary-tagline {
    font-size: 1rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.4rem;
    color: rgb(54, 52, 56);
  }

  #procourses .primary-tagline {
    width: 100%;
    font-size: 2rem;
    line-height: 2.2rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.3rem;
    color: rgb(255, 255, 255);
  }

  #procourses .secondary-tagline {
    width: 100%;
    font-size: 1.2rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.3rem;
    color: rgb(255, 255, 255);
  }

  #masterclasses .tagline-wrapper {
    width: 100%;
    position: absolute;
    left: 0px;
    bottom: 4rem;
  }

  #masterclasses .primary-tagline {
    font-size: 3rem;
    line-height: 3.2rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.4rem;
    color: rgb(54, 52, 56);
  }

  #masterclasses .secondary-tagline {
    font-size: 1.8rem;
    text-align: center;
    padding-left: 0rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.3rem;
    color: rgb(54, 52, 56);
  }

  }

  @media screen (min-width: 23em) and (max-width: 34em) {

    #about .primary-tagline {
      width: 23rem;
      font-size: 1.8rem;
      line-height: 2rem;
      letter-spacing: 0.2rem;
    }

  }

  @media screen (max-width: 22.9375em)  {

    #about .primary-tagline {
      width: 100%;
      font-size: 1.6rem;
      line-height: 1.8rem;
      letter-spacing: 0.1rem;
    }

  }

}

/* Medium and up */
@media screen and (min-width: 40em) {

  .no-js .top-bar {
    display: block;
  }

  .no-js .title-bar-title {
    display: none;
  }

}

/* Medium only */
@media screen and (min-width: 40em) and (max-width: 63.9375em) {

  #header-logo {
    height: 4rem;
  }

  .header-card h1 {
    font-size: 1.2rem;
    line-height: 1.3rem;
  }

  /* TAGLINES STYLES */

  #about .primary-tagline {
    width: 57rem;
    font-size: 3.6rem;
    line-height: 3.8rem;
    letter-spacing: 0.5rem;
  }

  #weddings .tagline-wrapper {
    width: 44vw;
    position: absolute;
    right: 0rem;
    top: 4rem;
  }

  #weddings .primary-tagline {
    font-size: 2.4rem;
    line-height: 2.8rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.3rem;
    color: rgb(54, 52, 56);
  }

  #weddings .secondary-tagline {
    font-size: 1.3rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.4rem;
    color: rgb(54, 52, 56);
  }

  #procourses .primary-tagline {
    width: 100%;
    font-size: 3.4rem;
    line-height: 3.6rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.3rem;
    color: rgb(255, 255, 255);
  }

  #procourses .secondary-tagline {
    width: 100%;
    font-size: 1.9rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.4rem;
    color: rgb(255, 255, 255);
  }

  #masterclasses .tagline-wrapper {
    left: 2rem;
  }

  #masterclasses .primary-tagline {
    font-size: 3.4rem;
    line-height: 3.6rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5rem;
    color: rgb(54, 52, 56);
  }

  #masterclasses .secondary-tagline {
    font-size: 2rem;
    text-align: center;
    padding-left: 20rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.5rem;
    color: rgb(54, 52, 56);
  }

  @media screen and (max-width: 57em) {

    #about .primary-tagline {
      width: 40rem;
      font-size: 3rem;
      line-height: 3.2rem;
      letter-spacing: 0.4rem;
    }

  }

  @media screen and (max-width: 58em) {

    #weddings .hero img {
      object-position: 50% 0%;
    }

    #weddings .tagline-wrapper {
      width: 100%;
      position: absolute;
      left: 0rem;
      top: inherit;
      bottom: 4rem;
    }

    #weddings .primary-tagline {
      font-size: 2.4rem;
      line-height: 2.8rem;
      text-align: center;
      font-weight: 600;
      letter-spacing: 0.3rem;
      color: rgb(54, 52, 56);
    }

    #weddings .secondary-tagline {
      font-size: 1.3rem;
      text-align: center;
      text-transform: uppercase;
      font-weight: 400;
      letter-spacing: 0.4rem;
      color: rgb(54, 52, 56);
    }

  }

  @media screen and  (max-width: 50em) {

    #procourses .primary-tagline {
      width: 100%;
      font-size: 2.6rem;
      line-height: 2.9rem;
      text-align: center;
      font-weight: 600;
      letter-spacing: 0.3rem;
      color: rgb(255, 255, 255);
    }

    #procourses .secondary-tagline {
      width: 100%;
      font-size: 1.6rem;
      text-align: center;
      text-transform: uppercase;
      font-weight: 400;
      letter-spacing: 0.3rem;
      color: rgb(255, 255, 255);
    }

    @media screen and  (max-width: 52em) {

      #masterclasses .tagline-wrapper {
        width: 100%;
        position: absolute;
        left: 0px;
        bottom: 4rem;
      }

      #masterclasses .primary-tagline {
        font-size: 3.4rem;
        line-height: 3.6rem;
        text-align: center;
        font-weight: 600;
        letter-spacing: 0.5rem;
        color: rgb(54, 52, 56);
      }

      #masterclasses .secondary-tagline {
        font-size: 2rem;
        text-align: center;
        padding-left: 0rem;
        text-transform: uppercase;
        font-weight: 400;
        letter-spacing: 0.5rem;
        color: rgb(54, 52, 56);
      }

    }

  }

}

/* Medium and down */
@media screen and (max-width: 63.9375em) {

  #photographer-quote-tabs .accordion-content {
    position: relative;
  }

  #photographer-quote-tabs .accordion-content::before {
    content: '';
    width: 15px;
    height: 15px;
    border: 15px solid transparent;
    transition: all 0.7s ease-in;
    transform: translateX(150%);
    position: absolute;
    top: -30px;
  }

  #photographer-quote-tabs li.is-active .accordion-content::before {
    border-bottom-color: rgb(255, 255, 255);
  }

}

/* Large and up */
@media screen and (min-width: 64em) {

  #masterclasses .secondary-tagline {
    font-size: 2rem;
    text-align: center;
    padding-left: 20rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.5rem;
    color: rgb(54, 52, 56);
  }

  .title {
    font-size: 2.5rem;
    line-height: 2.7rem;
  }

  #photographer-quote-tabs li::after {
    content: '';
    width: 15px;
    height: 15px;
    border: 15px solid transparent;
    transition: all 0.7s ease-in;
    transform: translateX(150%);
  }

  #photographer-quote-tabs li.is-active::after {
    border-bottom-color: rgb(255, 255, 255);
  }

}

/* Large only */
@media screen and (min-width: 64em) and (max-width: 74.9375em) {

  #header-logo {
    height: 4rem;
  }

  .header-card h1 {
    font-size: 1.2rem;
    line-height: 1.3rem;
  }

  #about .primary-tagline {
    width: 60rem;
    font-size: 4rem;
    line-height: 4.3rem;
    letter-spacing: 0.5rem;
  }

  #weddings .tagline-wrapper {
    width: 44vw;
    position: absolute;
    right: 0rem;
    top: 6rem;
  }

  #weddings .primary-tagline {
    font-size: 3.2rem;
    line-height: 3.6rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5rem;
    color: rgb(54, 52, 56);
  }

  #weddings .secondary-tagline {
    font-size: 1.5rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.4rem;
    color: rgb(54, 52, 56);
  }

  #procourses .primary-tagline {
    width: 60rem;
    font-size: 3.4rem;
    line-height: 3.6rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.3rem;
    color: rgb(255, 255, 255);
  }

  #procourses .secondary-tagline {
    font-size: 1.9rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.4rem;
    color: rgb(255, 255, 255);
  }



  #masterclasses .primary-tagline {
    font-size: 3.4rem;
    line-height: 3.6rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5rem;
    color: rgb(54, 52, 56);
  }

  #masterclasses .secondary-tagline {
    font-size: 2rem;
    text-align: center;
    padding-left: 20rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.5rem;
    color: rgb(54, 52, 56);
  }


  @media screen and (max-width: 70em) {

    #weddings .tagline-wrapper {
      width: 44vw;
      position: absolute;
      right: 0rem;
      top: 5rem;
    }

    #weddings .primary-tagline {
      font-size: 2.6rem;
      line-height: 3rem;
      text-align: center;
      font-weight: 600;
      letter-spacing: 0.4rem;
      color: rgb(54, 52, 56);
    }

    #weddings .secondary-tagline {
      font-size: 1.5rem;
      text-align: center;
      text-transform: uppercase;
      font-weight: 400;
      letter-spacing: 0.4rem;
      color: rgb(54, 52, 56);
    }

}

}

/* Extra Large only */
@media screen and (min-width: 75em) {

  #about .primary-tagline {
    font-size: 3.8rem;
    line-height: 4.6rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5rem;
    color: rgb(255, 255, 255);
  }

  #weddings .tagline-wrapper {
    width: 45vw;
    position: absolute;
    right: 0px;
    top: 100px;
  }

  #weddings .tagline-wrapper {
    width: 44vw;
    position: absolute;
    right: 0rem;
    top: 6rem;
  }

  #weddings .primary-tagline {
    font-size: 4rem;
    line-height: 4.6rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5rem;
    color: rgb(54, 52, 56);
  }

  #weddings .secondary-tagline {
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.5rem;
    color: rgb(54, 52, 56);
  }

  #procourses .tagline-wrapper {
    width: 100%;
    position: absolute;
    left: 0px;
    bottom: 4rem;
  }

  #procourses .primary-tagline {
    font-size: 3.4rem;
    line-height: 3.6rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.3rem;
    color: rgb(255, 255, 255);
  }

  #procourses .secondary-tagline {
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.5rem;
    color: rgb(255, 255, 255);
  }

  #masterclasses .tagline-wrapper {
    left: 2rem;
  }

  #masterclasses .primary-tagline {
    font-size: 3.4rem;
    line-height: 3.6rem;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.5rem;
    color: rgb(54, 52, 56);
  }

  #masterclasses .secondary-tagline {
    font-size: 2rem;
    text-align: center;
    padding-left: 20rem;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.5rem;
    color: rgb(54, 52, 56);
  }

  @media screen and (max-width: 84.9375em) {

    #about .primary-tagline {
      width: 60rem;
      font-size: 4rem;
      line-height: 4.3rem;
      font-weight: 600;
      letter-spacing: 0.5rem;
    }

  }

  @media screen and (max-width: 87em) {

    #weddings .tagline-wrapper {
      width: 44vw;
      position: absolute;
      right: 0rem;
      top: 6rem;
    }

    #weddings .primary-tagline {
      font-size: 3.2rem;
      line-height: 3.6rem;
      text-align: center;
      font-weight: 600;
      letter-spacing: 0.5rem;
      color: rgb(54, 52, 56);
    }

    #weddings .secondary-tagline {
      font-size: 1.5rem;
      text-align: center;
      text-transform: uppercase;
      font-weight: 400;
      letter-spacing: 0.4rem;
      color: rgb(54, 52, 56);
    }

  }

  @media screen and (max-width: 92em) {

    #procourses .primary-tagline {
      width: 60rem;
      font-size: 3.4rem;
      line-height: 3.6rem;
      text-align: center;
      font-weight: 600;
      letter-spacing: 0.3rem;
      color: rgb(255, 255, 255);
    }

    #procourses .secondary-tagline {
      font-size: 1.9rem;
      text-align: center;
      text-transform: uppercase;
      font-weight: 400;
      letter-spacing: 0.4rem;
      color: rgb(255, 255, 255);
    }

  }

}

@media screen and (orientation: portrait) {



}

@media print,
       (-webkit-min-device-pixel-ratio: 1.25),
       (min-resolution: 1.25dppx),
       (min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

@media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster */
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
