body.loading .loader-div,
body.loading-inline .loader-div {
    display: block !important;
}
body,html {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
.body {
    position:relative;
}
.loader-div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000000;
    background: #ffffff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body.loading-inline .loader-div {
    background: rgba(255,255,255,0.5) !important;
}

.loader-div .loader {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 42px;
    height: 42px;
    margin-left: -21px;
    margin-top: -21px;
    -webkit-animation: rotateloader 2500ms 0s cubic-bezier(.8,0,.2,1) infinite;
    -ms-animation: rotateloader 2500ms 0s cubic-bezier(.8,0,.2,1) infinite;
    animation: rotateloader 2500ms 0s cubic-bezier(.8,0,.2,1) infinite;
}

.loader-div .loader:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 50%;
    background: #288EC4;
    right: 0;
    border-bottom-right-radius: 42px;
    border-top-right-radius: 42px;
}

@keyframes rotateloader {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }

}

@-webkit-keyframes rotateLoader {
    0% {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }

}/*** 
 * Name: jQuery Essentials CSS
 * Version: 1.3
 * 
 * - Es video updated
 * 
 * Date: 24-12-2018
 * 
 */

/** GENERAL POPUP **/
.popup-essential {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 10000;
    width: 100%;
    height: 100%;
    display:none;
    overflow: hidden;
    background: rgba(0,0,0,0.8);
}
.popup-essential-overlay {
    position:absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    width: 100%;
    height: 100%;
    cursor:zoom-out;
}
.popup-essential-in {
    width: 100%;
    height: 100%;
}
.popup-essential-content {
    display:table;
    width: 100%;
    height: 100%;
}
body.popup-essential-open {
    overflow: hidden !important;
}
.popup-essential .popup-essential-arrow:hover,
.popup-essential .popup-essential-close:hover {
    background: #fff;
    color: #000;
}
[data-jumper-target] {cursor:pointer;}
.popup-essential-close i {
    position: relative;
    top: 3px;
}
.popup-essential .popup-essential-arrow,
.popup-essential .popup-essential-close {
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    top: 50%;
    position: absolute;
    z-index: 5;
    opacity: 1;
    margin-top: -25px;
    color: #fff;
    background: #000;
    font-size: 25px;
    font-weight: bold;
    opacity: 1;
}
.popup-essential .popup-essential-close {
    right: 0px;
    top: 0px;
    position: absolute;
    margin-top: 0px !important;
}
.popup-essential .arrow-right {
    right: 0px;
}

.popup-essential .arrow-left {
    left: 0px;
}
.popup-essential .arrow-left.hidden {
    opacity: 0;
}
.popup-essential .arrow-right.hidden {
    opacity: 0;
}

@media screen and (max-width: 768px) {
    .popup-essential .popup-essential-arrow,
    .popup-essential .popup-essential-close {
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin-top: -20px;
        font-size: 22px;
    }
    
}

/** IMAGES POPUP **/
.popup-essential-slides{
    position: absolute;
    left: 0px;
    right: 0px;
    height: 100%;
    width: 100%;
}
.popup-essential-slides-in {
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    overflow-y: hidden !important;
    height: 100%;
    padding-bottom: 65px;
}
.popup-essential-slide {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%;
}
.popup-essential .popup-essential-slides-in .popup-essential-slide-in {
    position: absolute;
    left: 50%;
    top: 50%;
    max-height: 100%;
    max-width: 100%;
    display:block;
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.popup-essential-slide-in img {
    max-width: 100%;
    display:block;
}

.popup-essential-slide-caption {
    position: absolute;
    bottom: 0px;
    background: rgba(0,0,0,0.3);
    width: 100%;
    color: #fff;
    font-size: 12px;
    padding: 10px;
    white-space: normal;
}

.popup-essential-slides-thumbs {
    position: fixed;
    bottom: 0px;
    left: 0px;
    width: 100%;
    overflow: hidden;
}
.popup-essential-slides-thumbs-in {
    white-space: nowrap;
    margin: 0 auto;
    text-align: center;
}
.popup-essential-thumb {
    display: inline-block;
    margin: 5px;
    cursor:pointer;
    border: 1px solid transparent;
    opacity: 0.5;
}
.popup-essential-thumb.active {
	opacity: 1;
    border: 1px solid #fff;
}
.popup-essential-thumb img {
    max-height: 50px;
    max-width: 100px;
    display: inline-block;
    vertical-align: middle;
}

/** PARALLAX **/
.es-parallax-container {
    position:relative;
    z-index: 0;
    -webkit-backface-visibility: hidden;
    overflow:hidden;
}
.es-parallax {
    position: absolute;
    left: 0;
    right: 0;
    height: 0px;
    width: 100%;
    height: 100%;
    top: 0px;
    z-index: -1;
    -webkit-backface-visibility: hidden;
}
.es-parallax-media {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position:absolute;
    bottom: 0px;
    height: 100%;
    width: 100%;
    -webkit-backface-visibility: hidden;
    -webkit-perspective: 1000;
    backface-visibility: hidden;
    top: 0px;
    webkit-backface-visibility: hidden;
    transform: translate3d(0px,0px,0px);
    visibility: visible;
}


/** CONTENT & VIDEO POPUP **/
.popup-essential-video .popup-essential-in {
    overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.popup-essential-content-video {
    margin: 0 auto;
}
.popup-essential-content-video .plyr {
    margin: 0 auto;
}
.popup-essential-content-in {
    display:table-cell;
    vertical-align:middle;
}
.popup-essential-content-in-content {
    display:table-cell;
    vertical-align:middle;
}

/** ANIMATIONS **/
[data-es-animation] {visibility:hidden;webkit-backface-visibility: hidden;transform: translate3d(0px,0px,0px);}   

/** FADE **/
[data-es-animation="fade"],
[data-es-animation="fadeTop"],
[data-es-animation="fadeLeft"],
[data-es-animation="fadeBottom"],
[data-es-animation="fadeRight"] {
    opacity: 0;
}
[data-es-animation="fade"].es-animated,
[data-es-animation="fadeTop"].es-animated,
[data-es-animation="fadeLeft"].es-animated,
[data-es-animation="fadeBottom"].es-animated,
[data-es-animation="fadeRight"].es-animated {
    opacity: 1 !important;
}


/** slideTop **/
/** fadeTop **/
/** slideBottom **/
/** fadeBottom **/
[data-es-animation="slideTop"].es-animated,
[data-es-animation="fadeTop"].es-animated,
[data-es-animation="slideBottom"].es-animated,
[data-es-animation="fadeBottom"].es-animated,
[data-es-animation="textCharactersMaskBottom"].es-animated div span {
   transform: translateY(0) !important;
}

/** slideLeft **/
/** fadeLeft **/
/** slideRight **/
/** fadeRight **/
[data-es-animation="slideLeft"].es-animated,
[data-es-animation="fadeLeft"].es-animated,
[data-es-animation="slideRight"].es-animated,
[data-es-animation="fadeRight"].es-animated,
[data-es-animation="textCharactersMaskLeft"].es-animated div span {
   transform: translateX(0) !important;
}


/*** 
 * 
 */

[data-es-animation="textCharactersMaskLeft"] div,
[data-es-animation="textCharactersMaskRight"] div,
[data-es-animation="textCharactersMaskTop"] div,
[data-es-animation="textCharactersMaskBottom"] div {
    display:inline-block;
    overflow:hidden;
}
[data-es-animation="textCharactersMaskLeft"] div span,
[data-es-animation="textCharactersMaskRight"] div span,
[data-es-animation="textCharactersMaskTop"] div span,
[data-es-animation="textCharactersMaskBottom"] div span {
    display:inline-block;
    position:relative;
    width: 100%;
    height: 100%;
}

/** WILL CHANGE **/
/*** transition-property **/
[data-es-animation="fade"]  {will-change: opacity;transition-property:opacity;}
[data-es-animation="fadeTop"],
[data-es-animation="fadeLeft"],
[data-es-animation="fadeBottom"],
[data-es-animation="fadeRight"] {will-change: opacity, transform;transition-property:opacity,transform;}

[data-es-animation="slideTop"],
[data-es-animation="slideLeft"],
[data-es-animation="slideBottom"],
[data-es-animation="slideRight"] {will-change: transform;transition-property:transform;}



/** CURSOR **/
    .es-cursor-loaded,
    .es-cursor-loaded * {
        cursor:none !important;
    }
.es-cursor {
    position: fixed;
    z-index: 99999999999;
    pointer-events: none;
    width: 20px;
    height: 20px;
    background: #000;
    left: -1em;
    top: -1em;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.es-cursor-in {
    width: 0px;
    position:absolute;
    height: 0px;
    top: 50%;
    left: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: transparent;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    border: 2px solid transparent;
}
.es-cursor-hover-effect .es-cursor-in {
    width: 100%;
    height: 100%;
}

.es-cursor.es-cursor-hover-effect .es-cursor-in {
    height: 30px;
    width: 30px;
    border-color: #000;
}

/** MARKERS **/
.es-markers {
    display: none;
}

/** VIDEO **/
@keyframes plyr-progress{to{background-position:25px 0}}@keyframes plyr-popup{0%{opacity:.5;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}@keyframes plyr-fade-in{from{opacity:0}to{opacity:1}}.plyr{-moz-osx-font-smoothing:auto;-webkit-font-smoothing:subpixel-antialiased;direction:ltr;font-family:Avenir,"Avenir Next","Helvetica Neue","Segoe UI",Helvetica,Arial,sans-serif;font-variant-numeric:tabular-nums;font-weight:500;line-height:1.7;max-width:100%;min-width:200px;position:relative;text-shadow:none;transition:box-shadow .3s ease}.plyr audio,.plyr video{border-radius:inherit;height:auto;vertical-align:middle;width:100%}.plyr button{font:inherit;line-height:inherit;width:auto}.plyr:focus{outline:0}.plyr--full-ui{box-sizing:border-box}.plyr--full-ui *,.plyr--full-ui ::after,.plyr--full-ui ::before{box-sizing:inherit}.plyr--full-ui a,.plyr--full-ui button,.plyr--full-ui input,.plyr--full-ui label{touch-action:manipulation}.plyr__badge{background:#4f5b5f;border-radius:2px;color:#fff;font-size:9px;line-height:1;padding:3px 4px}.plyr--full-ui ::-webkit-media-text-track-container{display:none}.plyr__captions{animation:plyr-fade-in .3s ease;bottom:0;color:#fff;display:none;font-size:14px;left:0;padding:10px;position:absolute;text-align:center;transition:transform .4s ease-in-out;width:100%}.plyr__captions .plyr__caption{background:rgba(0,0,0,.8);border-radius:2px;-webkit-box-decoration-break:clone;box-decoration-break:clone;line-height:185%;padding:.2em .5em;white-space:pre-wrap}.plyr__captions .plyr__caption div{display:inline}.plyr__captions span:empty{display:none}@media (min-width:480px){.plyr__captions{font-size:16px;padding:20px}}@media (min-width:768px){.plyr__captions{font-size:18px}}.plyr--captions-active .plyr__captions{display:block}.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty)~.plyr__captions{transform:translateY(-40px)}.plyr__control{background:0 0;border:0;border-radius:3px;color:inherit;cursor:pointer;flex-shrink:0;overflow:visible;padding:7px;position:relative;transition:all .3s ease}.plyr__control svg{display:block;fill:currentColor;height:18px;pointer-events:none;width:18px}.plyr__control:focus{outline:0}.plyr__control.plyr__tab-focus{box-shadow:0 0 0 5px rgba(26,175,255,.5);outline:0}a.plyr__control{text-decoration:none}a.plyr__control::after,a.plyr__control::before{display:none}.plyr__control.plyr__control--pressed .icon--not-pressed,.plyr__control.plyr__control--pressed .label--not-pressed,.plyr__control:not(.plyr__control--pressed) .icon--pressed,.plyr__control:not(.plyr__control--pressed) .label--pressed{display:none}.plyr--audio .plyr__control.plyr__tab-focus,.plyr--audio .plyr__control:hover,.plyr--audio .plyr__control[aria-expanded=true]{background:#1aafff;color:#fff}.plyr--video .plyr__control svg{filter:drop-shadow(0 1px 1px rgba(0, 0, 0, .15))}.plyr--video .plyr__control.plyr__tab-focus,.plyr--video .plyr__control:hover,.plyr--video .plyr__control[aria-expanded=true]{background:#1aafff;color:#fff}.plyr__control--overlaid{background:rgba(26,175,255,.8);border:0;border-radius:100%;box-shadow:0 1px 1px rgba(0,0,0,.15);color:#fff;display:none;left:50%;padding:15px;position:absolute;top:50%;transform:translate(-50%,-50%);z-index:2}.plyr__control--overlaid svg{left:2px;position:relative}.plyr__control--overlaid:focus,.plyr__control--overlaid:hover{background:#1aafff}.plyr--playing .plyr__control--overlaid{opacity:0;visibility:hidden}.plyr--full-ui.plyr--video .plyr__control--overlaid{display:block}.plyr--full-ui ::-webkit-media-controls{display:none}.plyr__controls{align-items:center;display:flex;justify-content:flex-end;text-align:center}.plyr__controls .plyr__menu,.plyr__controls .plyr__progress,.plyr__controls .plyr__time,.plyr__controls .plyr__volume,.plyr__controls>.plyr__control{margin-left:5px}.plyr__controls .plyr__menu+.plyr__control,.plyr__controls .plyr__progress+.plyr__control,.plyr__controls>.plyr__control+.plyr__control,.plyr__controls>.plyr__control+.plyr__menu{margin-left:2px}.plyr__controls>.plyr__control:first-child,.plyr__controls>.plyr__control:first-child+[data-plyr=pause]{margin-left:0;margin-right:auto}.plyr__controls:empty{display:none}@media (min-width:480px){.plyr__controls .plyr__menu,.plyr__controls .plyr__progress,.plyr__controls .plyr__time,.plyr__controls .plyr__volume,.plyr__controls>.plyr__control{margin-left:10px}}.plyr--audio .plyr__controls{background:#fff;border-radius:inherit;color:#4f5b5f;padding:10px}.plyr--video .plyr__controls{background:linear-gradient(rgba(0,0,0,0),rgba(0,0,0,.7));border-bottom-left-radius:inherit;border-bottom-right-radius:inherit;bottom:0;color:#fff;left:0;padding:20px 5px 5px;position:absolute;right:0;transition:opacity .4s ease-in-out,transform .4s ease-in-out;z-index:3}@media (min-width:480px){.plyr--video .plyr__controls{padding:35px 10px 10px}}.plyr--video.plyr--hide-controls .plyr__controls{opacity:0;pointer-events:none;transform:translateY(100%)}.plyr [data-plyr=airplay],.plyr [data-plyr=captions],.plyr [data-plyr=fullscreen],.plyr [data-plyr=pip]{display:none}.plyr--airplay-supported [data-plyr=airplay],.plyr--captions-enabled [data-plyr=captions],.plyr--fullscreen-enabled [data-plyr=fullscreen],.plyr--pip-supported [data-plyr=pip]{display:inline-block}.plyr__video-embed{height:0;padding-bottom:56.25%;position:relative}.plyr__video-embed iframe{border:0;height:100%;left:0;position:absolute;top:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.plyr--full-ui .plyr__video-embed>.plyr__video-embed__container{padding-bottom:240%;position:relative;transform:translateY(-38.28125%)}.plyr__menu{display:flex;position:relative}.plyr__menu .plyr__control svg{transition:transform .3s ease}.plyr__menu .plyr__control[aria-expanded=true] svg{transform:rotate(90deg)}.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip{display:none}.plyr__menu__container{animation:plyr-popup .2s ease;background:rgba(255,255,255,.9);border-radius:4px;bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);color:#4f5b5f;font-size:16px;margin-bottom:10px;position:absolute;right:-3px;text-align:left;white-space:nowrap;z-index:3}.plyr__menu__container>div{overflow:hidden;transition:height .35s cubic-bezier(.4,0,.2,1),width .35s cubic-bezier(.4,0,.2,1)}.plyr__menu__container::after{border:4px solid transparent;border-top-color:rgba(255,255,255,.9);content:'';height:0;position:absolute;right:15px;top:100%;width:0}.plyr__menu__container [role=menu]{padding:7px}.plyr__menu__container [role=menuitem],.plyr__menu__container [role=menuitemradio]{margin-top:2px}.plyr__menu__container [role=menuitem]:first-child,.plyr__menu__container [role=menuitemradio]:first-child{margin-top:0}.plyr__menu__container .plyr__control{align-items:center;color:#4f5b5f;display:flex;font-size:14px;padding:4px 11px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;width:100%}.plyr__menu__container .plyr__control>span{align-items:inherit;display:flex;width:100%}.plyr__menu__container .plyr__control::after{border:4px solid transparent;content:'';position:absolute;top:50%;transform:translateY(-50%)}.plyr__menu__container .plyr__control--forward{padding-right:28px}.plyr__menu__container .plyr__control--forward::after{border-left-color:rgba(79,91,95,.8);right:5px}.plyr__menu__container .plyr__control--forward.plyr__tab-focus::after,.plyr__menu__container .plyr__control--forward:hover::after{border-left-color:currentColor}.plyr__menu__container .plyr__control--back{font-weight:500;margin:7px;margin-bottom:3px;padding-left:28px;position:relative;width:calc(100% - 14px)}.plyr__menu__container .plyr__control--back::after{border-right-color:rgba(79,91,95,.8);left:7px}.plyr__menu__container .plyr__control--back::before{background:#b7c5cd;box-shadow:0 1px 0 #fff;content:'';height:1px;left:0;margin-top:4px;overflow:hidden;position:absolute;right:0;top:100%}.plyr__menu__container .plyr__control--back.plyr__tab-focus::after,.plyr__menu__container .plyr__control--back:hover::after{border-right-color:currentColor}.plyr__menu__container .plyr__control[role=menuitemradio]{padding-left:7px}.plyr__menu__container .plyr__control[role=menuitemradio]::after,.plyr__menu__container .plyr__control[role=menuitemradio]::before{border-radius:100%}.plyr__menu__container .plyr__control[role=menuitemradio]::before{background:rgba(0,0,0,.1);content:'';display:block;flex-shrink:0;height:16px;margin-right:10px;transition:all .3s ease;width:16px}.plyr__menu__container .plyr__control[role=menuitemradio]::after{background:#fff;border:0;height:6px;left:12px;opacity:0;top:50%;transform:translateY(-50%) scale(0);transition:transform .3s ease,opacity .3s ease;width:6px}.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before{background:#1aafff}.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after{opacity:1;transform:translateY(-50%) scale(1)}.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus::before,.plyr__menu__container .plyr__control[role=menuitemradio]:hover::before{background:rgba(0,0,0,.1)}.plyr__menu__container .plyr__menu__value{align-items:center;display:flex;margin-left:auto;margin-right:-5px;overflow:hidden;padding-left:25px;pointer-events:none}.plyr--full-ui input[type=range]{-webkit-appearance:none;background:0 0;border:0;border-radius:28px;color:#1aafff;display:block;height:20px;margin:0;padding:0;transition:box-shadow .3s ease;width:100%}.plyr--full-ui input[type=range]::-webkit-slider-runnable-track{background:0 0;border:0;border-radius:2px;height:4px;transition:box-shadow .3s ease;-webkit-user-select:none;user-select:none;background-image:linear-gradient(to right,currentColor var(--value,0),transparent var(--value,0))}.plyr--full-ui input[type=range]::-webkit-slider-thumb{background:#fff;border:0;border-radius:100%;box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(47,52,61,.2);height:14px;position:relative;transition:all .2s ease;width:14px;-webkit-appearance:none;margin-top:-5px}.plyr--full-ui input[type=range]::-moz-range-track{background:0 0;border:0;border-radius:2px;height:4px;transition:box-shadow .3s ease;-moz-user-select:none;user-select:none}.plyr--full-ui input[type=range]::-moz-range-thumb{background:#fff;border:0;border-radius:100%;box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(47,52,61,.2);height:14px;position:relative;transition:all .2s ease;width:14px}.plyr--full-ui input[type=range]::-moz-range-progress{background:currentColor;border-radius:2px;height:4px}.plyr--full-ui input[type=range]::-ms-track{background:0 0;border:0;border-radius:2px;height:4px;transition:box-shadow .3s ease;-ms-user-select:none;user-select:none;color:transparent}.plyr--full-ui input[type=range]::-ms-fill-upper{background:0 0;border:0;border-radius:2px;height:4px;transition:box-shadow .3s ease;-ms-user-select:none;user-select:none}.plyr--full-ui input[type=range]::-ms-fill-lower{background:0 0;border:0;border-radius:2px;height:4px;transition:box-shadow .3s ease;-ms-user-select:none;user-select:none;background:currentColor}.plyr--full-ui input[type=range]::-ms-thumb{background:#fff;border:0;border-radius:100%;box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(47,52,61,.2);height:14px;position:relative;transition:all .2s ease;width:14px;margin-top:0}.plyr--full-ui input[type=range]::-ms-tooltip{display:none}.plyr--full-ui input[type=range]:focus{outline:0}.plyr--full-ui input[type=range]::-moz-focus-outer{border:0}.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track{box-shadow:0 0 0 5px rgba(26,175,255,.5);outline:0}.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track{box-shadow:0 0 0 5px rgba(26,175,255,.5);outline:0}.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track{box-shadow:0 0 0 5px rgba(26,175,255,.5);outline:0}.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track{background-color:rgba(255,255,255,.25)}.plyr--full-ui.plyr--video input[type=range]::-moz-range-track{background-color:rgba(255,255,255,.25)}.plyr--full-ui.plyr--video input[type=range]::-ms-track{background-color:rgba(255,255,255,.25)}.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(47,52,61,.2),0 0 0 3px rgba(255,255,255,.5)}.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(47,52,61,.2),0 0 0 3px rgba(255,255,255,.5)}.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(47,52,61,.2),0 0 0 3px rgba(255,255,255,.5)}.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track{background-color:rgba(183,197,205,.66)}.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track{background-color:rgba(183,197,205,.66)}.plyr--full-ui.plyr--audio input[type=range]::-ms-track{background-color:rgba(183,197,205,.66)}.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(47,52,61,.2),0 0 0 3px rgba(0,0,0,.1)}.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(47,52,61,.2),0 0 0 3px rgba(0,0,0,.1)}.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb{box-shadow:0 1px 1px rgba(0,0,0,.15),0 0 0 1px rgba(47,52,61,.2),0 0 0 3px rgba(0,0,0,.1)}.plyr__poster{background-color:#000;background-position:50% 50%;background-repeat:no-repeat;background-size:contain;height:100%;left:0;opacity:0;position:absolute;top:0;transition:opacity .2s ease;width:100%;z-index:1}.plyr--stopped.plyr__poster-enabled .plyr__poster{opacity:1}.plyr__time{font-size:14px}.plyr__time+.plyr__time::before{content:'\2044';margin-right:10px}@media (max-width:767px){.plyr__time+.plyr__time{display:none}}.plyr--video .plyr__time{text-shadow:0 1px 1px rgba(0,0,0,.15)}.plyr__tooltip{background:rgba(255,255,255,.9);border-radius:3px;bottom:100%;box-shadow:0 1px 2px rgba(0,0,0,.15);color:#4f5b5f;font-size:14px;font-weight:500;left:50%;line-height:1.3;margin-bottom:10px;opacity:0;padding:5px 7.5px;pointer-events:none;position:absolute;transform:translate(-50%,10px) scale(.8);transform-origin:50% 100%;transition:transform .2s .1s ease,opacity .2s .1s ease;white-space:nowrap;z-index:2}.plyr__tooltip::before{border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid rgba(255,255,255,.9);bottom:-4px;content:'';height:0;left:50%;position:absolute;transform:translateX(-50%);width:0;z-index:2}.plyr .plyr__control.plyr__tab-focus .plyr__tooltip,.plyr .plyr__control:hover .plyr__tooltip,.plyr__tooltip--visible{opacity:1;transform:translate(-50%,0) scale(1)}.plyr .plyr__control:hover .plyr__tooltip{z-index:3}.plyr__controls>.plyr__control:first-child .plyr__tooltip,.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip{left:0;transform:translate(0,10px) scale(.8);transform-origin:0 100%}.plyr__controls>.plyr__control:first-child .plyr__tooltip::before,.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip::before{left:16px}.plyr__controls>.plyr__control:last-child .plyr__tooltip{left:auto;right:0;transform:translate(0,10px) scale(.8);transform-origin:100% 100%}.plyr__controls>.plyr__control:last-child .plyr__tooltip::before{left:auto;right:16px;transform:translateX(50%)}.plyr__controls>.plyr__control:first-child .plyr__tooltip--visible,.plyr__controls>.plyr__control:first-child+.plyr__control .plyr__tooltip--visible,.plyr__controls>.plyr__control:first-child+.plyr__control.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:first-child+.plyr__control:hover .plyr__tooltip,.plyr__controls>.plyr__control:first-child.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:first-child:hover .plyr__tooltip,.plyr__controls>.plyr__control:last-child .plyr__tooltip--visible,.plyr__controls>.plyr__control:last-child.plyr__tab-focus .plyr__tooltip,.plyr__controls>.plyr__control:last-child:hover .plyr__tooltip{transform:translate(0,0) scale(1)}.plyr--video{background:#000;overflow:hidden}.plyr--video.plyr--menu-open{overflow:visible}.plyr__video-wrapper{background:#000;border-radius:inherit;overflow:hidden;position:relative;z-index:0}.plyr__progress{flex:1;left:7px;margin-right:14px;position:relative}.plyr__progress input[type=range],.plyr__progress__buffer{margin-left:-7px;margin-right:-7px;width:calc(100% + 14px)}.plyr__progress input[type=range]{position:relative;z-index:2}.plyr__progress .plyr__tooltip{font-size:14px;left:0}.plyr__progress__buffer{-webkit-appearance:none;background:0 0;border:0;border-radius:100px;height:4px;left:0;margin-top:-2px;padding:0;position:absolute;top:50%}.plyr__progress__buffer::-webkit-progress-bar{background:0 0;transition:width .2s ease}.plyr__progress__buffer::-webkit-progress-value{background:currentColor;border-radius:100px;min-width:4px}.plyr__progress__buffer::-moz-progress-bar{background:currentColor;border-radius:100px;min-width:4px;transition:width .2s ease}.plyr__progress__buffer::-ms-fill{border-radius:100px;transition:width .2s ease}.plyr--video .plyr__progress__buffer{box-shadow:0 1px 1px rgba(0,0,0,.15);color:rgba(255,255,255,.25)}.plyr--audio .plyr__progress__buffer{color:rgba(183,197,205,.66)}.plyr--loading .plyr__progress__buffer{animation:plyr-progress 1s linear infinite;background-image:linear-gradient(-45deg,rgba(47,52,61,.6) 25%,transparent 25%,transparent 50%,rgba(47,52,61,.6) 50%,rgba(47,52,61,.6) 75%,transparent 75%,transparent);background-repeat:repeat-x;background-size:25px 25px;color:transparent}.plyr--video.plyr--loading .plyr__progress__buffer{background-color:rgba(255,255,255,.25)}.plyr--audio.plyr--loading .plyr__progress__buffer{background-color:rgba(183,197,205,.66)}.plyr__volume{align-items:center;display:flex;flex:1;position:relative}.plyr__volume input[type=range]{margin-left:5px;position:relative;z-index:2}@media (min-width:480px){.plyr__volume{max-width:90px}}@media (min-width:768px){.plyr__volume{max-width:110px}}.plyr--is-ios .plyr__volume{display:none!important}.plyr--is-ios.plyr--vimeo [data-plyr=mute]{display:none!important}.plyr:-webkit-full-screen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-moz-full-screen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-ms-fullscreen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:fullscreen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-webkit-full-screen video{height:100%}.plyr:-moz-full-screen video{height:100%}.plyr:-ms-fullscreen video{height:100%}.plyr:fullscreen video{height:100%}.plyr:-webkit-full-screen .plyr__video-wrapper{height:100%;width:100%}.plyr:-moz-full-screen .plyr__video-wrapper{height:100%;width:100%}.plyr:-ms-fullscreen .plyr__video-wrapper{height:100%;width:100%}.plyr:fullscreen .plyr__video-wrapper{height:100%;width:100%}.plyr:-webkit-full-screen .plyr__video-embed{overflow:visible}.plyr:-moz-full-screen .plyr__video-embed{overflow:visible}.plyr:-ms-fullscreen .plyr__video-embed{overflow:visible}.plyr:fullscreen .plyr__video-embed{overflow:visible}.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper{height:0;top:50%;transform:translateY(-50%)}.plyr:-moz-full-screen.plyr--vimeo .plyr__video-wrapper{height:0;top:50%;transform:translateY(-50%)}.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper{height:0;top:50%;transform:translateY(-50%)}.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper{height:0;top:50%;transform:translateY(-50%)}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen{display:block}.plyr:fullscreen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-webkit-full-screen.plyr--hide-controls{cursor:none}.plyr:-moz-full-screen.plyr--hide-controls{cursor:none}.plyr:-ms-fullscreen.plyr--hide-controls{cursor:none}.plyr:fullscreen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-webkit-full-screen .plyr__captions{font-size:21px}.plyr:-moz-full-screen .plyr__captions{font-size:21px}.plyr:-ms-fullscreen .plyr__captions{font-size:21px}.plyr:fullscreen .plyr__captions{font-size:21px}}.plyr:-webkit-full-screen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-webkit-full-screen video{height:100%}.plyr:-webkit-full-screen .plyr__video-wrapper{height:100%;width:100%}.plyr:-webkit-full-screen .plyr__video-embed{overflow:visible}.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper{height:0;top:50%;transform:translateY(-50%)}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-webkit-full-screen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-webkit-full-screen .plyr__captions{font-size:21px}}.plyr:-moz-full-screen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-moz-full-screen video{height:100%}.plyr:-moz-full-screen .plyr__video-wrapper{height:100%;width:100%}.plyr:-moz-full-screen .plyr__video-embed{overflow:visible}.plyr:-moz-full-screen.plyr--vimeo .plyr__video-wrapper{height:0;top:50%;transform:translateY(-50%)}.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-moz-full-screen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-moz-full-screen .plyr__captions{font-size:21px}}.plyr:-ms-fullscreen{background:#000;border-radius:0!important;height:100%;margin:0;width:100%}.plyr:-ms-fullscreen video{height:100%}.plyr:-ms-fullscreen .plyr__video-wrapper{height:100%;width:100%}.plyr:-ms-fullscreen .plyr__video-embed{overflow:visible}.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper{height:0;top:50%;transform:translateY(-50%)}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen{display:block}.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr:-ms-fullscreen.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr:-ms-fullscreen .plyr__captions{font-size:21px}}.plyr--fullscreen-fallback{background:#000;border-radius:0!important;height:100%;margin:0;width:100%;bottom:0;left:0;position:fixed;right:0;top:0;z-index:10000000}.plyr--fullscreen-fallback video{height:100%}.plyr--fullscreen-fallback .plyr__video-wrapper{height:100%;width:100%}.plyr--fullscreen-fallback .plyr__video-embed{overflow:visible}.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper{height:0;top:50%;transform:translateY(-50%)}.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen{display:block}.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen+svg{display:none}.plyr--fullscreen-fallback.plyr--hide-controls{cursor:none}@media (min-width:1024px){.plyr--fullscreen-fallback .plyr__captions{font-size:21px}}.plyr__ads{border-radius:inherit;bottom:0;cursor:pointer;left:0;overflow:hidden;position:absolute;right:0;top:0;z-index:-1}.plyr__ads>div,.plyr__ads>div iframe{height:100%;position:absolute;width:100%}.plyr__ads::after{background:rgba(47,52,61,.8);border-radius:2px;bottom:10px;color:#fff;content:attr(data-badge-text);font-size:11px;padding:2px 6px;pointer-events:none;position:absolute;right:10px;z-index:3}.plyr__ads::after:empty{display:none}.plyr__cues{background:currentColor;display:block;height:4px;left:0;margin:-2px 0 0;opacity:.8;position:absolute;top:50%;width:3px;z-index:3}.plyr--no-transition{transition:none!important}.plyr__sr-only{clip:rect(1px,1px,1px,1px);overflow:hidden;border:0!important;height:1px!important;padding:0!important;position:absolute!important;width:1px!important}.plyr [hidden]{display:none!important}@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;700;800&display=swap");

@font-face {
    font-family: 'pieq';
    src:  url(//pieq.nl/wp-content/themes/bz-pieq/assets/fonts/pieq.eot?pqxjaz);
    src:  url(//pieq.nl/wp-content/themes/bz-pieq/assets/fonts/pieq.eot?pqxjaz#iefix) format('embedded-opentype'),
    url(//pieq.nl/wp-content/themes/bz-pieq/assets/fonts/pieq.woff2?pqxjaz) format('woff2'),
    url(//pieq.nl/wp-content/themes/bz-pieq/assets/fonts/pieq.ttf?pqxjaz) format('truetype'),
    url(//pieq.nl/wp-content/themes/bz-pieq/assets/fonts/pieq.woff?pqxjaz) format('woff'),
    url(//pieq.nl/wp-content/themes/bz-pieq/assets/fonts/pieq.svg?pqxjaz#icomoon) format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}


[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'pieq' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


.ft,
[class^="ft-"], [class*=" ft-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'untitled-font-9' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;

    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}



@font-face {
    font-family: "untitled-font-9";
    src:url(//pieq.nl/wp-content/themes/bz-pieq/assets/fonts/untitled-font-9.eot);
    src:url(//pieq.nl/wp-content/themes/bz-pieq/assets/fonts/untitled-font-9.eot?#iefix) format("embedded-opentype"),
    url(//pieq.nl/wp-content/themes/bz-pieq/assets/fonts/untitled-font-9.woff) format("woff"),
    url(//pieq.nl/wp-content/themes/bz-pieq/assets/fonts/untitled-font-9.ttf) format("truetype"),
    url(//pieq.nl/wp-content/themes/bz-pieq/assets/fonts/untitled-font-9.svg#untitled-font-9) format("svg");
    font-weight: normal;
    font-style: normal;

}


.ft,
[class^="ft-"]:before,
[class*=" ft-"]:before {
    font-family: "untitled-font-9" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-pinterest:before {
    content: "\e900";
}
.icon-youtube:before {
    content: "\e901";
}
.icon-brand:before {
    content: "\e901";
}
.icon-social:before {
    content: "\e901";
}
.icon-linkedin:before {
    content: "\e902";
}
.icon-brand1:before {
    content: "\e902";
}
.icon-social1:before {
    content: "\e902";
}
.icon-instagram:before {
    content: "\e903";
}
.icon-brand2:before {
    content: "\e903";
}
.icon-social2:before {
    content: "\e903";
}
.icon-twitter:before {
    content: "\e904";
}
.icon-brand3:before {
    content: "\e904";
}
.icon-tweet:before {
    content: "\e904";
}
.icon-social3:before {
    content: "\e904";
}
.icon-facebook:before {
    content: "\e905";
}
.icon-brand4:before {
    content: "\e905";
}
.icon-social4:before {
    content: "\e905";
}
.icon-clear:before {
    content: "\e906";
}
.icon-close:before {
    content: "\e906";
}
.icon-arrow_upward:before {
    content: "\e907";
}
.icon-arrow_downward:before {
    content: "\e908";
}
.icon-arrow_back:before {
    content: "\e909";
}
.icon-arrow_forward:before {
    content: "\e90a";
}
.icon-arrow-right-circle:before {
    content: "\61";
}
.icon-arrow-left-circle:before {
    content: "\62";
}
.icon-phone:before {
    content: "\63";
}
.icon-message-square:before {
    content: "\64";
}.main-to-red .header-nav-in a:hover,
.main-to-red .header-nav-in a.active {
    color: #FE6263 !important;
}

.main-to-red .button-6 .button-in,
.main-to-red .button-1 .button-in {
    border-color: #BA4848;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ba4848+0,fe6263+100 */
    background: rgb(186,72,72); /* Old browsers */
    background: -moz-linear-gradient(45deg, rgba(186,72,72,1) 0%, rgba(254,98,99,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, rgba(186,72,72,1) 0%,rgba(254,98,99,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg, rgba(186,72,72,1) 0%,rgba(254,98,99,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ba4848', endColorstr='#fe6263',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.main-to-red .tel-button .ft span {
    background: #FE6263 !important;
}
.main-to-red .header-nav-dropdown .arrow,
.main-to-red .dots span,
.main-to-red .header-inner:after,
.main-to-red .border-scroll,
.main-to-red .footer-top .background-in,
.main-to-red .component ul li:before,
.main-to-red .loader-div .loader:before {
    background: #FE6263;
}

.main-to-red .component p a:hover,
.main-to-red .button-3 i,
.main-to-red .footer-nav a:hover{
    color: #FE6263;
}

.main-to-red .tel-button .ft {
    color: #FE6263 !important;
}

@media screen and (max-width: 768px){
    .main-to-red .header-nav {
        background: #FE6263;
    }
}

.main-to-red .team-selected-image,
.main-to-red .footer-top {
    border-color: #FE6263;
}

.main-to-green .header-nav-in a:hover,
.main-to-green .header-nav-in a.active {
    color: #15C594 !important;
}

.main-to-green .button-6 .button-in,
.main-to-green .button-1 .button-in {
    border-color: #0F8F6B;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0f8f6b+0,15c594+100 */
    background: rgb(15,143,107); /* Old browsers */
    background: -moz-linear-gradient(45deg,  rgba(15,143,107,1) 0%, rgba(21,197,148,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg,  rgba(15,143,107,1) 0%,rgba(21,197,148,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg,  rgba(15,143,107,1) 0%,rgba(21,197,148,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0f8f6b', endColorstr='#15c594',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

}

.main-to-green .tel-button .ft span {
    background: #15C594 !important;
}
.main-to-green .header-nav-dropdown .arrow,
.main-to-green .dots span,
.main-to-green .header-inner:after,
.main-to-green .border-scroll,
.main-to-green .footer-top .background-in,
.main-to-green .component ul li:before,
.main-to-green .loader-div .loader:before {
    background: #15C594;
}

.main-to-green .component p a:hover,
.main-to-green .button-3 i,
.main-to-green .footer-nav a:hover {
    color: #15C594;
}

.main-to-green .tel-button .ft {
    color: #15C594 !important;
}

@media screen and (max-width: 768px){
    .main-to-green .header-nav {
        background: #15C594;
    }
}

.main-to-green .team-selected-image,
.main-to-green .footer-top {
    border-color: #15C594;
}

.main-to-yellow .header-nav-in a:hover,
.main-to-yellow .header-nav-in a.active {
    color: #FFCC01 !important;
}

.main-to-yellow .button-6 .button-in,
.main-to-yellow .button-1 .button-in {
    border-color: #E1B400;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e1b400+0,ffcc01+100 */
    background: rgb(225,180,0); /* Old browsers */
    background: -moz-linear-gradient(45deg,  rgba(225,180,0,1) 0%, rgba(255,204,1,1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg,  rgba(225,180,0,1) 0%,rgba(255,204,1,1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg,  rgba(225,180,0,1) 0%,rgba(255,204,1,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e1b400', endColorstr='#ffcc01',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */

}

.main-to-yellow .tel-button .ft span {
    background: #FFCC01 !important;
}
.main-to-yellow .header-nav-dropdown .arrow,
.main-to-yellow .dots span,
.main-to-yellow .header-inner:after,
.main-to-yellow .border-scroll,
.main-to-yellow .footer-top .background-in,
.main-to-yellow .component ul li:before,
.main-to-yellow .loader-div .loader:before {
    background: #FFCC01;
}

.main-to-yellow .dots span:hover {
    background: #FE6263 !important;
}

.main-to-yellow .component p a:hover,
.main-to-yellow .button-3 i,
.main-to-yellow .footer-nav a:hover {
    color: #FFCC01;
}

.main-to-yellow .tel-button .ft {
    color:#FFCC01 !important;
}

.main-to-yellow .team-selected-image,
.main-to-yellow .footer-top {
    border-color: #FFCC01;
}

@media screen and (max-width: 768px){
    .main-to-yellow .header-nav {
        background: #FFCC01;
    }

    .header-nav-in a:hover,
    .main-to-red .header-nav-in a:hover,
    .main-to-green .header-nav-in a:hover,
    .main-to-yellow .header-nav-in a:hover,
    .header-nav-in a.active,
    .main-to-red .header-nav-in a.active,
    .main-to-green .header-nav-in a.active,
    .main-to-yellow .header-nav-in a.active{
        color: #FFF !important;
        text-decoration: underline !important;
    }

    .header-nav-in a.active {
        font-weight: 700;
    }
}

.header-nav-dropdown .text-3 {
    font-size: 0.9em;
}/** RESET **/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
    margin: 0px !important;
    overflow-x: hidden !important;
}

body, html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p {
    -webkit-margin-before: 0px;
    -webkit-margin-after: 0px;
    -webkit-margin-start: 0px;
    -webkit-margin-end: 0px;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

div,
input,
textarea,
button,
a {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

strong,
b,
.strong,
.bold {
    font-weight: 700;
}

button, input {
    outline: none !important;
}

button {
    cursor: pointer;
    border: none;
}

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

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

select::-ms-expand,
input::-ms-clear {
    display: none;
}

textarea {
    overflow: auto;
}

.clear {
    clear: both;
}

img, video {
    max-width: 100%;
    display: block;
}

.bg {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
    overflow: hidden;
}

.item {
    position: relative;
}

.overlay {
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
}

.loading * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

.container {
    position: relative;
}

.wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
}

button {
    font-family: inherit !important;
}


/** COMMON **/
body, html {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    background: #fff;
    color: #000000;
    line-height: 1.667em;

}

.container-1 {
    padding: 150px 0px;
}

.wrapper-1 {
    max-width: 1380px;
    padding: 0px 70px;
}

.wrapper-2 {
    max-width: 1040px;
    padding: 0px 70px;
}

.wrapper-3 {
    max-width: 840px;
    padding: 0px 70px;
}

.wrapper-4 {
    max-width: 1440px;
    padding: 0px 0px;
}


/** SPACING **/
.p-0 {
    padding: 0px !important;
}

.pt-0 {
    padding-top: 0px !important;
}

.pr-0 {
    padding-right: 0px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.pl-0 {
    padding-left: 0px !important;
}

.m-0 {
    margin: 0px !important;
}

.mt-0 {
    margin-top: 0px !important;
}

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

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

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

.p-5 {
    padding: 5px !important;
}

.pt-5 {
    padding-top: 5px !important;
}

.pr-5 {
    padding-right: 5px !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.pl-5 {
    padding-left: 5px !important;
}

.m-5 {
    margin: 5px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

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

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

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

.p-10 {
    padding: 10px !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pr-10 {
    padding-right: 10px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pl-10 {
    padding-left: 10px !important;
}

.m-10 {
    margin: 10px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

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

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

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

.p-15 {
    padding: 15px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pr-15 {
    padding-right: 15px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pl-15 {
    padding-left: 15px !important;
}

.m-15 {
    margin: 15px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

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

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

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

.p-20 {
    padding: 20px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pr-20 {
    padding-right: 20px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pl-20 {
    padding-left: 20px !important;
}

.m-20 {
    margin: 20px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

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

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

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

.p-25 {
    padding: 25px !important;
}

.pt-25 {
    padding-top: 25px !important;
}

.pr-25 {
    padding-right: 25px !important;
}

.pb-25 {
    padding-bottom: 25px !important;
}

.pl-25 {
    padding-left: 25px !important;
}

.m-25 {
    margin: 25px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

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

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

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

.p-30 {
    padding: 30px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pr-30 {
    padding-right: 30px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pl-30 {
    padding-left: 30px !important;
}

.m-30 {
    margin: 30px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

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

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

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

.p-35 {
    padding: 35px !important;
}

.pt-35 {
    padding-top: 35px !important;
}

.pr-35 {
    padding-right: 35px !important;
}

.pb-35 {
    padding-bottom: 35px !important;
}

.pl-35 {
    padding-left: 35px !important;
}

.m-35 {
    margin: 35px !important;
}

.mt-35 {
    margin-top: 35px !important;
}

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

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

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

.p-40 {
    padding: 40px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pr-40 {
    padding-right: 40px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pl-40 {
    padding-left: 40px !important;
}

.m-40 {
    margin: 40px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

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

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

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

.p-45 {
    padding: 45px !important;
}

.pt-45 {
    padding-top: 45px !important;
}

.pr-45 {
    padding-right: 45px !important;
}

.pb-45 {
    padding-bottom: 45px !important;
}

.pl-45 {
    padding-left: 45px !important;
}

.m-45 {
    margin: 45px !important;
}

.mt-45 {
    margin-top: 45px !important;
}

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

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

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

.p-50 {
    padding: 50px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pr-50 {
    padding-right: 50px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pl-50 {
    padding-left: 50px !important;
}

.m-50 {
    margin: 50px !important;
}

.mt-50 {
    margin-top: 50px !important;
}

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

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

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

.p-55 {
    padding: 55px !important;
}

.pt-55 {
    padding-top: 55px !important;
}

.pr-55 {
    padding-right: 55px !important;
}

.pb-55 {
    padding-bottom: 55px !important;
}

.pl-55 {
    padding-left: 55px !important;
}

.m-55 {
    margin: 55px !important;
}

.mt-55 {
    margin-top: 55px !important;
}

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

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

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

.p-60 {
    padding: 60px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pr-60 {
    padding-right: 60px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pl-60 {
    padding-left: 60px !important;
}

.m-60 {
    margin: 60px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

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

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

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

.p-65 {
    padding: 65px !important;
}

.pt-65 {
    padding-top: 65px !important;
}

.pr-65 {
    padding-right: 65px !important;
}

.pb-65 {
    padding-bottom: 65px !important;
}

.pl-65 {
    padding-left: 65px !important;
}

.m-65 {
    margin: 65px !important;
}

.mt-65 {
    margin-top: 65px !important;
}

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

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

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

.p-70 {
    padding: 70px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pr-70 {
    padding-right: 70px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pl-70 {
    padding-left: 70px !important;
}

.m-70 {
    margin: 70px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

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

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

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

.p-75 {
    padding: 75px !important;
}

.pt-75 {
    padding-top: 75px !important;
}

.pr-75 {
    padding-right: 75px !important;
}

.pb-75 {
    padding-bottom: 75px !important;
}

.pl-75 {
    padding-left: 75px !important;
}

.m-75 {
    margin: 75px !important;
}

.mt-75 {
    margin-top: 75px !important;
}

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

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

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

.p-80 {
    padding: 80px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pr-80 {
    padding-right: 80px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pl-80 {
    padding-left: 80px !important;
}

.m-80 {
    margin: 80px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

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

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

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

.p-85 {
    padding: 85px !important;
}

.pt-85 {
    padding-top: 85px !important;
}

.pr-85 {
    padding-right: 85px !important;
}

.pb-85 {
    padding-bottom: 85px !important;
}

.pl-85 {
    padding-left: 85px !important;
}

.m-85 {
    margin: 85px !important;
}

.mt-85 {
    margin-top: 85px !important;
}

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

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

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

.p-90 {
    padding: 90px !important;
}

.pt-90 {
    padding-top: 90px !important;
}

.pr-90 {
    padding-right: 90px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.pl-90 {
    padding-left: 90px !important;
}

.m-90 {
    margin: 90px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

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

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

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

.p-95 {
    padding: 95px !important;
}

.pt-95 {
    padding-top: 95px !important;
}

.pr-95 {
    padding-right: 95px !important;
}

.pb-95 {
    padding-bottom: 95px !important;
}

.pl-95 {
    padding-left: 95px !important;
}

.m-95 {
    margin: 95px !important;
}

.mt-95 {
    margin-top: 95px !important;
}

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

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

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

.p-100 {
    padding: 100px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pr-100 {
    padding-right: 100px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.pl-100 {
    padding-left: 100px !important;
}

.m-100 {
    margin: 100px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

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

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

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

.p-105 {
    padding: 105px !important;
}

.pt-105 {
    padding-top: 105px !important;
}

.pr-105 {
    padding-right: 105px !important;
}

.pb-105 {
    padding-bottom: 105px !important;
}

.pl-105 {
    padding-left: 105px !important;
}

.m-105 {
    margin: 105px !important;
}

.mt-105 {
    margin-top: 105px !important;
}

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

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

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

.p-110 {
    padding: 110px !important;
}

.pt-110 {
    padding-top: 110px !important;
}

.pr-110 {
    padding-right: 110px !important;
}

.pb-110 {
    padding-bottom: 110px !important;
}

.pl-110 {
    padding-left: 110px !important;
}

.m-110 {
    margin: 110px !important;
}

.mt-110 {
    margin-top: 110px !important;
}

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

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

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

.p-115 {
    padding: 115px !important;
}

.pt-115 {
    padding-top: 115px !important;
}

.pr-115 {
    padding-right: 115px !important;
}

.pb-115 {
    padding-bottom: 115px !important;
}

.pl-115 {
    padding-left: 115px !important;
}

.m-115 {
    margin: 115px !important;
}

.mt-115 {
    margin-top: 115px !important;
}

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

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

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

.p-120 {
    padding: 120px !important;
}

.pt-120 {
    padding-top: 120px !important;
}

.pr-120 {
    padding-right: 120px !important;
}

.pb-120 {
    padding-bottom: 120px !important;
}

.pl-120 {
    padding-left: 120px !important;
}

.m-120 {
    margin: 120px !important;
}

.mt-120 {
    margin-top: 120px !important;
}

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

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

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

.p-125 {
    padding: 125px !important;
}

.pt-125 {
    padding-top: 125px !important;
}

.pr-125 {
    padding-right: 125px !important;
}

.pb-125 {
    padding-bottom: 125px !important;
}

.pl-125 {
    padding-left: 125px !important;
}

.m-125 {
    margin: 125px !important;
}

.mt-125 {
    margin-top: 125px !important;
}

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

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

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

.p-130 {
    padding: 130px !important;
}

.pt-130 {
    padding-top: 130px !important;
}

.pr-130 {
    padding-right: 130px !important;
}

.pb-130 {
    padding-bottom: 130px !important;
}

.pl-130 {
    padding-left: 130px !important;
}

.m-130 {
    margin: 130px !important;
}

.mt-130 {
    margin-top: 130px !important;
}

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

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

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

.p-135 {
    padding: 135px !important;
}

.pt-135 {
    padding-top: 135px !important;
}

.pr-135 {
    padding-right: 135px !important;
}

.pb-135 {
    padding-bottom: 135px !important;
}

.pl-135 {
    padding-left: 135px !important;
}

.m-135 {
    margin: 135px !important;
}

.mt-135 {
    margin-top: 135px !important;
}

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

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

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

.p-140 {
    padding: 140px !important;
}

.pt-140 {
    padding-top: 140px !important;
}

.pr-140 {
    padding-right: 140px !important;
}

.pb-140 {
    padding-bottom: 140px !important;
}

.pl-140 {
    padding-left: 140px !important;
}

.m-140 {
    margin: 140px !important;
}

.mt-140 {
    margin-top: 140px !important;
}

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

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

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

.p-145 {
    padding: 145px !important;
}

.pt-145 {
    padding-top: 145px !important;
}

.pr-145 {
    padding-right: 145px !important;
}

.pb-145 {
    padding-bottom: 145px !important;
}

.pl-145 {
    padding-left: 145px !important;
}

.m-145 {
    margin: 145px !important;
}

.mt-145 {
    margin-top: 145px !important;
}

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

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

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

.p-150 {
    padding: 150px !important;
}

.pt-150 {
    padding-top: 150px !important;
}

.pr-150 {
    padding-right: 150px !important;
}

.pb-150 {
    padding-bottom: 150px !important;
}

.pl-150 {
    padding-left: 150px !important;
}

.m-150 {
    margin: 150px !important;
}

.mt-150 {
    margin-top: 150px !important;
}

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

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

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


/** MAX WIDTH **/
.mw-0 {
    max-width: 0px;
}

.mw-25 {
    max-width: 25px;
}

.mw-50 {
    max-width: 50px;
}

.mw-75 {
    max-width: 75px;
}

.mw-100 {
    max-width: 100px;
}

.mw-125 {
    max-width: 125px;
}

.mw-150 {
    max-width: 150px;
}

.mw-175 {
    max-width: 175px;
}

.mw-200 {
    max-width: 200px;
}

.mw-225 {
    max-width: 225px;
}

.mw-250 {
    max-width: 250px;
}

.mw-275 {
    max-width: 275px;
}

.mw-300 {
    max-width: 300px;
}

.mw-325 {
    max-width: 325px;
}

.mw-350 {
    max-width: 350px;
}

.mw-375 {
    max-width: 375px;
}

.mw-400 {
    max-width: 400px;
}

.mw-425 {
    max-width: 425px;
}

.mw-450 {
    max-width: 450px;
}

.mw-475 {
    max-width: 475px;
}

.mw-500 {
    max-width: 500px;
}

.mw-525 {
    max-width: 525px;
}

.mw-550 {
    max-width: 550px;
}

.mw-575 {
    max-width: 575px;
}

.mw-600 {
    max-width: 600px;
}

.mw-625 {
    max-width: 625px;
}

.mw-650 {
    max-width: 650px;
}

.mw-675 {
    max-width: 675px;
}

.mw-700 {
    max-width: 700px;
}

.mw-725 {
    max-width: 725px;
}

.mw-750 {
    max-width: 750px;
}

.mw-775 {
    max-width: 775px;
}

.mw-800 {
    max-width: 800px;
}

.mw-825 {
    max-width: 825px;
}

.mw-850 {
    max-width: 850px;
}

.mw-875 {
    max-width: 875px;
}

.mw-900 {
    max-width: 900px;
}

.mw-925 {
    max-width: 925px;
}

.mw-950 {
    max-width: 950px;
}

.mw-975 {
    max-width: 975px;
}

.mw-1000 {
    max-width: 1000px;
}

.mw-1025 {
    max-width: 1025px;
}

.mw-1050 {
    max-width: 1050px;
}

.mw-1075 {
    max-width: 1075px;
}

.mw-1100 {
    max-width: 1100px;
}

.mw-1125 {
    max-width: 1125px;
}

.mw-1150 {
    max-width: 1150px;
}

.mw-1175 {
    max-width: 1175px;
}

.mw-1200 {
    max-width: 1200px;
}

.mw-1225 {
    max-width: 1225px;
}

.mw-1250 {
    max-width: 1250px;
}

.mw-1275 {
    max-width: 1275px;
}

.mw-1300 {
    max-width: 1300px;
}

.mw-1325 {
    max-width: 1325px;
}

.mw-1350 {
    max-width: 1350px;
}

.mw-1375 {
    max-width: 1375px;
}

.mw-1400 {
    max-width: 1400px;
}

.mw-1425 {
    max-width: 1425px;
}

.mw-1450 {
    max-width: 1450px;
}

.mw-1475 {
    max-width: 1475px;
}

.mw-1500 {
    max-width: 1500px;
}

.mw-1525 {
    max-width: 1525px;
}

.mw-1550 {
    max-width: 1550px;
}

.mw-1575 {
    max-width: 1575px;
}

.mw-1600 {
    max-width: 1600px;
}

.mw-1625 {
    max-width: 1625px;
}

.mw-1650 {
    max-width: 1650px;
}

.mw-1675 {
    max-width: 1675px;
}

.mw-1700 {
    max-width: 1700px;
}

.mw-1725 {
    max-width: 1725px;
}

.mw-1750 {
    max-width: 1750px;
}

.mw-1775 {
    max-width: 1775px;
}

.mw-1800 {
    max-width: 1800px;
}

.mw-1825 {
    max-width: 1825px;
}

.mw-1850 {
    max-width: 1850px;
}

.mw-1875 {
    max-width: 1875px;
}

.mw-1900 {
    max-width: 1900px;
}

.mw-1925 {
    max-width: 1925px;
}

.mw-1950 {
    max-width: 1950px;
}

.mw-1975 {
    max-width: 1975px;
}

.mw-2000 {
    max-width: 2000px;
}

.mw-2025 {
    max-width: 2025px;
}

.mw-2050 {
    max-width: 2050px;
}

.mw-2075 {
    max-width: 2075px;
}

.mw-2100 {
    max-width: 2100px;
}

.mw-2125 {
    max-width: 2125px;
}

.mw-2150 {
    max-width: 2150px;
}

.mw-2175 {
    max-width: 2175px;
}

.mw-2200 {
    max-width: 2200px;
}

.mw-2225 {
    max-width: 2225px;
}

.mw-2250 {
    max-width: 2250px;
}

.mw-2275 {
    max-width: 2275px;
}

.mw-2300 {
    max-width: 2300px;
}

.mw-2325 {
    max-width: 2325px;
}

.mw-2350 {
    max-width: 2350px;
}

.mw-2375 {
    max-width: 2375px;
}

.mw-2400 {
    max-width: 2400px;
}

.mw-2425 {
    max-width: 2425px;
}

.mw-2450 {
    max-width: 2450px;
}

.mw-2475 {
    max-width: 2475px;
}

.mw-2500 {
    max-width: 2500px;
}

.mw-2525 {
    max-width: 2525px;
}

.mw-2550 {
    max-width: 2550px;
}

.mw-2575 {
    max-width: 2575px;
}

.mw-2600 {
    max-width: 2600px;
}

.mw-2625 {
    max-width: 2625px;
}

.mw-2650 {
    max-width: 2650px;
}

.mw-2675 {
    max-width: 2675px;
}

.mw-2700 {
    max-width: 2700px;
}

.mw-2725 {
    max-width: 2725px;
}

.mw-2750 {
    max-width: 2750px;
}

.mw-2775 {
    max-width: 2775px;
}

.mw-2800 {
    max-width: 2800px;
}

.mw-2825 {
    max-width: 2825px;
}

.mw-2850 {
    max-width: 2850px;
}

.mw-2875 {
    max-width: 2875px;
}

.mw-2900 {
    max-width: 2900px;
}

.mw-2925 {
    max-width: 2925px;
}

.mw-2950 {
    max-width: 2950px;
}

.mw-2975 {
    max-width: 2975px;
}

.mw-3000 {
    max-width: 3000px;
}


/** COLORS **/
/** Color: black-1 **/
.clr-black-1 {
    color: #000000 !important
}

.bg-black-1 {
    background-color: #000000 !important
}

.clr-media-black-1 .plyr--video .plyr__controls .plyr__control.plyr__tab-focus,
.clr-media-black-1 .plyr--video .plyr__controls .plyr__control:hover,
.clr-media-black-1 .plyr--video .plyr__controls .plyr__control[aria-expanded=true],
.clr-media-black-1 .plyr--audio .plyr__control.plyr__tab-focus,
.clr-media-black-1 .plyr--audio .plyr__control:hover,
.clr-media-black-1 .plyr--audio .plyr__control[aria-expanded=true],
.clr-media-black-1 .plyr__menu__container label.plyr__control input[type=radio]:checked + span,
.clr-media-black-1 .plyr__control--overlaid:focus,
.clr-media-black-1 .plyr__control--overlaid:hover,
.clr-media-black-1 .plyr__control--overlaid,
.clr-media-black-1 .plyr--video .plyr__control:hover {
    background: #000000 !important;
}

.clr-media-black-1 .plyr--full-ui input[type=range] {
    color: #000000 !important;
}

/** Color: white-1 **/
.clr-white-1 {
    color: #FFFFFF !important
}

.bg-white-1 {
    background-color: #FFFFFF !important
}

.clr-media-white-1 .plyr--video .plyr__controls .plyr__control.plyr__tab-focus,
.clr-media-white-1 .plyr--video .plyr__controls .plyr__control:hover,
.clr-media-white-1 .plyr--video .plyr__controls .plyr__control[aria-expanded=true],
.clr-media-white-1 .plyr--audio .plyr__control.plyr__tab-focus,
.clr-media-white-1 .plyr--audio .plyr__control:hover,
.clr-media-white-1 .plyr--audio .plyr__control[aria-expanded=true],
.clr-media-white-1 .plyr__menu__container label.plyr__control input[type=radio]:checked + span,
.clr-media-white-1 .plyr__control--overlaid:focus,
.clr-media-white-1 .plyr__control--overlaid:hover,
.clr-media-white-1 .plyr__control--overlaid,
.clr-media-white-1 .plyr--video .plyr__control:hover {
    background: #FFFFFF !important;
}

.clr-media-white-1 .plyr--full-ui input[type=range] {
    color: #FFFFFF !important;
}

/** Color: red-1 **/
.clr-red-1 {
    color: #FE6263 !important
}

.bg-red-1 {
    background-color: #FE6263 !important
}

.clr-media-red-1 .plyr--video .plyr__controls .plyr__control.plyr__tab-focus,
.clr-media-red-1 .plyr--video .plyr__controls .plyr__control:hover,
.clr-media-red-1 .plyr--video .plyr__controls .plyr__control[aria-expanded=true],
.clr-media-red-1 .plyr--audio .plyr__control.plyr__tab-focus,
.clr-media-red-1 .plyr--audio .plyr__control:hover,
.clr-media-red-1 .plyr--audio .plyr__control[aria-expanded=true],
.clr-media-red-1 .plyr__menu__container label.plyr__control input[type=radio]:checked + span,
.clr-media-red-1 .plyr__control--overlaid:focus,
.clr-media-red-1 .plyr__control--overlaid:hover,
.clr-media-red-1 .plyr__control--overlaid,
.clr-media-red-1 .plyr--video .plyr__control:hover {
    background: #FE6263 !important;
}

.clr-media-red-1 .plyr--full-ui input[type=range] {
    color: #FE6263 !important;
}

/** Color: purple-1 **/

.clr-purple-1 {
    color: #7e54e6 !important
}

/** Color: red-2 **/
.clr-red-2 {
    color: #BA4848 !important
}

.bg-red-2 {
    background-color: #BA4848 !important
}

.clr-media-red-2 .plyr--video .plyr__controls .plyr__control.plyr__tab-focus,
.clr-media-red-2 .plyr--video .plyr__controls .plyr__control:hover,
.clr-media-red-2 .plyr--video .plyr__controls .plyr__control[aria-expanded=true],
.clr-media-red-2 .plyr--audio .plyr__control.plyr__tab-focus,
.clr-media-red-2 .plyr--audio .plyr__control:hover,
.clr-media-red-2 .plyr--audio .plyr__control[aria-expanded=true],
.clr-media-red-2 .plyr__menu__container label.plyr__control input[type=radio]:checked + span,
.clr-media-red-2 .plyr__control--overlaid:focus,
.clr-media-red-2 .plyr__control--overlaid:hover,
.clr-media-red-2 .plyr__control--overlaid,
.clr-media-red-2 .plyr--video .plyr__control:hover {
    background: #BA4848 !important;
}

.clr-media-red-2 .plyr--full-ui input[type=range] {
    color: #BA4848 !important;
}

/** Color: yellow-1 **/
.clr-yellow-1 {
    color: #FFCC01 !important
}

.bg-yellow-1 {
    background-color: #FFCC01 !important
}

.clr-media-yellow-1 .plyr--video .plyr__controls .plyr__control.plyr__tab-focus,
.clr-media-yellow-1 .plyr--video .plyr__controls .plyr__control:hover,
.clr-media-yellow-1 .plyr--video .plyr__controls .plyr__control[aria-expanded=true],
.clr-media-yellow-1 .plyr--audio .plyr__control.plyr__tab-focus,
.clr-media-yellow-1 .plyr--audio .plyr__control:hover,
.clr-media-yellow-1 .plyr--audio .plyr__control[aria-expanded=true],
.clr-media-yellow-1 .plyr__menu__container label.plyr__control input[type=radio]:checked + span,
.clr-media-yellow-1 .plyr__control--overlaid:focus,
.clr-media-yellow-1 .plyr__control--overlaid:hover,
.clr-media-yellow-1 .plyr__control--overlaid,
.clr-media-yellow-1 .plyr--video .plyr__control:hover {
    background: #FFCC01 !important;
}

.clr-media-yellow-1 .plyr--full-ui input[type=range] {
    color: #FFCC01 !important;
}

/** Color: yellow-2 **/
.clr-yellow-2 {
    color: #E1B400 !important
}

.bg-yellow-2 {
    background-color: #E1B400 !important
}

.clr-media-yellow-2 .plyr--video .plyr__controls .plyr__control.plyr__tab-focus,
.clr-media-yellow-2 .plyr--video .plyr__controls .plyr__control:hover,
.clr-media-yellow-2 .plyr--video .plyr__controls .plyr__control[aria-expanded=true],
.clr-media-yellow-2 .plyr--audio .plyr__control.plyr__tab-focus,
.clr-media-yellow-2 .plyr--audio .plyr__control:hover,
.clr-media-yellow-2 .plyr--audio .plyr__control[aria-expanded=true],
.clr-media-yellow-2 .plyr__menu__container label.plyr__control input[type=radio]:checked + span,
.clr-media-yellow-2 .plyr__control--overlaid:focus,
.clr-media-yellow-2 .plyr__control--overlaid:hover,
.clr-media-yellow-2 .plyr__control--overlaid,
.clr-media-yellow-2 .plyr--video .plyr__control:hover {
    background: #E1B400 !important;
}

.clr-media-yellow-2 .plyr--full-ui input[type=range] {
    color: #E1B400 !important;
}

/** Color: green-1 **/
.clr-green-1 {
    color: #15C594 !important
}

.bg-green-1 {
    background-color: #15C594 !important
}

.clr-media-green-1 .plyr--video .plyr__controls .plyr__control.plyr__tab-focus,
.clr-media-green-1 .plyr--video .plyr__controls .plyr__control:hover,
.clr-media-green-1 .plyr--video .plyr__controls .plyr__control[aria-expanded=true],
.clr-media-green-1 .plyr--audio .plyr__control.plyr__tab-focus,
.clr-media-green-1 .plyr--audio .plyr__control:hover,
.clr-media-green-1 .plyr--audio .plyr__control[aria-expanded=true],
.clr-media-green-1 .plyr__menu__container label.plyr__control input[type=radio]:checked + span,
.clr-media-green-1 .plyr__control--overlaid:focus,
.clr-media-green-1 .plyr__control--overlaid:hover,
.clr-media-green-1 .plyr__control--overlaid,
.clr-media-green-1 .plyr--video .plyr__control:hover {
    background: #15C594 !important;
}

.clr-media-green-1 .plyr--full-ui input[type=range] {
    color: #15C594 !important;
}

/** Color: green-2 **/
.clr-green-2 {
    color: #0F8F6B !important
}

.bg-green-2 {
    background-color: #0F8F6B !important
}

.clr-media-green-2 .plyr--video .plyr__controls .plyr__control.plyr__tab-focus,
.clr-media-green-2 .plyr--video .plyr__controls .plyr__control:hover,
.clr-media-green-2 .plyr--video .plyr__controls .plyr__control[aria-expanded=true],
.clr-media-green-2 .plyr--audio .plyr__control.plyr__tab-focus,
.clr-media-green-2 .plyr--audio .plyr__control:hover,
.clr-media-green-2 .plyr--audio .plyr__control[aria-expanded=true],
.clr-media-green-2 .plyr__menu__container label.plyr__control input[type=radio]:checked + span,
.clr-media-green-2 .plyr__control--overlaid:focus,
.clr-media-green-2 .plyr__control--overlaid:hover,
.clr-media-green-2 .plyr__control--overlaid,
.clr-media-green-2 .plyr--video .plyr__control:hover {
    background: #0F8F6B !important;
}

.clr-media-green-2 .plyr--full-ui input[type=range] {
    color: #0F8F6B !important;
}

/** Color: blue-1 **/
.clr-blue-1 {
    color: #288EC4 !important
}

.bg-blue-1 {
    background-color: #288EC4 !important
}

.clr-media-blue-1 .plyr--video .plyr__controls .plyr__control.plyr__tab-focus,
.clr-media-blue-1 .plyr--video .plyr__controls .plyr__control:hover,
.clr-media-blue-1 .plyr--video .plyr__controls .plyr__control[aria-expanded=true],
.clr-media-blue-1 .plyr--audio .plyr__control.plyr__tab-focus,
.clr-media-blue-1 .plyr--audio .plyr__control:hover,
.clr-media-blue-1 .plyr--audio .plyr__control[aria-expanded=true],
.clr-media-blue-1 .plyr__menu__container label.plyr__control input[type=radio]:checked + span,
.clr-media-blue-1 .plyr__control--overlaid:focus,
.clr-media-blue-1 .plyr__control--overlaid:hover,
.clr-media-blue-1 .plyr__control--overlaid,
.clr-media-blue-1 .plyr--video .plyr__control:hover {
    background: #288EC4 !important;
}

.clr-media-blue-1 .plyr--full-ui input[type=range] {
    color: #288EC4 !important;
}

/** Color: blue-2 **/
.clr-blue-2 {
    color: #F8FDFF !important
}

.bg-blue-2 {
    background-color: #F8FDFF !important
}

.clr-media-blue-2 .plyr--video .plyr__controls .plyr__control.plyr__tab-focus,
.clr-media-blue-2 .plyr--video .plyr__controls .plyr__control:hover,
.clr-media-blue-2 .plyr--video .plyr__controls .plyr__control[aria-expanded=true],
.clr-media-blue-2 .plyr--audio .plyr__control.plyr__tab-focus,
.clr-media-blue-2 .plyr--audio .plyr__control:hover,
.clr-media-blue-2 .plyr--audio .plyr__control[aria-expanded=true],
.clr-media-blue-2 .plyr__menu__container label.plyr__control input[type=radio]:checked + span,
.clr-media-blue-2 .plyr__control--overlaid:focus,
.clr-media-blue-2 .plyr__control--overlaid:hover,
.clr-media-blue-2 .plyr__control--overlaid,
.clr-media-blue-2 .plyr--video .plyr__control:hover {
    background: #F8FDFF !important;
}

.clr-media-blue-2 .plyr--full-ui input[type=range] {
    color: #F8FDFF !important;
}

/** Color: blue-3 **/
.clr-blue-3 {
    color: #1C668E !important
}

.bg-blue-3 {
    background-color: #1C668E !important
}

.clr-media-blue-3 .plyr--video .plyr__controls .plyr__control.plyr__tab-focus,
.clr-media-blue-3 .plyr--video .plyr__controls .plyr__control:hover,
.clr-media-blue-3 .plyr--video .plyr__controls .plyr__control[aria-expanded=true],
.clr-media-blue-3 .plyr--audio .plyr__control.plyr__tab-focus,
.clr-media-blue-3 .plyr--audio .plyr__control:hover,
.clr-media-blue-3 .plyr--audio .plyr__control[aria-expanded=true],
.clr-media-blue-3 .plyr__menu__container label.plyr__control input[type=radio]:checked + span,
.clr-media-blue-3 .plyr__control--overlaid:focus,
.clr-media-blue-3 .plyr__control--overlaid:hover,
.clr-media-blue-3 .plyr__control--overlaid,
.clr-media-blue-3 .plyr--video .plyr__control:hover {
    background: #1C668E !important;
}

.clr-media-blue-3 .plyr--full-ui input[type=range] {
    color: #1C668E !important;
}

.block,
.brick {
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.clr-media-gray-1 .plyr--video .plyr__controls .plyr__control.plyr__tab-focus,
.clr-media-gray-1 .plyr--video .plyr__controls .plyr__control:hover,
.clr-media-gray-1 .plyr--video .plyr__controls .plyr__control[aria-expanded=true],
.clr-media-gray-1 .plyr--audio .plyr__control.plyr__tab-focus,
.clr-media-gray-1 .plyr--audio .plyr__control:hover,
.clr-media-gray-1 .plyr--audio .plyr__control[aria-expanded=true],
.clr-media-gray-1 .plyr__menu__container label.plyr__control input[type=radio]:checked + span,
.clr-media-gray-1 .plyr__control--overlaid:focus,
.clr-media-gray-1 .plyr__control--overlaid:hover,
.clr-media-gray-1 .plyr__control--overlaid,
.clr-media-gray-1 .plyr--video .plyr__control:hover {
    background: #A9A9A9 !important;
}

.clr-media-gray-1 .plyr--full-ui input[type=range] {
    color: #A9A9A9 !important;
}

/** Color: gray-1 **/
.clr-gray-1 {
    color: #A9A9A9 !important
}

.bg-gray-1 {
    background-color: #A9A9A9 !important
}

.background {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-in,
.background-overlay {
    height: 100%;
    width: 100%;
}

.background-overlay {
    position: absolute;
    top: 0px;
    left: 0px;
}

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

.columns,
.form-row {
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
}

.column,
.form-column {
    display: table-cell;
    vertical-align: top;
    height: 100%;
    position: relative;
}

.column-in,
.form-column-in {
    position: relative;
    height: 100%;
}

.visual {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    top: 0px;
    left: 0px;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.no-space {
    padding: 0px !important;
}

.no-space-top {
    padding-top: 0px !important;
    margin-top: 0px !important;
}

.no-space-bottom {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important;
}

.item {
    display: block;
    float: left;
}

.es-slider-items .item {
    float: none;
}

.column {
    display: table-cell;
    vertical-align: top;
}

.fw-100 {
    font-weight: 100;
}

.fw-200 {
    font-weight: 200;
}

.fw-300 {
    font-weight: 300;
}

.fw-400 {
    font-weight: 400;
}

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

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.fw-900 {
    font-weight: 900;
}

.fs-italic {
    font-style: italic;
}

.tt-uppercase {
    text-transform: uppercase;
}


.op-0 {
    opacity: 0
}

.op-5 {
    opacity: 0.05
}

.op-10 {
    opacity: 0.10
}

.op-15 {
    opacity: 0.15
}

.op-20 {
    opacity: 0.20
}

.op-25 {
    opacity: 0.25
}

.op-30 {
    opacity: 0.30
}

.op-35 {
    opacity: 0.35
}

.op-40 {
    opacity: 0.40
}

.op-45 {
    opacity: 0.45
}

.op-50 {
    opacity: 0.50
}

.op-55 {
    opacity: 0.55
}

.op-60 {
    opacity: 0.60
}

.op-65 {
    opacity: 0.65
}

.op-70 {
    opacity: 0.70
}

.op-75 {
    opacity: 0.75
}

.op-80 {
    opacity: 0.80
}

.op-85 {
    opacity: 0.85
}

.op-90 {
    opacity: 0.90
}

.op-95 {
    opacity: 0.95
}

.op-100 {
    opacity: 1
}


.mobile-show {
    display: none;
}

.mobile-hide {
    display: block;
}

.component p {
    margin-bottom: 1em;
}

.component p:last-child {
    margin-bottom: 0px !important;
}

.component p a:hover {
    color: #489FCD;
}

.bricks.extra-padding {
    padding-top: 90px;
}

.component ul li {
    position: relative;
    padding-left: 21px;
}

.component ul li:before {
    position: absolute;
    left: 0;
    content: '';
    background: #288EC4;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    top: 10px;
}

.loading * {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .header-logo-left img {
        width: 100%;
    }

    .brick-featured-1 {
        height: 100vh;
    }
}

/** TRANSITIONS **/
.nav-toggle,
.nav-toggle-in,
.nav-toggle-in-content,
.nav-toggle-in-content:after,
.nav-toggle-in-content::before,
.input-row,
.input-row label,
.button-3 i,
.button-4 i,
.dots span,
.footer-bottom-nav a {
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.button-overlay {
    -webkit-transition: opacity 300ms ease-in-out;
    -moz-transition: opacity 300ms ease-in-out;
    -ms-transition: opacity 300ms ease-in-out;
    -o-transition: opacity 300ms ease-in-out;
    transition: opacity 300ms ease-in-out;
}

.button-6 .button-in,
.button-1 .button-in,
.component p a,
.footer-nav a {
    -webkit-transition: color 300ms ease-in-out;
    -moz-transition: color 300ms ease-in-out;
    -ms-transition: color 300ms ease-in-out;
    -o-transition: color 300ms ease-in-out;
    transition: color 300ms ease-in-out;
}

.item-logos a.item-in {
    -webkit-transition: background-color 300ms ease-in-out;
    -moz-transition: background-color 300ms ease-in-out;
    -ms-transition: background-color 300ms ease-in-out;
    -o-transition: background-color 300ms ease-in-out;
    transition: background-color 300ms ease-in-out
}

.slider-visual {
    -webkit-transition: opacity 600ms ease-in-out;
    -moz-transition: opacity 600ms ease-in-out;
    -ms-transition: opacity 600ms ease-in-out;
    -o-transition: opacity 600ms ease-in-out;
    transition: opacity 600ms ease-in-out;
}

.border-scroll {
    -webkit-transition: width 120ms ease;
    -moz-transition: width 120ms ease;
    -ms-transition: width 120ms ease;
    -o-transition: width 120ms ease;
    transition: width 120ms ease;
}

.header-nav {
    -webkit-transition: top 380ms cubic-bezier(.68, .27, .2, 1);
    -moz-transition: top 380ms cubic-bezier(.68, .27, .2, 1);
    -ms-transition: top 380ms cubic-bezier(.68, .27, .2, 1);
    -o-transition: top 380ms cubic-bezier(.68, .27, .2, 1);
    transition: top 380ms cubic-bezier(.68, .27, .2, 1);
}

.header-in {
    -webkit-transition: all 380ms cubic-bezier(.68, .27, .2, 1);
    -moz-transition: all 380ms cubic-bezier(.68, .27, .2, 1);
    -ms-transition: all 380ms cubic-bezier(.68, .27, .2, 1);
    -o-transition: all 380ms cubic-bezier(.68, .27, .2, 1);
    transition: all 380ms cubic-bezier(.68, .27, .2, 1)
}

.header-inner:after {
    -webkit-transition: opacity 500ms ease-in-out;
    -moz-transition: opacity 500ms ease-in-out;
    -ms-transition: opacity 500ms ease-in-out;
    -o-transition: opacity 500ms ease-in-out;
    transition: opacity 500ms ease-in-out;
}

.logo-right-content,
.header-nav-links a {
    -webkit-transition: color 500ms ease-in-out;
    -moz-transition: color 500ms ease-in-out;
    -ms-transition: color 500ms ease-in-out;
    -o-transition: color 500ms ease-in-out;
    transition: color 500ms ease-in-out;
}

/** COMPONENTS **/
.title{
    letter-spacing: -1px;
}

.title-1 {
    font-size: 1.444em;
    line-height: 1.192em;
}

.title-2 {
    font-size: 1.889em;
    line-height: 1.088em;
}

.title-3 {
    font-size: 2.333em;
    line-height: 1.190em;
}

.title-4 {
    font-size: 2.778em;
    line-height: 1.200em;
}

.title-5 {
    font-size: 3.222em;
    line-height: 1.190em;
}

.title-6 {
    font-size: 3.667em;
    line-height: 1.197em;
}

.title-7 {
    font-size: 5em;
    line-height: 1.197em;
}

.title-8 {
    font-size: 1.667em;
    line-height: 1.533em;
}

.text-1 {
    font-size: 0.778em;
    line-height: 1.643em;
}

.text-2 {
    font-size: 0.889em;
    line-height: 1.625em;
}

.text-3 {
    font-size: 1em;
    line-height: 1.667em;
}

.text-4 {
    font-size: 1.111em;
    line-height: 1.650em;
}

.text-5 {
    font-size: 1.222em;
    line-height: 1.636em;
}

.text-6 {
    font-size: 1.333em;
    line-height: 1.667em;
}

.button {
    display: inline-block;
    text-align: center;
}

.button-6 .button-in,
.button-1 .button-in {
    border: 1px solid #489FCD;
    padding: 20px 39px;
    z-index: 1;

    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#288ec4+0,489fcd+100 */
    background: rgb(40, 142, 196); /* Old browsers */
    background: -moz-linear-gradient(45deg, rgba(40, 142, 196, 1) 0%, rgba(72, 159, 205, 1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, rgba(40, 142, 196, 1) 0%, rgba(72, 159, 205, 1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg, rgba(40, 142, 196, 1) 0%, rgba(72, 159, 205, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#288ec4', endColorstr='#489fcd', GradientType=1); /* IE6-9 fallback on horizontal gradient */

    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;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.button-6 .button-in:before,
.button-1 .button-in:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFF;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.button-6:hover .button-in, .button-6:focus .button-in, .button-6:active .button-in,
.button-1:hover .button-in, .button-1:focus .button-in, .button-1:active .button-in {
    color: #000 !important;
}

.button-6:hover .button-in:before, .button-6:focus .button-in:before, .button-6:active .button-in:before,
.button-1:hover .button-in:before, .button-1:focus .button-in:before, .button-1:active .button-in:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.button-2 .button-in {
    border: 1px solid #489FCD;
    padding: 20px 39px;
    background: #FFF;
    z-index: 1;

    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;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.button-2 .button-in:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #489FCD;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.button-2:hover .button-in, .button-2:focus .button-in, .button-2:active .button-in {
    color: #FFF !important;
}

.button-2:hover .button-in:before, .button-2:focus .button-in:before, .button-2:active .button-in:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

.button-3 i {
    font-size: 22px;
    position: relative;
    top: 4px;
    margin-left: 2px;
    color: #288EC4;
    left: 0;
}

.button-3:hover i {
    left: 10px;
}

.button-4 i {
    font-size: 22px;
    position: relative;
    top: 4px;
    margin-left: 2px;
    color: #FFF;
    left: 0;
}

.button-4:hover i {
    left: 10px;
}

.specification-item {
    border-bottom: 1px solid #000;
    padding: 10px 0;
}

.specification-item:last-child {
    border: none;
}

/** LOOPS **/
.loop-usps {
    margin: -35px -25px;
}

.item-usps {
    padding: 35px 25px;
    width: 20%;
}

.item-usps-top {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-usps-top .item-usp-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    background: #449DCC;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-usps-top img {
    max-height: 42px;
}

.item-usps-bottom .text {
    line-height: 1.278em;
}

.loop-usps.align-four .item-usps {
    width: 25%;
}

.loop-usps.align-three .item-usps {
    width: 33.333%;
}

.loop-usps.align-content-center .item-usps img {
    margin: 0 auto;
}

.loop-usps.align-content-center .item-usps .title,
.loop-usps.align-content-center .item-usps .text {
    text-align: center !important;
}

.loop-logos {
    margin: 0px;
}

.item-logos {
    padding: 0px;
    width: 20%;
}

.item-logos .item-in {
    display: block;
    position: relative;
    padding-top: 100%;
}

.item-logos a.item-in:hover {
    background: #FFF !important;
}

.item-logos .logos-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.item-logos img {
    max-height: 65px;
}

.item-logos:nth-child(10n+1) .item-in,
.item-logos:nth-child(10n+8) .item-in {
    border-right: 2px solid #288EC4;
}

.item-logos:nth-child(10n+2) .item-in,
.item-logos:nth-child(10n+9) .item-in {
    border-right: 2px solid #15C594;
}

.item-logos:nth-child(10n+3) .item-in,
.item-logos:nth-child(10n+6) .item-in {
    border-right: 2px solid #FFCC01;
}

.item-logos:nth-child(10n+4) .item-in,
.item-logos:nth-child(10n+7) .item-in {
    border-right: 2px solid #FE6263;
}

.item-logos:nth-child(10n+1) .item-in,
.item-logos:nth-child(10n+4) .item-in {
    border-bottom: 2px solid #15C594;
}

.item-logos:nth-child(10n+2) .item-in {
    border-bottom: 2px solid #FE6263;
}

.item-logos:nth-child(10n+3) .item-in,
.item-logos:nth-child(10n+5) .item-in {
    border-bottom: 2px solid #288EC4;
}

.loop-team-members {
    margin: -26px;
}

.item-team-members {
    padding: 26px;
    width: 50%;
}

.item-team-members .team-selected-member {
    margin-bottom: 22px;
}

.item-team-members:nth-child(4n+1) .team-selected-image {
    border-color: #288EC4 !important;
}

.item-team-members:nth-child(4n+1) .component p a:hover {
    color: #288EC4;
}

.item-team-members:nth-child(4n+2) .team-selected-image {
    border-color: #15C594 !important;
}

.item-team-members:nth-child(4n+2) .component p a:hover {
    color: #15C594;
}

.item-team-members:nth-child(4n+3) .team-selected-image {
    border-color: #FE6263 !important;
}

.item-team-members:nth-child(4n+3) .component p a:hover {
    color: #FE6263;
}

.item-team-members:nth-child(4n+4) .team-selected-image {
    border-color: #FFCC01 !important;
}

.item-team-members:nth-child(4n+4) .component p a:hover {
    color: #FFCC01;
}


/** PARTS **/


/** SECTIONS **/
/** SECTION: TOP **/
.header-in {
    position: fixed;
    z-index: 5;
    width: 100%;
    top: 0;
    background: #FFF;
}

.header-in.transparent {
    background: transparent;
}

.header-in.transparent .header-inner:after {
    opacity: 0;
}


.header-in.transparent .logo-right-content {
    color: #FFF;
}

.header-in.transparent .header-nav-links a {
    color: #FFF;
}


.header-inner {
    position: relative;
}

.header-inner:after {
    position: absolute;
    content: '';
    background: #489FCD;
    opacity: 0.3;
    height: 1px;
    width: 100%;
    bottom: 0;
}

.border-scroll {
    position: absolute;
    background: #489FCD;
    height: 1px;
    width: 0;
    bottom: 0;
}

.header-in .wrapper {
    height: 100%;
    padding: 0 50px;
    position: static;
}

.header-in .columns {
    position: static;
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
}

.header-in .column {
    display: block;
    position: static;
    vertical-align: middle;
}

.header-in .column-2 {
    flex-grow: 1;
}

.header-in .column-1 {
    width: 140px;
}

.header-in .column-in {
    height: auto;
    position: static;
}

.header-nav {
    /*text-align: right;*/
}

.logo-right-content {
    font-size: 50px;
}

.header-nav-in {
    display: inline-block;
    text-align: left;
    margin: 0 -17px;
}

.header-nav-item {
    display: inline-block;
    vertical-align: middle;
}

.header-nav-in a {
    display: block;
    padding: 0 17px;
    line-height: 90px;
}

.header-nav-in a.active {
    color: #449DCC !important;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo .header-logo-left {
    margin-right: 20px;
}

.header-logo-left {
    width: 35px;
}

.header-mobile-logo {
    display: none !important;
}

.nav-toggle {
    cursor: pointer;
    margin: 0;
    overflow: visible;
    display: none;
    width: 60px;
    height: 60px;
    position: fixed;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 9;
}

.nav-toggle-in {
    width: 44px;
    height: 44px;
    background: #000;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
}

.nav-open .nav-toggle-in {
    background: #FFF;
}

.nav-toggle-container {
    position: relative;
    width: 18px;
    height: 22px;
    margin: 0 auto;
    top: 14px;
}

.nav-toggle-in-content,
.nav-toggle-in-content::before,
.nav-toggle-in-content::after {
    width: 18px;
    height: 3px;
    background-color: #FFF;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.nav-toggle-in-content::before,
.nav-toggle-in-content::after {
    content: "";
    display: block;
}

.nav-toggle-in-content::before {
    top: 7px;
    width: 14px;
    right: 0;
}

.nav-toggle-in-content::after {
    bottom: -9px;
    top: 14px;
}

.nav-open .nav-toggle-in-content {
    transform: translate3d(0, 10px, 0) rotate(45deg);
}

.nav-open .nav-toggle-in-content::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0;
}

.nav-open .nav-toggle-in-content::after {
    transform: translate3d(0, -19px, 0) rotate(-90deg);
    top: 19px;
}

.nav-open .nav-toggle-container {
    top: 11px;
}

.nav-open .nav-toggle-in-content,
.nav-open .nav-toggle-in-content::before,
.nav-open .nav-toggle-in-content::after {
    background: #000;
}

/** SECTION: BRICKS **/
.brick-featured-1 {
    display: flex;
    align-items: center;
    min-height: 100vh;
}

.brick-featured-1 .brick-in {
    position: relative;
    z-index: 2;
    padding: 0 30px;
    max-width: 800px;
}

.button-group .component {
    display: inline-block;
    vertical-align: middle;
    margin-right: 26px;
}

.button-group .component:last-child {
    margin-right: 0;
}

.usps-top {
    max-width: 720px;
    margin: 0 auto;
}

.dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #288EC4;
    opacity: 0.5;
    margin: 0 7px;
    cursor: pointer;
}

.dots span:hover {
    background: #FFCC01 !important;
}

.dots span.active {
    opacity: 1;
}

.slider-visual {
    opacity: 0;
}

.slider-visual.active {
    opacity: 1;
}

.slider .background {
    left: -9999px;
    right: 0;
    width: auto;
}

.slider .column-1 {
    padding: 45px 0 45px 45px;
}

.slider .column-2 {
    width: 571px;
}

.slider-item-in {
    padding-right: 166px;
}

.slider-item img {
    max-height: 56px;
}

.slider .dots {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.team-members-archive-top {
    max-width: 700px;
    margin: 0 auto;
}

.loop-team-members:after {
    display: table;
    content: '';
    clear: both;
}

.brick-logos-top {
    max-width: 700px;
    margin: 0 auto;
}

.loop-logos {
    background: rgba(21, 197, 148, 0.05);
    border-top: 2px solid #288EC4;
}

.loop-logos:first-child {
    border-top: none;
}

.loop-logos:after {
    display: table;
    content: '';
    clear: both;
}

.contact-item img {
    max-height: 65px;
}

.brick-contact-1 .column-2 {
    text-align: right;
}

.brick-contact-1 .column-2 .contact-item {
    display: inline-block;
    text-align: left;
}

.contact-item .component p a {
    text-decoration: none;
}

.brick-featured-half-1 .brick-in {
    padding-left: 50px;
}

.brick-featured-half-1 .brick-in.no-padding {
    padding: 0 !important;
}

.brick-featured-half-1 .column {
    vertical-align: middle;
}

.brick-featured-half-1 .column-in {
    height: auto;
}

.brick-featured-half-1 .column-1 {
    width: 429px;
    padding-right: 127px;
}

.brick-featured-half-1 .column-1 .component img {
    max-height: 69px;
}

em {
    font-style: italic
}

.component p a {
    text-decoration: underline;
}

.brick-content-1 .video-popup {
    height: 100%;
}

.component-content-media {
    position: relative;
    height: 485px;
}

.component-content-media .component-content-media-in {
    position: absolute;
    width: 1070px;
    top: 0;
    right: 0;
    height: 100%;
}

.component-content-media.align-right .component-content-media-in {
    right: auto;
    left: 0;
}

.component-content-media.align-center .component-content-media-in {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.component-content-media .component {
    position: relative;
    height: 100%;
}

.video-popup {
    cursor: pointer;
}

.play {
    position: absolute;
    z-index: 2;
    width: 269px;
    height: 269px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.play-in {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.map {
    height: 830px;
}

.team-selected-top {
    max-width: 700px;
    margin: 0 auto;
}

.brick-team-selected-1 .column-1 {
    padding-right: 30px;
}

.team-selected-member {
    display: table;
    width: 100%;
}

.team-selected-member-left {
    display: table-cell;
    vertical-align: top;
    width: 102px;
}

.team-selected-member-right {
    display: table-cell;
    vertical-align: middle;
    padding-left: 20px;
}

.team-selected-image {
    border: 2px solid #288EC4;
    height: 102px;
    position: relative;
}

.team-selected-member-right a {
    text-decoration: none !important;
}

.team-selected-member-right a:hover {
    color: #288EC4;
}

/** SECTION: BOTTOM **/
.footer-top {
    position: relative;
    border-bottom: 1px solid #449DCC;
}

.footer-in {
    position: relative;
    z-index: 2;
    padding: 100px 0;
}

.footer-in .column-1 {
    width: 200px;
}

.footer-top .background {
    z-index: 1;
}

.footer-top .background-in {
    background: #288EC4;
}

.footer-in .column-2 {
    padding-left: 70px;
}

.footer-in .column-2,
.footer-bottom .column-2 {
    text-align: right;
}

.footer-in .column-2 .column-in {
    display: inline-block;
    text-align: left;
    margin: 0 -40px;
}

.footer-bottom {
    position: relative;
}

.footer-bottom-nav {
    display: inline-block;
    text-align: left;
    margin: 0 -17px;
}

.footer-nav {
    display: inline-block;
    vertical-align: top;
    padding: 0 40px;
}

.footer-nav a {
    display: block;
}

.footer-nav .component p a {
    text-decoration: none;
}

.footer-bottom-nav a {
    display: inline-block;
    vertical-align: middle;
    padding: 0 17px;
    opacity: 1;
}

.footer-bottom-nav a:hover,
.footer-bottom-nav a:hover,
.footer-bottom-nav a:hover {
    opacity: 0.6;
}

.footer-nav a:hover {
    color: #489FCD;
}

.footer-bottom-in {
    padding: 10px 0;
}

.footer-bottom-in .column-1 {
    width: 110px;
}

.footer-bottom-in .column-2 {
    padding-left: 20px;
}

.footer-bottom .wrapper {
    z-index: 1;
}

.footer-bottom .background {
    z-index: 0;
}

.cookie-popup {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 999999;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.2);
    max-height: none;
}

.cookie-popup-in {
    background: #FFF;
    padding: 30px;
    max-width: 1140px;
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.2);
}

.cookie-popup-in.show-settings .cookie-main-tab,
.cookie-settings-tab {
    display: none;
}

.cookie-popup-in.show-settings .cookie-settings-tab {
    display: block;
}

.cookie-title {
    margin-bottom: 20px;
}

.cookie-settings-tab .cookie-title {
    margin-bottom: 30px;
}

.cookie-popup .text-2 {
    line-height: 1.563em;
}

.cookie-popup .text-3 a {
    text-decoration: underline;
}

.cookie-popup .text-3 a:hover {
    color: #1176BA;
}

.cookie-title > * {
    display: inline-block;
    vertical-align: middle;
}

.cookie-title-image img {
    max-width: 98px;
    margin-right: 6px;
}

.cookie-popup .btn {
    padding: 16px !important;
    font-size: 15px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

.cookie-popup .btn.btn-gray {
    padding: 12px 15px !important;
}

.cookie-popup-bottom {
    /*display: table;*/
    /*width: 100%;*/
    /*margin-top: 25px;*/
}

/*.cookie-popup-bottom-left {*/
/*display: table-cell;*/
/*vertical-align: middle;*/
/*}*/

.cookie-popup-bottom {
    margin: 25px -3px 0;
    text-align: right;
}

.cookie-popup .component .text-2 a {
    color: #288EC4;
    text-decoration: underline;
}

.cookie-popup-bottom > * {
    display: inline-block;
    vertical-align: middle;
    padding: 5px 3px;
}

.cookie-settings > .component {
    margin-bottom: 30px;
    padding-right: 0 !important;
}

.cookie-settings .input-row.input-row-check label {
    display: block;
    padding-left: 0;
    padding-right: 170px;
    font-size: inherit !important;
    letter-spacing: 0 !important;
    position: relative;
    cursor: pointer;
}

.cookie-settings > .component:last-child {
    margin-bottom: 0;
}

.cookie-settings .input-row.input-row-check label .checkbox-rail-in::before {
    position: absolute;
    height: 25px;
    width: 25px;
    top: 0;
    left: 0;
    background: #FFF;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: '';
}

.cookie-tab .input-row-check input {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.cookie-settings .input-row.input-row-check label input:checked ~ .checkbox-rail .checkbox-rail-in::before {
    left: auto;
    right: 0;
}

.cookie-settings .input-row.input-row-check label .checkbox-rail-in {
    position: relative;
    height: 100%;
}

.cookie-settings-button {
    cursor: pointer;
    margin-right: 18px;
}

.cookie-settings .input-row.input-row-check label input:checked ~ .checkbox-rail {
    background: #288EC4;
}

.cookie-settings .input-row.input-row-check label .checkbox-rail {
    left: auto;
    position: absolute;
    top: 50%;
    right: 0;
    width: 70px;
    height: 35px;
    padding: 5px;
    border-radius: 17.5px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #D8D8D8;
    border: none;
}

.cookie-popup-bottom-right {
    width: auto;
}

/*.cookie-popup-bottom-right {*/
/*display: table-cell;*/
/*vertical-align: middle;*/
/*width: 330px;*/
/*text-align: right;*/
/*}*/

.input-row-check-disabled {
    opacity: 0.5;
}

.input-row-check-disabled label {
    cursor: not-allowed !important;
}

.cookie-tabs {
    display: none;
    font-size: 0.9em;
    margin-top: 20px;
}

.cookie-tabs-top {
    border-bottom: 1px solid #ccc;
    height: 35px;
}

.cookie-tabs-top div {
    display: block;
    float: left;
    line-height: 35px;
    height: 35px;
    padding: 0px 10px;
    margin-right: 0px;
    cursor: pointer;
}

.cookie-tabs-top div.active {
    border: 1px solid #ccc;
    border-bottom: 1px solid #fff;
}

.cookie-tabs-bottom [data-tab] {
    padding-top: 10px;
    display: none;
}

.cookie-tabs-bottom [data-tab].active {
    display: block;
}

.cookies-info-in {
    display: table;
    width: 100%;
}

.cookies-info-left, .cookies-info-right {
    display: table-cell;
    vertical-align: top;
}

.cookies-info-left {
    width: 160px;
}

.cookies-info-left div {
    cursor: pointer;
    padding: 5px 0px;
    border-bottom: 1px solid #ccc;
}

.cookies-info-left div.active {
    color: #286AA6 !important;
}

.cookies-info-right {
    border-left: 1px solid #ccc;
    padding-left: 20px;
    padding-top: 5px;
}

.cookies-info-left div:last-child {
    border-bottom: 0px;
}

.cookie-tabs-bottom p {
    margin-bottom: 10px;
}

.cookie-tabs-bottom p:last-child {
    margin-bottom: 0px !important;
}

.cookie-tabs-bottom .btn {
    display: inline-block;
    text-decoration: none;
}

.cookies-info-right [data-cookieinfo-tab] {
    display: none;
}

.cookies-info-right [data-cookieinfo-tab].active {
    display: block;
}

.cookies-info-right .title {
    font-weight: 600;
    font-size: 1em;
    color: #232626;
    margin-bottom: 0.25em;
}

.cookie-table-row {
    display: table;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 5px;
}

.cookie-table-column {
    display: table-cell;
    vertical-align: top;
    padding: 3px 10px;
}

.cookie-table-column.remove-overflow {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cookie-table-row:first-child {
    background: #f1f1f1;
    font-weight: 600;
}

.cookies-info-right .title {
    display: none;
}

.cookie-popup.show-info .cookie-tabs {
    display: block;
}

.toggle-cookie-information .less {
    display: none;
}

.cookie-popup.show-info .toggle-cookie-information .more {
    display: none;
}

.cookie-popup.show-info .toggle-cookie-information .less {
    display: block;
}

.cookie-notice-links .toggle-cookie-information,
.cookie-notice-links > a {
    display: inline-block;
    vertical-align: middle;
}

.cookie-notice-links > a {
    float: right;
}

button {
    margin: 0;
    background: transparent;
    padding: 0;
    font: inherit;
}

.nav-item-sub .label-1-out .text-6 {
    text-transform: none;
}

.brick-form-1 .column-1 {
    padding-right: 70px;
}

.brick-form-1 .column-2 {
    width: 580px;
}

.brick-form-1 .gform_heading {
    color: #A9A9A9;
    margin-bottom: 5px;
}

.form-select-in,
.form-textarea-in,
.form-text-in {
    position: relative;
}

.form-select-in.focus .form-label,
.form-textarea-in.focus .form-label,
.form-text-in.focus .form-label {
    font-size: 16px;
    top: 0;
}

legend.gfield_label,
.form-select-in .form-label {
    pointer-events: none;
    font-size: 20px;
    font-weight: 500;
    color: #A9A9A9;
}

legend.gfield_label {
    margin-bottom: 10px;
}

.form-textarea-in .form-label,
.form-text-in .form-label {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 20px;
    font-weight: 500;
    color: #A9A9A9;
    -webkit-transition: all 200ms ease;
    -moz-transition: all 200ms ease;
    -ms-transition: all 200ms ease;
    -o-transition: all 200ms ease;
    transition: all 200ms ease;
}

.form-textarea-in .form-label {
    top: 0;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.form-select-in .form-label > *,
.form-textarea-in .form-label > *,
.form-text-in .form-label > * {
    display: inline-block;
}

.form-select-in select,
.form-textarea-in textarea,
.form-text-in input {
    display: block;
    width: 100%;
    border: none;
    -webkit-appearance: none;
    font-family: inherit;
    height: 70px;
    background: transparent;
    border-bottom: 3px solid #449DCC;
    font-size: 20px;
    border-radius: 0;
}

.form-textarea-in textarea {
    height: 160px;
    max-height: 160px;
    min-height: 160px;
    resize: none;
    outline: none;
    padding: 30px 0 0 0;
}

.form-select-in select {
    cursor: pointer;
    outline: none;
    border-radius: 0;
}

.form-select-in .ginput_container {
    position: relative;
}

.form-select-in .ginput_container::after {
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e908";
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.ginput_container_checkbox label {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 10px;
    cursor: pointer;
}

.ginput_container_checkbox .gchoice:last-child label {
    margin-bottom: 0;
}

.ginput_container_checkbox label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    display: block;
    width: 18px;
    height: 18px;
    border: 2px solid #449DCC;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.ginput_container_checkbox label::after {
    display: none;
    content: '';
    position: absolute;
    left: 5px;
    top: 50%;
    width: 12px;
    height: 12px;
    background: #449DCC;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.ginput_container_checkbox input:checked ~ label::after {
    display: block;
}

.ginput_container_checkbox input {
    position: absolute;
    left: -999px;
    opacity: 0;
}

.ginput_container_checkbox {
    margin-bottom: 40px;
}

.brick-calculator-1 {
    overflow: hidden;
}

.form-team-in {
    display: table;
    width: 100%;
}

.form-team-left,
.form-team-right {
    display: table-cell;
    vertical-align: middle;
}

.form-team-left {
    width: 150px;
}

.form-team-right {
    padding-left: 30px;
}

.form-team-image {
    padding-top: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.header-nav-dropdown {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 99%;
    z-index: 2;
    left: 0;
    width: 100%;
    background: #FAFAFA;
}

/*.header-nav-dropdown-container {*/
/*position: relative;*/
/*overflow: hidden;*/
/*height: 0;*/
/*}*/

/*.header-nav-dropdown-container-in {*/
/*position: absolute;*/
/*width: 100%;*/
/*left: 0;*/
/*}*/

.header-nav-dropdown-out {
    padding: 45px 0;
    max-width: 1000px;
    margin: 0 auto;
    white-space: nowrap;
    font-size: 0;
    position: relative;
}

.header-nav-item a > i {
    position: relative;
    top: 3px;
}

.dropdown-item .component ul li {
    padding: 0 !important;
    margin-bottom: 10px;
}

.dropdown-item .component ul li:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 7px;
    width: 3px;
    height: 9px;
    border: solid #FFFFFF;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.dropdown-item .component ul li:before {
    display: none !important;
}

.header-nav-dropdown-out::after,
.header-nav-dropdown-out::before {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 9999px;
    right: 100%;
    content: '';
    z-index: 1;
    background: #FAFAFA;
    opacity: 0.35;
    pointer-events: none;
}

.header-nav-dropdown-out::before {
    right: auto;
    left: 100%;
}

.header-nav-dropdown-in {
    /*margin: 0 -25px;*/
}

.header-nav-item:hover .header-nav-dropdown {
    /*display: block;*/
    opacity: 1;
    pointer-events: all;
    height: auto;
}

.dropdown-item {
    width: 33.333%;
    display: inline-block;
    white-space: normal;
    font-size: 18px;
    padding: 0 !important;
}

.dropdown-item-in {
    padding: 0 25px;
}

.dropdown-item .item-image {
    height: 150px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.dropdown-item .item-image img {
    margin: 0 auto;
    max-height: 60px;
}

.header-nav-dropdown .arrow {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #449DCC;
    color: #FFF;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    z-index: 2;
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 70px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-nav-dropdown .arrow.arrow-right {
    left: auto;
    right: 70px;
}

.dropdown-item-in a {
    display: inherit;
    line-height: inherit;
    padding: 0;
}

.dropdown-item-in .button-5 {
    text-align: left;
}

.dropdown-item .component ul li div {
    top: 4px;
    width: 20px;
    height: 20px;
    display: inline-block;
    font-family: "untitled-font-9" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-radius: 100%;
    position: relative;
    bottom: -5px;
    margin-right: 10px;
}

.button-6 .button-in {
    padding: 13px 18px;
    border-radius: 3px;
    overflow: hidden;
}

.tel-button .ft,
.button-6 .button-in .ft {
    position: relative;
    top: 3px;
    margin-right: 14px;
}

.tel-button .ft span {
    position: absolute;
    right: -3px;
    top: -3px;
    display: block;
    width: 8px;
    height: 8px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.tel-button .ft span.inner {
    margin-right: 3px;
    margin-top: 3px;
}

.tel-button .ft span.border {
    opacity: 0.3;
    width: 14px;
    height: 14px;
}

.header-inner .button-group .component {
    margin-right: 44px;
}

.header-inner .button-group .component:last-child {
    margin-right: 0;
}

.brick-faq-1 a {
    color: #0088DD;
    text-decoration: none !important;
}

.brick-blog-archive-1 .middle {
    position: absolute;
    left: 50%;
    right: 50%;
    width: 250px;
    text-align: center;
    transform: translateX(-50%);
}


.brick-blog-archive-1 .next {
    position: absolute;
    right: 0;
}

.brick-blog-archive-1 .brick-in-bottom {
    position: relative;
}

.logo-not-mobile {
    display: block;
}

.logo-mobile {
    display: none;
}

.brick-blog-archive-1 .item-in-bottom .item-in {
    display: block !important
}

.software-selected-loop{
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.software-item{
    display: block;
    padding: 25px 20px 20px 20px;
    border-radius: 5px;
    flex: 1 0;
    background-color: #449DCC;
}

.software-item .item-in {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.software-item .software-img img{
    max-height: 50px;
    margin: 0 auto;
}

.software-content{
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    height: 100%;
}

.software-content-in{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.software-text{
    margin-bottom: 20px;
}

.software-text .text p{
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.software-list ul li{
    line-height: 30px;
    margin-bottom: 5px;
    padding-left: 35px;
    background: url(//pieq.nl/wp-content/themes/bz-pieq/assets/media/images/icon-check.svg) no-repeat top 3px left;
}

.software-btn .btn{
    color: #fff;
    font-weight: 500;
    font-size: 1.111em;
    display: flex;
    align-items: center;
    gap: 15px;
}

.software-btn .btn img{
    transition: ease-in-out 200ms transform;
    position: relative;
    top: 1px;
}

.software-item:hover .software-btn .btn img{
    transform: translateX(5px);
}
@media screen and (min-width: 1025px) {
    .header-in.transparent.dropdown-visible {
        background: #fff !important;
    }
    
    
    
    .header-in.transparent.dropdown-visible .header-inner:after {
        opacity: 1;
    }
    
    
    .header-in.transparent.dropdown-visible .logo-right-content {
        color: inherit;
    }
    
    
    .header-in.transparent.dropdown-visible .header-nav-links a {
        color: inherit;
    }
    
    
    .header-nav-item:hover > a i {
        color: #000 !important;
    }

    .header-nav-item:hover > a,
    .header-nav-in a:hover,
    .header-nav-in a.active {
        color: #449DCC !important;
    }
}

/************* MAX WIDE *************/
@media screen and (max-width: 1600px) {

    /** COMMON **/
    body,html {
    }







    /** COMPONENTS **/


    /** LOOPS **/





    /** PARTS **/


    /** SECTIONS **/
    /** SECTION: TOP **/


    /** SECTION: BRICKS **/


    .slider-item-in {
        padding-right: 60px;
    }





    .component-content-media {
        position: relative;
        height: 405px;
    }

    .component-content-media .component-content-media-in {
        width: 890px;
    }



    /** SECTION: BOTTOM **/


}

/************* MAX DESKTOP *************/
@media screen and (max-width: 1224px) {

    /** COMMON **/
    body,html {
    }


    .container-1 {
        padding: 150px 0px;
    }





    /** COMPONENTS **/
    .title-6 {
        font-size: 3.1em
    }
    .title-5 {
        font-size: 3em;
    }
    .title-7 {
        font-size: 4em;
    }

    /** LOOPS **/
    .loop-usps {
        margin: -25px -46px;
    }

    .loop-logos {
        margin: 0px;
    }
    .item-logos {
        padding: 0px;
        width: 20%;
    }

    .loop-team-members {
        margin: -26px;
    }
    .item-team-members {
        padding: 26px;
        width: 50%;
    }



    /** PARTS **/


    /** SECTIONS **/
    /** SECTION: TOP **/
    .logo-right-content {
        font-size: 44px;
    }

    /** SECTION: BRICKS **/
    .brick-form-1 .column-2 {
        width: 380px;
    }

    .brick-form-1 .column-1 {
        padding-right: 40px;
    }

    .slider .column-2 {
        width: 40%;
    }

    .brick-featured-half-1 .column-1 {
        width: 338px;
        padding-right: 90px;
    }


    .map {
        height: 750px;
    }

    .header-nav-dropdown-out {
        margin: 0 100px;
    }

    .header-nav-dropdown .arrow.arrow-right {
        right: 20px;
    }

    .header-nav-dropdown .arrow {
        left: 20px;
    }

    /** SECTION: BOTTOM **/
    .footer-in .column-2 .column-in {
        margin: -25px;
    }

    .footer-nav {
        padding: 25px;
    }

    .footer-in {
        padding: 50px 0;
    }

    .header-inner .button-group .component {
        display: none;
    }

    .header-inner .button-group .component:last-child {
        display: inline-block;
    }

}

/************* MAX TABLET-LANDSCAPE *************/
@media screen and (max-width: 1024px) {

    /** COMMON **/
    body,html {
        font-size: 17px;line-height: 1.680em;           }

    .bricks.extra-padding {
        padding-top: 70px;
    }
    .container-1 {
        padding: 100px 0px;
    }

    .wrapper-1 {
        padding: 0px 55px;
    }
    .wrapper-2 {
        padding: 0px 55px;
    }
    .wrapper-3 {
        padding: 0px 55px;
    }


    /** SPACING **/
    .p-0{padding:0px !important;}.pt-0{padding-top: 0px !important;}.pr-0{padding-right: 0px !important;}.pb-0{padding-bottom: 0px !important;}.pl-0{padding-left: 0px !important;}.m-0{margin:0px !important;}.mt-0{margin-top: 0px !important;}.mr-0{margin-right: 0px !important;}.mb-0{margin-bottom: 0px !important;}.ml-0{margin-left: 0px !important;}
    .p-5{padding:4px !important;}.pt-5{padding-top: 4px !important;}.pr-5{padding-right: 4px !important;}.pb-5{padding-bottom: 4px !important;}.pl-5{padding-left: 4px !important;}.m-5{margin:4px !important;}.mt-5{margin-top: 4px !important;}.mr-5{margin-right: 4px !important;}.mb-5{margin-bottom: 4px !important;}.ml-5{margin-left: 4px !important;}
    .p-10{padding:8px !important;}.pt-10{padding-top: 8px !important;}.pr-10{padding-right: 8px !important;}.pb-10{padding-bottom: 8px !important;}.pl-10{padding-left: 8px !important;}.m-10{margin:8px !important;}.mt-10{margin-top: 8px !important;}.mr-10{margin-right: 8px !important;}.mb-10{margin-bottom: 8px !important;}.ml-10{margin-left: 8px !important;}
    .p-15{padding:13px !important;}.pt-15{padding-top: 13px !important;}.pr-15{padding-right: 13px !important;}.pb-15{padding-bottom: 13px !important;}.pl-15{padding-left: 13px !important;}.m-15{margin:13px !important;}.mt-15{margin-top: 13px !important;}.mr-15{margin-right: 13px !important;}.mb-15{margin-bottom: 13px !important;}.ml-15{margin-left: 13px !important;}
    .p-20{padding:17px !important;}.pt-20{padding-top: 17px !important;}.pr-20{padding-right: 17px !important;}.pb-20{padding-bottom: 17px !important;}.pl-20{padding-left: 17px !important;}.m-20{margin:17px !important;}.mt-20{margin-top: 17px !important;}.mr-20{margin-right: 17px !important;}.mb-20{margin-bottom: 17px !important;}.ml-20{margin-left: 17px !important;}
    .p-25{padding:21px !important;}.pt-25{padding-top: 21px !important;}.pr-25{padding-right: 21px !important;}.pb-25{padding-bottom: 21px !important;}.pl-25{padding-left: 21px !important;}.m-25{margin:21px !important;}.mt-25{margin-top: 21px !important;}.mr-25{margin-right: 21px !important;}.mb-25{margin-bottom: 21px !important;}.ml-25{margin-left: 21px !important;}
    .p-30{padding:25px !important;}.pt-30{padding-top: 25px !important;}.pr-30{padding-right: 25px !important;}.pb-30{padding-bottom: 25px !important;}.pl-30{padding-left: 25px !important;}.m-30{margin:25px !important;}.mt-30{margin-top: 25px !important;}.mr-30{margin-right: 25px !important;}.mb-30{margin-bottom: 25px !important;}.ml-30{margin-left: 25px !important;}
    .p-35{padding:29px !important;}.pt-35{padding-top: 29px !important;}.pr-35{padding-right: 29px !important;}.pb-35{padding-bottom: 29px !important;}.pl-35{padding-left: 29px !important;}.m-35{margin:29px !important;}.mt-35{margin-top: 29px !important;}.mr-35{margin-right: 29px !important;}.mb-35{margin-bottom: 29px !important;}.ml-35{margin-left: 29px !important;}
    .p-40{padding:33px !important;}.pt-40{padding-top: 33px !important;}.pr-40{padding-right: 33px !important;}.pb-40{padding-bottom: 33px !important;}.pl-40{padding-left: 33px !important;}.m-40{margin:33px !important;}.mt-40{margin-top: 33px !important;}.mr-40{margin-right: 33px !important;}.mb-40{margin-bottom: 33px !important;}.ml-40{margin-left: 33px !important;}
    .p-45{padding:38px !important;}.pt-45{padding-top: 38px !important;}.pr-45{padding-right: 38px !important;}.pb-45{padding-bottom: 38px !important;}.pl-45{padding-left: 38px !important;}.m-45{margin:38px !important;}.mt-45{margin-top: 38px !important;}.mr-45{margin-right: 38px !important;}.mb-45{margin-bottom: 38px !important;}.ml-45{margin-left: 38px !important;}
    .p-50{padding:42px !important;}.pt-50{padding-top: 42px !important;}.pr-50{padding-right: 42px !important;}.pb-50{padding-bottom: 42px !important;}.pl-50{padding-left: 42px !important;}.m-50{margin:42px !important;}.mt-50{margin-top: 42px !important;}.mr-50{margin-right: 42px !important;}.mb-50{margin-bottom: 42px !important;}.ml-50{margin-left: 42px !important;}
    .p-55{padding:46px !important;}.pt-55{padding-top: 46px !important;}.pr-55{padding-right: 46px !important;}.pb-55{padding-bottom: 46px !important;}.pl-55{padding-left: 46px !important;}.m-55{margin:46px !important;}.mt-55{margin-top: 46px !important;}.mr-55{margin-right: 46px !important;}.mb-55{margin-bottom: 46px !important;}.ml-55{margin-left: 46px !important;}
    .p-60{padding:50px !important;}.pt-60{padding-top: 50px !important;}.pr-60{padding-right: 50px !important;}.pb-60{padding-bottom: 50px !important;}.pl-60{padding-left: 50px !important;}.m-60{margin:50px !important;}.mt-60{margin-top: 50px !important;}.mr-60{margin-right: 50px !important;}.mb-60{margin-bottom: 50px !important;}.ml-60{margin-left: 50px !important;}
    .p-65{padding:54px !important;}.pt-65{padding-top: 54px !important;}.pr-65{padding-right: 54px !important;}.pb-65{padding-bottom: 54px !important;}.pl-65{padding-left: 54px !important;}.m-65{margin:54px !important;}.mt-65{margin-top: 54px !important;}.mr-65{margin-right: 54px !important;}.mb-65{margin-bottom: 54px !important;}.ml-65{margin-left: 54px !important;}
    .p-70{padding:59px !important;}.pt-70{padding-top: 59px !important;}.pr-70{padding-right: 59px !important;}.pb-70{padding-bottom: 59px !important;}.pl-70{padding-left: 59px !important;}.m-70{margin:59px !important;}.mt-70{margin-top: 59px !important;}.mr-70{margin-right: 59px !important;}.mb-70{margin-bottom: 59px !important;}.ml-70{margin-left: 59px !important;}
    .p-75{padding:63px !important;}.pt-75{padding-top: 63px !important;}.pr-75{padding-right: 63px !important;}.pb-75{padding-bottom: 63px !important;}.pl-75{padding-left: 63px !important;}.m-75{margin:63px !important;}.mt-75{margin-top: 63px !important;}.mr-75{margin-right: 63px !important;}.mb-75{margin-bottom: 63px !important;}.ml-75{margin-left: 63px !important;}
    .p-80{padding:67px !important;}.pt-80{padding-top: 67px !important;}.pr-80{padding-right: 67px !important;}.pb-80{padding-bottom: 67px !important;}.pl-80{padding-left: 67px !important;}.m-80{margin:67px !important;}.mt-80{margin-top: 67px !important;}.mr-80{margin-right: 67px !important;}.mb-80{margin-bottom: 67px !important;}.ml-80{margin-left: 67px !important;}
    .p-85{padding:71px !important;}.pt-85{padding-top: 71px !important;}.pr-85{padding-right: 71px !important;}.pb-85{padding-bottom: 71px !important;}.pl-85{padding-left: 71px !important;}.m-85{margin:71px !important;}.mt-85{margin-top: 71px !important;}.mr-85{margin-right: 71px !important;}.mb-85{margin-bottom: 71px !important;}.ml-85{margin-left: 71px !important;}
    .p-90{padding:75px !important;}.pt-90{padding-top: 75px !important;}.pr-90{padding-right: 75px !important;}.pb-90{padding-bottom: 75px !important;}.pl-90{padding-left: 75px !important;}.m-90{margin:75px !important;}.mt-90{margin-top: 75px !important;}.mr-90{margin-right: 75px !important;}.mb-90{margin-bottom: 75px !important;}.ml-90{margin-left: 75px !important;}
    .p-95{padding:79px !important;}.pt-95{padding-top: 79px !important;}.pr-95{padding-right: 79px !important;}.pb-95{padding-bottom: 79px !important;}.pl-95{padding-left: 79px !important;}.m-95{margin:79px !important;}.mt-95{margin-top: 79px !important;}.mr-95{margin-right: 79px !important;}.mb-95{margin-bottom: 79px !important;}.ml-95{margin-left: 79px !important;}
    .p-100{padding:84px !important;}.pt-100{padding-top: 84px !important;}.pr-100{padding-right: 84px !important;}.pb-100{padding-bottom: 84px !important;}.pl-100{padding-left: 84px !important;}.m-100{margin:84px !important;}.mt-100{margin-top: 84px !important;}.mr-100{margin-right: 84px !important;}.mb-100{margin-bottom: 84px !important;}.ml-100{margin-left: 84px !important;}
    .p-105{padding:88px !important;}.pt-105{padding-top: 88px !important;}.pr-105{padding-right: 88px !important;}.pb-105{padding-bottom: 88px !important;}.pl-105{padding-left: 88px !important;}.m-105{margin:88px !important;}.mt-105{margin-top: 88px !important;}.mr-105{margin-right: 88px !important;}.mb-105{margin-bottom: 88px !important;}.ml-105{margin-left: 88px !important;}
    .p-110{padding:92px !important;}.pt-110{padding-top: 92px !important;}.pr-110{padding-right: 92px !important;}.pb-110{padding-bottom: 92px !important;}.pl-110{padding-left: 92px !important;}.m-110{margin:92px !important;}.mt-110{margin-top: 92px !important;}.mr-110{margin-right: 92px !important;}.mb-110{margin-bottom: 92px !important;}.ml-110{margin-left: 92px !important;}
    .p-115{padding:96px !important;}.pt-115{padding-top: 96px !important;}.pr-115{padding-right: 96px !important;}.pb-115{padding-bottom: 96px !important;}.pl-115{padding-left: 96px !important;}.m-115{margin:96px !important;}.mt-115{margin-top: 96px !important;}.mr-115{margin-right: 96px !important;}.mb-115{margin-bottom: 96px !important;}.ml-115{margin-left: 96px !important;}
    .p-120{padding:100px !important;}.pt-120{padding-top: 100px !important;}.pr-120{padding-right: 100px !important;}.pb-120{padding-bottom: 100px !important;}.pl-120{padding-left: 100px !important;}.m-120{margin:100px !important;}.mt-120{margin-top: 100px !important;}.mr-120{margin-right: 100px !important;}.mb-120{margin-bottom: 100px !important;}.ml-120{margin-left: 100px !important;}
    .p-125{padding:105px !important;}.pt-125{padding-top: 105px !important;}.pr-125{padding-right: 105px !important;}.pb-125{padding-bottom: 105px !important;}.pl-125{padding-left: 105px !important;}.m-125{margin:105px !important;}.mt-125{margin-top: 105px !important;}.mr-125{margin-right: 105px !important;}.mb-125{margin-bottom: 105px !important;}.ml-125{margin-left: 105px !important;}
    .p-130{padding:109px !important;}.pt-130{padding-top: 109px !important;}.pr-130{padding-right: 109px !important;}.pb-130{padding-bottom: 109px !important;}.pl-130{padding-left: 109px !important;}.m-130{margin:109px !important;}.mt-130{margin-top: 109px !important;}.mr-130{margin-right: 109px !important;}.mb-130{margin-bottom: 109px !important;}.ml-130{margin-left: 109px !important;}
    .p-135{padding:113px !important;}.pt-135{padding-top: 113px !important;}.pr-135{padding-right: 113px !important;}.pb-135{padding-bottom: 113px !important;}.pl-135{padding-left: 113px !important;}.m-135{margin:113px !important;}.mt-135{margin-top: 113px !important;}.mr-135{margin-right: 113px !important;}.mb-135{margin-bottom: 113px !important;}.ml-135{margin-left: 113px !important;}
    .p-140{padding:117px !important;}.pt-140{padding-top: 117px !important;}.pr-140{padding-right: 117px !important;}.pb-140{padding-bottom: 117px !important;}.pl-140{padding-left: 117px !important;}.m-140{margin:117px !important;}.mt-140{margin-top: 117px !important;}.mr-140{margin-right: 117px !important;}.mb-140{margin-bottom: 117px !important;}.ml-140{margin-left: 117px !important;}
    .p-145{padding:121px !important;}.pt-145{padding-top: 121px !important;}.pr-145{padding-right: 121px !important;}.pb-145{padding-bottom: 121px !important;}.pl-145{padding-left: 121px !important;}.m-145{margin:121px !important;}.mt-145{margin-top: 121px !important;}.mr-145{margin-right: 121px !important;}.mb-145{margin-bottom: 121px !important;}.ml-145{margin-left: 121px !important;}
    .p-150{padding:125px !important;}.pt-150{padding-top: 125px !important;}.pr-150{padding-right: 125px !important;}.pb-150{padding-bottom: 125px !important;}.pl-150{padding-left: 125px !important;}.m-150{margin:125px !important;}.mt-150{margin-top: 125px !important;}.mr-150{margin-right: 125px !important;}.mb-150{margin-bottom: 125px !important;}.ml-150{margin-left: 125px !important;}




    /** COMPONENTS **/
    .title-4 {
        font-size: 2.941em;                     }
    .title-5 {
        font-size: 2.95em;
    }
    .title-6 {
        font-size: 3.05em;
    }
    .title-7 {
        font-size: 4.5em;           }


    /** LOOPS **/
    .loop-usps {
        margin: -25px -20px;
    }
    .item-usps {
        padding: 25px 20px;
    }
    .loop-usps.align-four .item-usps {
        width: 33.333%;
    }
    .loop-logos {
        margin: 0px;
    }
    .item-logos {
        padding: 0px;
        width: 20%;
    }

    .loop-team-members {
        margin: -22px;
    }
    .item-team-members {
        padding: 22px;
        width: 50%;
    }



    /** PARTS **/


    /** SECTIONS **/
    /** SECTION: TOP **/

    .nav-toggle {
        display:block;
    }

    .header-nav {
        position: fixed;
        top: 100%;
        left: 0;
        height: 100%;
        width: 100%;
        background: #449DCC;
        z-index: 9;
    }

    .nav-open .header-nav {
        top: 0;
    }

    .nav-open .header-in {
        bottom: 100%;
    }

    .body {
        height: 100vh;
        overflow-x: hidden;
        overflow-y: auto;
        padding-bottom: 60px;
    }

    .header-in {
        top: auto;
        bottom: 0;
    }

    .border-scroll {
        bottom: auto;
        top: 0;
    }

    .header-in .columns {
        height: 60px;
    }


    .header-in .column-1 {
        height: auto;
    }

    .header-in .button-group .button {
        display: block;
    }

    .button-6 .button-in .ft {
        margin-right: 7px;
    }

    .button-6 .button-in {
        padding: 5px 10px;
        border-radius: 3px;
        overflow: hidden;
    }

    .header-in .wrapper {
        padding: 0 25px;
    }

    .header-nav-item {
        display: block;
    }

    .header-nav-in {
        display: block;
        margin: 0;
        flex-direction: column-reverse;
        justify-content: space-between;
        height: 100%;
        overflow-x: hidden;
        overflow-y: auto;
        padding: 15px 0px
    }

    .header-nav-links a {
        display: block;
        color: #FFF;
        font-size: 34px;
        font-weight: 700;
        padding: 0 25px;
    }

    .header-mobile-links {
        padding: 0 25px;
    }

    .header-mobile-links a {
        display: inline-block;
        vertical-align: middle;
        font-size: 18px;
        font-weight: 700;
        color: #FFF;
        text-decoration: underline;
        padding: 0;
        margin-right: 13px;
    }

    .header-mobile-links a:last-child {
        margin-right: 0;
    }

    .header-mobile-logo {
        display: block !important;
        padding-bottom: 20px !important;
    }

    .header-nav-links {
        padding: 35px 0;
    }

    .dropdown-item .item-content > *,
    .header-nav-dropdown .arrows {
        display: none;
    }

    .dropdown-item .item-image {
        width: auto;
        background: transparent !important;
        height: auto;
        padding: 0;
        display: block;
        margin-bottom: 5px;
    }

    .dropdown-item .item-image img {
        margin: 0;
        max-height: 40px;
    }

    .dropdown-item .item-content > *:first-child {
        display: block;
    }

    .dropdown-item .item-content .text,
    .dropdown-item .item-content .title {
        color: #FFF !important;
    }

    .dropdown-item .mobile-show .text {
        font-size: 18px;
    }

    .dropdown-item .item-content .text {
        font-size: 16px;
        opacity: 0.6;
    }

    .header-nav-item a > i {
        cursor: pointer;
    }

    .header-nav-item.closed .header-nav-dropdown {
        display: none;
    }

    .header-nav-dropdown-out {
        white-space: normal;
        padding: 0;
    }

    .header-mobile-logo .logo-right-content {
        color: #FFF !important;
    }

    .header-nav-dropdown {
        position: relative;
        opacity: 1;
        top: auto;
        pointer-events: all;
        background: transparent;
    }

    .header-nav-dropdown-in {
        padding-top: 20px;
    }

    .dropdown-item {
        display: block;
        width: 100%;
        margin-bottom: 30px;
    }

    .dropdown-item:last-child {
        margin-bottom: 0;
    }

    .header-nav-dropdown-out {
        margin: 0;
    }

    .header-nav-dropdown-out::after,
    .header-nav-dropdown-out::before {
        display: none;
    }

    .header-nav-in a {
        padding: 0 17px;
        line-height: 70px;
    }

    .logo-right-content {
        font-size: 36px;
    }

    .header-logo-left {
        width: 31px;
    }

    /** SECTION: BRICKS **/
    .brick-featured-1 .brick-in {
        padding: 0 25px;
    }
    .slider-item-in {
        padding-right: 50px;
    }

    .brick-featured-half-1 .columns,
    .brick-featured-half-1 .column {
        display: block;
    }

    .brick-featured-half-1 .column {
        width: 100%;
        padding: 0;
    }

    .brick-featured-half-1 .column-1 {
        margin-bottom: 40px;
    }

    .brick-featured-half-1 .brick-in {
        padding: 0 55px;
    }

    .component-content-media .component-content-media-in {
        left: -70px;
    }

    .component-content-media.align-right .component-content-media-in {
        right: -70px;
    }

    .component-content-media {
        height: 375px;
    }

    .brick-featured-half-1 .column-1 .component img {
        max-height: 60px;
    }

    .brick-featured-half-2 .columns,
    .brick-featured-half-4 .columns,
    .brick-featured-half-3 .columns {
        display: block !important;
        table-layout: inherit !important;
    }

    .brick-featured-half-2 .column,
    .brick-featured-half-4 .column,
    .brick-featured-half-3 .column {
        display: block !important;
        padding: 0 !important;
    }

    .brick-featured-half-4 .column-1,
    .brick-featured-half-3 .column-1 {
        padding-right: 0 !important;
    }

    .brick-featured-half-3 .column-2,
    .brick-featured-half-4 .column-2 {
        padding: 0 !important;
    }

    .brick-featured-half-4 .column-2,
    .brick-featured-half-3 .column-1 {
        width: 100% !important;
    }

    .brick-featured-half-4 .column-1,
    .brick-featured-half-3 .column-1 {
        margin-bottom: 30px;
    }

    .brick-featured-half-2 .column-1 {
        margin-bottom: 30px;
    }

    .brick-featured-half-2 .image-container {
        display: none !important;
    }

    .brick-featured-half-2 .visual,
    .brick-featured-half-4 .visual,
    .brick-featured-half-3 .visual {
        position: inherit !important;
        width: 100% !important;
        height: 300px !important;
    }

    .brick-blog-single-1 .brick-in-top-in {
        margin: 0 !important;
        margin-top: 0 !important;
    }

    .brick-form-1 .columns {
        display: block;
    }

    .brick-form-1 .column {
        display: block;
        width: auto;
        padding: 0;
    }

    .brick-form-1 .column-1 {
        margin-bottom: 30px;
    }

    .brick-blog-single-1 .columns {
        display: block !important;
        table-layout: inherit !important;
    }

    .brick-blog-single-1 .column-2 {
        display: block !important;
    }

    .brick-blog-single-1 .column-1 {
        display: flex !important;
        justify-content: center;
        margin-bottom: 30px;
    }

    .brick-blog-single-1 .columns .column-2 {
        padding: 0 !important;
    }

    .brick-blog-single-1 .brick-in-mid {
        padding: 0 50px !important;
    }

    .brick-blog-single-1 .brick-in-mid img {
        max-width: 300px;
    }

    .brick-faq-1 .column-1 {
        width: 200px !important;
    }

    .brick-blog-archive-1 .items .item {
        width: 50% !important;
    }

    .brick-blog-archive-1 .column,
    .brick-blog-archive-1 .columns {
        display: block !important;
    }

    .brick-blog-archive-1 .columns {
        table-layout: inherit !important;
    }

    .brick-blog-archive-1 .columns-1 .column-1,
    .brick-blog-archive-1 .columns-1 .column-2 {
        padding-left: 0 !important;
    }
    .brick-blog-archive-1 .columns-1 .column-1 {
        margin-bottom: 30px;
    }
    .mobile-show {
        display:block;
    }
    .mobile-hide {
        display:none;
    }

    /** SECTION: BOTTOM **/

    .header-nav-dropdown .arrow {
        left: 0px !important;
    }
    .header-nav-dropdown .arrow.arrow-right {
        right: 0px !important;
    }
    .header-nav-dropdown-in {
        margin: 0px;
    }
    .logo-not-mobile {
        display: none;
    }
    .logo-mobile {
        display:block;
    }

    .software-selected-loop{
        gap: 30px;
    }
}

@media screen and (max-width: 900px) {
    .loop-usps.align-three .item-usps {
        padding: 25px 20px;
        width: 50%;
    }
}

/************* MAX TABLET-PORTRAIT *************/
@media screen and (max-width: 768px) {

    /** COMMON **/
    body,html {
        font-size: 16px;line-height: 1.680em;           }

    .columns,
    .column {
        display:block;
    }

    .bricks.extra-padding {
        padding-top: 60px;
    }

    .component ul li:before {
        top: 8px;
    }
    .container-1 {
        padding: 50px 0px;
    }

    .wrapper-1 {
        padding: 0px 50px;
    }
    .wrapper-2 {
        padding: 0px 50px;
    }
    .wrapper-3 {
        padding: 0px 50px;
    }


    /** SPACING **/
    .p-0{padding:0px !important;}.pt-0{padding-top: 0px !important;}.pr-0{padding-right: 0px !important;}.pb-0{padding-bottom: 0px !important;}.pl-0{padding-left: 0px !important;}.m-0{margin:0px !important;}.mt-0{margin-top: 0px !important;}.mr-0{margin-right: 0px !important;}.mb-0{margin-bottom: 0px !important;}.ml-0{margin-left: 0px !important;}
    .p-5{padding:3px !important;}.pt-5{padding-top: 3px !important;}.pr-5{padding-right: 3px !important;}.pb-5{padding-bottom: 3px !important;}.pl-5{padding-left: 3px !important;}.m-5{margin:3px !important;}.mt-5{margin-top: 3px !important;}.mr-5{margin-right: 3px !important;}.mb-5{margin-bottom: 3px !important;}.ml-5{margin-left: 3px !important;}
    .p-10{padding:6px !important;}.pt-10{padding-top: 6px !important;}.pr-10{padding-right: 6px !important;}.pb-10{padding-bottom: 6px !important;}.pl-10{padding-left: 6px !important;}.m-10{margin:6px !important;}.mt-10{margin-top: 6px !important;}.mr-10{margin-right: 6px !important;}.mb-10{margin-bottom: 6px !important;}.ml-10{margin-left: 6px !important;}
    .p-15{padding:9px !important;}.pt-15{padding-top: 9px !important;}.pr-15{padding-right: 9px !important;}.pb-15{padding-bottom: 9px !important;}.pl-15{padding-left: 9px !important;}.m-15{margin:9px !important;}.mt-15{margin-top: 9px !important;}.mr-15{margin-right: 9px !important;}.mb-15{margin-bottom: 9px !important;}.ml-15{margin-left: 9px !important;}
    .p-20{padding:13px !important;}.pt-20{padding-top: 13px !important;}.pr-20{padding-right: 13px !important;}.pb-20{padding-bottom: 13px !important;}.pl-20{padding-left: 13px !important;}.m-20{margin:13px !important;}.mt-20{margin-top: 13px !important;}.mr-20{margin-right: 13px !important;}.mb-20{margin-bottom: 13px !important;}.ml-20{margin-left: 13px !important;}
    .p-25{padding:16px !important;}.pt-25{padding-top: 16px !important;}.pr-25{padding-right: 16px !important;}.pb-25{padding-bottom: 16px !important;}.pl-25{padding-left: 16px !important;}.m-25{margin:16px !important;}.mt-25{margin-top: 16px !important;}.mr-25{margin-right: 16px !important;}.mb-25{margin-bottom: 16px !important;}.ml-25{margin-left: 16px !important;}
    .p-30{padding:19px !important;}.pt-30{padding-top: 19px !important;}.pr-30{padding-right: 19px !important;}.pb-30{padding-bottom: 19px !important;}.pl-30{padding-left: 19px !important;}.m-30{margin:19px !important;}.mt-30{margin-top: 19px !important;}.mr-30{margin-right: 19px !important;}.mb-30{margin-bottom: 19px !important;}.ml-30{margin-left: 19px !important;}
    .p-35{padding:22px !important;}.pt-35{padding-top: 22px !important;}.pr-35{padding-right: 22px !important;}.pb-35{padding-bottom: 22px !important;}.pl-35{padding-left: 22px !important;}.m-35{margin:22px !important;}.mt-35{margin-top: 22px !important;}.mr-35{margin-right: 22px !important;}.mb-35{margin-bottom: 22px !important;}.ml-35{margin-left: 22px !important;}
    .p-40{padding:25px !important;}.pt-40{padding-top: 25px !important;}.pr-40{padding-right: 25px !important;}.pb-40{padding-bottom: 25px !important;}.pl-40{padding-left: 25px !important;}.m-40{margin:25px !important;}.mt-40{margin-top: 25px !important;}.mr-40{margin-right: 25px !important;}.mb-40{margin-bottom: 25px !important;}.ml-40{margin-left: 25px !important;}
    .p-45{padding:28px !important;}.pt-45{padding-top: 28px !important;}.pr-45{padding-right: 28px !important;}.pb-45{padding-bottom: 28px !important;}.pl-45{padding-left: 28px !important;}.m-45{margin:28px !important;}.mt-45{margin-top: 28px !important;}.mr-45{margin-right: 28px !important;}.mb-45{margin-bottom: 28px !important;}.ml-45{margin-left: 28px !important;}
    .p-50{padding:31px !important;}.pt-50{padding-top: 31px !important;}.pr-50{padding-right: 31px !important;}.pb-50{padding-bottom: 31px !important;}.pl-50{padding-left: 31px !important;}.m-50{margin:31px !important;}.mt-50{margin-top: 31px !important;}.mr-50{margin-right: 31px !important;}.mb-50{margin-bottom: 31px !important;}.ml-50{margin-left: 31px !important;}
    .p-55{padding:35px !important;}.pt-55{padding-top: 35px !important;}.pr-55{padding-right: 35px !important;}.pb-55{padding-bottom: 35px !important;}.pl-55{padding-left: 35px !important;}.m-55{margin:35px !important;}.mt-55{margin-top: 35px !important;}.mr-55{margin-right: 35px !important;}.mb-55{margin-bottom: 35px !important;}.ml-55{margin-left: 35px !important;}
    .p-60{padding:38px !important;}.pt-60{padding-top: 38px !important;}.pr-60{padding-right: 38px !important;}.pb-60{padding-bottom: 38px !important;}.pl-60{padding-left: 38px !important;}.m-60{margin:38px !important;}.mt-60{margin-top: 38px !important;}.mr-60{margin-right: 38px !important;}.mb-60{margin-bottom: 38px !important;}.ml-60{margin-left: 38px !important;}
    .p-65{padding:41px !important;}.pt-65{padding-top: 41px !important;}.pr-65{padding-right: 41px !important;}.pb-65{padding-bottom: 41px !important;}.pl-65{padding-left: 41px !important;}.m-65{margin:41px !important;}.mt-65{margin-top: 41px !important;}.mr-65{margin-right: 41px !important;}.mb-65{margin-bottom: 41px !important;}.ml-65{margin-left: 41px !important;}
    .p-70{padding:44px !important;}.pt-70{padding-top: 44px !important;}.pr-70{padding-right: 44px !important;}.pb-70{padding-bottom: 44px !important;}.pl-70{padding-left: 44px !important;}.m-70{margin:44px !important;}.mt-70{margin-top: 44px !important;}.mr-70{margin-right: 44px !important;}.mb-70{margin-bottom: 44px !important;}.ml-70{margin-left: 44px !important;}
    .p-75{padding:47px !important;}.pt-75{padding-top: 47px !important;}.pr-75{padding-right: 47px !important;}.pb-75{padding-bottom: 47px !important;}.pl-75{padding-left: 47px !important;}.m-75{margin:47px !important;}.mt-75{margin-top: 47px !important;}.mr-75{margin-right: 47px !important;}.mb-75{margin-bottom: 47px !important;}.ml-75{margin-left: 47px !important;}
    .p-80{padding:50px !important;}.pt-80{padding-top: 50px !important;}.pr-80{padding-right: 50px !important;}.pb-80{padding-bottom: 50px !important;}.pl-80{padding-left: 50px !important;}.m-80{margin:50px !important;}.mt-80{margin-top: 50px !important;}.mr-80{margin-right: 50px !important;}.mb-80{margin-bottom: 50px !important;}.ml-80{margin-left: 50px !important;}
    .p-85{padding:53px !important;}.pt-85{padding-top: 53px !important;}.pr-85{padding-right: 53px !important;}.pb-85{padding-bottom: 53px !important;}.pl-85{padding-left: 53px !important;}.m-85{margin:53px !important;}.mt-85{margin-top: 53px !important;}.mr-85{margin-right: 53px !important;}.mb-85{margin-bottom: 53px !important;}.ml-85{margin-left: 53px !important;}
    .p-90{padding:56px !important;}.pt-90{padding-top: 56px !important;}.pr-90{padding-right: 56px !important;}.pb-90{padding-bottom: 56px !important;}.pl-90{padding-left: 56px !important;}.m-90{margin:56px !important;}.mt-90{margin-top: 56px !important;}.mr-90{margin-right: 56px !important;}.mb-90{margin-bottom: 56px !important;}.ml-90{margin-left: 56px !important;}
    .p-95{padding:60px !important;}.pt-95{padding-top: 60px !important;}.pr-95{padding-right: 60px !important;}.pb-95{padding-bottom: 60px !important;}.pl-95{padding-left: 60px !important;}.m-95{margin:60px !important;}.mt-95{margin-top: 60px !important;}.mr-95{margin-right: 60px !important;}.mb-95{margin-bottom: 60px !important;}.ml-95{margin-left: 60px !important;}
    .p-100{padding:63px !important;}.pt-100{padding-top: 63px !important;}.pr-100{padding-right: 63px !important;}.pb-100{padding-bottom: 63px !important;}.pl-100{padding-left: 63px !important;}.m-100{margin:63px !important;}.mt-100{margin-top: 63px !important;}.mr-100{margin-right: 63px !important;}.mb-100{margin-bottom: 63px !important;}.ml-100{margin-left: 63px !important;}
    .p-105{padding:66px !important;}.pt-105{padding-top: 66px !important;}.pr-105{padding-right: 66px !important;}.pb-105{padding-bottom: 66px !important;}.pl-105{padding-left: 66px !important;}.m-105{margin:66px !important;}.mt-105{margin-top: 66px !important;}.mr-105{margin-right: 66px !important;}.mb-105{margin-bottom: 66px !important;}.ml-105{margin-left: 66px !important;}
    .p-110{padding:69px !important;}.pt-110{padding-top: 69px !important;}.pr-110{padding-right: 69px !important;}.pb-110{padding-bottom: 69px !important;}.pl-110{padding-left: 69px !important;}.m-110{margin:69px !important;}.mt-110{margin-top: 69px !important;}.mr-110{margin-right: 69px !important;}.mb-110{margin-bottom: 69px !important;}.ml-110{margin-left: 69px !important;}
    .p-115{padding:72px !important;}.pt-115{padding-top: 72px !important;}.pr-115{padding-right: 72px !important;}.pb-115{padding-bottom: 72px !important;}.pl-115{padding-left: 72px !important;}.m-115{margin:72px !important;}.mt-115{margin-top: 72px !important;}.mr-115{margin-right: 72px !important;}.mb-115{margin-bottom: 72px !important;}.ml-115{margin-left: 72px !important;}
    .p-120{padding:75px !important;}.pt-120{padding-top: 75px !important;}.pr-120{padding-right: 75px !important;}.pb-120{padding-bottom: 75px !important;}.pl-120{padding-left: 75px !important;}.m-120{margin:75px !important;}.mt-120{margin-top: 75px !important;}.mr-120{margin-right: 75px !important;}.mb-120{margin-bottom: 75px !important;}.ml-120{margin-left: 75px !important;}
    .p-125{padding:78px !important;}.pt-125{padding-top: 78px !important;}.pr-125{padding-right: 78px !important;}.pb-125{padding-bottom: 78px !important;}.pl-125{padding-left: 78px !important;}.m-125{margin:78px !important;}.mt-125{margin-top: 78px !important;}.mr-125{margin-right: 78px !important;}.mb-125{margin-bottom: 78px !important;}.ml-125{margin-left: 78px !important;}
    .p-130{padding:82px !important;}.pt-130{padding-top: 82px !important;}.pr-130{padding-right: 82px !important;}.pb-130{padding-bottom: 82px !important;}.pl-130{padding-left: 82px !important;}.m-130{margin:82px !important;}.mt-130{margin-top: 82px !important;}.mr-130{margin-right: 82px !important;}.mb-130{margin-bottom: 82px !important;}.ml-130{margin-left: 82px !important;}
    .p-135{padding:85px !important;}.pt-135{padding-top: 85px !important;}.pr-135{padding-right: 85px !important;}.pb-135{padding-bottom: 85px !important;}.pl-135{padding-left: 85px !important;}.m-135{margin:85px !important;}.mt-135{margin-top: 85px !important;}.mr-135{margin-right: 85px !important;}.mb-135{margin-bottom: 85px !important;}.ml-135{margin-left: 85px !important;}
    .p-140{padding:88px !important;}.pt-140{padding-top: 88px !important;}.pr-140{padding-right: 88px !important;}.pb-140{padding-bottom: 88px !important;}.pl-140{padding-left: 88px !important;}.m-140{margin:88px !important;}.mt-140{margin-top: 88px !important;}.mr-140{margin-right: 88px !important;}.mb-140{margin-bottom: 88px !important;}.ml-140{margin-left: 88px !important;}
    .p-145{padding:91px !important;}.pt-145{padding-top: 91px !important;}.pr-145{padding-right: 91px !important;}.pb-145{padding-bottom: 91px !important;}.pl-145{padding-left: 91px !important;}.m-145{margin:91px !important;}.mt-145{margin-top: 91px !important;}.mr-145{margin-right: 91px !important;}.mb-145{margin-bottom: 91px !important;}.ml-145{margin-left: 91px !important;}
    .p-150{padding:94px !important;}.pt-150{padding-top: 94px !important;}.pr-150{padding-right: 94px !important;}.pb-150{padding-bottom: 94px !important;}.pl-150{padding-left: 94px !important;}.m-150{margin:94px !important;}.mt-150{margin-top: 94px !important;}.mr-150{margin-right: 94px !important;}.mb-150{margin-bottom: 94px !important;}.ml-150{margin-left: 94px !important;}




    /** COMPONENTS **/
    .title-1 {
        font-size: 1.5em;
    }
    .title-2 {
        font-size: 1.9em;
    }
    .title-3 {
        font-size: 1.95em;
    }
    .title-4 {
        font-size: 2.125em;                     }
    .title-5 {
        font-size: 2.2em;
    }
    .title-6 {
        font-size: 2.3em
    }
    .title-7 {
        font-size: 2.5em !important;                    }
    .button-1 .button-in {
        padding: 15px 30px;
    }

    .button-6 .button-in:before,
    .button-1 .button-in:before {
        display: none;
        content: normal;
    }

    .button-6:hover .button-in,
    .button-1:hover .button-in {
        color: #FFF !important;
    }.button-2 .button-in {
         padding: 15px 30px;
     }.button-3 i {
          font-size: 20px;
      }.button-4 i {
           font-size: 20px;
       }

    /** LOOPS **/
    .loop-usps {
        margin: -20px -30px;
    }
    .item-usps {
        padding: 20px 30px;
        width: 50%;
    }

    .item-usps-top{
        flex-wrap: wrap;
    }

    .loop-usps.align-four .item-usps,
    .loop-usps.align-three .item-usps {
        width: 50%;
    }
    .loop-logos {
        margin: 0px;
    }
    .item-logos {
        padding: 0px;
        width: 25%;
    }

    .item-logos:nth-child(10n+5) .item-in,
    .item-logos:nth-child(10n+10) .item-in {
        border-right: 2px solid #FE6263;
    }

    .item-logos:nth-child(10n+6) .item-in {
        border-bottom: 2px solid #15C594;
    }

    .item-logos:nth-child(10n+7) .item-in {
        border-bottom: 2px solid #489FCD;
    }

    .item-logos:nth-child(10n+8) .item-in {
        border-bottom: 2px solid #FFCC01;
    }

    .item-logos img {
        max-height: 50px;
    }

    .item-logos .logos-image {
        padding: 0 10px;
    }
    .loop-team-members {
        margin: -20px;
    }
    .item-team-members {
        padding: 20px;
        width: 100%;
    }



    /** PARTS **/


    /** SECTIONS **/
    /** SECTION: TOP **/
    /** SECTION: BRICKS **/
    .brick-featured-1 .brick-in {
        padding: 0;
    }
    .slider .columns {
        display: table;
    }

    .slider .column-2 {
        display: table-header-group;
    }

    .slider .column-2 .column-in {
        height: 400px;
    }

    .slider .column-1 {
        display: table-cell;
    }


    .brick-contact-1 .column-1 {
        margin-bottom: 40px;
    }

    .brick-contact-1 .column-2 {
        text-align: left;
    }

    .brick-contact-1 .column-2 .contact-item {
        display: block;
    }
    .brick-featured-half-1 .brick-in {
        padding: 0 50px;
    }
    .component-content-media .component-content-media-in {
        left: -50px;
    }

    .component-content-media.align-right .component-content-media-in {
        right: -50px;
    }

    .component-content-media {
        height: 325px;
    }
    .map {
        height: 78vh;
    }
    .brick-team-selected-1 .column-1 {
        padding: 0;
        margin-bottom: 40px;
    }

    /** SECTION: BOTTOM **/
    .footer-in .column-1 {
        margin-bottom: 40px;
    }

    .footer-in .column-2 {
        padding-left: 0;
        text-align: left;
    }

    .footer-in .column-2 .column-in {
        display: block;
        margin: 0;
    }

    .footer-nav {
        display: block;
        padding: 0;
        margin-bottom: 30px;
    }

    .footer-nav:last-child {
        margin-bottom: 0;
    }

    .footer-bottom-in .column-1 {
        width: auto;
        margin-bottom: 6px;
    }

    .footer-bottom-in .column-2 {
        text-align: left;
        padding: 0;
    }

    .header-nav-in a:hover,
    .header-nav-in a.active {
        color: #ffffff !important;
    }

    .brick-featured-half-1 .column-1 .component img {
        max-height: 40px;
    }

    .loop-logos::after {
        content: normal;
    }

    .loop-logos:last-child::after {
        content: '';
    }
    
    .item-logos .item-in {
        border: 2px solid #288EC4;
    }
    
    .item-logos:nth-child(10n+1) .item-in,
    .item-logos:nth-child(10n+8) .item-in {
        border-right: 2px solid #288EC4 !important;
    }
    .item-logos:nth-child(10n+2) .item-in,
    .item-logos:nth-child(10n+9) .item-in {
        border-right: 2px solid #15C594 !important;
    }
    .item-logos:nth-child(10n+3) .item-in,
    .item-logos:nth-child(10n+6) .item-in {
        border-right: 2px solid #FFCC01 !important;
    }
    .item-logos:nth-child(10n+4) .item-in,
    .item-logos:nth-child(10n+7) .item-in {
        border-left: 2px solid #FE6263 !important;
    }
    
    .item-logos:nth-child(10n+1) .item-in,
    .item-logos:nth-child(10n+4) .item-in {
        border-bottom: 2px solid #15C594 !important;
    }
    .item-logos:nth-child(10n+2) .item-in {
        border-bottom: 2px solid #FE6263 !important;
    }
    .item-logos:nth-child(10n+3) .item-in,
    .item-logos:nth-child(10n+5) .item-in {
        border-bottom: 2px solid #288EC4 !important;
    }

    .loop-logos {
        border: none;
        background: transparent;
    }

    .item-logos {
        margin: -2px 0 0 -2px;
    }

    .cookie-settings .input-row.input-row-check label {
        padding-right: 100px;
    }

    .cookie-popup-bottom > *  {
        display: block;
        text-align: center;
    }

    .cookie-popup .btn {
        display: block;
        width: 100%;
    }

    .cookie-popup-in {
        padding: 20px;
    }


    .cookie-popup-bottom .button {
        display: block;
        width: 100%;
    }

    .brick-blog-single-1 .brick-in-top-in {
        padding: 15px 25px !important;
    }

    .brick-blog-single-1 .brick-in-top img {
        height: 200px !important;
    }

    .brick-blog-single-1 .brick-in-mid {
        padding: 0 25px !important;
    }

    .brick-blog-single-1 .brick-in-bottom {
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }

    .brick-faq-1 .column-1 {
        width: 100% !important;
        margin-bottom: 30px;
    }

    .brick-faq-1 .faq-item .square-container {
        width: 30px !important;
        height: 30px !important;

        min-width: 30px !important;
        min-height: 30px !important;

        margin-right: 15px !important;
    }

    .brick-faq-1 .faq-item .square-container img {
        width: 16px !important;
        height: 16px !important;
    }

    .brick-faq-1 .faq-bottom {
        margin-left: 45px !important;
        margin-top: 20px !important;
    }

    .brick-blog-archive-1 .items .item {
        width: 100% !important;
        padding: 0 !important;
        margin-bottom: 30px !important;
    }

    .brick-blog-archive-1 .items {
        margin: 0 !important;
    }

    .brick-blog-archive-1 .brick-in-bottom .component {
        margin-bottom: 15px;
    }
    .brick-blog-archive-1 .brick-in-bottom {
        flex-direction: column;
    }

    .middle {
        position: inherit !important;
        width: 100%!important;
        left: inherit !important;
        right: inherit !important;
        transform: inherit !important;
    }

    .brick-blog-archive-1 .next {
        position: inherit !important;
        right: inherit !important;
    }

    .software-selected-loop{
        flex-wrap: wrap;
    }


}

/************* MAX MOBILE *************/
@media screen and (max-width: 480px) {

    /** COMMON **/
    body,html {
        font-size: 15px;line-height: 1.680em;           }


    .container-1 {
        padding: 20px 0px;
    }

    .wrapper-1 {
        padding: 0px 20px;
    }
    .wrapper-2 {
        padding: 0px 20px;
    }
    .wrapper-3 {
        padding: 0px 20px;
    }


    /** SPACING **/
    .p-0{padding:0px !important;}.pt-0{padding-top: 0px !important;}.pr-0{padding-right: 0px !important;}.pb-0{padding-bottom: 0px !important;}.pl-0{padding-left: 0px !important;}.m-0{margin:0px !important;}.mt-0{margin-top: 0px !important;}.mr-0{margin-right: 0px !important;}.mb-0{margin-bottom: 0px !important;}.ml-0{margin-left: 0px !important;}
    .p-5{padding:2px !important;}.pt-5{padding-top: 2px !important;}.pr-5{padding-right: 2px !important;}.pb-5{padding-bottom: 2px !important;}.pl-5{padding-left: 2px !important;}.m-5{margin:2px !important;}.mt-5{margin-top: 2px !important;}.mr-5{margin-right: 2px !important;}.mb-5{margin-bottom: 2px !important;}.ml-5{margin-left: 2px !important;}
    .p-10{padding:4px !important;}.pt-10{padding-top: 4px !important;}.pr-10{padding-right: 4px !important;}.pb-10{padding-bottom: 4px !important;}.pl-10{padding-left: 4px !important;}.m-10{margin:4px !important;}.mt-10{margin-top: 4px !important;}.mr-10{margin-right: 4px !important;}.mb-10{margin-bottom: 4px !important;}.ml-10{margin-left: 4px !important;}
    .p-15{padding:6px !important;}.pt-15{padding-top: 6px !important;}.pr-15{padding-right: 6px !important;}.pb-15{padding-bottom: 6px !important;}.pl-15{padding-left: 6px !important;}.m-15{margin:6px !important;}.mt-15{margin-top: 6px !important;}.mr-15{margin-right: 6px !important;}.mb-15{margin-bottom: 6px !important;}.ml-15{margin-left: 6px !important;}
    .p-20{padding:8px !important;}.pt-20{padding-top: 8px !important;}.pr-20{padding-right: 8px !important;}.pb-20{padding-bottom: 8px !important;}.pl-20{padding-left: 8px !important;}.m-20{margin:8px !important;}.mt-20{margin-top: 8px !important;}.mr-20{margin-right: 8px !important;}.mb-20{margin-bottom: 8px !important;}.ml-20{margin-left: 8px !important;}
    .p-25{padding:10px !important;}.pt-25{padding-top: 10px !important;}.pr-25{padding-right: 10px !important;}.pb-25{padding-bottom: 10px !important;}.pl-25{padding-left: 10px !important;}.m-25{margin:10px !important;}.mt-25{margin-top: 10px !important;}.mr-25{margin-right: 10px !important;}.mb-25{margin-bottom: 10px !important;}.ml-25{margin-left: 10px !important;}
    .p-30{padding:12px !important;}.pt-30{padding-top: 12px !important;}.pr-30{padding-right: 12px !important;}.pb-30{padding-bottom: 12px !important;}.pl-30{padding-left: 12px !important;}.m-30{margin:12px !important;}.mt-30{margin-top: 12px !important;}.mr-30{margin-right: 12px !important;}.mb-30{margin-bottom: 12px !important;}.ml-30{margin-left: 12px !important;}
    .p-35{padding:14px !important;}.pt-35{padding-top: 14px !important;}.pr-35{padding-right: 14px !important;}.pb-35{padding-bottom: 14px !important;}.pl-35{padding-left: 14px !important;}.m-35{margin:14px !important;}.mt-35{margin-top: 14px !important;}.mr-35{margin-right: 14px !important;}.mb-35{margin-bottom: 14px !important;}.ml-35{margin-left: 14px !important;}
    .p-40{padding:16px !important;}.pt-40{padding-top: 16px !important;}.pr-40{padding-right: 16px !important;}.pb-40{padding-bottom: 16px !important;}.pl-40{padding-left: 16px !important;}.m-40{margin:16px !important;}.mt-40{margin-top: 16px !important;}.mr-40{margin-right: 16px !important;}.mb-40{margin-bottom: 16px !important;}.ml-40{margin-left: 16px !important;}
    .p-45{padding:18px !important;}.pt-45{padding-top: 18px !important;}.pr-45{padding-right: 18px !important;}.pb-45{padding-bottom: 18px !important;}.pl-45{padding-left: 18px !important;}.m-45{margin:18px !important;}.mt-45{margin-top: 18px !important;}.mr-45{margin-right: 18px !important;}.mb-45{margin-bottom: 18px !important;}.ml-45{margin-left: 18px !important;}
    .p-50{padding:20px !important;}.pt-50{padding-top: 20px !important;}.pr-50{padding-right: 20px !important;}.pb-50{padding-bottom: 20px !important;}.pl-50{padding-left: 20px !important;}.m-50{margin:20px !important;}.mt-50{margin-top: 20px !important;}.mr-50{margin-right: 20px !important;}.mb-50{margin-bottom: 20px !important;}.ml-50{margin-left: 20px !important;}
    .p-55{padding:22px !important;}.pt-55{padding-top: 22px !important;}.pr-55{padding-right: 22px !important;}.pb-55{padding-bottom: 22px !important;}.pl-55{padding-left: 22px !important;}.m-55{margin:22px !important;}.mt-55{margin-top: 22px !important;}.mr-55{margin-right: 22px !important;}.mb-55{margin-bottom: 22px !important;}.ml-55{margin-left: 22px !important;}
    .p-60{padding:24px !important;}.pt-60{padding-top: 24px !important;}.pr-60{padding-right: 24px !important;}.pb-60{padding-bottom: 24px !important;}.pl-60{padding-left: 24px !important;}.m-60{margin:24px !important;}.mt-60{margin-top: 24px !important;}.mr-60{margin-right: 24px !important;}.mb-60{margin-bottom: 24px !important;}.ml-60{margin-left: 24px !important;}
    .p-65{padding:25px !important;}.pt-65{padding-top: 25px !important;}.pr-65{padding-right: 25px !important;}.pb-65{padding-bottom: 25px !important;}.pl-65{padding-left: 25px !important;}.m-65{margin:25px !important;}.mt-65{margin-top: 25px !important;}.mr-65{margin-right: 25px !important;}.mb-65{margin-bottom: 25px !important;}.ml-65{margin-left: 25px !important;}
    .p-70{padding:27px !important;}.pt-70{padding-top: 27px !important;}.pr-70{padding-right: 27px !important;}.pb-70{padding-bottom: 27px !important;}.pl-70{padding-left: 27px !important;}.m-70{margin:27px !important;}.mt-70{margin-top: 27px !important;}.mr-70{margin-right: 27px !important;}.mb-70{margin-bottom: 27px !important;}.ml-70{margin-left: 27px !important;}
    .p-75{padding:29px !important;}.pt-75{padding-top: 29px !important;}.pr-75{padding-right: 29px !important;}.pb-75{padding-bottom: 29px !important;}.pl-75{padding-left: 29px !important;}.m-75{margin:29px !important;}.mt-75{margin-top: 29px !important;}.mr-75{margin-right: 29px !important;}.mb-75{margin-bottom: 29px !important;}.ml-75{margin-left: 29px !important;}
    .p-80{padding:31px !important;}.pt-80{padding-top: 31px !important;}.pr-80{padding-right: 31px !important;}.pb-80{padding-bottom: 31px !important;}.pl-80{padding-left: 31px !important;}.m-80{margin:31px !important;}.mt-80{margin-top: 31px !important;}.mr-80{margin-right: 31px !important;}.mb-80{margin-bottom: 31px !important;}.ml-80{margin-left: 31px !important;}
    .p-85{padding:33px !important;}.pt-85{padding-top: 33px !important;}.pr-85{padding-right: 33px !important;}.pb-85{padding-bottom: 33px !important;}.pl-85{padding-left: 33px !important;}.m-85{margin:33px !important;}.mt-85{margin-top: 33px !important;}.mr-85{margin-right: 33px !important;}.mb-85{margin-bottom: 33px !important;}.ml-85{margin-left: 33px !important;}
    .p-90{padding:35px !important;}.pt-90{padding-top: 35px !important;}.pr-90{padding-right: 35px !important;}.pb-90{padding-bottom: 35px !important;}.pl-90{padding-left: 35px !important;}.m-90{margin:35px !important;}.mt-90{margin-top: 35px !important;}.mr-90{margin-right: 35px !important;}.mb-90{margin-bottom: 35px !important;}.ml-90{margin-left: 35px !important;}
    .p-95{padding:37px !important;}.pt-95{padding-top: 37px !important;}.pr-95{padding-right: 37px !important;}.pb-95{padding-bottom: 37px !important;}.pl-95{padding-left: 37px !important;}.m-95{margin:37px !important;}.mt-95{margin-top: 37px !important;}.mr-95{margin-right: 37px !important;}.mb-95{margin-bottom: 37px !important;}.ml-95{margin-left: 37px !important;}
    .p-100{padding:39px !important;}.pt-100{padding-top: 39px !important;}.pr-100{padding-right: 39px !important;}.pb-100{padding-bottom: 39px !important;}.pl-100{padding-left: 39px !important;}.m-100{margin:39px !important;}.mt-100{margin-top: 39px !important;}.mr-100{margin-right: 39px !important;}.mb-100{margin-bottom: 39px !important;}.ml-100{margin-left: 39px !important;}
    .p-105{padding:41px !important;}.pt-105{padding-top: 41px !important;}.pr-105{padding-right: 41px !important;}.pb-105{padding-bottom: 41px !important;}.pl-105{padding-left: 41px !important;}.m-105{margin:41px !important;}.mt-105{margin-top: 41px !important;}.mr-105{margin-right: 41px !important;}.mb-105{margin-bottom: 41px !important;}.ml-105{margin-left: 41px !important;}
    .p-110{padding:43px !important;}.pt-110{padding-top: 43px !important;}.pr-110{padding-right: 43px !important;}.pb-110{padding-bottom: 43px !important;}.pl-110{padding-left: 43px !important;}.m-110{margin:43px !important;}.mt-110{margin-top: 43px !important;}.mr-110{margin-right: 43px !important;}.mb-110{margin-bottom: 43px !important;}.ml-110{margin-left: 43px !important;}
    .p-115{padding:45px !important;}.pt-115{padding-top: 45px !important;}.pr-115{padding-right: 45px !important;}.pb-115{padding-bottom: 45px !important;}.pl-115{padding-left: 45px !important;}.m-115{margin:45px !important;}.mt-115{margin-top: 45px !important;}.mr-115{margin-right: 45px !important;}.mb-115{margin-bottom: 45px !important;}.ml-115{margin-left: 45px !important;}
    .p-120{padding:47px !important;}.pt-120{padding-top: 47px !important;}.pr-120{padding-right: 47px !important;}.pb-120{padding-bottom: 47px !important;}.pl-120{padding-left: 47px !important;}.m-120{margin:47px !important;}.mt-120{margin-top: 47px !important;}.mr-120{margin-right: 47px !important;}.mb-120{margin-bottom: 47px !important;}.ml-120{margin-left: 47px !important;}
    .p-125{padding:49px !important;}.pt-125{padding-top: 49px !important;}.pr-125{padding-right: 49px !important;}.pb-125{padding-bottom: 49px !important;}.pl-125{padding-left: 49px !important;}.m-125{margin:49px !important;}.mt-125{margin-top: 49px !important;}.mr-125{margin-right: 49px !important;}.mb-125{margin-bottom: 49px !important;}.ml-125{margin-left: 49px !important;}
    .p-130{padding:51px !important;}.pt-130{padding-top: 51px !important;}.pr-130{padding-right: 51px !important;}.pb-130{padding-bottom: 51px !important;}.pl-130{padding-left: 51px !important;}.m-130{margin:51px !important;}.mt-130{margin-top: 51px !important;}.mr-130{margin-right: 51px !important;}.mb-130{margin-bottom: 51px !important;}.ml-130{margin-left: 51px !important;}
    .p-135{padding:53px !important;}.pt-135{padding-top: 53px !important;}.pr-135{padding-right: 53px !important;}.pb-135{padding-bottom: 53px !important;}.pl-135{padding-left: 53px !important;}.m-135{margin:53px !important;}.mt-135{margin-top: 53px !important;}.mr-135{margin-right: 53px !important;}.mb-135{margin-bottom: 53px !important;}.ml-135{margin-left: 53px !important;}
    .p-140{padding:55px !important;}.pt-140{padding-top: 55px !important;}.pr-140{padding-right: 55px !important;}.pb-140{padding-bottom: 55px !important;}.pl-140{padding-left: 55px !important;}.m-140{margin:55px !important;}.mt-140{margin-top: 55px !important;}.mr-140{margin-right: 55px !important;}.mb-140{margin-bottom: 55px !important;}.ml-140{margin-left: 55px !important;}
    .p-145{padding:57px !important;}.pt-145{padding-top: 57px !important;}.pr-145{padding-right: 57px !important;}.pb-145{padding-bottom: 57px !important;}.pl-145{padding-left: 57px !important;}.m-145{margin:57px !important;}.mt-145{margin-top: 57px !important;}.mr-145{margin-right: 57px !important;}.mb-145{margin-bottom: 57px !important;}.ml-145{margin-left: 57px !important;}
    .p-150{padding:59px !important;}.pt-150{padding-top: 59px !important;}.pr-150{padding-right: 59px !important;}.pb-150{padding-bottom: 59px !important;}.pl-150{padding-left: 59px !important;}.m-150{margin:59px !important;}.mt-150{margin-top: 59px !important;}.mr-150{margin-right: 59px !important;}.mb-150{margin-bottom: 59px !important;}.ml-150{margin-left: 59px !important;}




    /** COMPONENTS **/
    .text-6 {
        font-size: 1.133em;
    }
    .title-1 {
        font-size: 1.3em;
    }
    .title-2 {
        font-size: 1.55em;
    }
    .title-3 {
        font-size: 1.65em;
    }
    .title-4 {
        font-size: 1.9em;                       }
    .title-5 {
        font-size: 2em;
    }
    .title-6 {
        font-size: 2.1em;
    }


    /** LOOPS **/
    .loop-usps {
        margin: -15px -10px;
    }
    .item-usps {
        padding: 15px 10px;
        width: 100%;
    }

    .loop-usps.align-three .item-usps{
        padding: 15px 10px;
    }

    .loop-usps.align-four .item-usps,
    .loop-usps.align-three .item-usps {
        width: 100%;
    }
    .loop-logos {
        margin: 0px;
    }
    .item-logos {
        padding: 0px;
        width: 33.333%;
    }

    .item-logos:nth-child(10n+5) .item-in,
    .item-logos:nth-child(10n+4) .item-in {
        border-right: 2px solid #FFCC01;
    }

    .item-logos:nth-child(10n+6) .item-in {
        border-bottom: 2px solid #15C594;
    }

    .item-logos:nth-child(10n+8) .item-in {
        border-right: 2px solid #FE6263;
    }

    .item-logos:nth-child(10n+10) .item-in,
    .item-logos:nth-child(10n+9) .item-in {
        border-bottom: 2px solid #489FCD;
    }

    .item-logos:nth-child(10n+10) .item-in {
        border-right: 2px solid #15C594;
    }
    .loop-team-members {
        margin: -20px;
    }
    .item-team-members {
        padding: 20px;
        width: 100%;
    }



    /** PARTS **/


    /** SECTIONS **/
    /** SECTION: TOP **/


    /** SECTION: BRICKS **/


    .slider-item-in {
        padding-right: 20px;
    }

    .slider .column-1 {
        padding-left: 20px;
        padding-top: 40px;
        padding-bottom: 40px;
    }



    .brick-contact-1 .column-1 {
        margin-bottom: 35px;
    }
    .brick-featured-half-1 .column-1 {
        margin-bottom: 30px;
    }

    .brick-featured-half-1 .brick-in {
        padding: 0 20px;
    }
    .component-content-media .component-content-media-in {
        left: -20px;
    }

    .component-content-media.align-right .component-content-media-in {
        right: -20px;
    }

    .component-content-media {
        height: 230px;
    }

    .brick-team-selected-1 .column-1 {
        margin-bottom: 30px;
    }

    /** SECTION: BOTTOM **/
    .footer-in {
        padding: 30px 0;
    }

    .footer-in img {
        max-height: 50px;
    }

    .header-nav-in a:hover,
    .header-nav-in a.active {
        color: #ffffff !important;
    }

}

@media screen and (max-width: 400px){
    .header-logo-left {
        width: 22px;
    }

    .logo-right-content {
        font-size: 24px;
    }

    .header-in .wrapper {
        padding: 0 20px;
    }
}.brick-featured-half-4 .visual,
.brick-featured-half-3 .visual,
.brick-featured-half-2 .visual {
    width: auto;
}

.brick-featured-half-2 .image-container {
    width: 150px;
    height: 150px;
    border-radius: 10px;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    left: -75px;
}

.brick-featured-half-2 .image-container img {
    width: 50px;
    height: auto;
}

.brick-featured-half-2 .column-2 {
    padding-left: 75px;
}

.brick-featured-half-2 .column-1 {
    padding: 100px 50px 100px 0 ;
}

.brick-featured-half-2 .custom-column {
    display: flex;
    align-items: center;
    height: 100%;
}


.brick-featured-half-4 .column-2 {
    width: 38%;
}
.brick-featured-half-3 .column-1 {
    width: 38%;
}

.brick-featured-half-4 .column-1 {
    padding: 70px 70px 70px 0;
}

.brick-featured-half-3 .column-2 {
    padding: 70px 0 70px 70px;
}

.brick-blog-single-1 .brick-in-top {
    width: 100%;
    position: relative;
}

.brick-blog-single-1 .brick-in-top img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.brick-blog-single-1 .brick-in-top-in {
    margin: 0 100px;
    padding: 30px 50px;
    position: relative;
    margin-top: -100px;
}

.brick-blog-single-1 .brick-in-mid {
    padding: 0 150px;
}

.brick-blog-single-1 .columns .column-1 img {
    width: 100% ;
    height: auto;
}

.brick-blog-single-1 .columns .column-1 {
    padding-right: 25px;
}
.brick-blog-single-1 .columns .column-2 {
    padding-left: 25px;
}

.brick-blog-single-1 .brick-in-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}



.brick-blog-single-1 .brick-in-bottom .component:nth-child(1) {
    margin-bottom: 10px;
}

.brick-faq-1 .faq-item .square-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    width: 40px;
    height: 40px;
    min-width: 40px !Important;
    margin-right: 30px;
}

.brick-faq-1 .faq-item .square-container img {
    width: 18px;
    height: 18px;
}

.brick-faq-1 .faq-item .faq-top {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.brick-faq-1 .faq-item {
    cursor: pointer;
}

.brick-faq-1 .faq-bottom {
    margin-left: 70px;
    margin-top: 25px;
}

.hidden {
    display: none;
}

.brick-faq-1 .column-1 {
    width: 450px;
}

.button-5 {
    font-size: 1.111em;
}

.button-5 i {
    position: relative;
    bottom: -5px;
    margin-left: 15px;
    font-size: 20px;
    right: 0;

    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.button-5:hover i {
    right: -5px;
}

.button-5-reverse i {
    right: 15px;
}

.button-5-reverse:hover i {
    right: 20px;
}

.faq-item .text {
    line-height: 2.300em;
}
.brick-blog-archive-1 .columns-1 .top,
.brick-blog-single-1 .brick-in-top-in .top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.brick-blog-archive-1 .columns-1 .column-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brick-blog-archive-1 .columns-1 .column-1 {
    padding-right: 25px;
}

.brick-blog-archive-1 .columns-1 .column-2 {
    padding-left: 25px;
}

.brick-blog-archive-1 .items {
    margin: 0 -25px;
}

.brick-blog-archive-1 .items .item {
    width: 33.3333%;
    padding: 0 25px;
    margin-bottom: 70px;
}

.brick-blog-archive-1 .items .item img {
    width: 100%;
    height: 275px;
    max-height: 275px;
    object-fit: cover;
}


.brick-blog-archive-1 .items .item .item-in-top .label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    position: absolute;
    font-family: "Circular Std Book";
    border-radius: 5px;
    bottom: 20px;
    left: 20px;
    
    text-align: center;
    line-height: 1.4em !important;
}

.brick-blog-archive-1 .items .item .item-in-top {
    position: relative;
}


.brick-blog-archive-1 .items .item:hover .button-5 i {
    right: -5px;
}

.brick-blog-archive-1 .brick-in-bottom {
     display: flex;
    align-items: center;
    justify-content: space-between;
}