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

body {
  margin: 0;
  color: #1e1e1e;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  position: relative;
  right: 0;
  top: 0;
  -webkit-transition: right 1s;
  transition: right 1s;
  color: #fff;
  background: #0c0708; }
  @media (min-width: 768px) {
    body {
      font-size: 1.1rem; } }

h1,
h2,
h3 {
  font-weight: 300;
  text-transform: uppercase;
  color: #fff;
  font-family: "Oswald", sans-serif;
  line-height: 1.5; }

h1 {
  font-size: 2.5em; }
  h1 a,
  h1 a:visited {
    text-decoration: none; }

h2 {
  text-align: left;
  max-width: 100%;
  font-size: 3rem;
  line-height: 3rem; }
  @media (min-width: 569px) {
    h2 {
      font-size: 3.5rem;
      line-height: 3.5rem; } }
  @media (min-width: 1241px) {
    h2 {
      font-size: 3.5rem;
      line-height: 3.5rem; } }
  @media (min-width: 1441px) {
    h2 {
      font-size: 4vw;
      line-height: 1; } }

h3 {
  color: #808080;
  font-size: 1.6rem;
  text-align: center;
  font-family: "Oswald", sans-serif, sans-serif;
  font-weight: 700; }

p {
  font-size: 1rem;
  line-height: 1.6rem; }

a,
a:visited {
  color: #0c0708;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  font-family: "Poppins", sans-serif, sans-serif;
  text-transform: uppercase; }

a:hover {
  color: #ebedee; }

.plus {
  font-weight: 700; }

.separator, .separator--white {
  width: 275px;
  height: 3px;
  background: #fff;
  margin: 30px 0; }
  @media (min-width: 569px) {
    .separator, .separator--white {
      width: 50%; } }
  .separator--white {
    background: #fff; }

.btn,
#submit,
input.btn {
  padding: 10px 50px;
  background: #fff;
  color: #0c0708;
  border-radius: 50px;
  -webkit-box-shadow: 0px 0px 0px 0px #48589d;
          box-shadow: 0px 0px 0px 0px #48589d;
  -webkit-transition: -webkit-box-shadow 0.3s;
  transition: -webkit-box-shadow 0.3s;
  transition: box-shadow 0.3s;
  transition: box-shadow 0.3s, -webkit-box-shadow 0.3s;
  font-family: "Poppins", sans-serif, sans-serif;
  text-decoration: none;
  font-weight: 700;
  border: solid 2px #fff;
  text-transform: uppercase;
  font-size: 0.9rem; }
  .btn::after,
  #submit::after,
  input.btn::after {
    display: none; }
  .btn:hover,
  #submit:hover,
  input.btn:hover {
    -webkit-box-shadow: 0px 6px 25px 1px #48589d;
            box-shadow: 0px 6px 25px 1px #48589d;
    color: #0c0708; }
  .btn--dark,
  #submit--dark,
  input.btn--dark {
    background: #1f1f1f;
    color: #fff; }
    .btn--dark:hover,
    #submit--dark:hover,
    input.btn--dark:hover {
      color: #fff; }
    .btn--dark:visited,
    #submit--dark:visited,
    input.btn--dark:visited {
      color: #fff; }

footer {
  text-align: center;
  padding: 40px; }

.header {
  width: 100%;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  right: 0;
  z-index: 3;
  background: transparent;
  -webkit-transition: background .3s, right 1s;
  transition: background .3s, right 1s;
  z-index: 300; }

.header-bg {
  background: #0c0708;
  -webkit-box-shadow: 0px 6px 28px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 6px 28px 0px rgba(0, 0, 0, 0.3);
  position: fixed; }

.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 20px;
  width: 100%;
  height: auto;
  background: transparent;
  -webkit-transition: background .3s height .3s;
  transition: background .3s height .3s; }
  @media (min-width: 1241px) {
    .header__wrapper {
      padding: 20px 80px;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }

.header-bg .header__wrapper {
  background: #0c0708;
  border-bottom: none; }

.header__logo-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  margin-right: auto;
  background: url("../img/header-logo.svg") left center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 70px;
  -webkit-transition: height .3s;
  transition: height .3s;
  display: block; }
  @media (min-width: 421px) {
    .header__logo-wrapper {
      height: 30px; } }

.header-bg .header__logo-wrapper {
  background: url("../img/header-logo.svg") left center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block; }
  @media (min-width: 1241px) {
    .header-bg .header__logo-wrapper {
      height: 30px; } }

.header-menu {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  position: fixed;
  width: 100%;
  right: 0;
  top: 0;
  left: auto;
  z-index: -1;
  opacity: 0;
  display: none; }
  @media (min-width: 1241px) {
    .header-menu {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      position: relative;
      width: auto;
      right: initial;
      display: block;
      opacity: 1;
      z-index: 1; } }

.header-menu, .header__wrapper {
  -webkit-transition: right 1s;
  transition: right 1s; }

.header-menu__list {
  background: #48589d;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100vh;
  list-style-type: none;
  margin: 0; }
  @media (min-width: 421px) {
    .header-menu__list {
      padding: 20px 40px; } }
  @media (min-width: 1241px) {
    .header-menu__list {
      padding: 0 20px;
      height: auto;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      background: transparent;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-transition: -webkit-box-pack .3s;
      transition: -webkit-box-pack .3s;
      transition: justify-content .3s;
      transition: justify-content .3s, -webkit-box-pack .3s, -ms-flex-pack .3s; } }

.header-bg .header-menu__list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.header-menu__item {
  padding: 20px 0;
  position: relative; }
  @media (min-width: 991px) {
    .header-menu__item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      padding: 20px; } }

a.header-menu__link {
  text-decoration: none;
  text-transform: uppercase;
  -ms-flex-item-align: center;
      align-self: center;
  font-family: "Poppins", sans-serif, sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  -webkit-transition: none;
  transition: none;
  position: relative; }
  @media (min-width: 1241px) {
    a.header-menu__link {
      color: #fff; } }
  a.header-menu__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #48589d;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transition: -webkit-transform .3s;
    transition: -webkit-transform .3s;
    transition: transform .3s;
    transition: transform .3s, -webkit-transform .3s; }
  a.header-menu__link--btn {
    padding: 10px 50px;
    background: #fff;
    color: #0c0708;
    border-radius: 50px;
    -webkit-box-shadow: 0px 0px 0px 0px #48589d;
            box-shadow: 0px 0px 0px 0px #48589d;
    -webkit-transition: -webkit-box-shadow .3s;
    transition: -webkit-box-shadow .3s;
    transition: box-shadow .3s;
    transition: box-shadow .3s, -webkit-box-shadow .3s; }
    a.header-menu__link--btn::after {
      display: none; }
    a.header-menu__link--btn:hover {
      -webkit-box-shadow: 0px 6px 25px 1px #48589d;
              box-shadow: 0px 6px 25px 1px #48589d; }
  a.header-menu__link:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1); }

.header-bg a.header-menu__link {
  color: #fff; }
  .header-bg a.header-menu__link--btn {
    color: #0c0708; }

.header-menu__item--action .header-menu__link {
  color: #fff; }

#header__toggle-button {
  cursor: pointer;
  padding: 10px 30px;
  display: block;
  background-color: transparent;
  border: none;
  margin: 0;
  z-index: 3; }
  @media (min-width: 1241px) {
    #header__toggle-button {
      display: none; } }
  #header__toggle-button span, #header__toggle-button span::before, #header__toggle-button span::after {
    content: '';
    cursor: pointer;
    border-radius: 1px;
    height: 3px;
    width: 28px;
    background: #fff;
    position: absolute;
    display: block;
    -webkit-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out; }
  #header__toggle-button span::before {
    top: -8px; }
  #header__toggle-button span::after {
    bottom: -8px; }
  #header__toggle-button:focus {
    outline: 0; }

#header__toggle-button.active span, .header-bg #header__toggle-button.active span {
  background-color: transparent; }

#header__toggle-button.active span::before, #header__toggle-button.active span::after {
  top: 0; }

#header__toggle-button.active span::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }

#header__toggle-button.active span::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); }

.openNav {
  top: 0;
  right: 0; }

.openNav .header {
  right: 0;
  left: auto; }

.openNav .header-menu {
  right: 0;
  z-index: 1;
  opacity: 1;
  display: block; }

.header__phone-icon {
  display: block;
  width: 25px;
  height: 25px;
  margin: auto; }
  @media (min-width: 1241px) {
    .header__phone-icon {
      margin: 0 25px 0 0; } }

.header__map-icon {
  display: block;
  width: 25px;
  height: 25px;
  margin: auto; }
  @media (min-width: 1241px) {
    .header__map-icon {
      margin: 0 25px 0 75px; } }

.header__calendar-icon {
  display: block;
  width: 25px;
  height: 25px;
  margin: auto; }
  @media (min-width: 1241px) {
    .header__calendar-icon {
      margin: 0 25px 0 0; } }

.header-bg .header__map-icon, .header-bg .header__phone-icon {
  display: block; }

.header-bg .header__map-icon--color, .header-bg .header__phone-icon--color {
  display: none; }

.homepage__hero {
  width: 100%;
  position: relative;
  height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 10px; }
  @media (min-width: 569px) {
    .homepage__hero {
      padding: 40px; } }
  @media (min-width: 1241px) {
    .homepage__hero {
      padding: 40px 80px;
      height: 80vh; } }
  .homepage__hero::after {
    content: '';
    position: absolute;
    bottom: -98px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #0c0708;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
    z-index: 2; }
  .homepage__hero-wrapper {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    grid-row-gap: 10px;
    grid-column-gap: 10px;
    padding: 0 30px;
    position: relative;
    min-height: 550px; }
    @media (min-width: 569px) {
      .homepage__hero-wrapper {
        padding: 0 80px; } }
    @media (min-width: 991px) {
      .homepage__hero-wrapper {
        min-height: 500px; } }
    @media (min-width: 768px) {
      .homepage__hero-wrapper {
        padding: 0 80px;
        min-height: 500px; } }
    @media (min-width: 1441px) {
      .homepage__hero-wrapper {
        padding: 200px 80px; } }
  .homepage__hero #homepage__hero-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    stroke-dasharray: 9000;
    stroke-dashoffset: 10000;
    -webkit-animation: dash 5s linear forwards;
            animation: dash 5s linear forwards;
    overflow: visible; }
@-webkit-keyframes dash {
  to {
    stroke-dashoffset: 0; } }
@keyframes dash {
  to {
    stroke-dashoffset: 0; } }
  .homepage__hero-headline {
    grid-column: auto / span 24;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 2;
    -ms-flex-item-align: end;
        align-self: end; }
    @media (min-width: 991px) {
      .homepage__hero-headline {
        grid-column: auto / span 10;
        -ms-flex-item-align: center;
            align-self: center; } }
    .homepage__hero-headline h2 {
      text-align: left;
      margin: 0; }
  .homepage__hero-text {
    grid-column: auto / span 24;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 30px;
    -ms-flex-item-align: start;
        align-self: start; }
    @media (min-width: 991px) {
      .homepage__hero-text {
        grid-column: auto / span 14;
        padding: 0 80px;
        margin-top: 0;
        -ms-flex-item-align: center;
            align-self: center; } }
    .homepage__hero-text p {
      margin: 0; }

.services__hero {
  width: 100%;
  position: relative;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 10px; }
  @media (min-width: 569px) {
    .services__hero {
      padding: 40px;
      min-height: 0; } }
  @media (min-width: 1025px) {
    .services__hero {
      padding: 40px 80px;
      height: 60vh;
      min-height: 750px; } }
  .services__hero-wrapper {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    grid-row-gap: 10px;
    grid-column-gap: 10px;
    padding: 0 10px;
    position: relative;
    min-height: 550px; }
    @media (min-width: 768px) {
      .services__hero-wrapper {
        padding: 0 80px; } }
    @media (min-width: 991px) {
      .services__hero-wrapper {
        min-height: 500px; } }
    @media (min-width: 768px) {
      .services__hero-wrapper {
        padding: 0 80px;
        min-height: 500px; } }
  .services__hero #services__hero-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    stroke-dasharray: 9000;
    stroke-dashoffset: 10000;
    -webkit-animation: dash 5s linear forwards;
            animation: dash 5s linear forwards;
    overflow: visible; }
@keyframes dash {
  to {
    stroke-dashoffset: 0; } }
  .services__hero-headline {
    grid-column: auto / span 24;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 2;
    -ms-flex-item-align: end;
        align-self: end; }
    @media (min-width: 991px) {
      .services__hero-headline {
        grid-column: auto / span 10;
        -ms-flex-item-align: center;
            align-self: center; } }
    .services__hero-headline h2 {
      text-align: left;
      margin: 0; }
  .services__hero-text {
    grid-column: auto / span 24;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 30px;
    -ms-flex-item-align: start;
        align-self: start;
    padding: 60px 40px 100px; }
    @media (min-width: 991px) {
      .services__hero-text {
        grid-column: auto / span 14;
        margin-top: 0;
        -ms-flex-item-align: center;
            align-self: center;
        padding: 80px; } }
    .services__hero-text p {
      margin: 0; }

.gallery__hero {
  width: 100%;
  position: relative;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 10px; }
  @media (min-width: 569px) {
    .gallery__hero {
      padding: 40px;
      min-height: 0; } }
  @media (min-width: 1025px) {
    .gallery__hero {
      padding: 40px 80px;
      height: 60vh;
      min-height: 750px; } }
  .gallery__hero-wrapper {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    grid-row-gap: 10px;
    grid-column-gap: 10px;
    padding: 0 10px;
    position: relative;
    min-height: 550px; }
    @media (min-width: 768px) {
      .gallery__hero-wrapper {
        padding: 0 80px; } }
    @media (min-width: 991px) {
      .gallery__hero-wrapper {
        min-height: 500px; } }
    @media (min-width: 768px) {
      .gallery__hero-wrapper {
        padding: 0 80px;
        min-height: 500px; } }
  .gallery__hero #gallery__hero-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    stroke-dasharray: 9000;
    stroke-dashoffset: 10000;
    -webkit-animation: dash 5s linear forwards;
            animation: dash 5s linear forwards;
    overflow: visible; }
@keyframes dash {
  to {
    stroke-dashoffset: 0; } }
  .gallery__hero-headline {
    grid-column: auto / span 24;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 2;
    -ms-flex-item-align: end;
        align-self: end; }
    @media (min-width: 991px) {
      .gallery__hero-headline {
        grid-column: auto / span 10;
        -ms-flex-item-align: center;
            align-self: center; } }
    .gallery__hero-headline h2 {
      text-align: left;
      margin: 0; }
  .gallery__hero-text {
    grid-column: auto / span 24;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 30px;
    -ms-flex-item-align: start;
        align-self: start;
    padding: 60px 40px 100px; }
    @media (min-width: 991px) {
      .gallery__hero-text {
        grid-column: auto / span 14;
        margin-top: 0;
        -ms-flex-item-align: center;
            align-self: center;
        padding: 80px; } }
    .gallery__hero-text p {
      margin: 0; }

.contact__hero {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 40px 10px; }
  @media (min-width: 569px) {
    .contact__hero {
      padding: 40px;
      min-height: 0;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; } }
  @media (min-width: 1025px) {
    .contact__hero {
      padding: 40px 80px;
      min-height: 750px; } }
  .contact__hero-wrapper {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    grid-row-gap: 10px;
    grid-column-gap: 10px;
    padding: 0 30px;
    position: relative;
    min-height: 550px; }
    @media (min-width: 768px) {
      .contact__hero-wrapper {
        padding: 0 80px; } }
    @media (min-width: 991px) {
      .contact__hero-wrapper {
        min-height: 500px; } }
    @media (min-width: 768px) {
      .contact__hero-wrapper {
        padding: 0 80px;
        min-height: 500px; } }
  .contact__hero #contact__hero-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    stroke-dasharray: 9000;
    stroke-dashoffset: 10000;
    -webkit-animation: dash 5s linear forwards;
            animation: dash 5s linear forwards;
    overflow: visible; }
@keyframes dash {
  to {
    stroke-dashoffset: 0; } }
  .contact__hero-headline {
    grid-column: auto / span 24;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 2;
    -ms-flex-item-align: end;
        align-self: end; }
    @media (min-width: 991px) {
      .contact__hero-headline {
        grid-column: auto / span 10;
        -ms-flex-item-align: center;
            align-self: center; } }
    .contact__hero-headline h2 {
      text-align: left;
      margin: 0; }
  .contact__hero-text {
    grid-column: auto / span 24;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    z-index: 2;
    margin-top: 30px;
    -ms-flex-item-align: start;
        align-self: start;
    padding: 60px 40px 100px; }
    @media (min-width: 991px) {
      .contact__hero-text {
        grid-column: auto / span 14;
        margin-top: 0;
        -ms-flex-item-align: center;
            align-self: center;
        padding: 80px; } }
    .contact__hero-text p {
      margin: 0; }

.homepage-parallax-1 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  grid-row-gap: 10px;
  grid-column-gap: 10px;
  padding: 160px 20px 60px;
  position: relative;
  background: url("../img/bg1.jpg") center center;
  background-size: 400% 300%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 500px; }
  @media (min-width: 768px) {
    .homepage-parallax-1 {
      padding: 120px 80px 80px;
      min-height: 500px;
      background-size: 100% 100%; } }
  @media (min-width: 991px) {
    .homepage-parallax-1 {
      background-attachment: fixed; } }
  .homepage-parallax-1 span {
    color: #808080;
    font-family: "Poppins", sans-serif;
    font-weight: 700; }
  .homepage-parallax-1__headline {
    grid-column: auto / span 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    .homepage-parallax-1__headline h2 {
      margin: 0; }
  .homepage-parallax-1__icons {
    grid-column: auto / span 24;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    padding: 30px 0 0;
    max-width: 500px; }
    @media (min-width: 991px) {
      .homepage-parallax-1__icons {
        max-width: 100%;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }
    @media (min-width: 1025px) {
      .homepage-parallax-1__icons {
        padding: 0;
        grid-column: auto / span 20;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; } }
  .homepage-parallax-1__icon {
    padding: 10px 10px 10px 0;
    position: relative;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33%;
            flex: 0 0 33%; }
    @media (min-width: 991px) {
      .homepage-parallax-1__icon {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        padding: 10px; } }
    .homepage-parallax-1__icon img {
      max-width: 100px;
      min-width: 65px;
      height: auto;
      display: block;
      margin: 0; }
      @media (min-width: 991px) {
        .homepage-parallax-1__icon img {
          min-width: 85px; } }
      @media (min-width: 1241px) {
        .homepage-parallax-1__icon img {
          margin: 0 auto;
          min-width: 100px; } }
      @media (min-width: 1441px) {
        .homepage-parallax-1__icon img {
          max-width: 100px; } }

.homepage-services {
  width: 100%;
  padding: 60px 20px 60px;
  position: relative;
  background: #1f1f1f;
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  grid-row-gap: 10px;
  grid-column-gap: 10px; }
  @media (min-width: 768px) {
    .homepage-services {
      padding: 60px 80px; } }
  .homepage-services__headline {
    grid-column: auto / span 24; }
    .homepage-services__headline h3 {
      margin-top: 0;
      text-align: left; }
    .homepage-services__headline h3 span {
      color: #fff;
      font-family: "Poppins", sans-serif, sans-serif; }
  .homepage-services__text {
    grid-column: auto / span 24;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
    @media (min-width: 1025px) {
      .homepage-services__text {
        grid-column: auto / span 12;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1; } }
    .homepage-services__text p {
      margin-bottom: 60px;
      text-align: left; }

.homepage-clients {
  background: #1f1f1f; }
  .homepage-clients__items {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    grid-row-gap: 10px;
    grid-column-gap: 10px;
    grid-template-columns: repeat(18, 1fr);
    padding: 40px 20px; }
    @media (min-width: 768px) {
      .homepage-clients__items {
        padding: 80px; } }
  .homepage-clients__item {
    max-height: 100px;
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (min-width: 991px) {
      .homepage-clients__item {
        padding: 10px; } }
    .homepage-clients__item img {
      max-width: 150px;
      height: auto; }
      @media (min-width: 991px) {
        .homepage-clients__item img {
          max-width: 80%; } }
    .homepage-clients__item--1 {
      grid-column: auto / span 18; }
      @media (min-width: 991px) {
        .homepage-clients__item--1 {
          grid-column: auto / span 2; } }
      .homepage-clients__item--1 p {
        text-transform: uppercase;
        text-align: center; }
        @media (min-width: 991px) {
          .homepage-clients__item--1 p {
            -webkit-writing-mode: vertical-rl;
                -ms-writing-mode: tb-rl;
                    writing-mode: vertical-rl;
            -webkit-transform: rotate(-180deg);
                    transform: rotate(-180deg); } }
    .homepage-clients__item--2 {
      grid-column: auto / span 18; }
      @media (min-width: 569px) {
        .homepage-clients__item--2 {
          grid-column: auto / span 9; } }
      @media (min-width: 991px) {
        .homepage-clients__item--2 {
          grid-column: auto / span 2; } }
    .homepage-clients__item--3 {
      grid-column: auto / span 18; }
      @media (min-width: 569px) {
        .homepage-clients__item--3 {
          grid-column: auto / span 9; } }
      @media (min-width: 991px) {
        .homepage-clients__item--3 {
          grid-column: auto / span 2; } }
    .homepage-clients__item--4 {
      grid-column: auto / span 18; }
      @media (min-width: 569px) {
        .homepage-clients__item--4 {
          grid-column: auto / span 9; } }
      @media (min-width: 991px) {
        .homepage-clients__item--4 {
          grid-column: auto / span 2; } }
    .homepage-clients__item--5 {
      grid-column: auto / span 18; }
      @media (min-width: 569px) {
        .homepage-clients__item--5 {
          grid-column: auto / span 9; } }
      @media (min-width: 991px) {
        .homepage-clients__item--5 {
          grid-column: auto / span 2; } }
    .homepage-clients__item--6 {
      grid-column: auto / span 18; }
      @media (min-width: 569px) {
        .homepage-clients__item--6 {
          grid-column: auto / span 9; } }
      @media (min-width: 991px) {
        .homepage-clients__item--6 {
          grid-column: auto / span 2; } }
    .homepage-clients__item--7 {
      grid-column: auto / span 18; }
      @media (min-width: 569px) {
        .homepage-clients__item--7 {
          grid-column: auto / span 9; } }
      @media (min-width: 991px) {
        .homepage-clients__item--7 {
          grid-column: auto / span 2; } }
    .homepage-clients__item--8 {
      grid-column: auto / span 18; }
      @media (min-width: 569px) {
        .homepage-clients__item--8 {
          grid-column: auto / span 9; } }
      @media (min-width: 991px) {
        .homepage-clients__item--8 {
          grid-column: auto / span 2; } }
    .homepage-clients__item--9 {
      grid-column: auto / span 18; }
      @media (min-width: 569px) {
        .homepage-clients__item--9 {
          grid-column: auto / span 9; } }
      @media (min-width: 991px) {
        .homepage-clients__item--9 {
          grid-column: auto / span 2; } }

.homepage-billboard {
  padding: 0 20px 80px;
  background: #1f1f1f;
  position: relative; }
  @media (min-width: 768px) {
    .homepage-billboard {
      padding: 0 80px 80px; } }
  @media (min-width: 1241px) {
    .homepage-billboard {
      padding: 80px; } }
  .homepage-billboard::after {
    content: '';
    position: absolute;
    bottom: -99px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #1f1f1f;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
    z-index: 2; }
  .homepage-billboard__items {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    grid-row-gap: 10px;
    grid-column-gap: 10px; }
  .homepage-billboard__img {
    grid-column: auto / span 24;
    grid-row: auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2; }
    @media (min-width: 768px) {
      .homepage-billboard__img svg {
        max-width: 600px; } }
    @media (min-width: 1241px) {
      .homepage-billboard__img {
        grid-column: 1 / span 12;
        grid-row: 1 / span 2;
        padding: 0 40px 0 0;
        -webkit-box-ordinal-group: 2;
            -ms-flex-order: 1;
                order: 1; }
        .homepage-billboard__img svg {
          max-width: 100%; } }
  .homepage-billboard__text {
    grid-column: auto / span 24;
    grid-row: auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; }
    @media (min-width: 1241px) {
      .homepage-billboard__text {
        grid-column: 13 / span 12;
        grid-row: 1 / span 1;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; } }
    .homepage-billboard__text h2 {
      text-align: left; }
    .homepage-billboard__text span {
      color: #808080;
      font-family: "Poppins", sans-serif;
      font-weight: 700; }
  .homepage-billboard__button-wrapper {
    grid-column: auto / span 24;
    grid-row: auto;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media (min-width: 1241px) {
      .homepage-billboard__button-wrapper {
        grid-column: 13 / span 12;
        grid-row: 2 / span 1;
        display: block; } }
    .homepage-billboard__button-wrapper .btn {
      margin: 10px 10px 0 0;
      min-width: 200px; }

.homepage-parallax-2 {
  min-height: 500px;
  background: url("../img/bg2.jpg") center center;
  background-size: 340% 240%;
  background-repeat: no-repeat;
  background-attachment: scroll; }
  @media (min-width: 768px) {
    .homepage-parallax-2 {
      background-size: 100% 100%; } }
  @media (min-width: 991px) {
    .homepage-parallax-2 {
      background-attachment: fixed; } }

.services-parallax-1 {
  width: 100%;
  background: url("../img/bg1.jpg") center center;
  background-size: 200% 600%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 70px; }
  @media (min-width: 569px) {
    .services-parallax-1 {
      background-size: 100% 100%; } }
  @media (min-width: 768px) {
    .services-parallax-1 {
      min-height: 70px; } }
  @media (min-width: 991px) {
    .services-parallax-1 {
      background-attachment: fixed; } }

.services-parallax-2 {
  width: 100%;
  background: url("../img/bg1.jpg") center center;
  background-size: 300% 500%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 140px; }
  @media (min-width: 768px) {
    .services-parallax-2 {
      min-height: 340px;
      background-size: 100% 100%;
      background-attachment: fixed; } }

.services__wrapper {
  padding: 20px 40px; }
  @media (min-width: 1241px) {
    .services__wrapper {
      padding: 20px 80px; } }
.services__items {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  grid-row-gap: 10px;
  grid-column-gap: 10px; }
.services__item {
  grid-column: auto / span 24;
  padding: 20px 40px; }
  @media (min-width: 768px) {
    .services__item {
      grid-column: auto / span 12;
      padding: 10%; } }
  @media (min-width: 1025px) {
    .services__item {
      grid-column: auto / span 8; } }
.services__img-wrapper {
  position: relative; }
.services__icon {
  position: absolute;
  left: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100px;
  height: 100px;
  z-index: 3; }
  @media (min-width: 768px) {
    .services__icon {
      left: -60px;
      width: 120px;
      height: 120px; } }
.services__img {
  position: relative; }
  .services__img img {
    max-width: 100%;
    height: auto;
    display: block;
    z-index: 2;
    position: relative; }
  .services__img::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    background: #48589d;
    z-index: 0; }
.services__title h2 {
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 40px 0 0; }
  @media (min-width: 1241px) {
    .services__title h2 {
      font-size: 2.2rem;
      margin: 60px 0 0; } }

.homepage-gallery {
  position: relative; }
  .homepage-gallery::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #1f1f1f;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
    z-index: 2; }
    @media (min-width: 569px) {
      .homepage-gallery::before {
        height: 150px; } }
  .homepage-gallery__items {
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    grid-row-gap: 10px;
    grid-column-gap: 10px;
    grid-gap: 0;
    min-height: 400px;
    width: 100%; }
  .homepage-gallery__item--1 {
    grid-column: auto / span 8;
    grid-row: 1 / span 1;
    background: url("../img/homepage-gallery/51.jpg") center center/cover no-repeat; }
    @media (min-width: 569px) {
      .homepage-gallery__item--1 {
        grid-column: auto / span 6;
        grid-row: 1 / span 2; } }
    @media (min-width: 991px) {
      .homepage-gallery__item--1 {
        grid-column: auto / span 5;
        grid-row: 1 / span 2; } }
  .homepage-gallery__item--2 {
    grid-column: auto / span 8;
    grid-row: 2 / span 1;
    background: url("../img/homepage-gallery/52.jpg") center center/cover no-repeat; }
    @media (min-width: 569px) {
      .homepage-gallery__item--2 {
        grid-column: auto / span 6;
        grid-row: 1 / span 1; } }
    @media (min-width: 991px) {
      .homepage-gallery__item--2 {
        grid-column: auto / span 7;
        grid-row: 1 / span 2; } }
  .homepage-gallery__item--3 {
    grid-column: auto / span 8;
    grid-row: 1 / span 1;
    background: url("../img/homepage-gallery/53.jpg") center center/cover no-repeat; }
    @media (min-width: 569px) {
      .homepage-gallery__item--3 {
        grid-column: auto / span 6;
        grid-row: 2 / span 1; } }
    @media (min-width: 991px) {
      .homepage-gallery__item--3 {
        grid-column: auto / span 3;
        grid-row: 1 / span 2; } }
  .homepage-gallery__item--4 {
    grid-column: auto / span 8;
    grid-row: 2 / span 1;
    background: url("../img/homepage-gallery/54.jpg") center center/cover no-repeat; }
    @media (min-width: 569px) {
      .homepage-gallery__item--4 {
        grid-column: auto / span 6;
        grid-row: 1 / span 1; } }
    @media (min-width: 991px) {
      .homepage-gallery__item--4 {
        grid-column: auto / span 4;
        grid-row: 1 / span 1; } }
  .homepage-gallery__item--5 {
    grid-column: auto / span 8;
    grid-row: 1 / span 1;
    background: url("../img/homepage-gallery/4.jpg") center center/cover no-repeat; }
    @media (min-width: 569px) {
      .homepage-gallery__item--5 {
        grid-column: auto / span 6;
        grid-row: 2 / span 1; } }
    @media (min-width: 991px) {
      .homepage-gallery__item--5 {
        grid-column: auto / span 4;
        grid-row: 2 / span 1; } }
  .homepage-gallery__item--6 {
    grid-column: auto / span 8;
    grid-row: 2 / span 1;
    background: url("../img/homepage-gallery/7.jpg") center center/cover no-repeat; }
    @media (min-width: 569px) {
      .homepage-gallery__item--6 {
        grid-column: auto / span 6;
        grid-row: 1 / span 2; } }
    @media (min-width: 991px) {
      .homepage-gallery__item--6 {
        grid-column: auto / span 5;
        grid-row: 1 / span 2; } }

.gallery-parallax-1 {
  width: 100%;
  background: url("../img/bg1.jpg") center center;
  background-size: 200% 600%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 70px; }
  @media (min-width: 569px) {
    .gallery-parallax-1 {
      background-size: 100% 100%; } }
  @media (min-width: 768px) {
    .gallery-parallax-1 {
      min-height: 70px; } }
  @media (min-width: 991px) {
    .gallery-parallax-1 {
      background-attachment: fixed; } }

.gallery-parallax-2 {
  width: 100%;
  background: url("../img/bg1.jpg") center center;
  background-size: 300% 500%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 140px; }
  @media (min-width: 768px) {
    .gallery-parallax-2 {
      min-height: 340px; } }
  @media (min-width: 991px) {
    .gallery-parallax-2 {
      background-attachment: fixed; } }

.gallery__wrapper {
  padding: 20px 10px 10px; }
  @media (min-width: 1241px) {
    .gallery__wrapper {
      padding: 20px 80px; } }
.gallery__items {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  grid-row-gap: 10px;
  grid-column-gap: 10px; }
  @media (min-width: 768px) {
    .gallery__items {
      grid-gap: 20px; } }
.gallery__item {
  grid-column: auto / span 24;
  padding: 20px 40px;
  min-height: 400px;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important; }
  @media (min-width: 768px) {
    .gallery__item {
      grid-column: auto / span 12;
      padding: 10%; } }
  @media (min-width: 1025px) {
    .gallery__item {
      grid-column: auto / span 8; } }

.contact-parallax-1 {
  width: 100%;
  background: url("../img/bg1.jpg") center center;
  background-size: 200% 600%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 70px; }
  @media (min-width: 569px) {
    .contact-parallax-1 {
      background-size: 100% 100%; } }
  @media (min-width: 768px) {
    .contact-parallax-1 {
      min-height: 70px; } }
  @media (min-width: 991px) {
    .contact-parallax-1 {
      background-attachment: fixed; } }

.contact-parallax-2 {
  width: 100%;
  background: url("../img/bg1.jpg") center center;
  background-size: 300% 500%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  min-height: 140px; }
  @media (min-width: 768px) {
    .contact-parallax-2 {
      min-height: 340px;
      background-size: 100% 100%; } }
  @media (min-width: 991px) {
    .contact-parallax-2 {
      background-attachment: fixed; } }

.contact__wrapper {
  padding: 20px 40px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative; }
  .contact__wrapper::after {
    content: '';
    position: absolute;
    bottom: -98px;
    left: 0;
    width: 100%;
    height: 100px;
    background: #0c0708;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
    z-index: 2; }
  @media (min-width: 1241px) {
    .contact__wrapper {
      padding: 20px 80px 60px; } }
  .contact__wrapper form {
    max-width: 900px;
    width: 100%;
    font-family: 'Poppins', sans-serif; }
  .contact__wrapper .group {
    position: relative;
    width: 100%;
    margin-bottom: 30px; }
    .contact__wrapper .group input {
      border: none;
      border-bottom: 1px solid #fff;
      padding: 10px;
      display: block;
      width: 100%;
      background: transparent;
      color: #fff;
      font-size: 1rem; }
      .contact__wrapper .group input:focus {
        outline: none; }
      .contact__wrapper .group input:focus ~ label, .contact__wrapper .group input:valid ~ label {
        top: -20px;
        font-size: 14px;
        color: #48589d; }
    .contact__wrapper .group textarea {
      border: none;
      border-bottom: 1px solid #fff;
      padding: 10px;
      display: block;
      width: 100%;
      background: transparent;
      color: #fff;
      font-size: 1rem;
      font-family: 'Poppins', sans-serif; }
      .contact__wrapper .group textarea:focus {
        outline: none; }
      .contact__wrapper .group textarea:focus ~ label, .contact__wrapper .group textarea:valid ~ label {
        top: -20px;
        font-size: 14px;
        color: #48589d; }
    .contact__wrapper .group label {
      position: absolute;
      color: #fff;
      top: 1px;
      left: 0;
      -webkit-transition: 0.2s ease all;
      transition: 0.2s ease all; }
    .contact__wrapper .group .bar {
      position: relative;
      display: block;
      width: 100%; }
      .contact__wrapper .group .bar:before {
        content: "";
        position: absolute;
        left: 50%;
        right: 50%;
        bottom: 0;
        background: #48589d;
        height: 2px;
        -webkit-transition: left 0.2s ease-out, right 0.2s ease-out;
        transition: left 0.2s ease-out, right 0.2s ease-out; }
    .contact__wrapper .group input:focus ~ .bar:before, .contact__wrapper .group textarea:focus ~ .bar:before {
      left: 0;
      right: 0; }
.contact__location {
  background: #1f1f1f;
  padding: 120px 40px 60px; }
  @media (min-width: 1241px) {
    .contact__location {
      padding: 120px 80px 80px; } }
.contact__location-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .contact__location-wrapper h2 {
    color: #fff;
    text-align: center; }
.contact__location-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 40px 0; }
  .contact__location-items p {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin-bottom: 0;
    text-align: center; }
.contact__location-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  padding: 0 20px;
  text-align: center; }
  .contact__location-item h4 {
    margin-bottom: 0; }
  .contact__location-item p {
    margin: 10px 0; }
  .contact__location-item--phone {
    text-align: center;
    text-transform: none;
    color: #48589d;
    font-weight: 700; }

footer {
  padding: 40px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (min-width: 768px) {
    footer {
      padding: 40px; } }
  @media (min-width: 1025px) {
    footer {
      padding: 80px 80px 20px; } }
  footer .footer__brand {
    margin-bottom: 60px; }
    footer .footer__brand img {
      width: 150px;
      height: auto; }
      @media (min-width: 768px) {
        footer .footer__brand img {
          width: 250px; } }
  footer .footer__copyright p {
    text-align: center;
    font-size: .7rem;
    color: #fff;
    font-family: "Poppins", sans-serif, sans-serif; }
    @media (min-width: 768px) {
      footer .footer__copyright p {
        font-size: 1rem; } }
  footer .footer__copyright img {
    width: 30px;
    height: 30px; }
  footer .dl__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-decoration: none;
    text-align: center;
    font-size: .7rem; }
    @media (min-width: 768px) {
      footer .dl__logo {
        font-size: 1rem; } }
    footer .dl__logo img {
      padding: 0 5px; }
