body {
    font-family: "Poppins";
    overflow-x: hidden !important;
}

p {
    font-weight: 100;
}

 :root {
    --accent: #00879d;
}

.text-yellow {
    color: var(--accent);
}

.bg-yellow {
    background-color: var(--accent) !important;
}

.bg-grad-yellow {
    background-image: linear-gradient(164deg, #00879d38 0%, #00879d00 36%);
}

.btn-yellow {
    color: #fff;
    background-color: var(--accent);
    font-weight: 600;
    padding: .375rem 1rem;
}

.btn-yellow:hover {
    color: #fff;
    background-color: var(--accent);
}

.navbar-expand-lg .navbar-nav .nav-link {
    margin-right: 1.5rem;
    margin-left: 1.5rem;
    padding-left: 0;
    padding-right: 0;
}

.bg-hover-dark:hover {
    background: #000000!important;
    border-color: #000000!important;
}

.bg-hover-dark:hover a,
a.bg-hover-dark:hover {
    color: #FFFFFF!important;
}

.text-dark-hover-white {
    color: #343a40!important;
}

.text-dark-hover-white:hover {
    color: #FFF!important;
}


/* STYLING EFFECTS */

.style2 {
    position: relative;
}

.style2::before {
    content: "";
    position: absolute;
    left: 7%;
    bottom: -9px;
    width: 14%;
    height: 4px;
    transform: skew(320deg) translateX(-50%);
    background: var(--accent);
    z-index: 0;
}

.style1 {
    position: relative;
    display: inline-block;
}

.style1::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -9px;
    width: 40%;
    height: 4px;
    transform: skew(320deg) translateX(-50%);
    background: var(--accent);
    z-index: 0;
}

.vertical-line {
    margin: 0px 0px 15px 0px;
    padding: 0px 0px 0px 24px;
    border-style: solid;
    border-width: 0px 0px 0px 4px;
    border-color: var(--accent);
}

.hvr-line:hover {
    text-decoration: underline;
}

.filter-yellow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .3s;
    background: linear-gradient(rgba(0, 135, 157, 0.6), rgba(0, 135, 157, 0.6)) !important;
}

.filter-yellow-rev {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: opacity .3s;
    background: linear-gradient(rgba(0, 135, 157, 0.5), rgba(0, 135, 157, 0.5)) !important;
}

.card:hover .filter-yellow-rev {
    opacity: 0;
}

.card:hover .filter-yellow {
    opacity: 1;
}

.no-hvr:hover {
    text-decoration: none !important;
}

@-webkit-keyframes hvr-icon-buzz-out {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }
    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

@keyframes hvr-icon-buzz-out {
    10% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    20% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    30% {
        -webkit-transform: translateX(3px) rotate(2deg);
        transform: translateX(3px) rotate(2deg);
    }
    40% {
        -webkit-transform: translateX(-3px) rotate(-2deg);
        transform: translateX(-3px) rotate(-2deg);
    }
    50% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    60% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    70% {
        -webkit-transform: translateX(2px) rotate(1deg);
        transform: translateX(2px) rotate(1deg);
    }
    80% {
        -webkit-transform: translateX(-2px) rotate(-1deg);
        transform: translateX(-2px) rotate(-1deg);
    }
    90% {
        -webkit-transform: translateX(1px) rotate(0);
        transform: translateX(1px) rotate(0);
    }
    100% {
        -webkit-transform: translateX(-1px) rotate(0);
        transform: translateX(-1px) rotate(0);
    }
}

.hvr-icon-buzz-out {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-icon-buzz-out .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.hvr-icon-buzz-out:hover .hvr-icon,
.hvr-icon-buzz-out:focus .hvr-icon,
.hvr-icon-buzz-out:active .hvr-icon {
    -webkit-animation-name: hvr-icon-buzz-out;
    animation-name: hvr-icon-buzz-out;
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}


/* END OF STYLING EFFECTS */


/* BUTTON EFFECTS */

.hvr-glow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: box-shadow;
    transition-property: box-shadow;
    border-radius: .25rem;
}

.hvr-glow:hover,
.hvr-glow:focus,
.hvr-glow:active {
    box-shadow: 0 0 8px var(--accent);
    text-decoration: none;
}


/* END OF BUTTON EFFECTS */


/* HOVER MENU */

.hvr-underline-from-left {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}

.hvr-underline-from-left:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 0;
    right: 100%;
    bottom: 0;
    background: var(--accent);
    height: 3px;
    -webkit-transition-property: right;
    transition-property: right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.hvr-underline-from-left:hover:before,
.hvr-underline-from-left:focus:before,
.hvr-underline-from-left:active:before {
    right: 0;
}


/* END OF HOVER MENU */


/* HOVER BUYERS */

.hvr-icon-forward-fade {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}

.hvr-icon-forward-fade .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    opacity: 0;
}

.card:hover .card-body .hvr-icon-forward-fade .hvr-icon,
.card:focus .card-body .hvr-icon-forward-fade .hvr-icon,
.card:active .card-body .hvr-icon-forward-fade .hvr-icon,
.hvr-icon-forward-move:hover .hvr-icon,
.hvr-icon-forward-move:focus .hvr-icon {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
    /*transition: opacity 0.05s;*/
    opacity: 1;
}


/* END OF HOVER BUYERS */


/* HOVER INSPIRATIE */

.hvr-icon-forward {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.hvr-icon-forward .hvr-icon {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.card:hover .card-body .hvr-icon-forward .hvr-icon,
.card:focus .card-body .hvr-icon-forward .hvr-icon,
.card:active .card-body .hvr-icon-forward .hvr-icon {
    -webkit-transform: translateX(4px);
    transform: translateX(4px);
    /*transition: opacity 0.05s;*/
}


/* END OF HOVER INSPIRATIE */


/* END OF BUTTON EFFECTS */


/* HAMBURGER ICON ANIMATION */

.icon-bar {
    width: 22px;
    height: 2px;
    background-color: #B6B6B6;
    display: block;
    transition: all 0.2s;
    margin-top: 4px
}

.navbar-toggler {
    border: none;
    background: transparent !important;
}

.navbar-toggler .top-bar {
    transform: rotate(45deg);
    transform-origin: 10% 10%;
}

.navbar-toggler .middle-bar {
    opacity: 0;
}

.navbar-toggler .bottom-bar {
    transform: rotate(-45deg);
    transform-origin: 10% 90%;
}

.navbar-toggler.collapsed .top-bar {
    transform: rotate(0);
}

.navbar-toggler.collapsed .middle-bar {
    opacity: 1;
}

.navbar-toggler.collapsed .bottom-bar {
    transform: rotate(0);
}


/* HAMBURGER ICON ANIMATION */

.ml-min-15 {
    margin-left: -15px!important;
}

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

.mb-none {
    margin-bottom: 0px!important;
}

.border-1 {
    border-width: 1px !important;
}

.border-2 {
    border-width: 2px !important;
}

.border-3 {
    border-width: 3px !important;
}

.border-4 {
    border-width: 4px !important;
}

.border-5 {
    border-width: 5px !important;
}

.border-10 {
    border-width: 10px !important;
}

.border-hover-1:hover {
    border-width: 1px !important;
}

.border-hover-2:hover {
    border-width: 2px !important;
}

.border-hover-3:hover {
    border-width: 3px !important;
}

.border-hover-4:hover {
    border-width: 4px !important;
}

.border-hover-5:hover {
    border-width: 5px !important;
}

.border-hover-10:hover {
    border-width: 10px !important;
}

.border-radius-top-left-05 {
    border-top-left-radius: 0.5rem!important;
}

.border-radius-top-right-05 {
    border-top-right-radius: 0.5rem!important;
}

.border-radius-bottom-left-05 {
    border-bottom-left-radius: 0.5rem!important;
}

.border-radius-bottom-right-05 {
    border-bottom-right-radius: 0.5rem!important;
}

.fs-3 {
    font-size: 3rem!important;
}

.fs-4 {
    font-size: 4rem!important;
}

.rotate {
    transform: rotate(90deg);
    /* Legacy vendor prefixes that you probably don't need... */
    /* Safari */
    -webkit-transform: rotate(90deg);
    /* Firefox */
    -moz-transform: rotate(90deg);
    /* IE */
    -ms-transform: rotate(90deg);
    /* Opera */
    -o-transform: rotate(90deg);
    /* Internet Explorer */
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=1);
}

.bg-instagram {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888', GradientType=1);
}


/*.bg-shop-online {
  background: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.5));
  transition: background 1s ease-in-out;
  }
  .bg-shop-online:hover {
    background: linear-gradient(rgba(25, 25, 5, 0.6), rgba(255, 255, 255, 0.9));
  }*/

.zoom-container {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.bg-zoom-hover {
    transition: transform 0.5s;
}

.bg-zoom-hover:hover {
    transform: scale(1.03);
}

.bg-shop-online {
    position: relative;
    background-image: linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3));
    z-index: 1;
}

.bg-shop-online::before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(rgba(25, 25, 5, 0.2), rgba(23, 25, 5, 0.1));
    z-index: -1;
    transition: opacity 0.5s linear;
    opacity: 0;
}

.bg-shop-online:hover::before {
    opacity: 1;
}


/* START OF SUBMENU */

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>.dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
    -webkit-border-radius: 0 6px 6px 6px;
    -moz-border-radius: 0 6px 6px 6px;
    border-radius: 0 6px 6px 6px;
}

.dropdown-submenu>a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #cccccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
    border-left-color: #555;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left>.dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}


/* END OF SUBMENU*/


/* PROJECTS BRANDS*/

.brands-box {
    position: relative;
    height: auto;
}

.image {
    opacity: 1;
    display: block;
    width: 100%;
    height: auto;
    transition: .5s ease;
    backface-visibility: hidden;
}

.middle {
    transition: .5s ease;
    opacity: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
}

.brands-box:hover .image {
    opacity: 0.3;
}

.brands-box:hover .middle {
    opacity: 1;
}

.text {
    color: black;
    font-family: "Poppins";
}

.text:hover {
    color: black;
    text-decoration: none;
}


/* PROJECTS MODELS s*/

.models-box {
    position: relative;
    height: 220px;
}

.models-box:hover .image {
    opacity: 0.3;
}

.models-box:hover .middle {
    opacity: 1;
}


/* CONTACTFORM */


/* #ccms_form_contact label {
    display: none;
} */

#ccms_form_contact textarea {
    height: 8em;
}


/* END OF CONTACTFORM*/


/* SLIDER */

html body [data-ca3_iconfont="ETmodules"]::before {
    font-family: "ETmodules";
}

[data-ca3_icon]::before {
    font-weight: normal;
    content: attr(data-ca3_icon);
}

.ca3-scroll-down-arrow {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iQ2hldnJvbl90aGluX2Rvd24iIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMjAgMjAiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDIwIDIwIiBmaWxsPSJ3aGl0ZSIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBhdGggZD0iTTE3LjQxOCw2LjEwOWMwLjI3Mi0wLjI2OCwwLjcwOS0wLjI2OCwwLjk3OSwwYzAuMjcsMC4yNjgsMC4yNzEsMC43MDEsMCwwLjk2OWwtNy45MDgsNy44M2MtMC4yNywwLjI2OC0wLjcwNywwLjI2OC0wLjk3OSwwbC03LjkwOC03LjgzYy0wLjI3LTAuMjY4LTAuMjctMC43MDEsMC0wLjk2OWMwLjI3MS0wLjI2OCwwLjcwOS0wLjI2OCwwLjk3OSwwTDEwLDEzLjI1TDE3LjQxOCw2LjEwOXoiLz48L3N2Zz4=);
    background-size: contain;
    background-repeat: no-repeat;
    /*filter: invert(1);*/
}

.ca3-scroll-down-link {
    cursor: pointer;
    height: 30px;
    width: 30px;
    margin: 0px 0 0 -40px;
    line-height: 60px;
    position: absolute;
    left: calc(50% - 15px);
    bottom: 10px;
    color: #FFF;
    text-align: center;
    font-size: 30px;
    z-index: 100;
    text-decoration: none;
    text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.4);
    -webkit-animation: ca3_fade_move_down 2s ease-in-out infinite;
    -moz-animation: ca3_fade_move_down 2s ease-in-out infinite;
    animation: ca3_fade_move_down 2s ease-in-out infinite;
}


/*animated scroll arrow animation*/

@-webkit-keyframes ca3_fade_move_down {
    0% {
        -webkit-transform: translate(0, -20px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: translate(0, 20px);
        opacity: 0;
    }
}

@-moz-keyframes ca3_fade_move_down {
    0% {
        -moz-transform: translate(0, -20px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -moz-transform: translate(0, 20px);
        opacity: 0;
    }
}

@keyframes ca3_fade_move_down {
    0% {
        transform: translate(0, -20px);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(0, 20px);
        opacity: 0;
    }
}

.top-rect {
    /*background-color: var(--accent);*/
    background: linear-gradient(180deg, #ffffffcc 0%, #ffffff00 20%), url('bg-product.jpg') repeat scroll center center / cover;
    width: 80%;
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    padding-top: 100vh;
    z-index: -10;
}

.top-rect:after {
    content: "";
    display: block;
    background: white;
    height: 120%;
    width: 8000px;
    position: absolute;
    z-index: 1;
    top: -10%;
    left: -23%;
    margin-left: -4000px;
    -webkit-transform: rotate(309deg);
    transform: rotate(309deg);
}

.top-rect-banner {
    /*background-color: var(--accent);*/
    background: linear-gradient(180deg, #0000001C 0%, #0000001c 100%), url('bg-concrete.jpeg') repeat scroll center center / cover;
    width: 50%;
    position: absolute;
    top: 0;
    right: 0;
    overflow: hidden;
    padding-top: 404px;
    z-index: -10;
}

.top-rect-banner:after {
    content: "";
    display: block;
    background: white;
    height: 120%;
    width: 8000px;
    position: absolute;
    z-index: 1;
    top: -10%;
    left: -10%;
    margin-left: -4000px;
    -webkit-transform: rotate(309deg);
    transform: rotate(309deg);
    background-color: var(--accent);
}

.top-rect-banner.noimg {
    background: linear-gradient(180deg, #0000001C 0%, #0000001c 100%), url('') repeat scroll center center / cover;
}
.top-rect-banner.img1 {
    background: linear-gradient(180deg, #0000001C 0%, #0000001c 100%), url('prof-2.jpg') repeat scroll center center / cover;
}
.top-rect-banner.img2 {
    background: linear-gradient(180deg, #0000001C 0%, #0000001c 100%), url('architecten.jpg') repeat scroll center center / cover;
}
.top-rect-banner.img3 {
    background: linear-gradient(180deg, #0000001C 0%, #0000001c 100%), url('bouwbedrijf.jpg') repeat scroll center center / cover;
}

.mascotpos {
    bottom: -52px;
    right: -48px;
    z-index: -1;
    width: 380px;
}

.hexagon-b {
    display: block;
    margin: 0 auto;
    /* background: url({{ URL::to('/') }}/img/afbeelding1) repeat scroll center center / cover; */
    -webkit-clip-path: polygon(79% 0, 100% 0, 100% 100%, 0 100%, 11% 24%);
    clip-path: polygon(79% 0, 100% 0, 100% 100%, 0 100%, 11% 24%);
    width: 450px;
    height: 450px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: -9;
}


/* END OF SLIDER*/


/* BUYER BLOCKS */

.icon-buyers {
    position: absolute;
    bottom: 10px;
    right: -14px;
    font-size: 8rem;
    transition: right ease-in-out 0.4s;
    height: 130px;
    fill: #00879d;
}

.icon-buyers-s {
    font-size: 8rem;
    height: 130px;
    fill: #00879d;
}

.spacer-buyers {
    height: 8rem;
}

.buyers-block:hover {
    /* background-color: #b4b4b4; */
    background-color: var(--accent);
    transition: background-color ease-in-out .4s;
}

.buyers-block:hover .card-body {
    color: #fff;
    transition: color ease-in-out .4s;
}

.buyers-block:hover .icon-buyers, .buyers-block:hover .icon-buyers-s {
    fill: white;
}

.buyers-block:hover .style2::before {
    background: white;
}

.buyers-block:hover .text-yellow {
    color: white;
}

.card:hover .icon-buyers {
    right: 14px;
}

.card:hover .card-body .link-buyers {
    color: #2d3047;
}


/* END OF BUYER BLOCKS */

@media (min-width: 768px) {}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}


/* extra css */

@font-face {
    font-family: "Airline";
    src: url("../../../assets/fonts/AIRLINE.eot");
    /* IE9 Compat Modes */
    src: url("../../../assets/fonts/AIRLINE.eot?#iefix") format("embedded-opentype"), /* IE6-IE8 */
    url("../../../assets/fonts/AIRLINE.otf") format("opentype"), /* Open Type Font */
    url("../../../assets/fonts/AIRLINE.svg") format("svg"), /* Legacy iOS */
    url("../../../assets/fonts/AIRLINE.ttf") format("truetype"), /* Safari, Android, iOS */
    url("../../../assets/fonts/AIRLINE.woff") format("woff"), /* Modern Browsers */
    url("../../../assets/fonts/AIRLINE.woff2") format("woff2");
    /* Modern Browsers */
    font-weight: normal;
    font-style: normal;
}

.navbar-band {
    opacity: 0;
}

.pem-font {
    font-family: 'Airline', sans-serif;
}

.pem-font-2,
body {
    font-family: 'Open Sans', sans-serif;
}

.py-5-2x {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.fs-0875 {
    font-size: 0.875rem;
}

.logo-header {
    max-height: 50px;
    width: auto;
}

.navigation {
    position: fixed;
    z-index: 9999;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.2s ease-in-out;
}

.navbar-brand,
.navbar-brand-page {
    filter: invert(1);
}

.navigation .navbar-brand {
    opacity: 0;
    margin-left: 1rem;
}

.navbar-toggler .icon-bar {
    background-color: #000;
    transition: background-color 0.2s ease-in-out;
}

.navbar-toggler:focus,
.navbar-toggler:hover {
    outline: none;
}

.navigation-page {
    background-color: #212529;
    background-color: #fff;
}

.navigation .navbar-nav .nav-item a.nav-link,
.navigation-page .navbar-nav .nav-item a.nav-link {
    color: #000;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.9rem;
    font-family: 'Airline', sans-serif;
}


/* .navigation-page .navbar-nav .nav-item a.nav-link {
    color: #fff;
    text-transform: uppercase;
    font-weight: 200;
    font-size: 0.9rem;
    font-family: 'Airline', sans-serif;
} */

.navbar-nav>li>.dropdown-menu {
    margin-top: 0;
    display: block;
    height: 0;
    opacity: 0;
    transform: scale(0);
    transition: ease-out 0.2s all;
    left: 0%;
    top: 40px;
}

.dropdown:hover .dropdown-menu {
    height: inherit;
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 2px 18px 0 rgb(0 0 0 / 10%);
}

.dropdown-menu {
    border: none !important;
    border-radius: none !important;
    padding: .5rem .5rem;
}

.navbar-nav>li>.dropdown-menu li {
    margin: 10px 12px;
    text-align: left;
    padding-bottom: 6px;
}

.navbar-nav>li>.dropdown-menu li a {
    color: #212529;
    text-align: left;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-family: 'Airline', sans-serif;
}

.navbar-nav>li>.dropdown-menu li a:hover,
.navbar-nav>li>.dropdown-menu li a:focus {
    text-decoration: none;
}

.nav-item.contact-btn {
    border-radius: 0.25rem;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
}

.navigation .nav-item.contact-btn {
    background: #212529;
    color: #fff;
}

.navigation-page .nav-item.contact-btn {
    color: #fff;
    background-color: #212529;
}

.bannerhr {
    max-width: 15rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
}


/* MAP */

a[href^="http://maps.google.com/maps"] {
    display: none !important
}

a[href^="https://maps.google.com/maps"] {
    display: none !important
}

.gmnoprint a,
.gmnoprint span,
.gm-style-cc {
    display: none;
}

.gmnoprint div {
    background: none !important;
}

.locations {
    cursor: pointer;
    background-color: #f8f9fa;
    border-left: 3px solid var(--accent);
    transition: border .2s;
}

.locations:hover {
    background-color: #f2f5f7;
    border-left: 6px solid var(--accent);
}


/* END OF MAP */


/* PARALLAX */

.parallax {
    padding-top: 200px;
    padding-bottom: 200px;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-image: url(https://images.unsplash.com/photo-1415018255745-0ec3f7aee47b?dpr=1&auto=format&fit=crop&w=1500&h=938&q=80&cs=tinysrgb&crop=);
    background-attachment: fixed;
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}


/* END OF PARALLAX */


/* FORMS */

.form-dark input,
.form-dark input:focus {
    color: white;
}

.form-light .form-control {
    border-bottom: 1px solid #737f8a;
}

.form-light .form-control:focus {
    border-bottom: 2px solid #fff;
}

.form-control {
    border: none;
    border-bottom: 1px solid #CCC;
    box-shadow: none !important;
    border-radius: 0;
    background-color: transparent;
}

.form-control:focus {
    border-bottom: 2px solid var(--accent);
    background-color: transparent;
}

.form-group>label {
    display: none !important;
}

.form-group>input {
    background-color: transparent !important;
}

.form-group>input:active {
    background-color: transparent !important;
}

.form-check {
    margin-left: 2.5rem;
    margin-top: 1.5rem;
}

.form-check-input {
    margin-left: -3rem;
}

.form-group textarea {
    min-height: 80px;
}


/* END OF FORMS */

.p-header-banner {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.heading-banner {
    font-size: clamp(2.1rem, 10vw, 3.4rem);
    font-weight: 300;
    line-height: 1.2;
}


.heading-4 {
    font-size: 2.8rem;
    font-size: clamp(1.7rem, 10vw, 2.5rem);
    font-weight: 300;
    line-height: 1.2;
}

.bg-demo {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.bg-demo:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.banner_logo {
    max-height: 160px;
    margin-right: auto;
}

.z-100 {
    z-index: 100;
}

.btn:hover,
.btn:focus {
    outline: none;
    box-shadow: none;
    color: inherit;
}

.btn-cta-white {
    padding: .5rem 2rem;
    background: #fff;
    color: #212529;
}

.btn-black {
    background-color: #212529;
    padding: 0.5rem 2rem;
    color: #FFF;
}

.btn-black:hover,
.btn-black:focus {
    color: #FFF;
}

.font-weight-500 {
    font-weight: 500;
}

.shadow {
    box-shadow: 0 0 10px 2px rgb(0 0 0 / 10%)
}


/*.shadow:hover {
      box-shadow: 0 0 10px 2px rgb(255 193 7 / 50%)
  }*/

.card {
    border: none;
    border-radius: 1rem;
    overflow: hidden;
    color: inherit;
}

.card:hover,
.card:focus {
    text-decoration: none;
    color: inherit;
}

.hvr-border-top {
    border-top: 5px solid #fff;
    transition: border-top .3s;
}

.hvr-border-top:hover {
    border-top: 5px solid var(--accent);
}

.hvr-border-left {
    border-left: 5px solid #fff;
    transition: border-left .3s;
}

.hvr-border-left:hover {
    border-left: 5px solid var(--accent);
}

.fs-10 {
    font-size: 10rem;
}

.slick-arrow {
    font-size: 2rem;
    font-size: clamp(1rem, 10vw, 2rem);
    cursor: pointer;
}

.slider-item:hover,
.slider-item:focus {
    outline: none;
}

.slider-nav {
    position: absolute;
    top: 46%;
    left: -4%;
}

.slider-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.nav-next,
.slider-nav .next {
    right: -4%;
    left: unset;
}

#map {
    min-height: 500px;
}

.homecontact .contact-form .form-control {
    border: none;
    border-radius: 0;
    border-bottom: #212529 1px solid;
}

.homecontact .contact-form .form-control:hover,
.homecontact .contact-form .form-control:focus {
    outline: none;
    box-shadow: none;
}

.homecontact .contact-form textarea.form-control {
    resize: none;
}

.homecontact .contact-form #send_form_btn,
.download-form #send_form_btn {
    color: #fff;
    background-color: var(--accent);
    float: right;
    padding: 0.5rem 2rem;
}

.heroBanner {
    overflow: hidden;
}

.heroBanner video.bannervid {
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.productIcon {
    max-width: 40px;
    height: auto;
    object-fit: contain;
}

.newsletter-dark {
    background-color: #212529;
    color: #fff;
}

.newsletter-dark .btn {
    background-color: #fff;
    color: #212529;
    text-transform: uppercase;
    font-weight: 600;
}

.bg-dark {
    background-color: #212529 !important;
}

.download-form .form-control,
.download-form .btn {
    border-radius: 0;
}

.download-form .btn {
    font-weight: 600;
    text-transform: uppercase;
    background-color: #fff;
}

.download-form .btn:hover,
.download-form .btn:focus {
    color: #212529;
}

.demoDagenCalender {
    list-style: none;
}

.demoDagenCalender li {
    width: calc(33.33% - 2rem);
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(33.33% - 2rem);
    flex: 0 0 calc(33.33% - 2rem);
    max-width: calc(33.33% - 2rem);
    display: flex;
    height: auto;
    text-align: center;
    margin: 1rem;
    border-top: 4px solid #dc2743;
    border-top: 4px solid var(--accent);
    position: relative;
    overflow: visible;
    flex-direction: column;
}

.demoDagenCalender li:before {
    content: " ";
    position: absolute;
    z-index: -1;
    top: -7px;
    left: 0;
    right: 0;
    bottom: 0;
    border-top: 3px dashed #dc2743;
    border-top: 3px dashed var(--accent);
}

.demoDagenCalender li .month {
    background-color: #dc2743;
    background-color: var(--accent);
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    padding: .3rem;
    width: 100%;
}

.demoDagenCalender li .date {
    color: #212529;
    font-size: 2.5rem;
    font-weight: bold;
}

.testimonials.slider .slider-item .card-body {
    padding-top: 65px;
    position: relative;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 0 10px 2px rgb(0 0 0 / 10%);
    background-color: #212529;
    color: #fff;
}

.testimonials.slider .slider-item .card .card-img-top {
    border-radius: 50%;
    position: relative;
    width: 130px;
    height: 130px;
    object-fit: cover;
    margin: auto;
    object-position: center center;
    border: 5px solid #fff;
    z-index: 2;
    margin-bottom: -50px;
}

.stages {
    min-height: 56px;
}

.stages::before {
    content: '';
    display: block;
    width: calc(100% - 80px);
    height: 1px;
    background: #d8d8d8;
    position: absolute;
    top: 50%;
    left: 35px
}

.stages .item {
    position: absolute;
    cursor: pointer;
}

.stages .item.active .circle {
    border-color: var(--accent);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.stages .item.active .circle svg {
    fill: var(--accent);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.stages .item.active .text p {
    color: var(--accent);
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.stages .item.done .circle {
    border-color: #212529
}

.stages .item.done .circle:after {
    display: block
}

.stages .item.done .circle span {
    background: #212529
}

.stages .item.done .text {
    border: 1px solid #212529
}

.stages .item.done .text p {
    color: #212529
}

.stages .item .circle {
    border: 2px solid #d8d8d8;
    background: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    position: relative;
    margin: 0 auto;
    cursor: pointer
}

.stages .item .circle svg {
    fill: #d8d8d8;
}

.stages .item .circle:after {
    display: none;
    content: "";
    height: 13px;
    width: 1px;
    background: #58595b;
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -1px;
    cursor: default
}

.stages .item .text {
    padding: 8px 15px 6px;
    border-radius: 20px;
    margin-top: 10px
}

.stages .item .text p {
    color: #d8d8d8;
    font-family: 'Airline', sans-serif;
    font-weight: 700;
    margin: 0;
    line-height: 16px;
    text-transform: uppercase
}

.stages .item .text .circle {
    border-color: #58595b
}

.stages .item .text .circle span {
    background: #58595b
}

.stages .item .text .text p {
    color: #58595b
}

.stages .item.first {
    left: 0
}

.stages .item.second {
    left: calc(33.33% + 26px);
    transform: translateX(-50%)
}

.stages .item.third {
    left: calc(66.66% - 26px);
}

.stages .item.last {
    right: 0
}

.steps {
    height: 300px;
}

.steps .step {
    width: 100%;
    position: absolute;
    visibility: hidden;
    opacity: 0;
    top: 110%;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.steps .step.active {
    opacity: 1;
    width: 100%;
    position: absolute;
    visibility: visible;
    top: 0;
    left: 50%;
    z-index: 5;
}

.step [class*="col-"] {
    cursor: initial;
}

.step [class*="col-"] div.option {
    cursor: pointer;
    opacity: 0.8;
}

.step [class*="col-"] div.card:hover,
.step [class*="col-"] div.card:focus {
    opacity: 1;
}

.step [class*="col-"] .card .card-img-top {
    border-radius: 50%;
    position: relative;
    width: auto;
    height: 200px;
    object-fit: cover;
    margin: auto;
    object-position: center center;
    overflow: hidden;
    border-radius: 10px;
    z-index: 2;
    margin-bottom: -50px;
}

.step [class*="col-"] .card .card-body {
    padding-top: 65px;
    position: relative;
    text-align: center;
    border-radius: 10px;
    background-color: #fff;
    color: #212529;
}

.step .model {
    position: absolute;
    background: #fff;
    max-width: 250px;
    width: auto;
    height: auto;
    display: flex;
    justify-content: center;
    align-content: center;
    top: -20px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    right: -50%;
    border-radius: 0.25rem;
    box-shadow: 0 0 10px 2px rgb(0 0 0 / 10%);
}

.step .model.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%);
    z-index: 999;
}

.step .model .card .closebtn {
    right: 10px;
}

.step .model form .form-row label {
    width: 85%;
    text-align: left;
    font-size: 0.875rem;
    margin: 0;
}

.step .model .card .closebtn {
    cursor: pointer;
}

.step .model form .form-row .form-control:hover,
.step .model form .form-row .form-control:focus {
    box-shadow: none;
    outline: none;
}


/* FOOTER*/


/*footer .socialArea a {
      border: none;
      color: #FFF;
  }
  
  footer .socialArea a:hover,
  footer .socialArea a:focus {
      border: none;
      color: #FFF;
      background: none;
  }*/

.lh-footer {
    line-height: 1.8rem;
}

.f-legal>li+li::before {
    background: #fff none repeat scroll 0 0;
    content: "";
    height: 16px;
    left: -15px;
    position: absolute;
    top: 47%;
    transform: translateY(-35%);
    width: 1px;
}

.f-legal>li+li {
    margin-left: 25px;
}

.f-legal>li {
    position: relative;
}

.lh-footer>li>a:hover {
    color: var(--accent) !important;
    transition: color ease-in-out .3s;
    text-decoration: none;
}

.social {
    border-top: 1px solid var(--accent);
}

.social ul li a i {
    color: var(--accent);
}

.social ul li a:hover i {
    color: #fff;
}

.hvr-yellow {
    transition: color ease-in-out .3s;
    text-decoration: none !important;
}

.hvr-yellow:hover {
    color: var(--accent) !important;
}

.sliderlinespos {
    bottom: -20px;
    right: -2px;
    width: 250px;
    z-index: -1;
}

.parallaax {
    padding-top: 25vh;
    padding-bottom: 25vh;
    overflow: hidden;
    position: relative;
    width: 100%;
    background-attachment: fixed;
    background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.linespos1 {
    bottom: -8px;
    left: 14px;
    width: 250px;
    z-index: -1;
}

.linespos2 {
    bottom: -8px;
    left: 111px;
    width: 250px;
    z-index: -1;
}

.linespos3 {
    top: 10px;
    left: 14px;
    width: 250px;
    z-index: -1;
}

.overflow-visible {
    overflow: visible;
}

.numbers p {
    font-weight: 300;
}

.numbers::before {
    font-size: 9rem;
    opacity: 0.2;
    color: var(--accent);
    top: 0;
    left: 0;
    font-weight: bolder;
    position: absolute;
    font-family: 'Airline', sans-serif;
}

.numbers-1::before {
    content: '1';
}

.numbers-2::before {
    content: '2';
}

.numbers-3::before {
    content: '3';
}


/* END OF FOOTER */

@media (min-width: 1800px) {
    .top-rect:after {
        width: 8700px;
    }
}

@media (min-width: 1500px) {
    .top-rect:after {
        left: -15%;
    }
}

@media (max-width: 1200px) {
    .nav-prev {
        left: -2.5%
    }
    .nav-next {
        right: -2.5%;
    }
    .posstripesadviesform {
        top: -210px !important;
    }
}

@media (max-width: 992px) {
    .sliderlinespos {
        right: 0;
    }
    .slider-nav {
        display: none;
    }
    .navbar-collapse {
        height: 101vh !important;
        transition: height 0.2s ease-in-out;
        width: 100vw !important;
        top: 0;
        left: 0;
        position: absolute;
        background: #fff;
        z-index: -1;
    }
    .navbar-collapse ul.navbar-nav {
        margin: auto !important;
    }
    .navbar-nav>li>.dropdown-menu {
        border: none;
        display: none;
    }
    .dropdown:hover .dropdown-menu {
        display: block;
    }
    .header-nav .navbar-nav .nav-item {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    .header-nav .navbar-nav li.nav-item.contact-btn {
        padding: inherit;
    }
    .header-nav .navbar-nav .nav-item a {
        color: #000 !important;
    }
    .navbar-nav>li>.dropdown-menu li {
        width: 100%;
        display: block;
    }
    .navbar-nav>li>.dropdown-menu li a::before {
        content: "-";
    }
    .nav-item.dropdown>.dropdown-toggle {
        pointer-events: none;
    }
    .navbar-toggler:not(.collapsed) .icon-bar {
        background-color: #000 !important;
    }
    .navigation .nav-item.contact-btn,
    .navigation-page .nav-item.contact-btn {
        margin: auto;
        background: #212529 !important;
        color: #fff !important;
    }
    .homepage-header .navbar-toggler .icon-bar {
        background-color: #212529;
    }
    .top-rect {
        width: 100%;
        bottom: -2px;
    }
    .mascotpos {
        right: 0;
    }
    .linespos1 {
        max-width: 170px;
        top: 15%;
    }
    .linespos3 {
        max-width: 170px;
    }
    .linespos2 {
        max-width: 170px;
        top: 15%;
    }
    .row-reverse-mobile {
        flex-direction: column-reverse;
    }
}

@media (max-width: 768px) {
    .text-center-sm {
        text-align: center;
    }
    .responsiveHeading {
        font-size: 1.9rem;
    }
    .responsiveText {
        font-size: 1rem;
    }
    .top-rect {
        width: 158%;
    }
    .linespos1 {
        max-width: 170px;
    }
    .linespos3 {
        top: -6px;
        max-width: 170px;
    }
    .linespos2 {
        right: 0;
        left: unset;
        max-width: 170px;
    }
    .posstripesadviesform {
        top: -210px !important;
    }
    .banner_logo {
        max-width: 85%;
    }
    .mobile-flex-column {
        flex-direction: column;
    }
    .justify-content-sm-center {
        justify-content: center;
    }
    .m-mb-2 {
        margin-bottom: 2rem;
    }
    .demoDagenCalender li {
        width: calc(50% - 2rem);
        -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 2rem);
        flex: 0 0 calc(50% - 2rem);
        max-width: calc(50% - 2rem);
    }
    .stages .item.second {
        left: 28%;
        transform: none
    }
    .stages .item.third {
        left: 52%;
    }
    .stages .item.last {
        right: 0
    }
    .step .model {
        max-width: 100%;
    }
    .steps {
        height: auto;
        padding: 0 !important;
        margin: 0 !important;
    }
    .steps .step.active {
        position: relative !important;
    }
    .mascotpos {
        max-width: 200px !important;
        bottom: -17%;
        right: 0;
    }
    .parallaax {
        background-attachment: initial;
    }
    .homecontact .contact-form #send_form_btn,
    .download-form #send_form_btn {
        padding: 0.5rem 10px;
    }
    .top-rect-banner {
        width: 100%;
        top: 80px;
    }
    .top-rect-banner::after {
        left: -10%;
        height: 68%;
        transform: rotate(350deg);
    }

    .p-header-banner {
        padding-top: 3rem;
        padding-bottom: 12rem;
        margin-bottom: 10rem;
    }
}

@media (max-width: 414px) {
    .p-header-banner {
        padding-bottom: 12rem;
        margin-bottom: 0rem;
    }
}