@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@400;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  border: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  margin: 0;
}

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

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

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

/*---------------------*/
.swiper-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.swiper-wrapper {
  align-items: center;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  /* Center slide text vertically */
  display: flex;
  justify-content: center;
  align-items: center;
}
.swiper-slide__item {
  width: 250px;
  height: auto;
  transform: translatey(0px);
  animation: floatY 6s ease-in-out infinite;
  margin: 0 auto;
}
.swiper-slide__item img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.swiper-slide__item a {
  font-size: 1.25em;
  line-height: 1.5em;
}
.swiper-pagination {
  position: static;
}

.swiper-nav-big-buttons {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .swiper-nav-big-buttons {
    top: 45%;
  }
}

/** Breakpoints **/
html, body {
  font-family: "Source Sans Pro", sans-serif;
  height: 100%;
  line-height: 1;
  background-color: #fff;
}

.ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.ibg img {
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
}

.item {
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}
.item__image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.item__logo {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(100, 194, 158, 0.5);
  display: flex;
  font-size: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease 0s;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}

.container {
  margin: 0 auto;
  position: relative;
  z-index: 100;
}

@media only screen and (min-width: 576px) {
  .container, .fullscreen__body {
    max-width: 540px;
  }
}
@media only screen and (min-width: 768px) {
  .container, .fullscreen__body {
    max-width: 750px;
  }
}
@media only screen and (min-width: 992px) {
  .container, .fullscreen__body {
    max-width: 970px;
  }
}
@media only screen and (min-width: 1200px) {
  .container, .fullscreen__body {
    max-width: 1170px;
  }
}

.fullscreen {
  min-height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  background-color: #302E5F;
  display: flex;
  color: #fff;
}
.fullscreen__body {
  flex: 1 1 auto;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  padding: 0 15px;
  z-index: 90;
}
.fullscreen__title {
  font-size: 4.2em;
  font-weight: 700;
  line-height: 1.2em;
  margin: 0 0 40px 0;
}
@media only screen and (max-width: 768px) {
  .fullscreen__title {
    font-size: 3.5em;
  }
}
@media only screen and (max-width: 576px) {
  .fullscreen__title {
    font-size: 2.8em;
  }
}
.fullscreen__text {
  font-size: 3em;
  line-height: 52px;
  margin: 0 0 40px 0;
}
@media only screen and (max-width: 576px) {
  .fullscreen__text {
    font-size: 2.25em;
  }
}
.fullscreen__link {
  align-self: center;
}

.overlay {
  position: relative;
}
.overlay:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.btn-primary {
  display: inline-block;
  white-space: nowrap;
  font-size: 20px;
  line-height: 18px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  background-color: #5e72e4;
  border-radius: 5px;
  padding: 15px 20px;
  margin: 10px 0 0 0;
}

.btn-transparent {
  border: 1px solid white;
  border-radius: 3px;
  color: white;
  background-color: transparent;
  height: 50px;
  line-height: 46px;
  padding: 0 25px;
  font-size: 1.5em;
  transition: all 0.3s ease 0s;
}
.btn-transparent:hover {
  border: 1px solid #0082D6;
  background-color: #0082D6;
}

.mouse-parallax {
  position: relative;
  overflow: hidden;
}
.mouse-parallax-bg {
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 110%;
  height: 110%;
  transition: all 0.1s ease;
}

.block {
  padding: 70px 65px 55px 65px;
  text-align: center;
}
.block__icon, .block__title {
  margin: 0 0 35px 0;
}
.block__title {
  color: #4c5867;
  font-size: 1.8em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3.6px;
  line-height: 32px;
}
@media only screen and (max-width: 576px) {
  .block__title {
    font-size: 1.6em;
    letter-spacing: 1px;
  }
}
.block__text {
  color: #5f727f;
  font-size: 18px;
  font-weight: 400;
  line-height: 34px;
}
.block__text_j {
  text-align: justify;
  font-size: 1.2em;
  line-height: 30px;
}
.block__text_j:after {
  content: "";
  display: block;
  margin: 35px auto 0 auto;
  width: 50px;
  height: 1px;
  background-color: #D7D7D7;
}
@media (max-width: 1500px) {
  .block__text_j:after {
    margin: 15px auto 0 auto;
  }
}

.section-title {
  font-size: 3.8em;
  text-transform: capitalize;
  text-align: center;
  display: block;
  margin: 0 0 40px 0;
}
@media only screen and (max-width: 768px) {
  .section-title {
    font-size: 3.2em;
  }
}
@media only screen and (max-width: 576px) {
  .section-title {
    font-size: 2.5em;
  }
}

/** Different Image Effects on Zoom - https://w3bits.com/css-image-hover-zoom/ **/
.img-hover-zoom {
  /* Simple Zoom */
  transition: transform 0.5s ease;
  /* Quick-zoom */
  /* Point-zoom */
  /* Zoom-n-rotate */
  /* Slow-motion Zoom */
  /* Brighten and Zoom-in */
  /* Horizontal Zoom-n-pan */
  /* Vertical Zoom-n-pan */
  /* Blur-zoom */
  /* Colorize-zoom */
}
.img-hover-zoom:hover {
  transform: scale(1.5);
}
.img-hover-zoom--quick-zoom {
  transition: transform 0.25s, visibility 0.25s ease-in;
  transform-origin: 0 0;
}
.img-hover-zoom--quick-zoom:hover {
  transform: scale(2);
}
.img-hover-zoom--point-zoom {
  transition: transform 1s, filter 0.5s ease-out;
  transform-origin: 65% 75%;
}
.img-hover-zoom--point-zoom:hover {
  transform: scale(5);
}
.img-hover-zoom--zoom-n-rotate {
  transition: transform 0.5s ease-in-out;
}
.img-hover-zoom--zoom-n-rotate:hover {
  transform: scale(2) rotate(25deg);
}
.img-hover-zoom--slowmo {
  transition: transform 5s, filter 3s ease-in-out;
  transform-origin: 50% 65%;
  filter: brightness(150%);
}
.img-hover-zoom--slowmo:hover {
  transform: scale(3);
  filter: brightness(100%);
}
.img-hover-zoom--brightness {
  transition: transform 2s, filter 1.5s ease-in-out;
  transform-origin: center center;
  filter: brightness(70%);
}
.img-hover-zoom--brightness:hover {
  filter: brightness(100%);
  transform: scale(1.3);
}
.img-hover-zoom--zoom-n-pan-h {
  transition: transform 0.5s ease-in-out;
  transform: scale(1.4);
  transform-origin: 100% 0;
}
.img-hover-zoom--zoom-n-pan-h:hover {
  transform: scale(1.5) translateX(30%);
}
.img-hover-zoom--zoom-n-pan-v {
  transition: transform 0.5s ease-in-out;
  transform: scale(1.4);
  transform-origin: 0 0;
}
.img-hover-zoom--zoom-n-pan-v:hover {
  transform: scale(1.25) translateY(-30%);
}
.img-hover-zoom--blur {
  transition: transform 1s, filter 2s ease-in-out;
  transform: scale(1.2);
  filter: blur(2px);
}
.img-hover-zoom--blur:hover {
  filter: blur(0);
  transform: scale(1);
}
.img-hover-zoom--colorize {
  transition: transform 0.5s, filter 1.5s ease-in-out;
  filter: grayscale(100%);
}
.img-hover-zoom--colorize:hover {
  filter: grayscale(0);
  transform: scale(1.1);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 15px 25px;
  background-color: transparent;
}
.header.scrolled {
  background-color: #212331;
  transition: background-color 200ms linear;
}

div#perspective.modalview .menu-line {
  background: #000;
}

#showMenu.active .menu-line {
  transform: scale(0);
}

#showMenu.active .menu-line-1 {
  transform: rotate(-45deg);
  top: 12px;
}

#showMenu.active .menu-line-2 {
  transform: rotate(45deg);
  bottom: 8px;
}

.perspective-toggle {
  border: none;
  width: 36px;
  height: 30px;
  text-indent: 100%;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  outline: none;
  background: transparent;
  padding: 0;
}

.menu-line {
  position: absolute;
  height: 4px;
  width: 100%;
  left: 0;
  background: #fff;
  transition: all 0.3s ease 0s;
}
.menu-line-1 {
  top: 3px;
}
.menu-line-2 {
  top: 13px;
}
.menu-line-3 {
  top: 23px;
}

/** CSS for Perspective Adaptive Menu - https://tympanus.net/codrops/2013/12/18/perspective-page-view-navigation/ **/
@font-face {
  font-family: "typicons";
  src: url("../fonts/typicons/typicons.eot");
  src: url("../fonts/typicons/typicons.eot?#iefix") format("embedded-opentype"), url("../fonts/typicons/typicons.ttf") format("truetype"), url("../fonts/typicons/typicons.woff") format("woff"), url("../fonts/typicons/typicons.svg#typicons") format("svg");
  font-weight: normal;
  font-style: normal;
}
html, body, .perspective {
  width: 100%;
  height: 100%;
}

.perspective {
  background: #aaa;
  position: relative;
  /* Modal view */
}
.perspective__container {
  background: #fff;
  min-height: 100%;
  position: relative;
  outline: 1px solid rgba(0, 0, 0, 0);
  z-index: 10;
  /* reset transforms (Chrome bug) */
  transform: translateZ(0) translateX(0) rotateY(0deg);
}
.perspective__container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  background: rgba(0, 0, 0, 0.2);
  /* the transition delay of the height needs to be synced with the perspective__container transition time */
  transition: opacity 0.4s, height 0s 0.4s;
}
.perspective__wrapper {
  position: relative;
}
.perspective.modalview {
  position: fixed;
  perspective: 1500px;
}

.component {
  margin: 0 auto;
  width: 60%;
  text-align: justify;
  font-size: 1.5em;
}

.modalview .perspective__container {
  position: absolute;
  overflow: hidden;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.modalview .perspective__wrapper {
  -webkit-transform: translateZ(-1px);
  /* solves a rendering bug in Chrome on Windows */
}

.animate .perspective__container::after {
  opacity: 1;
  height: 101%;
  transition: opacity 0.3s;
}

/* Outer Nav */
.outer-nav {
  position: absolute;
  height: auto;
  font-size: 2em;
}

.outer-nav.vertical {
  top: 50%;
  transform: translateY(-50%);
  transform-style: preserve-3d;
}

.outer-nav.horizontal {
  left: 50%;
  width: 75%;
  max-width: 1000px;
  text-align: center;
  transform: translateX(-50%);
}

.outer-nav.left {
  left: 25%;
}

.outer-nav.right {
  right: 25%;
}

.outer-nav.top {
  top: 25%;
}

.outer-nav.bottom {
  bottom: 25%;
}

.outer-nav a {
  display: inline-block;
  white-space: nowrap;
  font-weight: 300;
  margin: 0 0 30px 0;
  color: #fff;
  transition: color 0.3s;
  transform-style: preserve-3d;
}

.outer-nav a:hover {
  color: #ffdccd;
}

.outer-nav.vertical a {
  display: block;
}

.outer-nav.horizontal a {
  margin: 15px 20px;
}

.outer-nav a::before {
  display: inline-block;
  font-family: "typicons";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  margin-right: 10px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.icon-news::before {
  content: "";
}

.icon-home::before {
  content: "";
}

.icon-image::before {
  content: "";
}

.icon-upload::before {
  content: "";
}

.icon-star::before {
  content: "";
}

.icon-mail::before {
  content: "";
}

.icon-lock::before {
  content: "";
}

.icon-chart-pie::before {
  content: "";
}

/* Individual Effects */
/* Effect airbnb */
.effect-airbnb {
  background: #b8b6b4;
}

.effect-airbnb .perspective__container {
  transition: transform 0.4s;
  transform-origin: 50% 50%;
}

.effect-airbnb.animate .perspective__container {
  transform: translateZ(-1500px) translateX(100%) rotateY(-45deg);
}

.no-csstransforms3d .effect-airbnb.animate .perspective__container {
  left: 75%;
}

.effect-airbnb .outer-nav a {
  opacity: 0;
  transform: translateX(-150px);
  transition: transform 0.4s, opacity 0.4s;
}

.effect-airbnb.animate .outer-nav a {
  opacity: 1;
  transform: translateX(0);
}

.effect-airbnb.animate .outer-nav a:nth-child(2) {
  transition-delay: 0.04s;
}

.effect-airbnb.animate .outer-nav a:nth-child(3) {
  transition-delay: 0.08s;
}

.effect-airbnb.animate .outer-nav a:nth-child(4) {
  transition-delay: 0.12s;
}

.effect-airbnb.animate .outer-nav a:nth-child(5) {
  transition-delay: 0.16s;
}

.effect-airbnb.animate .outer-nav a:nth-child(6) {
  transition-delay: 0.2s;
}

.effect-airbnb.animate .outer-nav a:nth-child(7) {
  transition-delay: 0.24s;
}

/* Effect Move Left */
.effect-moveleft {
  background: #f4f3f1;
}

.effect-moveleft .perspective__container {
  transition: transform 0.4s;
  transform-origin: 50% 50%;
}

.effect-moveleft .perspective__container::after {
  background: rgba(255, 255, 255, 0.6);
}

.effect-moveleft.animate .perspective__container {
  transform: translateX(-50%) rotateY(45deg) translateZ(-50px);
}

.no-csstransforms3d .effect-moveleft.animate .perspective__container {
  left: -75%;
}

.effect-moveleft .outer-nav a {
  color: #e86a32;
  opacity: 0;
  transform: translateX(100px) translateZ(-1000px);
  transition: transform 0.4s, opacity 0.4s;
}

.effect-moveleft .outer-nav a:hover {
  color: #333;
}

.effect-moveleft.animate .outer-nav a {
  opacity: 1;
  transform: translateX(0) translateZ(0);
}

.effect-moveleft.animate .outer-nav a:nth-child(2) {
  transition-delay: 0.04s;
}

.effect-moveleft.animate .outer-nav a:nth-child(3) {
  transition-delay: 0.08s;
}

.effect-moveleft.animate .outer-nav a:nth-child(4) {
  transition-delay: 0.12s;
}

.effect-moveleft.animate .outer-nav a:nth-child(5) {
  transition-delay: 0.16s;
}

.effect-moveleft.animate .outer-nav a:nth-child(6) {
  transition-delay: 0.2s;
}

.effect-moveleft.animate .outer-nav a:nth-child(7) {
  transition-delay: 0.24s;
}

/* Effect Rotate Left */
.effect-rotateleft {
  background: #e96e4f;
}

.effect-rotateleft .perspective__container {
  transition: transform 0.4s;
  transform-origin: 0% 50%;
}

.effect-rotateleft .perspective__container::after {
  background: rgba(255, 255, 255, 0.6);
}

.effect-rotateleft.animate .perspective__container {
  transform: translateZ(-1800px) translateX(-50%) rotateY(45deg);
}

.no-csstransforms3d .effect-rotateleft.animate .perspective__container {
  left: -75%;
}

.effect-rotateleft .outer-nav a {
  opacity: 0;
  transform: translateX(350px) translateZ(-1000px);
  transition: transform 0.4s, opacity 0.4s;
}

.effect-rotateleft.animate .outer-nav a {
  opacity: 1;
  transform: translateX(0) translateZ(0);
}

.effect-rotateleft.animate .outer-nav a:nth-child(2) {
  transition-delay: 0.04s;
}

.effect-rotateleft.animate .outer-nav a:nth-child(3) {
  transition-delay: 0.08s;
}

.effect-rotateleft.animate .outer-nav a:nth-child(4) {
  transition-delay: 0.08s;
}

.effect-rotateleft.animate .outer-nav a:nth-child(5) {
  transition-delay: 0.16s;
}

.effect-rotateleft.animate .outer-nav a:nth-child(6) {
  transition-delay: 0.2s;
}

.effect-rotateleft.animate .outer-nav a:nth-child(7) {
  transition-delay: 0.24s;
}

/* Effect Move Down */
.effect-movedown {
  background: #34495e;
}

.effect-movedown .perspective__container {
  transition: transform 0.4s;
  transform-origin: 50% 50%;
}

.effect-movedown .perspective__container::after {
  background: rgba(52, 73, 94, 0.5);
}

.effect-movedown.animate .perspective__container {
  transform: translateY(100%) translateZ(-1500px);
}

.no-csstransforms3d .effect-movedown.animate .perspective__container {
  top: 75%;
}

.effect-movedown .outer-nav a {
  opacity: 0;
  transform: translateY(-20px);
  transition: transform 0.4s, opacity 0.4s;
}

.effect-movedown .outer-nav a:hover {
  color: #ed8151;
}

.effect-movedown.animate .outer-nav a {
  opacity: 1;
  transform: translateY(0);
}

.effect-movedown.animate .outer-nav a:nth-child(2) {
  transition-delay: 0.04s;
}

.effect-movedown.animate .outer-nav a:nth-child(3) {
  transition-delay: 0.08s;
}

.effect-movedown.animate .outer-nav a:nth-child(4) {
  transition-delay: 0.12s;
}

.effect-movedown.animate .outer-nav a:nth-child(5) {
  transition-delay: 0.16s;
}

.effect-movedown.animate .outer-nav a:nth-child(6) {
  transition-delay: 0.2s;
}

.effect-movedown.animate .outer-nav a:nth-child(7) {
  transition-delay: 0.24s;
}

/* Effect Rotate Top */
.effect-rotatetop {
  background: #edcdbb;
}

.effect-rotatetop .perspective__container {
  transition: transform 0.4s;
  transform-origin: 50% 50%;
}

.effect-rotatetop .perspective__container::after {
  background: rgba(94, 59, 43, 0.6);
}

.effect-rotatetop.animate .perspective__container {
  transform: translateZ(-1500px) translateY(-50%) rotateX(-45deg);
}

.no-csstransforms3d .effect-rotatetop.animate .perspective__container {
  top: -75%;
}

.effect-rotatetop .outer-nav a {
  opacity: 0;
  color: #ed8151;
  transform: translateY(200px) translateZ(-1000px);
  transition: transform 0.4s, opacity 0.4s;
}

.effect-rotatetop .outer-nav a:hover {
  color: #777;
}

.effect-rotatetop.animate .outer-nav a {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

.effect-rotatetop.animate .outer-nav a:nth-child(2) {
  transition-delay: 0.04s;
}

.effect-rotatetop.animate .outer-nav a:nth-child(3) {
  transition-delay: 0.08s;
}

.effect-rotatetop.animate .outer-nav a:nth-child(4) {
  transition-delay: 0.12s;
}

.effect-rotatetop.animate .outer-nav a:nth-child(5) {
  transition-delay: 0.16s;
}

.effect-rotatetop.animate .outer-nav a:nth-child(6) {
  transition-delay: 0.2s;
}

.effect-rotatetop.animate .outer-nav a:nth-child(7) {
  transition-delay: 0.24s;
}

/* Effect Lay Down */
.effect-laydown {
  background: #b8b6b4;
}

.effect-laydown .perspective__container {
  transition: transform 0.4s;
  transform-origin: 50% 150%;
}

.effect-laydown.animate .perspective__container {
  transform: translateZ(-1500px) rotateX(80deg);
}

.no-csstransforms3d .effect-laydown.animate .perspective__container {
  top: 75%;
}

.effect-laydown .outer-nav a {
  opacity: 0;
  transform: translateY(-200px) translateZ(-1000px);
  transition: transform 0.4s, opacity 0.4s;
}

.effect-laydown.animate .outer-nav a {
  opacity: 1;
  transform: translateY(0) translateZ(0);
}

.effect-laydown.animate .outer-nav a:nth-child(7) {
  transition-delay: 0s;
}

.effect-laydown.animate .outer-nav a:nth-child(6) {
  transition-delay: 0.04s;
}

.effect-laydown.animate .outer-nav a:nth-child(5) {
  transition-delay: 0.08s;
}

.effect-laydown.animate .outer-nav a:nth-child(4) {
  transition-delay: 0.12s;
}

.effect-laydown.animate .outer-nav a:nth-child(3) {
  transition-delay: 0.16s;
}

.effect-laydown.animate .outer-nav a:nth-child(2) {
  transition-delay: 0.2s;
}

.effect-laydown.animate .outer-nav a:first-child {
  transition-delay: 0.24s;
}

/* Media Queries */
@media screen and (max-width: 77em) {
  .outer-nav.top {
    top: 15%;
  }

  .outer-nav.bottom {
    bottom: 15%;
  }
}
@media screen and (max-width: 36.625em), screen and (max-height: 41.75em) {
  .outer-nav.top {
    top: 5%;
  }

  .outer-nav.bottom {
    bottom: 5%;
  }

  .outer-nav.horizontal {
    font-size: 1.7em;
    width: 6.2em;
  }

  .outer-nav.horizontal a {
    display: block;
    text-align: left;
  }

  /* Special Case */
  .effect-rotatetop .outer-nav.horizontal {
    width: 95%;
    bottom: auto;
    top: 50%;
  }

  .effect-rotatetop .outer-nav.horizontal a {
    display: inline-block;
  }
}
@media screen and (max-width: 31em), screen and (max-height: 36.2em) {
  .outer-nav.horizontal,
.outer-nav.vertical {
    font-size: 1.2em;
    width: 6.8em;
  }

  .outer-nav.right {
    right: auto;
    left: 50%;
  }
}
@media screen and (max-height: 31.6em) {
  .outer-nav a {
    margin-bottom: 20px;
  }
}
html::-webkit-scrollbar {
  width: 16px;
  height: 16px;
}

html::-webkit-scrollbar-thumb {
  background: #36394F;
  border-radius: 16px;
  box-shadow: inset 2px 2px 2px rgba(255, 255, 255, 0.25), inset -2px -2px 2px rgba(0, 0, 0, 0.25);
}

html::-webkit-scrollbar-track {
  background: linear-gradient(90deg, #212331, #212331 1px, #111 0, #111);
}

/** Section - About **/
.about {
  display: flex;
  position: relative;
  padding: 80px 20px 0;
  text-align: center;
}
.about__row {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.about__subtitle, .about__title {
  text-align: center;
}
.about__subtitle {
  font-size: 2.5em;
  line-height: 32px;
  letter-spacing: 0.05em;
  color: #5f727f;
}
.about__title {
  font-size: 4.3em;
  line-height: 69px;
  margin: 0 0 20px 0;
}
@media only screen and (max-width: 1200px) {
  .about__title {
    font-size: 3.2em;
  }
}
.about__text {
  font-size: 1.5em;
  line-height: 28px;
  color: #5f727f;
}
.about__text p {
  margin: 0 0 20px 0;
}
.about__text p:last-child {
  margin: 0;
}

/** Section - Services **/
.services {
  padding: 80px 0 0;
}

.service {
  padding: 80px 20px;
  position: relative;
  text-align: left;
  color: #fff;
}
.service:nth-child(even) {
  text-align: right;
}
.service__row {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.service__title {
  font-size: 3.4em;
  color: #fff;
  text-transform: capitalize;
  display: block;
}
@media only screen and (max-width: 1200px) {
  .service__title {
    font-size: 3.2em;
  }
}
@media only screen and (max-width: 768px) {
  .service__title {
    font-size: 2.8em;
  }
}
@media only screen and (max-width: 576px) {
  .service__title {
    font-size: 2.5em;
  }
}
.service__content {
  font-size: 2em;
  font-weight: 300;
  line-height: 1.4em;
  margin: 50px 0 10px 0;
}
@media only screen and (max-width: 768px) {
  .service__content {
    font-size: 1.6em;
  }
}
@media only screen and (max-width: 576px) {
  .service__content {
    font-size: 1.4em;
  }
}

/** Section - Partners **/
.partners {
  padding: 80px 20px;
}
.partners__row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.partners__title {
  font-size: 4.3em;
  text-transform: capitalize;
  display: block;
  margin: 0 0 50px 0;
}
@media only screen and (max-width: 1200px) {
  .partners__title {
    font-size: 3.2em;
  }
}
@media only screen and (max-width: 540px) {
  .partners__title {
    text-align: center;
  }
}
@media (max-width: 576px) {
  .partners__swiper-container {
    padding: 0 70px;
  }
}

/** Section - Gallery **/
.gallery {
  position: relative;
  padding: 80px 0;
}

.slider-gallery {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.slider-gallery__img {
  display: block;
  width: 510px;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
  min-height: 100%;
}
.slider-gallery__img img {
  display: block;
  object-fit: cover;
  max-width: none;
  margin: 0;
  width: 100%;
  height: 100%;
}
.slider-gallery__picture {
  margin: 0;
  display: block;
}
.slider-gallery__picture-box {
  display: block;
  height: 340px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .slider-gallery__prev, .slider-gallery__next {
    top: 50% !important;
    width: 50px !important;
    height: 50px !important;
  }
}
.slider-gallery__prev {
  left: 3%;
}
.slider-gallery__next {
  right: 3%;
}
.slider-gallery__prev::after, .slider-gallery__next::after {
  font-size: 24px;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  .slider-gallery__prev::after, .slider-gallery__next::after {
    font-size: 18px;
  }
}

/*.products{
  position: relative;

  &__row{
    @include flexbox();

    @media (max-width: 1060px) {
      flex-direction: column;
    }
  }
  &__column {
    flex: 0 1 33.333%;
  }
  &__content{
    position: relative;
    height: 100%;
    z-index: 10;
    color: #fff;
  }
  &__title{
    font-size: 3em;
    text-transform: capitalize;
    display: block;
    margin: 0 0 50px 0;
  }
  &__subtitle{
    font-size: 2em;
    line-height: 32px;
    letter-spacing: 0.05em;
    color: #fff;
  }

  &__item{
    @media (max-width: 1060px) {
      padding: 20%;

      &.no-padding{
        padding: 0!important;
      }
    }

    @media (max-width: 576px){
      padding: 30%;
    }
  }
}*/
/** Section - Contacts **/
.contacts {
  padding: 80px 20px;
  text-align: center;
}

.contacts-form {
  width: 50%;
  margin: 0 auto;
  background-color: #F2F2F2;
  padding: 50px 40px 25px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .contacts-form {
    width: 100%;
  }
}
.contacts-form__title {
  font-size: 2.15em;
  text-transform: capitalize;
  margin: 0 0 25px;
}
.contacts-form__subtitle {
  font-size: 1.4em;
  line-height: 30px;
}
@media (max-width: 992px) {
  .contacts-form__subtitle {
    font-size: 1.2em;
  }
}
.contacts-form__row {
  display: flex;
  flex-wrap: wrap;
}
.contacts-form__first, .contacts-form__last {
  width: 49%;
}
@media (max-width: 1200px) {
  .contacts-form__first, .contacts-form__last {
    width: 48.7%;
  }
}
@media (max-width: 992px) {
  .contacts-form__first, .contacts-form__last {
    width: 100%;
  }
}
.contacts-form__first {
  margin: 0 10px 0 0;
}
@media (max-width: 992px) {
  .contacts-form__first {
    margin: 0 0 15px 0;
  }
}
.contacts-form__first, .contacts-form__email {
  padding: 10px 10px 10px 40px !important;
}
.contacts-form__email, .contacts-form__select, .contacts-form__textarea {
  width: 100%;
}
.contacts-form input, .contacts-form select, .contacts-form textarea {
  padding: 10px;
  border: 1px solid #fff;
  font-size: 1.4em;
}
.contacts-form input:focus, .contacts-form select:focus, .contacts-form textarea:focus {
  border-bottom: 1px solid #0082D6;
}
@media (max-width: 992px) {
  .contacts-form input, .contacts-form select, .contacts-form textarea {
    font-size: 1.2em;
  }
}
.contacts-form select {
  font-size: 1.2em;
}
.contacts-form textarea {
  margin: 15px 0 0 0;
  resize: none;
}
.contacts-form .btn-primary {
  margin: 20px 0 0 0;
}
.contacts-form__captcha {
  margin: 15px 0 0 0;
}

.input-icons {
  width: 100%;
  margin: 15px 0;
}
.input-icons i {
  position: absolute;
  padding: 12px;
  font-size: 1.4em;
}

.contact-form {
  display: flex;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 1.4px;
  position: relative;
  z-index: 10;
}
.contact-form__container {
  margin: auto;
  padding: 10px;
}
@media only screen and (min-width: 576px) {
  .contact-form__container {
    flex: 0 1 600px;
  }
}
@media only screen and (min-width: 768px) {
  .contact-form__container {
    flex: 0 1 650px;
  }
}
@media only screen and (min-width: 992px) {
  .contact-form__container {
    flex: 0 1 700px;
  }
}
@media only screen and (min-width: 1200px) {
  .contact-form__container {
    flex: 0 1 700px;
  }
}

.screen {
  position: relative;
  background: #3e3e3e;
  border-radius: 15px;
}
.screen:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  bottom: 0;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: -1;
}
.screen__header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: #4d4d4f;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.screen__header_left {
  margin-right: auto;
}
.screen__header_right {
  display: flex;
}
.screen__header_button {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 3px;
  border-radius: 8px;
  background: white;
}
.screen__header_button.close {
  background: #ed1c6f;
}
.screen__header_button.maximize {
  background: #e8e925;
}
.screen__header_button.minimize {
  background: #74c54f;
}
.screen__header_ellipsis {
  width: 3px;
  height: 3px;
  margin-left: 2px;
  border-radius: 8px;
  background: #999;
}
.screen__body {
  display: flex;
}
.screen__body_item {
  flex: 1;
  padding: 50px;
}
@media screen and (max-width: 600px) {
  .screen__body_item {
    padding: 0;
  }
}
.screen__body_item.left {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 520px) {
  .screen__body_item.left {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 520px) {
  .screen__body {
    flex-direction: column;
  }
}
@media screen and (max-width: 600px) {
  .screen__body {
    padding: 40px;
  }
}

.app-title {
  display: flex;
  flex-direction: column;
  position: relative;
  color: #ea1d6f;
  font-size: 26px;
  text-align: left;
  margin: 0 0 40px 0;
}
.app-title:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 25px;
  height: 4px;
  background: #ea1d6f;
}
@media screen and (max-width: 520px) {
  .app-title:after {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .app-title span {
    margin-right: 12px;
  }
}
@media screen and (max-width: 520px) {
  .app-title {
    flex-direction: row;
  }
}

.app-contact {
  margin-top: auto;
  font-size: 1em;
  line-height: 2em;
  color: #888;
}

.app-form-group {
  margin-bottom: 15px;
}

.app-form-group.message {
  margin-top: 40px;
}

.app-form-group.buttons {
  margin-bottom: 0;
  text-align: right;
}

.app-form-control {
  width: 100%;
  padding: 10px 0;
  background: none;
  border: none;
  border-bottom: 1px solid #666;
  color: #ddd;
  font-size: 14px;
  text-transform: none;
  outline: none;
  transition: border-color 0.2s;
}

.app-form-control::placeholder {
  color: #666;
  text-transform: uppercase;
}

.app-form-control:focus {
  border-bottom-color: #ddd;
}

.app-form-button {
  background: none;
  border: none;
  color: #ea1d6f;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}

.app-form-button:hover {
  color: #b9134f;
}

/** Alert Success **/
.alert {
  padding: 15px;
  margin-bottom: 20px;
  line-height: 20px;
}

.alert-success {
  color: #3c763d;
}

.hidden {
  display: none !important;
}

.contact-form .screen {
  background-color: #212331;
}
.contact-form .screen__header {
  background-color: #36394f;
}
.contact-form .app-title, .contact-form .app-form-button {
  color: #0082D6;
}
.contact-form .app-title:after, .contact-form .app-form-button:after {
  background-color: #0082D6;
}
.contact-form .app-contact, .contact-form .app-form-control {
  color: #fff;
}

.footer {
  background-color: #212331;
  padding: 80px 20px;
  text-align: center;
}
.footer__social a {
  color: #0082D6;
  transition: all 0.3s ease 0s;
}
.footer__social a:hover {
  color: #fff;
}
.footer__social i {
  margin: 20px 10px 10px 10px;
  font-size: 2em;
}
.footer__contacts {
  margin: 20px 0 0 0;
  font-size: 1.6em;
  color: #fff;
}
.footer__contacts p {
  margin: 10px 0 0 0;
}
.footer__contacts i {
  margin: 0 10px 0 0;
  color: #0082D6;
}
.footer__contacts a {
  color: #fff;
}
.footer__copyright {
  margin: 10px 0 0 0;
  font-size: 1.4em;
  color: #fff;
}