@import "plugins/animations.css";
@import "plugins/hamburger.css";
@import "plugins/slick.css";
@import url("https://fonts.googleapis.com/css?family=Montserrat:300,400,700");
@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,900");
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: "cocogooseregular";
  src: url("../fonts/cocogoose_trial-webfont.woff2") format("woff2"), url("../fonts/cocogoose_trial-webfont.woff") format("woff"), url("../fonts/cocogoose_trial-webfont.otf") format("otf");
  font-weight: normal;
  font-style: normal;
}
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  padding: 0;
  margin: 0;
}

.button {
  width: auto;
  height: auto;
  border: none;
  transition: all 0.3s;
  outline: none;
  outline-style: none;
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 18px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #e98602;
  padding: 20px 25px;
  padding-right: 45px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .button {
    padding: 10px 15px;
    padding-right: 45px;
  }
}
.button:before, .button:after {
  width: 15px;
  height: 13px;
  position: absolute;
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  right: 17px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  content: "";
  transition: all 0.3s;
}
.button:before {
  background-image: url("../img/arrow-right-white.svg");
  opacity: 1;
}
.button:after {
  background-image: url("../img/arrow-right-orange.svg");
  opacity: 0;
}
.button:hover, .button:active {
  background-color: #fff;
  color: #e98602;
  text-decoration: none;
}
.button:hover:before, .button:active:before {
  opacity: 0;
}
.button:hover:after, .button:active:after {
  opacity: 1;
}
.button.blue {
  background-color: #e98602;
}
.button.blue:before {
  background-image: url("../img/arrow-right-white.svg");
  opacity: 1;
}
.button.blue:after {
  background-image: url("../img/arrow-right-blue.svg");
  opacity: 0;
}
.button.blue:hover, .button.blue:active {
  background-color: #fff;
  color: #e98602;
  text-decoration: none;
}
.button.blue:hover:before, .button.blue:active:before {
  opacity: 0;
}
.button.blue:hover:after, .button.blue:active:after {
  opacity: 1;
}

body {
  background-color: #FFFFFF;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #464646;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "cocogooseregular", sans-serif;
  font-weight: 400;
  color: #000000;
  text-transform: uppercase;
}

section {
  padding-top: 50px;
  padding-bottom: 50px;
}

section {
  padding: 80px 0;
}

body {
  display: none;
  padding-top: 93px;
}
@media only screen and (max-width: 767px) {
  body {
    padding-top: 56px;
  }
}

p {
  margin-bottom: 30px;
}

ul.basic-list {
  margin-left: 25px;
}
ul.basic-list li {
  display: inline-block;
  width: 100%;
  padding: 5px 0;
  position: relative;
  padding-left: 25px;
}
ul.basic-list li:before {
  width: 17px;
  height: 12px;
  position: absolute;
  left: 0px;
  background-image: url("../img/check.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  top: 10px;
}

h1.has-border {
  position: relative;
  margin-bottom: 35px;
  padding-bottom: 35px;
}
h1.has-border:after {
  content: "";
  width: 100%;
  height: 12px;
  background-image: url("../img/heading-border.png");
  background-size: cover;
  background-repeat: repeat-x;
  background-position: center center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 630px;
}
h1.has-border.white:after {
  background-image: url("../img/heading-border-white.png");
}
h1.has-border.left:after {
  margin: 0 0;
}

.navigation-section {
  width: 100%;
  height: auto;
  background: #fff;
  padding: 20px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
@media only screen and (max-width: 767px) {
  .navigation-section {
    padding: 10px 0;
  }
}
.navigation-section img {
  width: 180px;
  position: relative;
  margin-top: 70px;
}
.navigation-section .mobile-logo {
  display: none;
}
@media only screen and (max-width: 767px) {
  .navigation-section .mobile-logo {
    display: inline-block;
    width: 50px;
    margin-top: 0;
  }
}
.navigation-section .logo-wrapper {
  position: absolute;
  display: inline-block;
  top: -70px;
}
@media only screen and (max-width: 767px) {
  .navigation-section .logo-wrapper {
    display: none;
  }
}
.navigation-section .logo-wrapper:before {
  position: absolute;
  width: 227px;
  height: 227px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  content: "";
  top: 0;
  left: -25px;
  bottom: 0;
  background: #fff;
}
.navigation-section .hamburger {
  padding: 0;
  float: right;
  margin-top: 10px;
  display: none;
}
@media only screen and (max-width: 767px) {
  .navigation-section .hamburger {
    display: block;
    margin-top: 5px;
  }
}
.navigation-section .hamburger:hover {
  opacity: 1;
}
.navigation-section .hamburger-inner, .navigation-section .hamburger-inner:after, .navigation-section .hamburger-inner:before {
  background-color: #e98602;
}
.navigation-section ul.main-navigation {
  float: right;
  margin-top: 15px;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .navigation-section ul.main-navigation {
    position: fixed;
    top: 56px;
    background-color: #fff;
    height: 100vh;
    left: 100%;
    z-index: 99;
    margin-top: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s;
  }
  .navigation-section ul.main-navigation.open {
    left: 0;
    opacity: 1;
    visibility: visible;
  }
}
.navigation-section ul.main-navigation li {
  display: inline;
  padding: 0 15px;
}
@media only screen and (max-width: 992px) {
  .navigation-section ul.main-navigation li {
    padding: 0 10px;
  }
}
@media only screen and (max-width: 767px) {
  .navigation-section ul.main-navigation li {
    display: inline-block;
    width: 100%;
    padding: 0;
  }
}
.navigation-section ul.main-navigation li a {
  color: #232323;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 16px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.navigation-section ul.main-navigation li a:hover {
  color: #e98602;
}
@media only screen and (max-width: 767px) {
  .navigation-section ul.main-navigation li a {
    padding: 10px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: inline-block;
    width: 100%;
  }
}
.navigation-section ul.main-navigation li.active a {
  color: #e98602;
}

.header-section {
  width: 100%;
  height: auto;
  background-image: url("../img/header.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: 200px;
  padding-bottom: 200px;
  text-align: center;
  position: relative;
}
@media only screen and (min-width: 1000px) and (max-width: 1450px) {
  .header-section {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
@media only screen and (max-width: 1024px) {
  .header-section {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
@media only screen and (max-width: 992px) {
  .header-section {
    padding: 100px 0;
  }
}
@media only screen and (max-width: 767px) {
  .header-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.header-section h1 {
  font-size: 100px;
  color: #fff;
  text-shadow: 0px 0px 5.4px rgba(0, 0, 0, 0.16);
}
@media only screen and (max-width: 1024px) {
  .header-section h1 {
    font-size: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .header-section h1 {
    font-size: 40px;
    margin-bottom: 30px;
  }
}
.header-section h2 {
  font-size: 27px;
  color: #fff;
  font-family: "Source Sans Pro", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 5px;
  margin-bottom: 30px;
  text-shadow: 4px 6px 15px black;
}
@media only screen and (max-width: 767px) {
  .header-section h2 {
    font-size: 23px;
  }
}

.header-second {
  background-image: url("../img/header-boogzinkers.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  padding-top: 180px;
  padding-bottom: 180px;
  position: relative;
}
.header-second.bg2 {
  background-image: url("../img/header-over.jpg");
}
.header-second.bg2 h1 {
  font-size: 65px;
}
.header-second.bg2 h1 em {
  font-style: normal;
  font-size: 30px;
  letter-spacing: 10px;
  font-weight: 400;
}
@media only screen and (max-width: 992px) {
  .header-second.bg2 h1 em {
    font-size: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .header-second.bg2 h1 em {
    font-size: 21px;
  }
}
@media only screen and (max-width: 992px) {
  .header-second.bg2 h1 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .header-second.bg2 h1 {
    font-size: 29px;
  }
}
.header-second.bg3 {
  background-image: url("../img/header-contact.jpg");
}
.header-second.bg4 {
  background-image: url("../img/header-vacatures.jpg");
}
@media only screen and (max-width: 767px) {
  .header-second {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
.header-second h1 {
  font-size: 99px;
  color: #fff;
}
@media only screen and (max-width: 992px) {
  .header-second h1 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .header-second h1 {
    font-size: 29px;
  }
}

.intro-section {
  padding-top: 130px;
  padding-bottom: 0;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .intro-section {
    padding-top: 80px;
  }
}
.intro-section.full-padding {
  padding: 130px 0;
}
@media only screen and (max-width: 1024px) {
  .intro-section.full-padding {
    padding: 80px 0;
  }
}
.intro-section .m-b-30 {
  margin-bottom: 30px;
}
@media only screen and (max-width: 992px) {
  .intro-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.intro-section h2 {
  font-size: 32px;
  font-family: "cocogooseregular", sans-serif;
  margin-bottom: 30px;
  line-height: 1.3;
}
@media only screen and (max-width: 767px) {
  .intro-section h2 {
    font-size: 25px;
  }
}
.intro-section ul {
  margin-bottom: 30px;
}
.intro-section ul li {
  position: relative;
  font-size: 20px;
  font-weight: 300;
  text-transform: uppercase;
  display: inline-block;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (max-width: 1200px) {
  .intro-section ul li {
    font-size: 18px;
    padding-left: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .intro-section ul li {
    padding-left: 30px;
  }
}
.intro-section ul li:after {
  width: 17px;
  height: 12px;
  position: absolute;
  left: -30px;
  background-image: url("../img/check.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  top: 16px;
}
@media (max-width: 1200px) {
  .intro-section ul li:after {
    left: -20px;
  }
}
@media only screen and (max-width: 767px) {
  .intro-section ul li:after {
    left: 0;
  }
}
.intro-section p {
  line-height: 30px;
  margin: 0;
}

@media only screen and (max-width: 992px) {
  section.flex-section {
    padding-top: 0;
  }
}
section.flex-section .flex-row {
  display: -webkit-box;
  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;
  /* TWEENER - IE 10 */
  display: -webkit-flex;
  /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;
  /* NEW, Spec - Firefox, Chrome, Opera */
}
@media only screen and (max-width: 992px) {
  section.flex-section .flex-row {
    display: inherit;
  }
}
section.flex-section .img-box {
  position: relative;
  height: 100%;
  background-image: url("../img/intro-img.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 992px) {
  section.flex-section .img-box {
    background-image: none;
  }
  section.flex-section .img-box img {
    width: 100%;
  }
}
section.flex-section .img-box.bg2 {
  background-image: url("../img/intro-img2.jpg");
}
section.flex-section .img-box.bg3 {
  background-image: url("../img/intro-img3.jpg");
}
section.flex-section .img-box.bg4 {
  background-image: url("../img/intro-img4.jpg");
}
section.flex-section .grey-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #eaeaea;
  padding: 60px 55px;
}
@media only screen and (max-width: 1024px) {
  section.flex-section .grey-wrapper {
    padding: 30px 35px;
  }
}
section.flex-section .grey-wrapper p {
  line-height: 30px;
}
section.flex-section .grey-wrapper p span {
  display: inline-block;
}
section.flex-section .grey-wrapper p a {
  color: #464646;
}
section.flex-section .grey-wrapper p a:hover {
  color: #464646;
  text-decoration: underline;
}
section.flex-section .grey-wrapper h2 {
  font-size: 21px;
  margin-bottom: 30px;
}
section.flex-section .grey-wrapper ul {
  margin-bottom: 0;
}
section.flex-section .grey-wrapper ul li {
  position: relative;
  display: inline-block;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 33px;
  width: 100%;
}
section.flex-section .grey-wrapper ul li:after {
  width: 19px;
  height: 14px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-image: url("../img/check.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
}
section.flex-section .contact-row {
  text-align: center;
  margin-top: 50px;
}
section.flex-section .contact-row h3 {
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  section.flex-section .contact-row h3 {
    font-size: 21px;
  }
}
section.flex-section .contact-row.reverse {
  margin-top: 0;
  margin-bottom: 50px;
}

.projects-section {
  padding: 0;
}
.projects-section.home .color-col {
  cursor: pointer;
}
.projects-section.home .project-content {
  height: 240px;
}
@media only screen and (max-width: 767px) {
  .projects-section.home .project-content {
    height: auto;
  }
}
.projects-section.home .project-content h2 {
  font-size: 22px;
  line-height: 30px;
}
@media only screen and (min-width: 1000px) and (max-width: 1450px) {
  .projects-section.home .project-content h2 {
    font-size: 16px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 992px) {
  .projects-section.home .project-content h2 {
    font-size: 18px;
    line-height: 26px;
  }
}
.projects-section .flex-row {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .projects-section .flex-row {
    display: inherit;
  }
}
.projects-section .no-padding {
  padding: 0;
}
.projects-section img {
  width: 100%;
}
.projects-section .project-content {
  padding: 25px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .projects-section .project-content {
    height: 240px;
  }
}
@media only screen and (max-width: 767px) {
  .projects-section .project-content {
    height: auto;
  }
}
.projects-section .project-content span {
  font-size: 18px;
  color: #464646;
  margin-bottom: 15px;
  display: inline-block;
}
.projects-section .project-content h2 {
  font-size: 30px;
  line-height: 38px;
}
@media only screen and (min-width: 1000px) and (max-width: 1450px) {
  .projects-section .project-content h2 {
    font-size: 24px;
    line-height: 34px;
  }
}
@media only screen and (max-width: 992px) {
  .projects-section .project-content h2 {
    font-size: 26px;
  }
}
.projects-section label {
  display: inline-block;
  width: auto;
  padding: 10px;
  background-color: #b77e21;
  color: #fff;
  text-transform: uppercase;
  font-family: "cocogooseregular", sans-serif;
  position: absolute;
  top: 30px;
  right: 0;
  font-size: 13px;
  box-shadow: 0px 0px 6.72px 0.28px rgba(0, 0, 0, 0.21);
  letter-spacing: 1px;
}
.projects-section label.blue {
  background-color: #e98602;
}
.projects-section label.purple {
  background-color: #868eb5;
}
.projects-section .color-col {
  background-color: #e4e4e4;
}
.projects-section .color-col.white {
  background-color: #fff;
}
.projects-section.detail {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .projects-section.detail {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.projects-section.detail .project-content {
  padding: 50px;
}
@media only screen and (min-width: 1000px) and (max-width: 1450px) {
  .projects-section.detail .project-content {
    padding: 25px;
  }
}
@media only screen and (max-width: 1024px) {
  .projects-section.detail .project-content {
    height: auto;
    padding: 25px;
  }
}
.projects-section.detail .project-content h2 {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 20px;
}

.banner-section {
  width: 100%;
  background-image: url("../img/banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  text-align: center;
  padding-top: 110px;
  padding-bottom: 110px;
}
.banner-section.bg2 {
  background-image: url("../img/banner2.jpg");
}
@media only screen and (max-width: 1024px) {
  .banner-section {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 767px) {
  .banner-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.banner-section h2 {
  font-size: 30px;
  color: #fff;
  margin-bottom: 30px;
  font-family: "cocogooseregular", sans-serif;
}
@media only screen and (max-width: 1024px) {
  .banner-section h2 {
    line-height: 1.5;
  }
}
@media only screen and (max-width: 767px) {
  .banner-section h2 {
    font-size: 23px;
  }
}
.banner-section p {
  color: #fff;
  font-size: 16px;
  line-height: 30px;
}

.two-one-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../img/2-1-section.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-color: #f1f1f1;
}
.two-one-section .first-inner {
  margin-bottom: 300px;
}
.two-one-section h1, .two-one-section h3 {
  font-family: "cocogooseregular", sans-serif;
}
.two-one-section .content-block {
  padding: 60px;
  background-color: #fff;
  box-shadow: 0px 0px 11.7px 1.3px rgba(0, 0, 0, 0.06);
}
@media only screen and (max-width: 992px) {
  .two-one-section .content-block {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .two-one-section .content-block {
    padding: 15px 20px;
  }
}
.two-one-section .content-block p {
  font-style: italic;
  font-size: 18px;
  line-height: 30px;
}
.two-one-section .content-block .profile img {
  width: 100%;
}
.two-one-section .content-block .profile h2 {
  font-size: 18px;
  margin-bottom: 5px;
  margin-top: 25px;
}
@media only screen and (max-width: 992px) {
  .two-one-section .content-block .profile h2 {
    margin-top: 20px;
  }
}
.two-one-section .content-block .profile span {
  font-size: 16px;
  font-style: italic;
}
@media only screen and (max-width: 767px) {
  .two-one-section .content-block .profile .text-center-xs {
    text-align: center;
  }
}
.two-one-section .content-block.blue {
  background-color: #e98602;
}
@media only screen and (max-width: 992px) {
  .two-one-section .content-block.blue {
    margin-top: 0;
  }
}
.two-one-section .content-block.blue h3 {
  font-size: 48px;
  color: #b77e21;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .two-one-section .content-block.blue h3 {
    font-size: 40px;
  }
  .two-one-section .content-block.blue h3 br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .two-one-section .content-block.blue h3 {
    font-size: 27px;
  }
}
.two-one-section .content-block.blue p {
  color: #fff;
}

.footer-section {
  background-color: #181818;
  color: #808080;
  font-size: 17px;
}
@media only screen and (max-width: 992px) {
  .footer-section {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .footer-section .p-0 {
    padding: 0;
  }
}
.footer-section h2 {
  margin-bottom: 30px;
  color: #fff;
}
@media only screen and (max-width: 992px) {
  .footer-section h2 {
    font-size: 25px;
    margin-bottom: 20px;
  }
}
.footer-section a {
  color: #808080 !important;
}
.footer-section a.underline {
  text-decoration: underline;
}
.footer-section img {
  max-width: 175px;
}
@media only screen and (max-width: 767px) {
  .footer-section .col {
    margin-bottom: 30px;
  }
  .footer-section .col.last {
    margin: 0;
  }
}

@media only screen and (max-width: 767px) {
  .content-section {
    padding: 60px 0;
  }
}
.content-section.no-padding-top {
  padding-top: 0;
}
.content-section.no-padding-bottom {
  padding-bottom: 0;
}
.content-section h1 {
  width: auto;
  display: inline-block;
  font-family: "cocogooseregular", sans-serif;
}
.content-section h1.smaller {
  font-size: 24px;
}
.content-section p {
  line-height: 30px;
}

.icons-section {
  padding: 110px 0;
}
@media only screen and (max-width: 767px) {
  .icons-section {
    padding: 80px 0;
  }
  .icons-section .button {
    margin-bottom: 30px;
  }
}
.icons-section img {
  width: 100%;
}
.icons-section .icon-heading {
  font-size: 24px;
  color: #000;
  font-family: "cocogooseregular", sans-serif;
  font-weight: 400;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.icons-section .icon-body {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 30px;
}

.media-section {
  padding: 110px 0;
  background-color: #f4f4f4;
}
@media only screen and (max-width: 992px) {
  .media-section {
    padding: 80px 0;
  }
}
.media-section .intro-row {
  text-align: center;
}
.media-section .intro-row h2 {
  font-size: 30px;
  margin-bottom: 30px;
}
.media-section .intro-row p {
  line-height: 30px;
  margin: 0;
}
.media-section .images-row {
  margin-top: 50px;
  margin-bottom: 50px;
}
.media-section .images-row img {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .media-section .images-row img {
    margin-bottom: 15px;
  }
}
.media-section .button-row {
  text-align: center;
}

.fullwidth-content-grey {
  background-color: #f4f4f4;
  width: 100%;
  padding: 100px 0;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .fullwidth-content-grey {
    padding: 80px 0;
  }
}
.fullwidth-content-grey h2 {
  font-size: 30px;
  margin-bottom: 30px;
  line-height: 1.5;
}
@media only screen and (max-width: 767px) {
  .fullwidth-content-grey h2 {
    font-size: 25px;
  }
}
.fullwidth-content-grey h3 {
  margin-top: 100px;
  font-size: 24px;
  margin-bottom: 10px;
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  width: 100%;
  outline: none;
  padding: 10px 15px;
  line-height: 30px;
  font-size: 18px;
  background-color: #e9eaf0;
  border: none;
  box-shadow: none;
  margin-bottom: 20px;
  resize: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  border-radius: 0;
}
input[type=text].warning,
input[type=tel].warning,
input[type=email].warning,
textarea.warning {
  border: 1px solid red;
}

.slick-slider .slick-arrow {
  width: 50px;
  height: 50px;
  background-color: #fff;
  position: absolute;
  top: 120px;
  margin-top: auto;
  margin-bottom: auto;
  z-index: 99;
  background-size: 15px 15px;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 8px 8px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s;
}
@media only screen and (max-width: 767px) {
  .slick-slider .slick-arrow {
    width: 50px;
    height: 50px;
  }
}
.slick-slider .slick-arrow.next {
  right: 0;
  background-image: url("../img/arrow-right-blue.svg");
}
.slick-slider .slick-arrow.next:hover {
  background-position: right 20px center;
}
.slick-slider .slick-arrow.prev {
  left: 0;
  background-image: url("../img/arrow-left-blue.svg");
}
.slick-slider .slick-arrow.prev:hover {
  background-position: left 20px center;
}

@media only screen and (min-width: 1000px) and (max-width: 1450px) {
  .no-offset-laptop {
    margin: 0 !important;
    width: 100% !important;
  }
}

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