@charset "UTF-8";

@font-face {
  font-family: 'Montserrat-Bold';
  font-style: normal;
  font-weight: normal;
  src: local("☺"), url("fonts/Montserrat-Bold.woff") format("woff");
}

@font-face {
  font-family: 'Archer-Book';
  font-style: normal;
  font-weight: normal;
  /*src: local("☺"), url("fonts/ArcherPro-Book_0.woff") format("woff");*/
  src: url("fonts/Archer-Book/Archer-Book.eot"); /* IE9*/
  src: url("fonts/Archer-Book/Archer-Book.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
  url("fonts/Archer-Book/Archer-Book.woff2") format("woff2"), /* chrome、firefox */
  url("fonts/Archer-Book/Archer-Book.woff") format("woff"), /* chrome、firefox */
  url("fonts/Archer-Book/Archer-Book.ttf") format("truetype"), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
  url("fonts/Archer-Book/Archer-Book.svg#Archer-Book") format("svg"); /* iOS 4.1- */
}



@font-face {
  font-family: 'Archer-Medium';
  font-style: normal;
  font-weight: normal;
  src: local("☺"), url("fonts/Archer-Medium-Pro.woff") format("woff");
}

@font-face {
  font-family: 'Archer-Bold';
  font-style: normal;
  font-weight: normal;
  src: local("☺"), url("fonts/Archer-Bold-Pro.woff") format("woff");
}

@font-face {
  font-family: 'Florencesans';
  font-style: normal;
  font-weight: normal;
  src: local("☺"), url("fonts/Florsn01.woff") format("woff");
}

/*@font-face {
  font-family: 'Conv_Montserrat-Bold';
  src: url('fonts/Montserrat-Bold.eot');
  src: url('fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
  url('fonts/Montserrat-Bold.woff') format('woff'),
  url('fonts/Montserrat-Bold.ttf') format('truetype'),
  url('fonts/Montserrat-Bold.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: 'Conv_Archer_Medium';
  src: url('fonts/Archer_Medium.eot');
  src: url('fonts/Archer_Medium.eot?#iefix') format('embedded-opentype'),
  url('fonts/Archer_Medium.woff') format('woff'),
  url('fonts/Archer_Medium.ttf') format('truetype'),
  url('fonts/Archer_Medium.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: 'Conv_Florsn01';
  src: url('fonts/Florsn01.eot');
  src: url('fonts/Florsn01.eot?#iefix') format('embedded-opentype'),
  url('fonts/Florsn01.woff') format('woff'),
  url('fonts/Florsn01.ttf') format('truetype'),
  url('fonts/Florsn01.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}*/
/*MENU ANIMATION*/
.menu .menu-item:not(.sub-menu .menu-item) {
  transform: translateY(-40px);
  opacity: 0;
  -webkit-transform: translateZ(0px) translateY(-40px);
  -webkit-font-smoothing: subpixel-antialiased;
}

.menu-item-arrive {
  -webkit-transform: translateZ(0px);
  -webkit-font-smoothing: subpixel-antialiased;
  animation: 0.8s ease 0s normal forwards 1 arrive;
}

.menu-item-leave {
  -webkit-transform: translateZ(0px);
  -webkit-font-smoothing: subpixel-antialiased;
  animation: 0.4s 0s normal forwards 1 leave;
}

@keyframes arrive {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes leave {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }

  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}

@-webkit-keyframes arrive {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@-webkit-keyframes leave {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }

  100% {
    opacity: 0;
    transform: translateY(-40px);
  }
}

@-webkit-keyframes bounce {

  0%,
  100% {
    -webkit-transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-5px);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.bounce {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@keyframes line_anim {
  0% {
    transform-origin: top left;
    transform: scale(1, 0);
  }

  20% {
    transform-origin: top left;
    transform: scale(1, 0);
    animation-timing-function: cubic-bezier(0.48, 0.02, 0, 0.99);
  }

  50% {
    transform-origin: top left;
    transform: scale(1, 1);
  }

  60% {
    transform-origin: bottom left;
    transform: scale(1, 1);
    animation-timing-function: cubic-bezier(0.48, 0.02, 0, 0.99);
  }

  90% {
    transform-origin: bottom left;
    transform: scale(1, 0);
  }

  100% {
    transform-origin: bottom left;
    transform: scale(1, 0);
  }
}

.box-in-anim {
  animation-name: box-in-anim;
  animation-duration: 1s;
}

@keyframes box-in-anim {
  from {
    width: 0;
    opacity: 0;
  }

  to {
    width: 100%;
    opacity: 1;
  }
}

html,
body {
  width: 100%;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

html.preload,
body.preload {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  color: #252525;
  background-color: #fff;
  font-family: "Archer-Book", sans-serif;
  font-weight: 100;
  font-size: 18px;
  line-height: 1em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
}

@media only screen and (max-width: 1200px) {
  body {
    font-size: 16px;
  }
}

@media only screen and (max-width: 480px) {
  body {
    font-size: 14px;
  }
}

::selection {
  background: #ffd800;
  color: #fff;
}

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

div,
section {
  position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6,
.vacancies-section .vacancies .post .read-more {
  line-height: 1.4em;
  font-weight: normal;
  font-family: "Archer-Book", sans-serif;
  margin-top: 0;
}

h1 {
  line-height: 1.4em;
  font-size: 28px;
}

@media only screen and (max-width: 1200px) {
  h1 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 992px) {
  h1 {
    font-size: 22px;
    line-height: 1.2em;
  }
}

@media only screen and (max-width: 480px) {
  h1 {
    font-size: 18px;
    line-height: 1.4em;
  }
}

h2 {
  font-size: 24px;
  line-height: 1.4em;
}

@media only screen and (max-width: 1200px) {
  h2 {
    font-size: 20px;
  }
}

@media only screen and (max-width: 992px) {
  h2 {
    font-size: 16px;
  }
}

h3 {
  font-size: 18px;
  line-height: 1.4em;
}

@media only screen and (max-width: 1200px) {
  h3 {
    font-size: 15px;
  }
}

@media only screen and (max-width: 767px) {
  h3 {
    font-size: 13px;
  }
}

h4 {
  font-size: 16px;
  line-height: 1.4em;
}

@media only screen and (max-width: 1200px) {
  h4 {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  h4 {
    font-size: 12px;
  }
}

h4,
h5,
h6,
.vacancies-section .vacancies .post .read-more {
  font-size: 16px;
  line-height: 1.4em;
}

p,
.text ul li {
  font-family: "Archer-Book", sans-serif;
  font-size: 18px;
  line-height: 1.4em;
  margin-bottom: 0;
}

@media only screen and (max-width: 1200px) {

  p,
  .text ul li {
    font-size: 16px;
  }
}

@media only screen and (max-width: 992px) {

  p,
  .text ul li {
    font-size: 14px;
  }
}

@media only screen and (max-width: 480px) {

  p,
  .text ul li {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {

  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br,
  .vacancies-section .vacancies .post .read-more br {
    display: inline-block;
  }
}

.br-lg {
  display: none;
}

@media only screen and (max-width: 1200px) {
  .br-lg {
    display: block;
  }
}

.br-md {
  display: none;
}

@media only screen and (max-width: 992px) {
  .br-md {
    display: block;
  }
}

.br-sm {
  display: none;
}

@media only screen and (max-width: 767px) {
  .br-sm {
    display: block;
  }
}

.br-xs {
  display: none;
}

@media only screen and (max-width: 480px) {
  .br-xs {
    display: block;
  }
}

ul {
  margin: 0;
}

.text h1 {
  position: relative;
  margin-bottom: 25px;
}

@media only screen and (max-width: 992px) {
  .text h1 {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .text h1 {
    margin-bottom: 15px;
  }
}

.text h2 {
  position: relative;
  margin-bottom: 20px;
  padding-top: 10px;
}

@media only screen and (max-width: 992px) {
  .text h2 {
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 480px) {
  .text h2 {
    margin-bottom: 20px;
  }
}

.text h3,
.text h4 {
  margin-bottom: 35px;
  padding-top: 10px;
}

@media only screen and (max-width: 992px) {

  .text h3,
  .text h4 {
    margin-bottom: 30px;
    padding-top: 5px;
  }
}

@media only screen and (max-width: 480px) {

  .text h3,
  .text h4 {
    margin-bottom: 30px;
    padding-top: 5px;
  }
}

.text h3:first-child,
.text h4:first-child {
  padding-top: 0;
}

.text p,
.text ul li {
  margin-bottom: 35px;
}

@media only screen and (max-width: 992px) {

  .text p,
  .text ul li {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 480px) {

  .text p,
  .text ul li {
    margin-bottom: 30px;
  }
}

.text img {
  width: auto;
  max-width: 100%;
  margin-top: 30px;
  margin-bottom: 35px;
}

@media only screen and (max-width: 992px) {
  .text img {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .text img {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

.text blockquote {
  display: block;
  position: relative;
  margin: 0;
  padding: 0 55px 35px;
}

@media only screen and (max-width: 992px) {
  .text blockquote {
    padding: 0 40px 30px;
  }
}

@media only screen and (max-width: 480px) {
  .text blockquote {
    padding: 0 30px 25px;
  }
}

.text>*:last-child {
  margin-bottom: 0;
}

.text ul {
  list-style: disc;
  padding: 0 0 0 15px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 992px) {
  .text ul {
    padding-left: 14px;
    margin-bottom: 25px;
  }
}

@media only screen and (max-width: 480px) {
  .text ul {
    padding-left: 10px;
    margin-bottom: 20px;
  }
}

.text ul li {
  margin-bottom: 5px;
  padding-left: 10px;
}

@media only screen and (max-width: 992px) {
  .text ul li {
    padding-left: 5px;
  }
}

@media only screen and (max-width: 480px) {
  .text ul li {
    padding-left: 0px;
  }
}

a img {
  -webkit-transition: opacity 0.3s ease-in;
  -moz-transition: opacity 0.3s ease-in;
  -o-transition: opacity 0.3s ease-in;
  -ms-transition: opacity 0.3s ease-in;
  transition: opacity 0.3s ease-in;
}

a:hover img {
  opacity: 0.8;
  filter: alpha(opacity=80);
  -webkit-transition: opacity 0.2s ease-in;
  -moz-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  -ms-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  -webkit-transform: translateZ(0px);
  -webkit-font-smoothing: subpixel-antialiased;
}

a {
  color: #252525;
  display: inline-block;
  outline: 0 !important;
  text-decoration: none;
}

p a,
.text ul li a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.vacancies-section .vacancies .post .read-more a {
  background-color: #ffd800;
  padding: 0 3px;
}

a[href="#"],
a[href="#contact-mobile"] {
  outline: 0;
}

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.8;
  -webkit-transform: translateZ(0px);
  -webkit-font-smoothing: subpixel-antialiased;
}

a:active,
a:focus {
  color: inherit;
  text-decoration: none;
}

strong,
b {
  font-family: "Archer-Bold", sans-serif;
}

button,
input,
select,
textarea {
  outline: 0 !important;
  font-family: "Archer-Book", sans-serif;
  font-weight: 300;
  text-rendering: optimizeLegibility;
}

button:focus {
  outline: 0;
}

input,
textarea,
select {
  border: none;
  border: 2px solid #ffd800;
  color: #252525;
  font-family: "Archer-Book", sans-serif;
  padding: 25px 20px;
  width: 100%;
  resize: none;
  outline: 0;
  outline-color: transparent;
  outline-style: none;
  -webkit-appearance: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

@media only screen and (max-width: 992px) {

  input,
  textarea,
  select {
    padding: 15px 15px;
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {

  input,
  textarea,
  select {
    font-size: 16px;
  }
}

select,
select:active {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: #252525;
  font-family: "Archer-Book", sans-serif;
}

.placeholder-ie {
  color: #252525;
  font-family: "Archer-Book", sans-serif;
}

textarea {
  height: 120px;
}

input:focus,
textearea:focus,
select:focus {
  outline-color: transparent;
  outline-style: none;
}

::-webkit-input-placeholder {
  font-family: "Archer-Book", sans-serif;
  color: #252525;
  opacity: 0.9;
}

:-moz-placeholder {
  font-family: "Archer-Book", sans-serif;
  color: #252525;
  opacity: 0.9;
}

::-moz-placeholder {
  font-family: "Archer-Book", sans-serif;
  color: #252525;
  opacity: 0.9;
}

:-ms-input-placeholder {
  font-family: "Archer-Book", sans-serif;
  color: #252525;
  opacity: 0.9;
}

.no-bg {
  background-color: transparent;
}

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

.height-100 {
  height: 100%;
  height: 100vh;
}

.height-80 {
  height: 80%;
  height: 80vh;
}

.height-66 {
  height: 66%;
  height: 66vh;
}

.vertical-align {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.bg {
  position: absolute;
  left: -1%;
  top: 0;
  width: 101%;
  height: 100%;
}

.bg-black {
  position: absolute;
  left: -1%;
  top: 0;
  width: 101%;
  height: 100%;
  background-color: #000;
  z-index: -1;
}

.helper {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.yellow-section {
  background-color: #ffd800;
}

.gray-section {
  background-color: #252525;
}

.dot {
  color: #252525;
  font-size: 90px;
  color: #252525;
  display: inline-block;
  vertical-align: top;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  font-size: 80px;
  height: 30px;
  line-height: 35px;
}

@media only screen and (max-width: 1200px) {
  .dot {
    font-size: 70px;
    height: 20px;
    line-height: 25px;
  }
}

@media only screen and (max-width: 992px) {
  .dot {
    font-size: 55px;
    height: 15px;
    line-height: 15px;
  }
}

@media only screen and (max-width: 480px) {
  .dot {
    font-size: 40px;
    margin-left: 2px;
    height: 10px;
    line-height: 18px;
  }
}

.dot.white {
  color: #fff;
}

.dot.yellow {
  color: #ffd800;
}

.font2 {
  font-family: "Archer-Book", sans-serif;
}

.font3,
.works li,
.old-works li {
  font-family: "Florencesans", sans-serif;
  letter-spacing: 1.2px;
}

.placeholder {
  font-family: "Archer-Book", sans-serif;
}

.white {
  color: #fff;
}

.yellow {
  color: #ffd800;
}

.read-more {
  margin-top: 90px;
  color: #000;
  display: block;
  font-family: "Montserrat-Bold", sans-serif;
}

@media only screen and (max-width: 767px) {
  .read-more {
    margin-top: 20px;
  }
}

.view-more {
  margin-top: 50px;
  color: #fff;
  display: block;
  font-family: "Montserrat-Bold", sans-serif;
}

@media only screen and (max-width: 767px) {
  .view-more {
    margin-top: 20px;
  }
}

.panel {
  margin: 20px -15px 30px;
}

.ce-banner {
        background-color: #ffffff;
        color: #333333;
        position: fixed;
        top: 0;
        bottom: auto;
        left: 0;
        right: 0;
        padding: 1em;
        z-index: 1000;
      }

      .ce-iframePlaceholder {
        padding: 1em;
        margin: 1em 0;
      }
      
      .ce-banner{
    z-index:99999;
    border-bottom:1px solid #fff;
    padding-top:12px;
    background-color: rgba(255, 255, 255, 0.85);
}
.ce-banner p{
    font-size: 12px;
    line-height: 1em;
}
.ce-accept{
    border:1px solid #ccc;
    background-color: rgba(255, 255, 255, 0.45);
    margin-left:4px;
    padding:4px 6px;
} 

/*COOKIE BANNER*/
@media screen and (max-width: 768px) {

  .ce-banner p,
  .ce-banner .text ul li,
  .text ul .ce-banner li {
    line-height: 1.3em !important;
  }

  .ce-accept {
    margin-top: 10px !important;
    border: 0 !important;
    padding: 0 !important;
    background-color: transparent !important;
    font-weight: bold !important;
  }
}

/*LAZYLOAD*/
.tab-pane.active a {
  /*img{
      transition: opacity 0s !important;
  }*/
}

/*BLOG NAVIGATION*/
.navigation.pagination h2 {
  display: inline;
}

.navigation.pagination .nav-links {
  display: inline;
  margin-left: 8px;
}

.navigation.pagination .nav-links a {
  margin-left: 3px;
}

.navigation.pagination .nav-links a:hover {
  opacity: 0.8 !important;
}

.navigation.pagination .nav-links .current {
  text-decoration: none;
  opacity: 0.8 !important;
}

.navigation.pagination .nav-links .prev,
.navigation.pagination .nav-links .next {
  text-decoration: none;
}

/*HEADER*/
header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  padding: 30px 40px 40px 40px;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  header {
    padding: 20px 20px 20px 20px;
  }
}

header #logo {
  width: 200px;
  height: auto;
  display: inline-block;
}

header #logo a:hover img,
header #logo a:hover {
  opacity: 1;
}

@media only screen and (max-width: 992px) {
  header #logo {
    width: 160px;
  }
}

@media only screen and (max-width: 480px) {
  header #logo {
    width: 130px;
  }
}

#sticky_menu {
  background-color: #fff;
  z-index: 2;
  display: none;
}

#menu-button,
#navigation #close-menu-button,
.menu-button {
  display: block;
  position: absolute;
  right: 40px;
  top: 30px;
  padding-top: 10px;
  color: #000;
  font-size: 10px;
  letter-spacing: 1.5px;
  font-family: "Archer-Bold", sans-serif;
  text-transform: uppercase;
  text-align: right;
  cursor: pointer;
  -webkit-transition: color 0.5s ease-in;
  -moz-transition: color 0.5s ease-in;
  -ms-transition: color 0.5s ease-in;
  -o-transition: color 0.5s ease-in;
  transition: color 0.5s ease-in;
  -webkit-font-smoothing: subpixel-antialiased;
  z-index: 9999999;
}

@media only screen and (max-width: 767px) {

  #menu-button,
  #navigation #close-menu-button,
  .menu-button {
    top: 20px;
    right: 20px;
  }
}

@media only screen and (max-width: 480px) {

  #menu-button,
  #navigation #close-menu-button,
  .menu-button {
    top: 15px;
    font-size: 0px;
  }
}

#menu-button.menu-active,
#navigation .menu-active#close-menu-button,
.menu-button.menu-active {
  position: fixed;
}

#menu-button:hover,
#navigation #close-menu-button:hover,
.menu-button:hover {
  opacity: 1;
}

.gray-section #menu-button, .whitemenu #menu-button,
.gray-section #navigation #close-menu-button,
#navigation .gray-section #close-menu-button,
.gray-section .menu-button {
  color: #fff;
}



.gray-section #menu-button span, .whitemenu #menu-button span,
.gray-section #navigation #close-menu-button span,
#navigation .gray-section #close-menu-button span,
.gray-section .menu-button span {
  background: #ffd800;
}

#menu-button span,
#navigation #close-menu-button span,
.menu-button span {
  display: block;
  height: 3px;
  background: #000;
  margin-bottom: 9px;
  -webkit-transition: background 0.5s ease-in, margin-left 0.5s, width 0.5s;
  ;
  -moz-transition: background 0.5s ease-in, margin-left 0.5s, width 0.5s;
  ;
  -ms-transition: background 0.5s ease-in, margin-left 0.5s, width 0.5s;
  ;
  -o-transition: background 0.5s ease-in, margin-left 0.5s, width 0.5s;
  ;
  transition: background 0.5s ease-in, margin-left 0.5s, width 0.5s;
  ;
  -webkit-transform: translateZ(0px);
}

@media only screen and (max-width: 480px) {

  #menu-button span,
  #navigation #close-menu-button span,
  .menu-button span {
    height: 2px;
    margin-bottom: 5px;
  }
}

#menu-button .line-1,
#navigation #close-menu-button .line-1,
.menu-button .line-1 {
  width: 50px;
}

@media only screen and (max-width: 480px) {

  #menu-button .line-1,
  #navigation #close-menu-button .line-1,
  .menu-button .line-1 {
    width: 25px;
    margin-left: 25px;
  }
}

#menu-button .line-2,
#navigation #close-menu-button .line-2,
.menu-button .line-2 {
  width: 40px;
  margin-left: 10px;
}

@media only screen and (max-width: 480px) {

  #menu-button .line-2,
  #navigation #close-menu-button .line-2,
  .menu-button .line-2 {
    width: 20px;
    margin-left: 30px;
  }
}

#menu-button .line-3,
#navigation #close-menu-button .line-3,
.menu-button .line-3 {
  width: 30px;
  margin-bottom: 20px;
  margin-left: 20px;
}

@media only screen and (max-width: 480px) {

  #menu-button .line-3,
  #navigation #close-menu-button .line-3,
  .menu-button .line-3 {
    width: 15px;
    margin-left: 35px;
  }
}

#menu-button.active span:not(.line-1),
#navigation .active#close-menu-button span:not(.line-1),
#menu-button.hover span:not(.line-1),
#navigation .hover#close-menu-button span:not(.line-1),
.menu-button.active span:not(.line-1),
.menu-button.hover span:not(.line-1) {
  margin-left: 0;
  width: 50px;
}

@media only screen and (max-width: 480px) {

  #menu-button.active span:not(.line-1),
  #navigation .active#close-menu-button span:not(.line-1),
  #menu-button.hover span:not(.line-1),
  #navigation .hover#close-menu-button span:not(.line-1),
  .menu-button.active span:not(.line-1),
  .menu-button.hover span:not(.line-1) {
    width: 25px;
    margin-left: 25px;
  }
}

.top-section-empty {
  height: 135px;
}

@media only screen and (max-width: 767px) {
  .top-section-empty {
    height: 110px;
  }
}

@media only screen and (max-width: 480px) {
  .top-section-empty {
    height: 90px;
  }
}

/*MENU NAVIGATION*/
#navigation {
  position: fixed;
  top: 0;
  right: -442px;
  width: 442px;
  height: 100%;
  background: #252525;
  z-index: 9999;
  -webkit-transition: right 0.4s;
  -moz-transition: right 0.4s;
  -ms-transition: right 0.4s;
  -o-transition: right 0.4s;
  transition: right 0.4s;
  display: block;
}

@media only screen and (max-width: 992px) {
  #navigation {
    right: -480px;
    width: 400px;
  }
}

@media only screen and (max-width: 480px) {
  #navigation {
    width: 100%;
  }
}

#navigation.active {
  right: 0;
}

#navigation #close-menu-button {
  top: 40px;
  display: block !important;
  right: 40px;
  padding-top: 10px;
  color: #fff !important;
}

@media only screen and (max-width: 767px) {
  #navigation #close-menu-button {
    top: 30px;
    right: 15px;
  }
}

@media only screen and (max-width: 480px) {
  #navigation #close-menu-button {
    top: 20px;
    right: 15px;
  }
}

#navigation #close-menu-button span {
  background: #ffd800;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0px;
  right: 0px;
  width: 40px;
}

@media only screen and (max-width: 480px) {
  #navigation #close-menu-button span {
    width: 20px;
  }
}

#navigation #close-menu-button .text {
  padding-top: 36px;
  letter-spacing: 2px;
}

#navigation #close-menu-button span:first-child {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#navigation #close-menu-button span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#navigation #menu-wrapper {
  width: 100%;
  height: 100%;
  margin-top: 150px;
  height: -webkit-calc((100% - 150px));
  height: -moz-calc((100% - 150px));
  height: -o-calc((100% - 150px));
  height: calc((100% - 150px));
  overflow: hidden;
}

@media only screen and (max-width: 1200px) {
  #navigation #menu-wrapper {
    margin-top: 120px;
    height: -webkit-calc((100% - 120px));
    height: -moz-calc((100% - 120px));
    height: -o-calc((100% - 120px));
    height: calc((100% - 120px));
  }
}

@media only screen and (max-width: 992px) {
  #navigation #menu-wrapper {
    margin-top: 140px;
    height: -webkit-calc((100% - 140px));
    height: -moz-calc((100% - 140px));
    height: -o-calc((100% - 140px));
    height: calc((100% - 140px));
  }
}

@media only screen and (max-width: 767px) {
  #navigation #menu-wrapper {
    margin-top: 100px;
    height: -webkit-calc((100% - 100px));
    height: -moz-calc((100% - 100px));
    height: -o-calc((100% - 100px));
    height: calc((100% - 100px));
  }
}

@media only screen and (max-width: 480px) {
  #navigation #menu-wrapper {
    margin-top: 80px;
    height: -webkit-calc((100% - 80px));
    height: -moz-calc((100% - 80px));
    height: -o-calc((100% - 80px));
    height: calc((100% - 80px));
  }
}

#navigation .menu {
  padding-left: 42px;
  list-style: none;
  width: 100%;
  display: block;
  vertical-align: middle;
}

@media only screen and (max-width: 992px) {
  #navigation .menu {
    padding-left: 30px;
  }
}

@media only screen and (max-width: 767px) {
  #navigation .menu {
    padding-left: 20px;
  }
}

#navigation .menu li {
  opacity: 0;
  margin-bottom: 42px;
}

@media only screen and (max-width: 1200px) {
  #navigation .menu li {
    margin-bottom: 35px;
  }
}

@media only screen and (max-width: 992px) {
  #navigation .menu li {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  #navigation .menu li {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 480px) {
  #navigation .menu li {
    margin-bottom: 20px;
  }
}

#navigation .menu a {
  color: #fff;
  line-height: 1em;
  display: inline-block;
  font-family: "Montserrat-Bold", sans-serif;
  -webkit-transform: translateZ(0px);
  -webkit-font-smoothing: subpixel-antialiased;
  font-size: 24px;
}

@media only screen and (max-width: 1200px) {
  #navigation .menu a {
    font-size: 20px;
  }
}

@media only screen and (max-width: 992px) {
  #navigation .menu a {
    font-size: 18px;
  }
}

@media only screen and (max-width: 767px) {
  #navigation .menu a {
    font-size: 14px;
    font-weight: 100;
  }
}

#navigation .menu li:last-child {
  padding-bottom: 40px;
}

#navigation .menu li:last-child a {
  margin-bottom: 0;
}

#navigation .menu a:hover,
#navigation .menu .current-menu-item>a,
#navigation .menu .current-menu-parent>a,
#navigation .menu .current-page-ancestor>a,
#navigation .menu .current_page_parent>a {
  color: #ffd800;
  opacity: 1;
}

#navigation .menu .sub-menu {
  margin: 0;
  padding: 0;
  display: block;
  margin-left: 36px;
  overflow: hidden;
  max-height: 0;
  list-style: none;
  -webkit-transition: max-height 0.4s ease;
  -moz-transition: max-height 0.4s ease;
  -ms-transition: max-height 0.4s ease;
  -o-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
}

@media only screen and (max-width: 1200px) {
  #navigation .menu .sub-menu {
    margin-left: 25px;
  }
}

@media only screen and (max-width: 767px) {
  #navigation .menu .sub-menu {
    margin-left: 15px;
  }
}

#navigation .menu .sub-menu.active {
  max-height: 400px;
}

#navigation .menu .sub-menu li {
  opacity: 1 !important;
  vertical-align: middle;
  display: block;
  margin-bottom: 15px;
  padding: 0 !important;
}

@media only screen and (max-width: 767px) {
  #navigation .menu .sub-menu li {
    margin-bottom: 10px;
  }
}

#navigation .menu .sub-menu li:first-child {
  margin-top: 25px;
}

@media only screen and (max-width: 767px) {
  #navigation .menu .sub-menu li:first-child {
    margin-top: 10px;
  }
}

#navigation .menu .sub-menu li:last-child {
  margin-bottom: 0px;
}

#navigation .menu .sub-menu li a {
  font-size: 16px;
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
  #navigation .menu .sub-menu li a {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  #navigation .menu .sub-menu li a {
    font-size: 13px;
  }
}

#navigation .social {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
  width: 40px;
  margin: 0;
  padding: 0;
  margin-top: 30px;
  -webkit-transition: right 1s;
  -moz-transition: right 1s;
  -ms-transition: right 1s;
  -o-transition: right 1s;
  transition: right 1s;
}

@media only screen and (max-width: 992px) {
  #navigation .social {
    margin-top: 40px;
  }
}

@media only screen and (max-width: 767px) {
  #navigation .social {
    margin-top: 20px;
  }
}

#navigation .social.inside {
  right: 40px;
}

@media only screen and (max-width: 767px) {
  #navigation .social.inside {
    right: 20px;
  }
}

#navigation .social li {
  -webkit-transform: translateZ(0px);
  -webkit-font-smoothing: subpixel-antialiased;
  padding-bottom: 0px;
  height: 35px;
  margin-bottom: 20px;
  display: block;
  position: relative;
}

@media only screen and (max-width: 992px) {
  #navigation .social li {
    height: 30px;
  }
}

@media only screen and (max-width: 767px) {
  #navigation .social li {
    padding-bottom: 0px;
  }
}

@media only screen and (max-width: 480px) {
  #navigation .social li {
    padding-bottom: 0px;
    height: 30px;
    margin-bottom: 5px;
  }
}

#navigation .social li:hover i {
  font-size: 26px;
}

#navigation .social li img {
  width: 20px;
}

#navigation .social li:hover img {
  width: 26px;
}

@media only screen and (max-width: 480px) {
  #navigation .social li:hover i {
    font-size: inherit;
  }
}

#navigation .social li:last-child {
  padding-bottom: 0;
}

#navigation .social i {
  position: relative;
  display: block;
  -webkit-transform: translateZ(0px);
  -webkit-font-smoothing: subpixel-antialiased;
  color: #ffd800;
  line-height: 40px;
  vertical-align: middle;
  -webkit-transition: font-size 0.2s;
  -moz-transition: font-size 0.2s;
  -ms-transition: font-size 0.2s;
  -o-transition: font-size 0.2s;
  transition: font-size 0.2s;
}

#navigation .license {
  display: block;
  position: absolute;
  right: 40px;
  bottom: 10px;
}

@media only screen and (max-width: 767px) {
  #navigation .license {
    right: 20px;
  }
}

@media only screen and (max-width: 480px) {
  #navigation .license {
    bottom: 3px;
  }
}

#navigation .license a {
  font-family: "Archer-Book", sans-serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  text-transform: uppercase;
}

#menu-overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  display: none;
}

#main-container {
  width: 100%;
  -webkit-transition: left 0.4s;
  -moz-transition: left 0.4s;
  -ms-transition: left 0.4s;
  -o-transition: left 0.4s;
  transition: left 0.4s;
  left: 0;
}

#main-container.menu-active {
  left: -442px;
}

@media only screen and (max-width: 992px) {
  #main-container.menu-active {
    left: -400px;
  }
}

@media only screen and (max-width: 480px) {
  #main-container.menu-active {
    left: 100%;
  }
}

/*SECTION*/
.section {
  /*background-image: url('../images/flick.png');
  background-repeat: no-repeat;
  background-position: center;*/
  max-width: 100%;
}

.section .comma {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  /*background-image: url('../images/flick-header.png');
    background-repeat: no-repeat;
    background-position: top left;*/
}

@media only screen and (max-width: 767px) {
  .section {
    padding: 50px 20px;
    padding-bottom: 50px;
  }
}

@media only screen and (max-width: 480px) {
  .section {
    padding: 50px 10px;
    padding-bottom: 30px;
  }
}

.section.top-section {
  padding: 0;
}

.section .text-block {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: -webkit-calc(50% - 40px);
  margin-left: -moz-calc(50% - 40px);
  margin-left: -o-calc(50% - 40px);
  margin-left: calc(50% - 40px);
  max-width: 580px;
}

@media only screen and (max-width: 1200px) {
  .section .text-block {
    padding-right: 50px;
  }
}

@media only screen and (max-width: 992px) {
  .section .text-block {
    padding-right: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .section .text-block {
    padding-right: 20px;
    margin-left: 20px;
  }
}

.section .wrapper {
  padding: 45px 40px 25px;
  height: 100%;
  width: 100%;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .section .wrapper {
    padding: 0;
  }
}

.top-section.height-auto {
  height: 100%;
}

.top-section.height-auto .text-block {
  position: relative;
  transform: none;
  padding-top: 130px;
  padding-bottom: 130px;
}

@media only screen and (max-width: 1200px) {
  .top-section.height-auto .text-block {
    padding-top: 90px;
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .top-section.height-auto .text-block {
    padding-top: 130px;
  }
}

.top-section.height-auto p,
.top-section.height-auto .text ul li,
.text ul .top-section.height-auto li {
  margin-bottom: 30px;
}

.head {
  font-family: "Montserrat-Bold", sans-serif;
  display: block;
  line-height: 1em;
  font-size: 52px;
  margin-bottom: 8px;
}

@media only screen and (max-width: 1200px) {
  .head {
    font-size: 42px;
    margin-bottom: 6px;
  }
}

@media only screen and (max-width: 992px) {
  .head {
    font-size: 32px;
  }
}

@media only screen and (max-width: 480px) {
  .head {
    font-size: 26px;
  }
}

.top-section .head {
  margin-bottom: 25px;
}

@media only screen and (max-width: 1200px) {
  .top-section .head {
    margin-bottom: 15px;
  }
}

/* NEXT SLIDE BUTTON */
.next-slide-button {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.next-slide-button:hover {
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  opacity: 1;
  margin: 0;
  padding: 0;
}

.next-slide-button:hover img {
  opacity: 1;
}

.next-slide-button .dune {
  width: 163px;
  height: auto;
}

@media only screen and (max-width: 992px) {
  .next-slide-button .dune {
    width: 120px;
  }
}

.next-slide-button .scroll {
  animation-iteration-count: infinite;
  position: absolute;
  width: 14px;
  height: auto;
  top: 20px;
  z-index: 1;
  left: -webkit-calc(50% - 7px);
  left: -moz-calc(50% - 7px);
  left: -o-calc(50% - 7px);
  left: calc(50% - 7px);
}

@media only screen and (max-width: 992px) {
  .next-slide-button .scroll {
    width: 12px;
    top: 15px;
    left: -webkit-calc(50% - 6px);
    left: -moz-calc(50% - 6px);
    left: -o-calc(50% - 6px);
    left: calc(50% - 6px);
  }
}

.next-slide-button .scroll:hover {
  opacity: 1;
}

.next-slide-button #scroll-up {
  display: none;
}

/* GRID*/
.works,
.old-works {
  border-bottom: 1px solid #cfcfcf;
  margin-right: -5px;
  overflow: hidden;
  max-width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

@media only screen and (max-width: 767px) {

  .works,
  .old-works {
    border-bottom: none;
  }
}

.works li,
.old-works li {
  display: inline-block;
  vertical-align: top;
  /*width: 49.8%;
  margin-left: 0px;*/
  width: 50%;
  margin-left: -2px !important;
  margin-right: -2px !important;
  padding: 0px !important;
}

.work li .work-img{
  height: 350px  !important;
  overflow: hidden  !important;
}

@media only screen and (max-width: 767px) {

  .works li,
  .old-works li {
    display: block;
    width: 100%;
    margin-top: 20px;
  }
}

@media only screen and (max-width: 480px) {

  .works li,
  .old-works li {
    height: auto !important;
  }
}

.works li img,
.old-works li img {
  display: block;
}

.works li a,
.old-works li a {
  width: 100%;
  color: #252525;
}

.works li a:hover,
.old-works li a:hover {
  opacity: 1 !important;
}

.works li a:hover img,
.old-works li a:hover img {
  opacity: 0.8 !important;
}

.works li span,
.old-works li span {
  display: block;
  padding-left: 40px;
  text-transform: uppercase;
  color: #252525;
  padding: 30px 40px;
  border-left: 1px solid #cfcfcf;
  line-height: 1.5;
  height: auto !important;
}

@media only screen and (max-width: 1200px) {

  .works li span,
  .old-works li span {
    padding: 10px 15px;
  }
}

@media only screen and (max-width: 767px) {

  .works li span,
  .old-works li span {
    border: none;
    padding: 10px 0px;
    text-align: center;
  }
}

.works li .date,
.old-works li .date {
  font-family: "Archer-Book", sans-serif;
  text-transform: none;
  padding: 0;
  border: none;
}

.old-works li {
  width: 25%;
  margin-left: -5px;
}

@media only screen and (max-width: 1200px) {
  .old-works li {
    width: 33.33333%;
    margin-left: 0px;
  }
}

@media only screen and (max-width: 992px) {
  .old-works li {
    width: 50%;
    display: inline-block;
    margin-left: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .old-works li {
    width: 100%;
    display: block;
  }
}

.logos-list {
  padding: 50px 10px 20px 10px;
}

@media only screen and (max-width: 767px) {
  .logos-list {
    padding: 0;
  }
}

.logos-list ul {
  text-align: center;
  padding: 0;
}

.logos-list ul li {
  display: inline-block;
  width: -webkit-calc(100% / 5);
  width: -moz-calc(100% / 5);
  width: -o-calc(100% / 5);
  width: calc(100% / 5);
  margin-left: -4px;
  min-height: 120px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 1200px) {
  .logos-list ul li {
    width: -webkit-calc(100% / 4);
    width: -moz-calc(100% / 4);
    width: -o-calc(100% / 4);
    width: calc(100% / 4);
  }
}

@media only screen and (max-width: 992px) {
  .logos-list ul li {
    width: -webkit-calc(100% / 3);
    width: -moz-calc(100% / 3);
    width: -o-calc(100% / 3);
    width: calc(100% / 3);
  }
}

@media only screen and (max-width: 767px) {
  .logos-list ul li {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .logos-list ul li {
    width: -webkit-calc(100% / 2);
    width: -moz-calc(100% / 2);
    width: -o-calc(100% / 2);
    width: calc(100% / 2);
    padding: 20px;
    margin-bottom: 5px;
  }
}

.logos-list ul li img {
  width: auto;
}

@media only screen and (max-width: 767px) {
  .logos-list ul li img {
    width: 60%;
    max-width: 100px;
  }
}

@media only screen and (max-width: 480px) {
  .logos-list ul li img {
    width: 70%;
  }
}

.logos-list ul li img:hover {
  opacity: 1;
}

/* CAROUSEL */
#carousel {
  margin-left: auto;
  margin-right: auto;
}

#carousel .carousel-caption {
  position: static;
  max-width: 650px;
  margin: 0 auto;
}

#carousel .carousel-caption h1 {
  color: #fff;
  margin-bottom: 70px;
  margin-top: 0;
}

/*#carousel .carousel-caption span {
  color: #ffd800;
  font-family: "Florencesans", sans-serif;
  letter-spacing: 2px;
  margin-bottom: 70px;
  display: block;
}*/
#carousel .carousel-caption span {
  color: #ffd800;
  font-family: "Montserrat-Bold", sans-serif;
  letter-spacing: 2px;
  margin-bottom: 70px;
  display: block;
}

#carousel .carousel-indicators {
  bottom: 0;
}

#carousel .carousel-indicators li {
  background-color: #fff;
  border: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  margin: 0 4px;
}

#carousel .carousel-indicators li.active {
  background-color: #ffd800;
  border-color: transparent;
}

#masonry ul {
  position: relative;
  padding: 0;
}

#masonry ul li {
  display: block;
  position: relative;
  float: left;
  display: block;
}

#masonry ul li .description {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 15px 50px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  -webkit-transition: all 0.2s ease-in-out;
  ;
  -moz-transition: all 0.2s ease-in-out;
  ;
  -ms-transition: all 0.2s ease-in-out;
  ;
  -o-transition: all 0.2s ease-in-out;
  ;
  transition: all 0.2s ease-in-out;
  ;
}

@media only screen and (max-width: 1200px) {
  #masonry ul li .description {
    padding: 15px 50px;
  }
}

@media only screen and (max-width: 992px) {
  #masonry ul li .description {
    padding: 15px 30px;
  }
}

@media only screen and (max-width: 767px) {
  #masonry ul li .description {
    padding: 15px 15px;
  }
}

#masonry ul li .description h1 {
  margin: 0;
  line-height: 1.2em;
}

#masonry ul li .description:hover {
  opacity: 1;
}

#masonry ul li .description:hover img {
  opacity: 1;
}

#masonry ul li .description:hover .description {
  opacity: 1;
  -webkit-transition: all 0.2s ease-in-out;
  ;
  -moz-transition: all 0.2s ease-in-out;
  ;
  -ms-transition: all 0.2s ease-in-out;
  ;
  -o-transition: all 0.2s ease-in-out;
  ;
  transition: all 0.2s ease-in-out;
  ;
}

#masonry .item-1 {
  width: 50%;
}

@media only screen and (max-width: 767px) {
  #masonry .item-1 {
    width: 100%;
    float: none;
  }
}

#masonry .item-1 h1 {
  line-height: 1.6em !important;
}

@media only screen and (max-width: 767px) {
  #masonry .item-1 h1 {
    line-height: 1.2 !important;
  }
}

#masonry .item-2,
#masonry .item-3 {
  width: 50%;
  float: right;
}

@media only screen and (max-width: 767px) {

  #masonry .item-2,
  #masonry .item-3 {
    width: 100%;
    float: none;
  }
}

#masonry .item-4,
#masonry .item-5,
#masonry .item-6 {
  width: 33.333333%;
}

@media only screen and (max-width: 767px) {

  #masonry .item-4,
  #masonry .item-5,
  #masonry .item-6 {
    width: 100%;
    float: none;
  }
}

#masonry .item-7,
#masonry .item-8 {
  width: 50%;
}

@media only screen and (max-width: 767px) {

  #masonry .item-7,
  #masonry .item-8 {
    width: 100%;
    float: none;
  }
}

/*FOOTER*/
footer {
  padding: 100px 40px;
  background-image: url("../images/flick-footer.png");
  background-repeat: no-repeat;
  background-position: right top;
}

footer a {
  font-family: "Archer-Book", sans-serif;
  color: #ffd800;
}

footer a:hover {
  color: #ffd800;
  opacity: 0.3;
}

footer h1 {
  margin-bottom: 0;
}

/*WP-VIDEO*/
.wp-video {
  width: 100% !important;
  height: auto !important;
  /*.mejs-container, .mejs-inner, .mejs-mediaelement, video{
      width: 100% !important;
      height: auto !important;
  }*/
}

.wp-video .mejs-inner {
  width: 100% !important;
  height: auto !important;
}

.wp-video .mejs-inner .mejs-mediaelement {
  position: relative;
}

.wp-video video {
  width: 100% !important;
  height: auto !important;
}

.wp-video .mejs-layers {
  display: none;
}

/*ANIMATION*/
.scroll {
  animation: animationFrames ease-in 2s;
  animation-iteration-count: infinite;
  transform-origin: 50% 50%;
  -webkit-animation: animationFrames ease-in 2s;
  -webkit-animation-iteration-count: infinite;
  -webkit-transform-origin: 50% 50%;
  -moz-animation: animationFrames ease-in 2s;
  -moz-animation-iteration-count: infinite;
  -moz-transform-origin: 50% 50%;
  -o-animation: animationFrames ease-in 2s;
  -o-animation-iteration-count: infinite;
  -o-transform-origin: 50% 50%;
  -ms-animation: animationFrames ease-in 2s;
  -ms-animation-iteration-count: infinite;
  -ms-transform-origin: 50% 50%;
}

@keyframes animationFrames {
  0% {
    transform: translate(0px, 0px);
  }

  10% {
    transform: translate(0px, 5px);
  }

  29% {
    transform: translate(0px, -2px);
  }

  46% {
    transform: translate(0px, 3px);
  }

  61% {
    transform: translate(0px, 0px);
  }

  78% {
    transform: translate(0px, 0px);
  }

  100% {
    transform: translate(0px, 0px);
  }
}

@-moz-keyframes animationFrames {
  0% {
    -moz-transform: translate(0px, 0px);
  }

  10% {
    -moz-transform: translate(0px, 5px);
  }

  29% {
    -moz-transform: translate(0px, -2px);
  }

  46% {
    -moz-transform: translate(0px, 3px);
  }

  61% {
    -moz-transform: translate(0px, 0px);
  }

  78% {
    -moz-transform: translate(0px, 0px);
  }

  100% {
    -moz-transform: translate(0px, 0px);
  }
}

@-webkit-keyframes animationFrames {
  0% {
    -webkit-transform: translate(0px, 0px);
  }

  10% {
    -webkit-transform: translate(0px, 5px);
  }

  29% {
    -webkit-transform: translate(0px, -2px);
  }

  46% {
    -webkit-transform: translate(0px, 3px);
  }

  61% {
    -webkit-transform: translate(0px, 0px);
  }

  78% {
    -webkit-transform: translate(0px, 0px);
  }

  100% {
    -webkit-transform: translate(0px, 0px);
  }
}

@-o-keyframes animationFrames {
  0% {
    -o-transform: translate(0px, 0px);
  }

  10% {
    -o-transform: translate(0px, 5px);
  }

  29% {
    -o-transform: translate(0px, -2px);
  }

  46% {
    -o-transform: translate(0px, 3px);
  }

  61% {
    -o-transform: translate(0px, 0px);
  }

  78% {
    -o-transform: translate(0px, 0px);
  }

  100% {
    -o-transform: translate(0px, 0px);
  }
}

@-ms-keyframes animationFrames {
  0% {
    -ms-transform: translate(0px, 0px);
  }

  10% {
    -ms-transform: translate(0px, 5px);
  }

  29% {
    -ms-transform: translate(0px, -2px);
  }

  46% {
    -ms-transform: translate(0px, 3px);
  }

  61% {
    -ms-transform: translate(0px, 0px);
  }

  78% {
    -ms-transform: translate(0px, 0px);
  }

  100% {
    -ms-transform: translate(0px, 0px);
  }
}

/*HOMEPAGE*/
.home .title {
  font-size: 14px;
}

@media only screen and (max-width: 1200px) {
  .home .title {
    font-size: 12px;
  }
}

@media only screen and (max-width: 992px) {
  .home .title {
    font-size: 11px;
  }
}

@media only screen and (max-width: 767px) {
  .home .title {
    font-size: 10px;
  }
}

.home #logo .dark {
  opacity: 1;
}

.home #logo .white {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.home header {
  position: fixed;
  z-index: 999;
  padding: 30px 40px;
}

@media only screen and (max-width: 767px) {
  .home header {
    padding: 20px;
  }
}

.home header #menu-button,
.home header #navigation #close-menu-button,
#navigation .home header #close-menu-button {
  position: fixed;
  right: 40px;
  top: 30px;
}

@media only screen and (max-width: 767px) {

  .home header #menu-button,
  .home header #navigation #close-menu-button,
  #navigation .home header #close-menu-button {
    right: 20px;
    top: 20px;
  }
}

.home section {
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .home section {
    padding: 0 0px 0 0;
  }
}

.home section .head {
  margin-bottom: 30px;
}

.home section .text-block {
  opacity: 0;
  padding-left: 38px;
  padding-right: 50 !important;
  max-height: 700px !important;
}

@media only screen and (max-width: 992px) {
  .home section .text-block {
    padding-right: 70px;
  }
}

@media only screen and (max-width: 767px) {
  .home section .text-block {
    padding-right: 40px;
    padding-left: 0;
  }
}

.home section h1 {
  padding: 0;
}

.home section h1 a {
  background-color: transparent;
}

.home section.gray-section h1,
.home section.gray-section .read-more,
.home section.gray-section a {
  color: #fff !important;
}

.home section .read-more {
  margin: 0;
  padding: 20px 0 0;
}

.home section .dot {
  -webkit-transition: color 0.5s;
  -moz-transition: color 0.5s;
  -ms-transition: color 0.5s;
  -o-transition: color 0.5s;
  transition: color 0.5s;
}

.home section .next-slide-button {
  /*margin-left: -38px;
    @include MQ(md){
        margin-left: 0;
    }*/
}

.home div,
.home h1 {
  -webkit-transform: translateZ(0px);
  -webkit-backface-visibility: hidden;
}

.home .next-slide-button {
  position: fixed !important;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.home .home-bg {
  position: absolute;
  left: 15%;
  width: 50%;
  height: 100%;
  z-index: 0;
}

@media only screen and (max-width: 767px) {
  .home .home-bg {
    left: 5%;
    width: 80%;
  }
}

.home .home-bg.home-bg-img {
  left: 0;
  width: 70%;
  top: 0%;
  height: 95%;
}

@media only screen and (max-width: 767px) {
  .home .home-bg.home-bg-img {
    width: 100%;
    height: 100%;
  }
}

.home .bg-edges {
  position: absolute;
  width: 0px;
  height: 0px;
}

.home .yellow-section .home-bg-img {
  background-color: #ffe240;
}

.home .gray-section .home-bg-img {
  background-color: #282828;
}

.home .yellow-section .bg-edges {
  background-color: #ffd800;
}

.home .gray-section .bg-edges {
  background-color: #252525;
}

.home .yellow-section .home-bg.comma {
  background: url("../images/flick-yellow.png") no-repeat center center/contain;
}

.home .gray-section .home-bg.comma {
  background: url("../images/flick-grey.png") no-repeat center center/contain;
}

@media only screen and (min-width: 1450px){
  .home .yellow-section .home-bg.comma {
    background: url("../images/flick-yellow-5.png") no-repeat center center/contain;
  }
  .home .gray-section .home-bg.comma {
    background: url("../images/flick-grey-5.png") no-repeat center center/contain;
  }
}

@media only screen and (min-width: 1500px){
  .home .yellow-section .home-bg.comma {
    background: url("../images/flick-yellow-2.png") no-repeat center center/contain;
  }
  .home .gray-section .home-bg.comma {
    background: url("../images/flick-grey-2.png") no-repeat center center/contain;
  }
}

@media only screen and (min-width: 2000px){
  .home .yellow-section .home-bg.comma {
    background: url("../images/flick-yellow-3.png") no-repeat center center/contain;
  }
  .home .gray-section .home-bg.comma {
    background: url("../images/flick-grey-3.png") no-repeat center center/contain;
  }
}

@media only screen and (min-width: 2497px){
  .home .yellow-section .home-bg.comma {
    background: url("../images/flick-yellow-4.png") no-repeat center center/contain;
  }
  .home .gray-section .home-bg.comma {
    background: url("../images/flick-grey-4.png") no-repeat center center/contain;
  }
}


/*#sec_1 .home-bg{
    background: url('../images/flick-slide2.png') no-repeat center center / contain; 
}
#sec_2 .home-bg{
    background: url('../images/flick-slide3.png') no-repeat center center / contain; 
}
#sec_3 .home-bg{
    background: url('../images/flick-slide4.png') no-repeat center center / contain; 
}*/
/*.fp-viewing-2, .fp-viewing-3 {
    #menu-button {
        color: #fff;
        span {
            background: $yellow;
        }
    }
    .dot{
        color: $yellow;
    }
}*/
#fp-nav {
  position: fixed;
  list-style: none;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  margin-top: 0 !important;
}

@media only screen and (max-width: 767px) {
  #fp-nav {
    right: 20px;
  }
}

#fp-nav ul {
  margin: 0;
  padding: 0;
}

#fp-nav li {
  display: block;
  margin: 5px 0;
}

#fp-nav li a {
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: white;
  -webkit-transition: background-color 0.5s;
  -moz-transition: background-color 0.5s;
  -ms-transition: background-color 0.5s;
  -o-transition: background-color 0.5s;
  transition: background-color 0.5s;
}

@media only screen and (max-width: 767px) {
  #fp-nav li a {
    width: 6px;
    height: 6px;
    border-radius: 3px;
  }
}

#fp-nav li a.active {
  background-color: #252525;
}

/* TEAM */
.page-template-team .old-works img {
  -webkit-filter: grayscale(100%);
  /* Chrome, Safari, Opera */
  filter: grayscale(100%);
  -webkit-transition: all 0.2s ease-in;
  ;
  -moz-transition: all 0.2s ease-in;
  ;
  -ms-transition: all 0.2s ease-in;
  ;
  -o-transition: all 0.2s ease-in;
  ;
  transition: all 0.2s ease-in;
  ;
}

.page-template-team .old-works span:not(.date) {
  padding: 40px;
}

@media only screen and (max-width: 1200px) {
  .page-template-team .old-works span:not(.date) {
    padding: 20px 15px;
  }
}

@media only screen and (max-width: 767px) {
  .page-template-team .old-works span:not(.date) {
    padding: 30px 0px;
  }
}

.page-template-team .old-works li:hover {
  opacity: 1;
}

.page-template-team .old-works li:hover img {
  opacity: 1;
  -webkit-filter: none;
  filter: none;
  -webkit-transition: all 0.2s ease-in;
  ;
  -moz-transition: all 0.2s ease-in;
  ;
  -ms-transition: all 0.2s ease-in;
  ;
  -o-transition: all 0.2s ease-in;
  ;
  transition: all 0.2s ease-in;
  ;
}

.page-template-team a[href="#advisors"] {
  padding-left: 0;
}

#team-members .nav-tabs {
  border: none;
}

#team-members .nav-tabs h1 {
  text-align: left !important;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  #team-members .nav-tabs h1 {
    text-align: center !important;
  }
}

#team-members .nav-tabs li {
  width: 50%;
}

@media only screen and (max-width: 767px) {
  #team-members .nav-tabs li {
    width: 100%;
    text-align: center;
  }
}

#team-members .nav-tabs li a {
  border: none;
  color: #252525;
  display: inline-block;
  opacity: 0.3;
  -webkit-transition: all 0.2s ease-in;
  ;
  -moz-transition: all 0.2s ease-in;
  ;
  -ms-transition: all 0.2s ease-in;
  ;
  -o-transition: all 0.2s ease-in;
  ;
  transition: all 0.2s ease-in;
  ;
}

@media only screen and (max-width: 767px) {
  #team-members .nav-tabs li a {
    width: 100%;
    text-align: center;
    padding: 0;
  }
}

#team-members .nav-tabs li a:hover {
  background: none;
  opacity: 1;
  -webkit-transition: all 0.2s ease-in;
  ;
  -moz-transition: all 0.2s ease-in;
  ;
  -ms-transition: all 0.2s ease-in;
  ;
  -o-transition: all 0.2s ease-in;
  ;
  transition: all 0.2s ease-in;
  ;
}

#team-members .nav-tabs .nav-item .active{
  opacity: 1;
}

#team-members .nav-tabs .active a {
  opacity: 1;
}

#team-members .tab-content span:not(.date) {
  padding: 40px 20px 40px 30px;
}

@media only screen and (max-width: 767px) {
  #team-members .tab-content span:not(.date) {
    padding: 40px;
  }
}

#team-members .tab-content .date a {
  font-size: 14px;
}

#team-members .team-email {
  height: auto !important;
}

/*AWARDS*/
.page-template-awards .head {
  margin-top: 5px;
  margin-bottom: 35px;
}

/*CLIENTS*/
.page-template-clients #section-2 ul {
  margin: 30px 0;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/*JOIN US*/
.page-template-join_us .wrapper {
  padding-bottom: 45px;
}

@media only screen and (max-width: 767px) {
  .page-template-join_us .wrapper {
    padding-bottom: 0px;
  }
}

@media only screen and (max-width: 480px) {
  .page-template-join_us .wrapper {
    padding-right: 10px;
    padding-left: 10px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

/*WORK SINGLE*/
.page-template-work_single .top-section .text-center {
  padding-bottom: 0px;
  padding-right: 20px;
  padding-left: 20px;
}

.page-template-work_single .top-section .head {
  margin-bottom: 25px;
}

.page-template-work_single .top-section .bg {
  opacity: 0.5;
}

.page-template-work_single .top-text {
  margin-top: 0 !important;
  margin-bottom: 15px !important;
}

.page-template-work_single .section:not(:first-child) .wrapper {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .page-template-work_single .section:not(:first-child) .wrapper {
    padding-top: 0;
    padding-bottom: 0;
  }
}

.page-template-work_single #section-2 {
  max-width: 900px;
  margin: 0 auto;
}

.page-template-work_single #section-2 h1 {
  margin-top: 30px;
}

.page-template-work_single #section-2 h1.head {
  margin-top: 0px;
}

.page-template-work_single #section-2 h1,
.page-template-work_single #section-2 p,
.page-template-work_single #section-2 .text ul li,
.text ul .page-template-work_single #section-2 li {
  font-family: "Archer-Book", sans-serif;
}

.page-template-work_single .awards {
  border: 1px solid #cfcfcf;
  margin-top: 80px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 767px) {
  .page-template-work_single .awards {
    margin-top: 50px;
  }
}

.page-template-work_single .awards .name {
  border-right: 1px solid #cfcfcf;
  width: 25%;
  float: left;
  text-align: center;
  font-family: "Archer-Book", sans-serif;
  position: relative;
}

@media only screen and (max-width: 992px) {
  .page-template-work_single .awards .name {
    width: 100%;
    border-bottom: 1px solid #cfcfcf;
    border-right: none;
  }
}

.page-template-work_single .awards .name span {
  display: block;
  line-height: 140px;
}

@media only screen and (max-width: 992px) {
  .page-template-work_single .awards .name span {
    line-height: 100px;
  }
}

.page-template-work_single .awards .name:after {
  content: '';
  position: absolute;
  right: -6px;
  top: -webkit-calc(50% - 6px);
  top: -moz-calc(50% - 6px);
  top: -o-calc(50% - 6px);
  top: calc(50% - 6px);
  width: 10px;
  height: 10px;
  background: #fff;
  border-right: 1px solid #cfcfcf;
  border-top: 1px solid #cfcfcf;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media only screen and (max-width: 992px) {
  .page-template-work_single .awards .name:after {
    top: -webkit-calc(100% - 4px);
    top: -moz-calc(100% - 4px);
    top: -o-calc(100% - 4px);
    top: calc(100% - 4px);
    left: -webkit-calc(50% - 6px);
    left: -moz-calc(50% - 6px);
    left: -o-calc(50% - 6px);
    left: calc(50% - 6px);
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
  }
}

.page-template-work_single .awards .awards-logos {
  width: 75%;
  float: left;
  padding: 20px;
  text-align: center;
}

@media only screen and (max-width: 992px) {
  .page-template-work_single .awards .awards-logos {
    width: 100%;
  }
}

.page-template-work_single .awards .awards-logos img {
  width: auto;
  max-height: 100px;
  margin: 0 25px;
}

@media only screen and (max-width: 767px) {
  .page-template-work_single .awards .awards-logos img {
    margin: 20px;
  }
}

.page-template-work_single .awards .awards-logos ul {
  padding: 0;
  margin: 0;
}

.page-template-work_single .awards .awards-logos ul li {
  display: inline-block;
}

.page-template-work_single .footer_link {
  width: 100%;
  height: 340px;
  display: block;
  position: relative;
}

.page-template-work_single .footer_link footer.custom {
  height: 340px;
  background: none;
  background-color: transparent;
  position: relative;
}

.page-template-work_single .footer_link .head {
  font-size: 30px;
}

.page-template-work_single .footer_link span {
  font-size: 14px;
}

.page-template-work_single .footer_link h1,
.page-template-work_single .footer_link span {
  -webkit-transform: translateZ(0px);
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-backface-visibility: hidden;
}

.page-template-work_single .footer_link:hover {
  opacity: 1;
}

.page-template-work_single .footer_link:hover .bg {
  opacity: 0.65;
}

.page-template-work_single .footer_link .bg {
  opacity: 0.5;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.single .container {
  padding: 0;
}

.single .wrapper {
  padding: 50px 80px;
}

@media only screen and (max-width: 767px) {
  .single .wrapper {
    padding: 20px 0;
  }
}

.single .top-section {
  background-image: none;
  background-color: #ffd800;
}

.single .top-section .wrapper {
  padding: 40px;
}

@media only screen and (max-width: 767px) {
  .single .top-section .wrapper {
    padding: 10px 0;
  }
}

.single .featured_img_div {
  width: 100%;
  text-align: center;
}

.single .featured_img {
  width: auto;
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
  .single #section-2 {
    padding-bottom: 0;
  }
}

.single .post-date {
  margin-bottom: 4px;
  display: block;
  position: relative;
}

.single .share {
  margin: 50px 0;
}

.single .share a {
  color: #252525;
  margin-left: 10px;
}

.single .to-article {
  padding: 70px 0;
}

@media only screen and (max-width: 767px) {
  .single .to-article {
    padding: 50px 20px;
  }
}

.single .to-article a {
  color: #ffd800;
}

.single .to-article a:last-child {
  float: right;
}

.single .vacancy-post>.container>.wrapper {
  padding-bottom: 0;
}

.single .vacancy-post .post-date {
  display: none;
}

.single .vacancy-post h1.head {
  padding-top: 10px;
}

@media only screen and (max-width: 767px) {
  .single .vacancy-post h1.head {
    padding-top: 0;
  }
}

.single .vacancy-post .user-content {
  padding-top: 30px;
}

@media only screen and (max-width: 992px) {
  .single .vacancy-post .user-content {
    padding-top: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .single .vacancy-post .user-content {
    padding-top: 10px;
  }
}

@media only screen and (max-width: 767px) {

  .blog #section-2,
  .archive #section-2 {
    padding-bottom: 0;
  }
}

.blog .old-works li,
.archive .old-works li {
  border: 1px solid #cfcfcf;
  border-right: 0 !important;
  border-bottom: 0 !important;
}

@media only screen and (max-width: 767px) {

  .blog .old-works li,
  .archive .old-works li {
    border: 0;
  }
}

.blog .old-works li a>span,
.archive .old-works li a>span {
  border-top: 1px solid #cfcfcf;
  border-left: 0 !important;
}

@media only screen and (max-width: 767px) {

  .blog .old-works li a>span,
  .archive .old-works li a>span {
    border: 0;
  }
}

.blog .date,
.archive .date {
  height: 30px !important;
}

/*TEXT IN WORK SINGLE + BRIGHT IN ABOUT*/
.top-text {
  text-transform: uppercase;
  font-family: "Archer-Book", sans-serif;
  font-size: 14px;
  margin-top: 150px;
}

@media only screen and (max-width: 767px) {
  .top-text {
    margin-top: 0;
  }
}

/* BRIGHT MODULE */
#approach {
  text-align: center;
}

#approach .letters {
  padding: 0;
  margin-bottom: 80px;
  margin-top: 40px;
  border: none;
  text-align: center;
  display: inline-block;
}

@media only screen and (max-width: 1200px) {
  #approach .letters {
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  #approach .letters {
    margin-top: 20px;
    margin-bottom: 40px;
  }
}

#approach .letters li {
  display: inline-block;
}

#approach .letters li a {
  font-size: 200px;
  font-family: "Montserrat-Bold", sans-serif;
  color: #fff;
  display: block;
  cursor: default;
  border: none;
  padding: 0;
  line-height: 1em;
}

@media only screen and (max-width: 767px) {
  #approach .letters li a {
    font-size: 96px;
  }
}

@media only screen and (max-width: 480px) {
  #approach .letters li a {
    font-size: 64px;
  }
}

#approach .letters li a:hover {
  background: none;
}

#approach .letters li.active a {
  background: none;
}

#approach .letters-content {
  font-family: "Archer-Book", sans-serif;
  max-width: 600px;
  margin: 0 auto;
}

#approach .letters-content .tab-pane {
  height: 200px;
}

@media only screen and (max-width: 992px) {
  #approach .letters-content .tab-pane {
    height: 150px;
  }
}

@media only screen and (max-width: 767px) {
  #approach .letters-content .tab-pane {
    height: 130px;
    padding: 0 20px;
  }
}

#approach .letters-content .tab-pane span {
  text-transform: uppercase;
}

#approach .placeholder {
  height: 200px;
}

@media only screen and (max-width: 992px) {
  #approach .placeholder {
    height: 150px;
  }
}

@media only screen and (max-width: 767px) {
  #approach .placeholder {
    height: 130px;
    padding: 0 20px;
  }
}

/*ABOUT*/
.page-template-about {
  /*.next-slide-button{
      position: fixed !important;
      @include prefix('transition','opacity 0.2s');
  }*/
}

.about-section-2 {
  text-align: center;
  padding: 80px 0 30px;
}

.about-section-2 .top-text {
  margin-top: 0px;
}

@media only screen and (max-width: 767px) {
  .about-section-3.section {
    padding-bottom: 0;
  }
}

.about-section-3 .wrapper {
  padding-bottom: 0;
}

.about-section-3 .icons {
  margin-top: 50px;
}

.about-section-3 .icons img {
  width: auto;
  float: none;
}

.about-section-3 .icons ul {
  padding: 0;
  margin: 20px -40px 0;
  text-align: left;
}

.about-section-3 .icons ul li {
  display: inline-block;
  width: 25%;
  margin-top: -1px;
  vertical-align: top;
  text-align: center;
  border: 1px solid #cfcfcf;
  border-right: 0;
  min-height: 280px;
  padding: 10px;
}

@media only screen and (max-width: 1200px) {
  .about-section-3 .icons ul li {
    width: 33.33333%;
  }
}

@media only screen and (max-width: 767px) {
  .about-section-3 .icons ul li {
    width: 50%;
    font-size: 14px;
  }
}

@media only screen and (max-width: 480px) {
  .about-section-3 .icons ul li {
    width: 100%;
  }
}

.about-section-3 .icons ul li:last-child:not(:nth-child(4n)) {
  border-right: 1px solid #cfcfcf;
}

.about-section-3 .icons ul li a {
  display: block;
  text-align: center;
  text-transform: uppercase;
  color: #252525;
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 80px;
  padding-top: 180px;
  cursor: default;
}

.about-section-3 .icons ul li a:hover {
  opacity: 1;
}

.about-section-3 .icons.n-3-cols ul li {
  width: 33.33333%;
}

@media only screen and (max-width: 767px) {
  .about-section-3 .icons.n-3-cols ul li {
    width: 50%;
  }
}

@media only screen and (max-width: 480px) {
  .about-section-3 .icons.n-3-cols ul li {
    width: 100%;
  }
}

.page-template-contact .top-section-empty {
  z-index: 1;
  background-color: #fff;
}

.page-template-contact .section-map {
  height: 66%;
  height: 66vh;
  margin-top: -50px;
}

@media only screen and (max-width: 767px) {
  .page-template-contact .section-map {
    height: 80%;
    height: 80vh;
    padding: 0;
    margin-top: -110px;
  }
}

@media only screen and (max-width: 480px) {
  .page-template-contact .section-map {
    margin-top: -90px;
  }
}

@media only screen and (max-width: 992px) {
  .page-template-contact .section-map .next-slide-button {
    bottom: -1px;
  }
}

.page-template-contact #map {
  width: 100%;
  height: 100%;
  background-color: #ffd800;
}

.page-template-contact .row {
  width: 100%;
  padding: 0 15px;
  margin: 0;
}

.page-template-contact .row .col-sm-6,
.page-template-contact .row .col-sm-12 {
  padding: 0;
}

.page-template-contact .section-2 .wrapper {
  padding-top: 90px;
  padding-bottom: 90px;
}

@media only screen and (max-width: 992px) {
  .page-template-contact .section-2 .wrapper {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 0px;
  }
}

@media only screen and (max-width: 767px) {
  .page-template-contact .section-2 .wrapper {
    padding-top: 0px;
  }
}

@media only screen and (max-width: 650px) {
  .page-template-contact .section-2 .wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.page-template-contact .section-2 .head {
  margin-bottom: 50px;
}

@media only screen and (max-width: 767px) {
  .page-template-contact .section-2 .head {
    margin-bottom: 20px;
  }
}

.page-template-contact .section-2 .col-1 {
  padding-right: 100px;
}

@media only screen and (max-width: 992px) {
  .page-template-contact .section-2 .col-1 {
    padding-right: 50px;
  }
}

.page-template-contact .section-3 {
  height: 90px;
  padding: 0;
  margin: 0;
}

.page-template-contact .section-3 .social {
  padding: 0;
  text-align: center;
  list-style: none;
}

.page-template-contact .section-3 .social li {
  font-size: 24px;
  display: inline;
  margin: 0 20px;
}

@media only screen and (max-width: 650px) {
  .page-template-contact .section-3 .social li {
    font-size: 20px;
    margin: 0 12px;
  }
}

@media only screen and (max-width: 650px) {
  .page-template-contact .section-4 {
    padding-bottom: 0;
  }
}

.page-template-contact .section-4 ul {
  padding: 0;
  padding: 55px 0;
  list-style: none;
  text-align: center;
}

@media only screen and (max-width: 650px) {
  .page-template-contact .section-4 ul {
    padding-bottom: 0;
  }
}

.page-template-contact .section-4 ul li {
  display: inline-block;
  width: 33.33333%;
  margin: 0 0 0 -4px;
  vertical-align: top;
  text-align: center;
  border-right: 0;
  min-height: 200px;
  padding: 10px;
}

@media only screen and (max-width: 480px) {
  .page-template-contact .section-4 ul li {
    width: 100%;
    font-size: 14px;
  }
}

@media only screen and (max-width: 650px) {
  .page-template-contact .section-4 ul li {
    width: 100%;
    margin-bottom: 30px;
  }
}

.page-template-contact .section-4 ul li span {
  display: block;
  text-align: center;
  color: #fff;
  background-repeat: no-repeat;
  background-position: center;
  padding-top: 130px;
  cursor: default;
  line-height: 1.6em;
}

.page-template-contact .section-4 ul li span a {
  color: #fff;
}

.page-template-contact .section-4 ul .icon1 {
  background: url(../images/contact-icon-1.png) no-repeat top center;
}

.page-template-contact .section-4 ul .icon2 {
  background: url(../images/contact-icon-3.png) no-repeat top center;
}

.page-template-contact .section-4 ul .icon3 {
  background: url(../images/contact-icon-2.png) no-repeat top center;
}

/*FORM*/
form {
  padding: 0;
}

@media only screen and (max-width: 767px) {
  form {
    margin-top: 50px !important;
  }
}

form .row {
  padding: 0 !important;
  margin-bottom: 12px !important;
}

form .row .col-sm-6:nth-child(1) {
  padding-right: 6px;
}

@media only screen and (max-width: 767px) {
  form .row .col-sm-6:nth-child(1) {
    padding-right: 0;
    margin-bottom: 12px;
  }
}

form .row .col-sm-6:nth-child(2) {
  padding-left: 6px;
}

@media only screen and (max-width: 767px) {
  form .row .col-sm-6:nth-child(2) {
    padding-left: 0;
    margin-bottom: 12px;
  }
}

form .btn {
  width: auto;
  height: auto;
  vertical-align: middle;
  color: #252525;
  cursor: pointer;
  margin: 10px 0 0;
  padding: 0;
  cursor: pointer;
  font-family: "Montserrat-Bold", sans-serif;
  font-size: 22px;
  text-align: right;
  font-weight: normal;
  border: 0;
  background: #fff;
  border-radius: 0;
  webkit-transform: translateZ(0px);
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-backface-visibility: hidden;
}

form .btn:hover {
  opacity: 0.85;
}

form .btn.calling {
  cursor: default;
}

form a {
  color: #252525;
}

form a:hover {
  color: #ffd800;
  opacity: 1;
}

form .contact_form_error {
  position: absolute;
  margin-left: 0px;
  font-size: 16px;
  text-align: left;
  left: 0;
  bottom: 2px;
}

form .contact_form_error.success {
  text-transform: none;
}

form #contact-submit.calling {
  pointer-events: none;
  cursor: default;
  opacity: 0.6;
}

form .preloader {
  text-align: center;
  position: absolute;
  right: 0;
  bottom: -25px;
  display: none;
}

form .preloader img {
  width: 15px;
  height: 15px;
}

.vacancies-section {
  padding: 65px 0 125px;
}

@media only screen and (max-width: 1200px) {
  .vacancies-section {
    padding: 50px 0 110px;
  }
}

@media only screen and (max-width: 992px) {
  .vacancies-section {
    padding: 50px 0 90px;
  }
}

@media only screen and (max-width: 480px) {
  .vacancies-section {
    padding: 50px 0 60px;
  }
}

.vacancies-section .container {
  max-width: 898px;
}

.vacancies-section .intro_text {
  margin-bottom: 65px;
}

@media only screen and (max-width: 1200px) {
  .vacancies-section .intro_text {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 992px) {
  .vacancies-section .intro_text {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 480px) {
  .vacancies-section .intro_text {
    margin-bottom: 30px;
  }
}

.vacancies-section .vacancies .post {
  border-bottom: 1px solid #d4d4d4;
  position: relative;
  padding: 20px 0;
}

@media only screen and (max-width: 992px) {
  .vacancies-section .vacancies .post {
    padding: 15px 0;
  }
}

.vacancies-section .vacancies .post:first-child {
  border-top: 1px solid #d4d4d4;
}

.vacancies-section .vacancies .post .post-title {
  font-family: "Montserrat-Bold", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1em;
  margin: 0;
  padding: 0 110px 0 0;
}

@media only screen and (max-width: 480px) {
  .vacancies-section .vacancies .post .post-title {
    padding-right: 85px;
    font-size: 12px;
  }
}

.vacancies-section .vacancies .post .post-title a {
  background-color: transparent;
}

.vacancies-section .vacancies .post .read-more {
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  width: 90px;
  height: 26px;
  line-height: 26px;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  background-color: #ffd800;
  text-align: center;
  font-family: "Archer-Book", sans-serif;
  font-weight: normal;
}

@media only screen and (max-width: 480px) {
  .vacancies-section .vacancies .post .read-more {
    font-size: 12px;
    width: 70px;
    line-height: 22px;
    height: 22px;
  }
}

.vacancies-section .vacancies .post .read-more:hover {
  opacity: 1;
}

/* Home Page CSS */
.page-template-contact .section-map {
  height: 66%;
  height: 66vh;
  margin-top: -50px;
  display: none;
}

.post-3003 .head {
  font-family: "Montserrat-Bold", sans-serif;
  display: none;
  line-height: 1em;
  font-size: 52px;
  margin-bottom: 8px;
}

.page-id-3003 .head {
  font-family: "Montserrat-Bold", sans-serif;
  display: none;
  line-height: 1em;
  font-size: 52px;
  margin-bottom: 8px;
}

/** Start Envato Elements CSS: Artist (90-3-42c9da990d4e42ffe3ff30a9b7e17e5b) **/

/* 3 columns slider */
@media (min-width: 1024px) {
  .envato-kit-99-slider-3-col {
    overflow: hidden;
  }

  .envato-kit-99-slider-3-col .slick-list {
    overflow: visible;
  }

  .envato-kit-99-slider-3-col .slick-slide {
    margin-left: 20px;
    margin-right: 20px;
  }
}

/** End Envato Elements CSS: Artist (90-3-42c9da990d4e42ffe3ff30a9b7e17e5b) **/



/** Start Envato Elements CSS: Tattoo Studio (55-3-0873eb903f2c06cb73bece8de4fde156) **/

/* Envato Elements Template Kit CSS */

/* Full Height Map Iframe */
.envato-kit-52-map-fit iframe {
  height: 100vh;
}

/* 3 columns slider */
@media (min-width: 1024px) {
  .envato-kit-52-slider-3-col {
    overflow: hidden;
  }

  .envato-kit-52-slider-3-col .slick-list {
    overflow: visible;
  }

  .envato-kit-52-slider-3-col .slick-slide {
    margin-left: 25px;
    margin-right: 25px;
  }
}

/** End Envato Elements CSS: Tattoo Studio (55-3-0873eb903f2c06cb73bece8de4fde156) **/



/** Start Envato Elements CSS: Blocks (72-3-34d2cc762876498c8f6be5405a48e6e2) **/

.envato-block__preview {
  overflow: visible;
}

/*Kit 69 Custom Styling for buttons */
.envato-kit-69-slide-btn .elementor-button,
.envato-kit-69-cta-btn .elementor-button,
.envato-kit-69-flip-btn .elementor-button {
  border-left: 0px !important;
  border-bottom: 0px !important;
  border-right: 0px !important;
  padding: 15px 0 0 !important;
}

.envato-kit-69-slide-btn .elementor-slide-button:hover,
.envato-kit-69-cta-btn .elementor-button:hover,
.envato-kit-69-flip-btn .elementor-button:hover {
  margin-bottom: 20px;
}

.envato-kit-69-menu .elementor-nav-menu--main a:hover {
  margin-top: -7px;
  padding-top: 4px;
  border-bottom: 1px solid #FFF;
}

/* Fix menu dropdown width */
.envato-kit-69-menu .elementor-nav-menu--dropdown {
  width: 100% !important;
}

/** End Envato Elements CSS: Blocks (72-3-34d2cc762876498c8f6be5405a48e6e2) **/



/** Start Envato Elements CSS: Blocks (135-3-c665d4805631b9a8bf464e65129b2f58) **/

.envato-block__preview {
  overflow: visible;
}

/** End Envato Elements CSS: Blocks (135-3-c665d4805631b9a8bf464e65129b2f58) **/

.fp-viewing-3 .next-slide-button .scroll{display: none;}
.fp-viewing-3 .next-slide-button #scroll-up{display: block !important;}

.elementor-widget-heading .elementor-heading-title {
  color: #6ec1e4;
  font-family: "Roboto Slab", RO;
  font-weight: 300;
}
.elementor-widget-form .elementor-button {
  font-family: "Roboto Slab", RO;
  font-weight: 300;
}