/********************************
Developed by AXA Studios
The Creative Engine
http://www.axastudios.com
*********************************/

:root {
    --main-color: #1d1e2c;
    --bg-main-color: #23222d;

    --light-grey: #f9f9f9;

    --sub-color: #2285c7;
    --sub-color-rgb: 0, 193, 71;

    --dark-color: #252159;

    --text-color: #9694af;

    --green-color: #13a700;

    --main-gradient: linear-gradient(180deg, #2285c7 29.5%, #075c95 100%);

    --black-color: #000000;
    --white-color: #ffffff;
    --white-color-rgb: 255, 255, 255;

    --main-radius: 7px;
    --lg-radius: 15px;
    --md-radius: 24px;
    --xl-radius: 48px;
    --input-radius: 10px;

    --xxs-pad: 4px;
    --xs-pad: 8px;
    --sm-pad: 12px;
    --mid-pad: 16px;
    --main-pad: 24px;
    --med-pad: 32px;
    --lg-pad: 48px;
    --xl-pad: 72px;
    --xxl-pad: 96px;

    --lg-neg: -48px;
    --med-neg: -32px;
    --main-neg: -24px;
    --sm-neg: -12px;

    --xxxl-font: 40px;
    --xxl-font: 28px;
    --xl-font: 24px;
    --lg-font: 20px;
    --md-font: 18px;
    --main-font: 14px;
    --xs-font: 12px;

    --input-font: 14px;
    --button-font: 14px;

    --xs-icon: 16px;
    --sm-icon: 18px;
    --main-icon: 32px;
    --md-icon: 40px;
    --large-icon: 96px;
}

/* MAIN STYLES *****************************/

html {
    overflow-y: scroll;
    margin: 0;
    padding: 0;
    font-size: 16px;
}

body {
    padding: 0px;
    margin: 0px;
    background: var(--white-color);
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-size: var(--main-font);
    line-height: 1.6;
    color: var(--text-color);
}

/* TEXT & LINK STYLES *****************************/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    margin-top: 0px;
    color: inherit;
}

h1 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--main-pad);
}

h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--mid-pad);
}

h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: var(--xs-pad);
    line-height: 1.4;
}

h4 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: var(--xs-pad);
    line-height: 1;
}

h1 span,
h2 span,
h3 span {
    color: var(--sub-color);
}

.mob-only {
    display: none !important;
}

.italic {
    font-style: italic;
}

p {
    margin-bottom: var(--main-pad);
}

.lead {
    font-weight: 300;
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: var(--main-pad);
}
p.bold {
    font-weight: 600;
}

:focus {
    -moz-outline-style: none;
}

::selection {
    background-color: #333333;
    color: #fff;
}

::-moz-selection {
    background-color: #333333;
    color: #fff;
}

img {
    max-width: 100%;
}

input:focus,
button:focus {
    outline: none;
}

a,
a:visited {
    text-decoration: none;
    border: none;
    outline: 0;
    -moz-outline-style: none;
    /*	transition: color 0.2s ease;*/
}

a img {
    border: none;
    outline: 0;
    -moz-outline-style: none;
}

.page p a {
    font-weight: 600;
    text-decoration: underline;
}

a.button,
.button,
.button:visited {
    position: relative;
    display: flex;
    justify-content: center;
    position: relative;
    cursor: pointer;
    color: var(--main-color);
    font-size: var(--button-font);
    line-height: 24px;
    min-width: 176px;
    height: 40px;
    border: none;
    padding: 8px 40px 8px 36px;
    border-radius: 20px;
    outline: none;
    background: var(--main-gradient);
    text-align: center;
    text-decoration: none;
    opacity: 1;
    transition: all 0.2s ease;
}
a.button span,
.button span {
    line-height: 24px;
    font-weight: 600;
}
.button:hover,
.button:active,
.button:focus {
    opacity: 0.48;
    transition: all 0.4s ease;
}
.txt-btn {
    display: flex;
    align-items: center;
    flex-direction: row;
    box-shadow: none;
    border: none;
    background: transparent;
    font-weight: 600;
    color: var(--sub-color);
    line-height: 1;
    padding: 0;
}
.button div,
.txt-btn div,
.txt-link div {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 16px;
    line-height: 16px;
    width: 16px;
    font-size: 10px;
    text-align: center;
    font-weight: 600;
    margin-left: 4px;
    color: var(--sub-color);
}

.l-btn,
.l-btn:visited,
a.l-btn,
a.l-btn:visited {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white-color);
}
.l-btn:hover,
.l-btn:active,
.l-btn:focus {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white-color);
    transition: all 0.4s ease;
}
.l-btn:after {
    display: none;
}
.d-btn,
.d-btn:visited,
a.d-btn,
a.d-btn:visited {
    background: var(--main-color);
    color: var(--white-color);
}
.d-btn:hover,
.d-btn:active,
.d-btn:focus {
    background: var(--main-color);
    color: var(--white-color);
    transition: all 0.4s ease;
}
.d-btn:after {
    display: none;
}
.txt-icon-btn {
    display: flex;
    align-items: center;
    flex-direction: row;
    color: var(--white-color);
    opacity: 1;
    transition: all 0.2s ease;
    cursor: pointer;
}
.txt-icon-btn-sub {
    color: var(--sub-color);
}
.txt-icon-btn:hover {
    opacity: 0.48;
    transition: all 0.4s ease;
}
.txt-icon-btn span {
    font-weight: 600;
    font-size: var(--button-font);
    margin-right: var(--mid-pad);
}
.txt-icon-btn-right span {
    margin-left: var(--mid-pad);
    margin-right: 0;
}
.i-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--main-gradient);
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--white-color);
    font-size: 20px;
}

/* WRAPPER STYLES *****************************/

#outer-wrapper {
    position: relative;
}
#bg-wrapper {
    position: fixed;
    content: "";
    display: none;
    opacity: 0;
    width: 100%;
    height: 150%;
    z-index: 10;
    background: rgba(37, 33, 89, 0.88);
}
.menu-open #bg-wrapper {
    display: block;
    opacity: 1;
    animation: opac-in-animate 0.4s ease-out forwards;
}
.menu-ani #bg-wrapper {
    display: block;
    opacity: 1;
    animation: opac-out-animate 0.3s ease-in forwards;
}
#main-wrapper {
    position: relative;
    /* overflow: hidden; */
}
#content-wrapper {
    position: relative;
    display: block;
    /*	padding: 96px 0px;*/
    /* overflow: hidden; */
    padding: 0;
    margin: 0px;
    z-index: 2;
}
.home-wrap #content-wrapper {
    padding: 0;
}
.bg-banner-wrap {
    background: var(--bg-main-color);
}
.white-banner-wrap {
    position: relative;
    background: var(--white-color);
}

/* HEADER *****************************/

#navbar {
    position: absolute;
    display: block;
    width: 100%;
    padding: 0px 0px;
    top: 0px;
    background: transparent;
    box-shadow: transparent;
    transition: all 0.2s ease;
    z-index: 99;
}

#navbar.sticky {
    position: fixed;
    background: #fff;
    box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-out;
}
.navbar-header {
    position: relative;
    display: flex;
    padding: 0 var(--lg-pad);
}
.navbar-header-logo {
    position: relative;
    display: flex;
}
.logo-main {
    display: inline-flex;
    margin: 24px 0px;
    padding: 0px;
    opacity: 1;
    transition: all 0.2s ease;
}
.logo-main span.logo-main-light {
    display: block;
}
.logo-main span.logo-main-dark {
    display: none;
}
#navbar.sticky .navbar-header-logo .logo-main span.logo-main-light {
    display: none;
}
#navbar.sticky .navbar-header-logo .logo-main span.logo-main-dark {
    display: block;
}
.logo-main:hover {
    opacity: 0.64;
    transition: all 0.4s ease-out;
}
.logo-main img {
    height: 40px;
    width: auto;
    vertical-align: top;
}

.logo-main span {
    position: relative;
    display: block;
    vertical-align: top;
}

.logo-mob,
.nav-back-btn,
.nav-share-btn {
    display: none;
}

.nav-toggle {
    position: relative;
    float: right;
    cursor: pointer;
    display: none;
    width: 24px;
    height: 24px;
    padding: 0px;
    margin: 16px 0px 16px 16px;
    background: none;
    border: none;
    overflow: hidden;
}

.nav-icon span,
.menu-ani .nav-icon span {
    display: block;
    position: absolute;
    top: 11px;
    left: 4px;
    right: 4px;
    height: 1px;
    background: var(--white-color);
    transition: background 0.2s ease;
}
.nav-icon span::before,
.nav-icon span::after,
.menu-ani .nav-icon span::before,
.menu-ani .nav-icon span::after {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--white-color);
    content: "";
    transition-duration: 0.2s, 0.2s;
    transition-delay: 0.2s, 0s;
}

.nav-icon span::before,
.menu-ani .nav-icon span::before {
    top: -5px;
    transition-property: top, transform;
}

.nav-icon span::after,
.menu-ani .nav-icon span::after {
    /*    width: 70%;*/
    bottom: -5px;
    transition-property: bottom, transform;
}

.menu-open .nav-icon span {
    background: none;
}

.menu-open .nav-icon span::before {
    top: 0;
    width: 100%;
    transform: rotate(45deg);
}

.menu-open .nav-icon span::after {
    bottom: 0;
    width: 100%;
    transform: rotate(-45deg);
}

.menu-open .nav-icon span::before,
.menu-open .nav-icon span::after {
    transition-delay: 0s, 0.2s;
}

/* NAV MAIN *****************************/
.nav-wrap {
    display: flex;
    justify-content: center;
    flex: 1;
}
#nav-main {
    position: relative;
    display: flex;
}
#nav-main ul {
    position: relative;
    margin: var(--mid-pad) 0px;
    padding: 0px;
    list-style: none;
    text-align: left;
}
#nav-main ul li {
    position: relative;
    display: inline-block;
    float: left;
    padding: 0px 24px;
    padding: 12px 0px;
    margin: 0px 24px;
    text-align: center;
}
#nav-main ul li a {
    display: block;
    line-height: 20px;
    padding: 10px 0px;
    color: var(--white-color);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    cursor: pointer;
}
#navbar.sticky #nav-main ul li a {
    color: var(--dark-color);
}
#navbar.sticky .txt-icon-btn {
    color: var(--dark-color);
}
#nav-main ul li a:hover,
#navbar.sticky #nav-main ul li a:hover {
    color: var(--sub-color);
    transition: all 0.4s ease;
}
#nav-main .show-mob {
    display: none !important;
}
#navbar.sticky,
.menu-open #navbar {
    position: fixed;
}
.navbar-end {
    margin: 24px 0px;
}

/* FORM STYLES *****************************/
.form-wrap {
    position: relative;
}

.form-row-main {
    margin-left: -24px;
    margin-right: -24px;
}
.form-col-main {
    position: relative;
    display: block;
    width: 50%;
    float: left;
    padding: 0px 24px;
}
.form-wrapper .form-wrap {
    margin-bottom: 0px;
}
.form-subtitle {
    position: relative;
    display: block;
    font-weight: 600;
    line-height: var(--main-pad);
    margin-top: var(--mid-pad);
    margin-bottom: var(--sm-pad);
}
.form-col .form-subtitle {
    width: 100%;
}

.form-cols {
    display: flex;
    margin-left: -12px;
    margin-right: -12px;
}
.form-col {
    position: relative;
    display: block;
    width: 50%;
    width: calc(50% - 24px);
    float: left;
    margin: 0px 12px;
}
.form-col-sm {
    width: 25%;
    width: calc(25% - 24px);
}
.form-col-lg {
    width: 75%;
    width: calc(75% - 24px);
}
.form-cols .form-col {
    display: flex;
    flex-wrap: wrap;
    float: none;
}
.col-margin.form-cols {
    margin-top: 24px;
}
.form-group {
    position: relative;
    display: block;
    margin-bottom: 24px;
    /*	margin-bottom: 32px;*/
}
.form-cols:last-child .form-group {
    margin-bottom: 0;
}
.form-footer {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}
/*
.form-group:not(.form-floating) .control-label {
	position: relative;
	display: block;
	font-weight: 300;
	margin-bottom: 8px;
}
*/
.form-col h3 {
    padding: 0px 20px;
}
.form-control {
    height: 48px;
    font-weight: 600;
    padding: 14px 16px 14px 16px;
    line-height: 18px;
    border: 1px solid var(--white-color);
    font-size: var(--input-font);
    border-radius: var(--input-radius);
    color: var(--dark-color);
    background: var(--white-color);
    box-shadow: none;
    transition: border 0.2s ease, background 0.2s ease;
}
.email-input.form-control {
    text-transform: lowercase;
}
.form-floating > .form-control,
.form-floating > .form-control-plaintext {
    font-size: var(--input-font);
    padding: 14px 16px 14px 16px;
    line-height: 18px;
    height: 48px;
    min-height: inherit;
}
.form-control:focus {
    color: var(--dark-color);
    border: 1px solid var(--white-color);
    background: var(--white-color);
    box-shadow: none;
    transition: border 0.4s ease, background 0.4s ease;
}
.form-floating > .form-control-plaintext:focus,
.form-floating > .form-control-plaintext:not(:placeholder-shown),
.form-floating > .form-control:focus,
.form-floating > .form-control:not(:placeholder-shown) {
    padding-top: 23px;
    padding-bottom: 7px;
}
.form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-weight: 300;
    color: var(--text-color);
    font-size: var(--input-font);
    line-height: 24px;
    padding: 12px 16px;
    overflow: hidden;
    text-align: start;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label {
    color: var(--text-color);
    opacity: 1;
    transform: scale(0.8) translateY(-6px) translateX(4px);
}
.form-floating > textarea.form-control,
textarea.form-control {
    min-height: 144px;
    max-height: 200px;
}
.form-control.transparent-input {
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.24);
    border: 1px solid transparent;
    transition: all 0.2s ease;
}
.form-control.transparent-input:focus {
    color: var(--white-color);
    background: rgba(255, 255, 255, 0.32);
    border: 1px solid transparent;
}
.form-btns {
    display: flex;
    align-items: center;
    text-align: left;
}
.form-col-sm.form-btns {
    align-items: flex-start;
    justify-content: flex-end;
    text-align: right;
}
.form-select-box {
    position: relative;
    display: block;
    /*	min-width: 240px;*/
}
.form-select-box .selectric-wrapper {
    position: relative;
    border: none;
    width: 100%;
    /*
	margin-left: -1px;
	margin-right: -1px;
*/
    height: 48px;
}
.form-select-box .selectric {
    border: none;
    background: var(--input-bg-color);
    border-radius: var(--input-radius);
    border: none;
    height: 48px;
}
.form-select-box .selectric-open {
    z-index: 8;
    border-radius: var(--input-radius);
}
.form-select-box .selectric-open.selectric-below .selectric {
    border-radius: var(--input-radius) var(--input-radius) 0 0;
    background: var(--input-bg-color);
}

.form-select-box .selectric-open.selectric-above .selectric {
    border-radius: var(--input-radius);
    border-radius: 0 0 var(--input-radius) var(--input-radius);
    background: var(--input-bg-color);
    z-index: 3;
}
.form-select-box .selectric-open.selectric-below .selectric-items {
    border-radius: 0 0 var(--input-radius) var(--input-radius);
}
.form-select-box .selectric-open.selectric-above .selectric-items {
    border-radius: var(--input-radius) var(--input-radius) 0 0;
}
.form-select-box .selectric-open {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.08);
}
.form-select-box .selectric-items {
    display: block;
    opacity: 0;
    padding: 4px;
    background: var(--input-bg-color);
    /*	border: 1px solid var(--input-bg-color);*/
    border: none;
    overflow: hidden;
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transition: transform 0.15s ease-out, opacity 0.1s;
    transition: transform 0.15s ease-out, opacity 0.1s;
}

.form-select-box .selectric-open.selectric-above .selectric-items {
    -webkit-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
    -webkit-transition: transform 0.3s ease, opacity 0.2s;
    transition: transform 0.3s ease, opacity 0.2s;
    box-shadow: 0px -6px 12px rgba(0, 0, 0, 0.08);
}

.form-select-box .selectric-open.selectric-below .selectric-items {
    -webkit-transform-origin: 50% 0%;
    transform-origin: 50% 0%;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
    -webkit-transition: transform 0.3s ease, opacity 0.2s;
    transition: transform 0.3s ease, opacity 0.2s;
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.08);
}
.selectric-items .selectric-scroll {
    scrollbar-color: rgba(0, 0, 0, 0.24) rgba(0, 0, 0, 0.08);
    scrollbar-width: thin;
}
.selectric-scroll::-webkit-scrollbar {
    width: 8px;
    border-radius: 4px;
    cursor: pointer;
}
.selectric-scroll::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.08);
    cursor: pointer;
    border-radius: 4px;
}
.selectric-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.24);
    border-radius: 4px;
    cursor: pointer;
    transition: background 300ms ease;
}
.selectric-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.32);
    cursor: pointer;
}
.form-select-box .selectric .label {
    height: 48px;
    line-height: 32px;
    margin-right: 48px;
    padding: 8px 0px 8px 16px;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 300;
}
.form-select-box .selectric .button {
    height: 48px;
    width: 48px;
    right: 0px;
    top: -24px;
    top: 0;
    text-align: center;
    color: var(--text-color);
    background: transparent;
    text-shadow: none;
    z-index: 3;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.1s ease;
    transition: all 0.1s ease;
}
.selectric-open .selectric .button {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.form-select-box .selectric .button:after {
    line-height: 48px;
    height: 48px;
    width: 48px;
    text-align: center;
    top: 24px;
    top: 0px;
    font-weight: 300;
    color: var(--text-color);
    background: transparent;
    opacity: 1;
}
.form-select-box .selectric-items li {
    position: relative;
    display: block;
    font-size: 14px;
    padding: var(--sm-pad) var(--sm-pad);
    line-height: var(--main-pad);
    color: var(--text-color);
    font-weight: 300;
    border-radius: var(--input-radius);
    cursor: pointer;
}
.form-select-box .selectric-items li:hover {
    background: transparent;
    color: var(--text-color);
    font-weight: 700;
}
.form-select-box .selectric-items li.highlighted {
    font-weight: 700;
    background: var(--input-highlight-color);
}

.white-select.form-select-box .selectric,
.white-select.form-select-box .selectric-items,
.white-select.form-select-box .selectric-open.selectric-below .selectric,
.white-select.form-select-box .selectric-open.selectric-above .selectric {
    background: var(--white-color);
}

.form-control::-webkit-input-placeholder {
    color: var(--text-color);
    color: rgba(112, 119, 125, 0.5);
}
.form-control::-moz-placeholder {
    color: rgba(112, 119, 125, 0.5);
}
.form-control:-ms-input-placeholder {
    color: rgba(112, 119, 125, 0.5);
}
.form-control::placeholder {
    color: rgba(112, 119, 125, 0.5);
}

.transparent-input.form-control::-webkit-input-placeholder {
    color: var(--text-color);
    color: rgba(255, 255, 255, 1);
    font-weight: 400 !important;
}
.transparent-input.form-control::-moz-placeholder {
    color: rgba(255, 255, 255, 1);
    font-weight: 400 !important;
}
.transparent-input.form-control:-ms-input-placeholder {
    color: rgba(255, 255, 255, 1);
    font-weight: 400 !important;
}
.transparent-input.form-control::placeholder {
    color: rgba(255, 255, 255, 1);
    font-weight: 400 !important;
}

.form-control:focus::-webkit-input-placeholder {
    font-weight: 300;
}
.form-control:focus::-moz-placeholder {
    font-weight: 300;
}
.form-control:focus:-ms-input-placeholder {
    font-weight: 300;
}
.form-control:focus::placeholder {
    font-weight: 300;
}

input:-webkit-autofill,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
input:-internal-autofill-selected,
input:is(:-webkit-autofill, :autofill) {
    -webkit-appearance: none !important;
    -webkit-box-shadow: 0 0 0px 1000px var(--input-bg-color) inset !important;
    background-color: var(--input-bg-color) !important;
    background-image: none !important;
    color: var(--text-color) !important;
}

.form-control.input-error {
    border: 1px solid rgba(220, 53, 69, 0.08);
    border: transparent;
    background: rgba(220, 53, 69, 0.08);
}

.form-group .error-text,
.select-box .error-text,
.checkbox .error-text,
.form-captcha .error-text,
.form-option-group .error-text,
.form-options .error-text {
    position: absolute;
    top: auto !important;
    left: 16px;
    bottom: -20px;
    font-weight: 300;
    color: var(--red-color) !important;
    font-size: 12px !important;
}
.checkbox .error-text {
    bottom: -16px;
    left: 40px;
}
input[type="file"] {
}
.form-fileinput .error-text {
    font-weight: 300;
    color: var(--red-color) !important;
    font-size: 12px !important;
}
.box .inputfile {
    /*    width: 0.1px;*/
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile + label {
    display: flex;
    width: 100%;
    font-size: var(--input-font);
    font-weight: 300;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    overflow: hidden;
    padding: 11px 16px;
    margin-bottom: 0px;
}
.inputfile + label span {
    display: inline-block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    line-height: 24px;
    padding-right: 32px;
    /*    font-weight: 600;*/
}
.no-js .inputfile + label {
    display: none;
}

.inputfile:focus + label,
.inputfile.has-focus + label {
}
.inputfile + label i {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    width: 48px;
    height: 48px;
    right: 0;
    top: 0;
    font-size: var(--icon-font);
    color: var(--text-color);
}
.inputfile-1 + label {
    border-radius: var(--input-radius);
    color: var(--text-color);
    border: 1px solid var(--input-highlight-color);
    background: var(--input-bg-color);
    background: var(--input-highlight-color);
    /*	border: 1px solid currentColor;*/
}
.inputfile-1:focus + label,
.inputfile-1.has-focus + label,
.inputfile-1 + label:hover {
    color: var(--text-color);
}
.inputfile + label:hover i {
    color: var(--sub-color);
}
/*
.inputfile-1 + label:hover {
	border: 1px solid var(--dark-border-color);
}
*/

.modal-content .form-control {
    background: var(--input-highlight-color);
}

.ch-btn {
    position: relative;
    display: inline-block;
    display: block;
    vertical-align: middle;

    height: 40px;
    padding-top: 8px;
    margin-bottom: 8px;
}

.ch-inline.ch-btn {
    padding-top: 0px;
    margin-right: 24px;
    margin-bottom: 0px;
}
.ch-inline.ch-btn:last-child {
    margin-right: 0px;
}

.ch-btn input[type="checkbox"] {
    position: absolute;
    left: -49%;
    visibility: hidden;
    height: 1px;
    z-index: 0;
}
.ch-btn label {
    position: relative;
    display: block;
    font-size: var(--input-font);
    font-weight: 300;
    padding-left: 40px;
    line-height: 24px;
    cursor: pointer;
    z-index: 1;
}
.ch-btn label span {
    position: absolute;
    display: block;
    height: 24px;
    width: 24px;
    top: 0px;
    left: 0px;
    border: 1px solid var(--white-color);
    background: var(--white-color);
    border-radius: 5px;
    z-index: 1;
    text-align: center;
    font-size: 14px;
    color: var(--dark-color);
}
.ch-btn label:hover span {
    cursor: pointer;
}
.ch-btn input[type="checkbox"]:checked + label span {
    color: var(--white-color);
    background: var(--sub-color);
    border: 1px solid var(--sub-color);
}
.ch-btn label i {
    display: none;
    height: 24px;
    line-height: 24px;
}
.ch-btn label:hover i,
.ch-btn input[type="checkbox"]:checked + label i {
    display: block;
    opacity: 1;
}
.ch-btn a {
    color: var(--main-color);
    text-decoration: underline;
    /*	text-transform: lowercase;*/
}
.ch-btn a:hover {
    text-decoration: none;
}

.radio-btn {
    position: relative;
    display: flex;
    overflow: hidden;
    height: 40px;
    margin-bottom: 8px;
    padding-left: 0px;
}
.radio-normal {
    display: flex;
    padding-top: 8px;
}
.radio-inline {
    position: relative;
    display: inline-flex;
    overflow: hidden;
    padding-top: 0px;
    margin-bottom: 0;
    margin-right: var(--main-pad);
}
.radio-inline:last-child {
    margin-right: 0;
}
.radio:hover,
.radio-btn label:hover {
    cursor: pointer;
}
.radio-label {
    display: block;
    margin: 0;
    font-size: var(--input-font);
    font-weight: 300;
    padding-left: 40px;
    line-height: 24px;
}
.radio-btn input {
    position: absolute;
    visibility: hidden;
}
.radio-btn .radio-cir {
    position: absolute;
    display: block;
    height: 24px;
    width: 24px;
    left: 0px;
    top: 0px;
    border: none;
    border: 1px solid var(--input-bg-color);
    background: var(--input-bg-color);
    border-radius: 50%;
    z-index: 2;
    transition: all 0.2s ease;
}
.radio-btn .radio-cir:after {
    position: absolute;
    content: "";
    display: block;
    left: 6px;
    top: 6px;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.2s ease;
}
.radio-btn input[type="radio"]:checked + .radio-cir {
    border: none;
    border: 1px solid var(--sub-color);
}
.radio-btn input[type="radio"]:checked + .radio-cir:after {
    background: var(--sub-color);
}
.grecaptcha-badge {
    visibility: hidden;
}

/* CARD ITEMS STYLES *****************************/
.card-items {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0 var(--main-neg);
    margin-top: 64px;
}
.card-item {
    width: calc(33.33333% - var(--lg-pad));
    margin: 0 var(--main-pad);
    padding: var(--main-pad);
    border-radius: var(--md-radius);
    background: var(--light-grey);
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.08);
}
.card-item-top {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: var(--main-pad);
}
.card-item-img {
    border-radius: var(--md-radius);
    overflow: hidden;
}
.card-item-number {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--dark-color);
    opacity: 0.08;
    font-size: 48px;
    font-weight: 600;
    padding-left: var(--med-pad);
    padding-right: var(--xs-pad);
}
.card-item-title {
    font-size: var(--md-font);
    font-weight: 600;
    line-height: 1.4;
    color: var(--dark-color);
    margin-bottom: var(--xs-pad);
}
.card-item-text {
    font-size: var(--main-font);
    color: var(--text-color);
    line-height: 1.6;
}

/* SERVICE CARD STYLES *****************************/
#service-slider {
    width: 100%;
    overflow: initial;
    padding: 0 80px;
    opacity: 0;
    animation: opac-in-animate 0.6s ease-in forwards;
}
#service-slider .swiper-wrapper {
    height: 30%;
}
#service-slider .swiper-slide:last-child {
    margin: 0 !important;
}
.service-card {
    position: relative;
    display: flex;
    flex-direction: row;
    padding: var(--lg-pad);
    border-radius: var(--md-radius);
    background: var(--white-color);
}
.service-card-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    font-size: var(--md-icon);
    color: var(--sub-color);
    margin-right: var(--main-pad);
}
.service-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-item-title {
    font-size: var(--xl-font);
    color: var(--dark-color);
    font-weight: 600;
    line-height: 56px;
}
.service-item-text {
    margin-bottom: var(--lg-pad);
}
.service-item-text p {
    font-size: var(--main-font);
    color: var(--text-color);
    font-weight: 300;
    line-height: 1.6;
}
.service-item-text p:last-child {
    margin: 0;
}
.service-card-btm {
    display: flex;
    flex-direction: row;
}
.service-card-list {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-card-list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.service-card-list-item-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--xs-icon);
    color: var(--green-color);
    margin-right: var(--xs-pad);
}
.service-card-list-item-text {
    font-size: var(--main-font);
    color: var(--green-color);
}
.service-card-right {
    display: flex;
    align-items: flex-end;
}

/* MAIN BANNER STYLES *****************************/
#banner-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    background: linear-gradient(98deg, var(--dark-color) 0%, #1b1843 100%);
    overflow: hidden;
}
#banner-main {
    position: relative;
    display: flex;
    padding-top: 96px;
    z-index: 2;
}
#banner-main::after {
    position: absolute;
    bottom: -4%;
    left: -4%;
    content: "";
    width: 150%;
    height: 32%;
    background: var(--white-color);
    transform: rotate3d(1, 1, 1, 356deg);
    pointer-events: none;
}
.banner-txt-wrap {
    display: flex;
    flex-direction: row;
    color: var(--white-color);
    margin-left: var(--med-neg);
    margin-right: var(--med-neg);
    margin-bottom: var(--lg-pad);
}
.banner-txt-left {
    width: 53%;
    padding: 0 var(--med-pad);
}
.banner-txt-left h1 {
    margin: 0;
}
.banner-txt-right {
    display: flex;
    align-items: flex-end;
    width: 47%;
    padding: 0 var(--med-pad);
    text-align: right;
}
.banner-txt-right > div {
    font-size: var(--lg-font);
    line-height: 1.4;
}
.banner-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--xl-radius);
}
.banner-img-wrap .swiper-slide {
    cursor: grab;
}
.banner-slider-texts {
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(48px);
    z-index: 1;
    width: 100%;
    padding: 0 var(--lg-pad);
}
#banner-texts-slider.swiper {
    width: 75%;
    margin: 0;
}
.banner-slider-texts .swiper-slide {
    width: 33.3333%;
}
.banner-slider-text {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin: 0 var(--mid-pad);
    color: var(--white-color);
    padding: var(--sm-pad) 0;
}
.banner-slider-text > div {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: var(--xs-pad);
}
.banner-slider-text > span {
    font-size: var(--main-font);
    font-weight: 600;
    line-height: 1;
}

/* BANNER SECONDARY STYLES *****************************/
.banner-secondary {
    position: relative;
    aspect-ratio: 1440 / 440;
    background: red;
    border-radius: var(--xl-radius);
    overflow: hidden;
    padding: var(--lg-pad);
    background: url(../images/rutjes-secondarybanner.jpg) no-repeat center
        center;
    background-size: cover;
    margin-bottom: -20%;
}
.banner-secondary-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.banner-secondary-title {
    font-size: var(--xxxl-font);
    font-weight: 600;
    color: var(--white-color);
    line-height: 1;
    margin-bottom: var(--main-pad);
}
.banner-secondary-text {
    color: var(--white-color);
    font-size: var(--md-font);
    line-height: 1.6;
}
.banner-secondary-footer {
    display: flex;
    margin-top: auto;
}

/* CONTENT BANNER STYLES *****************************/
.content-banner-wrap {
    position: relative;
    display: block;
    padding: 96px 0px;
}
.banner-wrap-no-top-pad {
    padding-top: 0;
}
.content-offset {
    overflow: hidden;
}
.no-pad-bottom {
    padding-bottom: 0px;
}
.content-banner-wrap-top {
    position: relative;
    display: block;
    padding: 0px 0px 144px 0px;
}
.banner-wrap-small {
    padding: 80px 0px;
}
.banner-wrap-lg {
    padding: 240px 0px;
}
.content-banner-extra-margin {
    margin-bottom: 384px;
}
.content-banner.content-banner-margin {
    margin-bottom: var(--xl-pad);
}
.banner-blk-txt {
    position: relative;
}
.banner-blk-txt-center {
    text-align: center;
}
.banner-blk-txt-sm {
    max-width: 60%;
}
.content-banner-title {
    font-size: var(--xxl-font);
    color: var(--dark-color);
    font-weight: 300;
    line-height: 1;
    margin-bottom: var(--med-pad);
}
.banner-blk-txt-big .content-banner-title {
    line-height: 64px;
}
.banner-blk-txt-margin .content-banner-title {
    margin-bottom: var(--main-pad);
}
.banner-blk-txt-margin2 .content-banner-title {
    margin-bottom: var(--lg-pad);
}
.content-banner-title b {
    font-weight: 600;
    color: var(--sub-color);
}
.content-banner-text {
    position: relative;
    color: var(--text-color);
    font-size: var(--main-font);
}
.content-banner-text p:last-child {
    margin-bottom: 0;
}
.content-banner-grey {
    width: calc(100% - 160px);
    margin: 0 auto;
    background: var(--light-grey);
    border-radius: 96px;
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.08);
}
#partner-slider {
    opacity: 0;
    animation: opac-in-animate 0.6s ease-in forwards;
}
#partner-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 268px;
    height: 268px;
}

/* CONTACT MAP STYLES *****************************/
#contact {
    position: relative;
    padding-bottom: 96px;
}
.contact-map {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.contact-map:before,
.contact-map:after {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 24%;
    left: 0;
    z-index: 2;
}
.contact-map:before {
    top: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 1) 50%,
        rgba(255, 255, 255, 0) 100%
    );
}
.contact-map:after {
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 1) 50%
    );
}
#map-canvas {
    position: absolute;
    width: 100%;
    height: 100%;
}
.content-form {
    position: relative;
    border-radius: var(--md-radius);
    background: var(--light-grey);
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.08);
    padding: var(--lg-pad);
    max-width: 560px;
    z-index: 3;
}
.content-form-text {
    display: flex;
    flex-direction: column;
}
.content-form-title {
    font-size: var(--xl-font);
    color: var(--dark-color);
    font-weight: 300;
    line-height: 1;
    margin-bottom: var(--mid-pad);
}
.content-form-title b {
    font-weight: 600;
    color: var(--sub-color);
}
.content-form-text p {
    line-height: 1.6;
}
.modal-success {
    position: relative;
    display: none;
    justify-content: center;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: var(--main-radius);
    flex-direction: column;
    text-align: center;
    background: var(--bg-color);
    z-index: 9;
    opacity: 1;
}

/* FOOTER STYLES *****************************/

#footer {
    position: relative;
    padding: 0;
    margin-top: var(--xxl-pad);
    background: linear-gradient(98deg, var(--dark-color) 0%, #1b1843 100%);
}
.footer-content {
    position: relative;
    display: flex;
    font-size: var(--sm-font);
    padding: var(--xxl-pad) 0px var(--xxl-pad) 0px;
    margin-left: -12px;
    margin-right: -12px;
    color: var(--light-text-color);
}
.footer-start-content {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 12px;
    width: 25%;
}
.footer-logo {
    position: relative;
    padding: 0px;
    /*	margin-bottom:var(--mid-pad); */
}
.footer-logo img {
    height: 40px;
    width: auto;
}
.footer-start-text {
    margin-bottom: var(--sm-pad);
}
.footer-start-content .button {
    align-self: flex-start;
    margin-top: var(--med-pad);
}

.footer-menu {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 12px;
    width: 25%;
}
.footer-menu-title {
    color: var(--white-color);
}
.footer-menu-title h5 {
    font-size: var(--main-font);
    font-weight: 600;
}
.footer-menu-title.footer-title-margin {
    margin-top: var(--lg-pad);
}

.footer-menu-list {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-menu-list li {
    margin: 0;
    padding: var(--xxs-pad) 0;
    line-height: var(--main-pad);
    color: rgba(var(--white-color-rgb), 0.64);
}
.footer-menu-list a {
    color: rgba(var(--white-color-rgb), 0.64);
    font-weight: 300;
    transition: all ease 0.2s;
}
.footer-menu-list a:hover {
    color: rgba(var(--white-color-rgb), 1);
    transition: all ease 0.4s;
}
.footer-menu-list li a i {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: var(--main-pad);
    height: var(--main-pad);
    line-height: var(--main-pad);
    color: var(--sub-color);
    margin-right: var(--xs-pad);
}
.footer-bottom {
    position: relative;
    display: flex;
    padding: var(--lg-pad) 0px;
    background: rgba(0, 0, 0, 0.16);
}
.footer-bottom .container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
.footer-copyright {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 50%;
    padding: 0;
    text-align: left;
}
.footer-copyright div {
    display: inline-flex;
    line-height: var(--mid-pad);
    color: var(--white-color);
    margin-bottom: var(--mid-pad);
}
.footer-copyright p {
    font-size: 12px;
    margin-bottom: 0;
    color: rgba(var(--white-color-rgb), 0.64);
}
.footer-social {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    padding: 0;
    color: var(--white-color);
}
.footer-socials {
    list-style: none;
    display: flex;
    margin: 0;
    margin-left: auto;
    padding: 0;
}
.footer-socials li {
    margin: 0 0 0 var(--xs-pad);
    padding: 0;
}
.footer-social a {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 48px;
    height: 48px;
    line-height: 48px;
    color: var(--white-color);
    font-size: 20px;
    transition: all ease 0.2s;
}
.footer-social a:hover {
    color: var(--sub-color);
    transition: all ease 0.4s;
}
.footer-app-buttons {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 50%;
}
.footer-app-buttons .app-btn {
    margin-right: var(--mid-pad);
}
.banner-app-buttons {
    position: relative;
    display: flex;
    flex-direction: row;
}
.banner-app-buttons .app-btn {
    margin-right: var(--mid-pad);
}
.app-btn {
    position: relative;
    display: flex;
    background: var(--light-main-color);
    padding: 0px;
    border-radius: var(--main-radius);
    opacity: 1;
    transition: all ease 0.2s;
}
.header-app-buttons .app-btn {
    background: var(--bg-color);
}
.app-btn:hover {
    opacity: 0.64;
    transition: opacity ease-out 0.4s;
}
.app-btn img {
    height: 40px;
    width: auto;
}

.footer-sub-links {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: 50%;
}
.footer-sub-links ul {
    position: relative;
    display: flex;
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-sub-links li {
    margin: 0;
    margin-left: var(--mid-pad);
    padding: var(--xs-pad) 0;
    line-height: var(--main-pad);
}
.footer-sub-links a {
    color: var(--light-text-color);
    font-weight: 300;
    transition: color ease 0.2s, font-weight ease 0.2s;
}
.footer-sub-links a:hover {
    color: var(--sub-color);
    transition: color ease-out 0.4s, font-weight ease-out 0.4s;
}

/* OTHER STYLES *****************************/

.clear {
    display: block;
    clear: both;
}

.no_border {
    border: none !important;
}

.mob-break {
    display: none;
}

.web-break {
    display: inline;
}

.show-mob {
    display: none;
}

/* ANIMATIONS *****************************/
@keyframes opac-in-animate {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes opac-out-animate {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes drop-show-animate {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes drop-hide-animate {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        transform: translateY(100%);
    }
}

/* RESPONSIVE STYLES *****************************/

.container {
    padding-right: 48px;
    padding-left: 48px;
}

.row {
    margin-right: -24px;
    margin-left: -24px;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    padding-right: 24px;
    padding-left: 24px;
}

@media (min-width: 1921px) {
    :root {
        --xxl-font: 32px;
        --xxxl-font: 56px;
    }
    .container {
        max-width: 1696px;
        padding-right: 48px;
        padding-left: 48px;
    }

    h1 {
        font-size: 64px;
    }
}

@media (min-width: 1600px) and (max-width: 1920px) {
    .container {
        max-width: 1536px;
        padding-right: 48px;
        padding-left: 48px;
    }

    #banner-texts-slider.swiper {
        width: 85%;
    }

    .partner-logo {
        width: 240px;
        height: 240px;
    }
}

@media (min-width: 1200px) and (max-width: 1599px) {
    body {
    }
    .container {
        max-width: 100%;
        padding-right: 48px;
        padding-left: 48px;
    }
    #banner-texts-slider.swiper {
        width: 100%;
    }
    .partner-logo {
        width: 200px;
        height: 200px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .banner-secondary {
        aspect-ratio: 1440 / 560;
    }
}

@media (max-width: 1199px) {
    :root {
        --xl-font: 20px;

        --xxs-icon: 14px;
        --input-radius: 5px;
    }

    .mob-only {
        display: flex !important;
    }

    /* FORM STYLES */
    .form-control {
        border-radius: var(--input-radius);
    }
    .form-cols {
        margin-left: -8px;
        margin-right: -8px;
    }
    .form-col {
        margin: 0px var(--xs-pad);
        width: calc(50% - 16px);
    }
    .form-group {
        margin-bottom: var(--mid-pad);
    }
    .ch-btn {
        height: initial;
        margin-bottom: 0;
    }
    .ch-btn label {
        font-size: var(--xs-font);
    }

    /* DRAWER STYLES */
    #backdrop {
        opacity: 0;
        position: fixed;
        content: "";
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        background: var(--dark-color);
        pointer-events: none;
        transition: opacity 0.15s ease-in;
        z-index: 9999999;
    }
    .drawer-open #backdrop {
        opacity: 0.96;
        pointer-events: all;
        transition: opacity 0.25s ease-out;
    }
    #drawer {
        position: fixed;
        bottom: 0;
        z-index: 999999999999;
        background: var(--white-color);
        left: 0;
        flex-direction: column;
        width: 100%;
        border-radius: var(--lg-radius) var(--lg-radius) 0px 0px;
        opacity: 0;
        pointer-events: none;
    }
    #drawer.open {
        animation: drop-show-animate 0.4s ease-out forwards;
        pointer-events: all;
    }
    .drawer-close #drawer {
        animation: drop-hide-animate 0.3s ease-in forwards;
        pointer-events: none;
    }
    .close-drawer {
        position: absolute;
        right: 16px;
        top: 24px;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--text-color);
        z-index: 1;
    }

    /* BANNER STYLES */
    #banner-main {
        padding-top: 56px;
    }
    #banner-main::after {
        transform: rotate3d(1, 1, 1, 348deg);
    }
    .banner-txt-wrap {
        margin: 0;
    }
    .banner-txt-left {
        width: 100%;
        padding: 0;
        margin-bottom: var(--main-pad);
    }
    .banner-txt-right {
        display: none;
    }
    .banner-img-wrap {
        border-radius: var(--md-radius);
    }
    #banner-slider .swiper-slide {
        aspect-ratio: 343 / 196;
    }
    .banner-img-wrap .swiper-slide img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
    .banner-slider-texts {
        padding: 0 var(--main-pad);
    }
    #banner-texts-slider.swiper {
        width: 100%;
    }
    .banner-slider-texts .swiper-slide {
        width: 100%;
    }
    .banner-slider-text {
        margin: 0;
        padding: var(--xxs-pad) 0;
    }
    .banner-slider-text > div {
        font-size: var(--xs-icon);
    }

    /* CARD ITEMS STYLES *****************************/
    .card-items {
        flex-direction: column;
        margin: 0;
        margin-top: var(--main-pad);
    }
    .card-item {
        margin: 0;
        width: 100%;
        border-radius: var(--lg-radius);
        padding: var(--mid-pad);
        margin-bottom: var(--mid-pad);
    }
    .card-item:last-child {
        margin-bottom: 0;
    }
    .card-item-img {
        aspect-ratio: 263 / 88;
    }
    .card-item-top {
        margin-bottom: var(--mid-pad);
    }
    .card-item-number {
        font-size: 32px;
        padding-left: var(--main-pad);
    }
    .card-item-title {
        font-size: var(--main-font);
        line-height: 20px;
    }
    .card-item-text {
        font-size: var(--xs-font);
    }

    /* SERVICE CARD STYLES */
    #service-slider {
        padding: 0;
        pointer-events: none;
    }
    .service-card {
        padding: var(--mid-pad);
    }
    #drawer .service-card {
        padding-top: var(--main-pad);
    }
    .service-card-icon {
        margin-left: -16px;
        margin-top: -16px;
        margin-right: 0;
        font-size: 20px;
    }
    #drawer .service-card-icon {
        display: none;
    }
    .service-item-title {
        font-size: var(--main-font);
        margin-bottom: var(--xxs-pad);
        line-height: 20px;
    }
    #drawer .service-item-title {
        font-size: var(--md-font);
        line-height: 1.2;
        margin-bottom: var(--xs-pad);
    }
    .service-item-text {
        font-size: var(--main-font);
        line-height: 1.6;
        margin-bottom: var(--mid-pad);
    }
    .service-item-text p {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
    #drawer .service-item-text p {
        display: block !important;
        -webkit-line-clamp: unset;
    }
    .service-item-text p:nth-child(2) {
        display: none;
    }
    .service-card-list {
        display: none;
    }
    #drawer .service-card-list {
        display: flex;
    }
    #drawer .service-card-list-item-text {
        width: calc(100% - 32px);
    }
    .service-card-right .txt-btn {
        pointer-events: all;
    }
    .service-card-right .txt-icon-btn {
        display: none;
    }
    #drawer .service-card-right {
        display: none;
    }

    /* SECONDARY BANNER STYLES */
    .banner-secondary {
        position: relative;
        padding: var(--mid-pad);
        aspect-ratio: 343 / 240;
        margin-bottom: -70%;
        border-radius: var(--lg-radius);
        background: linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.48) 19.41%,
                rgba(0, 0, 0, 0) 100%
            ),
            url(../images/rutjes-secondarybanner-mobile.jpg) lightgray -766.431px 0px /
                443.065% 123.125% no-repeat;
        background-position: center center;
        background-size: cover;
    }
    .banner-secondary-title {
        font-size: 20px;
        line-height: 1.2;
        margin-bottom: var(--sm-pad);
    }
    .banner-secondary-title br {
        display: none;
    }
    .banner-secondary-text {
        font-size: var(--main-font);
        width: 65%;
    }
    /* CONTENT BANNER STYLES */
    .content-banner-wrap {
        padding: var(--med-pad) 0px;
    }
    .content-banner-title {
        font-size: var(--lg-font);
        line-height: 1.2;
        margin-bottom: var(--mid-pad);
    }
    .content-banner-extra-margin {
        margin-bottom: calc(471px + 64px);
    }
    #content-banner-1 .banner-blk-txt {
        max-width: 100%;
    }
    .content-banner-grey {
        width: 100%;
        margin-top: var(--main-pad);
        border-radius: var(--xl-radius) var(--xl-radius) 0 0;
    }
    .banner-blk-txt-big .content-banner-title {
        line-height: 28px;
    }
    .banner-blk-txt-margin .content-banner-title {
        margin-bottom: 40px;
    }
    .banner-blk-txt-margin2 .content-banner-title {
        margin-bottom: var(--mid-pad);
    }
    #content-banner-2 {
        padding-top: 64px;
    }
    #partner-slider .swiper-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }
    #partner-slider .swiper-slide {
        width: 33.3333%;
    }
    .partner-logo {
        height: 64px;
        width: initial;
    }
    #content-banner-3 {
    }

    /* CONTACT STYLES */
    #contact {
        padding: 0;
    }
    .contact-map {
        flex-direction: column-reverse;
    }
    .contact-map:before,
    .contact-map:after {
        display: none;
    }
    #map-canvas {
        position: relative;
        aspect-ratio: 320 / 180;
    }
    .contact-map .container {
        padding: 0;
    }
    .content-form {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        padding: var(--mid-pad);
        box-shadow: none;
    }
    .content-form .content-form-title {
        margin-bottom: var(--sm-pad);
    }
    .content-form-text p {
        margin-bottom: var(--main-pad);
    }
    .form-footer {
        margin-top: var(--lg-pad);
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    body {
        font-size: 14px;
    }
    .container {
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }
    #navbar .container {
        padding-left: 0px;
        padding-right: 0px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 100%;
        padding-left: 24px;
        padding-right: 24px;
    }
    body {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    :root {
        --xs-pad: 8px;
        --sm-pad: 12px;
        --mid-pad: 16px;
        --main-pad: 24px;
        --lg-pad: 48px;
        --xl-pad: 72px;
        --xxl-pad: 96px;
        --lg-neg: -48px;
        --main-neg: -24px;
        --main-font: 14px;
        --input-font: 14px;
        --button-font: 14px;
        --sm-icon: 18px;
        --main-icon: 32px;
        --large-icon: 96px;
    }
    .col,
    .col-1,
    .col-10,
    .col-11,
    .col-12,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-auto,
    .col-lg,
    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-auto,
    .col-md,
    .col-md-1,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-auto,
    .col-sm,
    .col-sm-1,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-auto,
    .col-xl,
    .col-xl-1,
    .col-xl-10,
    .col-xl-11,
    .col-xl-12,
    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7,
    .col-xl-8,
    .col-xl-9,
    .col-xl-auto {
        padding-right: 16px;
        padding-left: 16px;
    }
    body {
        font-size: 14px;
    }
    .container {
        padding-right: 16px;
        padding-left: 16px;
    }
    .row {
        margin-right: -16px;
        margin-left: -16px;
    }
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 22px;
    }
    h3 {
        font-size: 14px;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    h4 {
        font-size: 14px;
    }
    h2 br,
    h3 br {
        display: none;
    }
    p {
        margin-bottom: 1.6rem;
        margin-bottom: 16px;
    }
    .lead {
        font-size: 16px;
        margin-bottom: 16px;
        margin-bottom: 1.6rem;
    }
    h3 + .lead {
        margin-top: 16px;
        margin-top: 1.6rem;
    }
    .sub-title {
        font-size: 11px;
    }
    a.button,
    .button,
    .button:visited {
        min-width: 144px;
        font-size: 14px;
        padding: 8px 24px 8px 20px;
    }
    a.button span,
    .button span {
        white-space: nowrap;
    }
    .l-btn,
    .l-btn:visited {
    }
    .btn-clean {
        font-size: 14px;
        padding: 10px 16px;
    }
    #top-btn.clear-btn span {
        font-size: 12px;
    }
    .btn-clean i {
        height: 20px;
        line-height: 20px;
        width: 20px;
    }
    .mob-break {
        display: inline;
    }
    .web-break {
        display: none;
    }
    .hide-mob {
        display: none;
    }
    .show-mob {
        display: flex;
    }
    #main-wrapper {
        overflow: hidden;
    }
    #navbar {
        padding: 0px;
    }
    #navbar .container {
        padding-left: 0px;
        padding-right: 0px;
    }
    .logo-main {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* CONTENT BANNER STYLES */
    .content-banner-extra-margin {
        margin-bottom: calc(246px + 64px);
    }

    /* CARD ITEMS STYLES *****************************/
    .card-item-img {
        aspect-ratio: 263 / 148;
    }

    /* SECONDARY BANNER STYLES */
    .banner-secondary {
        aspect-ratio: 343 / 480;
        background-position: 64% center;
    }

    /* CONTACT STYLES */
    #map-canvas {
        position: relative;
        aspect-ratio: 375 / 500;
    }

}

@media (min-width: 400px) and (max-width: 767px) {
}

@media (min-width: 320px) and (max-width: 361px) {
}

/* NAVBAR */
@media (max-width: 1199px) {
    html.drawer-open,
    html.menu-open {
        overflow: hidden;
    }

    /*
    body.menu-open {
        overflow: hidden;
        width: 100%;
    }
*/
    #navbar.sticky-ani {
        position: fixed;
        top: -56px;
    }
    #navbar.sticky {
        position: fixed;
        top: 0;
    }
    .menu-open #navbar {
        box-shadow: none;
        top: 0 !important;
    }
    .navbar-header {
        padding: 0;
    }
    .menu-open.menu-ani .navbar-header {
        background: none;
        -webkit-transition: background 0.01s ease-out;
        transition: background 0.01s ease-out;
        -webkit-transition-delay: 0s;
        transition-delay: 0s;
    }
    .navbar-header-logo {
        flex: 1;
    }
    #bg-wrapper {
        z-index: 999998;
    }
    #navbar {
        position: fixed;
        padding: 0px 16px;
        z-index: 999999;
    }
    .nav-toggle {
        display: block;
        margin: 16px 16px 16px 0px;
        z-index: 3;
    }
    .nav-socials {
        display: none;
    }
    .logo-main {
        margin: 0;
        margin: 14px 0px;
        z-index: 1;
        flex: 1;
    }
    .logo-main span {
        height: 28px;
    }
    .logo-main img {
        height: 28px;
        width: auto;
        vertical-align: top;
    }
    .nav-wrap {
        position: absolute;
        position: fixed;
        display: block;
        float: none;
        top: 0;
        left: -100%;
        width: calc(100% - var(--lg-pad));
        max-width: 400px;
        height: 100dvh;
        margin: 0;
        padding: 56px 24px 48px 24px;
        z-index: 1;
        opacity: 0;
        background: var(--white-color);
        overflow: hidden;
        overflow-y: auto;
        border-radius: 0px 16px 16px 0px;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }
    .menu-open .nav-wrap {
        display: flex;
        flex-direction: column;
        left: 0px;
        top: 0;
        opacity: 1;
        -webkit-transition: all 0.4s ease-out;
        transition: all 0.4s ease-out;
    }
    .nav-wrap .logo-main {
        flex: none;
        position: absolute;
        top: 0;
        width: 100%;
        left: 0;
        pointer-events: none;
    }
    .nav-wrap .logo-main .logo-main-dark {
        display: block;
    }
    #nav-main {
        width: 100%;
        opacity: 0;
    }
    .menu-open #nav-main {
        animation: opac-in-animate 0.6s ease-in forwards;
        animation-delay: 0.3s;
    }
    .menu-ani #nav-main {
        /*		right: -110%;*/
        opacity: 0;
    }
    .menu-open #navbar.sticky,
    .menu-open.sub-page #navbar {
        /*
        background: #000000;
        box-shadow: none;
*/
    }
    .nav-icon span,
    .nav-icon span::before,
    .nav-icon span::after {
        background: var(--white-color);
    }
    .sticky .nav-icon span,
    .sticky .nav-icon span::before,
    .sticky .nav-icon span::after {
        background: var(--text-color);
    }
    .menu-open .nav-icon span {
        background: none !important;
    }
    .menu-open .nav-icon span,
    .menu-open .nav-icon span::before,
    .menu-open .nav-icon span::after,
    .menu-open .sticky .nav-icon span::before,
    .menu-open .sticky .nav-icon span::after {
        background: var(--text-color);
    }
    .menu-open #navbar.sticky .navbar-header-logo .logo-main,
    .menu-open .navbar-end {
        opacity: 0;
        transition: opacity 0.2s ease;
    }
    .menu-open #navbar.sticky {
        background: transparent;
        transition: background 0.2s ease;
    }
    #nav-main .show-mob {
        display: block !important;
        text-align: center;
    }
    #nav-main ul {
        display: flex;
        flex-direction: column;
        width: calc(100% + 48px);
        align-self: center;
        margin-left: -24px;
        margin-right: -24px;
        padding: 0px;
    }
    #nav-main ul li {
        display: block;
        text-align: left;
        padding: 0px var(--mid-pad);
        margin: 0 0px;
    }
    #nav-main ul li:after {
        position: absolute;
        content: "\f054";
        font-family: "Font Awesome 6 Pro";
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        font-size: var(--xxs-icon);
        top: 0;
        right: 0;
        z-index: 1;
        pointer-events: none;
    }
    #nav-main ul li a {
        position: relative;
        display: block;
        text-align: left;
        width: 100%;
        padding: 0;
        font-size: 16px;
        line-height: 48px;
        font-weight: 600;
        color: var(--dark-color) !important;
    }
    #navbar.sticky #nav-main ul li a {
        color: var(--white-color);
    }
    .navbar-end {
        display: flex;
        align-items: center;
        margin: 0;
        opacity: 1;
        transition: all 0.2s ease;
        margin-left: var(--xs-pad);
    }
    .navbar-end .i-btn {
        width: 32px;
        height: 32px;
        font-size: var(--xxs-icon);
    }
    .navbar-end .txt-icon-btn span {
        display: none;
    }
}

/* FOOTER */
@media (max-width: 1199px) {
    #footer {
        margin: 0;
    }
    .footer-start-content {
        width: 100%;
        text-align: start;
        justify-content: flex-start;
        margin-top: 40px;
        margin-bottom: var(--lg-pad);
    }

    .footer-content {
        flex-direction: column;
        padding: 0;
        padding-bottom: var(--lg-pad);
    }
    .footer-logo img {
        height: 28px;
    }
    .footer-menu {
        width: 100%;
    }
    .footer-menu-title {
        position: relative;
        display: flex;
        padding: 17px 0px;
        line-height: 24px;
        color: var(--white-color);
        transition: color 0.15s ease-out;
    }
    .footer-menu-collapse .footer-menu-title:after {
        position: absolute;
        display: inline-block;
        content: "\f078";
        right: 0px;
        top: 12px;
        height: 24px;
        width: 24px;
        line-height: 24px;
        font-size: 14px;
        color: var(--white-color);
        opacity: 0.64;
        vertical-align: middle;
        text-align: center;
        font-style: normal;
        font-family: "Font Awesome 6 Pro";
        font-weight: 300;
        transform: rotate(0deg);
        transition: all 0.2s ease;
    }
    .footer-menu-collapse.footer-menu-open .footer-menu-title:after {
        color: var(--white-color);
        transform: rotate(-180deg);
        transition: all 0.3s ease;
    }
    .footer-menu-title h5 {
        margin: 0;
        line-height: 1;
        font-size: var(--main-font);
    }
    .footer-menu-title.footer-title-margin {
        margin: 0;
    }
    .footer-menu-collapse .footer-menu-list {
        display: none;
    }
    .footer-menu-list li {
    }
    .footer-bottom {
        flex-wrap: wrap;
        padding: var(--mid-pad);
    }
    .footer-bottom .container {
        padding: 0;
        flex-direction: column-reverse;
    }
    .footer-social {
        width: 100%;
        margin: 0;
    }
    .footer-social a {
        font-size: 16px;
    }
    .footer-socials {
        margin: 0;
        margin-bottom: var(--xs-pad);
    }
    .footer-socials li {
        margin: 0;
    }
    .footer-copyright {
        text-align: left;
        width: 100%;
        font-size: 12px;
        background: transparent;
        line-height: var(--main-pad);
        color: rgba(var(--white-color-rgb), 0.48);
    }
    .footer-copyright div {
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: var(--main-font);
    }
    .footer-copyright p {
        text-align: center;
        line-height: 1.6;
    }
}

@-webkit-keyframes dropdown-animate {
    0% {
        height: 0;
        opacity: 1;
    }
    100% {
        height: 200px;
        opacity: 1;
    }
}

@keyframes dropdown-animate {
    0% {
        height: 0;
        opacity: 1;
    }
    100% {
        height: 200px;
        opacity: 1;
    }
}

@-webkit-keyframes mob-dropdown-animate {
    0% {
        height: 0;
        opacity: 1;
    }
    100% {
        height: 96px;
        opacity: 1;
    }
}

@keyframes mob-dropdown-animate {
    0% {
        height: 0;
        opacity: 1;
    }
    100% {
        height: 96px;
        opacity: 1;
    }
}

@media (max-width: 767px) {
    /*
    #navbar-header {}
    .logo-main {
    width: calc(100% - 72px);
    text-align: center;
}
    */
}

/*@media only screen (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {*/

@media only screen and (min-height: 600px) and (min-width: 768px) and (orientation: portrait) {
}

/******** iPhone Fixes ********/

/* iPhone 8 with notch */

@media only screen and (device-width: 375px) and (device-height: 667px) and (-webkit-device-pixel-ratio: 2) {
}

/* iPhone X with notch */

@media only screen and (width: 375px) and (-webkit-device-pixel-ratio: 3) {
}

/* iPhone XR with notch */

@media only screen and (width: 414px) and (-webkit-device-pixel-ratio: 2) {
}

/* iPhone XS Max with notch */

@media only screen and (width: 414px) and (-webkit-device-pixel-ratio: 3) {
}
