@import url("color-palette.css");

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
}

::-webkit-scrollbar-track
{
	border-radius: 10px;
	background-color: rgba(0,0,0,0);
}

::-webkit-scrollbar
{
	width: 10px;
background-color: rgba(0,0,0,0);
}

::-webkit-scrollbar-thumb
{
	border-radius: 0px;
	background-color: #79d0c2;
}

.clear:before,
.clear:after {
  content: " ";
  display: table;
}
.clear:after {
  clear: both;
}

a:hover {
  cursor: pointer;
  color: var(--robin-s-egg);
  text-decoration: none !important;
}

/*----------------------------------
  FLOATINGS WITH FLEX
------------------------------------*/
.pull-right {
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  justify-content: flex-start;
}

.pull-center {
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  justify-content: center;
}

.pull-right {
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  justify-content: flex-end;
}


/*----------------------------------
  PADDINGS
------------------------------------*/
.pt-0 {
  padding-top: 0 !important;
}

.pl-60 {
  padding-left: 60px !important;
}

.pr-60 {
  padding-right: 60px !important;
}

/*----------------------------------
  MARGINS
------------------------------------*/
.mt-0 {
  margin-top: 0 !important;
}

.mt-10 {
  margin-top: 10px !important;
}

.mt-15 {
  margin-top: 15px !important;
}

.mt-25 {
  margin-top: 25px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.mt-60 {
  margin-top: 60px !important;
}

.mt-100 {
  margin-top: 100px !important;
}

.mt-172 {
  margin-top: 172px !important;
}

.mr-30 {
  margin-right: 30px !important;
}

/*----------------------------------
  INPUT
------------------------------------*/
input.form-control {
  border-radius: 0 !important;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  background: transparent !important;
	font-family: 'Noto Sans', sans-serif;
	font-size: 18px;
	/*line-height: 1.78;*/

}

input.form-control:active,
input.form-control:focus {
  box-shadow: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:active {
  -webkit-text-fill-color: inherit !important;
  -webkit-box-shadow: 0 0 0 9999px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
  caret-color: var(--white) !important;
}

input:-webkit-autofill,
textarea:-webkit-autofill {
  color: rgba(255, 255, 255, 0.9) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, 0.9) !important;
  caret-color: rgba(255, 255, 255, 0.9) !important;
}

/*----------------------------------
  NAVBAR
------------------------------------*/
.navbar {
  background-color: transparent;
  color: var(--white);
  height: 70px;
  margin: 40px 60px 0 60px;
  padding-left: 0! important;
  padding-bottom: 0! important;
}

ul.navbar-nav li.nav-item {
  height: 32px;
  display: flex;
  -webkit-flex-direction: rows
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  justify-content: center;
  align-items: center !important;
}

/*.custom-toggler.navbar-toggler-icon:visited,*/
.custom-toggler.navbar-toggler-icon:hover,
.custom-toggler.navbar-toggler-icon:active,
.custom-toggler.navbar-toggler-icon:focus {
  cursor: pointer;
  outline: none;
  box-shadow: none;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(103, 252, 230, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

button.navbar-toggler:hover,
button.navbar-toggler:active,
button.navbar-toggler:focus,
button.navbar-toggler:visited {
  cursor: pointer;
  outline: none;
  box-shadow: none;
}

.custom-toggler.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

ul.navbar-nav li.nav-item:not(:first-child) {
  padding-left: 63px;
}

ul.navbar-nav li.nav-item a.nav-link:hover {
  cursor: pointer;
  color: var(--robin-s-egg);
}

ul.navbar-nav li.nav-item a.nav-link {
  color: var(--white);
  font-family: 'o Sans', sans-serif;
  font-size: 14px;
  line-height: 2.29;
  text-align: left;
  justify-content: center !important;
}

ul.navbar-nav li.nav-item.active a.nav-link {
  color: var(--robin-s-egg) !important;
}

@media screen and (max-width: 575px) and (max-width: 767px) {
  ul.navbar-nav li.nav-item {
    padding-left: 0 !important;
  }
}

@media screen and (max-width: 768px) and (max-width: 991px) {
  ul.navbar-nav li.nav-item {
    padding-left: 0 !important;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  ul.navbar-nav li.nav-item:not(:first-child) {
    padding-left: 60px;
  }

  .navbar {
    margin: 45px 60px 0 60px;
  }
}

@media screen and (min-width: 1200px) {
  ul.navbar-nav li.nav-item:not(:first-child) {
    padding-left: 85px;
  }

  .navbar {
    margin: 40px 85px 0 85px;
  }
}

/*----------------------------------
  BACKGROUND
------------------------------------*/
.pattern-1 {
  z-index: -10;
  position: absolute;
  top: 275px;
  margin-left: 0;
  max-width: 663px;
  height: 502.2px;
  transform: rotate(-12deg);
}

.pattern-2 {
  z-index: -10;
  position: absolute;
  float: right;
  right: 0;
  top: -10%;
  max-width: 660px;
  opacity: 1;
  /*background-image: linear-gradient(100deg, #181737, #00ffdd)*/
}

.pattern-3 {
  z-index: -10;
  position: absolute;
  top: 1125px;
  max-width: 389.8px;
  margin-left: 0;
  height: 600px;
  object-fit: contain;
  transform: rotate(4deg);
}

.pattern-4 {
  z-index: -10;
  float: right;
  right: 0;
  max-width: 445.2px; /*445.2*/
  height: 600px;
  object-fit: contain;
  transform: rotate(4deg);
  top: 2025px;
  position: absolute;
}

.pattern-5 {
  z-index: -10;
  position: absolute;
  max-width: 389.8px;
  height: 600px;
  margin-left: 0;
  object-fit: contain;
  transform: rotate(4deg);
  top: 3250px;
}

.pattern-6 {
  z-index: -10;
  /*width: 232.8px;*/
  /*height: 588.7px;*/
  object-fit: contain;
  top: 295.5%;
  bottom: 0;
  right: 0;
  position: absolute;
}

.pattern-7 {
  z-index: -90000000;
  position: absolute;
  /*width: 347px;
  height: 285px;*/
  object-fit: contain;
  margin-left: 0;
}

.pattern-1 img, .pattern-2 img, .pattern-3 img, .pattern-4 img, .pattern-5 img, .pattern-6 img {
 width: 100%;
 height: auto;
}

/* @media screen and (max-width: 575px) {
  .pattern-7 {
    margin-left: -20%;
  }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  .pattern-7 {
    margin-left: -15%;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .pattern-7 {
    margin-left: -15%;
  }
} */

/*@media screen and (min-width: 992px) and (max-width: 1199px) {

}*/

/* @media screen and (min-width: 1200px) {
  .pattern-7 {
    margin-left: -8%;
  }
}

@media screen and (min-width: 1700px) {
  .pattern-7 {
    margin-left: -6%;
  }
} */

/*----------------------------------
  PUNCHLINE
------------------------------------*/
div.punchline {
  width: 100%;
  float: left;
  margin-top: 150px;
  font-family: 'Saira Extra Condensed', sans-serif;
  font-stretch: extra-condensed;
  color: var(--white);
  text-align: center;
  font-size: 49.2px;
  font-weight: 200;
  padding: 0 30%;
}

@media screen and (max-width: 767px) {
  div.punchline {
    float: left;
    margin-top: 140px;
    font-size: 40px;
    /*font-weight: 200;*/
    line-height: 1.25;
    /* padding: 0 10%; */
  }
}


@media screen and (min-width: 768px) and (max-width: 1199px) {
  div.punchline {
    /* padding: 0 20%; */
  }
}

/*----------------------------------
  FOOTER
------------------------------------*/
div.footer {
  clear: both;
  margin-top: 150px;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  flex-grow: 3;
  float: left;
  width: 100%;
  padding: 0 85px 20px 85px;
}

.social:nth-child(-n+2) {
  padding-right: 30px;
}

div.footer div.copyright {
  display: inline-block;
  float: left;
  font-family: 'Noto Sans', sans-serif;;
	font-size: 16px;
	line-height: 2.0;
	text-align: left;
	color: var(--white);
  margin-bottom: 14px;
  flex-grow: 1;
}

div.footer div.copyright span {
  padding-left: 20px;
}

div.footer div.copyright img.logo {
  width: 17.5px;
  height: 25.8px;
  margin-bottom: 14px;
}

div.footer div.navigation {
  padding-top: 5px;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-grow: 2;
  height: 26px;
}

div.footer div.contact {
  padding-top: 5px;
  display: inline-block;
  float: right;
  text-align: right;
  flex-grow: 1.4;
}

div.footer div.navigation ul {
  color: #00ffe2;
  margin-bottom: 0;
  padding-bottom: 0;
  overflow: hidden;
}

div.footer div.navigation ul li {
  float: left;
  margin-left: 10px;
}

div.footer div.navigation ul li a {
  /*display: block;*/
  text-align: left;
  color: var(--white);
  float: left;
  /*padding-left: 10px;*/
  min-width: 120px;
}

div.footer div.navigation ul li a.active,
div.footer div.navigation ul li a:hover {
  cursor: pointer;
  color: var(--robin-s-egg);
}

div.contact svg:not(:first-child) {
  margin-left: 30px;
}

div.contact svg:hover,
div.contact svg path:hover,
div.contact svg g:hover,
div.contact svg:hover path,
div.contact svg:hover g {
  cursor: pointer;
  fill: #67fce6;
}

@media screen and (max-width: 575px) {
  div.footer {
    margin-top: 100px;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    padding: 0 0 20px 0;
  }

  div.footer div.navigation {
    float: left;
    width: 100%;
    order: 1;
    -webkit-order: 1;
    -ms-order: 1;
    -o-order: 1;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    justify-content: center;
    z-index: 2;
  }

  div.footer div.navigation ul {
    display: inline-block;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    justify-content: center;
    max-width: 300px;
  }

  div.footer div.navigation ul li:last-child {
    margin-top: 15px;
  }

  div.footer div.contact {
    float: left;
    width: 100%;
    order: 2;
    -webkit-order: 2;
    -ms-order: 2;
    -o-order: 2;
    margin-top: 50px;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    justify-content: center;
    z-index: 1;
  }

  div.footer div.copyright {
    float: left;
    width: 100%;
    order: 3;
    -webkit-order: 3;
    -ms-order: 3;
    -o-order: 3;
    margin-top: 40px;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    justify-content: center;
    z-index: 1;
  }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  div.footer {
    margin-top: 100px;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
    padding: 0 0 20px 0;
  }

  div.footer div.navigation {
    float: left;
    width: 100%;
    order: 1;
    -webkit-order: 1;
    -ms-order: 1;
    -o-order: 1;
    z-index: 2;
  }

  div.footer div.contact {
    float: left;
    width: 100%;
    order: 2;
    -webkit-order: 2;
    -ms-order: 2;
    -o-order: 2;
    margin-top: 30px;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    justify-content: center;
    z-index: 1;
  }

  div.footer div.copyright {
    float: left;
    width: 100%;
    order: 3;
    -webkit-order: 3;
    -ms-order: 3;
    -o-order: 3;
    margin-top: 30px;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    justify-content: center;
    z-index: 1;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  div.footer {
    padding: 0 60px 20px 60px;
  }

  div.footer div.copyright,
  div.footer div.contact {
    float: left;
    width: 50%;
    z-index: 1;
  }

  div.footer div.navigation {
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    float: left;
    width: 100%;
    z-index: 2;
  }

  div.footer {
    margin-top: 100px;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    -o-flex-direction: column;
    flex-direction: column;
  }

  div.footer div.navigation {
    float: left;
    width: 100%;
    order: 1;
    -webkit-order: 1;
    -ms-order: 1;
    -o-order: 1;
  }

  div.footer div.contact {
    float: right;
    width: 50%;
    order: 2;
    -webkit-order: 2;
    -ms-order: 2;
    -o-order: 2;
    padding-top: 65px;
    padding-left: 25px;
    right: 0 !important;
    position: absolute;
    text-align: left;
  }

  div.footer div.copyright {
    float: left;
    width: 50%;
    order: 2;
    -webkit-order: 2;
    -ms-order: 2;
    -o-order: 2;
    padding-top: 60px;
    text-align: right;
    padding-right: 25px;
    left: 0 !important;
    position: absolute;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  div.contact svg:not(:first-child) {
    margin-left: 20px;
  }
}

/*@media screen and (min-width: 1200px) {

}*/

/*----------------------------------
  HEADLINE
------------------------------------*/
.headline-section {
  margin-top: 108.8px;
  float: left;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.headline {
  width: 571px;
  height: 107px;
  font-family: 'Saira Extra Condensed', sans-serif;
  font-size: 36px;
  font-stretch: extra-condensed;
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
}

@media screen and (max-width: 575px) {
  .headline-section {
    margin-top: 80px;
    width: 100%;
  }

  .headline {
    width: 241px;
    height: 184px;
    font-size: 34px;
    text-align: center;
  }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  .headline-section {
    margin-top: 90px;
    width: 100%;
  }

  .headline {
    width: 314px;
    height: 120px;
    font-size: 34px;
    text-align: center;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .headline-section {
    margin-top: 100px;
    width: 100%;
  }

  .headline {
    width: 495px;
    height: 107px;
    font-size: 36px;
    text-align: center;
  }
}

@media screen and (min-width: 992px) {
  .headline-section {
    margin-top: 100px;
    width: 100%;
  }

  .headline {
    width: 571px;
    height: 107px;
    font-size: 36px;
    text-align: center;
  }
}

/*----------------------------------
  SECTION
------------------------------------*/

  .section {
    float: left;
    width: 100%;
  }

.project-one, .project-two, .project-three {
    margin-top: 15%;
}



  .section div.content.left {
    width: 50%;
    float: left;
  }

  .section div.content.right {
    width: 50%;
    float: right;
  }

  .section div.illustration {
    width: 50%;
    float: left;
    /* display: flex; */
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -o-flex-direction: row;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    z-index: -90000000;
  }

  .section div.content div.number {
    /*width: 32px;*/
    /*height: 30px;*/
    font-family: 'Saira Extra Condensed', sans-serif;
    font-size: 40px;
	  font-weight: 100;
    /*font-weight: 500;*/
    font-stretch: extra-condensed;
    line-height: 1.56;
    /*letter-spacing: 8.1px;*/
    text-align: left;
    color: #67fce6;
  }

  .section div.content div.title {
    /*width: 289px;*/
    /*height: 64px;*/
    font-family: 'Saira Extra Condensed', sans-serif;
    font-size: 36px;
    font-weight: 500;
    font-stretch: extra-condensed;
    text-align: left;
    color: var(--white);
  }

  .section div.content div.text {
    /*width: 445px;
    height: 87px;*/
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    line-height: 2.29;
	  font-weight: 400;
    text-align: left;
    color: var(--white);
  }

  .section div.content div.more {
    /*width: 194px;*/
    /*height: 33px;*/
    font-family: 'Saira Extra Condensed', sans-serif;
    font-size: 20px;
    /*font-weight: 500;*/
    font-stretch: extra-condensed;
    line-height: 1.65;
    letter-spacing: 6.8px;
    text-align: left;
    color: var(--robin-s-egg);
    text-transform: uppercase;
    margin-bottom: 0 !important;
  }

  @media screen and (max-width: 575px) {
    .section div.illustration {
      margin-top: 60px;
    }

    .section div.content.left,
    .section div.content.right,
    .section div.illustration {
      width: 100%;
      float: left;
      text-align: center;
    }

    .section div.content div.number {
      margin-top: 60px;
      /*font-size: 22px;*/
      /*line-height: 1.5px;
      letter-spacing: 7.5px;*/
      text-align: center;
      display: flex;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      -o-flex-direction: row;
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }

    .section div.content div.title {
      margin-top: 20px;
      font-size: 36px;
      text-align: center;
      display: flex;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      -o-flex-direction: row;
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }

    .section div.content div.title div.content {
      width: 289px;
      /*height: 64px;*/
    }

    .section div.content div.text {
      margin-top: 20px;
      text-align: center;
      font-size: 16px;
      line-height: 2.17;
      display: flex;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      -o-flex-direction: row;
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }

    .section div.content div.text div.content {
      /* width: 241px; */
      /*height: 120px;*/
          margin: auto 40px;
    }

    .section div.content div.more {
      font-size: 18px;
      line-height: 1.83;
      letter-spacing: 6.1px;
      text-align: center;
      display: flex;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      -o-flex-direction: row;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      margin-top: 30px;
    }

    .section div.content div.more div.content {
      width: 194px;
      /*height: 33px;*/
    }
  }

  @media screen and (min-width: 576px) and (max-width: 767px) {
    .section div.illustration {
      margin-top: 70px;
    }

    .section div.content.left,
    .section div.content.right,
    .section div.illustration {
      width: 100%;
      float: left;
    }

    .section div.content div.number {
      margin-top: 70px;
      /*font-size: 22px;
      line-height: 1.5px;
      letter-spacing: 7.5px;*/
      text-align: center;
      display: flex;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      -o-flex-direction: row;
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }

    .section div.content div.title {
      margin-top: 20px;
      font-size: 38px;
      text-align: center;
      display: flex;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      -o-flex-direction: row;
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }

    .section div.content div.title div.content {
      width: 289px;
      /*height: 64px;*/
    }

    .section div.content div.text {
      margin-top: 20px;
      text-align: center;
      font-size: 16px;
      line-height: 2.17;
      display: flex;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      -o-flex-direction: row;
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }

    .section div.content div.text div.content {
      /* width: 447px; */
      /*height: 107px;*/
          margin: auto 40px;
    }

    .section div.content div.more {
      font-size: 18px;
      line-height: 1.83;
      letter-spacing: 6.1px;
      text-align: center;
      display: flex;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      -o-flex-direction: row;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      margin-top: 30px;
    }

    .section div.content div.more div.content {
      width: 194px;
      /*height: 33px;*/
    }
  }

  @media screen and (min-width: 1201px) {
    .hide-l-xl {
        display: none;
    }
  }

  @media screen and (max-width: 1200px) {
   .hide-illustration-sm {
        display: none !important;
    }
  }


  @media screen and (min-width: 768px) and (max-width: 991px) {
    .section div.illustration {
      margin-top: 80px;
    }

    .section div.content.left,
    .section div.content.right,
    .section div.illustration {
      width: 100%;
      float: left;
    }

    .section div.content div.number {
      margin-top: 85px;
      /*font-size: 24px;
      line-height: 1.38;
      letter-spacing: 8.1px;*/
      text-align: center;
      display: flex;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      -o-flex-direction: row;
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }

    .section div.content div.title {
      margin-top: 20px;
      font-size: 36px;
      text-align: center;
      display: flex;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      -o-flex-direction: row;
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }

    .section div.content div.title div.content {
      width: 289px;
      /*height: 64px;*/
    }

    .section div.content div.text {
      margin-top: 20px;
      text-align: center;
      font-size: 14px;
      line-height: 2.29;
      display: flex;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      -o-flex-direction: row;
      flex-direction: row;
      justify-content: center;
      align-items: center;
    }

    .section div.content div.text div.content {
      width: 495px;
      /*height: 164px;*/
    }

    .section div.content div.more {
      font-size: 20px;
      line-height: 1.65;
      letter-spacing: 6.8px;
      text-align: center;
      display: flex;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      -o-flex-direction: row;
      flex-direction: row;
      justify-content: center;
      align-items: center;
      margin-top: 30px;
    }

    .section div.content div.more div.content {
      width: 194px;
      /*height: 33px;*/
    }
  }

  .relas-refference {
    margin-top: -5%;
    padding-left:12%;
  }

  .antenna-refference {
    margin-top: 8%;
    padding-left:15%;
  }
  .relas-refference img:nth-child(2) {
    margin-left: 130px;
  }

  @media screen and (max-width: 1366px) {
    .relas-refference {
      margin-top: -15%;
      padding-left:5%;
    }
    .relas-refference img:nth-child(2) {
      margin-left: 155px;
    }
    .antenna-refference {
      margin-top: 2%;
      padding-left:15%;
    }
  }

  @media screen and (min-width: 992px) and (max-width: 1199px) {
    .section div.illustration {
      /* margin-top: 170px; */
    }

    .section div.content.left div.number,
    .section div.content.left div.title,
    .section div.content.left div.text,
    .section div.content.left div.more {
      padding-left: 90px;
      /*width: 80%;*/
    }

    .section div.content.right div.number,
    .section div.content.right div.title,
    .section div.content.right div.text,
    .section div.content.right div.more {
      padding-right: 90px;
      /*width: 80%;*/
    }

    .section div.content div.number {
      margin-top: 170px;
      /*font-size: 24px;
      line-height: 1.38;
      letter-spacing: 8.1px;*/
      text-align: left;
    }

    .section div.content div.title {
      margin-top: 20px;
      font-size: 36px;
      text-align: left;
      /*width: 60%;*/
    }

    .section div.content div.text {
      margin-top: 25px;
      text-align: left;
      font-size: 16px;
      line-height: 2.29;
      /*width: 80%;*/
    }

    /*.section div.content div.text div.content {
      width: 495px;
      /*height: 164px;*/
    /*}*/

    .section div.content div.more {
      font-size: 20px;
      line-height: 1.65;
      letter-spacing: 6.8px;
      text-align: left;
      margin-top: 30px;
    }

    .section div.content div.more div.content {
      width: 194px;
      /*height: 33px;*/
    }
  }

  @media screen and (min-width: 1200px) {
    .section div.illustration {
      margin-top: 0;
    }

    .section div.content.left div.number,
    .section div.content.left div.title,
    .section div.content.left div.text,
    .section div.content.left div.more {
      padding-left: 115px;
      /*width: 80%;*/
      display: flex;
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      -o-flex-direction: row;
      flex-direction: row;
      justify-content: flex-start;
      align-content: flex-start;
    }

    .section div.content.right div.number,
    .section div.content.right div.title,
    .section div.content.right div.text,
    .section div.content.right div.more {
      padding-right: 115px;
      /*width: 80%;*/
    }

    .section div.content div.number {
      margin-top: 105px;
      /*font-size: 24px;
      line-height: 1.38;
      letter-spacing: 8.1px;*/
      text-align: left;
    }

    .section div.content div.title {
      margin-top: 20px;
      font-size: 45px;
      text-align: left;
      /*width: 60%;*/
    }

    .section div.content div.text {
      margin-top: 25px;
      text-align: left;
      /* font-size: 18px;
      line-height: 2; */
      opacity: 0.8;
      /*width: 80%;*/
    }

    /*.section div.content div.text div.content {
      width: 495px;
      /*height: 164px;*/
    /*}*/

    .section div.content div.more {
      font-size: 20px;
      line-height: 1.65;
      letter-spacing: 6.8px;
      text-align: left;
      margin-top: 50px;
    }

    .section div.content div.more div.content {
      width: 194px;
      /*height: 33px;*/
    }
  }

  .section div.more div.content:hover {
    cursor: pointer;
    /*padding-left: 10px;*/
    /*background-image: -webkit-linear-gradient(to bottom, transparent 0px, transparent 12px, rgba(103, 252, 230, 0.11) 12px, rgba(103, 252, 230, 0.11) 20px, transparent 20px);
    background-image: -moz-linear-gradient(to bottom, transparent 0px, transparent 12px, rgba(103, 252, 230, 0.11) 12px, rgba(103, 252, 230, 0.11) 20px, transparent 20px);
    background-image: -o-linear-gradient(to bottom, transparent 0px, transparent 12px, rgba(103, 252, 230, 0.11) 12px, rgba(103, 252, 230, 0.11) 20px, transparent 20px);
    background-image: linear-gradient(to bottom, transparent 0px, transparent 12px, rgba(103, 252, 230, 0.11) 12px, rgba(103, 252, 230, 0.11) 20px, transparent 20px);*/
  }

/*----------------------------------
  SECTION CENTER
------------------------------------*/
div.section.center {
  margin-top: 45px;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
  align-self: center;
}

div.section.center div.title {
  font-family: 'Saira Extra Condensed', sans-serif;
	font-size: 78px;
	font-weight: 500;
	font-stretch: extra-condensed;
	text-align: center;
	color: var(--white);
  text-transform: uppercase;
}

div.section.center div.text {
  margin-top: 20px;
  font-family: 'Noto Sans', sans-serif;
	font-size: 20px;
	line-height: 1.6;
  width: 60%;
	text-align: center;
	font-stretch: extra-condensed;
	text-align: center;
	color: var(--white);
}

div.section.center div.text.smaller {
	-webkit-transform: rotate(-360deg);
	transform: rotate(-360deg);
  font-family: 'Noto Sans', sans-serif;
	font-size: 18px;
	line-height: 1.78;
}

div.section.center div.text.smaller.robin-s-egg {
  color: var(--robin-s-egg);
}

div.section.center div.counter {
  margin-top: 20px;
	-webkit-transform: rotate(-360deg);
	transform: rotate(-360deg);
  font-family: 'Noto Sans', sans-serif;
	font-size: 14px;
	line-height: 2.29;
	text-align: left;
	color: var(--robin-s-egg);
  text-transform: uppercase;
}

@media screen and (max-width: 575px) {
  div.section.center {
    margin-top: 100px;
  }

  div.section.center div.title {
    font-size: 40px;
  }

  div.section.center form,
  div.section.center div.text {
  	font-size: 16px;
  	line-height: 2.0;
    width: 80%;
  }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  div.section.center {
    margin-top: 100px;
  }

  div.section.center div.title {
    font-size: 40px;
  }

  div.section.center form,
  div.section.center div.text {
  	font-size: 16px;
  	line-height: 2.0;
    width: 80%;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  div.section.center form,
  div.section.center div.text {
    width: 80%;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  div.section.center form,
  div.section.center div.text {
    width: 70%;
  }
}

@media screen and (min-width: 1200px) {
  div.section.center form,
  div.section.center div.text {
    width: 60%;
  }
}


/*----------------------------------
  SECTION INVERTED - background in color and white text
------------------------------------*/
div.section.inverted {
  color: var(--white);
  width: inherit !important;
  margin-top: 145px;
  background-color: var(--seafoam-blue-two);
  position: relative;
  padding: 130px 75px;
  overflow: hidden;
}

div.section.inverted div.left {
  margin-top: 10px;
  float: left;
  height: 100%;
  width: 50%;
}

div.section.inverted div.left.w-30{
  width: 30% !important;
}

div.section.inverted div.right {
  margin-top: 10px;
  float: right;
  height: 100%;
  width: 50%;
}

div.section.inverted div.right.w-70 {
  width: 70% !important;
}

div.section.inverted div.subtitle {
  font-family: 'Noto Sans', sans-serif;
  font-size: 14px;
  line-height: 2.29;
  letter-spacing: 2.5px;
  text-align: left;
  text-transform: uppercase;
}

div.section.inverted div.left div.title {
  font-family: 'Saira Extra Condensed', sans-serif;
	font-weight: 500;
  font-stretch: extra-condensed;
  font-size: 45px;
  text-align: left;
  text-transform: uppercase;
  width: 70%;
}

div.section.inverted div.right div.content {
  font-family: 'Noto Sans', sans-serif;
  font-size: 16px;
  line-height: 2.29;
  text-align: left;
}

div.section.inverted div.right div.more {
  font-family: 'Saira Extra Condensed', sans-serif;
  font-stretch: extra-condensed;
  font-size: 20px;
  line-height: 1.65;
  letter-spacing: 6.8px;
  text-align: left;
  text-transform: uppercase;
  margin-top: 30px;
  width: 140px;
}

div.section.inverted div.right div.more:hover {
  cursor: pointer;

  /*background-image: -webkit-linear-gradient(to bottom, rgba(121, 208, 194, 1) 0px, rgba(121, 208, 194, 1) 20px, transparent 20px, transparent 28px, rgba(121, 208, 194, 1) 28px, rgba(121, 208, 194, 1) 5px), -webkit-linear-gradient(to right, transparent 0px, transparent 13px, rgba(90, 200, 183, 1) 13px, rgba(90, 200, 183, 1) 122px);
  background-image: -moz-linear-gradient(to bottom, rgba(121, 208, 194, 1) 0px, rgba(121, 208, 194, 1) 20px, transparent 20px, transparent 28px, rgba(121, 208, 194, 1) 28px, rgba(121, 208, 194, 1) 5px), -moz-linear-gradient(to right, transparent 0px, transparent 13px, rgba(90, 200, 183, 1) 13px, rgba(90, 200, 183, 1) 122px);
  background-image: -o-linear-gradient(to bottom, rgba(121, 208, 194, 1) 0px, rgba(121, 208, 194, 1) 20px, transparent 20px, transparent 28px, rgba(121, 208, 194, 1) 28px, rgba(121, 208, 194, 1) 5px), -o-linear-gradient(to right, transparent 0px, transparent 13px, rgba(90, 200, 183, 1) 13px, rgba(90, 200, 183, 1) 122px);
  background-image: linear-gradient(to bottom, rgba(121, 208, 194, 1) 0px, rgba(121, 208, 194, 1) 20px, transparent 20px, transparent 28px, rgba(121, 208, 194, 1) 28px, rgba(121, 208, 194, 1) 5px), linear-gradient(to right, transparent 0px, transparent 13px, rgba(90, 200, 183, 1) 13px, rgba(90, 200, 183, 1) 122px);*/
}

div.section.inverted div.right div.row:first-child{
  margin-top: 0 !important;
}

div.section.inverted div.right div.row:not(first-child) {
  margin-top: 90px !important;
}

div.section.inverted div.right div.row div.title {
  font-family: 'Saira Extra Condensed', sans-serif;
	font-size: 30px;
	font-weight: 500;
	font-stretch: extra-condensed;
	text-align: left;
	color: var(--white);
}

div.section.inverted div.right div.row div.text {
  font-family: 'Noto Sans', sans-serif;
	font-size: 16px;
	line-height: 2.29;
	text-align: left;
	color: var(--white);
}

div.section.inverted div.right div.row div.illustration {
  margin-top: 0 !important;
  display: inline-flex;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  padding: 0 !important;
}

@media screen and (max-width: 575px) {
  div.section.inverted {
    margin: 140px 0 0 0;
    padding: 120px 50px;
    float: left;
  }

  div.section.inverted div.right div.content {
    font-size: 12px;
    line-height: 2.17;
    text-align: left;
  }

  div.section.inverted div.right div.more {
    font-size: 18px;
    line-height: 1.83;
    letter-spacing: 6.1px;
    text-align: left;
  }

  div.section.inverted div.left,
  div.section.inverted div.right,
  div.section.inverted div.left.w-30,
  div.section.inverted div.right.w-70 {
    float: left;
    width: 100% !important;
  }

  div.section.inverted div.subtitle.center-sm,
  div.section.inverted div.left div.title.center-sm {
    text-align: center;
    width: 100%;
  }

  div.section.inverted div.right div.row div.title {
    margin-top: 20px;
    text-align: center;
  }

  div.section.inverted div.right div.row div.text {
    text-align: center;
  	font-size: 14px;
  	line-height: 2.67;
    margin-top: 20px;
  }

  div.section.inverted div.right.w-70 {
    margin-top: 60px;
  }

  div.section.inverted div.right div.row div.illustration {
    justify-content: center;
    align-items: center;
    align-content: center;
  }
}

@media screen and (min-width: 576px) and (max-width: 767px) {
  div.section.inverted {
    margin: 140px 0 0 0;
    padding: 125px 65px;
  }

  div.section.inverted div.right div.content {
    font-size: 16px;
    line-height: 2.17;
    text-align: left;
  }

  div.section.inverted div.right div.more {
    font-size: 18px;
    line-height: 1.83;
    letter-spacing: 6.1px;
    text-align: left;
  }

  div.section.inverted div.left,
  div.section.inverted div.right,
  div.section.inverted div.left.w-30,
  div.section.inverted div.right.w-70 {
    float: left;
    width: 100% !important;;
  }

  div.section.inverted div.subtitle.center-sm,
  div.section.inverted div.left div.title.center-sm {
    text-align: center;
    width: 100%;
  }

  div.section.inverted div.right div.row div.title {
    margin-top: 20px;
    text-align: center;
  }

  div.section.inverted div.right div.row div.text {
    text-align: center;
  	font-size: 14px;
  	line-height: 2.67;
    margin-top: 20px;
  }

  div.section.inverted div.right.w-70 {
    margin-top: 60px;
  }

  div.section.inverted div.right div.row div.illustration {
    justify-content: center;
    align-items: center;
    align-content: center;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  div.section.inverted {
    margin: 150px 60px 0 60px;
    padding: 140px 90px;
  }

  div.section.inverted div.left,
  div.section.inverted div.right,
  div.section.inverted div.left.w-30,
  div.section.inverted div.right.w-70 {
    float: left;
    width: 100% !important;
  }

  div.section.inverted div.right.w-70 {
    margin-top: 60px;
  }

  div.section.inverted div.right div.row div.title {
    margin-top: 0;
    text-align: left;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  div.section.inverted {
    margin: 150px 60px 0 60px;
    padding: 120px 45px;
  }

  div.section.inverted div.left.w-30,
  div.section.inverted div.right.w-70 {
    float: left;
    width: 100% !important;
  }

  div.section.inverted div.right.w-70 {
    margin-top: 60px;
  }
}

@media screen and (min-width: 1199px) and (max-width: 1250px) {
  div.section.inverted div.left.w-30,
  div.section.inverted div.right.w-70 {
    float: left;
    width: 100% !important;
  }

  div.section.inverted div.right.w-70 {
    margin-top: 60px;
  }
}

@media screen and (min-width: 1200px) {
  div.section.inverted {
    margin: 150px 85px 0 85px;
    z-index: 0;
  }
}


/*----------------------------------
  SLY - image slider
------------------------------------*/

.frame {
  width: 450px;
  height: 340px;
  padding: 0;
}

.frame .slidee {
  margin: 0;
  padding: 0;
  height: 100%;
  list-style: none;
  cursor: pointer;
}

.frame .slidee li:not(first-child) {
  margin: 0 5px 0 0;
}

.frame .slidee li {
  float: left;
  padding: 0;
  height: 100%;
}

@media screen and (max-width: 576px) {
  .frame {
    width: 300px;
    height: auto;
  }

  .frame .slidee li img {
    width: 300px;
    height: auto;
  }
}

.scrollbar {
  margin-top: 35px;
  width: 120px;
  margin-top: 35px;
	background-color: #EDA500;
  border-radius: 6px;
  cursor: pointer;
}

.scrollbar .handle {
	width: 60px;
	height: 100%;
	border: solid 3px var(--white);
  border-radius: 6px;
	background: var(--white);
}

/*----------------------------------
  HIRE US
------------------------------------*/
div.hire-us {
  /*float: left;*/
  margin-top: 40px;
  font-family: 'Saira Extra Condensed', sans-serif;
  font-stretch: extra-condensed;
  font-size: 30px;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 10.2px;
  color: var(--robin-s-egg);
  text-transform: uppercase;
}

div.hire-us:hover {
  cursor: pointer;

  /*background-image: -webkit-linear-gradient(to bottom, transparent 0px, transparent 22px, rgba(103, 252, 230, 0.11) 22px, rgba(103, 252, 230, 0.11) 11px);
  background-image: -moz-linear-gradient(to bottom, transparent 0px, transparent 22px, rgba(103, 252, 230, 0.11) 22px, rgba(103, 252, 230, 0.11) 11px);
  background-image: -o-linear-gradient(to bottom, transparent 0px, transparent 22px, rgba(103, 252, 230, 0.11) 22px, rgba(103, 252, 230, 0.11) 11px);
  background-image: linear-gradient(to bottom, transparent 0px, transparent 22px, rgba(103, 252, 230, 0.11) 22px, rgba(103, 252, 230, 0.11) 11px);*/
}

div.hire-us a {
  padding-left: 10px;
  width: 270px;
}

@media screen and (max-width: 767px) {
  div.hire-us {
    text-align: center;
    margin-top: 30px;
    font-size: 26px;
    line-height: 1.27;
    letter-spacing: 8.8px;
  }

  div.hire-us a {
    width: 230px;
  }
}

div.contact-us {
  margin-top: 20px;
	-webkit-transform: rotate(-360deg);
	transform: rotate(-360deg);
	font-family: "Noto Sans", sans-serif;
	font-size: 18px;
	line-height: 1.78;
	text-align: center;
	color: var(--white);
}

div.contact-us a {
  cursor: pointer;
	color: var(--robin-s-egg);
}

@media screen and (max-width: 767px) {
  div.contact-us {
  	font-size: 18px;
  	line-height: 1.78;
  }
}
