/*===========================================================
 Custom Variable
============================================================*/
:root {
    /* Hamber menu icon style */
    --hamWidth: 40px;
    --hamHeight: 4px;
    --hamMargin: 6px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate: 10px;
    /* summation of --hamMargin adn --hamHeight */
    --hamTranslate3: -10px;
    /*  */
    --header-height: 0;
    /*  */
    --yellow: #f1c40f;
    --white: #fff;
    --black: #000;
    --blue: #3464bc;
    --bluetransparent: rgb(52 100 188 / 40%);
    --hamBg: var(--blue);

    --xxxl: 100px;
    --xl: 46px;
    --lg2: 36px;
    --lg: 29px;
    --md: 23px;
    --md2: 20px;
    --xs: 18px;
    --xxs: 16px;
    /* padding */
    --sectionPadding: 100px;
}

/*===========================================================
 Common CSS
============================================================*/

body {
    font-family: "Inter", sans-serif;
    font-size: var(--xxs);
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: normal;
    overflow-x: hidden !important;

    color: var(--black);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    padding: 0;
    margin: 0;
}

li,
li:hover,
a:hover,
.btn,
.btn:hover {
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none !important;
}

*:active,
*:focus {
    outline: none;
    border: 0;
}

img {
    max-width: 100%;
    height: auto;
}

strong {
    font-weight: 700;
}

u {
    border-bottom: 1px solid var(--white);
    line-height: 1;
    text-decoration: unset;
}

.cboth {
    overflow: hidden;
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

button {
    background-color: transparent;
    border: 0;
}

/* h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
} */

button:active,
button:focus {
    outline: 0;
    outline: 0;
}

.row {
    --gutter-x: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: calc(var(--gutter-x) * -0.5);
    margin-left: calc(var(--gutter-x) * -0.5);
}

.row > * {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-top: var(--bs-gutter-y);
}

.col {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
}

.col-6 {
    flex: 0 0 auto;
    width: 50%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

.container {
    width: 100%;
    padding-right: calc(var(--gutter-x) * 0.5);
    padding-left: calc(var(--gutter-x) * 0.5);
    margin-right: auto;
    margin-left: auto;
    max-width: 1320px;
}

/*===========================================================
 Scroll To Top
============================================================*/

.go-top {
    bottom: 15px;
    display: none;
    position: fixed;
    right: 15px;
    z-index: 999;
}

.go-top img {
    width: 35px;
    background: var(--white);
    border-radius: 50%;
    border: 1px solid var(--white);
}

.go-top span {
    /*background-color: #4285F4;*/
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    float: right;
    font-size: var(--xxs);
    font-weight: 400;
    line-height: 22px;
    padding: 5px 10px;
}

.go-top span:hover {
    color: var(--white);
}

/*===========================================================
Loader
===========================================================*/

.preloader {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--white);
    z-index: 99999999;
}

.spinner {
    width: 80px;
    height: 80px;
    border: 2px solid #f3f3f3;
    border-top: 3px solid #58b8cb;
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-animation: 1s infinite spin;
    animation: 1s infinite spin;
}

@-webkit-keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

#loading-msg {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 25px;
    text-align: center;
    color: #333;
    font-size: 0.8em;
}

/*===========================================================
 Navigation Menu Desktop
============================================================*/
.header-area {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--white);
  z-index: 10000;
  -webkit-box-shadow: 0 1px 4px 0 #666;
  box-shadow: 0 1px 4px 0 #666;
  padding: 10px 0;

  transition: .5s ease-out;
}

body.admin-bar .header-area {
  top: 32px;
}

.header-area img {
  height: 100px;
  width: auto;

  transition: .5s ease-out;
}

.fixed-header img {
  height: 60px;
}

.hide-header {
    -top: -120px !important; /* Moves the header out of view */
}

.header-area + * {
    margin-top: 120px;
}

.header {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.menu-left span {
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    color: var(--yellow);
}

.menu-left a {
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.menu {
    display: flex;
    align-items: center;
}

.menu-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.menu ul {
    margin: 0;
}

.menu ul {
    padding-left: 0 !important;
}

.menu ul ul {
    padding: 0 !important;
}

.menu ul li {
    list-style: none;
    display: inline-block;
    margin: 0 !important;
}

.menu ul li a {
    font-size: var(--xxs);
    font-weight: 400;
    line-height: 1.5;
    text-decoration: none;
    color: var(--black);
}

.contact {
    font-size: var(--xxs);
    font-weight: 600;
    line-height: 1.5;
    color: var(--black) !important;
    width: 110px;
    height: 42px;
    padding: 10px 17px;
    background-color: var(--yellow);
    border: 2px solid var(--yellow);
}

.contact:hover {
    border: 2px solid var(--yellow);
    background: var(--white);
}

.dropdown-menu {
    margin: 0 !important;
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 0.5rem 0;
    font-size: 1rem;
    list-style: none;
    background-color: var(--black);
    background-clip: padding-box;
    border-radius: 0.25rem;
    background: #f1f1f1;
    border: 1px solid #ddd !important;
    border-top: 0 !important;
}

.header-area {
    background-color: var(--white);
}

/*===========================================================
 Navigation Menu slideout
============================================================*/
main .mobileMenuOpener {
    display: none;
}

.panel-header {
    display: none;
}

.slideout-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 256px;
    min-height: 100vh;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    z-index: 0;
    display: none;

    padding: 100px 0;
}

.slideout-menu-left {
    left: 0;
}

.slideout-menu-right {
    right: 0;
}

.slideout-panel {
    position: relative;
    z-index: 1;
    background-color: var(--white);
    min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
    overflow: hidden;
}

.slideout-open .slideout-menu {
    display: block;
}

.slideout-open .slideout-menu {
    background: var(--blue);
}

.slideout-open .slideout-menu a.bttn {
    background: var(--white);
    color: var(--blue) !important;

    font-weight: bold;
}

.slideout-open .slideout-menu ul {
    display: block !important;
}

.btn-hamburger {
    cursor: pointer;
}

.menu-section-list {
    padding: 25px 10px;
}

.menu-section-list li a:hover {
    color: #bdc3c7;
}

.menu-section-list li a {
    line-height: 2;
    color: var(--white);
}

.menu-section-list li {
    display: block;
}

.btn-hamburger img {
    width: 27px;
}

/*Hamburger Menu Icon*/
/* .hamburger .line {
    width: 40px;
    height: 5px;
    background-color: #34495e;
    display: block;
    margin: 8px auto;
    transition: all 0.3s ease-in-out;
} */

.hamburger:hover {
    cursor: pointer;
}

.hamburger:hover .line {
    opacity: 0.8;
}

/*===========================================================
 Hamberger
===========================================================*/

.hamburger .line {
    width: var(--hamWidth);
    height: var(--hamHeight);
    background-color: var(--hamBg);
    display: block;
    margin: var(--hamMargin) auto;
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.hamburger:hover {
    cursor: pointer;
}

/* ONE */

.slideout-open .line:nth-child(2) {
    opacity: 0;
}

.slideout-open .line:nth-child(1) {
    -webkit-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -ms-transform: translateY(var(--hamTranslate)) rotate(45deg);
    -o-transform: translateY(var(--hamTranslate)) rotate(45deg);
    transform: translateY(var(--hamTranslate)) rotate(45deg);
}

.slideout-open .line:nth-child(3) {
    -webkit-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -ms-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    -o-transform: translateY(var(--hamTranslate3)) rotate(-45deg);
    transform: translateY(var(--hamTranslate3)) rotate(-45deg);
}

.menu ul li .dropdown-menu li {
    display: block;
    position: relative;
}

.menu ul li .dropdown-menu li a {
    padding: 10px 15px;
    line-height: 1.2;
    display: block;
}

.dropdown-menu {
    margin: 0;
    border: 0;
    border-radius: 0;
}

.dropdown a {
    position: relative;
}

.dropdown > a:hover::after {
    color: var(--black);
}

.dropdown > a::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent;
}

.bttn {
    font-size: var(--xxs);
    text-align: center;
    padding: 10px 30px;
    background-color: var(--hamBg);
    display: inline-block;
    text-decoration: none;
    letter-spacing: normal;
    font-weight: 600;
    cursor: pointer;
    color: var(--white) !important;
    border: 1px solid transparent;
}

.bttn:hover {
    color: var(--hamBg) !important;
    background-color: var(--white);
    border: 1px solid var(--hamBg);
}

.bttn-white {
    background: var(--white);
    color: var(--hamBg) !important;
    border: 1px solid transparent;
}

.bttn-white:hover {
    background-color: var(--hamBg) !important;
    color: var(--white) !important;
    border: 1px solid var(--white);
}

/*===========================================================
Banner Area
===========================================================*/
.banner-area {
    position: relative;
}

.banner-area .page-hero-image {
    width: 100%;
}

.banner-area > .container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.banner-area .page-hero-image img {
    width: 100%;
    height: auto;
	display: block;
}

.banner-area:before {
    position: absolute;
    content: "";
    /* width: 70%; */
    width: calc(100% - 585px);
    height: 410px;
    background-color: var(--hamBg);
    left: 0;
}

.banner-area:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    left: 0;
    bottom: 0;
    z-index: -2;
    background: #f1f1f1;
}

.banner-area:before,
.banner-area > .container {
    top: 50%;
    transform: translateY(-50%);
}

.banner-area > .container {
    transform: translate(-50%, -50%);
}

.banner-text {
    position: relative;
    max-width: 700px;
    width: 100%;
}

.banner-text *:not(.bttn) {
    color: var(--white) !important;
}

/* ======Banner 2==== */
.home-banner {
    position: relative;
}

.home-banner:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: var(--hamBg);
    left: 0;
    z-index: -1;
}

.home-banner-3::before {
    background: none !important;
}

/* ========home-banner-3==== */

.home-banner-3 {
    width: 100%;
    min-height: 770px;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
}

.home-banner-3 .banner-text {
    background: var(--hamBg);
    padding: 115px 90px;
    max-width: 800px;
}

.home-banner-3 .banner-text h1 {
    font-size: var(--lg);
}

/*===========================================================
Content Area
===========================================================*/
.content-area {
    padding: 150px 0;
    background-color: #f1f1f1;
}

.content-title {
    margin-bottom: 30px;
}

.content-inner {
    display: flex;
    justify-content: space-between;
}

.content-card {
    min-height: 270px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;

    margin-bottom: 35px;
}

.content-card-text {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.content-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-img:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: rgba(52, 100, 188, 0.7);
}

.content-img h3 {
    position: absolute;
    top: 0;
    margin: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 250px;
    width: 100%;

    font-size: var(--md);
    color: var(--white);
}

.content-card .content-card-text h3 {
    background: var(--hamBg);
    padding: 15px 25px;
    color: var(--white);
    margin: 0 !important;
    font-size: var(--xs);
}

.content-text {
    margin-bottom: 0 !important;
    padding: 20px;
    background-color: var(--white);
    color: var(--black);
    height: 100%;
    font-size: var(--xs);
}

/*===========================================================
Service Area
===========================================================*/
.service-area {
    position: relative;
    z-index: 50;
}

.service-area.slider-area {
    overflow: hidden;
}

.service-bg {
    padding-bottom: 200px;
    background-color: #f1f1f1;
}

.service-bg-3 {
    padding-bottom: 150px;
}

.service-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
}

.service-img {
    max-width: 530px;
    width: 100%;
}

.service-text {
    max-width: calc(100% - 610px);
    width: 100%;
}

/*===========================================================
Counter Area
===========================================================*/
.counter-area {
    background: var(--hamBg);
    padding: 125px 0;
}

.counter-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

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

.counter-text h3 {
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
    color: var(--white);
}

/* =====Counter===== */
.home-counter {
    background-color: #f1f1f1;
}

.home-counter .single-counter {
    background: var(--hamBg);
    width: calc(33.33% - 15px);
    padding: 120px 0;
}

.single-counter span,
.single-counter .counterUp {
    font-size: var(--xxxl);
    font-weight: bold;
    line-height: 1.1;
    color: var(--white);
    margin: 0 !important;
}

.glance-area {
    padding: 150px 0;
}

.glance-inner {}

.glance-title {
    margin-bottom: 30px;
}

.glance-list {
    display: flex;
    gap: 120px;
}

.glance-list ul {
    margin: 0 !important;
    column-count: 2;

    padding-left: 0 !important;
}

.glance-at .glance-list ul {
    column-count: 1;
}

.glance-list ul li {
    line-height: 1.8;
    color: var(--black);
    margin: 0 !important;
    padding-left: 20px;
    list-style: none;
    position: relative;
}

.glance-list-dots ul li:before {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--black);
}

/* ===glance-at== */

.glance-at {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.glance-at-img {
    position: absolute;
    left: 0;
    top: 70px;
}

.glance-at div {
    width: 50%;
}

.glance-at ul li {
    line-height: 2.5;
}

.glance-at ul li:before {
    position: absolute;
    content: "";
    width: 9px;
    height: 9px;
    background-color: var(--hamBg);
    border-radius: 0;
    left: 0;
    top: 16px;
}

/*===========================================================
Contact
===========================================================*/
.contact-area {
    background: var(--hamBg);
    position: relative;
    z-index: 60;
}

.contact-text {
    color: var(--white) !important;
}

.contact-text .single-form {
    display: flex;
    gap: 20px;
}

.contact-text input {
    width: 283px !important;
    height: 42px !important;
    padding: 0 13px !important;
    background: transparent !important;
    border: solid 1px var(--white) !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
    color: var(--white) !important;
}

.contact-text ::-webkit-input-placeholder {
    font-size: 16px;
    line-height: 1.5;
    color: var(--white) !important;
}

.contact-text ::-moz-placeholder {
    font-size: 16px;
    line-height: 1.5;
    color: var(--white);
}

.contact-text :-ms-input-placeholder {
    font-size: 16px;
    line-height: 1.5;
    color: var(--white);
}

.contact-text :-moz-placeholder {
    font-size: 16px;
    line-height: 1.5;
    color: var(--white);
}

.contact-text button {}

.contact-inner {
    position: relative;
    padding: 50px 0;
}

.contact-img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;

    max-width: 500px;
    width: 100%;
}

.form-group {
    display: block;
    margin-bottom: 25px;
}

.form-group input {
    padding: 0 !important;
    height: initial !important;
    width: initial !important;
    margin-bottom: 0 !important;
    /* display: none !important; */
    cursor: pointer !important;
}

.form-group label {
    position: relative;
    cursor: pointer;
}

.form-group label:before {
    content: "";
    -webkit-appearance: none;
    background-color: transparent;
    padding: 9px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 15px;
    border: solid 1px var(--white);
    margin-top: -2px;
}

.form-group input:checked + label:after {
    content: "";
    display: block;
    position: absolute;
    top: 4px;
    left: 8px;
    width: 4px;
    height: 9px;
    border: solid var(--white);
    border-width: 0 1px 1px 0;
    transform: rotate(45deg);
}

/* =====================call-back-area================ */
.call-back-area {
    background: var(--hamBg);
    padding: var(--sectionPadding) 0;
}

.call-back {
    text-align: center;
    max-width: 690px;
    margin-left: auto;
    margin-right: auto;
}

.call-back h3,
.call-back h6 {
    color: var(--white);
}

.call-back .bttn {
    margin-top: 20px;
}

.social-contact {
    display: flex;
    justify-content: space-between;
}

.social-contact-area {
    background: #f1f1f1;
    padding: 70px 0;
}

.social-contact a {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 13px;
    color: var(--black);
    font-weight: 400;
}

.social-contact a i {
    font-size: 44px;
    color: #3464bc;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    padding: 70px 0;
}

/* ==========================Home 3===================== */
.menu-nav-area {
    background-color: #f1f1f1;
    padding: 30px 0;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-right a {
    display: inline-block;
    font-size: var(--xxs);
    color: #0264c9;
}

.header-right a:first-child {
    font-size: var(--md2);
}

.menu-nav-inner {
    position: relative;
}

.menu-nav-inner .bttn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.parades {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px 0;
}

.parades div {
    width: calc(50% - 15px);
    display: flex;
}

.leistungen li {
    text-transform: uppercase;
    position: unset !important;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: var(--xs);
    padding: 20px 0 !important;
    border-bottom: 1px solid #aaa;
}

.leistungen li img {
    width: 37px;
}

.leistungen .glance-list {
    display: flex;
    gap: 20px;
}

.glance-list ul {
    width: 100%;
}

.hmbg {
    color: var(--hamBg);
}

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

.leistungen .glance-title {
    margin-bottom: 60px;
}

.service-slider .slick-list {
    overflow: visible;
}

.service-slider {
    align-items: flex-start;
    position: relative;
    z-index: 40;
}

.slider-text {
    /* max-width: 585px; */
    max-width: calc(100% - 650px);
    width: 100%;
    height: 100%;
    padding-left: 100px;
    position: absolute;
    left: 650px;
    z-index: 20;
    background: #fff;

    padding-top: 25px;
}

.slider-text::before {
    position: absolute;
    content: "";
    background: #fff;
    left: 100%;
    width: 50%;
    height: 100%;
}

.slider {
    /* max-width: calc(100% - 585px); */
    max-width: 650px;
    width: 100%;
    position: relative;
    z-index: 11;
}

.slider:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 290px;
    background: var(--hamBg);
    top: 0;
    left: 0;
}

.service-area.service-bg-3:after {
    background: none;
}

.slider-area:after {
    position: absolute;
    content: "";
    width: 40%;
    height: 290px;
    background: var(--hamBg);
    left: 0;
    top: 150px;
    z-index: 1;
}

/* .service-area:before {
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    background: #000;
    right: 0;
    top: 150px;
    z-index: 21;
} */
.slider-arrows {
    position: absolute;
    top: 30px;
    right: 90px;
}

.slider-inner {
    padding-top: 60px;
}

.slider-inner div {
    padding: 20px;
}

.slider-arrows {
    display: flex;
    gap: 30px;
}

.slick-arrow {
    cursor: pointer;
}

/* =====================Footer============ */
.footer-right {
    width: 45%;
}

.footer-menu {
    display: flex;
    gap: 165px;
}

.footer-menu ul li {
    list-style: none;
}

.footer-menu ul li a {
    text-decoration: none;
    display: inline-block;
    color: #000;
    font-weight: 400;
}

.footer-bttm {
    padding: 20px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bttm p {
    margin-bottom: 0;
}

.footer-bttm ul {
    padding: 0;
    margin: 0;
}

.footer-bttm ul li {
  margin: 0 !important;
}

.footer-logo a {
    display: flex;
}

/*===========================================================
 Responsive Menu
===========================================================*/
@media (min-width: 1400px) {}

@media (min-width: 992px) {
    .dropdown:hover > a + .dropdown-menu {
        display: block;
    }

    .dropdown-menu .dropdown-menu {
        position: absolute;
        left: 100%;
        top: 0;
    }

    .dropdown .dropdown > a::after {
        transform: rotate(-90deg);
        margin-top: -4px;
    }
}

@media (max-width: 991px) {
    #main {
        padding-top: 0;
    }

    .header-area {
        display: none;
    }

    .mobile-logo {
        width: 65px;
    }

    .dropdown-menu {
        padding-top: 0;
    }

    .menu ul li .dropdown-menu li {
        padding-left: 10px;
    }

    .menu ul li .dropdown-menu li a {
        padding-left: 0;
        padding-right: 0;
    }

    .dropdown-menu {
        width: 100%;
        background-color: transparent;
        background-clip: padding-box;
        border: none !important;
        position: unset;
        top: unset;
    }

    main .mobileMenuOpener {
        display: block;
        position: absolute;
        width: 20px;
        height: 100%;
        z-index: 10;
    }

    .menu ul li {
        display: block;
    }

    .menu ul li a {
        color: var(--white);
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        line-height: 2;
    }

    .menu ul li .dropdown-menu li a {
        line-height: 2;
    }

    .dropdown > a::after {
        right: 10px;
        position: absolute;
        top: 50%;
        margin-top: -1px;
    }

    /*Menu Activation*/
    .panel-header {
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--white);
        box-shadow: 0px 1px 3px #eee;
        padding: 10px 15px;
    }
}

/*===========================================================
Containers
============================================================*/

@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1320px !important;
    }
}

/*===========================================================
Responsive
============================================================*/
@media (max-width: 1399px) {
    .contact-img {
        max-width: 550px;
        width: 100%;
    }

    .service-text {
        max-width: calc(100% - 570px);
    }

    .glance-area {
        padding: 100px 0;
    }

    .counter-area {
        padding: 100px 0;
    }

    .home-banner:before {
        width: 50% !important;
        z-index: 1;
    }

    .banner-text {
        position: relative;
        z-index: 10;
    }

    .slider {
        max-width: 550px;
    }

    .slider-text {
        max-width: calc(100% - 550px);
        padding-left: 60px;
    }
}

@media (max-width: 1199px) {
    :root {
        --xxxl: 80px;
        --xl: 37px;
        --lg2: 29px;
        --lg: 23px;
        --md: 18px;
        --md2: 16px;
        --xs: 15px;
        --xxs: 15px;
        /* padding */
        --sectionPadding: 60px;
    }

    .glance-at ul li::before {
        top: 20px;
    }

    .banner-area {
        min-height: 450px;
    }

    .banner-area .page-hero-image,
    .banner-area .page-hero-image img {
        height: 100%;
        min-height: 450px;
    }

    .banner-area .page-hero-image {
        position: absolute;
        z-index: -1;
    }

    .banner-area .container {
      padding-top: 50px;
    }

    .banner-area .container:has(.google-bewertungen-halter) {
      padding-bottom: 75px;
    }

    .banner-area .page-hero-image img {
        object-fit: cover;
        object-position: center right;
    }

    .banner-area::before {
        /* width: calc(100% - 435px); */
        width: 65%;
    }

    .home-banner .banner-text {
        max-width: 450px;
    }

    .home-banner-3 .banner-text {
        max-width: 600px !important;
    }

    .content-area {
        padding: 100px 0;
    }

    .service-img {
        max-width: 470px;
    }

    .service-text {
        max-width: calc(100% - 500px);
        width: 100%;
    }

    .glance-area {
        padding: 100px 0;
    }

    .service-bg {
        padding-bottom: 150px;
    }

    .contact-img {
        max-width: 478px;
        width: 100%;
    }

    .slider {
        max-width: 500px;
    }

    .slider-text {
        max-width: calc(100% - 500px);
        padding-left: 60px;
    }

    .slider-area:after {
        top: 100px;
    }
}

@media (max-width: 991px) {
    :root {
        --xxxl: 60px;
        --xl: 32px;
        --lg2: 24px;
        --lg: 20px;
        --md: 17px;
        --md2: 16px;
        --xs: 15px;
        --xxs: 15px;
        --sectionPadding: 50px;
    }

    .banner-area::before {
        width: 100%;
        height: 100%;
        background: rgba(52, 100, 188, 0.7);
    }

    .home-banner.banner-area::before {
        width: 100% !important;
    }

    .home-banner-3 .banner-text {
        padding: 50px;
    }

    .content-card {
        max-width: calc(33% - 5px);
        min-height: 200px;
    }

    .service-inner {
        flex-direction: column;
    }

    .home-banner-3 {
        min-height: 450px;
        padding: 60px 0;
    }

    .service-text {
        max-width: 100%;
        width: 100%;
        margin-top: 30px;
    }

    .service-img {
        max-width: 100%;
    }

    .service-img img {
        width: 100%;
    }

    .content-area {
        padding: 70px 0;
    }

    .glance-area {
        padding: 70px 0;
    }

    .glance-list ul li {
        line-height: 1.6;
        padding-bottom: 10px;
    }

    .glance-at ul li::before {
        top: 13px;
    }

    .contact-img {
        position: unset;
        right: 0;
        top: 0;
        transform: unset;
        display: flex;
    }

    .counter-area {
        background: var(--hamBg);
        padding: 100px 0;
    }

    .contact-inner {
        position: relative;
        padding: 100px 0;
    }

    .contact-img {
        max-width: 100%;
        width: 100%;
    }

    .contact-img img {
        width: 100%;
    }

    .contact-text {
        margin-top: 50px;
    }

    .content-card {
        max-width: calc(33% - 5px);
        min-height: 200px;
    }

    .content-inner {
        flex-wrap: wrap;
        gap: 10px 0;
    }

    .content-text {
        padding: 15px;
    }

    .glance-at .glance-list {
        width: 67%;
    }

    .glance-at .glance-title {
        width: 30%;
    }

    .glance-at {
        justify-content: space-between;
    }

    .social-contact {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 20px 0;
    }

    .social-contact a i {
        font-size: 36px;
        color: #3464bc;
        width: 40px;
    }

    .footer-right {
        width: 100%;
    }

    .footer-inner {
        flex-direction: column;
        gap: 45px;
    }

    .footer-logo a {
        width: 200px;
    }

    .slider-area:after {
        top: 70px;
        width: 100%;
        left: 0;
        right: 0;
    }

    .slider {
        max-width: 100%;
    }

    .slider:before {
        display: none;
    }

    .counter-area.home-counter {
        background: #f1f1f1;
    }

    .home-counter .single-counter {
        padding: 100px 0;
    }

    .footer-menu {
        gap: 100px;
    }

    .slider-text {
        padding-left: 0;
    }

    .slider-text::before {
        display: none;
    }

    .glance-list-dots ul li:before {
        top: 10px;
    }
}

@media (max-width: 767px) {
    :root {
        --xxxl: 45px;
        --xl: 32px;
        --lg2: 24px;
        --lg: 20px;
        --md: 17px;
        --md2: 16px;
        --xs: 15px;
        --xxs: 15px;
        --sectionPadding: 50px;
    }

    .content-card {
        max-width: calc(50% - 5px);
        min-height: 200px;
    }

    .glance-at .glance-list {
        width: 100%;
    }

    .glance-at .glance-title {
        width: 100%;
    }

    .glance-at {
        flex-direction: column;
    }

    .parades div {
        width: calc(50% - 10px);
        display: flex;
    }

    .parades {
        gap: 20px 0;
    }

    .footer-menu {
        gap: 30px;
    }

    .slider-inner div {
        padding: 10px;
    }

    .glance-list ul {
        column-count: 1;
    }

    .footer-logo img {
        width: 120px;
    }
}

@media (max-width: 575px) {
    :root {
        --xxxl: 50px;
        --xl: 32px;
        --lg2: 24px;
        --lg: 20px;
        --md: 17px;
        --md2: 16px;
        --xs: 15px;
        --xxs: 15px;
        --sectionPadding: 50px;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .content-card {
        max-width: 100%;
        min-height: 200px;
    }

    .counter-inner {
        flex-direction: column;
        gap: 25px 0;
    }

    .glance-list ul {
        column-count: 1;
    }

    .contact-text .single-form {
        flex-direction: column;
    }

    .contact-text input {
        width: 100%;
    }

    .parades div {
        width: 49%;
        display: flex;
    }

    .parades {
        gap: 20px 0;
    }

    .home-counter .single-counter {
        width: 100%;
    }

    .home-banner-3 .banner-text {
        padding: 20px;
    }
}
