/*
Theme Name: Latimer Theme
Theme URI: https://latimergroup.org/
Author: Ben Lattimore
Author URI: http://benlattimore.com
Description: The bespoke theme for Latimer
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: latimer_theme
*/
/*--------------------------------------------------------------
# SCSS Variables
--------------------------------------------------------------*/
/* Colors ---- */
/* Fonts --- */
/* Transitions --- */
/*--------------------------------------------------------------
# Mixins
--------------------------------------------------------------*/
/* Vertical Align ---- */
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  outline: 0;
}

html,
body {
  box-sizing: border-box;
  position: relative;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

hr {
  background-color: #d8d8d8;
  border: 0;
  height: 1px;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
  max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
  display: none;
}

.single .byline,
.group-blog .byline {
  display: inline;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure images, embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
}

/*--------------------------------------------------------------
# General Containers
--------------------------------------------------------------*/
.container {
  width: 90%;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .container {
    width: 880px;
  }
}

/*--------------------------------------------------------------
## Table Containers
--------------------------------------------------------------*/
.table-container {
  height: 100%;
  width: 100%;
  display: table;
}

.table-cell {
  height: 100%;
  width: 100%;
  display: table-cell;
  vertical-align: middle;
}

/*--------------------------------------------------------------
## Embed Containers for Video
--------------------------------------------------------------*/
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
@font-face {
  font-family: "Avenir Next Bold";
  src: url("fonts/AvenirNextBold.eot");
  /* IE9 Compat Modes */
  src: url("fonts/AvenirNextBold?#iefix") format("embedded-opentype"), url("fonts/AvenirNextBold.woff") format("woff"), url("fonts/AvenirNextBold.ttf") format("truetype"), url("fonts/AvenirNextBold.svg#AvenirNextBold") format("svg");
  /* Legacy iOS */
  font-weight: bold;
  font-style: normal;
}
html {
  font-size: 12px;
}

body,
button,
input,
select,
optgroup,
textarea {
  color: #808291;
  font-family: "Poppins", "Helvetica", "Helvetica Neue", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

body p {
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-family: "Avenir Next Bold", sans-serif;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
  font-style: normal;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 2em;
  line-height: 1;
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: inherit;
  text-decoration: underline;
  transition: color 0.4s ease-in-out;
}

a:hover,
a:focus,
a:active {
  color: #e530b1;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type=button],
input[type=reset],
input[type=submit] {
  width: 190px;
  height: 45px;
  line-height: 45px;
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  border-radius: 50px;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: "Avenir Next Bold", sans-serif;
  transition: background 0.4s ease-in-out;
  position: relative;
}

button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover,
button:focus,
input[type=button]:focus,
input[type=reset]:focus,
input[type=submit]:focus,
button:active,
input[type=button]:active,
input[type=reset]:active,
input[type=submit]:active {
  background: black;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}

select {
  border: 1px solid #ccc;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=range]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus {
  color: #111;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
## Navigation Toggle for Mobile
--------------------------------------------------------------*/
#nav-toggle {
  top: 25px;
  right: 20px;
  position: absolute;
  height: 1rem;
  width: 2rem;
  background: 0;
  border: 0;
  cursor: pointer;
  z-index: 3000;
  padding-left: 0;
  padding-right: 0;
  transition: all 0.4s ease;
}

#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
  height: 2px;
  width: 2rem;
  background: #fff;
  position: absolute;
  display: block;
  content: "";
}

#nav-toggle span:before {
  top: -0.65rem;
}

#nav-toggle span:after {
  bottom: -0.725rem;
}

#nav-toggle span, #nav-toggle span:before, #nav-toggle span:after {
  transition: all 0.4s ease-in-out;
  display: block;
}

#nav-toggle.active span {
  background-color: transparent !important;
}

#nav-toggle.active span:before, #nav-toggle.active span:after {
  top: 0;
}

#nav-toggle.active span:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-toggle.active span:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media (min-width: 768px) {
  #nav-toggle {
    display: none;
  }
}
/* Navigation Section --- */
.navigation-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
}
.navigation-section img {
  width: 160px;
  height: auto;
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
}
@media (min-width: 1024px) {
  .navigation-section img {
    left: 5%;
  }
}
.navigation-section ul {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: right;
  display: none;
}
@media (min-width: 768px) {
  .navigation-section ul {
    display: block;
    margin-top: 24px;
  }
}
@media (max-width: 768px) {
  .navigation-section ul {
    background: #d72da9;
    background: -moz-linear-gradient(top, #d72da9 0%, #0d637f 100%);
    background: -webkit-linear-gradient(top, #d72da9 0%, #0d637f 100%);
    background: linear-gradient(to bottom, #d72da9 0%, #0d637f 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#d72da9", endColorstr="#0d637f",GradientType=0 );
    height: 100vh;
    padding-top: 80px;
    position: fixed;
    top: 0px;
    left: 0px;
    text-align: center;
    width: 100%;
  }
}
@media (min-width: 1024px) {
  .navigation-section ul {
    text-align: center;
  }
}
.navigation-section ul li {
  color: #fff;
  line-height: 1;
  font-size: 0.85rem;
  text-transform: uppercase;
  display: inline-block;
  margin: 0 20px;
}
@media (max-width: 768px) {
  .navigation-section ul li {
    color: #fff;
    line-height: 1;
    font-size: 1.5rem;
    text-transform: uppercase;
    display: block;
    margin: 20px;
  }
}
@media (min-width: 1200px) {
  .navigation-section ul li:after {
    content: "";
    display: block;
    height: 4px;
    width: 0;
    background: transparent;
    transition: width 0.4s ease-in-out, background-color 0.4s ease-in-out;
    margin: 6px auto;
  }
  .navigation-section ul li.current_page_item:after, .navigation-section ul li:hover:after {
    width: 100%;
    background: #fff;
    opacity: 1;
  }
}
.navigation-section ul li a {
  text-decoration: none;
}
.navigation-section ul li a:hover {
  color: inherit;
}

/* Footer ----- */
.footer-container {
  position: relative;
  overflow: hidden;
}
.footer-container .footer-overlay {
  position: absolute;
  width: 100%;
  height: 500px;
  left: 0;
  bottom: -300px;
  z-index: 1000;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #181b31 300%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, #181b31 300%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #181b31 300%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00000000", endColorstr="#181b31",GradientType=0 );
  /* IE6-9 */
}
.footer-container p.legal-info {
  margin: 0 auto;
  text-align: center;
  line-height: 2;
  padding: 0px 0 25px;
}

.footer-content {
  border-top: 1px solid #b0aab3;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 0;
  position: relative;
  z-index: 1200;
}
.footer-content .footer-content-box {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin-bottom: 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-content .footer-content-box {
    -webkit-flex: 0 0 24%;
    -ms-flex: 0 0 24%;
    flex: 0 0 24%;
    text-align: left;
    margin-bottom: 0;
  }
}
.footer-content .footer-content-box img {
  width: 80px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer-content .footer-content-box img {
    margin-left: 20px;
    margin-top: 20px;
  }
}
.footer-content .footer-content-box h3 {
  font-family: "Poppins", "Helvetica", "Helvetica Neue", sans-serif;
  color: #181b31;
  font-size: 1.25rem;
  margin-top: 0;
}
.footer-content .footer-content-box p,
.footer-content .footer-content-box address {
  line-height: 2;
  margin-bottom: 0;
}
.footer-content .footer-content-box a {
  text-decoration: none;
}
.footer-content .footer-content-box a.facebook-link {
  margin-top: 5px;
  color: #3b5999;
  margin-right: 15px;
}
.footer-content .footer-content-box a.twitter-link {
  margin-top: 5px;
  color: #55acee;
  margin-right: 15px;
}
.footer-content .footer-content-box a.instagram-link {
  margin-top: 5px;
  color: #333;
  margin-right: 15px;
}
.footer-content .footer-content-box a.linkedin-link {
  margin-top: 5px;
  color: #0073b1;
}
.footer-content .footer-content-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-content .footer-content-box ul li {
  padding: 0;
  line-height: 2;
}

.showreel {
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 111111111111;
  top: 0;
  left: 0;
  display: none;
}
.showreel div {
  display: grid;
  height: 100%;
  width: 100%;
}
.showreel div .modal-content {
  font-size: 1.18rem;
  color: #333;
  line-height: 1.6;
  justify-content: center;
  align-self: center;
  max-width: 800px;
  padding: 0px;
  display: block;
  width: auto;
  height: auto;
  border-radius: 6px;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .showreel div .modal-content {
    padding: 0px;
  }
}
.showreel div .modal-content button {
  margin: 0px auto 0px;
  display: block;
}
@media (min-width: 768px) {
  .showreel div .modal-content button {
    margin: 40px auto 0px;
  }
}
.showreel div .modal-content strong {
  font-size: 1.38em;
  color: #181b31;
}

/* Headline Carousel ---- */
.headline-carousel {
  height: 600px;
  width: 100%;
  background: #e530b1;
  position: relative;
}
@media (min-width: 1200px) {
  .headline-carousel {
    height: 100vh;
  }
}
.headline-carousel div.slide {
  height: 600px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1200px) {
  .headline-carousel div.slide {
    height: 100vh;
  }
}
.headline-carousel div.slide div.headline-content {
  color: #fff;
  text-align: center;
  padding-right: 5%;
  padding-left: 5%;
}
@media (min-width: 768px) {
  .headline-carousel div.slide div.headline-content {
    padding: 0;
    width: 700px;
    margin: 0 auto;
  }
}
.headline-carousel div.slide div.headline-content a {
  text-decoration: none;
}
@media (max-width: 768px) {
  .headline-carousel div.slide div.headline-content p {
    font-size: 1.8rem !important;
  }
}
@media (min-width: 768px) {
  .headline-carousel div.slide div.headline-content p {
    font-size: 1.5rem;
  }
}
.headline-carousel div.slide div.headline-content p:nth-of-type(1) {
  text-transform: uppercase;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 1rem;
}
.headline-carousel div.slide div.headline-content p:nth-of-type(2) {
  font-size: 3rem;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  font-family: "Avenir Next Bold", sans-serif;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .headline-carousel div.slide div.headline-content p:nth-of-type(2) {
    font-size: 3.5rem;
  }
}
.headline-carousel div.slide div.headline-content p:nth-of-type(3) {
  margin-top: 1rem;
  max-width: 650px;
}
.headline-carousel div.slide div.headline-content div.button-group {
  margin-top: 4rem;
}
.headline-carousel div.slide div.headline-content div.button-group button {
  margin: 0 auto 2rem;
}
@media (min-width: 768px) {
  .headline-carousel div.slide div.headline-content div.button-group button {
    margin: 0 15px;
  }
}
.headline-carousel div.slide div.headline-content div.button-group button.launches-showreel {
  border: 1px solid #fff;
  background: 0;
  font-family: "Poppins", "Helvetica", "Helvetica Neue", sans-serif;
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}
.headline-carousel div.slide div.headline-content div.button-group button.launches-showreel svg {
  position: relative;
  height: 22px;
  width: auto;
  top: 6px;
  margin-right: 5px;
}
.headline-carousel div.slide div.headline-content div.button-group button.launches-showreel svg .cls-1,
.headline-carousel div.slide div.headline-content div.button-group button.launches-showreel svg .cls-2 {
  transition: all 0.4s ease-in-out;
}
.headline-carousel div.slide div.headline-content div.button-group button.launches-showreel span {
  position: relative;
  top: -1px;
}
.headline-carousel div.slide div.headline-content div.button-group button.launches-showreel:hover {
  background: #fff;
  color: #000;
}
.headline-carousel div.slide div.headline-content div.button-group button.launches-showreel:hover .cls-1 {
  stroke: #000;
}
.headline-carousel div.slide div.headline-content div.button-group button.launches-showreel:hover .cls-2 {
  fill: #000;
}

.slick-arrow {
  position: absolute;
  height: 25px;
  width: auto;
  top: calc(50% - 25px);
  left: 20px;
  display: none !important;
  z-index: 1000;
  transition: transform 0.4s ease-in-out;
  cursor: pointer;
}
.slick-arrow:hover {
  transform: translateX(-5px);
}
.slick-arrow:nth-of-type(2) {
  left: auto;
  right: 20px;
}
.slick-arrow:nth-of-type(2):hover {
  transform: translateX(5px);
}
@media (min-width: 1024px) {
  .slick-arrow {
    display: block !important;
    left: 40px;
  }
  .slick-arrow:nth-of-type(2) {
    left: auto;
    right: 40px;
  }
}

ul.slick-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin: 0;
  padding: 0;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  height: 10px;
}
ul.slick-dots li {
  list-style: none;
  margin-left: 4px;
  margin-right: 4px;
  display: inline-block;
  height: 10px;
}
ul.slick-dots li button {
  color: transparent;
  height: 10px;
  width: 10px;
  border: 0;
  border-radius: 100%;
  padding: 0;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  outline: none;
}
ul.slick-dots li.slick-active button, ul.slick-dots li:hover button {
  color: white;
  background: white;
}

/* Featured Work ------ */
.homepage-section {
  padding-top: 100px;
  padding-bottom: 20px;
}
.homepage-section h3.homepage-section-title {
  color: #000;
  text-transform: uppercase;
  font-size: 3rem;
  line-height: 1;
  margin-top: 0;
  letter-spacing: 0.035em;
}
@media (min-width: 375px) {
  .homepage-section h3.homepage-section-title {
    font-size: 4rem;
  }
}
.homepage-section.featured-work-copy h4 {
  color: #181b31;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: 2rem;
  display: none;
}
@media (min-width: 768px) {
  .homepage-section.featured-work-copy h4 {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .homepage-section.featured-work-copy > div {
    width: 50%;
    float: left;
    display: inline-block;
  }
}
@media (min-width: 1024px) {
  .homepage-section.featured-work-copy > div {
    width: 40%;
  }
  .homepage-section.featured-work-copy > div.right-work-section {
    width: 60%;
  }
}

/* Featured Work Carousel ---- */
.featured-work-carousel-container {
  max-width: 1360px;
  margin: 0 auto;
  margin-bottom: -100px;
  position: relative;
  z-index: 1000;
}
@media (min-width: 768px) {
  .featured-work-carousel-container {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (min-width: 1400px) {
  .featured-work-carousel-container .slick-list {
    overflow: visible;
  }
}

.featured-work-slide {
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 768px) {
  .featured-work-slide {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 0;
  }
}

.featured-work-slide-content {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 310px;
  width: 100%;
  position: relative;
  transition: transform 0.4s ease-in-out;
}
.featured-work-slide-content div.ind-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  transition: background-color 0.4s ease-in-out;
}
.featured-work-slide-content div.ind-overlay:hover {
  background-color: rgba(0, 0, 0, 0);
}
.featured-work-slide-content h4 {
  font-size: 2.25rem;
  color: #fff;
  position: absolute;
  line-height: 0.8333;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  left: 20px;
  bottom: 75px;
  margin: 0;
}
.featured-work-slide-content p {
  color: #27cff7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: absolute;
  left: 10px;
  bottom: 25px;
  margin: 0;
}
.featured-work-slide-content p span {
  letter-spacing: -0.2em;
  margin-right: 10px;
}
@media (min-width: 1200px) {
  .featured-work-slide-content:hover {
    transform: translateY(-20px);
  }
}

/* Services Section ----- */
.services-section {
  background: #d72da9;
  /* Old browsers */
  background: -moz-linear-gradient(top, #d72da9 0%, #0d637f 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #d72da9 0%, #0d637f 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #d72da9 0%, #0d637f 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#d72da9", endColorstr="#0d637f",GradientType=0 );
  /* IE6-9 */
  position: relative;
}
.services-section img.services-filigree {
  position: absolute;
  height: 105%;
  width: auto;
  left: 0;
  top: -100px;
  display: none;
}
.services-section img.services-filigree.services-filigree--right {
  left: auto;
  right: 0;
}
@media (min-width: 1400px) {
  .services-section img.services-filigree {
    display: block;
  }
}
.services-section .services-content {
  padding-top: 190px;
}
.services-section .services-content h3.homepage-section-title {
  color: #fff;
  margin-bottom: 60px;
}
.services-section .services-content .services-flex-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.services-section .services-content .services-flex-container .services-flex-box {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin-bottom: 60px;
}
.services-section .services-content .services-flex-container .services-flex-box > span {
  color: #27cff7;
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}
.services-section .services-content .services-flex-container .services-flex-box h3 {
  color: #27cff7;
  font-size: 2.5rem;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 15px;
  margin-bottom: 30px;
  max-width: 180px;
}
.services-section .services-content .services-flex-container .services-flex-box p {
  margin: 0;
  color: #fff;
}
@media (min-width: 1024px) {
  .services-section .services-content .services-flex-container .services-flex-box p {
    max-width: 250px;
  }
}
@media (min-width: 768px) {
  .services-section .services-content .services-flex-container .services-flex-box {
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
}
@media (min-width: 1024px) {
  .services-section .services-content .services-flex-container .services-flex-box {
    -webkit-flex: 0 0 32%;
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
  }
}

/* Ind Services Sections ---- */
.ind-services-sections {
  padding-bottom: 50px;
}
.ind-services-sections .ind-services-section {
  padding-top: 50px;
  padding-bottom: 0;
}
.ind-services-sections .ind-services-section h3.homepage-section-title {
  margin-bottom: 40px;
}

.ind-services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ind-services-container .ind-service {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .ind-services-container .ind-service {
    -webkit-flex: 0 0 32%;
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
    margin-bottom: 0;
  }
}
@media (min-width: 1024px) {
  .ind-services-container .ind-service {
    -webkit-flex: 0 0 24%;
    -ms-flex: 0 0 24%;
    flex: 0 0 24%;
    margin-bottom: 0;
  }
  .ind-services-container .ind-service.ind-service--double {
    -webkit-flex: 0 0 49%;
    -ms-flex: 0 0 49%;
    flex: 0 0 49%;
  }
}
.ind-services-container .ind-service .ind-service-title-box {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 275px;
  width: 100%;
  position: relative;
  margin-bottom: 10px;
  transition: transform 0.4s ease-in-out;
}
.ind-services-container .ind-service .ind-service-title-box div.ind-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  transition: background-color 0.4s ease-in-out;
}
.ind-services-container .ind-service .ind-service-title-box div.ind-overlay:hover {
  background-color: rgba(0, 0, 0, 0);
}
.ind-services-container .ind-service .ind-service-title-box h4 {
  font-size: 1.75rem;
  color: #fff;
  position: absolute;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  left: 20px;
  bottom: 20px;
  margin: 0;
  width: 70%;
}
@media (min-width: 1400px) {
  .ind-services-container .ind-service .ind-service-title-box:hover {
    transform: scale(1.05);
  }
}
.ind-services-container .ind-service p {
  margin-bottom: 0;
  color: #222;
  margin-top: 0;
}
@media (min-width: 768px) {
  .ind-services-container .ind-service p {
    margin-bottom: 20px;
  }
}

/* Quotes Carousel ------- */
.quotes-carousel-section {
  position: relative;
}
.quotes-carousel-section > a > button {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1000;
}
@media (min-width: 1200px) {
  .quotes-carousel-section > a > button {
    bottom: 6vh;
  }
}

.quotes-carousel {
  height: auto;
  width: 100%;
  background: #e530b1;
  position: relative;
}
@media (min-width: 1200px) {
  .quotes-carousel {
    height: auto;
  }
}
.quotes-carousel div.slide {
  height: auto;
  width: 100%;
  padding: 100px 0 275px;
  margin-bottom: -70px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1200px) {
  .quotes-carousel div.slide {
    height: auto;
  }
}
.quotes-carousel div.slide .quote-content {
  text-align: center;
}
@media (min-width: 940px) {
  .quotes-carousel div.slide .quote-content {
    width: 725px;
    margin: 0 auto;
  }
}
.quotes-carousel div.slide .quote-content blockquote p {
  font-family: "Avenir Next Bold", sans-serif;
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  margin: 0 auto 40px;
}
@media (min-width: 1024px) {
  .quotes-carousel div.slide .quote-content blockquote p {
    font-size: 1.75rem;
    line-height: 1.75;
  }
}
.quotes-carousel div.slide .quote-content blockquote footer img {
  display: block;
  width: 100px;
  height: auto;
  margin: 0 auto;
}
.quotes-carousel ul.slick-dots {
  bottom: 160px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .quotes-carousel ul.slick-dots {
    bottom: 150px;
  }
}

/* Blog List ----- */
.blog-list-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.blog-list-container .ind-blog-post {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .blog-list-container .ind-blog-post {
    -webkit-flex: 0 0 49%;
    -ms-flex: 0 0 49%;
    flex: 0 0 49%;
  }
}
@media (min-width: 1024px) {
  .blog-list-container .ind-blog-post {
    -webkit-flex: 0 0 32%;
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
  }
}
@media (min-width: 1400px) {
  .blog-list-container .ind-blog-post:hover .ind-blog-image {
    transform: scale(1.05);
  }
}
.blog-list-container .ind-blog-post .ind-blog-image {
  height: 300px;
  width: 100%;
  overflow: hidden;
  transition: transform 0.4s ease-in-out;
}
.blog-list-container .ind-blog-post .ind-blog-image img {
  height: auto;
  width: 100%;
  display: block;
}
.blog-list-container .ind-blog-post .ind-blog-meta {
  padding: 25px 0 30px;
}
.blog-list-container .ind-blog-post .ind-blog-meta ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-list-container .ind-blog-post .ind-blog-meta ul li {
  color: #27cff7;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.blog-list-container .ind-blog-post .ind-blog-meta a {
  text-decoration: none;
}
.blog-list-container .ind-blog-post .ind-blog-meta h4 {
  font-family: "Poppins", "Helvetica", "Helvetica Neue", sans-serif;
  text-transform: uppercase;
  color: #181b31;
  font-size: 1.15rem;
  margin: 0;
  margin-bottom: 6px;
}
.blog-list-container .ind-blog-post .ind-blog-meta p {
  font-size: 0.9rem;
  margin: 0;
}

/* Instafeed ----- */
#instafeed {
  display: grid;
  grid-template-columns: repeat(16, 1fr);
}
#instafeed .post {
  grid-column: span 4;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  padding-top: 100%;
}
@media (min-width: 768px) {
  #instafeed .post {
    grid-column: span 2;
  }
}

/* Clients Carousel ----- */
.clients-carousel-container {
  margin: 50px auto;
}

.clients-carousel div.slide img {
  width: 100px;
  height: auto;
  display: block;
  margin: 10px auto;
}

/* Headline Section ---- */
.headline-section {
  height: 480px;
  width: 100%;
  background-image: url("img/main-content-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .headline-section {
    height: 550px;
  }
}

.headline-content {
  text-align: center;
  color: #fff;
  padding-top: 80px;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .headline-content {
    padding-top: 100px;
  }
}
.headline-content.in-single-work {
  max-width: 900px;
}
.headline-content.in-single-work ul li {
  display: none;
}
.headline-content p {
  line-height: 1.4;
  letter-spacing: 0;
  margin-top: 0;
}
.headline-content p:first-of-type {
  text-transform: uppercase;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .headline-content p {
    font-size: 1.5rem;
  }
}
.headline-content h1 {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  margin: 10px auto;
}
@media (min-width: 768px) {
  .headline-content h1 {
    font-size: 4rem;
  }
}
.headline-content ul {
  margin: 50px auto 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.headline-content ul li {
  display: inline-block;
  font-family: "Avenir Next Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.3rem;
  margin: 0 3px;
}
.headline-content ul li:after {
  content: "/";
  margin-left: 6px;
}
.headline-content ul li:last-of-type:after {
  content: "";
  margin-left: 0;
}
.headline-content ul li a {
  text-decoration: none;
}

/* Work List ------ */
.work-list-container {
  position: relative;
  top: -300px;
  z-index: 1000;
}
@media (min-width: 768px) {
  .work-list-container {
    top: -300px;
  }
}

.filter-buttons {
  height: 350px;
  overflow: scroll;
}
@media (min-width: 768px) {
  .filter-buttons {
    height: auto;
    overflow: hidden;
  }
}

.filter-button-group button {
  border: 0;
  background: 0;
  text-align: center;
  -webkit-appearance: none;
  width: 100%;
  opacity: 0.5;
  text-transform: none;
  transition: all 0.4s ease-in-out;
}
.filter-button-group button:hover, .filter-button-group button:active, .filter-button-group button.active-filter {
  text-decoration: underline;
  opacity: 1;
}
@media (min-width: 768px) {
  .filter-button-group button {
    height: auto;
    overflow: hidden;
    display: inline-block;
    text-align: left;
    width: auto;
    font-size: 1.5rem;
    margin-right: 30px;
  }
}

.grid-isotope {
  margin-top: 30px;
  padding-bottom: 100px;
}
.grid-isotope .empty-state {
  padding-top: 100px;
  height: 220px;
  text-align: center;
  font-size: 18px;
  width: 100%;
  color: #FFF;
}
@media (min-width: 768px) {
  .grid-isotope .empty-state {
    padding-top: 0;
    height: 300px;
    font-size: 24px;
  }
}

.element-item {
  width: 100%;
}
@media (min-width: 768px) {
  .element-item {
    width: 46.5%;
    margin: 0 1.5% 30px;
  }
}
@media (min-width: 1024px) {
  .element-item {
    width: 30%;
  }
}

.element-item {
  height: 380px;
  margin-bottom: 20px;
}
@media (min-width: 1200px) {
  .element-item {
    height: 340px;
  }
}
.element-item .case-study-box {
  height: 380px;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  transition: transform 0.4s ease-in-out;
}
@media (min-width: 1200px) {
  .element-item .case-study-box {
    height: 340px;
  }
  .element-item .case-study-box:hover {
    transform: scale(1.1);
  }
}
.element-item .case-study-box .case-study-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
  color: #fff;
  text-align: center;
  padding: 10px;
}
.element-item .case-study-box .case-study-overlay span {
  position: absolute;
  font-family: "Avenir Next Bold", sans-serif;
  top: 20px;
  left: 0;
  right: 0;
  margin: auto;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}
.element-item .case-study-box .case-study-overlay span:last-of-type {
  top: auto;
  bottom: 20px;
}
.element-item .case-study-box .case-study-overlay h3 {
  font-size: 2rem;
  margin: 0;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}
.element-item .case-study-box .case-study-overlay p {
  max-width: 90%;
  margin: 20px auto 0;
}
@media (min-width: 1200px) {
  .element-item .case-study-box .case-study-overlay {
    opacity: 1;
    height: 340px;
  }
  .element-item .case-study-box .case-study-overlay:hover {
    opacity: 0;
  }
}

/* Single Work Section ----- */
.single .headline-content p {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.single-work-container {
  position: relative;
  top: -250px;
  margin-bottom: -100px;
}
@media (min-width: 768px) {
  .single-work-container {
    top: -240px;
  }
}
@media (min-width: 1024px) {
  .single-work-container {
    top: -240px;
    margin-bottom: -110px;
  }
}

.featured-content-section {
  width: 100%;
  height: 300px;
  background-color: #707281;
  position: relative;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 5px 50px 0px rgba(0, 0, 0, 0.75);
}
@media (min-width: 768px) {
  .featured-content-section {
    height: 440px;
  }
}

.left-right-section {
  margin-top: 55px;
}
@media (min-width: 768px) {
  .left-right-section.if_video_add_padding {
    margin-top: 100px;
  }
}
.left-right-section h3 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 2.5rem;
  color: #e530b1;
  position: relative;
  margin: 0;
}
.left-right-section h3 span {
  background: #fff;
  padding-right: 5px;
}
.left-right-section h3:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #e530b1;
  position: absolute;
  top: 20px;
  z-index: -1;
}
.left-right-section p {
  margin-top: 1.5rem;
}
.left-right-section div.left-work-section {
  width: 100% !important;
}
.left-right-section div.right-work-section {
  margin-top: 20px;
  width: 100% !important;
}
.left-right-section div.right-work-section h3 {
  color: #27cff7;
}
.left-right-section div.right-work-section h3:after {
  background: #27cff7;
}
@media (min-width: 768px) {
  .left-right-section > div {
    width: 46%;
    display: inline-block;
    float: left;
  }
  .left-right-section > div:first-of-type {
    margin-right: 8%;
  }
}

.three-box-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 50px auto 65px;
}
.three-box-section div.ind-three-box {
  height: 340px;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 30px;
}
.three-box-section div.ind-three-box:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .three-box-section div.ind-three-box {
    -webkit-flex: 0 0 31%;
    -ms-flex: 0 0 31%;
    flex: 0 0 31%;
    margin-bottom: 0;
  }
}

.full-width-section h3 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 2.5rem;
  color: #0e6683;
  position: relative;
  margin: 0;
}
.full-width-section h3 span {
  background: #fff;
  padding-right: 5px;
}
.full-width-section h3:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #0e6683;
  position: absolute;
  top: 20px;
  z-index: -1;
}
.full-width-section p {
  margin-top: 1.5rem;
}

.results-section {
  margin: 80px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.results-section div.ind-result {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 1px solid #b0aab3;
  text-align: center;
}
.results-section div.ind-result p {
  font-family: "Avenir Next Bold", sans-serif;
  text-transform: uppercase;
  margin: 0;
  color: #e530b1;
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.25;
  padding: 30px 0;
}
.results-section div.ind-result p span {
  color: #2f2f2f;
  font-size: 4rem;
  margin-bottom: 15px;
}
@media (min-width: 1024px) {
  .results-section div.ind-result p {
    font-size: 1rem;
    padding: 15px 50px;
  }
}
.results-section div.ind-result:first-of-type p {
  color: #e530b1;
}
.results-section div.ind-result:last-of-type {
  border: 0;
}
@media (min-width: 768px) {
  .results-section div.ind-result {
    -webkit-flex: 0 0 33.3333%;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
    border-bottom: 0;
    border-right: 1px solid #b0aab3;
  }
}

.view-more-section {
  position: relative;
}
.view-more-section a {
  text-decoration: none;
}
.view-more-section button {
  background: #e530b1;
  display: block;
  margin: 0 auto;
  border: 1px solid #e530b1;
  transition: all 0.4s ease-in-out;
}
.view-more-section button:hover, .view-more-section button:focus, .view-more-section button:active {
  color: #e530b1;
  background: #fff;
}
.view-more-section:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #b0aab3;
  position: absolute;
  top: 22px;
  z-index: -1;
}

.next-prev-section {
  position: relative;
}
.next-prev-section a {
  display: block;
  position: absolute;
  top: 40px;
  left: 0;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Avenir Next Bold", sans-serif;
  letter-spacing: 0.1em;
  transition: all 0.4s ease-in-out;
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.next-prev-section a:last-of-type {
  left: auto;
  right: 0;
}
@media (max-width: 767px) {
  .next-prev-section a:last-of-type {
    top: 80px;
  }
}
@media (min-width: 1200px) {
  .next-prev-section a:last-of-type:hover, .next-prev-section a:last-of-type:active, .next-prev-section a:last-of-type:focus {
    transform: translateX(10px);
  }
}
@media (min-width: 768px) {
  .next-prev-section a {
    top: 25px;
  }
}
@media (min-width: 1200px) {
  .next-prev-section a:hover, .next-prev-section a:active, .next-prev-section a:focus {
    transform: translateX(-10px);
  }
}

/* Single Event Content ---- */
.single-event-container div.full-width-section {
  margin-top: 55px;
}
.single-event-container div.full-width-section h3 {
  color: #e530b1;
}
.single-event-container div.full-width-section h3:after {
  background: #e530b1;
}
.single-event-container div.results-section {
  margin-top: 0;
}
@media (min-width: 1024px) {
  .single-event-container div.results-section .ind-result p {
    padding: 15px 0;
  }
}
@media (min-width: 1024px) {
  .single-event-container div.results-section .ind-result p span {
    font-size: 3.5em;
  }
}

/* Single Post Content ----- */
.single-post-container div.full-width-section {
  padding: 50px 0;
}
@media (min-width: 1024px) {
  .single-post-container div.full-width-section {
    padding: 50px 0;
  }
}

/* General Page SCSS ---- */
.single-page-headline-section {
  height: auto;
  padding-bottom: 70px;
}

.single-page-container {
  top: 0;
  margin: 50px auto;
}

/* Team Header Section ---- */
.team-headline-section {
  position: relative;
}
.team-headline-section .button {
  width: 190px;
  height: 45px;
  line-height: 45px;
  background: rgba(0, 0, 0, 0.5);
  border: 0;
  border-radius: 50px;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: "Avenir Next Bold", sans-serif;
  transition: background 0.4s ease-in-out;
  position: relative;
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  margin: auto;
  background: #27cff7;
  text-decoration: none;
  text-align: center;
}
.team-headline-section .button:hover {
  cursor: pointer;
}
.team-headline-section button {
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  margin: auto;
  background: #27cff7;
  cursor: auto;
}
.team-headline-section .headline-content p {
  text-transform: none;
}
.team-headline-section .headline-content h1 {
  margin-bottom: 40px;
}
.team-headline-section .headline-content .headline-long-content {
  margin: 30px auto;
}
.team-headline-section .headline-content .headline-long-content p {
  font-size: 0.9rem;
}
@media (min-width: 768px) {
  .team-headline-section .headline-content .headline-long-content p {
    font-size: 1.25rem;
  }
}

/* Team Content Section ------ */
.team-container {
  background-repeat: repeat;
}

.team-member-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .team-member-flex {
    margin: 100px auto;
  }
}
.team-member-flex div {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .team-member-flex div {
    -webkit-flex: 0 0 32%;
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
  }
}
@media (min-width: 1024px) {
  .team-member-flex div {
    -webkit-flex: 0 0 24%;
    -ms-flex: 0 0 24%;
    flex: 0 0 24%;
  }
}
.team-member-flex div div.team-member-image {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
}
.team-member-flex div div.team-member-image img {
  opacity: 1;
  transition: all 0.2s ease-in;
}
.team-member-flex div div.team-member-image img:hover {
  opacity: 0;
}
@media (min-width: 768px) {
  .team-member-flex div div.team-member-image {
    height: 220px;
  }
}
.team-member-flex div div.team-member-info p {
  font-size: 1.08rem;
  color: #848484;
  line-height: 1.1;
}
.team-member-flex div div.team-member-info p strong {
  font-size: 1.38em;
  color: #181b31;
}
.team-member-flex div div.team-member-bio-modal {
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 111111111111;
  top: 0;
  left: 0;
  display: none;
}
.team-member-flex div div.team-member-bio-modal div {
  display: grid;
  height: 100%;
  width: 100%;
}
.team-member-flex div div.team-member-bio-modal div .modal-content {
  font-size: 1.18rem;
  color: #333;
  line-height: 1.6;
  justify-content: center;
  align-self: center;
  max-width: 650px;
  background: #FFF;
  padding: 50px 30px;
  display: block;
  width: auto;
  height: auto;
  border-radius: 6px;
  text-align: center;
  margin: 0 auto;
  -webkit-box-shadow: -5px 7px 29px -1px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: -5px 7px 29px -1px rgba(0, 0, 0, 0.09);
  box-shadow: -5px 7px 29px -1px rgba(0, 0, 0, 0.09);
}
@media (min-width: 768px) {
  .team-member-flex div div.team-member-bio-modal div .modal-content {
    padding: 75px;
  }
}
.team-member-flex div div.team-member-bio-modal div .modal-content button {
  margin: 50px auto 0px;
  display: block;
}
.team-member-flex div div.team-member-bio-modal div .modal-content strong {
  font-size: 1.38em;
  color: #181b31;
}

.team-menu-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 60px auto;
}
.team-menu-section div {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
  margin: 30px auto;
}
.team-menu-section div button {
  display: block;
  margin: 0 auto;
}
.team-menu-section div a {
  text-decoration: none;
}
.team-menu-section div:nth-of-type(1) button {
  background: #e530b1;
}
.team-menu-section div:nth-of-type(2) button {
  background: #27cff7;
}
.team-menu-section div:nth-of-type(3) button {
  background: #0e6683;
}

/* About Template Header ---- */
.about-double-text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about-double-text div {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .about-double-text div {
    -webkit-flex: 0 0 47%;
    -ms-flex: 0 0 47%;
    flex: 0 0 47%;
  }
  .about-double-text div p {
    text-align: justify;
  }
}

.about-container {
  top: 0 !important;
  margin-bottom: 0 !important;
}
.about-container h2 {
  text-align: center;
  font-size: 3rem;
  color: #181b31;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 2em auto;
}
@media (min-width: 768px) {
  .about-container h2 {
    font-size: 5rem;
    margin-bottom: 1em;
  }
}

/* About Content Section ----- */
.events-section .ind-event {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
.events-section .ind-event div {
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}
@media (min-width: 1024px) {
  .events-section .ind-event div {
    -webkit-flex: 0 0 20%;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
  }
  .events-section .ind-event div:nth-child(2) {
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
  }
  .events-section .ind-event div:nth-child(1) {
    text-align: right;
  }
}
.events-section .ind-event div h5 {
  color: #e530b1;
  font-size: 18px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}
.events-section .ind-event div p {
  color: #2f2f2f;
  margin: 0;
  font-size: 13px;
}
.events-section .ind-event div p strong {
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
}

/* Services Header Section ----- */
@media (min-width: 1024px) {
  .services-headline-section {
    height: 475px;
  }
}
.services-headline-section .list-of-services {
  margin: 30px auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.services-headline-section .list-of-services > div {
  -webkit-flex: 0 0 49%;
  -ms-flex: 0 0 49%;
  flex: 0 0 49%;
  background-image: url("img/bg@2x.png");
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  height: 55px;
  position: relative;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .services-headline-section .list-of-services > div {
    -webkit-flex: 0 0 15%;
    -ms-flex: 0 0 15%;
    flex: 0 0 15%;
    margin-top: 70px;
    height: 220px;
    background-position: bottom;
  }
}
@media (min-width: 1280px) {
  .services-headline-section .list-of-services > div:hover {
    transform: translateY(-10px);
  }
}
.services-headline-section .list-of-services > div img {
  width: 60%;
  height: auto;
  display: none;
  left: 0;
  right: 0;
  margin: -10px auto 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (min-width: 1024px) {
  .services-headline-section .list-of-services > div img {
    display: block;
  }
}
.services-headline-section .list-of-services > div p {
  color: #fff;
  text-align: center;
  position: absolute;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: auto;
  text-transform: uppercase;
  font-family: "Avenir Next Bold", sans-serif;
  font-size: 17px;
}

.services-container .service-block-container {
  min-height: 1000px;
}
.services-container .service-block-container > div.ind-service-block {
  display: none;
}
.services-container .service-block-container > div.ind-service-block:first-of-type {
  display: block;
}
.services-container .content-area-large-text {
  text-align: center;
  margin: 30px auto;
  color: #2f2f2f;
}
.services-container .content-area-large-text p {
  font-size: 18px;
}
.services-container .content-area-long-text {
  text-align: center;
  margin: 30px auto;
  color: #2f2f2f;
}
.services-container .content-area-long-text p {
  font-size: 13px;
}
.services-container .grid-isotope {
  margin: 50px auto 0;
}

/* Contact Form Section
--------------------------- */
div.wpcf7 {
  margin: 50px auto;
}

.field-block {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}

.field-block label {
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: none;
}

.field-block input,
.field-block textarea,
.field-block select {
  width: 100%;
  background: #e530b1;
  height: 40px;
  border: 0;
  text-transform: uppercase;
  padding: 10px 15px;
  line-height: 1;
  font-size: 0.8em;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0 !important;
  color: #fff !important;
}

.field-block select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.field-block span.where-hear::after {
  content: " ";
  background-image: url("img/select-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  bottom: 2px;
  height: 16px;
  width: 20px;
  z-index: 9999;
}

.field-block option {
  border-radius: 0 !important;
}

.field-block textarea {
  height: 90px;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.666em;
}

.field-submit-block {
  height: 90px;
}

.field-submit-block p {
  font-size: 0.8em;
  color: rgba(0, 0, 0, 0.4);
  text-align: right;
}

.field-submit-block input[type=submit] {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 180px;
  background: #e530b1;
  color: #fff;
  height: 50px;
  text-align: center;
  font-size: 1.33em;
  font-weight: 500;
  transition: background 0.4s ease-in-out;
  left: 0;
  margin: 0 0 0 auto;
}

.field-submit-block input[type=submit]:hover {
  background: #181b31;
}

.field-submit-block span.ajax-loader {
  position: absolute;
  bottom: -50px;
}

.field-block input:focus,
.field-block textarea:focus,
.field-block select:focus {
  border-bottom: 2px solid #27cff7;
  outline: 0;
}

.field-block span.wpcf7-not-valid-tip {
  position: absolute;
  font-size: 0.75em;
  text-transform: uppercase;
  opacity: 0.7;
  letter-spacing: 2px;
  font-weight: 500;
}

div.wpcf7-validation-errors,
div.wpcf7-mail-sent-ok {
  background: #f7e700;
  color: #fff;
  text-align: center;
}

div.wpcf7-mail-sent-ok {
  background: #398f14;
}

.small-contact-form-text {
  font-size: 0.8em;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}

@media (min-width: 768px) {
  .field-block {
    width: 50%;
    display: inline-block;
    float: left;
    padding-right: 10px;
  }

  .field-block:nth-child(even) {
    padding-left: 10px;
    padding-right: 0;
  }
}
.address-map {
  position: relative;
  margin: 100px 0;
}

.address-map iframe {
  height: 400px;
  width: 100%;
}

.map-overlay {
  background: transparent;
  position: absolute;
  width: 100%;
  height: 400px;
  top: 0;
  cursor: pointer;
  z-index: 3333;
}

@media (min-width: 768px) {
  .address-map iframe,
.map-overlay {
    height: 460px;
  }
}

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