:root {
  --primary: #00BDEF !important;
  --primary-darken: #006580 !important;
  --elegant: #FFEF3C !important;
  --lite: #F3F4F8;
  --grey-0: #EAEBEF;
  --grey-1: #C5C8CB;
  --grey-2: #B0B2B7;
  --secondary: #EE378B !important;
  --grey-3: #65696C;
  --grey-4: #505456;
  --grey-5: #3C3F41;
  --dark: #2E2F31;
}

@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body#candidatepage .menu.light > ul > li:nth-child(1) a, body#candidatepage .menu.light > ul > li:nth-child(1) a:hover,
body#clientpage .menu.light > ul > li:nth-child(2) a, body#clientpage .menu.light > ul > li:nth-child(2) a:hover,
body#knowledgepage .menu.light > ul > li:nth-child(3) a, body#knowledgepage .menu.light > ul > li:nth-child(3) a:hover,
body#demandpage .menu.light > ul > li:nth-child(4) a, body#demandpage .menu.light > ul > li:nth-child(4) a:hover,
body#reversepage .menu.light > ul > li:nth-child(5) a, body#reversepage .menu.light > ul > li:nth-child(5) a:hover,
body#contactpage .menu.light > ul > li:nth-child(6) a, body#contactpage .menu.light > ul > li:nth-child(6) a:hover {
  color: var(--primary);
}

h1 {
  letter-spacing: -1.5px !important;
}

h2 {
  font-family: var(--ff-sans) !important;
  color: var(--secondary) !important;
  font-size: 1.88em !important;
}

.drop-shadow {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15), 0 0 3px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 3px 3px 0 0;
}

.drop-shadow:hover {
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2), 0 6px 6px rgba(0, 0, 0, 0.16);
}

.invert {
  filter: invert(100%);
}

.tech-font {
  font-size: 12px;
  color: var(--grey-4);
  font-family: var(--ff-unique);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.learn-more {
  z-index: 5;
  position: absolute;
  bottom: 2%;
  left: 5%;
  cursor: pointer;
}

.learn-more:hover {
  color: var(--primary);
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    transform: translate3d(0, 0, 0);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  40%, 43% {
    transform: translate3d(0, -30px, 0);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  70% {
    transform: translate3d(0, -15px, 0);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  transform-origin: center bottom;
  animation-name: bounce;
  animation: bounce 2s infinite;
}

.highlight {
  background: var(--primary);
  display: inline;
  color: #fff !important;
  padding: 0 1px;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  outline: solid 2px var(--grey-1);
  padding: 30px 40px;
  align-content: center;
  font-size: 1.35em;
}

.cta-box:hover {
  outline-color: var(--primary);
}

.cta-box h4 {
  margin: auto 10px auto 0;
  font-size: 2.1vw;
  letter-spacing: 0.5px;
}

.cta-button {
  background-color: #fff;
  border: solid 2px var(--primary);
  padding: 12px 15px;
  margin: auto 0 auto 10px;
  color: var(--primary);
  font-family: var(--ff-head);
  vertical-align: middle;
  cursor: pointer;
  white-space: nowrap;
  line-height: normal;
  transition: all 0.3s ease-out;
  outline: none;
}

.cta-button:hover {
  color: #fff;
  background-color: var(--primary);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.center {
  text-align: center;
  margin: 0 auto;
}

.nobr {
  white-space: nowrap;
}

.columns p.center {
  margin-top: 5px;
}

.mx-2px {
  margin-left: 2px;
  margin-right: 2px;
}

.example-image-link img {
  opacity: 1;
  transition: all 300ms ease-in-out;
}

.example-image-link img:hover {
  opacity: 0.925;
  transition: all 300ms ease-in-out;
}

.img-scroll {
  width: auto;
  max-height: 244px;
  overflow: scroll;
  border: 1px solid var(--grey-1);
}

.img-wrap.img-scroll img {
  text-align: center;
  margin: auto;
  max-width: 100%;
}

.img-scroll.tall {
  max-height: 410px;
  margin-bottom: 5px;
}

/* entire container, keeps perspective */
.flip-container {
  perspective: 1000;
}

/* flip the pane when hovered */
.flip-container:hover .flipper, .flip-container.hover .flipper {
  transform: rotateY(180deg);
}

.flip-container, .front, .back {
  width: 160px;
  height: 78px;
}

/* flip speed goes here */
.flipper {
  transition: 0.6s;
  transform-style: preserve-3d;
  position: relative;
}

/* hide back of pane during swap */
.front, .back {
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

/* front pane, placed above back */
.front {
  z-index: 2;
}

/* back, initially hidden pane */
.back {
  transform: rotateY(180deg);
}

.flip-container:hover .back {
  z-index: 10;
}

.back {
  z-index: 0;
}

/* ---------------------------------------------- /*
 * Mouse animate icon
/* ---------------------------------------------- */
.mouse-icon {
  border: 1px solid var(--grey-4);
  border-radius: 12px;
  height: 16px;
  width: 10px;
  display: block;
  z-index: 10;
  opacity: 0.8;
  line-height: 16px;
  vertical-align: middle;
  margin: 2px 0 0 10px;
  float: right;
}

.mouse-icon .wheel {
  animation-name: drop;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-play-state: running;
}

.mouse-icon .wheel {
  position: relative;
  border-radius: 10px;
  background: var(--grey-4);
  width: 2px;
  height: 6px;
  top: 4px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes drop {
  0% {
    top: 1px;
    opacity: 0;
  }
  30% {
    top: 3px;
    opacity: 1;
  }
  100% {
    top: 5px;
    opacity: 0;
  }
}
.two-img-1-box.portfolio-box-1 img {
  width: 50%;
  display: inline;
}

/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/
/* Table of Content
==================================================
	#Reset & Basics
	#Basic Styles
	#Site Styles
	#Typography
	#Links
	#Lists
	#Images
	#Buttons
	#Forms
	#Misc */
/* #Reset & Basics (Inspired by E. Meyers)
================================================== */
html, .html2, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video, select {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
  margin: 0;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* #Basic Styles
================================================== */
body {
  background: white;
  font-family: var(--ff-sans);
  font-size: 15px;
  line-height: 22px;
  color: var(--grey-3);
  overflow-x: hidden;
  font-weight: 300;
  -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.04);
  -webkit-text-size-adjust: 100%;
}

html {
  overflow-x: hidden;
  height: 100%;
}

/* #Typography
================================================== */
h1, h2, h3, h4, h5, h6 {
  color: var(--dark);
  font-family: var(--ff-head);
  font-weight: normal;
}

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

h1 {
  font-size: 40px;
  line-height: 40px;
}

h2 {
  font-size: 34px;
  line-height: 34px;
}

h3 {
  font-size: 30px;
  line-height: 30px;
}

h4 {
  font-size: 24px;
  line-height: 24px;
}

h5 {
  font-size: 20px;
  line-height: 20px;
}

h6 {
  font-size: 15px;
  line-height: 20px;
  letter-spacing: -0.5px;
}

p {
  font-size: 1em;
}

p img {
  margin: 0;
}

p.lead {
  font-size: 21px;
  line-height: 27px;
  color: var(--grey-3);
}

em {
  font-style: italic;
}

strong, .font-weight-bold {
  font-weight: 700;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 66%;
}

sub {
  vertical-align: sub;
}

sup {
  vertical-align: super;
}

/*	Blockquotes  */
blockquote, blockquote p {
  font-size: 17px;
  line-height: 24px;
  color: var(--grey-3);
}

blockquote {
  margin: 0 0 20px;
  padding: 9px 20px 0 19px;
}

blockquote cite {
  display: block;
  font-size: 12px;
  color: var(--grey-4);
}

blockquote cite:before {
  content: "— ";
}

blockquote cite a, blockquote cite a:visited, blockquote cite a:visited {
  color: var(--grey-4);
}

hr {
  border: solid var(--grey-3);
  border-width: 1px 0 0;
  clear: both;
  margin: 0 10px 0 10px;
  height: 0;
  position: relative;
}

/* #Links
================================================== */
p a:not(i):not(small), ul.square li a {
  background: linear-gradient(to bottom, var(--primary) 0%, var(--primary) 100%);
  background-position: 0 100%;
  background-repeat: repeat-x;
  background-size: 2px 2px;
  color: var(--grey-3);
  text-decoration: none;
  transition: background-size 0.2s;
}

p a > i {
  background: transparent !important;
}

p a > small, p a > small i {
  color: var(--primary) !important;
  background: none !important;
}

p a:hover > small, p a:hover > small i {
  color: white !important;
}

p a:hover, ul.square li a:hover {
  background-size: 20px 50px;
  color: white;
}

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

p a, p a:visited {
  line-height: inherit;
  text-decoration: none;
}

a:focus {
  outline: none;
}

section {
  position: relative;
  z-index: 1; /* needed for setting pseudo-element z-index */
  overflow: hidden;
  backface-visibility: hidden;
}

/* #Lists
================================================== */
ul {
  list-style: none outside;
}

ol {
  list-style: decimal;
}

ol, ul.square, ul.circle, ul.disc {
  margin-left: 30px;
}

ul.square {
  list-style: square outside;
}

ul.square li.none {
  list-style: none;
}

ul.circle {
  list-style: circle outside;
}

ul.disc {
  list-style: disc outside;
}

ul ul, ul ol,
ol ol, ol ul {
  font-size: 90%;
}

li {
  line-height: 18px;
}

ul.large li {
  line-height: 21px;
}

li p {
  line-height: 21px;
}

ul.square:before {
  content: attr(aria-label);
  font-size: 115%;
  font-weight: bold;
  margin-left: -30px;
  color: var(--secondary);
}

/* #Buttons
================================================== */
.button,
button,
input[type=submit],
input[type=reset],
input[type=button] {
  background: #363636;
  margin-top: 10px;
  border: none;
  color: #dfdfdf;
  display: inline-block;
  font-size: 16px;
  cursor: pointer;
  line-height: normal;
  padding: 15px 25px;
  transition: all 0.3s ease-out;
  width: 100%;
}

.button:hover,
button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover {
  color: var(--primary);
  background: #292929;
}

.button:active,
button:active,
input[type=submit]:active,
input[type=reset]:active,
input[type=button]:active {
  color: var(--primary);
}

.button.full-width,
button.full-width,
input[type=submit].full-width,
input[type=reset].full-width,
input[type=button].full-width {
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center;
}

/* Fix for odd Mozilla border & padding issues */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* width: 100%;
/* #Images
================================================== */
/* #Misc
================================================== */
.remove-bottom {
  margin-bottom: 0 !important;
}

.half-bottom {
  margin-bottom: 12.5px !important;
}

.add-bottom {
  margin-bottom: 25px !important;
}

.remove-top {
  margin-top: 0 !important;
}

.half-top {
  margin-top: 12.5px !important;
}

.add-top {
  margin-top: 25px !important;
}

.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

/*
* Skeleton V1.2 improved by IG Design
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/
/* Table of Contents
==================================================
	#Base 1320 Grid
	#Base 1200 Grid
    #Base 960 Grid
    #Tablet (Portrait)
    #Mobile (Portrait)
    #Mobile (Landscape)
    #Clearing */
/* #Base 1320 Grid
================================================== */
.container {
  position: relative;
  width: 1320px;
  margin: 0 auto;
  padding: 0;
}

.container .column,
.container .columns {
  float: left;
  display: inline;
  margin-left: 25px;
  margin-right: 25px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.row {
  margin-bottom: 50px;
}

/* Nested Column Classes */
.column.alpha, .columns.alpha {
  margin-left: 0;
}

.column.omega, .columns.omega {
  margin-right: 0;
}

/* Base Grid */
.container .one.column,
.container .one.columns {
  width: 60px;
}

.container .two.columns {
  width: 170px;
}

.container .three.columns {
  width: 280px;
}

.container .four.columns {
  width: 390px;
}

.container .five.columns {
  width: 500px;
}

.container .six.columns {
  width: 610px;
}

.container .seven.columns {
  width: 720px;
}

.container .eight.columns {
  width: 830px;
}

.container .nine.columns {
  width: 940px;
}

.container .ten.columns {
  width: 1050px;
}

.container .eleven.columns {
  width: 1160px;
}

.container .twelve.columns {
  width: 1270px;
}

.container .one-fifth.column {
  width: 214px;
}

.container .two-fifths.column {
  width: 478px;
}

.container .three-fifths.column {
  width: 742px;
}

.container .four-fifths.column {
  width: 1006px;
}

/* Offsets */
.container .offset-by-one {
  padding-left: 110px;
}

.container .offset-by-two {
  padding-left: 220px;
}

.container .offset-by-three {
  padding-left: 330px;
}

.container .offset-by-four {
  padding-left: 440px;
}

.container .offset-by-five {
  padding-left: 550px;
}

.container .offset-by-six {
  padding-left: 660px;
}

.container .offset-by-seven {
  padding-left: 770px;
}

.container .offset-by-eight {
  padding-left: 880px;
}

.container .offset-by-nine {
  padding-left: 990px;
}

.container .offset-by-ten {
  padding-left: 1100px;
}

.container .offset-by-eleven {
  padding-left: 1210px;
}

/* #Base 1200 Grid
================================================== */
@media only screen and (min-width: 1200px) and (max-width: 1319px) {
  .container {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
  .container .column,
  .container .columns {
    float: left;
    display: inline;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .row {
    margin-bottom: 20px;
  }
  /* Nested Column Classes */
  .column.alpha, .columns.alpha {
    margin-left: 0;
  }
  .column.omega, .columns.omega {
    margin-right: 0;
  }
  /* Base Grid */
  .container .one.column,
  .container .one.columns {
    width: 80px;
  }
  .container .two.columns {
    width: 180px;
  }
  .container .three.columns {
    width: 280px;
  }
  .container .four.columns {
    width: 380px;
  }
  .container .five.columns {
    width: 480px;
  }
  .container .six.columns {
    width: 580px;
  }
  .container .seven.columns {
    width: 680px;
  }
  .container .eight.columns {
    width: 780px;
  }
  .container .nine.columns {
    width: 880px;
  }
  .container .ten.columns {
    width: 980px;
  }
  .container .eleven.columns {
    width: 1080px;
  }
  .container .twelve.columns {
    width: 1180px;
  }
  .container .one-fifth.column {
    width: 220px;
  }
  .container .two-fifths.column {
    width: 460px;
  }
  .container .three-fifths.column {
    width: 700px;
  }
  .container .four-fifths.column {
    width: 940px;
  }
  /* Offsets */
  .container .offset-by-one {
    padding-left: 100px;
  }
  .container .offset-by-two {
    padding-left: 200px;
  }
  .container .offset-by-three {
    padding-left: 300px;
  }
  .container .offset-by-four {
    padding-left: 400px;
  }
  .container .offset-by-five {
    padding-left: 500px;
  }
  .container .offset-by-six {
    padding-left: 600px;
  }
  .container .offset-by-seven {
    padding-left: 700px;
  }
  .container .offset-by-eight {
    padding-left: 800px;
  }
  .container .offset-by-nine {
    padding-left: 900px;
  }
  .container .offset-by-ten {
    padding-left: 1000px;
  }
  .container .offset-by-eleven {
    padding-left: 1100px;
  }
}
/* #Base 960 Grid
================================================== */
@media only screen and (min-width: 960px) and (max-width: 1199px) {
  .container {
    position: relative;
    width: 960px;
    margin: 0 auto;
    padding: 0;
  }
  .container .column,
  .container .columns {
    float: left;
    display: inline;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .row {
    margin-bottom: 20px;
  }
  /* Nested Column Classes */
  .column.alpha, .columns.alpha {
    margin-left: 0;
  }
  .column.omega, .columns.omega {
    margin-right: 0;
  }
  /* Base Grid */
  .container .one.column,
  .container .one.columns {
    width: 60px;
  }
  .container .two.columns {
    width: 140px;
  }
  .container .three.columns {
    width: 220px;
  }
  .container .four.columns {
    width: 300px;
  }
  .container .five.columns {
    width: 380px;
  }
  .container .six.columns {
    width: 460px;
  }
  .container .seven.columns {
    width: 540px;
  }
  .container .eight.columns {
    width: 620px;
  }
  .container .nine.columns {
    width: 700px;
  }
  .container .ten.columns {
    width: 780px;
  }
  .container .eleven.columns {
    width: 860px;
  }
  .container .twelve.columns {
    width: 940px;
  }
  .container .one-fifth.column {
    width: 172px;
  }
  .container .two-fifths.column {
    width: 364px;
  }
  .container .three-fifths.column {
    width: 556px;
  }
  .container .four-fifths.column {
    width: 748px;
  }
  /* Offsets */
  .container .offset-by-one {
    padding-left: 80px;
  }
  .container .offset-by-two {
    padding-left: 160px;
  }
  .container .offset-by-three {
    padding-left: 240px;
  }
  .container .offset-by-four {
    padding-left: 320px;
  }
  .container .offset-by-five {
    padding-left: 400px;
  }
  .container .offset-by-six {
    padding-left: 480px;
  }
  .container .offset-by-seven {
    padding-left: 560px;
  }
  .container .offset-by-eight {
    padding-left: 640px;
  }
  .container .offset-by-nine {
    padding-left: 720px;
  }
  .container .offset-by-ten {
    padding-left: 800px;
  }
  .container .offset-by-eleven {
    padding-left: 880px;
  }
}
/* #Tablet (Portrait)
================================================== */
/* Note: Design for a width of 768px */
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .container {
    width: 768px;
  }
  .container .column,
  .container .columns {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .column.alpha, .columns.alpha {
    margin-left: 0;
    margin-right: 10px;
  }
  .column.omega, .columns.omega {
    margin-right: 0;
    margin-left: 10px;
  }
  .alpha.omega {
    margin-left: 0;
    margin-right: 0;
  }
  .container .one.column,
  .container .one.columns {
    width: 44px;
  }
  .container .two.columns {
    width: 108px;
  }
  .container .three.columns {
    width: 172px;
  }
  .container .four.columns {
    width: 236px;
  }
  .container .five.columns {
    width: 300px;
  }
  .container .six.columns {
    width: 364px;
  }
  .container .seven.columns {
    width: 428px;
  }
  .container .eight.columns {
    width: 492px;
  }
  .container .nine.columns {
    width: 556px;
  }
  .container .ten.columns {
    width: 620px;
  }
  .container .eleven.columns {
    width: 684px;
  }
  .container .twelve.columns {
    width: 748px;
  }
  .container .one-fifth.column {
    width: 133.6px;
  }
  .container .two-fifths.column {
    width: 287.2px;
  }
  .container .three-fifths.column {
    width: 440.8px;
  }
  .container .four-fifths.column {
    width: 594.4px;
  }
  /* Offsets */
  .container .offset-by-one {
    padding-left: 64px;
  }
  .container .offset-by-two {
    padding-left: 128px;
  }
  .container .offset-by-three {
    padding-left: 192px;
  }
  .container .offset-by-four {
    padding-left: 256px;
  }
  .container .offset-by-five {
    padding-left: 320px;
  }
  .container .offset-by-six {
    padding-left: 384px;
  }
  .container .offset-by-seven {
    padding-left: 448px;
  }
  .container .offset-by-eight {
    padding-left: 512px;
  }
  .container .offset-by-nine {
    padding-left: 576px;
  }
  .container .offset-by-ten {
    padding-left: 640px;
  }
  .container .offset-by-eleven {
    padding-left: 704px;
  }
}
/*  #Mobile (Portrait)
================================================== */
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container {
    width: 420px;
  }
  .container .columns,
  .container .column {
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .container .one.column,
  .container .one.columns,
  .container .two.columns,
  .container .three.columns,
  .container .four.columns,
  .container .five.columns,
  .container .six.columns,
  .container .seven.columns,
  .container .eight.columns,
  .container .nine.columns,
  .container .ten.columns,
  .container .eleven.columns,
  .container .twelve.columns,
  .container .one-fifth.column,
  .container .two-fifths.column,
  .container .three-fifths.column,
  .container .four-fifths.column {
    width: 420px;
  }
  /* Offsets */
  .container .offset-by-one,
  .container .offset-by-two,
  .container .offset-by-three,
  .container .offset-by-four,
  .container .offset-by-five,
  .container .offset-by-six,
  .container .offset-by-seven,
  .container .offset-by-eight,
  .container .offset-by-nine,
  .container .offset-by-ten,
  .container .offset-by-eleven {
    padding-left: 0;
  }
}
/* #Mobile 
================================================== */
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .container {
    width: 300px;
  }
  .container .columns,
  .container .column {
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .container .one.column,
  .container .one.columns,
  .container .two.columns,
  .container .three.columns,
  .container .four.columns,
  .container .five.columns,
  .container .six.columns,
  .container .seven.columns,
  .container .eight.columns,
  .container .nine.columns,
  .container .ten.columns,
  .container .eleven.columns,
  .container .twelve.columns,
  .container .one-fifth.column,
  .container .two-fifths.column,
  .container .three-fifths.column,
  .container .four-fifths.column {
    width: 300px;
  }
  /* Offsets */
  .container .offset-by-one,
  .container .offset-by-two,
  .container .offset-by-three,
  .container .offset-by-four,
  .container .offset-by-five,
  .container .offset-by-six,
  .container .offset-by-seven,
  .container .offset-by-eight,
  .container .offset-by-nine,
  .container .offset-by-ten,
  .container .offset-by-eleven {
    padding-left: 0;
  }
}
/* #Mobile (Landscape)
================================================== */
/* Note: Design for a width of 320px */
@media only screen and (max-width: 319px) {
  .container {
    width: 220px;
  }
  .container .columns,
  .container .column {
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .container .one.column,
  .container .one.columns,
  .container .two.columns,
  .container .three.columns,
  .container .four.columns,
  .container .five.columns,
  .container .six.columns,
  .container .seven.columns,
  .container .eight.columns,
  .container .nine.columns,
  .container .ten.columns,
  .container .eleven.columns,
  .container .one-fifth.column,
  .container .two-fifths.column,
  .container .three-fifths.column,
  .container .four-fifths.column {
    width: 220px;
  }
  /* Offsets */
  .container .offset-by-one,
  .container .offset-by-two,
  .container .offset-by-three,
  .container .offset-by-four,
  .container .offset-by-five,
  .container .offset-by-six,
  .container .offset-by-seven,
  .container .offset-by-eight,
  .container .offset-by-nine,
  .container .offset-by-ten,
  .container .offset-by-eleven {
    padding-left: 0;
  }
}
/* #Clearing
================================================== */
/* Self Clearing Goodness */
.container:after {
  content: " ";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/* Use clearfix class on parent to clear nested columns,
or wrap each row of columns in a <div class="row"> */
.clearfix:before,
.clearfix:after,
.row:before,
.row:after {
  content: " ";
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

.row:after,
.clearfix:after {
  clear: both;
}

.row,
.clearfix {
  zoom: 1;
}

/* You can also use a <br class="clear" /> to clear columns */
.clear {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 0;
  height: 0;
}

ul.slimmenu li a:hover,
ul.slimmenu li a.mPS2id-highlight,
.cbp-af-header.cbp-af-header-shrink ul.slimmenu li a:hover,
.cbp-af-header.cbp-af-header-shrink ul.slimmenu li a.mPS2id-highlight,
#royal_preloader.text .loader,
.page-center-wrap .home-big-text,
.logo-text-footer,
.logo-text-footer:hover,
.mail-text-footer:hover,
.list-social-footer li:hover.icon-footer a,
.list-social-team li:hover.icon-team a,
.menu > ul > li a:hover,
.menu > ul > li > ul > li p span,
.menu > ul > li > ul > li a span,
.menu > ul > li a.curent-multi-page,
.cbp-af-header.cbp-af-header-shrink .menu > ul > li a.curent-multi-page,
.menu.light > ul > li a.curent-multi-page,
.menu.light > ul > li a:hover,
.cbp-af-header.cbp-af-header-shrink .menu.light > ul > li a.curent-multi-page,
.menu a span.link-icon,
.menu > ul > li > ul.normal-sub li a.subtitled,
.cbp-af-header.cbp-af-header-shrink .menu > ul > li > ul.normal-sub li a.subtitled,
.menu.light > ul > li a.social:hover,
.cbp-af-header.cbp-af-header-shrink .menu.light > ul > li a.social:hover,
.menu > ul > li a.social:hover,
.cbp-af-header.cbp-af-header-shrink .menu > ul > li a.social:hover,
.case-study-wrapper li a:hover,
.left-projects:hover,
.right-projects:hover,
h6,
.title-wrapper .title-text-top,
.content-in .tag-link:hover,
.content-in .blog-link,
.comm-link,
.comment a,
.sidebar-list-one li a:hover {
  color: var(--primary);
}

#royal_preloader.royal_preloader_progress .royal_preloader_meter,
.portfolio-box-1 .work-title:before,
.cd-headline.type .cd-words-wrapper.selected,
#owl-home.owl-theme .owl-controls .owl-page.active span,
#owl-home.owl-theme .owl-controls .owl-page span:hover,
#owl-sep-1.owl-theme .owl-controls .owl-page.active span,
#ajax-form button:hover,
#cd-zoom-in, #cd-zoom-out,
.sidebar-search button,
.sidebar-list-two li a:hover {
  background-color: var(--primary);
}

.sidebar-list-one li:before {
  border: 1px solid var(--secondary);
}

.sidebar-list-two li a:hover {
  border: 2px solid var(--secondary);
}

.post-wrapper blockquote {
  border-left: 3px solid var(--secondary);
}

#ajax-form textarea:focus,
#ajax-form input:focus,
#ajax-form textarea:active,
#ajax-form input:active,
.sidebar-search input:active,
.sidebar-search input:focus {
  border-bottom: 1px solid var(--secondary);
}

#filter li .current,
#filter li a:hover {
  border: 2px solid var(--primary);
}

::-moz-selection {
  color: #fff;
}

::selection {
  color: #fff;
}

::-moz-selection {
  color: #fff;
}

.tipper .tipper-content,
.num-of-com span {
  color: var(--primary);
}

h6:before,
#owl-blog-slider.owl-theme .owl-controls .owl-page.active span,
#owl-blog-slider.owl-theme .owl-controls .owl-page span:hover {
  background-color: var(--grey-2);
}

::-moz-selection {
  background: var(--primary);
}

::selection {
  background: var(--primary);
}

::-moz-selection {
  background: var(--primary);
}

.section {
  position: relative;
  display: block;
  width: 100%;
}

.full-height {
  height: 100vh;
}

.big-height {
  height: 75vh;
}

.half-height {
  height: 50vh;
}

.padding-top-bottom {
  padding-top: 120px;
  padding-bottom: 120px;
}

.padding-top {
  padding-top: 120px;
}

.padding-bottom {
  padding-bottom: 120px;
}

.padding-top-big {
  padding-top: 220px;
}

.back-white {
  background-color: #fff;
}

.back-grey {
  background-color: #f5f5f5;
}

.back-black {
  background-color: #000;
}

.back-dark {
  background-color: var(--dark);
}

.img-wrap img {
  width: 100%;
  display: block;
}

.bigger-z-index {
  z-index: 1000;
}

.block-revealer__element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  pointer-events: none;
  opacity: 0;
}

#menu-wrap {
  position: fixed;
  width: 100%;
  z-index: 5000;
  top: 0;
}

#menu-wrap .container .columns {
  margin-top: 0;
  margin-bottom: 0;
}

.menu-back {
  background: rgba(0, 0, 0, 0);
  transition: all 0.3s ease-out;
}

.cbp-af-header {
  transition: all 0.3s ease-out;
}

.cbp-af-header.cbp-af-header-shrink {
  background: rgba(0, 0, 0, 0.9);
  transition: all 0.3s ease-out;
}

.cbp-af-header.cbp-af-header-shrink .logo {
  height: 50px;
  top: 15px;
  transition: all 0.3s ease-out;
}

.cbp-af-header.cbp-af-header-shrink .logo img {
  height: 50px;
  display: block;
}

.cbp-af-header.cbp-af-header-shrink .menu > ul > li a {
  padding: 30px 22px;
  transition: all 0.3s ease-out;
}

.cbp-af-header.cbp-af-header-shrink .menu > ul > li > ul > li a {
  padding: 0;
  margin-left: 10px;
  margin-right: 10px;
  color: var(--grey-1);
  font-family: var(--ff-unique);
  font-weight: 600;
  font-size: 10px;
  line-height: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: calc(100% - 20px);
  display: block;
}

.cbp-af-header.cbp-af-header-shrink .menu > ul > li > ul > li a:hover {
  color: #fff;
}

.cbp-af-header.cbp-af-header-shrink .menu > ul > li > ul.normal-sub {
  width: 240px;
  left: auto;
  padding: 10px 0;
}

.cbp-af-header.cbp-af-header-shrink .menu > ul > li > ul.normal-sub > li {
  width: 100%;
}

.cbp-af-header.cbp-af-header-shrink .menu > ul > li > ul.normal-sub > li a {
  border: 0;
  padding: 1em 20px;
}

.cbp-af-header.cbp-af-header-shrink .menu > ul > li a.social {
  text-decoration: none;
  padding: 30px 8px;
  display: block;
  font-weight: normal;
  letter-spacing: 0;
  color: #fff;
  display: inline-block;
  vertical-align: inherit;
  font: normal normal normal 12px/18px FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.3s ease-out;
}

.cbp-af-header.cbp-af-header-shrink .menu > ul > li a.social.first-icon {
  padding-left: 50px;
}

.logo {
  position: absolute;
  height: 41px;
  z-index: 10000;
  top: 50px;
  transition: all 0.3s ease-out;
}

.logo img {
  height: 70px;
  width: auto;
  display: block;
  transition: all 0.3s ease-out;
}

.menu-mobile {
  display: none;
  padding-top: 50px;
  padding-bottom: 40px;
}

/* Step 1: Common Properties: All required to make icons render reliably */
.menu-mobile::before, .menu-dropdown-icon::before, .menu-dropdown-icon-sub::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

/* Step 2: Reference Individual Icons */
.menu-mobile:before {
  content: "\f0c9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 25px;
  height: 40px;
  line-height: 40px;
  padding: 0;
  float: right;
  position: relative;
  top: 0;
  color: var(--grey-4);
  transform: translateY(-50%);
}

.menu-dropdown-icon:before {
  content: "\f0fe";
  font-family: "Font Awesome 5 Free";
  display: none;
  cursor: pointer;
  float: right;
  padding: 8px 12px;
  background: var(--dark);
  color: var(--grey-4);
  margin-top: 5px;
}

.menu-dropdown-icon-sub:before {
  content: "\f0fe";
  font-family: "Font Awesome 5 Free";
  display: none;
  cursor: pointer;
  float: right;
  top: -2px;
  padding: 6px 10px;
  background: var(--dark);
  color: #fff;
}

.menu-container {
  position: relative;
  width: 100%;
  max-width: 1270px;
  margin: 0 auto;
  z-index: 10;
}

.menu {
  position: relative;
  width: 100%;
}

.menu img {
  width: 100%;
  display: block;
}

.menu > ul {
  margin: 0 auto;
  width: auto;
  float: right;
  list-style: none;
  padding: 0;
  /* IF .menu position=relative -> ul = container width, ELSE ul = 100% width */
  box-sizing: border-box;
}

.menu > ul:before,
.menu > ul:after {
  content: "";
  display: table;
}

.menu > ul:after {
  clear: both;
}

.menu > ul > li {
  float: left;
  padding: 0;
  margin: 0;
  position: relative;
}

.menu > ul > li a.dropdown-toggle:after {
  content: "";
  border-top: 0.25em solid;
  border-right: 0.25em solid transparent;
  border-left: 0.25em solid transparent;
  /* color: var(--primary); */
  position: relative;
  top: 12px;
  left: 2px;
}

.menu > ul > li a {
  text-decoration: none;
  padding: 50px 15px;
  padding-top: 80px;
  display: block;
  font-family: var(--ff-unique);
  font-variant: lowercase;
  font-weight: 600;
  font-size: 1em;
  line-height: 18px;
  letter-spacing: 1.25px;
  color: #fff;
  transition: all 0.3s ease-out;
  text-shadow: 0 1px 0 rgba(250, 250, 250, 0.33);
}

.menu > ul > li a.social {
  text-decoration: none;
  padding: 50px 8px;
  display: block;
  font-weight: normal;
  letter-spacing: 0;
  color: #fff;
  display: inline-block;
  vertical-align: inherit;
  font: normal normal normal 12px/18px FontAwesome;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: all 0.3s ease-out;
}

.menu > ul > li a.social.first-icon {
  padding-left: 50px;
}

.menu > ul > li > ul {
  width: 100%;
  background: #111;
  padding: 30px 30px;
  position: absolute;
  z-index: -20;
  left: 0;
  margin: 0;
  list-style: none;
  box-sizing: border-box;
  display: block;
  visibility: hidden;
  opacity: 0;
  height: 0;
  transition: all 0.2s ease-in-out;
}

.menu > ul > li > ul.active {
  opacity: 1;
  z-index: 99999;
  height: auto;
  visibility: visible;
  height: auto;
}

.menu > ul > li > ul:before,
.menu > ul > li > ul:after {
  content: "";
  display: table;
}

.menu > ul > li > ul:after {
  clear: both;
}

.menu > ul > li > ul > li {
  margin: 0;
  padding-bottom: 0;
  list-style: none;
  width: 25%;
  background: none;
  float: left;
}

.menu > ul > li > ul > li.three-col {
  width: 33.3333333333%;
}

.menu > ul > li > ul > li.two-col {
  width: 50%;
}

.menu > ul > li > ul > li.full-width-sec {
  width: 100%;
}

.menu > ul > li > ul > li.two-thirds-col {
  width: 66.6666666667%;
}

.menu > ul > li > ul > li p {
  padding: 0;
  padding-bottom: 10px;
  margin-left: 10px;
  margin-right: 10px;
  color: #fff;
  font-family: var(--ff-sans);
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: calc(100% - 20px);
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.menu > ul > li > ul > li p.case-sub {
  padding-bottom: 2px;
}

.menu > ul > li > ul > li a img {
  padding-bottom: 15px;
  transition: all 300ms linear;
}

.menu > ul > li > ul > li a:hover img {
  opacity: 0.8;
}

.menu > ul > li > ul > li p span {
  vertical-align: super;
  font-size: 9px;
  line-height: 9px;
  font-weight: 500;
}

.menu > ul > li > ul > li a {
  padding: 0;
  margin-left: 11px;
  margin-right: 10px;
  color: var(--secondary) !important;
  font-family: var(--ff-unique);
  font-weight: 700;
  font-size: 10px;
  line-height: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: calc(100% - 20px);
  display: block;
}

.menu > ul > li > ul > li a span {
  vertical-align: super;
  font-size: 9px;
  line-height: 9px;
  font-weight: 500;
}

.menu > ul > li > ul > li a:hover {
  color: #fff;
}

.menu > ul > li > ul > li > ul {
  display: block;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  box-sizing: border-box;
}

.menu > ul > li > ul > li > ul:before,
.menu > ul > li > ul > li > ul:after {
  content: "";
  display: table;
}

.menu > ul > li > ul > li > ul:after {
  clear: both;
}

.menu > ul > li > ul > li > ul > li {
  float: left;
  width: 100%;
  padding: 7px 0;
  margin: 0;
}

.menu > ul > li > ul > li > ul > li a {
  border: 0;
}

.menu > ul > li > ul.normal-sub {
  width: 240px;
  left: auto;
  padding: 10px 0;
}

.menu > ul > li > ul.normal-sub p {
  margin-left: 30px;
  margin-right: 30px;
  margin-top: 15px;
  margin-bottom: 5px;
  width: calc(100% - 60px);
  font-size: 10px;
}

.menu.light > ul > li > ul > li p {
  color: var(--grey-2) !important;
}

.menu > ul > li > ul.normal-sub li a.subtitled {
  font-size: 10px;
  font-weight: normal;
  letter-spacing: 4px;
  color: #fff;
  background-color: var(--primary);
}

.menu > ul > li > ul.normal-sub li a.subtitled small {
  letter-spacing: 3px;
  color: var(--grey-2);
  font-size: 11px;
  text-transform: none;
}

.menu > ul > li > ul.normal-sub > li {
  position: relative;
  width: 100%;
}

.menu > ul > li > ul.normal-sub > li:hover {
  background-color: var(--primary);
}

.menu > ul > li > ul.normal-sub > li a {
  border: 0;
  padding: 1em 20px;
  text-shadow: none;
}

.menu > ul > li > ul.normal-sub > li:hover a {
  color: #fff;
  text-shadow: none;
}

.menu > ul > li > ul.normal-sub > li a span.go-left-icon {
  position: absolute;
  left: 10px;
  top: 14px;
  width: 10px;
  height: 10px;
  z-index: 10;
  background-image: url("../images/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px 10px;
}

.menu > ul > li > ul.normal-sub > li a span.go-right-icon {
  position: absolute;
  right: 10px;
  top: 14px;
  width: 10px;
  height: 10px;
  z-index: 10;
  background-image: url("../images/arrow-black.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px 10px;
  transform: rotate(180deg);
}

.menu > ul > li > ul.normal-sub > li ul.go-left {
  display: none;
  position: absolute;
  left: -240px;
  top: -20px;
  z-index: 20;
  width: 240px;
  padding: 10px 20px;
  background: #111;
}

.menu > ul > li > ul.normal-sub > li ul.go-right {
  display: none;
  position: absolute;
  left: 240px;
  top: -20px;
  z-index: 20;
  width: 240px;
  padding: 10px 20px;
  background: #111;
}

.menu > ul > li > ul.normal-sub > li ul.go-left li,
.menu > ul > li > ul.normal-sub > li ul.go-right li {
  padding: 0;
}

.menu > ul > li > ul.normal-sub > li ul.go-left li a,
.menu > ul > li > ul.normal-sub > li ul.go-right li a {
  border: 0;
  padding: 1em 0;
}

.cbp-af-header.cbp-af-header-shrink .menu > ul > li > ul.normal-sub > li ul.go-left li a,
.cbp-af-header.cbp-af-header-shrink .menu > ul > li > ul.normal-sub > li ul.go-right li a {
  border: 0;
  padding: 1em 0;
}

.cbp-af-header.cbp-af-header-shrink .menu > ul > li > ul.normal-sub > li ul.go-left li,
.cbp-af-header.cbp-af-header-shrink .menu > ul > li > ul.normal-sub > li ul.go-right li {
  padding: 0;
}

.separator {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 100%;
  height: 0;
}

.separator-10 {
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 100%;
  height: 10px;
}

.separator-20 {
  height: 20px;
  clear: both;
  display: block;
  overflow: hidden;
  visibility: hidden;
  width: 100%;
  height: 20px;
}

/* Video Hover Image */
.video-section {
  position: relative;
  display: block;
  margin-bottom: 15px;
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
}

iframe {
  display: block;
}

.menu a span.link-icon {
  display: inline-block;
  vertical-align: inherit;
  padding-right: 10px;
  font: normal normal normal 10px/18px FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.menu-back.light {
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(130, 130, 130, 0);
}

.cbp-af-header.light.cbp-af-header-shrink {
  background: rgba(250, 250, 250, 0.875);
  border-bottom: 1px solid rgba(130, 130, 130, 0.1);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
}

.menu.light > ul > li a {
  color: var(--grey-3);
}

.menu.light > ul > li > ul a,
.menu.light > ul > li a.social,
.cbp-af-header.cbp-af-header-shrink .menu.light > ul > li > ul > li a,
.cbp-af-header.cbp-af-header-shrink .menu.light > ul > li a.social,
.menu.light h5,
.menu.light h4,
.menu.light .subtext {
  color: #000;
}

.menu.light > ul > li > ul {
  background: rgba(253, 253, 253, 0.95);
  box-shadow: 0 3px 3px 1px rgba(100, 100, 100, 0.1);
}

.cbp-af-header.cbp-af-header-shrink .menu.light > ul > li > ul > li a:hover,
.menu.light > ul > li > ul > li a:hover {
  color: #fff !important;
}

.menu.light > ul > li > ul > li p {
  color: #000;
  border-bottom: 1px solid rgba(120, 120, 120, 0.2);
}

.menu.light > ul > li > ul.normal-sub > li a span.go-left-icon,
.menu.light > ul > li > ul.normal-sub > li a span.go-right-icon {
  background-image: url("../images/arrow-black.svg");
}

.menu.light > ul > li > ul.normal-sub > li ul.go-left,
.menu.light > ul > li > ul.normal-sub > li ul.go-right {
  background: #fff;
  box-shadow: 0 3px 3px 1px rgba(100, 100, 100, 0.1);
}

ul.tabs.light li {
  color: #000;
  border-right: 1px solid #dbdbdb;
  background-color: #f0f0f0;
}

ul.tabs.light li:hover,
ul.tabs.light li.current,
.tab-content.light,
.menu.light .form-section {
  background-color: #f9f9f9;
}

.menu.light .marquee span {
  color: var(--grey-2);
}

.menu.light #ajax-form textarea,
.menu.light #ajax-form input {
  color: #000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.menu.light #ajax-form input:-ms-input-placeholder {
  color: #000;
  opacity: 0.5;
}

.menu.light #ajax-form input::-moz-placeholder {
  color: #000;
  opacity: 0.5;
}

.menu.light #ajax-form input:-moz-placeholder {
  color: #000;
  opacity: 0.5;
}

.menu.light #ajax-form input::-webkit-input-placeholder {
  color: #000;
  opacity: 0.5;
}

.menu.light #ajax-form textarea:-ms-input-placeholder {
  color: #000;
  opacity: 0.5;
}

.menu.light #ajax-form textarea::-moz-placeholder {
  color: #000;
  opacity: 0.5;
}

.menu.light #ajax-form textarea:-moz-placeholder {
  color: #000;
  opacity: 0.5;
}

.menu.light #ajax-form textarea::-webkit-input-placeholder {
  color: #000;
  opacity: 0.5;
}

/* #Menu background is not trasparent
================================================== */
.menu-back.menu-have-back-color {
  background: rgba(0, 0, 0, 0.9);
}

.cbp-af-header.menu-have-back-color.cbp-af-header-shrink {
  background: rgba(0, 0, 0, 0.9);
}

.menu-back.light.menu-have-back-color {
  background: rgb(255, 255, 255);
}

.cbp-af-header.light.menu-have-back-color.cbp-af-header-shrink {
  background: rgba(255, 255, 255, 0.9);
}

/* #Menu align left, logo right
================================================== */
.cbp-af-header.cbp-af-header-shrink .logo.move-for-left {
  left: auto;
  right: 0;
}

.logo.move-for-left {
  left: auto;
  right: 0;
}

.menu.move-for-left > ul {
  float: none;
}

/* #Menu center, logo top
================================================== */
.menu.menu-center-logo-top {
  margin: 0 auto;
}

.menu.menu-center-logo-top > ul {
  float: none;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}

.menu.menu-center-logo-top > ul > li {
  float: none;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}

.cbp-af-header.cbp-af-header-shrink .logo.menu-center-logo-top {
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
}

.logo.menu-center-logo-top {
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
}

.menu-container.menu-center-logo-top {
  padding-top: 70px;
  transition: all 0.3s ease-out;
}

.cbp-af-header.cbp-af-header-shrink .menu-container.menu-center-logo-top {
  padding-top: 55px;
  transition: all 0.3s ease-out;
}

/* #Home
================================================== */
.page-center-wrap {
  position: absolute;
  width: 100%;
  top: 65%;
  left: 0;
  z-index: 10;
  text-align: center;
  margin: 0 auto;
  transform: translateY(-50%);
  text-align: left;
}

.page-center-wrap .home-big-text {
  display: inline-block;
  font-family: "var(--ff-head";
  font-size: 100px;
  line-height: 160px;
  margin: 0 auto;
  text-align: center;
}

.page-center-wrap .home-big-text.other-font {
  font-family: var(--ff-head);
  font-size: 60px;
  line-height: 90px;
  letter-spacing: -2.25px;
  text-shadow: 0 1px 3px var(--grey-4);
}

.page-center-wrap .home-small-text {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 17px;
  line-height: 25px;
  color: var(--lite);
  letter-spacing: 1px;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(24, 24, 25, 0.75);
  padding: 1px 5px;
}

.page-center-wrap .home-big-text.other-font.font-left {
  font-size: 45px;
  line-height: 70px;
}

.page-center-wrap .home-big-text.other-font.font-left,
.page-center-wrap .home-small-text.font-left {
  text-align: right;
  float: left;
}

.home-background-image {
  background-image: url("../images/engineer-construction-recruiting-face-through-paper-778x700.jpg");
  background-position: 105% 100%;
  background-repeat: no-repeat;
  background-size: 90%;
}

.home-link {
  position: absolute;
  width: 100%;
  bottom: 30px;
  left: 0;
  z-index: 10;
}

.link-down {
  position: relative;
  width: 8px;
  height: 27px;
  float: left;
  background-image: url("../images/down-arrow.png");
  background-size: 8px 27px;
  background-position: center center;
  z-index: 10;
  margin: 10px;
}

.home-carousel-wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 2;
}

#owl-home .item {
  position: relative;
  width: 100%;
  display: block;
  height: 100vh;
  background-size: cover;
  background-position: center center;
}

#owl-home .item.background-home-image-1 {
  background-image: url("//res.cloudinary.com/infin80/image/upload/f_auto,dpr_auto,q_auto:low,h_1200,c_fill/website/brand-cannon-graphic-web-design-logo-corporate-id-8x5.jpg");
}

#owl-home .item.background-home-image-2 {
  background-image: url("//res.cloudinary.com/infin80/image/upload/f_auto,dpr_auto,q_auto:low,h_1200,c_fill/website/sport-tickets-business-cards-logo-design-letterhead-8x5.jpg");
}

#owl-home.owl-theme .owl-controls {
  position: absolute;
  left: 30px;
  text-align: center;
  top: 50%;
  z-index: 100;
  width: 8px;
  z-index: 20;
  transform: translateY(-50%);
}

#owl-home.owl-theme .owl-controls .owl-page span {
  background: var(--dark);
  border-radius: 50%;
  width: 4px;
  height: 4px;
  display: block;
  transition: all 300ms linear;
}

#owl-home.owl-theme .owl-controls .owl-page span:hover {
  transform: scale(1.8);
}

#owl-home.owl-theme .owl-controls .owl-page.active span {
  transform: scale(1.8);
}

/* #Showcase
================================================== */
.case-study-wrapper {
  position: absolute;
  width: 100%;
  max-width: 500px;
  top: 50%;
  left: 50%;
  margin-top: 30px;
  z-index: 10;
  transform: translateY(-50%) translateX(-50%);
}

.case-study-wrapper li {
  list-style: none;
  display: block;
  padding-bottom: 30px;
  text-align: center;
  margin: 0 auto;
  transition: all 0.2s ease-in-out;
}

.case-study-wrapper li h1 {
  text-align: center;
  display: block;
  font-size: 26px;
  padding: 0;
  margin: 0;
  font-family: var(--ff-head);
  line-height: 22px;
  letter-spacing: 2px;
  color: var(--dark);
}

.case-study-wrapper li h2 {
  font-size: 13px !important;
  font-family: var(--ff-unique) !important;
  font-weight: 400;
  padding: 0;
  margin: 0;
  line-height: 30px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
}

.case-study-wrapper li a:hover {
  color: var(--primary);
}

.case-study-wrapper:hover li {
  opacity: 0.2;
}

.case-study-wrapper:hover li:hover {
  opacity: 1;
}

.light-over-portfolio {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 4;
  background-color: #fff;
  opacity: 0.3;
}

.case-study-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  z-index: 2;
}

.case-study-images li {
  transition: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  overflow: hidden;
  list-style: none;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.case-study-images li.show {
  opacity: 1;
}

/* #letters
================================================== */
.home-text {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  z-index: 10;
  transform: translateY(-50%);
  text-align: center;
}

.home-text h1 {
  font-size: 3.75em;
  line-height: 1.25;
  color: var(--dark);
  display: inline-block;
  letter-spacing: -2px;
}

.home-text h1 span.cross-out {
  position: relative;
  font-size: 0.7em;
}

.home-text h1 span.cross-out:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/freeh.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
}

.home-text h1 em {
  font-style: normal;
  font-size: 90%;
}

.cd-title {
  position: relative;
}

.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

/* --------------------------------

xtype

-------------------------------- */
.cd-headline.type .cd-words-wrapper {
  vertical-align: top;
  overflow: hidden;
}

.cd-headline.type .cd-words-wrapper::after {
  /* vertical bar */
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  height: 90%;
  width: 2px;
}

.cd-headline.type .cd-words-wrapper.waiting::after {
  animation: cd-pulse 1s infinite;
}

.cd-headline.type .cd-words-wrapper.selected::after {
  visibility: hidden;
}

.cd-headline.type .cd-words-wrapper.selected b {
  color: #fff;
}

.cd-headline.type b {
  visibility: hidden;
}

.cd-headline.type b.is-visible {
  visibility: visible;
}

.cd-headline.type i {
  position: absolute;
  visibility: hidden;
}

.cd-headline.type i.in {
  position: relative;
  visibility: visible;
}
@keyframes cd-pulse {
  0% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  40% {
    transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .home-background-image {
    background-position: 110% 50%;
    background-size: 60%;
  }
  .home-text {
    text-align: left;
    left: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .home-background-image {
    background-position: 115% 40%;
    background-size: 70%;
  }
  .home-text {
    text-align: left;
    left: 0;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1199px) {
  .home-background-image {
    background-position: 50% -30%;
    background-size: 700px;
  }
  .home-text {
    top: 80%;
  }
  .home-text h1 {
    font-size: 3em;
    line-height: 1.1em;
  }
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .home-background-image {
    background-position: 50% -15%;
    background-size: 700px;
  }
  .home-text {
    top: 75%;
  }
  .home-text h1 {
    font-size: 2.95em;
    line-height: 1.15em;
  }
  .home-text h1 span.cross-out {
    font-size: 30px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .home-background-image {
    background-position: 50% 5%;
    background-size: 375px;
  }
  .home-text h1 {
    font-size: 2.75em;
    line-height: 1.1em;
    margin-top: 130px;
  }
}
.parallax-home {
  background: url("") repeat fixed;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
}

@media only screen and (min-width: 1930px) {
  .parallax-home {
    background-size: cover;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1200px) and (orientation: landscape) {
  .parallax-home {
    background-size: cover;
    background-attachment: scroll;
    background-position: top center !important;
  }
}
@media only screen and (max-width: 1400px) {
  .parallax-home {
    background-size: cover;
    background-attachment: scroll;
    background-position: top center !important;
  }
}
.parallax-project {
  background-size: cover !important;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

body#candidatepage .parallax-project {
  background: url("../images/allegiant-stadium-exterior.webp") no-repeat center fixed;
}

body#clientpage .parallax-project {
  background: url("../images/circa-las-vegas-building-render.webp") no-repeat center fixed;
}

body#knowledgepage .parallax-project {
  background: url("../images/t-mobile-arena-stadium.webp") no-repeat center fixed;
}

body#contactpage .parallax-project {
  background: url("https://res.cloudinary.com/infin80/image/upload/f_auto,dpr_auto,q_auto:low,w_1350,c_fill,o_80/epc/sphere-las-vegas.jpg") no-repeat center fixed;
}

body#demandpage .parallax-project {
  background: url("https://res.cloudinary.com/infin80/image/upload/f_auto,dpr_auto,q_auto:low,w_1350,c_fill,o_60/epc/freemont-street.jpg") no-repeat center fixed;
}

body#reversepage .parallax-project {
  background: url("https://res.cloudinary.com/infin80/image/upload/f_auto,dpr_auto,q_auto:low,w_1350,c_fill,o_60/epc/people-celebrating.jpg") no-repeat center fixed;
}

body#errorpage .parallax-project {
  background: url("https://res.cloudinary.com/infin80/image/upload/f_auto,dpr_auto,q_auto:low,w_1000/website/stop-secret-service-hault-404-page-error.jpg") no-repeat right fixed;
  background-size: contain !important;
}

@media only screen and (min-width: 1930px) {
  .parallax-project {
    background-size: cover;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1200px) and (orientation: landscape) {
  .parallax-project {
    background-size: cover;
    background-attachment: scroll;
    background-position: top center !important;
  }
}
@media only screen and (max-width: 1400px) {
  .parallax-project {
    background-size: cover;
    background-attachment: scroll;
    background-position: top center !important;
  }
}
.parallax-about {
  background: url("../images/about.jpg") repeat fixed;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
}

@media only screen and (min-width: 1930px) {
  .parallax-about {
    background-size: cover;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1200px) and (orientation: landscape) {
  .parallax-about {
    background-size: cover;
    background-attachment: scroll;
    background-position: top center !important;
  }
}
@media only screen and (max-width: 1400px) {
  .parallax-about {
    background-size: cover;
    background-attachment: scroll;
    background-position: top center !important;
  }
}
.parallax-about-pattern {
  background: url("../images/seamless-bkgrd-lt-grey-paper.jpg") repeat fixed;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
}

@media only screen and (min-width: 1930px) {
  .parallax-about-pattern {
    background-size: cover;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1200px) and (orientation: landscape) {
  .parallax-about-pattern {
    background-size: cover;
    background-attachment: scroll;
    background-position: top center !important;
  }
}
@media only screen and (max-width: 1400px) {
  .parallax-about-pattern {
    background-size: cover;
    background-attachment: scroll;
    background-position: top center !important;
  }
}
.parallax-blog {
  background: url("../images/blog.jpg") repeat fixed;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
}

@media only screen and (min-width: 1930px) {
  .parallax-blog {
    background-size: cover;
  }
}
@media only screen and (min-device-width: 768px) and (max-device-width: 1200px) and (orientation: landscape) {
  .parallax-blog {
    background-size: cover;
    background-attachment: scroll;
    background-position: top center !important;
  }
}
@media only screen and (max-width: 1400px) {
  .parallax-blog {
    background-size: cover;
    background-attachment: scroll;
    background-position: top center !important;
  }
}
#projects-grid {
  position: relative;
  margin: 0 auto;
  width: calc(100% - 50px);
  max-width: 1300px;
  overflow: hidden;
}

#projects-grid:after {
  content: "";
  display: block;
  clear: both;
}

.portfolio-box-1 {
  position: relative;
  float: left;
  width: calc(33.3333333333% - 30px);
  display: inline-block;
  box-sizing: border-box;
  overflow: hidden;
  margin-left: 14px;
  margin-right: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  transform: translate3d(1px, 0, 0);
}

.half-width {
  width: calc(50% - 30px);
}

.full-width {
  width: calc(100% - 30px);
}

.portfolio-box-1 .work-title {
  position: relative;
  display: inline-block;
  font-family: var(--ff-head);
  letter-spacing: -0.75px;
  font-size: 23px;
  line-height: 26px;
  text-align: left;
  color: var(--dark);
  padding-bottom: 5px;
  transition: all 300ms linear;
}

.portfolio-box-1 .work-title:before {
  position: absolute;
  content: "";
  left: -105%;
  width: 100%;
  height: 2px;
  bottom: 0;
  z-index: 2;
  transition: all 300ms linear;
}

.portfolio-box-1:hover .work-title:before {
  left: 0;
}

.portfolio-box-1 .work-subtitle {
  position: relative;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0.5px;
  font-family: var(--ff-sans);
  color: var(--grey-3);
  text-align: left;
  display: inline-block;
  text-transform: lowercase;
}

.portfolio-box-1 img {
  width: 100%;
  display: block;
  padding-bottom: 12px;
}

.portfolio-box-1 .work-subtitle a {
  color: var(--grey-3);
  padding: 0 3px;
}

.portfolio-box-1 .work-subtitle a:hover {
  background-color: var(--primary);
  color: #fff;
  transition: all 0.2s ease-out;
}

#portfolio-filter {
  position: relative;
  text-align: center !important;
  width: 100%;
  margin-bottom: 20px;
}

#portfolio-filter.left-filter {
  text-align: left;
  margin-bottom: 0;
}

#filter {
  position: relative;
  display: inline-block;
  text-align: center;
  border-radius: 30px;
}

#filter li {
  display: inline-block;
  text-align: center;
}

#filter:after {
  content: "";
  display: block;
  clear: both;
}

#filter li a {
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
  padding: 6px 14px;
  box-sizing: border-box;
  font-size: 13px;
  line-height: 12px;
  text-align: center;
  outline: none;
  color: var(--dark);
  border-radius: 30px;
  border: 2px solid transparent;
  font-family: var(--ff-sans);
  text-decoration: none;
  transition: all 300ms linear;
}

.isotope-item {
  z-index: 2;
}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
}

.isotope, .isotope .isotope-item {
  transition-duration: 0.6s;
}

.isotope {
  transition-property: height, width;
}

.isotope .isotope-item {
  transition-property: transform, opacity;
}

.portfolio-text p {
  text-align: left;
  margin-bottom: 15px;
}

.portfolio-text p:last-child {
  margin-bottom: 0;
}

.left-projects, .center-projects {
  position: relative;
  display: inline-block;
  float: left;
  text-align: left;
  color: var(--dark);
  font-family: var(--ff-head);
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  overflow: hidden;
  transition: all 300ms linear;
}

.center-projects {
  display: block;
  text-align: center;
  margin: 0 auto;
  float: none;
}

.center-projects:hover {
  color: var(--primary);
}

.left-projects:before {
  position: absolute;
  content: "";
  background-image: url("../images/left-arrow.png");
  background-repeat: no-repeat;
  background-size: 35px 10px;
  background-position: center center;
  z-index: 2;
  width: 35px;
  height: 10px;
  left: -35px;
  top: 7px;
  transition: all 300ms linear;
}

.left-projects:hover:before {
  left: 0;
  transition-delay: 200ms;
}

.left-projects:hover {
  padding-left: 55px;
}

.right-projects {
  position: relative;
  display: inline-block;
  float: right;
  text-align: right;
  color: var(--dark);
  font-family: var(--ff-head);
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  overflow: hidden;
  transition: all 300ms linear;
}

.right-projects:hover {
  padding-right: 55px;
}

.right-projects:before {
  position: absolute;
  content: "";
  background-image: url("../images/right-arrow.png");
  background-repeat: no-repeat;
  background-size: 35px 10px;
  background-position: center center;
  z-index: 2;
  width: 35px;
  height: 10px;
  right: -35px;
  top: 7px;
  transition: all 300ms linear;
}

.right-projects:hover:before {
  right: 0;
  transition-delay: 200ms;
}

.link-scaledown a::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
  content: "";
  opacity: 0;
  transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
  transform: scale(1.1);
}

h6 {
  padding-bottom: 30px;
  text-align: left;
  position: relative;
}

h6:before {
  position: absolute;
  content: "";
  bottom: 20px;
  left: 0;
  height: 3px;
  width: 35px;
}

.title-wrapper {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 15px;
}

.title-wrapper .title-text-top {
  position: relative;
  display: inline-block;
  text-align: left;
  font-family: var(--ff-head);
  font-size: 30px;
}

.title-wrapper .title-text-bottom {
  position: relative;
  display: inline-block;
  text-align: left;
  max-width: 550px;
  font-family: var(--ff-unique);
  font-size: 19px;
  line-height: 27px;
  padding-top: 20px;
  color: var(--grey-2);
  letter-spacing: 0.1px;
  font-weight: bold;
}

.team-wrap {
  position: relative;
  width: 100%;
  display: block;
}

.team-wrap img {
  width: 100%;
  display: block;
  margin-bottom: 15px;
}

.social-team {
  position: relative;
  display: block;
  float: left;
}

.list-social-team li {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  width: 13px;
  height: 13px;
  display: inline-block;
  cursor: pointer;
  margin-right: 12px;
  transition: all 300ms linear;
}

.list-social-team li.icon-team a {
  font-family: "FontAwesome";
  font-size: 13px;
  line-height: 13px;
  width: 20px;
  color: #999;
  opacity: 1;
  margin: 0;
  padding: 0;
  transition: all 300ms linear;
}

#logos .container .columns, #logos .container .three.columns {
  margin-top: 5px !important;
}

.partners {
  position: relative;
  width: 100%;
  display: block;
  margin: 0 auto;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
}

.partners img {
  width: 70%;
  height: auto;
  display: block;
  margin: auto;
  text-align: center;
  opacity: 0.6;
  filter: grayscale(1);
  opacity: 0.6;
  transition: all 300ms linear;
}

.partners img:first-child {
  width: 80%;
}

.partners:hover img {
  opacity: 1;
  filter: grayscale(0);
}

#owl-sep-1 {
  position: relative;
  width: 100%;
  max-width: 950px;
  display: block;
}

#owl-sep-1 .item {
  position: relative;
  width: 100%;
  margin-left: 0 auto;
  z-index: 2;
  display: block;
}

.quote {
  padding-bottom: 35px;
}

.quote h4 {
  text-align: left;
  font-family: var(--ff-unique);
  font-size: 1.3em;
  line-height: 1.65;
  color: var(--secondary);
  letter-spacing: 0.25px;
  width: 100%;
}

.quote h4 i {
  padding: 0px 25px 195px 2px;
  float: left;
}

.quote p {
  text-align: left;
  color: var(--dark);
  font-family: var(--ff-head);
  font-weight: 400;
  font-size: 1.25em;
  line-height: 1.4;
  width: 100%;
  margin-top: 25px;
}

#owl-sep-1.owl-theme .owl-controls {
  position: absolute;
  left: 0;
  text-align: left;
  bottom: 0;
  z-index: 100;
  width: 100%;
  z-index: 20;
}

#owl-sep-1.owl-theme .owl-controls .owl-page span {
  background: var(--grey-2);
  border-radius: 50%;
  width: 7px;
  height: 7px;
  margin-right: 12px;
  margin-top: 5px;
  transition: all 200ms linear;
}

#owl-sep-1.owl-theme .owl-controls .owl-page span:hover {
  transform: scale(1.5);
}

#owl-sep-1.owl-theme .owl-controls .owl-page.active span {
  transform: scale(1.5);
}

.blog-box {
  position: relative;
  float: left;
  width: calc(33.3333333333% - 30px);
  display: inline-block;
  box-sizing: border-box;
  overflow: hidden;
  margin-left: 14px;
  margin-right: 15px;
  margin-top: 15px;
  margin-bottom: 15px;
  transform: translate3d(1px, 0, 0);
}

.content-in {
  position: relative;
  width: 100%;
  padding-bottom: 30px;
  background-color: #ecefef;
  transition: all 0.4s linear;
}

.content-in:hover {
  background-color: #f8f8f8;
}

.content-in:hover img {
  transform: scale(1.07);
}

.content-in img {
  width: 100%;
  display: block;
}

.content-in h6 {
  margin-top: 30px;
  margin-left: 30px;
  margin-right: 30px;
  transition: all 300ms linear;
}

.content-in h6:hover {
  opacity: 0.9;
}

.content-in h6:before {
  background-color: var(--grey-2);
}

.content-in p {
  text-align: left;
  padding-bottom: 25px;
  padding-left: 30px;
  padding-right: 30px;
}

.content-in .tag-link {
  position: relative;
  display: inline-block;
  text-align: left;
  margin-right: 5px;
  font-family: var(--ff-unique);
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--grey-3);
  transition: all 300ms linear;
}

.content-in .tag-link.first {
  margin-left: 30px;
}

.content-in .blog-link {
  position: relative;
  display: inline-block;
  text-align: left;
  margin-top: 20px;
  font-family: var(--ff-sans);
  font-size: 14px;
  line-height: 17px;
  font-weight: 700;
  margin-left: 30px;
  transition: all 300ms linear;
}

.content-in .blog-link:hover {
  letter-spacing: 1px;
}

/* Video Hover Image */
.video-wrapper, figure.vimeo, figure.youtube {
  margin: 0;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 0;
  height: 0;
  overflow: hidden;
  margin-bottom: 25px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

figure.youtube a img, figure.vimeo a img {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: 100%;
  max-width: none;
}

figure.vimeo a:after, figure.youtube a:after {
  content: "";
  width: 80px;
  height: 80px;
  background: #fff;
  z-index: 9;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -40px 0 0 -40px;
  border-radius: 50%;
  box-shadow: 0px 0px 20px 10px rgba(0, 0, 0, 0.1);
  transition: all 300ms linear;
}

figure.vimeo:hover a:after, figure.youtube:hover a:after {
  background: var(--dark);
  box-shadow: 0px 0px 30px 10px rgba(0, 0, 0, 0.2);
}

figure.vimeo a:before, figure.youtube a:before {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 8px solid #414141;
  z-index: 10;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -3px;
  margin-top: -7px;
  display: block;
  transition: all 300ms linear;
}

figure.vimeo:hover a:before, figure.youtube:hover a:before {
  border-left: 10px solid #fff;
}

figure.vimeo a:hover img, figure.youtube a:hover img {
  transition: all 0.6s;
  transform: scale(1.03) rotate(1deg);
}

figure.vimeo a img, figure.youtube a img {
  transition: all 300ms linear;
  transform: scale(1);
}

.post-wrapper {
  position: relative;
  width: 100%;
}

.post-wrapper img {
  width: 100%;
  display: block;
  margin-bottom: 25px;
}

.post-wrapper h6 {
  text-align: left;
}

.post-wrapper p.larger {
  text-align: left;
  font-size: 18px;
  line-height: 24px;
  font-style: italic;
}

.post-wrapper p {
  text-align: left;
  padding-bottom: 25px;
}

#owl-blog-slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

#owl-blog-slider .item {
  position: relative;
  width: 100%;
}

#owl-blog-slider .item img {
  width: 100%;
  display: block;
  height: auto;
}

#owl-blog-slider.owl-theme .owl-controls {
  position: absolute;
  left: 0;
  text-align: center;
  bottom: 30px;
  z-index: 100;
  width: 100%;
  z-index: 20;
}

#owl-blog-slider.owl-theme .owl-controls .owl-page span {
  background-color: #000;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  margin-bottom: 10px;
  transition: all 300ms linear;
}

.post-wrapper blockquote {
  font-size: 18px;
  line-height: 25px;
  font-style: italic;
  padding-top: 0;
  padding-bottom: 0;
  color: #777;
  padding-left: 40px;
  margin-top: 15px;
  margin-bottom: 40px;
}

.post-wrapper img.half-post-image-left {
  width: 50%;
  display: block;
  float: left;
  margin-right: 25px;
  margin-bottom: 25px;
}

.image-title-left {
  font-size: 14px;
  line-height: 14px;
  font-style: italic;
  width: 100%;
  text-align: left;
  display: block;
  float: left;
  font-family: var(--ff-sans);
  color: #999;
  margin-bottom: 10px;
}

.post-wrapper img.half-post-image-right {
  width: 50%;
  display: block;
  float: right;
  margin-left: 25px;
  margin-bottom: 25px;
}

.image-title-right {
  font-size: 14px;
  line-height: 14px;
  font-style: italic;
  width: 100%;
  text-align: right;
  display: block;
  float: right;
  font-family: var(--ff-sans);
  color: #999;
  margin-bottom: 10px;
}

.num-of-com {
  position: relative;
  display: block;
  width: 100%;
  color: var(--dark);
  font-family: var(--ff-head);
  font-weight: 400;
  text-align: left;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 1px;
  padding-top: 40px;
}

.num-of-com span {
  padding-right: 10px;
  font-size: 55px;
  line-height: 20px;
  font-style: italic;
}

.comm-link {
  position: relative;
  display: inline-block;
  font-family: var(--ff-sans);
  font-weight: 400;
  text-align: left;
  font-size: 17px;
  line-height: 20px;
  font-style: italic;
  margin-top: 10px;
  transition: all 300ms linear;
}

.comm-link:hover {
  opacity: 0.6;
}

.sidebar {
  position: relative;
  width: 100%;
}

.sidebar-sep {
  position: relative;
  width: 100%;
  padding-bottom: 70px;
}

.sidebar-list-one {
  position: relative;
  width: 100%;
  display: block;
}

.sidebar-list-one li {
  position: relative;
  display: block;
  padding-left: 45px;
  margin-bottom: 20px;
}

.sidebar-list-one li a {
  font-family: var(--ff-sans);
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  color: var(--dark);
  text-align: left;
  letter-spacing: 1px;
  transition: all 300ms linear;
}

.sidebar-list-one li a:hover {
  padding-left: 5px;
}

.sidebar-list-one li:last-child {
  margin-bottom: 0;
}

.sidebar-list-one li:before {
  position: absolute;
  padding: 0;
  margin: 0;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  left: 20px;
  top: 8px;
  z-index: 2;
}

.sidebar-list-two {
  position: relative;
  width: 100%;
  display: block;
}

.sidebar-list-two li {
  position: relative;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 14px;
}

.sidebar-list-two li a {
  font-family: var(--ff-sans);
  font-size: 13px;
  line-height: 13px;
  font-weight: 500;
  color: #999;
  border-radius: 20px;
  border: 2px solid #999;
  padding: 5px 15px;
  text-align: center;
  letter-spacing: 1px;
  transition: all 300ms linear;
}

.sidebar-list-two li a:hover {
  color: #fff;
}

.sidebar-search {
  position: relative;
  width: 100%;
  display: block;
}

.sidebar-search input {
  position: relative;
  width: calc(100% - 40px);
  padding-left: 20px;
  padding-right: 20px;
  font-family: var(--ff-unique);
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 13px;
  line-height: 24px;
  padding-bottom: 15px;
  background: transparent;
  border: none;
  color: #737373;
  transition: border-bottom 0.3s, color 0.3s;
}

.sidebar-search input {
  border-bottom: 1px solid rgba(100, 100, 100, 0.2);
}

.sidebar-search input:focus {
  outline: none !important;
}

.sidebar-search input:focus {
  outline: none !important;
}

.sidebar-search input:-ms-input-placeholder {
  font-size: 11px;
  letter-spacing: 1px;
  color: #414141;
}

.sidebar-search input::-moz-placeholder {
  font-size: 11px;
  letter-spacing: 1px;
  color: #414141;
}

.sidebar-search input:-moz-placeholder {
  font-size: 11px;
  letter-spacing: 1px;
  color: #414141;
}

.sidebar-search input::-webkit-input-placeholder {
  font-size: 11px;
  letter-spacing: 1px;
  color: #414141;
}

.sidebar-search button {
  position: absolute;
  font-family: "FontAwesome";
  width: 30px;
  right: 0;
  top: 0;
  height: 30px;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  padding: 0;
  margin: 0;
  border: none;
  color: #fff;
  z-index: 2;
  transition: all 300ms linear;
}

.sidebar-search button:hover {
  opacity: 0.6;
}

.sidebar-search button:focus,
.sidebar-search button:active {
  border: none;
  outline: none;
}

.comment {
  position: relative;
  display: block;
  width: 100%;
  padding-bottom: 80px;
}

.comment.subcomment {
  width: calc(100% - 70px);
  margin-left: 70px;
}

.comment img {
  position: absolute;
  display: block;
  width: 80px;
  height: 80px;
  top: 0;
  left: 0;
  border-radius: 50%;
}

.comment .time {
  position: relative;
  padding-left: 110px;
  font-style: italic;
  padding-top: 15px;
  font-family: var(--ff-sans);
  font-size: 13px;
  line-height: 13px;
  padding-bottom: 3px;
  color: #444;
}

.comment h6:before {
  left: 110px;
}

.comment h6,
.comment p {
  padding-left: 110px;
}

.comment a {
  position: relative;
  font-family: var(--ff-unique);
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  display: block;
  float: right;
  text-align: right;
  margin-top: 40px;
  opacity: 0.6;
  transition: all 300ms linear;
}

.comment a:hover {
  opacity: 1;
}

form {
  width: 100%;
  font-family: var(--ff-unique);
  font-size: 11px;
  line-height: 14px;
  color: var(--dark);
  margin: 0 auto;
}

form label {
  display: block;
  font-family: var(--ff-unique);
  font-size: 14px;
  line-height: 30px;
}

form input {
  position: relative;
  width: calc(100% - 40px);
  padding-left: 20px;
  padding-right: 20px;
  font-family: var(--ff-unique);
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 24px;
  padding-bottom: 15px;
  background: transparent;
  border: none;
  color: var(--primary);
  transition: border-bottom 0.3s, color 0.3s;
}

form textarea {
  width: calc(100% - 40px);
  padding-left: 20px;
  padding-right: 20px;
  font-family: var(--ff-unique);
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 13px;
  line-height: 24px;
  background: transparent;
  height: 100px;
  border: none;
  color: var(--primary);
  transition: border-bottom 0.3s, color 0.3s;
}

form textarea, form input {
  border-bottom: 1px solid rgba(100, 100, 100, 0.2);
}
form select {
  position: relative;
  width: calc(100% - 40px);
  padding-left: 20px;
  padding-right: 20px;
  font-family: var(--ff-unique);
  font-weight: 400;
  letter-spacing: 1px;
  font-size: 14px;
  line-height: 24px;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(100, 100, 100, 0.2);
  color: var(--primary);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-bottom 0.3s, color 0.3s;
  cursor: pointer;
}

/* Optional: custom arrow indicator */
form select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='30,55 70,95 110,55' fill='none' stroke='%23999' stroke-width='10' stroke-linecap='round' stroke-linejoin='round' /%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}

/* Firefox fix to align the arrow */
form select::-ms-expand {
  display: none;
}

.error {
  font: 11px/22px var(--ff-unique);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: none;
  color: #bd0b0f;
}

#ajaxsuccess {
  background: #ecf0f0;
  color: var(--primary);
  font: 20px/60px var(--ff-unique);
  height: 60px;
  display: none;
  padding-left: 20px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

.text-align-left {
  text-align: left;
  padding-top: 10px;
  margin-left: 25px;
  margin-right: 25px;
}

form textarea:active,
form input:active {
  color: var(--primary) !important;
  font-weight: 700;
}

form textarea:active,
form input:hover {
  color: var(--primary);
}

form textarea:focus,
form input:focus {
  outline: none !important;
}

form input:-ms-input-placeholder {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
}

form input::-moz-placeholder {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
}

form input:-moz-placeholder {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
}

form input::-webkit-input-placeholder {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
}

form textarea:-ms-input-placeholder {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
}

form textarea::-moz-placeholder {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
}

form textarea:-moz-placeholder {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
}

form textarea::-webkit-input-placeholder {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--secondary);
}

form button {
  background: var(--secondary);
  color: #fff;
  font-size: 13px;
  padding: 13px 25px;
  max-width: 150px;
}

form button:hover {
  color: #fff;
}

form button:focus,
form button:active {
  border: none;
  outline: none;
}

.button-effect {
  display: block;
  border: none;
  background: none;
  color: inherit;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
  float: left;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.button-effect:focus {
  outline: none;
}

.button-effect > span {
  vertical-align: middle;
}

.button--moema {
  padding: 14px 26px;
  border-radius: 1px;
  text-align: center;
  background: var(--secondary);
  letter-spacing: 2px;
  color: #fff;
  transition: background-color 0.3s, color 0.3s;
}

.button--moema::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  bottom: -20px;
  right: -20px;
  background: inherit;
  border-radius: 3px;
  z-index: -1;
  opacity: 0.4;
  transform: scale3d(0.8, 0.5, 1);
}

.button--moema:hover {
  transition: background-color 0.3s 0s, color 0.3s 0s;
  color: #fff;
  animation: anim-moema-1 0.6s forwards;
}

.button--moema:hover::before {
  animation: anim-moema-2 0.6s 0.5s forwards;
}
@keyframes anim-moema-1 {
  60% {
    transform: scale3d(0.8, 0.8, 1);
  }
  85% {
    transform: scale3d(1.2, 1.2, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}
@keyframes anim-moema-2 {
  to {
    opacity: 0;
    transform: scale3d(1, 1, 1);
  }
}
/* #Google map
================================================== */
#google-container {
  position: relative;
  width: 100%;
  height: 70vh;
}

#cd-google-map {
  position: relative;
}

#cd-zoom-in, #cd-zoom-out {
  height: 32px;
  width: 32px;
  cursor: pointer;
  margin-left: 10px;
  background-repeat: no-repeat;
  background-size: 32px 64px;
  opacity: 0.7;
  background-image: url("../images/cd-icon-controller.svg");
  z-index: 3;
  transition: all 300ms linear;
}

#cd-zoom-in:hover, #cd-zoom-out:hover {
  opacity: 1;
}

.no-touch #cd-zoom-in:hover, .no-touch #cd-zoom-out:hover {
  opacity: 1;
}

#cd-zoom-in:hover, #cd-zoom-out:hover {
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  #cd-zoom-in, #cd-zoom-out {
    margin-left: 50px;
  }
}
#cd-zoom-in {
  background-position: 50% 0;
  margin-top: 50px;
  margin-bottom: 1px;
  z-index: 3;
}

#cd-zoom-out {
  background-position: 50% -32px;
  z-index: 3;
}

/* #Tooltip
================================================== */
.tipper {
  height: 1px;
  left: -99999px;
  position: absolute;
  pointer-events: none;
  top: -99999px;
  width: 1px;
  z-index: 100000;
}

.tipper .tipper-content {
  background: transparent;
  font-weight: 400;
  letter-spacing: 1px;
  border-radius: 3px;
  display: block;
  float: left;
  font-family: var(--ff-head);
  font-size: 20px;
  margin: 0;
  padding: 6px 20px;
  position: relative;
  white-space: nowrap;
}

.tipper .tipper-caret {
  display: block;
  height: 11px;
  position: absolute;
  width: 100%;
}

.tipper.right .tipper-caret {
  background-position: left center;
  left: -5px;
  top: 0;
}

.tipper.left .tipper-caret {
  background-position: right center;
  right: -5px;
  top: 0;
}

.tipper.top .tipper-caret,
.tipper.bottom .tipper-caret {
  display: block;
  float: none;
  height: 5px;
  width: 12px;
  margin-left: -6px;
}

.tipper.top .tipper-caret {
  background-position: center bottom;
  bottom: -5px;
  left: 0;
  text-align: center;
}

.tipper.bottom .tipper-caret {
  background-position: center top;
  top: -5px;
  left: 0;
}

.footer .footer-flex {
  display: flex;
  justify-content: space-around;
}

.footer p {
  text-align: left;
  color: var(--grey-3);
  padding-bottom: 5px;
}

.logo-text-footer {
  position: relative;
  transition: all 300ms linear;
}

.logo-text-footer:hover {
  opacity: 0.75;
}

.social-footer {
  position: relative;
  display: block;
}

.list-social-footer li {
  width: 45px;
  display: inline-block;
  margin-bottom: 12px;
  transition: all 300ms linear;
}

.list-social-footer li, div.icon-footer i:first-child, div.icon-footer i {
  margin-left: 0;
}

.list-social-footer li.icon-footer a {
  font-size: 18px;
  color: var(--secondary);
  transition: all 100ms linear;
}

.icon-footer p {
  white-space: nowrap;
}

.icon-footer a {
  margin-top: 12px;
}

/* #Scroll back to top
================================================== */
.scroll-to-top {
  position: fixed;
  cursor: pointer;
  top: 120px;
  opacity: 0.5;
  right: 40px;
  width: 30px;
  height: 30px;
  display: none;
  z-index: 9999;
  background-image: url("../images/up-arrow.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 30px 30px;
  transition: all 300ms linear;
}

.scroll-to-top:hover {
  opacity: 1;
  top: 110px;
}

p.rotate-phone {
  position: fixed;
  top: 208px;
  right: -6px;
  transform: rotate(90deg);
  z-index: 5;
}

p.rotate-phone a {
  background: none;
}

p.rotate-phone a:hover {
  color: var(--primary);
}

/* #Media Queries
================================================== */
@media only screen and (max-width: 1200px) {
  .page-center-wrap .home-big-text {
    font-size: 70px;
    line-height: 110px;
  }
  .page-center-wrap .home-small-text {
    font-size: 15px;
    line-height: 21px;
  }
}
@media only screen and (max-width: 959px) {
  .list-social-footer li {
    width: 25px;
  }
  .logo-text-footer img {
    width: 145px;
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .footer .footer-flex {
    display: block;
  }
  .footer .footer-flex .column {
    margin-bottom: 15px;
  }
  .logo-text-footer img {
    width: initial;
  }
}
/* ––––––––––––––––––––––––––––––––––––––––––––––––––
Menu Mobile style's
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media only screen and (max-width: 1199px) {
  .menu img {
    width: calc(100% - 20px);
    display: block;
  }
  .video-section {
    max-width: calc(100% - 20px);
  }
  .menu-container {
    width: calc(100% - 80px);
    max-width: calc(100% - 80px);
    margin: 0 auto;
  }
  .menu-back {
    background: rgb(0, 0, 0);
    transition: all 0.3s ease-out;
  }
  .cbp-af-header.cbp-af-header-shrink {
    background: rgb(0, 0, 0);
    transition: all 0.3s ease-out;
  }
  .cbp-af-header.cbp-af-header-shrink .logo {
    position: absolute;
    height: 36px;
    z-index: 10000;
    top: 18px;
    transition: all 0.3s ease-out;
  }
  .cbp-af-header.cbp-af-header-shrink .logo img {
    height: 36px;
    display: block;
  }
  .logo {
    position: absolute;
    height: 50px;
    z-index: 10000;
    top: 18px;
    transition: all 0.3s ease-out;
  }
  .logo img {
    height: 70px;
    display: block;
  }
  .cbp-af-header.cbp-af-header-shrink .menu > ul > li a {
    padding: 16px 0;
    transition: all 0.3s ease-out;
  }
  .cbp-af-header.cbp-af-header-shrink .menu > ul > li > ul > li a {
    padding: 0;
    margin-left: 10px;
    margin-right: 10px;
    color: #c5c5c5;
    font-family: "Open Sans";
    font-weight: 500;
    font-size: 10px;
    line-height: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 100%;
    display: block;
  }
  .menu > ul > li a {
    padding: 16px 0;
  }
  .menu > ul > li > ul > li a {
    padding: 0;
    margin-left: 10px;
    margin-right: 10px;
    color: #c5c5c5;
    font-family: "Open Sans";
    font-weight: 500;
    font-size: 10px;
    line-height: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 100%;
    display: block;
  }
  .menu-container {
    width: 100%;
  }
  .menu-mobile {
    display: block;
  }
  .menu-dropdown-icon-sub:before,
  .menu-dropdown-icon:before {
    display: block;
    position: relative;
  }
  .menu > ul > li > ul {
    padding: 0;
    background-color: #000;
  }
  .menu > ul {
    overflow: hidden;
    width: 100%;
    float: none;
    position: relative;
    display: block;
    visibility: hidden;
    opacity: 0;
    height: 0;
    transition: all 0.2s ease-in-out;
  }
  .menu > ul > li {
    width: 100%;
    float: none;
    display: block;
  }
  .menu > ul > li a {
    width: 100%;
    display: block;
  }
  .menu > ul > li > ul {
    position: relative;
  }
  .menu > ul > li > ul.normal-sub {
    width: 100%;
    padding: 0;
  }
  .menu > ul > li > ul.normal-sub > li a span.go-right-icon,
  .menu > ul > li > ul.normal-sub > li a span.go-left-icon {
    display: none;
  }
  .menu > ul > li > ul.normal-sub > li ul.go-right,
  .menu > ul > li > ul.normal-sub > li ul.go-left {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    padding: 0 10px;
    background: #000;
    display: block;
  }
  .menu > ul > li > ul.normal-sub > li ul.go-right li a,
  .menu > ul > li > ul.normal-sub > li ul.go-left li a {
    padding: 5px 0;
  }
  .cbp-af-header.cbp-af-header-shrink .menu > ul > li > ul.normal-sub > li ul.go-right li a,
  .cbp-af-header.cbp-af-header-shrink .menu > ul > li > ul.normal-sub > li ul.go-left li a {
    padding: 5px 0;
  }
  .cbp-af-header.cbp-af-header-shrink .menu > ul > li > ul.normal-sub {
    width: 100%;
    padding: 0;
  }
  .menu > ul > li > ul.normal-sub > li {
    padding-bottom: 0;
    display: block;
  }
  .cbp-af-header.cbp-af-header-shrink .menu > ul > li > ul.normal-sub > li a {
    border: 0;
    padding: 10px 0;
  }
  .menu > ul > li > ul.normal-sub > li a {
    border: 0;
    padding: 10px 0;
  }
  .menu > ul > li > ul.normal-sub p {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 20px;
    margin-bottom: 7px;
    width: calc(100% - 20px);
  }
  .menu > ul > li > ul > li.two-col,
  .menu > ul > li > ul > li.three-col,
  .menu > ul > li > ul > li.two-thirds-col,
  .menu > ul > li > ul > li {
    float: none;
    width: 100%;
    padding-bottom: 15px;
  }
  .menu > ul > li > ul > li:first-child {
    margin: 0;
  }
  .menu > ul > li > ul > li > ul {
    position: relative;
  }
  .menu > ul > li > ul > li > ul > li {
    float: none;
  }
  .menu .show-on-mobile {
    display: block;
    visibility: visible;
    opacity: 1;
    height: auto;
  }
  .form-section {
    margin-left: 0;
  }
  .tab-content ul > li,
  .tab-content ul > li.three-col,
  .tab-content ul > li.two-col,
  .tab-content ul > li.two-thirds-col {
    width: 100%;
    float: none;
    padding-bottom: 15px;
  }
  ul.tabs li:last-child,
  ul.tabs li {
    width: calc(100% - 40px);
    padding: 10px 20px;
    border-right: none;
    border-bottom: 1px solid #161616;
  }
  .back-logo-image {
    background-image: none;
  }
  .menu > ul > li.social-mobile,
  .cbp-af-header.cbp-af-header-shrink .menu > ul > li.social-mobile {
    display: inline-block;
    width: auto;
  }
  .menu > ul > li a.social,
  .cbp-af-header.cbp-af-header-shrink .menu > ul > li a.social {
    padding: 30px 8px;
    display: inline-block;
  }
  .menu > ul > li a.social.first-icon,
  .cbp-af-header.cbp-af-header-shrink .menu > ul > li a.social.first-icon {
    padding-left: 0;
  }
  .back-logo-image {
    background-size: 0 0;
  }
  /* #Light scheme menu on mobile
  ================================================== */
  .menu.light .menu-mobile:after {
    color: var(--dark);
  }
  .cbp-af-header.light.cbp-af-header-shrink .menu-mobile {
    padding-top: 40px;
    padding-bottom: 20px;
    transition: all 0.3s ease-out;
  }
  .menu-mobile {
    transition: all 0.3s ease-out;
  }
  .menu.light .menu-dropdown-icon:before {
    background: #fff;
    color: #000;
  }
  .menu.light > ul > li > ul {
    background: rgb(245, 245, 245);
    box-shadow: none;
  }
  .menu.light > ul {
    background: rgb(245, 245, 245);
    box-shadow: none;
  }
  .menu.light > ul > li > ul > li p {
    color: #000;
    border-bottom: 1px solid rgba(120, 120, 120, 0.2);
  }
  .menu.light > ul > li > ul.normal-sub > li ul.go-left,
  .menu.light > ul > li > ul.normal-sub > li ul.go-right {
    background: transparent;
    box-shadow: none;
  }
  ul.tabs.light li {
    color: #000;
    border-right: 1px solid #dbdbdb;
    background-color: #f0f0f0;
  }
  ul.tabs.light li:hover,
  ul.tabs.light li.current,
  .tab-content.light,
  .menu.light .form-section {
    background-color: #f9f9f9;
  }
  ul.tabs.light li {
    border-bottom: 1px solid rgba(120, 120, 120, 0.1);
  }
  .menu.light .form-section {
    background-color: #fff;
  }
  /* #Parallax background menu image on mobile
  ================================================== */
  #menu-wrap .parallax-home {
    display: none;
  }
  /* #Menu background is not trasparent mobile fix
  ================================================== */
  .menu-back.menu-have-back-color {
    background: rgb(0, 0, 0);
  }
  .cbp-af-header.menu-have-back-color.cbp-af-header-shrink {
    background: rgb(0, 0, 0);
  }
  .menu-back.light.menu-have-back-color {
    background: rgb(245, 245, 245);
  }
  .cbp-af-header.light.menu-have-back-color.cbp-af-header-shrink {
    background: rgb(245, 245, 245);
  }
  /* #Icon on left side for menu on mobile
  ================================================== */
  .menu.move-for-left .menu-mobile:after {
    float: left;
  }
  /* #Mobile fix for menu center and logo top
  ================================================== */
  .menu.menu-center-logo-top {
    margin: 0;
  }
  .menu.menu-center-logo-top > ul {
    float: none;
    margin: 0;
    width: 100%;
    text-align: left;
  }
  .menu.menu-center-logo-top > ul > li {
    float: left;
    margin: 0;
    display: block;
  }
  .cbp-af-header.cbp-af-header-shrink .logo.menu-center-logo-top {
    top: 34px;
    left: 0;
    transform: translateX(0);
  }
  .logo.menu-center-logo-top {
    top: 34px;
    left: 0;
    transform: translateX(0);
  }
  .menu-container.menu-center-logo-top {
    padding-top: 0;
  }
  .cbp-af-header.cbp-af-header-shrink .menu-container.menu-center-logo-top {
    padding-top: 0;
  }
}
@media only screen and (max-width: 1100px) {
  .portfolio-box-1 {
    width: calc(50% - 30px);
  }
  .blog-box {
    width: calc(50% - 30px);
  }
  .page-center-wrap .home-big-text.other-font {
    font-size: 52px;
    line-height: 50px;
    margin-bottom: 8px;
  }
  .page-center-wrap .home-big-text.other-font.font-left {
    font-size: 40px;
    line-height: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .portfolio-box-1 {
    width: 100%;
  }
  .blog-box {
    width: calc(100% - 30px);
  }
}
@media only screen and (max-width: 600px) {
  .portfolio-box-1.half-width {
    width: calc(100% - 30px);
  }
  .page-center-wrap .home-big-text {
    font-size: 55px;
    line-height: 90px;
  }
  .page-center-wrap .home-small-text {
    font-size: 14px;
    line-height: 18px;
  }
  .home-text h1 {
    font-size: 26px;
    line-height: 38px;
  }
  .home-text h1 span.cross-out {
    font-size: 18px;
    line-height: 38px;
  }
  .case-study-wrapper li a {
    font-size: 20px;
    line-height: 18px;
    letter-spacing: 1px;
  }
  .case-study-wrapper li a span {
    font-size: 12px;
    letter-spacing: 1px;
  }
}
@media only screen and (min-width: 1320px) {
  .cta-box h4 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 960px) and (max-width: 1199px) {
  .cta-box {
    font-size: 1.25em;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .cta-box {
    font-size: 1.15em;
    padding: 25px;
  }
  .social-footer {
    float: left;
  }
  .comment img {
    display: none;
  }
  .comment .time {
    padding-left: 0;
    padding-top: 0;
  }
  .comment h6:before {
    left: 0;
  }
  .comment h6,
  .comment p {
    padding-left: 0;
  }
  .comment.subcomment {
    width: calc(100% - 30px);
    margin-left: 30px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 479px) {
  .social-footer {
    float: left;
  }
  .comment img {
    display: none;
  }
  .comment .time {
    padding-left: 0;
    padding-top: 0;
  }
  .comment h6:before {
    left: 0;
  }
  .comment h6,
  .comment p {
    padding-left: 0;
  }
  .comment.subcomment {
    width: calc(100% - 30px);
    margin-left: 30px;
  }
}
@media only screen and (max-width: 319px) {
  .social-footer {
    float: left;
  }
  .comment img {
    display: none;
  }
  .comment .time {
    padding-left: 0;
    padding-top: 0;
  }
  .comment h6:before {
    left: 0;
  }
  .comment h6,
  .comment p {
    padding-left: 0;
  }
  .comment.subcomment {
    width: calc(100% - 30px);
    margin-left: 30px;
  }
}
@font-face {
  font-family: "Speck-Display";
  src: url("font/Speck-Display.eot");
  src: url("font/Speck-Display.eot?#iefix") format("embedded-opentype"), url("font/Speck-Display.woff") format("woff"), url("font/Speck-Display.ttf") format("truetype"), url("font/Speck-Display.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../webfonts/fa-regular-400.eot");
  src: url("../webfonts/fa-regular-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-regular-400.woff2") format("woff2"), url("../webfonts/fa-regular-400.woff") format("woff"), url("../webfonts/fa-regular-400.ttf") format("truetype"), url("../webfonts/fa-regular-400.svg#fontawesome") format("svg");
}
.far {
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}

@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../webfonts/fa-solid-900.eot");
  src: url("../webfonts/fa-solid-900.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-solid-900.woff2") format("woff2"), url("../webfonts/fa-solid-900.woff") format("woff"), url("../webfonts/fa-solid-900.ttf") format("truetype"), url("../webfonts/fa-solid-900.svg#fontawesome") format("svg");
}
.fa, .fas {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../webfonts/fa-brands-400.eot");
  src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
}

.fa, .fab, .fad, .fal, .far, .fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-xs {
  font-size: 0.75em;
}

.fa-sm {
  font-size: 0.875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: 0.08em solid #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left, .fab.fa-pull-left, .fal.fa-pull-left, .far.fa-pull-left, .fas.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right, .fab.fa-pull-right, .fal.fa-pull-right, .far.fa-pull-right, .fas.fa-pull-right {
  margin-left: 0.3em;
}

.fa-inverse {
  color: #fff;
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-adobe:before {
  content: "\f778";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

@font-face {
  font-family: "et-line";
  src: url("font/et-line.eot");
  src: url("font/et-line.eot?#iefix") format("embedded-opentype"), url("font/et-line.woff") format("woff"), url("font/et-line.ttf") format("truetype"), url("font/et-line.svg#et-line") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
  font-family: "et-line";
  content: attr(data-icon);
  speak: none;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
.icon-mobile, .icon-laptop, .icon-desktop, .icon-tablet, .icon-phone, .icon-document, .icon-documents, .icon-search, .icon-clipboard, .icon-newspaper, .icon-notebook, .icon-book-open, .icon-browser, .icon-calendar, .icon-presentation, .icon-picture, .icon-pictures, .icon-video, .icon-camera, .icon-printer, .icon-toolbox, .icon-briefcase, .icon-wallet, .icon-gift, .icon-bargraph, .icon-grid, .icon-expand, .icon-focus, .icon-edit, .icon-adjustments, .icon-ribbon, .icon-hourglass, .icon-lock, .icon-megaphone, .icon-shield, .icon-trophy, .icon-flag, .icon-map, .icon-puzzle, .icon-basket, .icon-envelope, .icon-streetsign, .icon-telescope, .icon-gears, .icon-key, .icon-paperclip, .icon-attachment, .icon-pricetags, .icon-lightbulb, .icon-layers, .icon-pencil, .icon-tools, .icon-tools-2, .icon-scissors, .icon-paintbrush, .icon-magnifying-glass, .icon-circle-compass, .icon-linegraph, .icon-mic, .icon-strategy, .icon-beaker, .icon-caution, .icon-recycle, .icon-anchor, .icon-profile-male, .icon-profile-female, .icon-bike, .icon-wine, .icon-hotairballoon, .icon-globe, .icon-genius, .icon-map-pin, .icon-dial, .icon-chat, .icon-heart, .icon-cloud, .icon-upload, .icon-download, .icon-target, .icon-hazardous, .icon-piechart, .icon-speedometer, .icon-global, .icon-compass, .icon-lifesaver, .icon-clock, .icon-aperture, .icon-quote, .icon-scope, .icon-alarmclock, .icon-refresh, .icon-happy, .icon-sad, .icon-facebook, .icon-twitter, .icon-googleplus, .icon-rss, .icon-tumblr, .icon-linkedin, .icon-dribbble {
  font-family: "et-line";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
}

.icon-mobile:before {
  content: "\e000";
}

.icon-laptop:before {
  content: "\e001";
}

.icon-desktop:before {
  content: "\e002";
}

.icon-tablet:before {
  content: "\e003";
}

.icon-phone:before {
  content: "\e004";
}

.icon-document:before {
  content: "\e005";
}

.icon-documents:before {
  content: "\e006";
}

.icon-search:before {
  content: "\e007";
}

.icon-clipboard:before {
  content: "\e008";
}

.icon-newspaper:before {
  content: "\e009";
}

.icon-notebook:before {
  content: "\e00a";
}

.icon-book-open:before {
  content: "\e00b";
}

.icon-browser:before {
  content: "\e00c";
}

.icon-calendar:before {
  content: "\e00d";
}

.icon-presentation:before {
  content: "\e00e";
}

.icon-picture:before {
  content: "\e00f";
}

.icon-pictures:before {
  content: "\e010";
}

.icon-video:before {
  content: "\e011";
}

.icon-camera:before {
  content: "\e012";
}

.icon-printer:before {
  content: "\e013";
}

.icon-toolbox:before {
  content: "\e014";
}

.icon-briefcase:before {
  content: "\e015";
}

.icon-wallet:before {
  content: "\e016";
}

.icon-gift:before {
  content: "\e017";
}

.icon-bargraph:before {
  content: "\e018";
}

.icon-grid:before {
  content: "\e019";
}

.icon-expand:before {
  content: "\e01a";
}

.icon-focus:before {
  content: "\e01b";
}

.icon-edit:before {
  content: "\e01c";
}

.icon-adjustments:before {
  content: "\e01d";
}

.icon-ribbon:before {
  content: "\e01e";
}

.icon-hourglass:before {
  content: "\e01f";
}

.icon-lock:before {
  content: "\e020";
}

.icon-megaphone:before {
  content: "\e021";
}

.icon-shield:before {
  content: "\e022";
}

.icon-trophy:before {
  content: "\e023";
}

.icon-flag:before {
  content: "\e024";
}

.icon-map:before {
  content: "\e025";
}

.icon-puzzle:before {
  content: "\e026";
}

.icon-basket:before {
  content: "\e027";
}

.icon-envelope:before {
  content: "\e028";
}

.icon-streetsign:before {
  content: "\e029";
}

.icon-telescope:before {
  content: "\e02a";
}

.icon-gears:before {
  content: "\e02b";
}

.icon-key:before {
  content: "\e02c";
}

.icon-paperclip:before {
  content: "\e02d";
}

.icon-attachment:before {
  content: "\e02e";
}

.icon-pricetags:before {
  content: "\e02f";
}

.icon-lightbulb:before {
  content: "\e030";
}

.icon-layers:before {
  content: "\e031";
}

.icon-pencil:before {
  content: "\e032";
}

.icon-tools:before {
  content: "\e033";
}

.icon-tools-2:before {
  content: "\e034";
}

.icon-scissors:before {
  content: "\e035";
}

.icon-paintbrush:before {
  content: "\e036";
}

.icon-magnifying-glass:before {
  content: "\e037";
}

.icon-circle-compass:before {
  content: "\e038";
}

.icon-linegraph:before {
  content: "\e039";
}

.icon-mic:before {
  content: "\e03a";
}

.icon-strategy:before {
  content: "\e03b";
}

.icon-beaker:before {
  content: "\e03c";
}

.icon-caution:before {
  content: "\e03d";
}

.icon-recycle:before {
  content: "\e03e";
}

.icon-anchor:before {
  content: "\e03f";
}

.icon-profile-male:before {
  content: "\e040";
}

.icon-profile-female:before {
  content: "\e041";
}

.icon-bike:before {
  content: "\e042";
}

.icon-wine:before {
  content: "\e043";
}

.icon-hotairballoon:before {
  content: "\e044";
}

.icon-globe:before {
  content: "\e045";
}

.icon-genius:before {
  content: "\e046";
}

.icon-map-pin:before {
  content: "\e047";
}

.icon-dial:before {
  content: "\e048";
}

.icon-chat:before {
  content: "\e049";
}

.icon-heart:before {
  content: "\e04a";
}

.icon-cloud:before {
  content: "\e04b";
}

.icon-upload:before {
  content: "\e04c";
}

.icon-download:before {
  content: "\e04d";
}

.icon-target:before {
  content: "\e04e";
}

.icon-hazardous:before {
  content: "\e04f";
}

.icon-piechart:before {
  content: "\e050";
}

.icon-speedometer:before {
  content: "\e051";
}

.icon-global:before {
  content: "\e052";
}

.icon-compass:before {
  content: "\e053";
}

.icon-lifesaver:before {
  content: "\e054";
}

.icon-clock:before {
  content: "\e055";
}

.icon-aperture:before {
  content: "\e056";
}

.icon-quote:before {
  content: "\e057";
}

.icon-scope:before {
  content: "\e058";
}

.icon-alarmclock:before {
  content: "\e059";
}

.icon-refresh:before {
  content: "\e05a";
}

.icon-happy:before {
  content: "\e05b";
}

.icon-sad:before {
  content: "\e05c";
}

.icon-facebook:before {
  content: "\e05d";
}

.icon-twitter:before {
  content: "\e05e";
}

.icon-googleplus:before {
  content: "\e05f";
}

.icon-rss:before {
  content: "\e060";
}

.icon-tumblr:before {
  content: "\e061";
}

.icon-linkedin:before {
  content: "\e062";
}

.icon-dribbble:before {
  content: "\e063";
}

/*RETINA DISPLAY*/
@media all and (-webkit-min-device-pixel-ratio: 1.5) {
  /*IMPORTANT : PLEASE NOTE:
  Just define high resolution version (2x) all of the background images used in your website.
  Example is given below:*/
  /*#some-element { background-image: url('../images/my_image@2x.png'); background-size: 200px 100px; } */
  /* Please visit: http://retinajs.com/ */
}
/* overpass-300italic - latin */
@font-face {
  font-family: "Overpass";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Overpass/overpass-v4-latin-300italic.eot"); /* IE9 Compat Modes */
  src: local("Overpass Light Italic"), local("Overpass-LightItalic"), url("../fonts/Overpass/overpass-v4-latin-300italic.eot?#iefix") format("embedded-opentype"), url("../fonts/Overpass/overpass-v4-latin-300italic.woff2") format("woff2"), url("../fonts/Overpass/overpass-v4-latin-300italic.woff") format("woff"), url("../fonts/Overpass/overpass-v4-latin-300italic.ttf") format("truetype"), url("../fonts/Overpass/overpass-v4-latin-300italic.svg#Overpass") format("svg"); /* Legacy iOS */
}
/* overpass-regular - latin */
@font-face {
  font-family: "Overpass";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Overpass/overpass-v4-latin-regular.eot"); /* IE9 Compat Modes */
  src: local("Overpass Regular"), local("Overpass-Regular"), url("../fonts/Overpass/overpass-v4-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Overpass/overpass-v4-latin-regular.woff2") format("woff2"), url("../fonts/Overpass/overpass-v4-latin-regular.woff") format("woff"), url("../fonts/Overpass/overpass-v4-latin-regular.ttf") format("truetype"), url("../fonts/Overpass/overpass-v4-latin-regular.svg#Overpass") format("svg"); /* Legacy iOS */
}
/* overpass-700 - latin */
@font-face {
  font-family: "Overpass";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Overpass/overpass-v4-latin-700.eot"); /* IE9 Compat Modes */
  src: local("Overpass Bold"), local("Overpass-Bold"), url("../fonts/Overpass/overpass-v4-latin-700.eot?#iefix") format("embedded-opentype"), url("../fonts/Overpass/overpass-v4-latin-700.woff2") format("woff2"), url("../fonts/Overpass/overpass-v4-latin-700.woff") format("woff"), url("../fonts/Overpass/overpass-v4-latin-700.ttf") format("truetype"), url("../fonts/Overpass/overpass-v4-latin-700.svg#Overpass") format("svg"); /* Legacy iOS */
}
:root {
  --primary: #f55650;
  --primary-darken: #B02116;
  --elegant: #F49448;
  --lite: #F3F4F8;
  --grey-0: #EAEBEF;
  --grey-1: #C5C8CB;
  --grey-2: #B0B2B7;
  --secondary: #8C9194;
  --grey-3: #65696C;
  --grey-4: #505456;
  --grey-5: #3C3F41;
  --dark: #2E2F31;
  --ff-head: Archivo Black;
  --ff-unique: Muli;
  --ff-sans: Overpass;
  --ff-serif: Noto Serif;
}

.primary {
  color: var(--primary);
}

.primary-bg {
  background-color: var(--primary);
}

.primary-darken {
  color: var(--primary-darken);
}

.primary-darken-bg {
  background-color: var(--primary-darken);
}

.elegant {
  color: var(--elegant);
}

.elegant-bg {
  background-color: var(--elegant);
}

.lite {
  color: var(--lite);
}

.lite-bg {
  background-color: var(--lite);
}

.grey-0 {
  color: var(--grey-0);
}

.grey-0-bg {
  background-color: var(--grey-0);
}

.grey-1 {
  color: var(--grey-1);
}

.grey-1-bg {
  background-color: var(--grey-1);
}

.grey-2 {
  color: var(--grey-2);
}

.grey-2-bg {
  background-color: var(--grey-2);
}

.secondary {
  color: var(--secondary);
}

.secondary-bg {
  background-color: var(--secondary);
}

.grey-3 {
  color: var(--grey-3);
}

.grey-3-bg {
  background-color: var(--grey-3);
}

.grey-4 {
  color: var(--grey-4);
}

.grey-4-bg {
  background-color: var(--grey-4);
}

.grey-5 {
  color: var(--grey-5);
}

.grey-5-bg {
  background-color: var(--grey-5);
}

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

.dark-bg {
  background-color: var(--dark);
}

.ff-head {
  font-family: var(--ff-head);
}

.ff-unique {
  font-family: var(--ff-unique);
}

.ff-sans {
  font-family: var(--ff-sans);
}

.ff-serif {
  font-family: var(--ff-serif);
}

.big-height {
  height: 85vh;
}

@media only screen and (max-width: 1199px) {
  .cbp-af-header.light.cbp-af-header-shrink {
    height: 50px;
  }
  .cbp-af-header.cbp-af-header-shrink .logo img {
    height: 42px;
  }
  .cbp-af-header.cbp-af-header-shrink .logo {
    height: 32px;
    top: 5px;
    left: 20px;
  }
  .cbp-af-header.light.cbp-af-header-shrink .menu-mobile {
    padding-top: 25px;
  }
  .menu.light > ul {
    padding-left: 10px;
  }
  .big-height {
    height: 70vh;
  }
}
blockquote {
  position: relative;
  padding-left: 1.5em;
  border-left: 0.3em solid var(--grey-3);
  font-family: var(--ff-unique), sans-serif;
  font-size: 17px;
  line-height: 23px;
  margin-left: 25px;
  padding-bottom: 0.6em !important;
  margin-right: 3em !important;
  color: var(--secondary) !important;
}

blockquote:before, blockquote:after {
  content: "“";
  font-family: var(--ff-sans), sans-serif;
  color: var(--primary);
}

blockquote:after {
  content: "”";
}
/*# sourceMappingURL=style.min.css.map */
