@charset "utf-8";
/*------------------------------------------------------------------*/

@import url(http://fonts.googleapis.com/css?family=Roboto:400,400italic,500,700,700italic,300);

@font-face {
  font-family: "Aileron-Bold";
  src: url("fonts/Aileron-Bold.otf") format("opentype");
  font-weight: bold;
  font-style: normal;
}

/* ==============================
   Common styles
   ============================== */

.title-text {
  font-family: "Aileron-Bold";
  text-transform: capitalize;
  font-style: italic;
}

.align-center {
  text-align: center !important;
}

.left {
  float: left !important;
}

.relative {
  position: relative;
}

.hidden {
  display: none;
}

.stick-fixed {
  position: fixed !important;
  top: 0;
  left: 0;
}

::-moz-selection {
  color: #fff;
  background: #000;
}
::-webkit-selection {
  color: #fff;
  background: #000;
}
::selection {
  color: #fff;
  background: #000;
}

.clearlist,
.clearlist li {
  list-style: none;
  padding: 0;
  margin: 0;
  background: none;
}

.full-wrapper {
  margin: 0 2%;
}

html {
  overflow-y: scroll;
  -ms-overflow-style: scrollbar;
}

html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
}
.page {
  overflow: hidden;
}

iframe {
  border: none;
}

a,
b,
div,
ul,
li {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
  -moz-outline-: none;
}

a:focus,
a:active {
  -moz-outline: none;
  outline: none;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

/* ==============================
   Page loader
   ============================== */

.page-loader {
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fefefe;
  z-index: 100000;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -20px 0 0 -20px;
  background-color: #f1592a;
  text-indent: -12345px;

  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;

  -webkit-animation: scaleout 1s infinite ease-in-out;
  animation: scaleout 1s infinite ease-in-out;
}

@-webkit-keyframes scaleout {
  0% {
    -webkit-transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

@keyframes scaleout {
  0% {
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  100% {
    transform: scale(1);
    -webkit-transform: scale(1);
    opacity: 0;
  }
}

/* ==============================
   Typography
   ============================== */

body {
  color: #111;
  font-size: 16px;
  font-family: Roboto, arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #e91e63;
  text-decoration: none;
}
a:hover {
  color: #e91e63;
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1.3em;
  line-height: 1.4;
  font-weight: 400;
}
h1 {
  font-size: 38px;
}
h2 {
  font-size: 34px;
}
h3 {
  font-size: 30px;
}
h4 {
  font-size: 26px;
}
h5 {
  font-size: 22px;
}
h6 {
  font-size: 18px;
  font-weight: 700;
}
p {
  margin: 0 0 2em 0;
}
ul,
ol {
  margin: 0 0 1.5em 0;
}

dl dt {
  margin-bottom: 5px;
}
dl dd {
  margin-bottom: 15px;
}
pre {
  background-color: #f9f9f9;
  border-color: #ddd;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.strong {
  font-weight: 700 !important;
}

/* ==============================
   Buttons
   ============================== */

.btn-mod,
a.btn-mod {
  padding: 5px 13px;
  color: #fff;
  background: rgba(34, 34, 34, 0.9);
  border: 2px solid transparent;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;

  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  -webkit-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.2s cubic-bezier(0, 0, 0.58, 1);
}
.btn-mod:hover,
.btn-mod:focus,
a.btn-mod:hover,
a.btn-mod:focus {
  background: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  outline: none;
  color: #fff;
}
.btn-mod:active {
  cursor: pointer !important;
}

.btn-mod.btn-small {
  padding: 7px 17px 6px;
  font-size: 11px;
  letter-spacing: 1px;
}
.btn-mod.btn-medium {
  padding: 9px 37px 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
}
.btn-mod.btn-large {
  padding: 13px 45px 12px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
}

.btn-mod.btn-glass {
  color: rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.4);
}
.btn-mod.btn-glass:hover,
.btn-mod.btn-glass:focus {
  color: rgba(255, 255, 255, 1);
  background: rgba(0, 0, 0, 1);
}

.btn-mod.btn-border {
  color: #151515;
  border: 2px solid #151515;
  background: transparent;
}
.btn-mod.btn-border:hover,
.btn-mod.btn-border:focus {
  color: #fff;
  border-color: transparent;
  background: #000;
}

.btn-mod.btn-border-c {
  color: #e91e63;
  border: 2px solid #e91e63;
  background: transparent;
}
.btn-mod.btn-border-c:hover,
.btn-mod.btn-border-c:focus {
  color: #fff;
  border-color: transparent;
  background: #e91e63;
}

.btn-mod.btn-border-w {
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.75);
  background: transparent;
}
.btn-mod.btn-border-w:hover,
.btn-mod.btn-border-w:focus {
  color: #111;
  border-color: transparent;
  background: #fff;
}

.btn-mod.btn-w {
  color: #111;
  background: rgba(255, 255, 255, 0.9);
}
.btn-mod.btn-w:hover,
.btn-mod.btn-w:focus {
  color: #111;
  background: #fff;
}

.btn-mod.btn-w-color {
  color: #e91e63;
  background: #fff;
}
.btn-mod.btn-w-color:hover,
.btn-mod.btn-w-color:focus {
  color: #151515;
  background: #fff;
}

.btn-mod.btn-gray {
  color: #777;
  background: #e5e5e5;
}
.btn-mod.btn-gray:hover,
.btn-mod.btn-gray:focus {
  color: #444;
  background: #d5d5d5;
}

.btn-mod.btn-color {
  color: #fff;
  background: #d69d8c;
}
.btn-mod.btn-color:hover,
.btn-mod.btn-color:focus {
  color: #fff;
  background: #e91e63;
  opacity: 0.85;
}

.btn-mod.btn-circle {
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}
.btn-mod.btn-round {
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}

.inner-nav .btn {
  margin-top: -3px;
}
mobile-on .inner-nav .btn {
  margin-top: 0;
}

/* ==============================
   Forms fields
   ============================== */

/* ==============================
   Home sections
   ============================== */

/*
 * Header common styles
 */

.home-section {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.home-content {
  display: table;
  width: 100%;
  height: 100%;
  text-align: center;
}

/* Home content */

.home-content {
  position: relative;
}
.home-text {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}

/* Scroll down icon */

@-webkit-keyframes scroll-down-anim {
  0% {
    bottom: 12px;
  }
  50% {
    bottom: 20px;
  }
  100% {
    bottom: 12px;
  }
}
@-moz-keyframes scroll-down-anim {
  0% {
    bottom: 12px;
  }
  50% {
    bottom: 20px;
  }
  100% {
    bottom: 12px;
  }
}
@-o-keyframes scroll-down-anim {
  0% {
    bottom: 12px;
  }
  50% {
    bottom: 20px;
  }
  100% {
    bottom: 12px;
  }
}
@keyframes scroll-down-anim {
  0% {
    bottom: 12px;
  }
  50% {
    bottom: 20px;
  }
  100% {
    bottom: 12px;
  }
}

.scroll-down {
  width: 40px;
  height: 40px;
  margin-left: -20px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  text-align: center;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.9);

  -webkit-transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -o-transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-down:hover {
  color: #fff;
}

.scroll-down.black {
  text-shadow: none;
  color: rgba(0, 0, 0, 0.9);
}

.scroll-down-icon {
  display: block;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  position: absolute;
  left: 50%;
  bottom: 4px;
  font-size: 32px;

  -webkit-animation: scroll-down-anim 1s infinite;
  -moz-animation: scroll-down-anim 1s infinite;
  -o-animation: scroll-down-anim 1s infinite;
  animation: scroll-down-anim 1s infinite;

  z-index: 2;
}

/* 
 * Headings styles
 */

.hs-line-2 {
  margin-top: 0;
  position: relative;
  font-size: 64px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.37;
}

.hs-line-11 {
  margin-top: 0;
  position: relative;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.8;
}
.hs-line-11 strong {
  font-weight: 500;
}

.fullwidth-galley-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 25;
}

/* ==============================
   Classic menu bar
   ============================== */

/* Logo (in navigation panel)*/

.nav-logo-wrap {
  float: left;
  margin-right: 20px;
}
.nav-logo-wrap .logo {
  display: block;
  max-width: 120px;
  height: 75px;

  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}
.nav-logo-wrap .logo img {
  max-height: 90%;
  position: relative;
  top: 50%;
  padding: 5px 0;

  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.nav-logo-wrap .logo:before,
.nav-logo-wrap .logo:after {
  display: none;
}
.logo,
a.logo:hover {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.9);
}

/*
 * Desktop nav
 */

.main-nav {
  width: 100%;
  height: 75px !important;
  position: relative;
  top: 0;
  left: 0;
  text-align: left;
  background: rgba(255, 255, 255, 0.95);

  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);

  z-index: 201;

  -webkit-transition: height 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: height 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: height 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: height 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: height 0.27s cubic-bezier(0, 0, 0.58, 1);
}

.small-height {
  height: 55px !important;
}
.small-height .inner-nav ul li a {
  height: 55px !important;
  line-height: 55px !important;
}
.inner-nav {
  position: relative;
  float: right;
}

.inner-nav ul {
  float: right;
  margin: auto;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
}
.inner-nav ul li {
  float: left;
  margin-left: 30px;
  position: relative;
}
.inner-nav ul li a {
  color: #777;
  letter-spacing: 1px;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-decoration: none;

  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}

.inner-nav ul li a:hover,
.inner-nav ul li a.active {
  color: #000;
  text-decoration: none;
}

/* Menu sub */

.mn-sub {
  display: none;
  width: 200px;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 0;
  background: rgba(30, 30, 30, 0.97);
}
.mn-sub li {
  display: block;
  width: 100%;
  margin: 0 !important;
}
.inner-nav ul li .mn-sub li a {
  display: block;
  width: 100%;
  height: auto !important;
  line-height: 1.3 !important;
  position: relative;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 11px 15px;
  font-size: 13px;
  text-align: left;
  text-transform: none;
  border-left: none;
  border-right: none;
  letter-spacing: 0;
  color: #b0b0b0 !important;
  cursor: pointer;
}

.mn-sub li a:hover,
.inner-nav ul li .mn-sub li a:hover,
.mn-sub li a.active {
  background: rgba(255, 255, 255, 0.09);
  color: #f5f5f5 !important;
}

.mn-sub li ul {
  left: 100%;
  right: auto;
  top: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}
.inner-nav > ul > li:last-child .mn-sub,
.inner-nav li .mn-sub.to-left {
  left: auto;
  right: 0;
}
.inner-nav li:last-child .mn-sub li ul,
.inner-nav li .mn-sub li ul.to-left {
  left: auto;
  right: 100%;
  top: 0;
  border-left: none;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.mobile-on .inner-nav li:last-child .mn-sub li ul {
  left: auto;
  right: auto;
  top: 0;
}

/*
 * Mobile nav
 */

.mobile-on .desktop-nav {
  display: none;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 0 15px;

  z-index: 100;
}
.mobile-on .full-wrapper .desktop-nav {
  padding: 0;
}

.mobile-on .desktop-nav ul {
  width: 100%;
  float: none;
  background: rgba(18, 18, 18, 0.97);
  position: relative;
  overflow-x: hidden;
}
.mobile-on .desktop-nav > ul {
  overflow-y: auto;
}
.mobile-on .desktop-nav ul li {
  display: block;
  float: none !important;
  overflow: hidden;
}
.mobile-on .desktop-nav ul li ul {
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-on .desktop-nav ul li a {
  display: block;
  width: 100%;
  height: 38px !important;
  line-height: 38px !important;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 10px;
  text-align: left;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  color: #999;
  letter-spacing: 1px;
  cursor: pointer;
}
.mobile-on .desktop-nav ul li a:hover,
.mobile-on .desktop-nav ul li a.active {
  background: rgba(255, 255, 255, 0.03);
  color: #ddd;
}

/* Menu sub */

.mobile-on .mn-has-sub > .fa {
  display: block;
  width: 18px;
  height: 18px;
  font-size: 14px;
  line-height: 16px;
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -8px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);

  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.mobile-on .js-opened > .mn-has-sub > .fa {
  border-color: rgba(255, 255, 255, 0.4);
  line-height: 14px;
}
.mobile-on .inner-nav li {
  margin: 0 !important;
}
.mobile-on .mn-sub {
  display: none;
  opacity: 0;
  position: relative;
  left: 0 !important;
  right: 0;
  top: 0;
  bottom: 0;
  border-left: none !important;
  border-right: none !important;
  border-top: none;
  z-index: 10;
}
.mobile-on .mn-sub li {
  padding-left: 10px;
}

.inner-nav li.js-opened .mn-sub {
  opacity: 1;
}

.mobile-nav {
  display: none;
  float: right;
  vertical-align: middle;
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
  border-left: 1px solid rgba(0, 0, 0, 0.05);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;

  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);

  -webkit-transition-property: background, color;
  -moz-transition-property: background, color;
  -o-transition-property: background, color;
  transition-property: background, color;
}
.mobile-nav:hover,
.mobile-nav.active {
  background: #fff;
  color: #777;
}
.mobile-nav:active {
  -webkit-box-shadow: 0 0 35px rgba(0, 0, 0, 0.05) inset;
  -moz-box-shadow: 0 0 35px rgba(0, 0, 0, 0.05) inset;
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.05) inset;
}
.no-js .mobile-nav {
  width: 55px;
  height: 55px;
}
.mobile-on .mobile-nav {
  display: table;
}
.mobile-nav .fa {
  height: 100%;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-size: 21px;
}

/* Menu sub multi */
.mobile-on .mn-sub {
  width: 100%;
  float: none;
  position: relative;
  overflow-x: hidden;
}

/*
 * Dark panel style
 */

.main-nav.dark {
  background-color: rgba(17, 17, 17, 0.95);

  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.main-nav.dark .inner-nav ul > li > a {
  color: rgba(255, 255, 255, 0.7);
}
.main-nav.dark .inner-nav ul > li > a:hover,
.main-nav.dark .inner-nav ul > li > a.active {
  color: #fff;
}

.main-nav.dark .mobile-nav {
  background-color: transparent;
  border-color: transparent;
  color: rgba(255, 255, 255, 0.9);
}
.main-nav.dark .mobile-nav:hover,
.main-nav.dark .mobile-nav.active {
  color: #fff;
}

.main-nav.mobile-on.dark .inner-nav {
  border-top: 1px solid rgba(100, 100, 100, 0.4);
}

.main-nav.dark .logo,
.main-nav.dark a.logo:hover {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
}

.main-nav.dark .mn-sub {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

/*
 * Transparent panel style
 */

.main-nav.transparent {
  background: transparent !important;
}
.main-nav.js-transparent {
  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}

/* ==============================
   Sections styles
   ============================== */

/*
 * Common
 */

.page-section,
.small-section {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;

  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  padding: 140px 0;
}
.small-section {
  padding: 70px 0;
}
.small-title {
  padding: 0;
  margin: 0 0 30px 0;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
}
.section-icon {
  margin-bottom: 7px;
  text-align: center;
  font-size: 48px;
}
.small-title .serif {
  text-transform: none;
  font-weight: 400;
}
.small-title.white {
  color: #fff;
}
.bg-scroll {
  background-attachment: scroll !important;
}
.bg-pattern {
  background-repeat: repeat;
  background-size: auto;
}
.bg-pattern-over:before,
.bg-pattern-over .YTPOverlay:after {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: repeat;
  background-size: auto;
  background-image: url(../images/pattern-bg-2.png);
}
.bg-gray {
  background-color: #f4f4f4;
}
.bg-gray-lighter {
  background-color: #f8f8f8;
}
.bg-dark,
.bg-dark-lighter,
.bg-dark-alfa-30,
.bg-dark-alfa-50,
.bg-dark-alfa-70,
.bg-dark-alfa-90,
.bg-dark-alfa,
.bg-color,
.bg-color-lighter,
.bg-color-alfa-30,
.bg-color-alfa-50,
.bg-color-alfa-70,
.bg-color-alfa-90,
.bg-color-alfa {
  color: #fff;
}
.bg-dark a,
.bg-dark-lighter a,
.bg-dark-alfa-30 a,
.bg-dark-alfa-50 a,
.bg-dark-alfa-70 a,
.bg-dark-alfa-90 a,
.bg-dark-alfa a,
.bg-color a,
.bg-colorlighter a,
.bg-color-alfa-30 a,
.bg-color-alfa-50 a,
.bg-color-alfa-70 a,
.bg-color-alfa-90 a,
.bg-color-alfa a,
.bg-dark .mod-breadcrumbs a,
.bg-dark-lighter .mod-breadcrumbs a,
.bg-dark-alfa-30 .mod-breadcrumbs a,
.bg-dark-alfa-50 .mod-breadcrumbs a,
.bg-dark-alfa-70 .mod-breadcrumbs a,
.bg-dark-alfa-90 .mod-breadcrumbs a,
.bg-dark-alfa .mod-breadcrumbs a,
.bg-color .mod-breadcrumbs a,
.bg-colorlighter .mod-breadcrumbs a,
.bg-color-alfa-30 .mod-breadcrumbs a,
.bg-color-alfa-50 .mod-breadcrumbs a,
.bg-color-alfa-70 .mod-breadcrumbs a,
.bg-color-alfa-90 .mod-breadcrumbs a,
.bg-color-alfa .mod-breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
  padding-bottom: 3px;

  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}

.bg-dark a:hover,
.bg-dark-lighter a:hover,
.bg-dark-alfa-30 a:hover,
.bg-dark-alfa-50 a:hover,
.bg-dark-alfa-70 a:hover,
.bg-dark-alfa-90 a:hover,
.bg-dark-alfa a:hover,
.bg-color a:hover,
.bg-color-lighter a:hover,
.bg-color-alfa-30 a:hover,
.bg-color-alfa-50 a:hover,
.bg-color-alfa-70 a:hover,
.bg-color-alfa-90 a:hover,
.bg-color-alfa a:hover {
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
}

.bg-color .text,
.bg-color-lighter .text,
.bg-color-alfa-30 .text,
.bg-color-alfa-50 .text,
.bg-color-alfa-70 .text,
.bg-color-alfa-90 .text,
.bg-color-alfa .text,
.bg-color .section-text,
.bg-color-lighter .section-text,
.bg-color-alfa-30 .section-text,
.bg-color-alfa-50 .section-text,
.bg-color-alfa-70 .section-text,
.bg-color-alfa-90 .section-text,
.bg-color-alfa .section-text {
  color: rgba(255, 255, 255, 0.75);
}

.bg-color .white,
.bg-color-lighter .whitet,
.bg-color-alfa-30 .white,
.bg-color-alfa-50 .white,
.bg-color-alfa-70 .white,
.bg-color-alfa-90 .white,
.bg-color-alfa .white {
  color: #fff;
}

.bg-dark {
  background-color: #111;
}
.bg-dark-lighter {
  background-color: #252525;
}
.bg-dark-alfa:before,
.bg-dark-alfa .YTPOverlay:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(17, 17, 17, 0.97);
}
.bg-dark-alfa-30:before,
.bg-dark-alfa-30 .YTPOverlay:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(34, 34, 34, 0.3);
}
.bg-dark-alfa-50:before,
.bg-dark-alfa-50 .YTPOverlay:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(34, 34, 34, 0.5);
}
.bg-dark-alfa-70:before,
.bg-dark-alfa-70 .YTPOverlay:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(17, 17, 17, 0.7);
}
.bg-dark-alfa-90:before,
.bg-dark-alfa-90 .YTPOverlay:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(20, 20, 20, 0.9);
}
.bg-light-alfa:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(252, 252, 252, 0.97);
}
.bg-light-alfa-30:before,
.bg-light-alfa-30 .YTPOverlay:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(252, 252, 252, 0.3);
}
.bg-light-alfa-50:before,
.bg-light-alfa-50 .YTPOverlay:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(252, 252, 252, 0.5);
}
.bg-light-alfa-70:before,
.bg-light-alfa-70 .YTPOverlay:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(252, 252, 252, 0.7);
}
.bg-light-alfa-90:before,
.bg-light-alfa-90 .YTPOverlay:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(252, 252, 252, 0.9);
}
.bg-color {
  background-color: #e91e63;
}
.bg-colort-alfa:before,
.bg-colort-alfa .YTPOverlay:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #e91e63;
  opacity: 0.97;
}
.bg-color-alfa-30:before,
.bg-color-alfa-30 .YTPOverlay:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #e91e63;
  opacity: 0.3;
}
.bg-color-alfa-50:before,
.bg-color-alfa-50 .YTPOverlay:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #e91e63;
  opacity: 0.5;
}
.bg-color-alfa-70:before,
.bg-color-alfa-70 .YTPOverlay:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #e91e63;
  opacity: 0.7;
}
.bg-color-alfa-90:before,
.bg-color-alfa-90 .YTPOverlay:before {
  content: " ";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #e91e63;
  opacity: 0.9;
}

.bg-orange {
  background-color: #f47631 !important;
}
.bg-yellow {
  background-color: #ffce02 !important;
}
.bg-cyan {
  background-color: #27c5c3 !important;
}
.bg-green {
  background-color: #58bf44 !important;
}
.bg-blue {
  background-color: #43a5de !important;
}
.bg-purple {
  background-color: #375acc !important;
}
.bg-red {
  background-color: #e13939 !important;
}

.section-title {
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.3;
}
.section-title.small {
  font-size: 20px;
}
.section-title.large {
  font-size: 27px;
}
.section-more {
  margin-top: 7px;
  color: #aaa;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;

  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}
.section-more:hover {
  text-decoration: none;
  color: #000;
}
.section-more .fa {
  font-size: 12px;
}

.section-heading {
  margin-top: 0;
  margin-bottom: 28px;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.45;
}
.section-line {
  width: 80px;
  height: 2px;
  margin: 30px auto;
  background: #111;
}
.section-line.white {
  background-color: #fff;
}
.section-text {
  font-size: 18px;
  font-weight: 300;
  color: #777;
  line-height: 1.7778;
}
.section-text blockquote {
  margin-top: -5px;
}
.section-bot-image {
  margin: 140px 0 -140px;
  text-align: center;
}

/* Breadcrumbs */

.mod-breadcrumbs {
  margin-top: -5px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;

  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}
.mod-breadcrumbs span {
  opacity: 0.65;
}
.mod-breadcrumbs a {
  text-decoration: none;
  color: #111;
}
.mod-breadcrumbs a:hover {
  text-decoration: underline;
}
.mod-breadcrumbs .fa {
  font-size: 12px;
}

.home-bot-image {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
}

.fixed-height-large,
.fixed-height-medium,
.fixed-height-small {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.fixed-height-large {
  min-height: 800px;
}
.fixed-height-medium {
  min-height: 700px;
}
.fixed-height-small {
  min-height: 600px;
}

/*
 * Split section
 */

.split-section {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.split-section-headings {
  width: 50%;
  position: relative;
  overflow: hidden;
  text-align: center;

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.ssh-table {
  width: 100%;
  min-height: 500px;
  display: table;
}
.ssh-cell {
  display: table-cell;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.split-section-content {
  width: 50%;
  position: relative;
  overflow: hidden;

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.split-section-wrapper {
  padding: 0 80px;
}

/* ==============================
   Services
   ============================== */

.service-grid {
  margin-top: -30px;
}
.service-item {
  margin: 30px 0 0 0;
  position: relative;
  padding: 40px 20px;
  font-size: 15px;
  font-weight: 300;
  text-align: center;
  color: #777;
  background: #f5f5f5;
}

.service-icon {
  font-size: 64px;
  line-height: 1.05;
}
.service-title {
  font-size: 22px;
  font-weight: 400;
  line-height: 0.9;
  color: #111;
}

/* Hoer state */

.service-item {
  -webkit-transition: background-color 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: background-color 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: background-color 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: background-color 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: background-color 0.27s cubic-bezier(0, 0, 0.58, 1);
}

.service-item:hover {
  background-color: #e91e63;
  color: #fff;
}
.service-item:hover .service-title,
.service-item:hover .service-icon,
.service-item:hover .service-icon.color {
  color: #fff !important;
}

/* ==============================
   Alternative services
   ============================== */

.alt-service-grid {
  margin-top: -60px;
}
.alt-services-image {
  text-align: center;
}
.alt-services-image > img {
  display: block;
  width: 100%;
}
.alt-service-item {
  margin: 60px 0 0 0;
  position: relative;
  padding-left: 55px;
  padding-top: 3px;
  font-size: 13px;
  font-weight: 300;
  color: #999;

  -webkit-transform: perspective(500px) rotateX(0deg) rotateY(0deg)
    rotateZ(0deg);
  -moz-transform: perspective(500px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  -o-transform: perspective(500px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  -ms-transform: perspective(500px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  transform: perspective(500px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);

  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
}
.alt-service-icon {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 40px;
  text-align: center;
  font-size: 28px;
  color: #111;

  -webkit-transition: all 0.17s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.17s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.17s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.17s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.17s cubic-bezier(0, 0, 0.58, 1);
}
.alt-services-title {
  margin: 0 0 10px 0;
  padding: 0;
  font-size: 15px;
  font-weight: 400;
  color: #111;
}

/* ==============================
   Team
   ============================== */

.team-item-image {
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid #e91e63;
}
.team-item-image.no-bord {
  border: none;
}
.team-item-image img {
  width: 100%;
}
.team-item-image:after {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;

  z-index: 1;

  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}

.team-item-detail {
  opacity: 0;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  padding: 20px 23px;
  font-size: 14px;
  font-weight: 300;
  color: #777;
  text-align: center;
  z-index: 2;

  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;

  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}
.team-item-h {
  font-weight: 300;
}

.team-item-descr {
  color: #555;
  text-align: center;
  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}

.team-item-name {
  margin-top: 20px;
  font-size: 17px;
}
.team-item-role {
  margin-top: 1px;
  font-size: 14px;
  color: #999;
}
.team-social-links {
  font-size: 14px;
  cursor: pointer;
}
.team-social-links a {
  display: inline-block;
  padding: 3px 7px;
  color: rgba(0, 0, 0, 0.4);

  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}

/* Hover state */
.no-mobile .team-item:hover .team-item-image:after {
  background: rgba(255, 255, 255, 0.91);
}
.no-mobile .team-item:hover .team-item-detail {
  opacity: 1;
}
.no-mobile .team-item:hover .team-item-descr {
  color: #111;
}
.no-mobile .team-social-links a:hover {
  color: rgba(0, 0, 0, 0.75);
}

/* Mobile touch */
.team-item.js-active .team-item-image:after {
  background: rgba(255, 255, 255, 0.93);
}
.team-item.js-active .team-item-detail {
  opacity: 1;
}
.team-item.js-active .team-item-descr {
  color: #111;
}
.team-item.js-active .team-social-links a:hover {
  color: rgba(0, 0, 0, 0.75);
}

/* ==============================
   Features
   ============================== */

.features-item {
  padding: 15px;
  text-align: center;

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
.features-icon {
  font-size: 48px;
  line-height: 1.3;
  opacity: 0.9;
}
.features-title {
  margin-bottom: 3px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.features-descr {
  font-size: 15px;
  font-weight: 300;
  opacity: 0.75;
}

/* ==============================
   Alt features
   ============================== */

.alt-features-grid {
  margin-top: -70px;
}
.alt-features-item {
  margin-top: 70px;
}
.alt-features-icon {
  padding-top: 10px;
  font-size: 48px;
  line-height: 0.9;
  color: #111;
}
.alt-features-icon img {
  width: 100%;
}
.alt-features-title {
  margin-bottom: 21px;
  font-size: 15px;
  font-weight: 400;
}
.alt-features-descr {
  color: #777;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.86;
}

/* ==============================
   Alt features 1
   ============================== */

.alt-features-grid-1 {
  margin-top: -70px;
}

.alt-features-icon-1 {
  width: 64px;
  height: 64px;
  display: inline-block;
  font-size: 28px;
  line-height: 64px;
  color: #fff;
  background: #e91e63;

  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.alt-features-icon-1 img {
  width: 100%;
}
.alt-features-title-1 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 300;
}
.alt-features-descr-1 {
  color: #777;
  font-size: 19px;
  font-weight: 300;
}

.email-link a {
  text-decoration: none;
  color: #777;
}

/* ==============================
   Benefits
   ============================== */

.benefits-grid {
  margin: 0 0 -40px -20px;
  text-align: center;
  vertical-align: top;
}
.benefit-item {
  display: inline-block;
  width: 264px;
  margin: 0 0 40px 20px;
  padding: 15px;
  position: relative;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  vertical-align: top;
  cursor: default;
}
.benefit-number {
  width: 100%;
  position: absolute;
  top: 0;
  left: -50px;
  font-size: 120px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  color: rgba(0, 0, 0, 0.025);

  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}
.benefit-icon {
  position: relative;
  margin-bottom: 6px;
  font-size: 32px;
}
.benefit-title {
  position: relative;
  margin: 0 0 17px 0;
  padding: 0;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.benefits-descr {
  position: relative;
  font-size: 13px;
  font-weight: 300;
  color: #777;
}

.benefit-item:after {
  content: " ";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.015);
  opacity: 0;

  -webkit-transition: all 0.37s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);

  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -o-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
}
.benefit-item:hover:after {
  opacity: 1;
  -webkit-transform: none;
  -moz-transform: none;
  -o-transform: none;
  -ms-transform: none;
  transform: none;
}
.benefit-item:hover .benefit-number {
  color: rgba(0, 0, 0, 0.035);
  -webkit-transform: scale(0.75);
  -moz-transform: scale(0.75);
  -o-transform: scale(0.75);
  -ms-transform: scale(0.75);
  transform: scale(0.75);
}

/* ==============================
   Counters
   ============================== */

.count-wrapper {
  padding: 40px 20px;
  border: 1px solid rgba(0, 0, 0, 0.09);
}
.count-number {
  font-size: 48px;
  font-weight: 300;
  line-height: 1.3;
  text-align: center;
}
.count-descr {
  color: #999;
  font-size: 11px;
  text-align: center;
}
.count-descr .fa {
  font-size: 14px;
}

.count-title {
  margin-top: -1px;
  font-size: 13px;
}
.count-separator {
  height: 30px;
  clear: both;
  float: none;
  overflow: hidden;
}

/* ==============================
   Portfolio
   ============================== */

/*
 * Works filter
 */

.works-filter {
  list-style: none;
  padding: 0;
  margin: 0 0 45px 0;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  color: #555;
  cursor: default;
}
.works-filter a {
  display: inline-block;
  margin: 0 18px;
  color: #888;
  text-decoration: none;

  -webkit-transition: all 0.37s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);

  cursor: pointer;
}
.works-filter a:hover {
  color: #111;
  text-decoration: none;
}
.works-filter a.active {
  color: #111;
  cursor: default;
}
.works-filter a.active:hover {
  color: #111;
}

/*
 * Works grid 
 */

.work-img {
  position: relative;
  overflow: hidden;
}
.work-img img {
  width: 100%;
  display: block;
  overflow: hidden;
}
.work-intro {
  width: 100%;
  height: 84px;
  padding: 20px 20px 0 20px;

  -webkit-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  position: absolute;
  bottom: 0;
  left: 0;
  text-align: center;
  overflow: hidden;
}
.work-title {
  margin: 0 0 8px 0;
  padding: 0;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}
.work-descr {
  font-size: 11px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #aaa;
  line-height: 1.2;
}

/* Work item hover state */

.work-intro {
  -webkit-transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}

/*
 * Works full view
 */

.work-full {
  display: none;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 10000;
}
.work-full-load {
  padding-top: 60px;
}
.work-loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 10001;
}
.work-loader:after {
  display: block;
  content: " ";
  width: 16px;
  height: 16px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -8px 0 0 -8px;
  background: url(../images/loader.gif) no-repeat;
}

/* Work navigation */
.work-full-media {
  margin-top: 30px;
}

.work-full-media img {
  max-width: 100%;
  height: auto;
}

/* ==============================
   Footer
   ============================== */

.footer {
  text-align: center;
  font-size: 12px;
  color: #999;
}
.footer a {
  color: #ddd;
  text-decoration: none;

  -webkit-transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
  transition: all 0.27s cubic-bezier(0.3, 0.1, 0.58, 1);
}
.footer a:hover {
  color: #fff;
}
.footer-copy {
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-made {
  font-size: 13px;
}

a.link-to-top {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
  font-size: 48px;
}

/*
 * Pagination
 */

.pagination {
  font-size: 13px;
  font-family: "Open Sans", arial, sans-serif;
}
.pagination a {
  display: inline-block;
  min-width: 30px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  padding: 7px 14px;
  border: 1px solid #eaeaea;
  color: #999;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;

  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}
.pagination .fa {
  margin-top: 1px;
  font-size: 16px;
}
.pagination a:hover {
  text-decoration: none;
  border-color: #bbb;
  color: #444;
}
.pagination a.active,
.pagination a.active:hover {
  border-color: #bbb;
  color: #444;
  cursor: default;
}
.pagination a.no-active,
.pagination a.no-active:hover {
  border-color: #efefef;
  color: #bbb;
  cursor: default;
}

/*
 * Owl Carousel
 */

.owl-buttons {
  position: static;
}
.owl-prev,
.owl-next {
  opacity: 0;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -30px;
  width: 40px;
  height: 60px;
  line-height: 60px;
  font-size: 74px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);

  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);

  z-index: 6;

  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}
.owl-prev {
  left: 0;
}
.owl-next {
  right: 0;
}
.owl-prev:hover,
.owl-next:hover {
  color: rgba(255, 255, 255, 0.95);

  -webkit-transition: 0 none !important;
  -moz-transition: 0 none !important;
  -ms-transition: 0 none !important;
  -o-transition: 0 none !important;
  transition: 0 none !important;
}
.owl-prev:active,
.owl-next:active {
  -webkit-transform: scale(0.94);
  -moz-transform: scale(0.94);
  -o-transform: scale(0.94);
  -ms-transform: scale(0.94);
  transform: scale(0.94);
}
.owl-carousel:hover .owl-prev {
  opacity: 1;
  left: 25px;
}
.owl-carousel:hover .owl-next {
  opacity: 1;
  right: 25px;
}
.owl-pagination {
  display: block;
  width: 100%;
  position: absolute;
  bottom: 45px;
  left: 0;
  text-align: center;
  z-index: 100 !important;
}
.owl-page {
  display: inline-block;
  padding: 6px 4px;
}
.owl-page span {
  width: 13px;
  height: 13px;
  display: block;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1000 !important;

  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;

  -webkit-box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 1px 1px 0px rgba(0, 0, 0, 0.1);
}
.owl-page:hover span {
  background: rgba(255, 255, 255, 0.8);
  border: none;
}
.owl-page.active span {
  background: rgba(255, 255, 255, 0.95);
  border: none;
}

.item-carousel .owl-prev {
  left: -125px;
}
.item-carousel .owl-next {
  right: -125px;
}
section:hover .item-carousel.owl-carousel .owl-prev {
  opacity: 1;
  left: -80px;
}
section:hover .item-carousel.owl-carousel .owl-next {
  opacity: 1;
  right: -80px;
}
.item-carousel .owl-pagination {
  bottom: -95px;
}

.work-full-slider:hover .owl-prev,
.content-slider:hover .owl-prev {
  left: 10px;
}
.work-full-slider:hover .owl-next,
.content-slider:hover .owl-next {
  right: 10px;
}
.work-full-slider .owl-pagination,
.content-slider .owl-pagination {
  bottom: 15px;
}

.single-carousel,
.small-item-carousel {
  margin-bottom: 35px;
}
.single-carousel .owl-pagination,
.small-item-carousel .owl-pagination {
  position: relative;
  left: 0;
  top: 35px;
  margin: 0;
}

.owl-carousel.dark-slider .owl-page span {
  border-color: rgba(0, 0, 0, 0.4);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.owl-carousel.dark-slider .owl-page:hover span {
  background-color: rgba(0, 0, 0, 0.4);
}
.owl-carousel.dark-slider .owl-page.active span {
  background-color: rgba(0, 0, 0, 0.5);
}

.owl-carousel.dark-slider .owl-prev,
.owl-carousel.dark-slider .owl-next {
  color: rgba(0, 0, 0, 0.5);
  text-shadow: none;

  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.owl-carousel.dark-slider .owl-prev:hover,
.owl-carousel.dark-slider .owl-next:hover {
  color: rgba(0, 0, 0, 0.65);
}
.single-carousel .owl-prev,
.small-item-carousel .owl-prev {
  left: -125px;
}
.single-carousel .owl-next,
.small-item-carousel .owl-next {
  right: -125px;
}
section:hover .single-carousel .owl-prev,
section:hover .small-item-carousel .owl-prev {
  opacity: 1;
  left: -80px;
}
section:hover .single-carousel .owl-next,
section:hover .small-item-carousel .owl-next {
  opacity: 1;
  right: -80px;
}

/*
 * Tabs minimal
 */

.tpl-minimal-tabs {
  display: inline-block;
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  border: none;
}
.tpl-minimal-tabs > li {
  padding: 0 30px;
  background: none !important;
}
.tpl-minimal-tabs > li > a {
  padding: 6px 20px 5px;
  text-decoration: none;
  color: #000;
  background: none;
  border: 1px solid transparent;

  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.tpl-minimal-tabs > li > a:hover {
  background: none;
  border-color: #e9e9e9;
  color: #777;
}
.tpl-minimal-tabs li.active a,
.tpl-minimal-tabs li.active a:hover {
  border: 1px solid #222 !important;
  background: none !important;
  color: #000;
  cursor: default;
}

/*
 * Alert messages
 */

.success {
  border-color: #a9e2c2;
  color: #36a367;
}
.info {
  border-color: #9ecdfc;
  color: #297ad3;
}

.error {
  border-color: #ffbbbb;
  color: #e33131;
}

/*
 * Accordion
 */

.accordion > dt {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.accordion > dt > a {
  display: block;
  position: relative;
  color: #777;
  text-decoration: none;
  padding: 14px 20px;
  border: 1px solid #e5e5e5;

  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}
.accordion > dt > a:hover {
  text-decoration: none;
  border-color: #ddd;
  background-color: #fcfcfc;
  color: #444;
}
.accordion > dt > a.active {
  color: #000;
  border-color: #ddd;
  background-color: #fcfcfc;
  cursor: default;
}
.accordion > dt > a:after {
  content: "\f107";
  width: 15px;
  height: 15px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  right: 10px;
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-size: 15px;
  line-height: 15px;
  text-align: center;
  color: #999;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}
.accordion > dt > a.active:after,
.accordion > dt > a.active:hover:after {
  content: "\f106";
  color: #111;
}
.accordion > dt > a:hover:after {
  color: #444;
}

.accordion > dd {
  margin-bottom: 10px;
  padding: 10px 20px 20px;
  font-size: 15px;
  line-height: 1.8;
  color: #777;
}

/*
 * Toggle
 */

.toggle > dt {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.toggle > dt > a {
  display: block;
  position: relative;
  color: #777;
  text-decoration: none;
  padding: 14px 20px;
  border: 1px solid #e5e5e5;

  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}
.toggle > dt > a:hover {
  text-decoration: none;
  border-color: #ddd;
  background-color: #fcfcfc;
  color: #444;
}
.toggle > dt > a.active {
  color: #000;
  border-color: #ddd;
  background-color: #fcfcfc;
}
.toggle > dt > a:after {
  content: "\f107";
  width: 15px;
  height: 15px;
  margin-top: -8px;
  position: absolute;
  top: 50%;
  right: 10px;
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  font-size: 15px;
  line-height: 15px;
  text-align: center;
  color: #999;
  -webkit-font-smoothing: antialiased;
  -webkit-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -moz-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -o-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  -ms-transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.27s cubic-bezier(0, 0, 0.58, 1);
}
.toggle > dt > a.active:after,
.toggle > dt > a.active:hover:after {
  content: "\f106";
  color: #111;
}
.toggle > dt > a:hover:after {
  color: #444;
}
.toggle > dd {
  margin-bottom: 10px;
  padding: 10px 20px 20px;
  font-size: 15px;
  line-height: 1.8;
  color: #777;
}

.fa-sm {
  width: 20px;
  font-size: 14px;
}

.et-examples {
  color: #555;
  margin-left: 1px;
  vertical-align: middle;
}
.et-examples .box1 {
  display: block;
  width: 33%;
  float: left;
  padding: 0;
  border: 1px solid #e5e5e5;
  margin: -1px 0 0 -1px;
  font-size: 13px;
}
@media only screen and (max-width: 1024px) {
  .et-examples .box1 {
    width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  .et-examples .box1 {
    width: 100%;
  }
}
.et-examples .box1:hover {
  background: #f8f8f8;
  color: #111;
}
.et-examples .box1 > span {
  display: inline-block;
  margin-right: 5px;
  min-width: 70px;
  min-height: 70px;
  border-right: 1px solid #f1f1f1;
  line-height: 70px;
  text-align: center;
  font-size: 32px;
}

/*
 *  Intro page
 */

.intro-image {
  width: 100%;
}
.intro-label {
  position: absolute;
  top: 7px;
  right: 10px;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==============================
   Bootstrap multicolumn grid
   ============================== */

/* clear the first in row for any block that has the class "multi-columns-row" */
.multi-columns-row .col-xs-6:nth-child(2n + 3) {
  clear: left;
}
.multi-columns-row .col-xs-4:nth-child(3n + 4) {
  clear: left;
}
.multi-columns-row .col-xs-3:nth-child(4n + 5) {
  clear: left;
}
.multi-columns-row .col-xs-2:nth-child(6n + 7) {
  clear: left;
}
.multi-columns-row .col-xs-1:nth-child(12n + 13) {
  clear: left;
}

@media (min-width: 768px) {
  /* reset previous grid */
  .multi-columns-row .col-xs-6:nth-child(2n + 3) {
    clear: none;
  }
  .multi-columns-row .col-xs-4:nth-child(3n + 4) {
    clear: none;
  }
  .multi-columns-row .col-xs-3:nth-child(4n + 5) {
    clear: none;
  }
  .multi-columns-row .col-xs-2:nth-child(6n + 7) {
    clear: none;
  }
  .multi-columns-row .col-xs-1:nth-child(12n + 13) {
    clear: none;
  }

  /* clear first in row for small columns */
  .multi-columns-row .col-sm-6:nth-child(2n + 3) {
    clear: left;
  }
  .multi-columns-row .col-sm-4:nth-child(3n + 4) {
    clear: left;
  }
  .multi-columns-row .col-sm-3:nth-child(4n + 5) {
    clear: left;
  }
  .multi-columns-row .col-sm-2:nth-child(6n + 7) {
    clear: left;
  }
  .multi-columns-row .col-sm-1:nth-child(12n + 13) {
    clear: left;
  }
}
@media (min-width: 992px) {
  /* reset previous grid */
  .multi-columns-row .col-sm-6:nth-child(2n + 3) {
    clear: none;
  }
  .multi-columns-row .col-sm-4:nth-child(3n + 4) {
    clear: none;
  }
  .multi-columns-row .col-sm-3:nth-child(4n + 5) {
    clear: none;
  }
  .multi-columns-row .col-sm-2:nth-child(6n + 7) {
    clear: none;
  }
  .multi-columns-row .col-sm-1:nth-child(12n + 13) {
    clear: none;
  }

  /* clear first in row for medium columns */
  .multi-columns-row .col-md-6:nth-child(2n + 3) {
    clear: left;
  }
  .multi-columns-row .col-md-4:nth-child(3n + 4) {
    clear: left;
  }
  .multi-columns-row .col-md-3:nth-child(4n + 5) {
    clear: left;
  }
  .multi-columns-row .col-md-2:nth-child(6n + 7) {
    clear: left;
  }
  .multi-columns-row .col-md-1:nth-child(12n + 13) {
    clear: left;
  }
}
@media (min-width: 1200px) {
  /* reset previous grid */
  .multi-columns-row .col-md-6:nth-child(2n + 3) {
    clear: none;
  }
  .multi-columns-row .col-md-4:nth-child(3n + 4) {
    clear: none;
  }
  .multi-columns-row .col-md-3:nth-child(4n + 5) {
    clear: none;
  }
  .multi-columns-row .col-md-2:nth-child(6n + 7) {
    clear: none;
  }
  .multi-columns-row .col-md-1:nth-child(12n + 13) {
    clear: none;
  }

  /* clear first in row for large columns */
  .multi-columns-row .col-lg-6:nth-child(2n + 3) {
    clear: left;
  }
  .multi-columns-row .col-lg-4:nth-child(3n + 4) {
    clear: left;
  }
  .multi-columns-row .col-lg-3:nth-child(4n + 5) {
    clear: left;
  }
  .multi-columns-row .col-lg-2:nth-child(6n + 7) {
    clear: left;
  }
  .multi-columns-row .col-lg-1:nth-child(12n + 13) {
    clear: left;
  }
}

/* idk what was that. anyways, here's the updated and cleaner css. */
.page-section-cards {
  width: 80%;
  margin: 80px auto;
}

.page-section-contact {
  width: 100%;
  margin: 80px auto;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/full-width-images/section-bg-2.jpg");
  background-position: center;
  background-size: cover;
  padding: 80px 0;
  color: white;
}

#contact {
  background-image: none;
  color: black;
  padding: 0;
}

#services {
  text-align: center;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
}

#destination-partners .service-row {
  justify-content: center;
}

.location-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.partner-card:hover .location-badge {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.05);
}

.service-card {
  flex-basis: 29%;
  min-width: 180px;
  margin: 20px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;

  img {
    width: 100%;
  }

  .layer {
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    justify-content: center;
    text-align: center;
    display: flex;
  }

  .layer:hover {
    background-color: #00000080;
  }

  .layer a {
    color: white;
    text-decoration: none;
    position: absolute;
    bottom: 0;
    opacity: 0;
    transition: 0.3s;
    letter-spacing: 1px;
  }

  .layer:hover a {
    bottom: 40%;
    opacity: 100%;
    padding: 10px 15px;
    border-radius: 15px;
  }
}

.partner-card {
  flex-basis: 20%;
  min-width: 180px;
  margin: 20px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;

  img {
    width: 100%;
  }

  .layer {
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    justify-content: center;
    text-align: center;
    display: flex;
  }

  .layer:hover {
    background-color: #00000080;
  }

  .layer a {
    color: white;
    text-decoration: none;
    position: absolute;
    bottom: 0;
    opacity: 0;
    transition: 0.3s;
    letter-spacing: 1px;
  }

  .layer:hover a {
    bottom: 30%;
    opacity: 100%;
    padding: 10px 15px;
    border-radius: 15px;
  }
}

@media (max-width: 500px) {
  .service-row {
    flex-direction: row;
    justify-content: center;
  }

  .service-card {
    margin: 15px 0;
  }

  .nav-logo-wrap {
    width: 50%;
  }
}

@media (max-width: 800px) {
  .home-section {
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
  }
}
