/********************************************************************
 * Theme Name: KMV Digital
 * Theme URI: http://wwww.kmvdigital.com
 * Description: A custom theme for KMV Digital
 * Author: Rugged Peak
 * Author URI: http://www.ruggedpeak.co
 * Version: 2019.04.16
 ********************************************************************/
/*  Reset | http://meyerweb.com/eric/tools/css/reset/
---------------------------------------------------------------------- */
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas,
caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption,
figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label,
legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span,
strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
  content: '';
  content: none;
}

.clear:after, .clear:before, .clearfix:after {
  content: "";
  display: block;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.clearfix:after {
  visibility: hidden;
  clear: both;
  height: 0;
}

.clear:after {
  clear: both;
}

.clear {
  zoom: 1;
}

:focus {
  outline: 0;
}

.hidden {
  display: none;
}

/*  Getting Organized // Base Structure & Styles
---------------------------------------------------------- */
body {
  background-size: 1250px;
  font-size: 18px;
  line-height: 24px;
  font-family: 'Avenir Next', arial, sans-serif;
  color: #212121;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-weight: 500;
}

p {
  padding: 0 0 20px 0;
}

a {
  text-decoration: none;
  color: #2cab49;
  transition: all 0.2s linear;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 30px 40px;
  position: relative;
  box-sizing: border-box;
}

.wrap:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

.wrap.divide:before {
  content: '';
  height: 1px;
  position: absolute;
  left: 40px;
  right: 40px;
  background: #212121;
  transition: background 0.2s linear;
}

.wrap.divide.bottom:before {
  bottom: 0;
}

.wrap.divide.top:before {
  top: 0;
}

/* Header
---------------------------------------------------------- */
header {
  z-index: 10;
}

header h3 {
  float: right;
}

header h3 a {
  display: block;
  width: 150px;
  height: 35px;
  text-indent: -99999em;
  position: relative;
  background: transparent url("assets/img/logo.svg") no-repeat center center;
  background-size: 100%;
}

header h3 a:hover {
  opacity: .75;
}

header nav {
  margin-top: 7px;
  font-size: 16px;
}

header nav ul li {
  display: inline-block;
  margin-right: 30px;
}

header nav ul li a {
  display: block;
  color: #212121;
  text-transform: lowercase;
  letter-spacing: -0.005em;
  padding: 0;
  display: block;
  position: relative;
  transition: color 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

header nav ul li a:after {
  content: '';
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(0, 0, 0, 0.8);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1), -webkit-transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

header nav ul li a:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

header nav ul li.active a {
  color: #212121;
}

header nav ul li.active a:after {
  background: rgba(0, 0, 0, 0.8);
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/* Dark Pages
---------------------------------------------------------- */
body.dark {
  color: #FFF;
}

body.dark header h3 a {
  background-image: url("assets/img/logo-white.svg");
}

body.dark header nav ul li a {
  color: #FFF;
}

body.dark header nav ul li a:after {
  background: rgba(255, 255, 255, 0.5);
}

body.dark header nav ul li a:hover {
  color: white;
}

body.dark .wrap.divide:before {
  background: #FFF;
}

body.dark #banner h1 {
  -webkit-text-fill-color: inherit;
  color: #FFF;
  background: none;
}

body.dark h4:after {
  background-image: url("assets/img/btn-arrow.png");
}

body.dark footer .social a svg path {
  fill: #FFF;
}

/* Banner
---------------------------------------------------------- */
#banner {
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

#banner h1 {
  display: inline-block;
  background: -webkit-linear-gradient(left, #2c2d2e, #3864aa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#banner h2 {
  font-weight: 500;
}

/* Section
---------------------------------------------------------- */
section {
  box-sizing: border-box;
}

.p70 {
  padding: 70px 0;
}

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

/* Headings
---------------------------------------------------------- */
h1 {
  font-size: 70px;
  line-height: 72px;
  font-weight: bold;
  letter-spacing: -.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -.005em;
  font-weight: bold;
  padding-bottom: 20px;
  padding-top: 5px;
  line-height: 34px;
}

h3, h5, h6 {
  font-weight: 600;
}

h4 {
  font-weight: 500;
}

/* Buttons
---------------------------------------------------------- */
.gform_button {
  background: url("assets/img/btn-arrow.png") no-repeat right 15px top 50%;
  background-size: 60px;
  color: #FFF;
  border: 1px solid #FFF;
  padding: 12px 90px 12px 23px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  -webkit-appearance: none;
  transition: linear 0.2s all;
}

.gform_button:hover {
  background-color: #2c2d2e;
}

/*
.btn {
	display: inline-block;
	background: transparent;
	color:$green;
	font-size:12px;
	border: 0;
	cursor: pointer;
	-webkit-appearance: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: linear 0.2s all;
	
	
	&:after {
		content: '';
		display: inline-block;
    width: 60px;
    height: 10px;
		background:url('assets/img/btn-arrow.png') no-repeat center center;
		background-size:100%;
		margin-left:8px;
	}
	&:hover {
		color:$blue;
	}
	
	&.white {
		background: #FFF;
		text-transform: none;
		color:$blue;
		font-size:20px;
		letter-spacing: 0;
		padding:12px 24px;
			
		&:after {
			display: none;
		}
		
		&:hover {
			color:$green;
		}
	}

}
*/
/* Panels
---------------------------------------------------------- */
.panel {
  display: block;
  color: inherit;
}

.panel .wrap {
  padding-bottom: 80px;
  padding-top: 50px;
}

.panel .subhead {
  color: #000;
  display: block;
}

.panel .subhead:hover h4:after {
  margin-right: -10px;
}

.panel h4 {
  text-transform: lowercase;
  margin-bottom: 50px;
  font-size: 16px;
}

.panel h4:after {
  content: '';
  display: inline-block;
  float: right;
  width: 50px;
  height: 24px;
  background: url("assets/img/btn-arrow-dark.png") no-repeat center center;
  background-size: 100%;
  margin-right: 8px;
  transition: margin 0.2s linear;
}

.panel h4.light:after {
  background: url("assets/img/btn-arrow.png") no-repeat center center;
  background-size: 100%;
}

.panel h4.noarrow:after {
  display: none;
}

.panel.about p span {
  display: inline-block;
  position: relative;
}

.panel.about p span strong {
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.panel.about p span:before {
  content: '';
  position: absolute;
  height: 2px;
  left: 0;
  right: 0;
  background: #3864aa;
  bottom: 9px;
  z-index: 0;
}

.panel.lg p, .panel.lg blockquote {
  font-size: 26px;
  line-height: 46px;
  font-weight: 600;
}

.panel.lg cite {
  font-size: 18px;
  display: block;
  margin-top: 20px;
  padding-bottom: 20px;
}

.panel.clients .wrap {
  padding-bottom: 20px;
}

.panel.contact .wrap {
  padding-bottom: 50px;
}

.panel.contact .wrap h4 {
  transition: all 0.2s linear;
  margin: 0;
}

.panel.contact .wrap h4:before {
  content: '';
  position: absolute;
  top: 1px;
  left: 20px;
  right: 20px;
  bottom: 0;
  transition: all 0.2s linear;
  z-index: -1;
}

.panel.dark {
  background: #1b1b1c;
  color: #FFF;
  position: relative;
}

.panel.dark:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.2s linear;
}

.panel.dark.method {
  background: #2cab49;
}

.panel.dark.method:hover:before {
  background: rgba(0, 0, 0, 0.075);
}

.panel.dark:hover:before {
  background: rgba(255, 255, 255, 0.075);
}

.panel:hover h4:after {
  margin-right: 0px;
}

/* Clients
---------------------------------------------------------- */
#clients {
  margin: 0 -30px 30px;
  background: #FFF;
  display: flex;
  flex-wrap: wrap;
}

#clients:before {
  position: absolute;
  content: '';
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
  display: block;
  z-index: 10;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s linear;
}

#clients.open-client:before {
  visibility: visible;
  opacity: 1;
}

#clients:after {
  visibility: hidden;
  display: block;
  content: "";
  clear: both;
  height: 0;
}

#clients .grid-sizer {
  width: 33.3333333%;
}

#clients.third .client[data-position="2"] {
  order: 3 !important;
}

#clients.third .client[data-position="3"] {
  order: 2 !important;
}

#clients .client {
  width: 33.3333333%;
  box-sizing: border-box;
  border-bottom: 1px solid #e1e1e1;
  position: relative;
  font-size: 19px;
  line-height: normal;
  color: inherit;
  display: block;
  background: #FFF;
  float: left;
  height: 465px;
  transition: transform 0.2s linear, box-shadow 0.2s linear;
  overflow: hidden;
}

#clients .client .container {
  max-height: 465px;
  max-width: 366px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 40px 30px 30px;
  box-sizing: border-box;
  transition: all 0.2s linear;
}

#clients .client:after {
  content: '';
  width: 1px;
  position: absolute;
  top: 30px;
  bottom: 30px;
  right: 0;
  background: #e1e1e1;
  transition: all 0.2s linear;
}

#clients .client:nth-child(3n+4):after, #clients .client:last-child:after {
  display: none;
}

#clients .client h2 {
  padding: 0 0 15px;
  font-size: 28px;
}

#clients .client h3 {
  font-size: 24px;
  padding-bottom: 15px;
  line-height: 27px;
  font-weight: 600;
}

#clients .client .tags {
  font-size: 15px;
  color: #94949f;
  overflow: hidden;
  margin-bottom: 20px;
}

#clients .client .tags li {
  display: inline-block;
  padding: 0 8px 0 0;
  margin: 0 8px 5px 0;
  border-right: 1px solid #e1e1e1;
}

#clients .client .tags li:last-child {
  margin-right: 0;
  border: 0;
}

#clients .client.expandable {
  cursor: pointer !important;
}

#clients .client.expandable:hover {
  transform: scale(1.025);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
  z-index: 15;
}

#clients .client.expandable:hover:after {
  background: transparent;
}

#clients .client.open {
  width: 66.66666666%;
  height: 900px;
  z-index: 10;
  color: #FFF;
}

#clients .client.open:hover {
  transform: none;
  box-shadow: none;
}

#clients .client.open .container {
  background: #1b1b1c;
  max-width: 100%;
  max-height: 900px;
}

#clients .client.open .expand {
  display: none;
}

#clients .client.open .expanded {
  opacity: 1;
  transition-delay: .25s;
}

#clients .client .expand {
  display: block;
  background: url("assets/img/plus.svg") no-repeat center center;
  background-size: 100%;
  height: 16px;
  width: 16px;
  text-indent: -99999em;
  position: absolute;
  bottom: 40px;
  right: 20px;
  transition: all 0.3s linear;
}

#clients .client:hover .expand {
  transform: rotate(135deg);
}

#clients .client .expanded {
  opacity: 0;
  overflow: hidden;
  transition: linear 0.3s all;
  transition-delay: 0;
}

#clients .client h5 {
  padding-bottom: 10px;
}

#clients .client .outcomes {
  border-bottom: 1px solid #2cab49;
  margin-bottom: 40px;
}

#clients .client .outcomes li {
  padding: 10px 0;
  border-top: 1px solid #2cab49;
  font-size: 16px;
}

/* About Page
---------------------------------------------------------- */
body.about-page {
  background: #2e3179;
}

#about h4 {
  margin: 0;
}

#about ol {
  margin: 0 auto;
  box-sizing: border-box;
}

#about ol li {
  overflow: hidden;
  padding: 60px 0;
  border-bottom: 1px solid #FFF;
}

#about ol li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

#about ol li strong {
  float: left;
  font-size: 120px;
  color: #2cab49;
  line-height: 115px;
}

#about ol li div {
  margin-left: 40%;
  font-size: 24px;
  line-height: 35px;
}

#about ol li div h3 {
  font-size: 35px;
  line-height: normal;
  letter-spacing: -.02em;
  padding-bottom: 20px;
}

#about ol li div p {
  padding: 0;
}

/* Method Page
----------------------------------------------------------------- */
.method-page {
  background: #26ad4a url("assets/img/method.jpg") no-repeat top center;
  background-size: 1245px;
  background: #26ad4a;
}

.method-page #banner {
  padding-bottom: 0;
}

.method-page #banner .wrap {
  padding-bottom: 80px;
}

.method-page #banner h1 {
  float: left;
  width: 50%;
  padding-right: 20px;
  box-sizing: border-box;
}

.method-page #banner p {
  margin-left: 50%;
  font-size: 28px;
  line-height: 42px;
  padding-top: 10px;
  padding-left: 20px;
}

/* Two Col
----------------------------------------------------------------- */
.divided-cols {
  display: flex;
  flex-wrap: wrap;
}

.divided-cols li {
  box-sizing: border-box;
  padding-right: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  margin: 30px 0;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}

.divided-cols li:after {
  content: '';
  background: rgba(255, 255, 255, 0.3);
  height: 1px;
  left: 0;
  right: 0;
  bottom: -30px;
  position: absolute;
}

.divided-cols.two-col li {
  width: 50%;
}

.divided-cols.two-col li:nth-child(2n) {
  padding-right: 0;
  padding-left: 30px;
  border: 0;
}

.divided-cols.two-col li:nth-child(2n) h3 span {
  left: 40px;
}

.divided-cols.two-col h3 {
  padding: 20px 0 10px 100px;
  font-size: 32px;
  color: #2e3179;
  font-weight: 600;
}

.divided-cols.two-col h3 span {
  position: absolute;
  left: 10px;
  font-size: 90px;
  top: 20px;
  line-height: 90px;
  font-weight: bold;
}

.divided-cols.two-col p {
  padding: 0 0 0 100px;
  max-width: 280px;
}

.divided-cols.three-col {
  margin: 0 -30px;
}

.divided-cols.three-col li {
  width: 33.333333%;
  padding: 30px;
}

.divided-cols.three-col li h5 {
  font-size: 26px;
  padding-bottom: 20px;
  font-weight: 600;
}

.divided-cols.three-col li:nth-child(3n+3) {
  border-right: 0;
}

.divided-cols.three-col li:nth-child(3n+3):after {
  right: 30px;
}

.divided-cols.three-col li:nth-child(3n+1):after {
  left: 30px;
}

.divided-cols .btm {
  margin-bottom: 0;
}

.divided-cols .btm:after {
  display: none;
}

/* Contact Page
----------------------------------------------------------------- */
.contact-page {
  background: #1b1b1c;
}

.contact-page h1 {
  float: left;
  color: #FFF;
  width: 50%;
  padding-right: 20px;
  box-sizing: border-box;
}

/* ------------- Contact Form  ------------ */
#contact {
  margin-left: 50%;
  box-sizing: border-box;
  color: #FFF;
  border-top: 1px solid #FFF;
  padding-top: 30px;
  margin-top: 10px;
}

#contact li.gfield {
  padding-bottom: 40px;
  border-bottom: 1px solid #313131;
  margin-bottom: 30px;
  padding-bottom: 30px;
}

#contact li.gfield#field_1_1 {
  padding-bottom: 10px;
}

#contact .gfield_checkbox {
  padding: 26px 0 0;
  font-size: 18px;
}

#contact .gfield_label {
  padding-bottom: 8px;
  font-size: 26px;
  display: block;
  line-height: 40px;
}

#contact input[type="text"],
#contact input[type="email"],
#contact textarea {
  border: 1px solid #b7b7b7;
  padding: 10px;
  box-sizing: border-box;
  width: 100%;
  font-size: 18px;
}

#contact textarea {
  height: 100px;
}

#contact .min-val-relation,
#contact .max-val-relation {
  display: none;
}

#contact .slider-display {
  margin: 0;
}

#contact #field_1_7 .ginput_container {
  width: calc(100% - 70px);
  padding: 10px 5px;
}

#contact .noUi-target {
  border: 0;
  background: #b7b7b7;
  box-shadow: none;
}

#contact .noUi-horizontal {
  height: 2px;
}

#contact .noUi-horizontal .noUi-handle {
  width: 25px;
  height: 25px;
  left: -12.5px;
  top: -11px;
  box-shadow: none;
  border-radius: 50px;
  background: #2cab49;
  border: 0;
}

#contact .noUi-horizontal .noUi-handle:before, #contact .noUi-horizontal .noUi-handle:after {
  display: none;
}

#contact .noUi-horizontal .noUi-connect {
  background: #2cab49;
}

#contact .noUi-horizontal .noUi-connect:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #2cab49;
  display: block;
  border-radius: 10px;
  margin-top: -4px;
}

#contact .gfield_checkbox li {
  overflow: hidden;
  padding-bottom: 10px;
}

#contact .gfield_checkbox li input {
  float: left;
  position: relative;
  top: 2px;
}

#contact .gfield_checkbox li label {
  margin-left: 25px;
  display: block;
}

#contact .sliderAmount {
  float: right;
  padding: 0;
  margin: 46px 0 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

#contact .gfield_radio {
  display: flex;
}

#contact .gfield_radio li {
  padding-right: 30px;
}

#contact .gfield_radio li label {
  padding-left: 5px;
}

.validation_error {
  color: #aa0000;
  line-height: normal;
  padding-bottom: 30px;
}

.gfield_error input[type="text"],
.gfield_error input[type="email"],
.gfield_error textarea {
  border: 2px solid #aa0000 !important;
}

.gfield_error .validation_message {
  color: #aa0000;
  padding-top: 5px;
}

/* Overlays
---------------------------------------------------------- */
#overlaybg {
  background: rgba(103, 103, 103, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1000;
  overflow: auto;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in;
}

/* Footer
---------------------------------------------------------- */
footer {
  font-size: 14px;
}

footer a {
  color: inherit;
}

footer .wrap {
  padding-top: 60px;
  padding-bottom: 40px;
}

footer h4 {
  font-size: 40px;
  line-height: 52px;
  margin-bottom: 20px;
}

footer .offices {
  overflow: hidden;
  float: left;
}

footer .offices p {
  float: left;
  padding-right: 50px;
  padding-bottom: 0;
}

footer .offices p:last-child {
  padding-left: 0;
}

footer .copyright {
  float: right;
  text-align: right;
  line-height: normal;
}

footer .copyright p {
  padding-bottom: 0;
}

footer .social {
  overflow: hidden;
  padding-bottom: 5px;
}

footer .social li {
  display: inline-block;
  margin-left: 10px;
}

footer .social li a {
  display: block;
  width: 16px;
}

footer .social li a svg path {
  fill: #212121;
}

footer .social li a.tw {
  position: relative;
  top: -2px;
}

footer .social li a:hover {
  opacity: .75;
}

img.gform_ajax_spinner {
  width: 40px;
  position: absolute;
  margin-top: 5px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  position: absolute;
  display: block;
  top: -73px;
  right: 0;
}

.slick-dots li {
  display: inline-block;
  margin-left: 10px;
}

.slick-dots li button {
  display: block;
  height: 10px;
  width: 10px;
  text-indent: -99999em;
  border: 1px solid #000;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  transition: all 0.2s linear;
}

.slick-dots li button:hover {
  background: #d1d1d1;
}

.slick-dots li.slick-active button {
  background: #3864aa;
}

/* Tablet and Mobile
---------------------------------------------------------- */
@media only screen and (max-width: 1024px) {
  .method-page #banner h1 {
    font-size: 60px;
    line-height: 62px;
  }
  #clients {
    margin: 0 -10px 30px;
  }
}

@media only screen and (max-width: 975px) {
  #banner h1, .contact-page h1, .method-page #banner h1 {
    font-size: 48px;
    line-height: 52px;
  }
  #banner h2, .contact-page h2, .method-page #banner h2 {
    font-size: 28px;
  }
  .panel.lg p, .panel.lg blockquote {
    font-size: 24px;
    line-height: 40px;
  }
  #clients .client {
    font-size: 16px;
  }
  #clients .client h2 {
    font-size: 24px;
    line-height: 28px;
  }
  #clients .client h3 {
    font-size: 20px;
    line-height: 22px;
  }
}

@media only screen and (max-width: 830px) {
  #clients .client, #clients .grid-sizer {
    width: 50%;
  }
  #clients .client {
    height: 425px;
    border-right: 1px solid #e1e1e1 !important;
  }
  #clients .client.open {
    width: 100%;
    height: 850px;
  }
  #clients .client:nth-child(2n+3) {
    border-right: 0 !important;
  }
}

@media only screen and (max-width: 768px) {
  .p70 {
    padding: 30px 0;
  }
  .contact-page h1, .method-page #banner h1 {
    width: 100%;
    float: none;
    padding-bottom: 50px;
  }
  .method-page #banner p {
    margin: 0;
    padding: 0;
    font-size: 24px;
    line-height: 40px;
  }
  #contact {
    margin-left: 0;
  }
  #clients .client {
    width: 50%;
  }
  #clients .client:nth-child(3n+1):after {
    left: 0;
  }
  #clients .client:nth-child(3n+3) {
    border-right: 1px solid #e1e1e1;
  }
  #clients .client:nth-child(3n+3):after {
    right: 0;
  }
  #about ol li div {
    margin-left: 25%;
  }
  .divided-cols.three-col li {
    width: 50%;
    border-right: 1px solid rgba(255, 255, 255, 0.3) !important;
  }
  .divided-cols.three-col li:after {
    left: 0 !important;
    right: 0 !important;
    display: block !important;
  }
  .divided-cols.three-col li.btm {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 675px) {
  body {
    padding-top: 70px;
  }
  .wrap {
    padding: 20px;
  }
  .wrap.divide:before {
    left: 20px;
    right: 20px;
  }
  .mobile {
    display: block;
  }
  .desktop {
    display: none;
  }
  header {
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 1000;
    transition: all 0.2s linear;
    padding: 0;
    background: #FFF;
  }
  header .wrap {
    padding: 15px 20px;
  }
  header h3 a {
    width: 140px;
    height: 40px;
  }
  .about-page header {
    background: #2e3179;
  }
  .method-page header {
    background: #2cab49;
  }
  .contact-page header {
    background: #1b1b1c;
  }
  header nav {
    background-color: #1b1b1c;
    position: fixed;
    top: 70px;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    z-index: 900;
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease-out;
    -webkit-overflow-scrolling: touch;
  }
  header nav ul {
    position: absolute;
    top: calc(50% - 70px);
    transform: translateY(-50%);
    width: 100%;
  }
  header nav ul li {
    display: block;
    float: none;
    text-align: center;
  }
  header nav ul li a {
    text-align: center;
    padding: 10px 0;
    font-size: 28px;
    line-height: normal;
    display: block;
    color: rgba(255, 255, 255, 0.4) !important;
  }
  header nav ul li a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
  }
  header nav ul li a:after {
    display: none;
  }
  header nav ul li.active a {
    color: #FFF !important;
  }
  .dark #menu span, .dark #menu span:after, .dark #menu span:before {
    background: rgba(255, 255, 255, 0.5);
  }
  #menu {
    position: absolute;
    top: 0;
    padding: 34px 25px 34px;
    left: 0;
    display: block;
    z-index: 800;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
  }
  #menu span, #menu span:after, #menu span:before {
    display: block;
    width: 30px;
    height: 2px;
    background: #959ea5;
    transition: all 0.3s;
  }
  #menu span:after, #menu span:before {
    content: '';
    position: absolute;
  }
  #menu span:before {
    margin-top: -9px;
  }
  #menu span:after {
    margin-top: 9px;
  }
  /* Open Menu */
  .openMenu, .openOverlay {
    overflow-y: hidden;
  }
  .openMenu header {
    background-color: #1b1b1c;
  }
  .openMenu header nav {
    height: 100%;
  }
  .openMenu header h3 a {
    background-image: url("assets/img/logo-white.svg");
  }
  .openMenu header .wrap:before {
    background: transparent !important;
  }
  .openMenu #menu span {
    background: transparent;
  }
  .openMenu #menu span:after {
    margin: 0;
    transform: rotate(-45deg);
    background: #FFF;
  }
  .openMenu #menu span:before {
    margin: 0;
    transform: rotate(45deg);
    background: #FFF;
  }
  .divided-cols.two-col h3 {
    font-size: 24px;
    padding-left: 80px;
  }
  .divided-cols.two-col h3 span {
    font-size: 75px;
    line-height: 75px;
  }
  .divided-cols.two-col p {
    padding-left: 80px;
    font-size: 16px;
    line-height: normal;
  }
  #about ol li {
    padding: 40px 0;
  }
  #about ol li strong {
    font-size: 90px;
    line-height: 85px;
  }
  #about ol li div {
    font-size: 18px;
    line-height: 26px;
  }
  #about ol li div h3 {
    font-size: 28px;
    padding-bottom: 10px;
  }
  .method-page #banner .wrp {
    padding-bottom: 40px;
  }
  .method-page #banner h1 {
    padding-bottom: 30px;
  }
  .method-page #banner p {
    font-size: 20px;
    line-height: 32px;
  }
}

@media only screen and (max-width: 550px) {
  #banner h1, .contact-page h1 {
    font-size: 42px;
    line-height: 48px;
  }
  .divided-cols.two-col li {
    width: 100%;
    border: 0 !important;
    padding: 0 !important;
    margin: 30px 0;
  }
  .divided-cols.two-col li:after {
    display: block !important;
  }
  .divided-cols.two-col li h3 {
    padding-left: 60px;
    padding-top: 5px;
  }
  .divided-cols.two-col li h3 span {
    left: 0px !important;
    top: 0;
    font-size: 65px;
    line-height: 65px;
  }
  .divided-cols.two-col li p {
    padding-left: 60px;
  }
  .divided-cols.three-col {
    margin: 0;
  }
  .divided-cols.three-col li {
    padding: 0;
    border: 0 !important;
    width: 100%;
  }
  .divided-cols.three-col li h5 {
    font-size: 22px;
    padding-bottom: 10px;
  }
  .divided-cols.three-col li p {
    padding: 0;
  }
}

@media only screen and (max-width: 500px) {
  #banner h1, .contact-page h1 {
    font-size: 38px;
    line-height: 42px;
  }
  #banner h2, .contact-page h2 {
    font-size: 22px;
    line-height: normal;
  }
  #banner {
    padding: 30px 0 20px;
  }
  .panel h4 {
    margin-bottom: 30px;
  }
  .panel .wrap {
    padding-bottom: 20px;
    padding-top: 40px;
  }
  .panel.lg p, .panel.lg blockquote {
    font-size: 20px;
    line-height: 30px;
  }
  #clients {
    margin: 0 -20px;
    border-top: 1px solid #e1e1e1;
  }
  #clients .client {
    width: 100%;
    padding: 0;
    border: 0 !important;
    border-bottom: 1px solid #e1e1e1 !important;
    height: auto;
  }
  #clients .client .container {
    max-height: none;
    max-width: none;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 30px 20px;
    box-sizing: border-box;
    transition: all 0.2s linear;
  }
  #clients .client.expandable:hover {
    transform: none;
    box-shadow: none;
  }
  #clients .client.open {
    height: auto;
  }
  #clients .client.open .expanded {
    display: block;
  }
  #clients .client.open .container {
    max-height: none;
  }
  #clients .client .expanded {
    display: none;
  }
  #contact .gfield_label {
    font-size: 20px;
    line-height: 32px;
  }
  #about ol li {
    padding: 30px 0;
  }
  #about ol li strong {
    font-size: 60px;
    line-height: 55px;
  }
  #about ol li div {
    margin-left: 60px;
    font-size: 16px;
    line-height: 22px;
  }
  #about ol li div h3 {
    font-size: 22px;
    line-height: 26px;
    padding-bottom: 10px;
  }
  .slick-dots {
    top: -55px;
  }
}

@media only screen and (max-width: 374px) {
  #banner h2, .contact-page h2 {
    font-size: 18px;
    line-height: normal;
  }
}
