/*!
 ** Project
 ** --------------------------------
 **/
/*
 ** Setup - Variables
 ** -----------------------------------------------------------------------------*/
/*
 ** Setup - Mixins
 ** -----------------------------------------------------------------------------*/
/*
 ** Mixin for setting body inset specific styles
 **
 ** @access public
 **/
/*
 ** Clearfix
 **
 ** @access public
 **/
/*
 ** Mixin to manage responsive breakpoints
 **
 ** @access public
 ** @param {String} $breakpoint - Breakpoint name
 ** @require $breakpoints
 **/
/*
 ** More easily include all the states for responsive utilities
 **
 ** @access public
 ** @param {Selector} $parent - Parent element
 **/
/*
 ** More easily include all the states for responsive utilities
 **
 ** @access public
 ** @param {Selector} $parent - Parent element
 **/
/*
 ** Asset URL builder
 **
 ** @access private
 ** @param {String} $type - Asset type, matching folder name
 ** @param {String} $file - Asset file name, including extension
 ** @return {URL} - A `url()` function leading to the asset
 ** @require {Variable} $base-path
 **/
/*
 ** Image asset helper
 **
 ** @access public
 ** @param {String} $file - Asset file name, including extension
 ** @return {URL} - A `url()` function leading to the image
 ** @require {Function} asset
 **/
/*
 ** Font asset helper
 **
 ** @access public
 ** @param {String} $file - Asset file name, including extension
 ** @return {URL} - A `url()` function leading to the font
 ** @require {Function} asset
 **/
/*
 ** Mix color with black
 **
 ** @access public
 ** @param {Color} $color - Color hex value
 ** @return {Percent} $weight - The relative weight of black color
 ** @require {Function} mix
 **/
/*
 ** Mix color with white
 **
 ** @access public
 ** @param {Color} $color - Color hex value
 ** @return {Percent} $weight - The relative weight of white color
 ** @require {Function} mix
 **/
/*
 ** Setup - Animations
 ** -----------------------------------------------------------------------------*/
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/*
 ** Setup - Normalize
 ** -----------------------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  background-color: transparent;
  border: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
}

:root {
  box-sizing: border-box;
  font-size: 62.5%;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: subpixel-antialiased;
  text-rendering: optimizeLegibility;
}

*,
::before,
::after {
  box-sizing: inherit;
}

/*
 * These values will not show up in content, but can be
 * queried by JavaScript to know which breakpoint is active.
 * Add or remove as many breakpoints as you like.
 */
body::before {
  display: none;
  content: 'tiny';
}

a, button {
  cursor: pointer;
  color: currentColor;
  text-decoration: none;
}

a:focus, button:focus {
  outline: none;
}

img {
  display: block;
  max-width: 100%;
}

img {
  filter: grayscale(50%);
}

ul, ol {
  list-style: none;
}

sub,
sup {
  font-size: 0.6em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.75em;
}

sub {
  bottom: -0.25em;
}

/*
 ** Common - Base
 ** -----------------------------------------------------------------------------*/
body {
  cursor: default;
  background: #a1a1a1;
  color: #ffffff;
  font-family: "Roboto", "Arial", "Helvetica Neue", Helvetica, sans-serif;
  font-size: 1.4em;
  font-weight: 300;
  line-height: 1.57;
}

a, button {
  -webkit-transition-property: color, background-color, border-color, opacity;
          transition-property: color, background-color, border-color, opacity;
  -webkit-transition-duration: 0.25s;
          transition-duration: 0.25s;
}

/*
 ** Common - Fonts
 ** -----------------------------------------------------------------------------*/


@font-face {
  font-family: 'FuturaPT';
  src: url("../fonts/FuturaPT-Book.eot");
  src: url("../fonts/FuturaPT-Book.eot#iefix") format("embedded-opentype"),
  url("../fonts/FuturaPT-Book.woff2") format("woff2"),
  url("../fonts/FuturaPT-Book.woff") format("woff"),
  url("../fonts/FuturaPT-Book.ttf") format("truetype"),
  url('../fonts/FuturaPT-Book.svg#svgFontName') format('svg'); /* Legacy iOS */
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'FuturaPT';
  src: url("../fonts/FuturaPT-Heavy.eot");
  src: url("../fonts/FuturaPT-Heavy.eot#iefix") format("embedded-opentype"),
  url("../fonts/FuturaPT-Heavy.woff2") format("woff2"),
  url("../fonts/FuturaPT-Heavy.woff") format("woff"),
  url("../fonts/FuturaPT-Heavy.ttf") format("truetype"),
  url('../fonts/FuturaPT-Heavy.svg#svgFontName') format('svg');
  font-weight: 700;
  font-style: normal;
}

/*
 ** Common - Icons
 ** -----------------------------------------------------------------------------*/
@font-face {
  font-family: 'iconfont';
  src: url("../fonts/iconfont.eot");
  src: url("../fonts/iconfontd41d.eot#iefix") format("eot"),
  url("../fonts/iconfont.woff") format("woff"),
  url("../fonts/iconfont.ttf") format("truetype"),
  url("../fonts/iconfont.svg#iconfont") format("svg");
  font-weight: normal;
  font-style: normal;
}

.icon::before {
  display: inline-block;
  font-family: 'iconfont';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: middle;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon--arrow-bottom::before {
  content: '\EA01';
}

.icon--arrow-left::before {
  content: '\EA02';
}

.icon--arrow-right::before {
  content: '\EA03';
}

.icon--arrow-top::before {
  content: '\EA04';
}

.icon--clock::before {
  content: '\EA05';
}

.icon--cross::before {
  content: '\EA06';
}

.icon--globe::before {
  content: '\EA07';
}

.icon--handshake::before {
  content: '\EA08';
}

.icon--menu::before {
  content: '\EA09';
}

.icon--people::before {
  content: '\EA0A';
}

/*
 ** Common - Layout
 ** -----------------------------------------------------------------------------*/
.container {
  clear: both;
  position: relative;
  max-width: 1180px;
  padding: 0 20px;
  margin: 0 auto;
}

.container::after {
  content: '';
  display: table;
  clear: both;
}

.body-bag {
  width: 100%;
  overflow: hidden;
  background: #a1a1a1;
}

/* No files to import found in vendor//* */
/*
 ** Utils - Helpers
 ** -----------------------------------------------------------------------------*/
.hide {
  position: absolute !important;
  left: -9999em !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only:active, .sr-only:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/*
 ** Utils - Responsive
 ** -----------------------------------------------------------------------------*/
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

/*
 ** Utils - Title
 ** -----------------------------------------------------------------------------*/
.title {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
}

.title--centered {
  text-align: center;
}

.title--small {
  font-size: 2.4rem;
}

/*
 ** Module - About
 ** -----------------------------------------------------------------------------*/
.about {
  padding: 40px 0;
}

.about-title {
  margin-bottom: 10px;
}

.about-facts {
  margin: 20px -20px 0;
}

.about-facts::after {
  content: '';
  display: table;
  clear: both;
}

.about-facts li {
  float: left;
  width: 50%;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 2rem;
  letter-spacing: -0.03em;
  text-align: center;
  font-weight: 400;
}

.about-facts .icon {
  display: block;
  margin: 0 auto 10px;
}

.about-facts .icon::before {
  color: #ffffff;
  font-size: 5rem;
}

/*
 ** Module - Button
 ** -----------------------------------------------------------------------------*/
.btn {
  display: inline-block;
  width: 130px;
  padding: 8px;
  margin: 0;
  border: 1px solid #ffffff;
  font-weight: 400;
  font-size: 1.3rem;
  text-align: center;
  text-transform: uppercase;
}

.btn:hover {
  background: #a1a1a1;
  color: #ffffff;
}

/*
 ** Module - Entry content
 ** -----------------------------------------------------------------------------*/
.entry-content {
  -webkit-columns: 2 300px;
     -moz-columns: 2 300px;
          columns: 2 300px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.entry-content p, .entry-content ul {
  margin-top: 1.5em;
  /* Avoid breaking columns inside a paragraph */
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid-column;
  display: table;
}

.entry-content ul li {
  padding-left: 30px;
  background: url("list-caret.png") no-repeat 0 8px;
}

/*
 ** Module - Hero
 ** -----------------------------------------------------------------------------*/
.hero {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  opacity: 0;
  -webkit-animation: fadeIn 0.5s linear 0.5s forwards;
          animation: fadeIn 0.5s linear 0.5s forwards;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  width: 100%;
  padding: 0 20px 60px;
  text-align: center;
}

.hero-overlay-title {
  color: #ffffff ;
  font-size: 4.2rem;
  line-height: 1;
  letter-spacing: -1px;
  font-weight: 600;
}

.hero-overlay-desc {
  margin-top: 0.5em;
}

.hero-overlay-buttons {
  margin-top: 1.5em;
}

.hero-overlay-buttons > * {
  margin: 0 3px;
}

.hero-gallery {
  position: relative;
}

.hero-gallery::after {
  content: '';
  display: table;
  clear: both;
}

.hero-gallery-image {
  min-height: 300px;
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}

.hero-gallery-image::before {
  content: '';
  display: block;
  padding-bottom: 40%;
}

.hero-gallery-controls .flex-control-nav {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 6;
  width: auto;
}

.hero-gallery-controls .flex-control-nav li {
  float: left;
  margin: 0 3px;
}

.hero-gallery-controls .flex-control-nav a {
  display: block;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.25);
  border: 0;
  border-radius: 50%;
  text-indent: -999em;
}

.hero-gallery-controls .flex-control-nav a:hover {
  background: rgba(255, 255, 255, 0.5);
}

.hero-gallery-controls .flex-control-nav a.flex-active {
  background: #e84e36;
}

.hero-languages {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 6;
}

.hero-languages a {
  display: block;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.4);
  -webkit-transform: translateY(25%);
      -ms-transform: translateY(25%);
          transform: translateY(25%);
}

.hero-languages a:hover {
  background: #ffffff;
}

/*
 ** Module - Nav primary
 ** -----------------------------------------------------------------------------*/
.nav-primary {
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  z-index: 15;
  max-height: 0;
  overflow: hidden;
  background: #a1a1a1;
  -webkit-transition: max-height 0.5s;
          transition: max-height 0.5s;
}

.nav-active .nav-primary {
  max-height: 200px;
}

.nav-primary ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
}

.nav-primary-item {
  margin-top: 10px;
  font-size: 1.3rem;
  text-transform: uppercase;
}

.nav-primary-item:first-child {
  margin-top: 0;
}

.nav-primary-item a:hover {
  color: #e84e36;
}

.nav-primary-toggle {
  background: none;
  border: 0;
  margin-left: 20px;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
}

.nav-primary-toggle:hover {
  color: #ffffff;
}

/*
 ** Module - Page error
 ** -----------------------------------------------------------------------------*/
.page-error {
  padding: 40px 0;
  text-align: center;
}

.page-error p {
  margin-top: 1em;
  font-size: 2rem;
}

/*
 ** Module - Page foot
 ** -----------------------------------------------------------------------------*/
.page-foot {
  padding: 20px 0;
  background: #e84e36;
  text-align: center;
}

.page-foot strong {
  color: #ffffff;
}

.page-foot strong a {
  display: inline;
  border-bottom: 1px solid transparent;
}

.page-foot strong a:hover {
  border-bottom-color: currentColor;
}

.page-foot-cols::after {
  content: '';
  display: table;
  clear: both;
}

.page-foot-col {
  width: 100%;
  margin-bottom: 20px;
  vertical-align: top;
}

.page-foot-col p {
  margin-bottom: 1.5em;
}

.page-foot-title {
  margin-right: -3px;
  color: #ffffff;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -2px;
}

.page-foot-btn {
  display: inline-block;
  width: 160px;
  padding: 8px;
  border: 1px solid #ffffff;
  font-size: 1.1rem;
  text-align: center;
  text-transform: uppercase;
}

.page-foot-btn:hover {
  background: #a1a1a1;
  color: #ffffff;
  border-color: transparent;
}

.page-foot-copyright {
  color: #ffffff;
  font-weight: 400;
}

.page-foot-copyright a {
  display: inline;
  border-bottom: 1px solid transparent;
}

.page-foot-copyright a:hover {
  border-bottom-color: currentColor;
}

.page-foot-scroller {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: -1;
  width: 3.5em;
  height: 3.5em;
  background: transparent;
  border-bottom: 0 !important;
  color: #ffffff;
  line-height: 3.5;
  text-align: center;
  opacity: 0;
}

.page-foot-scroller:hover {
  background: #707070;
}

.page-foot-scroller.is-active {
  z-index: 10;
  opacity: 1;
}

/*
 ** Module - Page head
 ** -----------------------------------------------------------------------------*/
.page-head {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  font-weight: 400;
}

.page-head-logo {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.page-head-logo a {
  display: block;
  height: 40px;
  width: 110px;
  background: url("logo.jpeg") no-repeat center;
  background-size: cover;
}

/*
 ** Module - Service
 ** -----------------------------------------------------------------------------*/
.service {
  position: relative;
  width: 100%;
}

.service-title {
  margin-bottom: 0;
  padding-right: 40px;
}

.service-prev, .service-next {
  position: absolute;
  bottom: -7px;

  z-index: 5;
  color: #ffffff;
  font-size: 2.4rem;
  line-height: 1;
  text-align: center;
}

.service-prev:hover, .service-next:hover {
  opacity: 0.5;
}

.service-prev {
  left: 20px;
}

.service-next {
  right: 20px;
}

.service-close {
  position: absolute;
  top: 0;
  right: 20px;
  z-index: 5;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
}

.service-close:hover {
  opacity: 0.5;
}

.service-controls {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 5;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.service-controls li {
  float: left;
  margin: 0 3px;
}

.service-controls a {
  display: block;
  width: 10px;
  height: 10px;
  background: #e5e5e5;
  border: 0;
  border-radius: 50%;
  text-indent: -999em;
}

.service-controls a.flex-active {
  background: #e84e36 ;
}

/*
 ** Module - Services
 ** -----------------------------------------------------------------------------*/
.services-title {
  padding: 20px 0;
  background: #e84e36;
}

.services-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.services-list-item {
  position: relative;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: color 0.25s;
          transition: color 0.25s;
}

.services-list-image {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.services-list-image::before {
  content: '';
  display: block;
  padding-bottom: 56.25%;
}

.services-list-overlay {
  position: relative;
  background: #e84e36;
  padding: 20px;
}

.services-list-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  height: 100%;
  width: 100%;
  background: #e84e36;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  -webkit-transition: -webkit-transform 0.25s, opacity 0.25s;
          transition: transform 0.25s, opacity 0.25s;
}

.services-list-overlay h3 {
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 500;
}

.services-list-overlay .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.services-list-overlay .icon::before {
  font-size: 3rem;
}

.services-details {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.5s;
          transition: max-height 0.5s;
}

.services-details.is-active {
  max-height: 1000px;
}

.services-details-inner {
  position: relative;
  padding-bottom: 40px;
  margin-top: 20px;
  margin-bottom: 30px;
}

.services-details-inner::after {
  content: '';
  display: table;
  clear: both;
}

@media (min-width: 480px) {
  body::before {
    content: 'small';
  }
  .visible-sm-block {
    display: block !important;
  }
  .visible-sm-inline {
    display: inline !important;
  }
  .visible-sm-inline-block {
    display: inline-block !important;
  }
  .hidden-sm {
    display: none !important;
  }
  .btn {
    width: 160px;
    padding: 11px;
  }
  .page-foot-col {
    float: left;
    width: 50%;
    text-align: left;
  }
  .page-foot-col:first-child {
    width: 100%;
  }
  .services-list-item {
    width: 50%;
  }
}

@media (min-width: 769px) {
  body::before {
    content: 'medium';
  }
  .visible-md-block {
    display: block !important;
  }
  .visible-md-inline {
    display: inline !important;
  }
  .visible-md-inline-block {
    display: inline-block !important;
  }
  .hidden-md {
    display: none !important;
  }
  .title {
    font-size: 4rem;
    font-weight: bold;
  }
  .title--small {
    font-size: 3rem;
  }
  .about {
    padding: 60px 0;
  }
  .about-title {
    margin-bottom: 30px;
  }
  .about-facts {
    margin: 40px -40px 0;
  }
  .about-facts li {
    width: 25%;
    font-size: 2.4rem;
  }
  .about-facts .icon::before {
    font-size: 7.6rem;
  }
  .entry-content {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  .hero-overlay {
    padding-bottom: 7%;
  }
  .hero-overlay-title {
    font-size: 8.2rem;
    font-weight: bold;
  }
  .hero-overlay-desc {
    font-size: 2rem;
  }
  .hero-overlay-buttons {
    margin-top: 3em;
  }
  .hero-overlay-buttons > * {
    margin: 0 8px;
  }
  .nav-primary {
    position: static;
    max-height: none;
    overflow: visible;
  }
  .nav-primary ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 0;
  }
  .nav-primary-item {
    margin-top: 0;
    margin-left: 20px;
  }
  .nav-primary-item:first-child {
    margin-left: 0;
  }
  .page-foot {
    padding: 40px 0;
  }
  .page-foot-cols {
    margin: 0 -20px 20px;
  }
  .page-foot-col {
    width: 33.3%;
    padding: 0 20px;
  }
  .page-foot-col:first-child {
    width: 33.3%;
  }
  .page-foot-title {
    font-size: 4rem;
  }
  .page-head {
    height: 100px;
    padding: 30px 0;
  }
  .page-head-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    -webkit-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
  }
  .page-head-logo a {
    height: 60px;
    width: 165px;
  }
  .page-head-navs {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .page-head-info {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    white-space: nowrap;
  }
  .service-title {
    margin-bottom: 35px;
    padding-right: 60px;
  }
  .service-close {
    font-size: 2.4rem;
  }
  .services-title {
    padding: 35px 0;
  }
  .services-list-item {
    color: #ffffff;
  }
  .services-list-item:hover {
    color: #ffffff;
  }
  .services-list-item:hover .services-list-overlay::before {
    opacity: 1;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  .services-list-item:hover .icon {
    opacity: 1;
  }
  .services-list-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 5;
    padding: 1.4em 2.2em;
    background: none;
    font-size: 1.8rem;
  }
  .services-list-overlay .icon {
    right: 2.2em;
    opacity: 0;
    -webkit-transition: opacity 0.25s;
            transition: opacity 0.25s;
  }
  .services-list-overlay .icon::before {
    font-size: 4rem;
  }
  .services-details-inner {
    padding-bottom: 40px;
    margin-top: 60px;
    margin-bottom: 60px;
  }
}

@media (min-width: 1024px) {
  body::before {
    content: 'large';
  }
  .container--narrow {
    max-width: 1040px;
  }
  .visible-lg-block {
    display: block !important;
  }
  .visible-lg-inline {
    display: inline !important;
  }
  .visible-lg-inline-block {
    display: inline-block !important;
  }
  .hidden-lg {
    display: none !important;
  }
  .about {
    padding: 80px 0;
  }
  .about-facts {
    margin: 60px -40px 20px;
  }
  .hero-gallery-controls .flex-control-nav {
    bottom: 50px;
  }
  .hero-languages {
    bottom: 50px;
  }
  .hero-languages a {
    padding: 10px 20px;
  }
  .nav-primary-item {
    margin-left: 30px;
  }
  .page-error {
    padding-bottom: 80px;
  }
  .page-foot {
    padding: 70px 0 50px;
  }
  .page-foot-cols {
    margin: 0 -50px 40px;
  }
  .page-foot-col {
    display: inline-block;
    float: none;
    max-width: 320px;
    padding: 0 50px;
    vertical-align: top;
  }
  .page-head {
    height: 140px;
  }
  .page-head-logo a {
    height: 83px;
    width: 230px;
  }
  .service-title {
    margin-bottom: 50px;
  }
  .service-prev, .service-next {
    bottom: -45px;
    font-size: 3.8rem;
  }
  .service-controls {
    bottom: -30px;
  }
  .services-title {
    padding: 50px 0;
  }
  .services-list-item {
    width: 33.33%;
  }
  .services-details-inner {
    padding-bottom: 70px;
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

@media (min-width: 1200px) {
  .service-prev, .service-next {
    bottom: auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .service-prev {
    left: -90px;
  }
  .service-next {
    right: -90px;
  }
}

.page-foot-btn{
  color: #ffffff;
}

.page-foot-col p{
  color: #fff;
}
.page-foot-col p strong{
  font-weight: bold;
}