/* ===========================
======= TABLE OF CONTENTS ===========
=====================================
author: Lars Blikman
1) SASS DEAULTS
2) GENERAL CSS, BODY, HTML, FONTS
2) HEADER SECTION
   * Navigation SCSS
3) CONTENT SECTION
4) FOOTER SECTION
===================================*/
/* ==========================================================================
	SASS VALUES
   ========================================================================== */
/* ==========================================================================
	BASE
   ========================================================================== */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html,
body {
  box-sizing: border-box;
  height: 100%;
  -webkit-font-smoothing: antialiased;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  font-size: 18px;
  line-height: 1.6em;
  font-family: "sf_pro_displayregular" !important;
  overflow-x: hidden;
}

p {
  font-size: 1em;
  line-height: 2em !important;
}

ul,
ol,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a:link,
a:active,
a:visited {
  outline: none;
  color: #1d2249;
}

a:hover {
  text-decoration: none;
}

a:hover,
a:focus {
  color: #0c5a55;
}

a:active,
a:focus,
*:focus {
  outline: none !important;
}

img {
  max-width: 100%;
}

@media (max-width: 991px) {
  body {
    font-size: 18px;
  }
}
.iszo_row {
  margin-bottom: 90px;
}

/* ==========================================================================
	BACKGROUND COLORS
   ========================================================================== */
.bg-darkblue {
  background-color: #1d2249;
}

.bg-lightblue {
  background-color: #39356f;
}

.bg-mint {
  background-color: #62c0bd;
}

.bg-ming-l {
  background-color: #aad9d9;
}

/* ==========================================================================
HEADINGS
  ========================================================================== */
h1, h2, h3, h4, h5, h6 {
  line-height: 1em !important;
  color: #1d2249;
}

h1, h2, h3 {
  font-family: "sf_pro_displaybold";
  font-size: 5em !important;
}

h4 {
  font-family: "sf_pro_displayheavy";
  font-size: 2.5em !important;
}

h5 {
  font-family: "sf_pro_displayheavy";
  font-size: 2em !important;
}

h6 {
  font-family: "sf_pro_displayheavy";
  font-size: 1.4em !important;
}

h1 {
  padding-bottom: 20px;
}

.tpl-diensten h1 {
  padding-bottom: 70px;
}

/* ==========================================================================
	FONTS
   ========================================================================== */
@font-face {
  font-family: "sf_pro_displaybold";
  src: url("../iszo_fonts/sf-pro-display-bold-webfont.woff2") format("woff2"), url("../iszo_fonts/sf-pro-display-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "sf_pro_displayheavy";
  src: url("../iszo_fonts/sf-pro-display-heavy-webfont.woff2") format("woff2"), url("../iszo_fonts/sf-pro-display-heavy-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "sf_pro_displaylight";
  src: url("../iszo_fonts/sf-pro-display-light-webfont.woff2") format("woff2"), url("../iszo_fonts/sf-pro-display-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "sf_pro_displayregular";
  src: url("../iszo_fonts/sf-pro-display-regular-webfont.woff2") format("woff2"), url("../iszo_fonts/sf-pro-display-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "montserratsemibold";
  src: url("../iszo_fonts/montserrat-semibold-webfont.woff2") format("woff2"), url("../iszo_fonts/montserrat-semibold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* ==========================================================================
	MOBILE MENU
   ========================================================================== */
/* ==========================================================================
ANIMATIONS
  ========================================================================== */
/* ==========================================================================
	BUTTONS
   ========================================================================== */
.iszo_btn, .iszo_btn-form {
  color: #fff !important;
  background: #e9454e;
  font-size: 1em;
  font-family: "montserratsemibold";
  padding: 15px 50px 15px 10px !important;
  border: none;
  position: relative;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  line-height: 1;
}

.iszo_btn:hover, .iszo_btn-form:hover {
  background: #1d2249;
  text-decoration: none;
}

.iszo_btn::after, .btn-arrow::after {
  content: "";
  background: url("../../content/arrow.svg") no-repeat;
  height: 15px;
  width: 15px;
  position: absolute;
  right: 15px;
  top: 16px;
}

.btn_back {
  padding: 15px 10px 15px 50px !important;
}

.btn_back::after {
  right: initial;
  left: 15px;
  top: 14px;
  transform: rotate(-180deg);
}

.btn-arrow {
  position: relative;
}

.btn-arrow::after {
  display: block;
  right: 0;
  top: 6px;
}

.bcrumbs {
  padding-top: 80px;
}

/* ==========================================================================
	NAVIGATION
   ========================================================================== */
.site-header {
  color: #fff;
}
.site-header a {
  color: #fff;
}
.site-header a:hover {
  text-decoration: none;
  color: #fff;
}
.site-header .site_logo {
  width: 185px;
  margin: 0 auto;
  position: relative;
  display: block;
}
.site-header .row > div {
  padding: 20px 0;
}
.site-header .bg-lightblue, .site-header .bg-mint {
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
}
.site-header .bg-lightblue a, .site-header .bg-mint a {
  font-family: "sf_pro_displaybold";
  display: block;
  position: absolute;
  bottom: 25px;
  margin: 0 auto;
  left: 0;
  right: 0;
  font-size: 1.5em;
  text-align: center;
}
.site-header .bg-lightblue a span::before, .site-header .bg-mint a span::before {
  content: "";
  display: inline-block;
  height: 15px;
  width: 15px;
  position: relative;
  right: 10px;
}
.site-header .bg-lightblue a span::before {
  background: url("../../content/office.svg") no-repeat;
}
.site-header .bg-mint a span::before {
  background: url("../../content/business.svg") no-repeat;
}
.site-header .bg-lightblue:hover, .site-header .bg-mint:hover {
  background: #e9454e;
}

#hamburger, #hamburger2 {
  width: 60px;
  height: 60px;
  border: none;
  transition: 0.5s ease-in-out;
  z-index: 999;
  background: none;
  margin: 0 auto;
  display: block;
}
#hamburger .line-1::after, #hamburger .line-2::after, #hamburger2 .line-1::after, #hamburger2 .line-2::after {
  content: "";
  height: 3px;
  display: block;
  margin: 0 auto;
  margin-bottom: 5px;
  border-radius: 10px;
  background: #1d2249;
  float: left;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
}
#hamburger .line-2::after, #hamburger2 .line-2::after {
  width: 40%;
}
#hamburger .line-1::after, #hamburger2 .line-1::after {
  width: 70%;
}

#hamburger:hover, #hamburger2:hover {
  color: #000;
}
#hamburger:hover .line-2::after, #hamburger:hover .line-1::after, #hamburger2:hover .line-2::after, #hamburger2:hover .line-1::after {
  background: #e9454e;
}

#hamburger2 .line-2::after {
  width: 10%;
  position: absolute;
  transform: rotate(-45deg);
}
#hamburger2 .line-1::after {
  width: 10%;
  position: absolute;
  transform: rotate(45deg);
}

/* ==========================================================================
	MOBILE MENU
   ========================================================================== */
.mobile-nav {
  width: 300px;
  height: 100%;
  padding: 0;
  background: #fff;
  color: #fff;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 600;
  overflow-y: scroll;
  /* has to be scroll, not auto */
  -webkit-overflow-scrolling: touch;
  transition: all 0.6s ease 0s;
  box-shadow: -3px 0px 10px -5px gray;
}
.mobile-nav ul {
  padding: 50px 0;
}
.mobile-nav ul li {
  text-align: left;
  font-size: 2em;
  padding: 0 30px;
}
.mobile-nav a:hover {
  color: #e9454e;
  text-decoration: none;
}

.shownav .mobile-nav {
  right: 0 !important;
}

/* ==========================================================================
	CONTENT
   ========================================================================== */
.banner_home {
  background: url("../iszo_img/supportly_web03.jpg");
  margin-bottom: 70px;
  background-size: cover;
  height: 100%;
  padding: 0;
}

.banner_sub {
  height: 530px;
}
.banner_sub img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.banner_sub iframe {
  width: 100%;
  height: 100%;
}

/* SECTION BLOCK 1 ===== */
.section-block_1 {
  margin-top: -250px;
}

.section-block_1 > div > div, .section-block_2 article:first-of-type {
  background: #62c0bd;
  padding: 50px 60px;
}
.section-block_1 > div > div h4, .section-block_2 article:first-of-type h4 {
  color: #fff;
  line-height: 1.1 !important;
}
.section-block_1 > div > div p, .section-block_2 article:first-of-type p {
  color: #fff;
  font-family: "sf_pro_displaylight";
  font-size: 1.8em;
}
.section-block_1 > div > div a, .section-block_2 article:first-of-type a {
  position: absolute;
  right: 0;
  bottom: 0;
}

/* SECTION BLOCK 2 ===== */
.section-2 {
  padding: 70px 0;
  border-right: 70px solid #fff;
  border-left: 70px solid #fff;
}
.section-2 h3 {
  padding-bottom: 50px;
}
.section-2 p {
  padding-bottom: 20px;
}

/* SECTION BLOCK 3 ===== */
.section-3 .iszo_btn {
  margin: 0 auto;
}
.section-3 .row div {
  padding-bottom: 50px;
}

/* SECTION BLOCK 4 ===== */
.section-4 {
  padding: 100px 0 50px;
}

/* SECTION BLOCK 5 ===== */
.section-5 .row p {
  padding-bottom: 40px;
}
.section-5 .row > div:first-of-type {
  height: 350px;
  width: 100%;
  overflow: hidden;
}
.section-5 .row > div:first-of-type img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.section-5 .row > div:last-of-type {
  padding: 0 70px;
}
.section-5 .support {
  padding-bottom: 90px;
}

/* SECTION EXP ROW ===== */
.exp_row .iszo_btn {
  margin: 0 auto;
}
.exp_row .row > div {
  padding-bottom: 50px;
}

/* SECTION BLOCK 2 ===== */
.section-block_2 article:first-of-type {
  padding: 50px 60px 90px;
}
.section-block_2 article:first-of-type p {
  color: #000 !important;
  line-height: 1.3 !important;
  font-size: 1em !important;
  padding-top: 10px;
}
.section-block_2 article:first-of-type form {
  width: 100%;
}
.section-block_2 article:first-of-type form input[type=text] {
  width: 100%;
  border: 0;
  padding: 10px;
}
.section-block_2 article:first-of-type form .iszo_btn {
  position: absolute;
  right: 0;
  bottom: 0;
}
.section-block_2 article:last-of-type {
  position: relative;
  top: 10px;
}
.section-block_2 article:last-of-type span {
  display: block;
  text-align: right;
  padding-bottom: 50px;
}

/* SECTION BLOCK 7 ===== */
.section-7 {
  padding: 150px 0 0;
}
.section-7 span {
  display: block;
}
.section-7 a {
  display: block;
}
.section-7 a[href^="mailto:"] {
  color: #e9454e;
}

/* ==========================================================================
	FOOTER
   ========================================================================== */
.site-footer {
  font-size: 1em;
  color: #fff;
}
.site-footer a {
  color: #fff !important;
}
.site-footer .site_logo {
  width: 185px;
  display: block;
}
.site-footer span {
  display: block;
  padding-bottom: 5px;
}
.site-footer .footer_news {
  padding: 50px 0;
}
.site-footer .footer_news h5 {
  color: #fff;
  display: inline;
  padding-right: 20px;
  position: relative;
  top: 5px;
}
.site-footer .footer_news form {
  display: inline-block;
  width: 80%;
}
.site-footer .footer_news form input[type=text] {
  width: 80%;
  padding: 9px;
  border: 0;
}
.site-footer .footer_news form .iszo_btn-form {
  position: relative;
  left: 20px;
  top: -1px;
}
.site-footer .footer_main .container {
  padding: 70px 0;
  border-bottom: 1px solid #fff;
}
.site-footer .footer_copy {
  padding: 40px 0;
}
.site-footer .footer_copy .row div {
  padding: 0;
}
.site-footer .footer_copy .row > div:first-of-type {
  color: #e9454e;
}
.site-footer .footer_copy .row > div:nth-of-type(2) {
  text-align: center;
}
.site-footer .footer_copy .row > div:last-of-type {
  text-align: right;
  color: #8e90a3;
}

/* ==========================================================================
	RESPONSIVE MOBILE
   ========================================================================== */
/* RESPONSIVE CSS =============== */
@media screen and (max-width: 768px) {
  /* HEADERS ==== */
  h1, h2, h3 {
    font-size: 2.5em !important;
  }

  h4 {
    font-size: 2em !important;
  }

  h5 {
    font-size: 1.5em !important;
  }

  .tpl-diensten h1 {
    padding-bottom: 40px;
  }

  .banner_sub {
    height: 230px;
  }

  .iszo_row {
    margin-bottom: 30px;
  }

  /* MOBILE HEADER ======= */
  .site-header .bg-lightblue a, .site-header .bg-mint a {
    position: relative;
    bottom: 0;
  }

  /* SECTION BLOCK 1 ==== */
  .section-block_1 p {
    line-height: 1 !important;
    font-size: 1.5em !important;
  }
  .section-block_1 > div > div {
    padding: 50px 60px 65px;
  }

  /* SECTION 1 ==== */
  .section-1 > div > div > div {
    padding: 0px 30px 50px !important;
  }

  .section-2 {
    border: initial;
    padding: 70px 30px;
  }
  .section-2 .row > div {
    padding-bottom: 35px;
  }

  .section-3 {
    padding: 0 30px;
  }
  .section-3 .row > div {
    padding-bottom: 10px;
  }
  .section-3 .iszo_btn {
    margin: unset;
  }
  .section-3 p {
    padding-bottom: 20px;
  }

  .section-5 h5 {
    padding-top: 40px;
  }
  .section-5 .support {
    padding-bottom: 60px;
  }

  .section-block_2 article:last-of-type {
    padding: 30px 30px 0;
  }

  .exp_row .iszo_btn {
    margin: initial;
    position: relative;
    left: 15px;
  }

  /* FOOTER ====== */
  .footer_news {
    text-align: center;
  }
  .footer_news h5 {
    top: 0 !important;
  }
  .footer_news .iszo_btn-form {
    position: relative;
    top: 20px !important;
    left: initial !important;
  }

  .footer_main {
    text-align: center;
  }
  .footer_main .site_logo {
    margin: 0 auto;
    padding-bottom: 40px;
  }

  .footer_copy {
    text-align: center;
    padding: 50px 30px !important;
  }
  .footer_copy .row > div:last-of-type {
    text-align: inherit !important;
  }
}

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