/* reset */
* {
  box-sizing: border-box;
}

h1, h2, h3, h4, p, ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

img {
  display: block;
}

.invisible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* font montserrat */
/* montserrat-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/montserrat-v25-latin-300.eot"); /* IE9 Compat Modes */
  src: url("../fonts/montserrat-v25-latin-300.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-v25-latin-300.woff2") format("woff2"), url("../fonts/montserrat-v25-latin-300.woff") format("woff"), url("../fonts/montserrat-v25-latin-300.ttf") format("truetype"), url("../fonts/montserrat-v25-latin-300.svg#Montserrat") format("svg"); /* Legacy iOS */
}
/* montserrat-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/montserrat-v25-latin-regular.eot"); /* IE9 Compat Modes */
  src: url("../fonts/montserrat-v25-latin-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-v25-latin-regular.woff2") format("woff2"), url("../fonts/montserrat-v25-latin-regular.woff") format("woff"), url("../fonts/montserrat-v25-latin-regular.ttf") format("truetype"), url("../fonts/montserrat-v25-latin-regular.svg#Montserrat") format("svg"); /* Legacy iOS */
}
/* montserrat-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/montserrat-v25-latin-500.eot"); /* IE9 Compat Modes */
  src: url("../fonts/montserrat-v25-latin-500.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-v25-latin-500.woff2") format("woff2"), url("../fonts/montserrat-v25-latin-500.woff") format("woff"), url("../fonts/montserrat-v25-latin-500.ttf") format("truetype"), url("../fonts/montserrat-v25-latin-500.svg#Montserrat") format("svg"); /* Legacy iOS */
}
/* montserrat-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/montserrat-v25-latin-600.eot"); /* IE9 Compat Modes */
  src: url("../fonts/montserrat-v25-latin-600.eot?#iefix") format("embedded-opentype"), url("../fonts/montserrat-v25-latin-600.woff2") format("woff2"), url("../fonts/montserrat-v25-latin-600.woff") format("woff"), url("../fonts/montserrat-v25-latin-600.ttf") format("truetype"), url("../fonts/montserrat-v25-latin-600.svg#Montserrat") format("svg"); /* Legacy iOS */
}
/* colors */
/* Viewports */
/* fonts */
/* media queries */
/* typo */
/* header */
header {
  position: fixed;
  width: 100%;
  height: 62px;
  z-index: 2;
}
@media (min-width: 992px) {
  header {
    height: 92px;
  }
}
header .brand {
  position: absolute;
  top: 0;
  left: 0;
  margin: 9px 0 9px 20px;
}
@media (min-width: 992px) {
  header .brand {
    margin: 15px 0 15px 20px;
  }
}
header .brand img {
  width: 74px;
  height: 44px;
}
@media (min-width: 992px) {
  header .brand img {
    width: 105px;
    height: 62px;
  }
}
header .nav-bar {
  position: relative;
  height: 62px;
  background: rgba(75, 118, 161, 0.3);
  opacity: 1;
  transition: opacity 0.5s ease 0.2s;
}
@media (min-width: 992px) {
  header .nav-bar {
    height: 92px;
  }
}
header .nav-bar.fadeout {
  opacity: 0;
}
header .nav-bar .nav-container {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 1435px;
  margin: 0 auto;
}
header .nav-bar .nav-container .nav-burger {
  position: absolute;
  display: flex;
  justify-content: center;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  z-index: 1;
}
header .nav-bar .nav-container .nav-burger .menu {
  position: relative;
  width: 22px;
  height: 20px;
  margin: auto;
}
header .nav-bar .nav-container .nav-burger .menu .bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background: #ffffff;
  transition: all 0.25s ease-in-out;
}
header .nav-bar .nav-container .nav-burger .menu .bar-middle {
  top: 0;
  bottom: 0;
  margin: auto;
}
header .nav-bar .nav-container .nav-burger .menu .bar-bottom {
  bottom: 0;
}
@media (min-width: 992px) {
  header .nav-bar .nav-container .nav-burger {
    display: none;
  }
}
header .nav-bar .nav-container #input-burger:checked ~ nav {
  left: 0;
}
header .nav-bar .nav-container #input-burger:checked + .nav-burger .menu .bar-top {
  transform: translate(0, 9px) rotate(-45deg);
}
header .nav-bar .nav-container #input-burger:checked + .nav-burger .menu .bar-middle {
  opacity: 0;
}
header .nav-bar .nav-container #input-burger:checked + .nav-burger .menu .bar-bottom {
  transform: translate(0, -9px) rotate(45deg);
}
header .nav-bar .nav-container .nav-menu {
  position: absolute;
  top: 0;
  transition: left 0.5s ease;
  left: 100%;
  background: #1B2746;
  background: radial-gradient(circle at 94.3538411458% 89.6158854167%, #214263 0%, 20.5%, rgba(33, 66, 99, 0) 41%), radial-gradient(circle at 6.50390625% 88.037109375%, rgba(81, 91, 116, 0.99) 0%, 25%, rgba(81, 91, 116, 0) 50%), radial-gradient(circle at 6.1653645833% 12.6171875%, #326394 0%, 42%, rgba(50, 99, 148, 0) 70%), radial-gradient(circle at 93.6865234375% 11.42578125%, #5CD0C9 0%, 42%, rgba(92, 208, 201, 0) 70%), radial-gradient(circle at 48.9013671875% 49.521484375%, #FFFFFF 0%, 100%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  height: 100vh;
}
@media (min-width: 992px) {
  header .nav-bar .nav-container .nav-menu {
    position: relative;
    left: auto;
    align-self: flex-end;
    width: auto;
    height: 92px;
    background: transparent;
  }
}
header .nav-bar .nav-container .nav-menu .nav-items {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 70px;
}
@media (min-width: 992px) {
  header .nav-bar .nav-container .nav-menu .nav-items {
    flex-direction: row;
    padding-top: 0;
  }
}
header .nav-bar .nav-container .nav-menu .nav-items .nav-item {
  position: relative;
  text-align: center;
}
@media (min-width: 992px) {
  header .nav-bar .nav-container .nav-menu .nav-items .nav-item:nth-child(1) {
    width: 158px;
  }
  header .nav-bar .nav-container .nav-menu .nav-items .nav-item:nth-child(2) {
    width: 180px;
  }
  header .nav-bar .nav-container .nav-menu .nav-items .nav-item:nth-child(3) {
    width: 112px;
  }
  header .nav-bar .nav-container .nav-menu .nav-items .nav-item:nth-child(4) {
    width: 135px;
  }
}
header .nav-bar .nav-container .nav-menu .nav-items .nav-item .nav-link {
  position: relative;
  display: block;
  text-decoration: none;
  font-weight: 300;
  font-size: 2.125rem;
  padding: 20px;
}
@media (hover: hover) {
  header .nav-bar .nav-container .nav-menu .nav-items .nav-item .nav-link:hover {
    color: #5cd0c9;
  }
}
header .nav-bar .nav-container .nav-menu .nav-items .nav-item .nav-link.nav-link--current {
  font-weight: 600;
}
@media (min-width: 992px) {
  header .nav-bar .nav-container .nav-menu .nav-items .nav-item .nav-link {
    font-size: 14px;
    margin: 4px;
    padding: 30px;
  }
}

.phone {
  position: relative;
  width: 330px;
  height: 393.25px;
}
.phone img {
  position: absolute;
  transition: top 1s, left 1s, opacity 0.75s 0.5s;
}
.phone img:nth-child(1) {
  width: 295px;
  top: 27.5px;
  left: -16.5px;
  opacity: 0;
}
.phone img:nth-child(2) {
  width: 97px;
  top: -48.4px;
  left: 99px;
}
.phone img:nth-child(3) {
  width: 330px;
  top: -38.5px;
  left: -48.4px;
}
.phone img:nth-child(4) {
  width: 245px;
  top: 110px;
  left: 144.65px;
}
.phone img:nth-child(5) {
  width: 83px;
  top: 268.4px;
  left: 88px;
}
.phone.move img:nth-child(1) {
  top: 27.5px;
  left: -16.5px;
  opacity: 1;
}
.phone.move img:nth-child(2) {
  top: 0;
  left: 99px;
}
.phone.move img:nth-child(3) {
  top: -38.5px;
  left: 0;
}
.phone.move img:nth-child(4) {
  top: 110px;
  left: 96.25px;
}
.phone.move img:nth-child(5) {
  top: 220px;
  left: 88px;
}
@media (min-width: 768px) {
  .phone {
    width: 474px;
    height: 564.85px;
  }
  .phone img:nth-child(1) {
    width: 424px;
    top: 39.5px;
    left: -23.7px;
  }
  .phone img:nth-child(2) {
    width: 139px;
    top: -69.25px;
    left: 142.2px;
  }
  .phone img:nth-child(3) {
    width: 474px;
    top: -55.3px;
    left: -69.25px;
  }
  .phone img:nth-child(4) {
    width: 352px;
    top: 158px;
    left: 207.77px;
  }
  .phone img:nth-child(5) {
    width: 119px;
    top: 385.52px;
    left: 126.4px;
  }
  .phone.move img:nth-child(1) {
    top: 39.5px;
    left: -23.7px;
  }
  .phone.move img:nth-child(2) {
    top: 0;
    left: 142.2px;
  }
  .phone.move img:nth-child(3) {
    top: -55.3px;
    left: 0;
  }
  .phone.move img:nth-child(4) {
    top: 158px;
    left: 138.25px;
  }
  .phone.move img:nth-child(5) {
    top: 316px;
    left: 126.4px;
  }
}
@media (min-width: 1435px) {
  .phone {
    width: 600px;
    height: 715px;
  }
  .phone img:nth-child(1) {
    width: 537px;
    top: 50px;
    left: -30px;
  }
  .phone img:nth-child(2) {
    width: 176px;
    top: -88px;
    left: 180px;
  }
  .phone img:nth-child(3) {
    width: 600px;
    top: -70px;
    left: -88px;
  }
  .phone img:nth-child(4) {
    width: 446px;
    top: 200px;
    left: 263px;
  }
  .phone img:nth-child(5) {
    width: 151px;
    top: 488px;
    left: 160px;
  }
  .phone.move img:nth-child(1) {
    top: 50px;
    left: -30px;
  }
  .phone.move img:nth-child(2) {
    top: 0;
    left: 180px;
  }
  .phone.move img:nth-child(3) {
    top: -70px;
    left: 0;
  }
  .phone.move img:nth-child(4) {
    top: 200px;
    left: 175px;
  }
  .phone.move img:nth-child(5) {
    top: 400px;
    left: 160px;
  }
}

.hand-phone {
  position: relative;
  height: 330px;
  left: 50%;
  margin-left: -50vw;
}
.hand-phone img {
  position: absolute;
  transition: left 1s ease 0.1s;
}
.hand-phone img:nth-child(1) {
  width: 330px;
  left: -90px;
}
.hand-phone.move img:nth-child(1) {
  left: -22px;
}
@media (min-width: 768px) {
  .hand-phone {
    height: 474px;
  }
  .hand-phone img:nth-child(1) {
    width: 474px;
    left: -110px;
  }
}
@media (min-width: 992px) {
  .hand-phone {
    left: 0;
    margin-left: 0;
  }
}
@media (min-width: 1435px) {
  .hand-phone {
    margin-left: calc((100vw - 1435px) * -0.5);
    height: 600px;
  }
  .hand-phone img:nth-child(1) {
    width: 600px;
    left: -130px;
  }
}

.crane {
  position: relative;
  width: 335px;
  height: 309px;
}
.crane img {
  position: absolute;
  opacity: 0;
}
.crane img:nth-child(1) {
  width: 384px;
  left: 37px;
  transition: transform 1s ease 0.1s, opacity 1.5s ease 0.1s;
}
.crane img:nth-child(2) {
  width: 82px;
  top: 190px;
  left: 59px;
  transition: top 1s ease 1s, opacity 1.5s ease 1s;
}
.crane.move img {
  opacity: 1;
}
.crane.move img:nth-child(1) {
  transform: translate(-37px);
}
.crane.move img:nth-child(2) {
  top: 153px;
  left: 59px;
}
@media (min-width: 768px) {
  .crane {
    width: 476px;
    height: 434px;
  }
  .crane img:nth-child(1) {
    width: 540px;
    left: 52px;
  }
  .crane img:nth-child(2) {
    width: 115px;
    top: 268px;
    left: 83px;
  }
  .crane.move img:nth-child(1) {
    transform: translate(-52px);
  }
  .crane.move img:nth-child(2) {
    top: 216px;
    left: 83px;
  }
}
@media (min-width: 1435px) {
  .crane {
    width: 697.5px;
    height: 835px;
  }
  .crane img:nth-child(1) {
    width: 1038px;
    left: 100px;
  }
  .crane img:nth-child(2) {
    width: 222px;
    top: 515px;
    left: 160px;
  }
  .crane.move img:nth-child(1) {
    transform: translate(-100px);
  }
  .crane.move img:nth-child(2) {
    top: 415px;
    left: 160px;
  }
}

.img_1 {
  position: relative;
  height: 280px;
}
.img_1 img {
  position: absolute;
  width: 410px;
  transition: width 0.75s ease;
}
@media (min-width: 768px) {
  .img_1 {
    height: 320px;
  }
  .img_1 img {
    width: 470px;
  }
}
@media (min-width: 1435px) {
  .img_1 {
    height: 582px;
  }
  .img_1 img {
    width: 1012px;
  }
}
.img_1.move img {
  width: 511px;
}
@media (min-width: 768px) {
  .img_1.move img {
    width: 571px;
  }
}
@media (min-width: 1435px) {
  .img_1.move img {
    width: 1113px;
  }
}

.img_2 {
  position: relative;
  height: 340px;
}
.img_2 img {
  position: absolute;
  width: 246px;
  transition: width 0.75s ease;
}
@media (min-width: 768px) {
  .img_2 {
    height: 480px;
  }
  .img_2 img {
    width: 390px;
  }
}
@media (min-width: 1435px) {
  .img_2 {
    height: 682px;
  }
  .img_2 img {
    width: 700px;
  }
}
.img_2.move img {
  width: 347px;
}
@media (min-width: 768px) {
  .img_2.move img {
    width: 491px;
  }
}
@media (min-width: 1435px) {
  .img_2.move img {
    width: 801px;
  }
}

.img_3 {
  position: relative;
  height: 370px;
}
.img_3 img {
  position: absolute;
  width: 380px;
  transition: width 0.75s ease;
}
@media (min-width: 768px) {
  .img_3 {
    height: 460px;
  }
  .img_3 img {
    width: 470px;
  }
}
@media (min-width: 1435px) {
  .img_3 {
    height: 542px;
  }
  .img_3 img {
    width: 700px;
  }
}
.img_3.move img {
  width: 481px;
}
@media (min-width: 768px) {
  .img_3.move img {
    width: 571px;
  }
}
@media (min-width: 1435px) {
  .img_3.move img {
    width: 801px;
  }
}

.img_4 {
  position: relative;
  height: 340px;
}
.img_4 img {
  position: absolute;
  width: 246px;
  transition: width 0.75s ease;
}
@media (min-width: 768px) {
  .img_4 {
    height: 480px;
  }
  .img_4 img {
    width: 390px;
  }
}
@media (min-width: 1435px) {
  .img_4 {
    height: 682px;
  }
  .img_4 img {
    width: 700px;
  }
}
.img_4.move img {
  width: 347px;
}
@media (min-width: 768px) {
  .img_4.move img {
    width: 491px;
  }
}
@media (min-width: 1435px) {
  .img_4.move img {
    width: 801px;
  }
}

.crane2 {
  position: relative;
  width: 286px;
  height: 311px;
}
.crane2 img {
  position: absolute;
  transition: top 1s, left 1s;
}
.crane2 img:nth-child(1) {
  width: 150px;
  top: -50px;
  left: 32px;
}
.crane2 img:nth-child(2) {
  width: 118px;
  top: 128px;
  left: -50px;
}
.crane2 img:nth-child(3) {
  width: 206px;
  top: 106px;
  left: 80px;
}
.crane2 img:nth-child(4) {
  width: 56px;
  top: 40px;
  left: 148px;
}
.crane2.move img:nth-child(1) {
  top: 0;
}
.crane2.move img:nth-child(2) {
  left: 0;
}
.crane2.move img:nth-child(4) {
  top: 90px;
}
@media (min-width: 768px) {
  .crane2 {
    width: 436px;
    height: 474px;
  }
  .crane2 img:nth-child(1) {
    width: 228px;
    top: -70px;
    left: 50px;
  }
  .crane2 img:nth-child(2) {
    width: 180px;
    top: 196px;
    left: -70px;
  }
  .crane2 img:nth-child(3) {
    width: 314px;
    top: 162px;
    left: 122px;
  }
  .crane2 img:nth-child(4) {
    width: 86px;
    top: 66px;
    left: 226px;
  }
  .crane2.move img:nth-child(1) {
    top: 0;
  }
  .crane2.move img:nth-child(2) {
    left: 0;
  }
  .crane2.move img:nth-child(4) {
    top: 136px;
  }
}
@media (min-width: 1435px) {
  .crane2 {
    width: 538px;
    height: 585px;
  }
  .crane2 img:nth-child(1) {
    width: 282px;
    top: -90px;
    left: 62px;
  }
  .crane2 img:nth-child(2) {
    width: 224px;
    top: 240px;
    left: -90px;
  }
  .crane2 img:nth-child(3) {
    width: 390px;
    top: 198px;
    left: 148px;
  }
  .crane2 img:nth-child(4) {
    width: 104px;
    top: 82px;
    left: 280px;
  }
  .crane2.move img:nth-child(1) {
    top: 0;
  }
  .crane2.move img:nth-child(2) {
    left: 0;
  }
  .crane2.move img:nth-child(4) {
    top: 172px;
  }
}

.illu-android {
  position: relative;
}
.illu-android img {
  position: relative;
  width: 250px;
}
@media (min-width: 768px) {
  .illu-android img {
    width: 334px;
  }
}

.illu-ios {
  position: relative;
}
.illu-ios img {
  position: relative;
  width: 250px;
}
@media (min-width: 768px) {
  .illu-ios img {
    width: 334px;
  }
}

.jobs-career {
  position: relative;
  width: 250px;
  height: 322px;
}
.jobs-career img {
  position: absolute;
  transition: top 1s, left 1s, opacity 0.75s 0.5s;
}
.jobs-career img:nth-child(1) {
  top: 90px;
  left: 16px;
  width: 184px;
  opacity: 0;
}
.jobs-career img:nth-child(2) {
  top: -50px;
  left: 0;
  width: 136px;
}
.jobs-career img:nth-child(3) {
  top: 90px;
  left: 116px;
  width: 184px;
}
.jobs-career img:nth-child(4) {
  top: 248px;
  left: 34px;
  width: 60px;
}
.jobs-career.move img:nth-child(1) {
  opacity: 1;
}
.jobs-career.move img:nth-child(2) {
  top: 0;
}
.jobs-career.move img:nth-child(3) {
  left: 66px;
}
.jobs-career.move img:nth-child(4) {
  top: 198px;
}
@media (min-width: 768px) {
  .jobs-career {
    width: 436px;
    height: 544px;
  }
  .jobs-career img:nth-child(1) {
    top: 152px;
    left: 34px;
    width: 310px;
  }
  .jobs-career img:nth-child(2) {
    top: -70px;
    left: 6px;
    width: 230px;
  }
  .jobs-career img:nth-child(3) {
    top: 154px;
    left: 188px;
    width: 310px;
  }
  .jobs-career img:nth-child(4) {
    top: 404px;
    left: 64px;
    width: 100px;
  }
  .jobs-career.move img:nth-child(2) {
    top: 0;
  }
  .jobs-career.move img:nth-child(3) {
    left: 118px;
  }
  .jobs-career.move img:nth-child(4) {
    top: 334px;
  }
}
@media (min-width: 1435px) {
  .jobs-career {
    width: 657.5px;
    height: 697px;
  }
  .jobs-career img:nth-child(1) {
    top: 196px;
    left: 96px;
    width: 396px;
  }
  .jobs-career img:nth-child(2) {
    top: -90px;
    left: 58px;
    width: 294px;
  }
  .jobs-career img:nth-child(3) {
    top: 196px;
    left: 290px;
    width: 398px;
  }
  .jobs-career img:nth-child(4) {
    top: 516px;
    left: 132px;
    width: 130px;
  }
  .jobs-career.move img:nth-child(2) {
    top: 0;
  }
  .jobs-career.move img:nth-child(3) {
    left: 200px;
  }
  .jobs-career.move img:nth-child(4) {
    top: 426px;
  }
}

.jobs-detail {
  position: relative;
  left: 50%;
  width: 167px;
  height: 271px;
}
.jobs-detail img {
  position: absolute;
  transition: margin-left 1s;
}
.jobs-detail img:nth-child(1) {
  width: 360px;
  margin-left: calc(50vw - 344px);
}
.jobs-detail img:nth-child(2) {
  top: 14px;
  width: 126px;
  margin-left: calc(50vw - 92px);
}
.jobs-detail.move img:nth-child(2) {
  margin-left: calc(50vw - 192px);
}
@media (min-width: 768px) {
  .jobs-detail {
    height: 373px;
  }
  .jobs-detail img:nth-child(1) {
    width: 500px;
    margin-left: calc(50vw - 472px);
  }
  .jobs-detail img:nth-child(2) {
    top: 20px;
    width: 174px;
    margin-left: calc(50vw - 162px);
  }
  .jobs-detail.move img:nth-child(2) {
    margin-left: calc(50vw - 262px);
  }
}
@media (min-width: 992px) {
  .jobs-detail {
    left: calc((100vw - 992px) * 0.5);
  }
  .jobs-detail img:nth-child(1) {
    left: 30px;
    margin-left: 0;
  }
  .jobs-detail img:nth-child(2) {
    left: 240px;
    margin-left: 100px;
  }
  .jobs-detail.move img:nth-child(2) {
    margin-left: 0;
  }
}
@media (min-width: 1435px) {
  .jobs-detail {
    left: calc((100vw - 1435px) * 0.5);
    height: 514px;
  }
  .jobs-detail img:nth-child(1) {
    left: 60px;
    width: 684px;
    margin-left: 0;
  }
  .jobs-detail img:nth-child(2) {
    top: 26px;
    left: 348px;
    width: 240px;
    margin-left: 150px;
  }
  .jobs-detail.move img:nth-child(2) {
    margin-left: 0;
  }
}

.contact-icons {
  position: relative;
  height: 37px;
}

.drive {
  position: relative;
  height: 244px;
}
.drive img {
  position: relative;
  width: 0;
  transition: width 0.5s ease-in;
}
@media (min-width: 768px) {
  .drive {
    width: 436px;
    height: 406px;
  }
}
@media (min-width: 1435px) {
  .drive {
    width: 650px;
    height: 605px;
  }
}
.drive.move img {
  width: 262px;
}
@media (min-width: 768px) {
  .drive.move img {
    width: 436px;
  }
}
@media (min-width: 1435px) {
  .drive.move img {
    width: 650px;
  }
}

.error404 {
  position: relative;
  height: 215px;
}
.error404 img {
  position: relative;
  width: 176px;
}
@media (min-width: 768px) {
  .error404 {
    height: 526px;
  }
  .error404 img {
    width: 430px;
  }
}
@media (min-width: 1435px) {
  .error404 {
    height: 699px;
  }
  .error404 img {
    width: 571px;
  }
}

.paragraph {
  position: absolute;
  top: 100px;
  right: 20px;
  width: 0;
  height: 0;
  background: url(../img/paragraph.svg) no-repeat;
  background-position: right top;
  background-size: cover;
  transition: width 0.75s ease-in, height 0.75s ease-in;
}
.paragraph.move {
  width: 150px;
  height: 242px;
}
@media (min-width: 768px) {
  .paragraph.move {
    width: 300px;
    height: 485px;
  }
}
@media (min-width: 992px) {
  .paragraph.move {
    width: 589px;
    height: 952px;
  }
}

.container .img-box.news-icon img {
  width: 161px;
}
@media (min-width: 992px) {
  .container .img-box.news-icon img {
    width: 321px;
  }
}
.container .img-box.news-img {
  margin-bottom: 16px;
  width: 100%;
  height: 184px;
  background-position: 50% 50%;
  background-size: cover;
}
@media (min-width: 992px) {
  .container .img-box.news-img {
    height: 340px;
  }
}
.container .img-box.news-detail img {
  max-width: 100%;
}

html {
  font-size: 100%;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 300;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  color: #ffffff;
  margin: 0;
  overflow-x: hidden;
}
@media (min-width: 992px) {
  body {
    font-size: 1rem;
    line-height: 1.5;
  }
}

body {
  background: #1B2746;
}
body.dark-blue-to-light-blue {
  background: linear-gradient(180deg, #1B2746 36%, #326394 100%);
}
body.light-blue-to-dark-blue {
  background: linear-gradient(180deg, #326394 0%, #1B2746 46%);
}

main {
  position: relative;
  /*
    &.datenschutz,
    &.impressum {

      .container {
        background: url(../img/paragraph.svg) no-repeat;
        background-position: right 20px top 100px;
        background-size: 150px auto;

        @include mq(tablet-m-up) {
          background-size: 300px auto;
        }

        @include mq(desktop-up) {
          background-size: 589px auto;
        }
      }
    }*/
}

.container {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 48px 20px;
  margin: 0 auto;
  overflow: hidden;
}
.container.no-spacing {
  padding: 48px 20px 0;
}
@media (min-width: 992px) {
  .container.no-spacing {
    padding: 96px 20px 0;
  }
}
.container.spacing .col-50:first-child {
  padding-bottom: 48px;
}
@media (min-width: 992px) {
  .container.spacing .col-50:first-child {
    padding-bottom: 0;
  }
}
.container.inner {
  padding: 0;
}
.container.first {
  padding: 176px 20px;
}
@media (min-width: 992px) {
  .container.first {
    padding: 320px 20px;
  }
}
.container.hidden {
  display: none;
}
@media (min-width: 992px) {
  .container {
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 1435px;
    padding: 96px 20px;
  }
  .container.reverse {
    flex-direction: row-reverse;
  }
}
@media (min-width: 1435px) {
  .container {
    overflow: visible;
  }
}
.container .col-40 {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .container .col-40 {
    flex: 0 1 40%;
  }
}
.container .col-50 {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .container .col-50.reverse {
    flex-direction: column-reverse;
  }
}
@media (min-width: 992px) {
  .container .col-50 {
    flex: 0 1 50%;
  }
}
.container .col-60 {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .container .col-60 {
    flex: 0 1 60%;
  }
}
.container .col-100 {
  position: relative;
  display: flex;
  flex-direction: column;
}
.container.center {
  align-items: center;
  justify-content: center;
}
.container.center .col-100 {
  align-items: center;
  text-align: center;
  max-width: 520px;
}
@media (min-width: 992px) {
  .container.center .col-100 {
    max-width: none;
  }
}
.container.center .col-50 {
  align-items: center;
  text-align: center;
  max-width: 520px;
}
@media (min-width: 992px) {
  .container.center .col-50 {
    max-width: none;
    padding: 0 40px 0 0;
  }
  .container.center .col-50:last-child {
    align-items: flex-start;
    text-align: left;
  }
}
.container.center .inner {
  padding-top: 48px;
}
.container.center .inner .col-50 {
  flex: auto;
}
.container.center .inner .col-50:last-child {
  align-items: center;
  text-align: center;
}
.container.center .inner .col-50 .img-box {
  margin-bottom: 6px;
}
@media (min-width: 992px) {
  .container.center .inner .col-50 .img-box {
    margin-bottom: 12px;
  }
}
.container.left {
  align-items: center;
}
.container.left .col-40 {
  max-width: 520px;
}
@media (min-width: 992px) {
  .container.left .col-40 {
    max-width: none;
    padding: 0 20px;
  }
}
.container.left .col-50 {
  max-width: 520px;
}
@media (min-width: 992px) {
  .container.left .col-50 {
    max-width: none;
    padding: 0 40px 0 0;
  }
}
.container.left .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.container.left-center {
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .container.left-center {
    align-items: flex-start;
  }
}
.container.left-center .col-100 {
  width: 100%;
  max-width: 520px;
}
@media (min-width: 992px) {
  .container.left-center .col-100 {
    align-items: center;
    text-align: center;
    max-width: none;
  }
}
.container.left-center .col-50 {
  max-width: 520px;
}
@media (min-width: 992px) {
  .container.left-center .col-50 {
    max-width: none;
    padding-right: 40px;
  }
}
.container.left-top {
  align-items: center;
}
@media (min-width: 992px) {
  .container.left-top {
    align-items: normal;
  }
}
.container.left-top .col-50 {
  max-width: 520px;
  padding-bottom: 48px;
}
@media (min-width: 992px) {
  .container.left-top .col-50 {
    max-width: none;
    padding: 0 40px 48px 0;
  }
}
.container.left-top .col-40,
.container.left-top .col-60 {
  width: 100%;
  max-width: 520px;
}
@media (min-width: 992px) {
  .container.left-top .col-40,
  .container.left-top .col-60 {
    max-width: none;
  }
}
@media (min-width: 992px) {
  .container.max-60 .col-100 {
    max-width: 60%;
  }
}
@media (min-width: 992px) {
  .container.max-60 .col-50 {
    padding: 0 10%;
  }
}
@media (min-width: 992px) {
  .container.max-80 .col-100 {
    max-width: 80%;
  }
}
@media (min-width: 992px) {
  .container.max-80 .col-50 {
    padding: 0 5%;
  }
}
.container.max-80.left-top .col-40,
.container.max-80.left-top .col-60 {
  padding: 0 5%;
}
.container.max-80.left-top .col-50 {
  padding: 0 5% 48px;
}
.container .txt-box,
.container .img-box {
  margin-bottom: 48px;
}
.container.ultra-light-blue {
  color: #13172B;
}
.container.ultra-light-blue p {
  font-weight: 400;
}
.container ul {
  position: relative;
}
.container ul.small--bullet {
  list-style: disc;
  padding-left: 18px;
}
.container ul.big--bullet {
  margin-left: -1.25rem;
}
.container ul.big--bullet li {
  position: relative;
  display: inline-block;
  line-height: 1.875rem;
  font-weight: 600;
  text-indent: 1.25rem;
}
.container ul.big--bullet li::before {
  position: relative;
  display: inline-block;
  content: "";
  height: 0.25rem;
  width: 0.25rem;
  border-radius: 0.125rem;
  background: #ffffff;
  margin: 0 0.5rem 0.1rem 0;
}
@media (min-width: 992px) {
  .container ul.big--bullet li::before {
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 0.25rem;
    margin: 0 0.5rem 0.075rem 0;
  }
}
.container ul.button--like li {
  position: relative;
  display: inline-block;
  line-height: 1.75rem;
  font-weight: 500;
  color: #13172B;
  background: #ffffff;
  padding: 4px 22px;
  border-radius: 18px;
  margin: 0 10px 12px 0;
}
@media (min-width: 992px) {
  .container ul.button--like li {
    padding: 8px 22px;
    border-radius: 22px;
    margin: 0 8px 16px 0;
  }
}

.button {
  position: relative;
  display: block;
  background: #5cd0c9;
  padding: 8px 16px;
  border-radius: 18px;
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 500;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
  border: none;
  transition: letter-spacing 0.25s;
}
@media (min-width: 992px) {
  .button {
    padding: 10px 16px;
    border-radius: 22px;
    font-size: 1rem;
  }
}
@media (hover: hover) {
  .button:hover {
    letter-spacing: 0.1em;
  }
}
.button--more {
  width: 180px;
}
.button--now {
  width: 230px;
}
.button--job {
  width: 100%;
  max-width: 520px;
  text-align: left;
  color: #13172B;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3csvg width='25' height='24' viewBox='0 0 25 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M6.5 2L18.5 12L6.5 22' stroke='%231B2746' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 14px 14px;
  background-position: right 18px center;
  padding: 8px 22px;
  margin-bottom: 12px;
}
.button--job:visited {
  color: #13172B;
}
@media (min-width: 992px) {
  .button--job {
    background-size: 24px 24px;
    background-position: right 22px center;
    padding: 10px 22px;
    margin-bottom: 16px;
  }
}
.button--weiter {
  align-self: flex-end;
  background: none;
  padding: 0;
  border-radius: 0;
  font-weight: 600;
  color: #13172B;
  text-align: right;
  text-decoration: underline;
  letter-spacing: normal;
}

.button:disabled {
  opacity: 0.5;
}
@media (hover: hover) {
  .button:disabled:hover {
    letter-spacing: 0.05em;
  }
}

.button:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.impressum .container {
  padding: 92px 20px !important;
}

.datenschutz .container {
  padding: 92px 20px !important;
}

.bg-blue::before {
  position: absolute;
  display: block;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translate(-50%);
  content: "";
}

.dark-blue::before {
  background: #1B2746;
}

.light-blue::before {
  background: #326394;
}

.ultra-light-blue::before {
  background: #F1F7FA;
}

.light-blue-to-dark-blue::before {
  background: linear-gradient(180deg, #326394 0%, #1B2746 46%);
}

.dark-blue-to-light-blue::before {
  background: linear-gradient(180deg, #1B2746 54%, #326394 100%);
}

.gradient {
  padding-bottom: 84px;
  margin-bottom: -36px;
}
.gradient::before {
  background: radial-gradient(circle at 94.3538411458% 89.6158854167%, #214263 0%, 20.5%, rgba(33, 66, 99, 0) 41%), radial-gradient(circle at 6.50390625% 88.037109375%, rgba(81, 91, 116, 0.99) 0%, 25%, rgba(81, 91, 116, 0) 50%), radial-gradient(circle at 6.1653645833% 12.6171875%, #326394 0%, 42%, rgba(50, 99, 148, 0) 70%), radial-gradient(circle at 93.6865234375% 11.42578125%, #5CD0C9 0%, 42%, rgba(92, 208, 201, 0) 70%), radial-gradient(circle at 48.9013671875% 49.521484375%, #FFFFFF 0%, 100%, rgba(255, 255, 255, 0) 100%);
}
@media (min-width: 768px) {
  .gradient {
    padding-bottom: 123px;
    margin-bottom: -75px;
  }
}
@media (min-width: 992px) {
  .gradient {
    padding-bottom: 236px;
    margin-bottom: -140px;
  }
}
.gradient.first {
  padding-bottom: 212px;
}
@media (min-width: 768px) {
  .gradient.first {
    padding-bottom: 251px;
  }
}
@media (min-width: 992px) {
  .gradient.first {
    padding-bottom: 460px;
  }
}

.hero.container {
  padding: 110px 20px 48px;
}
@media (min-width: 992px) {
  .hero.container {
    padding: 188px 20px 96px;
  }
}
@media (min-width: 992px) {
  .hero h1,
  .hero .mob-h1-style {
    font-size: 3.875rem;
    line-height: 1.1935483871;
    margin-bottom: 1rem;
  }
}
@media (min-width: 1200px) {
  .hero h1,
  .hero .mob-h1-style {
    font-size: 5rem;
    line-height: 1.075;
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 992px) {
  .hero h1 {
    width: 60%;
  }
}
.hero p {
  max-width: 80%;
}

.content-customers {
  padding: 0;
}
.content-customers .col-100 {
  align-items: center;
  width: 100%;
}
.content-customers .col-100 .img-box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.content-customers .col-100 .img-box img {
  margin: 12px 6px;
  opacity: 0;
}
.content-customers .col-100 .img-box img:nth-child(1) {
  width: 68px;
  transition: opacity 1.5s ease 0.25s;
}
.content-customers .col-100 .img-box img:nth-child(2) {
  width: 240px;
  transition: opacity 1.5s ease 0.75s;
}
.content-customers .col-100 .img-box img:nth-child(3) {
  width: 142px;
  transition: opacity 1.5s ease 1.25s;
}
.content-customers .col-100 .img-box img:nth-child(4) {
  width: 151px;
  transition: opacity 1.5s ease 1.75s;
}
@media (min-width: 576px) {
  .content-customers .col-100 .img-box img {
    margin: 12px;
  }
}
@media (min-width: 768px) {
  .content-customers .col-100 .img-box img {
    margin: 12px 24px;
  }
}
.content-customers .col-100 .img-box.move img {
  opacity: 1;
}

.content-family .col-100 .img-box {
  display: flex;
  justify-content: center;
  height: 100px;
}
@media (min-width: 992px) {
  .content-family .col-100 .img-box {
    height: 230px;
  }
}
.content-family .col-100 .img-box img {
  position: absolute;
  width: 0px;
  transition: width 0.75s ease-in;
}
.content-family .col-100 .img-box.move img {
  width: 289px;
}
@media (min-width: 992px) {
  .content-family .col-100 .img-box.move img {
    width: 667px;
  }
}

.divider3 {
  position: relative;
}
.divider3 svg {
  position: relative;
  display: block;
  width: 100%;
  height: 36px;
}
@media (min-width: 768px) {
  .divider3 svg {
    height: 76px;
  }
}
@media (min-width: 992px) {
  .divider3 svg {
    height: 140px;
  }
}
.divider3.gradient-to-dark-blue svg {
  fill: #1B2746;
}
.divider3.gradient-to-light-blue svg {
  fill: #326394;
}
.divider3.gradient-to-midnight-blue svg {
  fill: #13172B;
}
.divider3.gradient-to-ultra-light-blue svg {
  fill: #F1F7FA;
}
.divider3.dark-blue-to-ultra-light-blue {
  background: #F1F7FA;
}
.divider3.dark-blue-to-ultra-light-blue svg {
  fill: #1B2746;
}
.divider3.ultra-light-blue-to-dark-blue {
  background: #1B2746;
}
.divider3.ultra-light-blue-to-dark-blue svg {
  fill: #F1F7FA;
}
.divider3.ultra-light-blue-to-midnight-blue {
  background: #F1F7FA;
}
.divider3.ultra-light-blue-to-midnight-blue svg {
  fill: #13172B;
}
.divider3.dark-blue-to-light-blue {
  background: #326394;
}
.divider3.dark-blue-to-light-blue svg {
  fill: #1B2746;
}
.divider3.light-blue-to-dark-blue {
  background: #1B2746;
}
.divider3.light-blue-to-dark-blue svg {
  fill: #326394;
}

/*
.divider {
  position: relative;
  height: 82px;
  background: url("data:image/svg+xml,%3Csvg id='comp-kn4o4tk03-top' preserveAspectRatio='none' data-bbox='0 100 1920 200' viewBox='0 100 1920 200' height='100%25' width='100%25' xmlns='http://www.w3.org/2000/svg' data-type='shape'%3E%3Cdefs%3E%3Cstyle%3E%23comp-kn4o4tk03-top %7B fill: %23326394; %7D%3C/style%3E%3C/defs%3E%3Cg%3E%3Cpath d='M1920 300v-4.067c-455.162 0-690.876-51.203-1082.65-129.288C490.044 97.423 0 100.013 0 100.013V300h1920z'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 100% 100%;

  @include mq(desktop-up) {
    height: 165px;
  }

  &.light-to-dark {
    transform: scale(1, -1);
  }

  &.gradient-to-dark {
    background: url("data:image/svg+xml,%3Csvg id='comp-kn4o4tk03-top' preserveAspectRatio='none' data-bbox='0 100 1920 200' viewBox='0 100 1920 200' height='100%25' width='100%25' xmlns='http://www.w3.org/2000/svg' data-type='shape'%3E%3Cdefs%3E%3Cstyle%3E%23comp-kn4o4tk03-top %7B fill: %231B2746; %7D%3C/style%3E%3C/defs%3E%3Cg%3E%3Cpath d='M1920 300v-4.067c-455.162 0-690.876-51.203-1082.65-129.288C490.044 97.423 0 100.013 0 100.013V300h1920z'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100% 100%;
    transform: scale(-1, 1);
  }
}


.divider2 {
  height: 36px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transform: scale(1, 1);

  @include mq(tablet-m-up) {
    height: 75px;
  }

  @include mq(desktop-up) {
    height: 140px;
  }

  &.dark-blue-to-ultra-light-blue {
    background-image: url("../img/wave.svg");
    background-color: $friends-ultra-light-blue;
  }

  &.ultra-light-blue-to-dark-blue {
    background-image: url("../img/wave-ultra-light-blue.svg");
    background-color: $mob-dark-blue;
  }

  &.gradient-to-dark-blue {
    background-image: url("../img/wave-reverse.svg");
  }
}
*/
.php-email-form {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 852px;
}
.php-email-form h2, .php-email-form .subheadline {
  align-self: center;
}
.php-email-form .nav-l-style {
  padding-top: 24px;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .php-email-form .nav-l-style {
    text-transform: uppercase;
  }
}
@media (min-width: 992px) {
  .php-email-form .nav-l-style {
    padding-top: 32px;
    margin-bottom: 12px;
  }
}
.php-email-form .button {
  align-self: flex-end;
}

input,
textarea {
  position: relative;
  width: 100%;
  height: 48px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  border: none;
  border-radius: 6px;
  padding-left: 16px;
  margin-bottom: 16px;
}
@media (min-width: 992px) {
  input,
  textarea {
    height: 64px;
  }
}
input + .error,
textarea + .error {
  position: relative;
  color: red;
  margin-bottom: 24px;
  display: none;
}

textarea {
  height: 176px;
  padding-top: 20px;
}

#main-contact {
  height: auto;
}

.news {
  span:has(img) {
    display: flex;
  }
  p:has(img) {
    display: flex;
  }
}

.news .container.first {
  padding: 96px 20px 48px;
}
@media (min-width: 992px) {
  .news .container.first {
    padding: 176px 20px 188px;
  }
}

.news-pagination__group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 991px) {
  .news-pagination__button {
    display: none;
  }
}
.news-pagination__button {
  position: relative;
  min-width: 78px;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  padding: 4px 24px;
  border-radius: 14px;
  background: #9CC1E2;
  margin: 0 6px;
  cursor: pointer;
}
@media (min-width: 992px) {
  .news-pagination__button {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media (min-width: 992px) {
  .news-pagination__button {
    padding: 8px 32px;
    border-radius: 20px;
  }
}
.news-pagination__button.selected {
  background: #1B2746;
  color: #ffffff;
}
@media (hover: hover) {
  .news-pagination__button:hover {
    background: #1B2746;
    color: #ffffff;
  }
}

footer {
  position: relative;
  background: #13172B;
}
footer .footer {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 1435px;
  padding: 48px 0;
  margin: 0 auto;
}
@media (min-width: 992px) {
  footer .footer {
    flex-direction: row;
    justify-content: space-between;
  }
}
footer .footer .family,
footer .footer .menu,
footer .footer .contact {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 20px 32px;
}
@media (min-width: 992px) {
  footer .footer .family,
  footer .footer .menu,
  footer .footer .contact {
    align-items: flex-start;
    text-align: left;
  }
}
footer .footer .family .subheadline,
footer .footer .menu .subheadline,
footer .footer .contact .subheadline {
  padding: 12px 0;
}
footer .footer .family .nav-menu .nav-items .nav-item .nav-link,
footer .footer .menu .nav-menu .nav-items .nav-item .nav-link,
footer .footer .contact .nav-menu .nav-items .nav-item .nav-link {
  position: relative;
  display: inline-block;
  text-decoration: none;
  padding: 2px;
}
@media (min-width: 992px) {
  footer .footer .family .nav-menu .nav-items .nav-item .nav-link,
  footer .footer .menu .nav-menu .nav-items .nav-item .nav-link,
  footer .footer .contact .nav-menu .nav-items .nav-item .nav-link {
    padding: 12px 0;
  }
}
@media (hover: hover) {
  footer .footer .family .nav-menu .nav-items .nav-item .nav-link:hover,
  footer .footer .menu .nav-menu .nav-items .nav-item .nav-link:hover,
  footer .footer .contact .nav-menu .nav-items .nav-item .nav-link:hover {
    color: #5cd0c9;
  }
}
footer .footer .family .nav-menu .nav-items .nav-item .nav-link.nav-link--current,
footer .footer .menu .nav-menu .nav-items .nav-item .nav-link.nav-link--current,
footer .footer .contact .nav-menu .nav-items .nav-item .nav-link.nav-link--current {
  font-weight: 600;
}
footer .footer .family .nav-menu .nav-items span,
footer .footer .menu .nav-menu .nav-items span,
footer .footer .contact .nav-menu .nav-items span {
  position: relative;
  display: inline-block;
  padding: 2px 0;
}
footer .footer .family .nav-menu .nav-items span span,
footer .footer .menu .nav-menu .nav-items span span,
footer .footer .contact .nav-menu .nav-items span span {
  display: none;
}
@media (min-width: 992px) {
  footer .footer .family .nav-menu .nav-items span span,
  footer .footer .menu .nav-menu .nav-items span span,
  footer .footer .contact .nav-menu .nav-items span span {
    display: inline;
    padding: 0;
  }
}
@media (min-width: 992px) {
  footer .footer .family .nav-menu .nav-items span,
  footer .footer .menu .nav-menu .nav-items span,
  footer .footer .contact .nav-menu .nav-items span {
    padding: 12px 0;
  }
}
footer .footer .family .nav-menu .nav-items .address,
footer .footer .menu .nav-menu .nav-items .address,
footer .footer .contact .nav-menu .nav-items .address {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}
@media (min-width: 992px) {
  footer .footer .family .nav-menu .nav-items .address,
  footer .footer .menu .nav-menu .nav-items .address,
  footer .footer .contact .nav-menu .nav-items .address {
    flex-direction: row;
    margin-bottom: 0;
  }
  footer .footer .family .nav-menu .nav-items .address span,
  footer .footer .menu .nav-menu .nav-items .address span,
  footer .footer .contact .nav-menu .nav-items .address span {
    padding: 12px 0;
    white-space: nowrap;
  }
}
footer .footer .family .nav-menu.socials,
footer .footer .menu .nav-menu.socials,
footer .footer .contact .nav-menu.socials {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  footer .footer .family .nav-menu.socials,
  footer .footer .menu .nav-menu.socials,
  footer .footer .contact .nav-menu.socials {
    align-items: flex-start;
    margin-left: -12px;
  }
}
footer .footer .family .nav-menu.socials .nav-items,
footer .footer .menu .nav-menu.socials .nav-items,
footer .footer .contact .nav-menu.socials .nav-items {
  position: relative;
  display: flex;
}
footer .footer .family .nav-menu.socials .nav-items .nav-item .nav-link,
footer .footer .menu .nav-menu.socials .nav-items .nav-item .nav-link,
footer .footer .contact .nav-menu.socials .nav-items .nav-item .nav-link {
  padding: 12px;
}
footer .footer .family {
  flex-basis: 55%;
  justify-content: space-between;
}
footer .footer .family .brand {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}
footer .footer .family .brand img {
  width: 84px;
}
@media (min-width: 992px) {
  footer .footer .family .brand img {
    width: 120px;
  }
}
footer .footer .family p {
  max-width: 500px;
  margin-bottom: 32px;
}
footer .footer .family .nav-items {
  position: relative;
  width: 330px;
  display: flex;
  justify-content: space-between;
}
@media (min-width: 992px) {
  footer .footer .family .nav-items {
    width: 470px;
  }
}
footer .footer .family .nav-items img {
  width: 84px;
}
@media (min-width: 992px) {
  footer .footer .family .nav-items img {
    width: 120px;
  }
}
footer .footer .menu {
  display: none;
}
@media (min-width: 992px) {
  footer .footer .menu {
    display: block;
  }
}

/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden; /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-skinned {
  padding: 48px 0;
}
@media (min-width: 992px) {
  .owl-skinned {
    max-width: 1435px;
    margin: 0 auto;
    padding: 96px 0;
  }
  .owl-skinned .owl-stage {
    display: flex;
    flex-wrap: wrap;
  }
}
.owl-skinned .owl-item {
  padding: 0 0 0 20px;
}
@media (min-width: 992px) {
  .owl-skinned .owl-item {
    flex-basis: 33.3333%;
    padding: 0 20px;
  }
}
.owl-skinned .owl-item .subheadline {
  margin-bottom: 0.625rem;
}
.owl-skinned .owl-item .nav-l-style {
  line-height: 1.25rem;
}
@media (min-width: 992px) {
  .owl-skinned .owl-item .nav-l-style {
    line-height: 1.4705882353;
  }
}
@media (min-width: 992px) {
  .owl-skinned .owl-item p {
    margin-bottom: 4rem;
  }
}
.owl-skinned .owl-dots .owl-dot.active span, .owl-skinned .owl-dots .owl-dot:hover span {
  width: 39px;
}
.owl-skinned.w-50 {
  padding: 0 20px;
}
@media (min-width: 992px) {
  .owl-skinned.w-50 .owl-item {
    flex-basis: 50%;
    padding: 0 5%;
  }
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  background: #D0E2F1;
  display: block;
  -webkit-backface-visibility: visible;
  transition: width 0.5s, opacity 200ms ease;
  border-radius: 6px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #9CC1E2;
}

a {
  color: #ffffff;
}
a:visited {
  color: #ffffff;
}

.ultra-light-blue a {
  color: #13172B;
}
.ultra-light-blue a:visited {
  color: #13172B;
}

p {
  font-weight: 300;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  margin-bottom: 0.75rem;
}
@media (min-width: 992px) {
  p {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media (min-width: 768px) {
  p {
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  p {
    margin-bottom: 1.5rem;
  }
}
p strong {
  font-weight: 600;
}
p.copy-l-style {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  p.copy-l-style {
    margin-bottom: 3rem;
  }
}

/* subheadlines */
.subheadline {
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 2.3333333333;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .subheadline {
    font-size: 1.125rem;
    line-height: 1.5555555556;
  }
}

/* Headings */
h1,
.mob-h1-style {
  font-weight: 300;
  font-size: 2.125rem;
  line-height: 1.2058823529;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  h1,
  .mob-h1-style {
    font-size: 3.875rem;
    line-height: 1.1935483871;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  h1,
  .mob-h1-style {
    font-size: 5rem;
    line-height: 1.075;
    margin-bottom: 1.5rem;
  }
}

h2,
.mob-h2-style {
  font-weight: 300;
  font-size: 1.375rem;
  line-height: 1.4545454545;
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  h2,
  .mob-h2-style {
    font-size: 2.125rem;
    line-height: 1.2058823529;
    margin-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  h2,
  .mob-h2-style {
    font-size: 3.4375rem;
    line-height: 1.3818181818;
    margin-bottom: 1.5rem;
  }
}

h3,
.mob-h3-style {
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media (min-width: 992px) {
  h3,
  .mob-h3-style {
    font-size: 2.125rem;
    line-height: 1.2058823529;
  }
}

h4,
.mob-h4-style {
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 2.2777777778;
}
@media (min-width: 992px) {
  h4,
  .mob-h4-style {
    font-size: 1.375rem;
    line-height: 1.4545454545;
  }
}

.contact-element {
  text-decoration: none;
}

.contact-element:hover {
  color: #5cd0c9;
}

.nav-l-style {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 2.5;
  margin-bottom: 0.75rem;
}
@media (min-width: 992px) {
  .nav-l-style {
    font-size: 2.125rem;
    line-height: 1.4705882353;
    margin-bottom: 1rem;
  }
}

.copy-m-semibold-style {
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 1.6666666667;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
@media (min-width: 992px) {
  .copy-m-semibold-style {
    font-size: 1rem;
    line-height: 1.5;
  }
}
@media (min-width: 768px) {
  .copy-m-semibold-style {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 992px) {
  .copy-m-semibold-style {
    margin-bottom: 1rem;
  }
}

.copy-l-style {
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.375;
}
@media (min-width: 992px) {
  .copy-l-style {
    font-size: 1.375rem;
    line-height: 1.5909090909;
  }
}

.custom-margin {
  margin: 2px;
}

/*# sourceMappingURL=style.css.map */
