/* ------------------------------------------------------
                    general styles
------------------------------------------------------ */
@import url("//hello.myfonts.net/count/3b5cec");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

body {
  padding-top: 140px;
}

.container-min {
  max-width: 1080px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.grecaptcha-badge {
  visibility: hidden;
}

@font-face {
  font-family: "UnicodProLight";
  src: url("../../fonts/UnicodProLight/font.woff") format("woff");
}
@font-face {
  font-family: "UnicodProMedium";
  src: url("../../fonts/UnicodProMedium/font.woff") format("woff");
}
@font-face {
  font-family: "UnicodProRegular";
  src: url("../../fonts/UnicodProRegular/font.woff") format("woff");
}
article,
body#tinymce {
  font-size: 21px;
  line-height: 40px;
  font-family: proxima-nova, sans-serif;
  font-weight: 300;
}
article ul,
body#tinymce ul {
  padding-left: 20px;
}

h1 {
  font-size: 45px;
  line-height: 45px;
  font-family: "UnicodProLight";
  font-weight: 300;
}

h2 {
  font-size: 44px;
  line-height: 45px;
  font-family: "UnicodProLight";
  font-weight: 300;
}

h3 {
  font-size: 30px;
  line-height: 40px;
  font-family: "UnicodProLight";
}

a {
  color: inherit;
  text-decoration: none;
}

.btn {
  padding: 17px 40px 15px 40px;
  font-size: 25px;
  border-radius: 50px;
  font-family: "UnicodProRegular";
  transition: 0.2s ease;
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-right: -20px;
  display: none;
  z-index: 4;
  position: fixed;
  right: 10px;
  top: 30px;
  width: 70px;
  height: 70px;
}

.hamRotate.active {
  transform: rotate(45deg);
}

.hamRotate180.active {
  transform: rotate(180deg);
}

.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: #12407F;
  stroke-width: 5;
  stroke-linecap: round;
  transition: 0.2s;
}

.line-white {
  stroke: #ffffff;
}

.ham8 .top {
  stroke-dasharray: 40 160;
}

.ham8 .middle {
  stroke-dasharray: 40 142;
  transform-origin: 50%;
  transition: transform 400ms;
}

.ham8 .bottom {
  stroke-dasharray: 40 85;
  transform-origin: 50%;
  transition: transform 400ms, stroke-dashoffset 400ms;
}

.ham8.active .top {
  stroke-dashoffset: -64px;
}

.ham8.active .middle {
  transform: rotate(90deg);
}

.ham8.active .bottom {
  stroke-dashoffset: -64px;
}

.ham8.active {
  position: fixed;
  right: 10px;
}

.mobile-menu-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0px;
  top: 0px;
  display: none;
  justify-content: flex-start;
  align-items: center;
  z-index: 3;
  background-color: #12407F;
  padding: 10px;
  text-align: center;
}
.mobile-menu-wrapper .menu {
  list-style: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  font-size: 22px;
  width: 100%;
}
.mobile-menu-wrapper .menu .menu-item-has-children:after {
  content: "v";
  padding: 5px;
  border-radius: 5px;
  position: absolute;
  right: 10px;
  top: 0px;
  height: 23px;
  color: #ffffff;
}
.mobile-menu-wrapper .menu .menu-item {
  font-family: "UnicodProLight";
  margin-bottom: 20px;
  position: relative;
}
.mobile-menu-wrapper .menu .menu-item:last-child {
  margin-bottom: 0px;
}
.mobile-menu-wrapper .menu .menu-item a {
  color: #ffffff;
}
.mobile-menu-wrapper .menu .menu-item .sub-menu {
  list-style: none;
  padding-top: 0px;
  height: 0px;
  overflow: hidden;
  transition: 0.2s ease;
}
.mobile-menu-wrapper .menu .menu-item .sub-menu .menu-item {
  font-size: 20px;
}
.mobile-menu-wrapper .menu .menu-item:hover .sub-menu {
  padding-top: 22px;
  height: auto;
  margin-top: 0px;
  margin-bottom: 30px;
}

/* ------------------------------------------------------
                        header
------------------------------------------------------ */
header#header {
  padding-top: 40px;
  padding-bottom: 30px;
  background-color: rgb(255, 255, 255);
  transition: 0.2s ease;
  z-index: 3;
  position: fixed;
  width: 100%;
  top: 0px;
}
header#header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header#header .header-inner .logo {
  display: inline-block;
  width: auto;
  height: 70px;
}
header#header .header-inner nav {
  display: inline-block;
  height: 20px;
}
header#header .header-inner nav ul {
  list-style: none;
}
header#header .header-inner nav ul li {
  font-family: "UnicodProLight";
  font-weight: 500;
  line-height: 20px;
  font-size: 22px;
  display: inline-block;
  margin-left: 50px;
  text-transform: lowercase;
  position: relative;
  z-index: 1;
}
header#header .header-inner nav ul li a {
  color: #444444;
  text-decoration: none;
}
header#header .header-inner nav ul li .sub-menu {
  height: 0px;
  overflow: hidden;
  transition: 0.2s ease;
  padding: 0px 20px 0px 20px;
  top: 20px;
  left: -20px;
  position: absolute;
  background-color: #ffffff;
  z-index: 0;
  opacity: 0;
  min-width: 180px;
  display: flex;
  flex-direction: column;
}
header#header .header-inner nav ul li .sub-menu li {
  margin-left: 0px;
  margin-bottom: 10px;
  align-self: flex-start;
  font-size: 20px;
}
header#header .header-inner nav ul li:after {
  display: flex;
  width: 0%;
  height: 2px;
  background-color: #444444;
  content: "";
  transition: 0.2s ease;
}
header#header .header-inner nav ul li:hover .sub-menu {
  height: auto;
  padding: 20px 20px 20px 20px;
  opacity: 1;
}
header#header .header-inner nav ul li:hover:after {
  width: 100%;
}

footer {
  background-color: #ffffff;
  padding-top: 40px;
  position: relative;
}
footer .footer-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-flow: column;
  grid-gap: 20px;
  padding-top: 90px;
  padding-bottom: 90px;
  z-index: 2;
  border-top: 1px solid #36A9E0;
  position: relative;
}
footer .footer-inner .footer-item {
  color: #000000;
  font-family: "UnicodProLight";
  max-width: 300px;
}
footer .footer-inner .footer-item #menu-footer-mobiel {
  display: none;
}
footer .footer-inner .footer-item .footer-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
footer .footer-inner .footer-item img {
  display: inline-block;
  width: 200px;
  height: auto;
}
footer .footer-inner .footer-item h4 {
  color: #36A9E0;
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 10px;
}
footer .footer-inner .footer-item ul {
  list-style: none;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 30px;
}
footer .footer-inner .footer-item ul li {
  margin-bottom: 2px;
}
footer .footer-inner .footer-item ul li a:hover {
  color: #12407F;
}
footer .under-footer {
  font-family: "UnicodProLight";
  font-size: 16px;
  justify-content: center;
  display: flex;
}
footer .under-footer a {
  margin: 10px;
}
footer:before {
  background-image: url("../../images/footer-bg-one.svg");
  background-size: 100% 100%;
  background-position: 140px 150px;
  background-repeat: no-repeat;
  content: "";
  height: 100%;
  width: 370px;
  position: absolute;
  left: 0px;
  bottom: -60px;
  transform: rotate(90deg);
}
footer:after {
  background-image: url("../../images/footer-bg-two.svg");
  background-size: 100% 100%;
  background-position: 200px 0px;
  background-repeat: no-repeat;
  content: "";
  height: 100%;
  width: 400px;
  position: absolute;
  right: 0px;
  top: 0px;
}

.front-banner {
  height: 530px;
}
.front-banner .swiper-container .swiper-wrapper .swiper-slide {
  background-size: 600px 440px, cover;
  background-repeat: no-repeat;
  background-position: 700px 90px, center;
  background-blend-mode: multiply;
}
.front-banner .swiper-container .swiper-wrapper .swiper-slide .front-banner-inner {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
}
.front-banner .swiper-container .swiper-wrapper .swiper-slide .front-banner-inner .front-banner-content {
  width: 510px;
  height: 440px;
  padding: 110px 70px 30px 70px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.front-banner .swiper-container .swiper-wrapper .swiper-slide .front-banner-inner .front-banner-content h1 {
  font-family: "UnicodProLight";
  font-size: 71px;
  line-height: 68px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 5px;
}
.front-banner .swiper-container .swiper-wrapper .swiper-slide .front-banner-inner .front-banner-content span {
  font-family: proxima-nova, sans-serif;
  font-size: 29px;
  line-height: 37px;
  color: #ffffff;
  font-weight: 200;
  margin-bottom: 20px;
}
.front-banner .swiper-container .swiper-wrapper .swiper-slide .front-banner-inner .front-banner-content .btn {
  background-color: #36A9E0;
  color: #ffffff;
  align-self: flex-start;
}
.front-banner .swiper-container .swiper-wrapper .swiper-slide .front-banner-inner .front-banner-content .btn:hover {
  background-color: #ffffff;
  color: #36A9E0;
}

.page-banner-wrapper {
  height: 530px;
  margin-bottom: 45px;
}
.page-banner-wrapper .page-banner {
  background-size: 600px 440px, cover;
  background-repeat: no-repeat;
  background-position: 700px 90px, center;
  background-blend-mode: multiply;
}
.page-banner-wrapper .page-banner .page-banner-inner {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%;
  position: relative;
}
.page-banner-wrapper .page-banner .page-banner-inner .icon {
  position: absolute;
  left: 0px;
  bottom: 0px;
  background-color: #ffffff;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 160px;
  width: 100%;
  border-radius: 10px 10px 0px 0px;
  max-height: 160px;
  height: 100%;
}
.page-banner-wrapper .page-banner .page-banner-inner .icon img {
  max-height: 100px;
  max-width: 100px;
  width: 100%;
  height: 100%;
}
.page-banner-wrapper .page-banner .page-banner-inner .page-banner-content {
  width: 560px;
  height: 400px;
  padding: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  position: relative;
}
.page-banner-wrapper .page-banner .page-banner-inner .page-banner-content h1 {
  font-family: "UnicodProLight";
  font-size: 60px;
  line-height: 60px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 5px;
  text-align: center;
}
.page-banner-wrapper.is-compact {
  height: 320px;
}
.page-banner-wrapper.is-compact .page-banner {
  background-position: 700px -110px, center;
}
@media screen and (max-width: 1799px) {
  .page-banner-wrapper.is-compact .page-banner {
    background-position: 650px -110px, center;
  }
}
@media screen and (max-width: 1499px) {
  .page-banner-wrapper.is-compact .page-banner {
    background-position: 390px -110px, center;
  }
}
@media screen and (max-width: 1199px) {
  .page-banner-wrapper.is-compact .page-banner {
    background-size: 410px 510px, cover;
  }
}
@media screen and (max-width: 899px) {
  .page-banner-wrapper.is-compact .page-banner {
    background-position: 250px -110px, center;
  }
}

.home .intro {
  padding-top: 90px;
  padding-bottom: 90px;
}
.home .intro article {
  font-size: 23px;
}
.home .intro article h2 {
  margin-bottom: 50px;
  color: #12407F;
}
.home .intro .btn {
  background-color: #36A9E0;
  color: #ffffff;
  display: inline-block;
  margin-top: 50px;
}
.home .intro .btn:hover {
  background-color: #12407F;
}

.page-template-default .intro {
  padding-top: 90px;
  padding-bottom: 30px;
}
.page-template-default .intro article {
  font-size: 23px;
}
.page-template-default .intro article h1 {
  color: #12407F;
  font-weight: 200;
  margin-bottom: 25px;
}
.page-template-default .intro article h2 {
  margin-bottom: 50px;
  color: #12407F;
}
.page-template-default .intro .btn {
  background-color: #36A9E0;
  color: #ffffff;
  display: inline-block;
  margin-top: 50px;
}
.page-template-default .intro .btn:hover {
  background-color: #12407F;
}

.page-text {
  padding-top: 15px;
  padding-bottom: 30px;
}
.page-text article h1 {
  color: #12407F;
  font-weight: 200;
  margin-bottom: 25px;
}
.page-text article p:empty {
  margin-bottom: 10px;
}
.page-text article:last-child {
  margin-bottom: 0px;
}
.page-text article p {
  margin-bottom: 30px;
}
.page-text article p:last-child {
  margin-bottom: 0px;
}

.small-text {
  max-width: 800px;
  padding-top: 70px;
  padding-bottom: 70px;
}
.small-text article h2 {
  margin-bottom: 20px;
  color: #36A9E0;
}
.small-text article h3 {
  color: #36A9E0;
}

.front-icons {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 20px;
  padding-bottom: 120px;
}
.front-icons .icon {
  display: flex;
  flex-direction: column;
  max-width: 130px;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.front-icons .icon:hover .icon-image img {
  transform: scale(1.1);
}
.front-icons .icon .icon-image {
  height: 105px;
  width: auto;
}
.front-icons .icon .icon-image img {
  max-width: 130px;
  max-height: 105px;
  width: 100%;
  height: 100%;
  transition: 0.2s;
}
.front-icons .icon span {
  margin-top: 30px;
  text-align: center;
  color: #36A9E0;
  font-family: "UnicodProLight";
  font-size: 40px;
}

.services-wrapper {
  text-align: center;
  position: relative;
  padding-top: 90px;
  padding-bottom: 130px;
}
.services-wrapper h3 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 70px;
  font-family: "UnicodProLight";
}
.services-wrapper .services-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 80px;
}
.services-wrapper .services-inner article {
  text-align: right;
  color: #ffffff;
}
.services-wrapper .services-inner ul {
  text-align: left;
  list-style: none;
}
.services-wrapper .services-inner ul li {
  font-family: proxima-nova, sans-serif;
  font-size: 21px;
  font-weight: 600;
  line-height: 45px;
  color: #ffffff;
  text-transform: uppercase;
  padding-left: 20px;
  position: relative;
}
.services-wrapper .services-inner ul li:before {
  content: "+";
  color: #58CBBB;
  margin-right: 10px;
  left: 0px;
  position: absolute;
}
.services-wrapper .btn {
  background-color: #58CBBB;
  color: #ffffff;
  display: inline-block;
  transform: translateY(100%);
}
.services-wrapper .btn:hover {
  background-color: #ffffff;
  color: #58CBBB;
}
.services-wrapper:before {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgb(18, 64, 127) 0%, rgb(54, 169, 224) 100%);
  content: "";
  z-index: -1;
  opacity: 0.8;
  box-sizing: border-box;
  border-bottom: 100px solid rgba(255, 255, 255, 0.8);
}
.services-wrapper .bg-image {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.posts-wrapper {
  padding-top: 70px;
  padding-bottom: 30px;
}
.posts-wrapper .title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.posts-wrapper .title-row h3 {
  color: #12407F;
  font-weight: 200;
  font-family: "UnicodProLight";
}
.posts-wrapper .title-row .btn {
  border: 1px solid #12407F;
  color: #12407F;
}
.posts-wrapper .title-row .btn:hover {
  background-color: #12407F;
  color: #ffffff;
}
.posts-wrapper .posts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
.posts-wrapper .posts-grid .post {
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.posts-wrapper .posts-grid .post .post-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  transition: 0.2s ease;
  opacity: 0;
  padding: 70px 40px 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.posts-wrapper .posts-grid .post .post-inner h3 {
  color: #ffffff;
  z-index: 2;
  position: relative;
  font-family: "UnicodProLight";
  transition: 0.2s ease;
}
.posts-wrapper .posts-grid .post .post-inner span {
  font-size: 18px;
  color: #ffffff;
  font-family: proxima-nova, sans-serif;
  position: relative;
  z-index: 2;
  font-weight: 600;
  text-transform: uppercase;
}
.posts-wrapper .posts-grid .post .post-inner span:last-child {
  font-weight: 300;
  text-decoration: underline;
}
.posts-wrapper .posts-grid .post .post-inner:before {
  content: "";
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  background-color: #12407F;
  position: absolute;
  opacity: 0.8;
  z-index: 1;
  transition: 0.2s ease;
}
.posts-wrapper .posts-grid .post:hover .post-inner {
  opacity: 1;
}

.cta-section {
  background-color: #F3FAFE;
  padding: 40px 60px 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 80px;
  margin-bottom: 80px;
  border-radius: 5px;
}
.cta-section h3 {
  font-family: "UnicodProLight";
  font-weight: 200;
  max-width: 70%;
}
.cta-section .btn {
  background-color: #36A9E0;
  color: #ffffff;
  min-width: 230px;
  max-width: 30%;
  text-align: center;
}
.cta-section .btn:hover {
  background-color: #12407F;
}

.buttons-wrapper {
  padding-top: 40px;
  padding-bottom: 70px;
}
.buttons-wrapper .btn {
  background-color: #58CBBB;
  color: #ffffff;
  display: inline-block;
  margin-right: 20px;
}
.buttons-wrapper .btn:last-child {
  margin-right: 0px;
}

.image-section {
  margin-top: 20px;
  margin-bottom: 20px;
}
.image-section img {
  width: 100%;
  height: auto;
}
.image-section .subtext {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: 30px;
}
.image-section .subtext span {
  max-width: 500px;
  font-size: 18px;
  font-family: proxima-nova, sans-serif;
  font-weight: 300;
  line-height: 30px;
  display: inline-block;
  color: #12407F;
}

.employees-section {
  background-color: #F8FCFE;
  padding-top: 96px;
  padding-bottom: 96px;
}
.employees-section h2 {
  color: #12407F;
  margin-bottom: 20px;
}
.employees-section .employees-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 30px;
}
.employees-section .employees-inner .employee {
  height: 380px;
  position: relative;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.employees-section .employees-inner .employee .employee-info {
  background-color: rgba(18, 64, 127, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: column;
  opacity: 0;
  padding: 40px;
  transition: 0.2s ease;
}
.employees-section .employees-inner .employee .employee-info .name {
  color: #ffffff;
  font-size: 30px;
  font-family: "UnicodProRegular";
  line-height: 30px;
}
.employees-section .employees-inner .employee .employee-info .function {
  color: #ffffff;
  font-size: 18px;
  font-family: proxima-nova, sans-serif;
  font-weight: 200;
  line-height: 30px;
}
.employees-section .employees-inner .employee .employee-info .icons {
  margin-top: 15px;
}
.employees-section .employees-inner .employee .employee-info .icons img {
  margin-right: 20px;
}
.employees-section .employees-inner .employee .employee-info .icons a[href=""], .employees-section .employees-inner .employee .employee-info .icons a[href="mailto:"], .employees-section .employees-inner .employee .employee-info .icons a[href="tel:"] {
  display: none;
}
.employees-section .employees-inner .employee:hover .employee-info {
  opacity: 1;
}

.slider-wrapper {
  padding-top: 90px;
  padding-bottom: 90px;
}
.slider-wrapper .swiper-container {
  height: 560px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.slider-wrapper .swiper-container .swiper-wrapper {
  height: 560px;
}
.slider-wrapper .swiper-container .swiper-wrapper .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 560px;
}
.slider-wrapper .swiper-container .swiper-pagination {
  position: absolute;
  left: 80px;
  bottom: 30px;
  width: auto;
}
.slider-wrapper .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 5px;
  opacity: 1;
}
.slider-wrapper .swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #36A9E0;
}

.contact-section {
  padding-top: 90px;
  padding-bottom: 90px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contact-section .form-block {
  max-width: 640px;
}
.contact-section .form-block .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  padding: 15px 30px 15px 30px;
}
.contact-section .form-block .gform_wrapper form {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding-top: 33px;
  padding-bottom: 33px;
  font-family: proxima-nova, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #444444;
}
.contact-section .form-block .gform_wrapper form .gform_body ul li {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  padding-right: 20px;
  font-size: 20px;
  font-weight: 400;
}
.contact-section .form-block .gform_wrapper form .gform_body ul li:nth-child(7) {
  width: 50%;
}
.contact-section .form-block .gform_wrapper form .gform_body ul li:nth-child(8) {
  width: 50%;
}
.contact-section .form-block .gform_wrapper form .gform_body ul li .ginput_container {
  margin-top: 0px;
}
.contact-section .form-block .gform_wrapper form .gform_body ul li .ginput_container input {
  border: none;
  border-radius: 40px;
  margin-top: 0px;
  outline: none;
  font-family: proxima-nova, sans-serif;
  width: 100%;
  font-size: 22px;
  font-weight: 400;
  background-color: #F4F4F4;
}
.contact-section .form-block .gform_wrapper form .gform_body ul li .ginput_container input::placeholder {
  color: #444444;
}
.contact-section .form-block .gform_wrapper form .gform_body ul li .ginput_container textarea {
  border: none;
  border-radius: 40px;
  padding: 15px 30px 15px 30px;
  outline: none;
  font-family: proxima-nova, sans-serif;
  width: 100%;
  font-size: 22px;
  font-weight: 400;
  background-color: #F4F4F4;
  resize: none;
}
.contact-section .form-block .gform_wrapper form .gform_body ul li .ginput_container textarea::placeholder {
  color: #444444;
}
.contact-section .form-block .gform_wrapper form .gform_body ul li .ginput_container_consent {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.contact-section .form-block .gform_wrapper form .gform_body ul li .ginput_container_consent .gfield_required {
  display: none;
}
.contact-section .form-block .gform_wrapper form .gform_body ul li .ginput_container_consent input {
  max-width: 40px;
  width: 100%;
  height: 40px;
  -webkit-appearance: none;
  position: relative;
  padding: 0px;
  margin-top: 0px;
  background-color: inherit;
  border-radius: 50px;
}
.contact-section .form-block .gform_wrapper form .gform_body ul li .ginput_container_consent input:before {
  width: 40px;
  height: 40px;
  background-color: #F4F4F4;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50px;
}
.contact-section .form-block .gform_wrapper form .gform_body ul li .ginput_container_consent input:after {
  width: 26px;
  height: 26px;
  content: "";
  text-align: center;
  line-height: 20px;
  background-color: #36A9E0;
  position: absolute;
  top: 6.5px;
  left: 7.5px;
  opacity: 0;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50px;
}
.contact-section .form-block .gform_wrapper form .gform_body ul li .ginput_container_consent input:checked:after {
  opacity: 1;
}
.contact-section .form-block .gform_wrapper form .gform_body ul li label {
  margin-top: 0px;
  display: inline-block;
  margin-left: 15px;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}
.contact-section .form-block .gform_wrapper form .gform_button {
  font-family: proxima-nova, sans-serif;
  border-radius: 40px;
  padding: 15px 30px 15px 30px;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  color: #ffffff;
  background-color: #36A9E0;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  min-width: 200px;
}
.contact-section .form-block .gform_wrapper form .gform_button:hover {
  background-color: #12407F;
}
.contact-section .info-block {
  display: flex;
  justify-content: flex-end;
  max-width: 490px;
  position: relative;
}
.contact-section .info-block .info-card {
  background-color: #F3FAFE;
  padding: 50px;
  border-radius: 20px;
  max-width: 490px;
  align-self: flex-start;
}
.contact-section .info-block .info-card h4 {
  font-size: 30px;
  font-family: "UnicodProLight";
  margin-bottom: 20px;
}
.contact-section .info-block .info-card img {
  width: 310px;
  height: auto;
}
.contact-section .info-block .info-card .locations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
  margin-top: 30px;
  margin-bottom: 40px;
}
.contact-section .info-block .info-card .locations .location {
  display: inline-block;
  font-family: proxima-nova, sans-serif;
  line-height: 35px;
  font-weight: 400;
  font-size: 18px;
  margin-left: 10px;
}
.contact-section .info-block .info-card .btn {
  background-color: #36A9E0;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  font-family: proxima-nova, sans-serif;
  font-weight: 500;
  max-width: 280px;
  width: 100%;
  text-align: center;
}
.contact-section .info-block .info-card .btn:hover {
  background-color: #12407F;
}

.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  padding: 15px 30px 15px 30px;
}
.gform_wrapper form {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding-top: 33px;
  padding-bottom: 33px;
  margin: inherit !important;
  width: 700px;
  font-family: proxima-nova, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #444444;
}
.gform_wrapper form .gform_body ul li {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  padding-right: 20px;
  font-size: 20px;
  font-weight: 400;
}
.gform_wrapper form .gform_body ul li:nth-child(7) {
  width: 50%;
}
.gform_wrapper form .gform_body ul li:nth-child(8) {
  width: 50%;
}
.gform_wrapper form .gform_body ul li .ginput_container {
  margin-top: 0px;
}
.gform_wrapper form .gform_body ul li .ginput_container input {
  border: none;
  border-radius: 40px;
  padding: 15px 30px 15px 30px !important;
  margin-top: 0px;
  outline: none;
  font-family: proxima-nova, sans-serif;
  width: 100%;
  font-size: 22px;
  font-weight: 400;
  background-color: #F4F4F4;
}
.gform_wrapper form .gform_body ul li .ginput_container input::placeholder {
  color: #444444;
}
.gform_wrapper form .gform_body ul li .ginput_container textarea {
  border: none;
  border-radius: 40px;
  padding: 15px 30px 15px 30px !important;
  outline: none;
  font-family: proxima-nova, sans-serif;
  width: 100%;
  font-size: 22px;
  font-weight: 400;
  background-color: #F4F4F4;
  resize: none;
}
.gform_wrapper form .gform_body ul li .ginput_container textarea::placeholder {
  color: #444444;
}
.gform_wrapper form .gform_body ul li .ginput_container_consent {
  display: flex;
  align-items: center;
}
.gform_wrapper form .gform_body ul li .ginput_container_consent .gfield_required {
  display: none;
}
.gform_wrapper form .gform_body ul li .ginput_container_consent input {
  max-width: 40px;
  width: 100%;
  height: 40px;
  -webkit-appearance: none;
  position: relative;
  padding: 0px;
  margin-top: 0px;
  background-color: inherit;
  border-radius: 50px;
}
.gform_wrapper form .gform_body ul li .ginput_container_consent input:before {
  width: 40px;
  height: 40px;
  background-color: #F4F4F4;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  border-radius: 50px;
}
.gform_wrapper form .gform_body ul li .ginput_container_consent input:after {
  width: 26px;
  height: 26px;
  content: "";
  text-align: center;
  line-height: 20px;
  background-color: #36A9E0;
  position: absolute;
  top: 6.5px;
  left: 7.5px;
  opacity: 0;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50px;
}
.gform_wrapper form .gform_body ul li .ginput_container_consent input:checked:after {
  opacity: 1;
}
.gform_wrapper form .gform_body ul li label {
  margin-top: 0px;
  display: inline-block;
  margin-left: 15px;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}
.gform_wrapper form .gform_button {
  font-family: proxima-nova, sans-serif;
  border-radius: 40px;
  padding: 15px 30px 15px 30px;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  color: #ffffff;
  background-color: #36A9E0;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  min-width: 200px;
}
.gform_wrapper form .gform_button:hover {
  background-color: #12407F;
}

.yith-ywraq-mail-form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.yith-ywraq-mail-form-wrapper form .form-row {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  padding: 0px;
  margin: inherit !important;
  width: 700px;
  font-family: proxima-nova, sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #444444;
}
.yith-ywraq-mail-form-wrapper form .form-row input, .yith-ywraq-mail-form-wrapper form .form-row textarea {
  border: none;
  border-radius: 40px;
  padding: 15px 30px 15px 30px !important;
  margin-top: 0px;
  outline: none;
  font-family: proxima-nova, sans-serif;
  width: 100%;
  resize: none;
  font-size: 22px;
  font-weight: 400;
  background-color: #F4F4F4;
}
.yith-ywraq-mail-form-wrapper form .form-row input::placeholder, .yith-ywraq-mail-form-wrapper form .form-row textarea::placeholder {
  color: #444444;
}
.yith-ywraq-mail-form-wrapper form .form-row input[type=submit] {
  font-family: proxima-nova, sans-serif;
  border-radius: 40px;
  padding: 15px 30px 15px 30px;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 500;
  color: #ffffff;
  background-color: #36A9E0;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  min-width: 200px;
}
.yith-ywraq-mail-form-wrapper form .form-row input[type=submit]:hover {
  background-color: #12407F;
}

.text-logo-section {
  display: flex;
  justify-content: space-between;
  padding-top: 45px;
  padding-bottom: 45px;
}
.text-logo-section article {
  max-width: 800px;
}
.text-logo-section img {
  max-width: 200px;
  margin-top: 90px;
}

.text-text-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 80px;
  padding-top: 45px;
  padding-bottom: 45px;
}
.text-text-section article {
  padding: 40px 40px 40px 0px;
}
.text-text-section article:last-child {
  padding: 40px;
  background-color: #F2F7FA;
}

.quote {
  text-align: center;
  padding-top: 90px;
  padding-bottom: 90px;
}
.quote p {
  font-size: 35px;
  line-height: 50px;
  color: #000000;
  font-family: proxima-nova, sans-serif;
  font-weight: 200;
  font-style: italic;
  margin-bottom: 50px;
}
.quote span {
  font-size: 30px;
  color: #2372AD;
  font-family: "UnicodProRegular";
}

.carousel-section {
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  padding-top: 45px;
  padding-bottom: 45px;
}
.carousel-section .swiper-container {
  height: 220px;
  width: 100%;
}
.carousel-section .swiper-container .swiper-wrapper {
  height: 220px;
}
.carousel-section .swiper-container .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-section .swiper-container .swiper-wrapper .swiper-slide img {
  width: 100%;
  max-width: 200px;
  max-height: 300px;
  height: auto;
}
.carousel-section .swiper-button-prev {
  left: 0px;
  color: #000000;
  outline: none;
}
.carousel-section .swiper-button-prev:after {
  content: "";
  width: 100%;
  height: 100%;
  background-size: 10px;
  background-position: left center;
  background-repeat: no-repeat;
  background-image: url("../../images/arrow-left.svg");
}
.carousel-section .swiper-button-next {
  right: 0px;
  color: #000000;
  outline: none;
}
.carousel-section .swiper-button-next:after {
  content: "";
  width: 100%;
  height: 100%;
  background-size: 10px;
  background-position: right center;
  background-repeat: no-repeat;
  background-image: url("../../images/arrow-right.svg");
}

.project-template-default .swiper-container {
  height: 330px;
}
.project-template-default .swiper-container .swiper-wrapper {
  height: 330px;
}
.project-template-default .swiper-container .swiper-wrapper .swiper-slide {
  margin-right: 0px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

section.vacancies {
  padding-top: 40px;
  padding-bottom: 100px;
}
section.vacancies h2.title {
  color: #12407F;
  margin-bottom: 70px;
}
section.vacancies .vacancy-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}
section.vacancies .vacancy-container .single-vacancy {
  display: flex;
  padding: 80px 60px;
  align-items: center;
  justify-content: space-between;
  background-color: #F3FAFE;
  border-radius: 20px;
  transition: all 0.6s;
}
section.vacancies .vacancy-container .single-vacancy + .single-vacancy {
  margin-top: 30px;
}
section.vacancies .vacancy-container .single-vacancy h3.title {
  margin-top: -2px;
  color: #36A9E0;
}
section.vacancies .vacancy-container .single-vacancy .btn {
  background-color: #36A9E0;
  color: #ffffff;
  display: inline-block;
  margin-bottom: 0px;
  font-size: 18px;
  text-transform: uppercase;
  font-family: proxima-nova, sans-serif;
  font-weight: 500;
  max-width: 280px;
  width: 100%;
  text-align: center;
  transition: all 0.6s;
}
section.vacancies .vacancy-container .single-vacancy:hover {
  background-color: #eaf6fd;
  transition: all 0.2s;
}
section.vacancies .vacancy-container .single-vacancy:hover .btn {
  background-color: #12407F;
  transition: all 0.2s;
}
@media screen and (max-width: 900px) {
  section.vacancies {
    padding-bottom: 20px;
  }
  section.vacancies h2.title {
    margin-bottom: 40px;
  }
  section.vacancies .vacancy-container .single-vacancy {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
  }
  section.vacancies .vacancy-container .single-vacancy div.btn {
    margin-top: 40px;
  }
}

a.floater {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #36A9E0;
  position: fixed;
  z-index: 1;
  right: 0px;
  top: 50vh;
  color: #fff;
  height: 140px;
  width: 170px;
  font-family: "UnicodProMedium";
  font-size: 20px;
  padding-right: 30px;
  line-height: 1.25;
  transform: translateX(30px);
  transition: all 0.8s;
  box-shadow: 0px 0px 0px 1000000px rgba(0, 0, 0, 0);
}
a.floater:hover {
  transform: translateX(0px);
  transition: all 0.24s;
}
@media screen and (max-width: 900px) {
  a.floater {
    display: none;
  }
}

.vacancies-header {
  display: none;
}
@media screen and (max-width: 900px) {
  .vacancies-header {
    display: flex;
    position: absolute;
    right: 60px;
    top: 43px;
    background-color: #36A9E0;
    color: #ffffff;
    font-size: 15px;
    text-transform: uppercase;
    font-family: proxima-nova, sans-serif;
    font-weight: 500;
    width: auto;
    padding: 10px 32px 10px 12px;
    border-radius: 40px;
    text-align: center;
    transition: all 0.6s;
  }
  .vacancies-header span {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    background-color: #fff;
    color: #36A9E0;
    top: 9px;
    right: 9px;
    padding: 5px;
    border-radius: 50%;
  }
}

.woocommerce-breadcrumb {
  display: none;
}

.woocommerce-products-header__title.page-title {
  margin-top: 70px;
  margin-bottom: 50px;
  font-size: 30px;
  color: #12407F;
}

.woocommerce-result-count, .woocommerce-ordering {
  display: none;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1/1;
  object-fit: contain;
}

.woocommerce ul.products li.product h2 {
  font-size: 20px;
  line-height: 1;
  color: #36A9E0;
}

.woocommerce div.product div.images img {
  aspect-ratio: 1/1;
  object-fit: contain;
}

.woocommerce div.product div.summary {
  font-family: proxima-nova, sans-serif;
}
.woocommerce div.product div.summary h1 {
  margin-bottom: 20px;
  color: #36A9E0;
}
.woocommerce div.product div.summary .add-request-quote-button, .woocommerce div.product div.summary button {
  padding: 17px 40px 15px 40px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 25px;
  border-radius: 50px;
  font-family: "UnicodProRegular";
  transition: 0.2s ease;
  background-color: #36A9E0;
}
.woocommerce div.product div.summary span.posted_in {
  display: none;
}
.woocommerce div.product div.summary .yith_ywraq_add_item_browse-list a {
  display: inline-block;
  padding: 17px 40px 15px 40px;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 25px;
  border-radius: 50px;
  font-family: "UnicodProRegular";
  transition: 0.2s ease;
  color: #ffffff;
  background-color: #36A9E0;
}

.related.products {
  display: inline-block;
  width: 100%;
}
.related.products h2 {
  margin-bottom: 20px;
  color: #36A9E0;
}

.woocommerce div.product .woocommerce-tabs .panel {
  font-family: proxima-nova, sans-serif;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: "UnicodProLight";
}

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