/* FONTS */

@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/ubuntu-v20-latin-regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Ubuntu';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/ubuntu-v20-latin-700.woff2') format('woff2');
    font-display: swap;
}


/* VARIABLES & TYPO */

:root {
    --primary: #B0D236;
    --secondary: #226b46;
    /*--accent: #6F8E00;*/
    --accent: #4E6C00;
    --dark: #222222;
    --antrazit: #555555;
    --light: #fff;
    --light-gray: #F5F7F5;
}

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

html,
body
{
    font-family: "Ubuntu", sans-serif;
    width: 100%;
    /* height: 100%; */
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button, input, textarea {
    font-family: "Ubuntu", sans-serif;
}

p {
    margin: 0 0 40px;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.55;
}

hr.line {
    margin: 40px 0;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media(max-width: 900px) {
    p {
        font-size: 16px;
        margin: 0 0 20px;
    }
}

.big {
    font-size: 120%;
}

p.big {
    font-size: 26px;
}

@media(max-width: 900px) {
    p.big {
        font-size: 21px;
    }
}

p.center {
    text-align: center;
}

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

p.max.center {
    margin-left: auto;
    margin-right: auto;
}

p a:not(.btn) {
    color: var(--dark);
}

main ul {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    font-size: 19px;
}

main ul li {
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 5px;
    padding-left: 20px;
    line-height: 1.4;
    list-style: none;
}

main ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 1px;
}

main ul li:last-child {
    padding-bottom: 0;
}

main ul.checkboxes li {
    padding-left: 35px;
}

main ul.checkboxes li:before {
    content: '\ea41';
    width: 23px;
    height: 23px;
    font-family: 'boxicons';
    font-size: 22px;
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 0;
    color: #fff;
    /* background: linear-gradient(135deg, var(--primary), var(--secondary)); */
    background: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
}

main ul.big.checkboxes li:before {
    top: 2px;
}

@media(max-width: 900px) {
    main ul li {
        font-size: 16px;
    }
    main ul li:before {
        width: 8px;
        height: 8px;
    }
    main ul li:before {
        top: 4px;
    }
    main ul.checkboxes li:before {
        width: 20px;
        height: 20px;
        font-size: 18px;
    }
    main ul.checkboxes li:before {
        top: 0;
    }
}

main ol {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    font-size: 19px;
    counter-reset: cayas-counter;


}
main ol li {
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 5px;
    padding-left: 30px;
    line-height: 1.4;
    list-style: none;
    counter-increment: cayas-counter;
}
main ol li:before {
    content: counter(cayas-counter);
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: var(--secondary);
    color: var(--primary);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}
main ol li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

/* list-style-8 */
ul.list-style-8 {
    list-style: none;
    padding: 30px;
    margin: 0 0 40px;
    background: var(--light-gray);
    border-radius: 10px;
}

ul.list-style-8 li {
    position: relative;
    padding: 10px 0;
    margin: 0;
    line-height: 1.8;
    
    list-style: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.04);
}

ul.list-style-8 li a {
    color: var(--antrazit);
    text-decoration: none;
}

ul.list-style-8 li:last-child {
    border-bottom: 0;
}

ul.list-style-8 li span {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--secondary);
    font-size: 13px;
    letter-spacing: .2px;
}

ul.list-style-8 li:before {
    display: none;
}



h1,h2,h3,h4, .h1, .h2, .h3, .h4 {
    margin-bottom: 40px;

    span {
        color: var(--antrazit);
    }
}

@media(max-width: 767px) {
    h1,h2,h3,h4, .h1, .h2, .h3, .h4 {
        margin-bottom: 20px;
    }
}

h1.center,h2.center,h3.center,h4.center, .h1.center, .h2.center, .h3.center, .h4.center {
    text-align: center;
}
h1.nomargin,h2.nomargin,h3.nomargin,h4.nomargin, .h1.nomargin, .h2.nomargin, .h3.nomargin, .h4.nomargin, p.nomargin {
    margin-bottom: 5px;
}

h1, .h1 {
    font-size: 70px;
    line-height: 1.1;
    color: var(--dark);
}

@media(max-width: 900px) {
    h1, .h1 {
        font-size: 50px;
    }
}

@media(max-width: 400px) {
    h1, .h1 {
        font-size: 32px;
    }
}


h2, .h2 {
    font-size: 50px;
    line-height: 1.2;
    color: var(--dark);
}

@media(max-width: 900px) {
    h2, .h2 {
        font-size: 35px;
    }
}
@media(max-width: 400px) {
    h2, .h2 {
        font-size: 30px;
    }
}

h3, .h3 {
    font-size: 30px;
    line-height: 1.2;
    color: var(--dark);
}

@media(max-width: 900px) {
    h3, .h3 {
        font-size: 25px;
    }
}

@media(max-width: 400px) {
    h3, .h3 {
        font-size: 20px;
    }
}

h4, .h4 {
    font-size: 20px;
    line-height: 1.2;
    color: var(--dark);
}

@media(max-width: 900px) {
    h4, .h4 {
        font-size: 18px;
    }
}

@media(max-width: 400px) {
    h4, .h4 {
        font-size: 18px;
    }
}

.subtitle {
    font-size: 18px;
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

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

.subtitle.small {
    font-size: 16px;
}

@media(max-width: 900px) {
    .subtitle {
        font-size: 16px;
    }
    .subtitle.small {
        font-size: 14px;
    }
}
@media(max-width: 400px) {
    .subtitle {
        font-size: 14px;
    }

    .subtitle.small {
        font-size: 12px;
    }
}

.subtitle.light {
    color: #fff;
}

.subtitle.green {
    color: var(--primary);
}

.subtitle.card {
    align-self: stretch; 
    word-wrap: break-word;
    margin-bottom: 0px;
    text-shadow: 0 0 10px #2020207d;
}

section {
    position: relative;
}

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

.container--pd-sm {
    padding: 80px 0;
}

@media(max-width: 1290px) {
    .container--pd {
        padding: 150px 20px;
    }
}

@media(max-width: 900px) {
    .container--pd {
        padding: 70px 1rem;
    }

    .container--pd-xl {
        padding: 90px 1rem;
    }
}

.container--pd-bottom {
    padding-top: 0;
}
.container--pd-top {
    padding-bottom: 0;
}
.container--pd-none {
    padding-top: 0;
    padding-bottom: 0;
}

.container--wd, .container {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    /* padding: 0 1rem; */
}

.container--wide {
    max-width: 88%;
}

/* Header for subpages */

.container--subpage-header {
    padding: 120px 0 40px 0;
}

@media(max-width: 1290px) {
    .container--subpage-header  {
        padding: 120px 20px 40px 20px;
    }
}

@media(max-width: 900px) {
    .container--subpage-header  {
        padding: 70px 1rem;
    }
}

.container {
    padding: 0 1rem;
}

.pt {
    margin-top: 50px;
}
.pb {
    margin-bottom: 50px;
}

.pb-25 {
    margin-bottom: 25px;
}

@media(min-width: 1290px) {
    .container {
        padding: 0 0;
    }
}

.container--small {
    max-width: 920px;
}

.nomargin {
    margin-bottom: 20px;
}

.white {
    color: #fff;
}

.bg-gradient {
    background: -o-linear-gradient(135deg,
    #1B6942,
    #B0D236);
    background: linear-gradient(135deg,
    #1B6942,
    #B0D236);
}

.lightgreen {
    background: var(--light-gray);
}

.bg-gradient p a:not(.btn) {
    color: #fff;
}

.cl-white {
    color: #fff;
}
.cl-white h2, .cl-white h3, .cl-white h4, .cl-white p {
    color: #fff;
}

/* RIPPLE EFFECT */

.ripple-effect {
    position: relative;
    overflow: hidden;
    transform: translatez(0);
}
.ink {
    display: block;
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    transform: scale(0);
}
.ink {
    background: var(--primary);
    opacity: .3;
}

.btn.accent .ink {
    background: var(--secondary);
    opacity: .3;
}

.ink.animate {
    animation: ripple-effect 0.5s linear;
}

@keyframes ripple-effect {
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}
@-webkit-keyframes ripple-effect {
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}
@-moz-keyframes ripple-effect {
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}
@-ms-keyframes ripple-effect {
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}
@-o-keyframes ripple-effect {
    100% {
        opacity: 0;
        transform: scale(2.5);
    }
}


/* GRID */

.row {
    display: flex;
    flex-wrap: wrap;
    margin-left: -17.5px;
    margin-right: -17.5px;
}

[class*="col-"] {
    padding-left: 17.5px;
    padding-right: 17.5px;
    box-sizing: border-box;
    order: 1;
}

.row_smallgutter {
    margin-left: -6px;
    margin-right: -6px;
}
.row_smallgutter [class*="col-"] {
    padding-left: 6px;
    padding-right: 6px;
}

/* Mobile-first (col-1 to col-12) */
.col-1  { flex: 0 0 8.333%;  max-width: 8.333%;  }
.col-2  { flex: 0 0 16.667%; max-width: 16.667%; }
.col-3  { flex: 0 0 25%;     max-width: 25%;     }
.col-4  { flex: 0 0 33.333%; max-width: 33.333%; }
.col-5  { flex: 0 0 41.667%; max-width: 41.667%; }
.col-6  { flex: 0 0 50%;     max-width: 50%;     }
.col-7  { flex: 0 0 58.333%; max-width: 58.333%; }
.col-8  { flex: 0 0 66.667%; max-width: 66.667%; }
.col-9  { flex: 0 0 75%;     max-width: 75%;     }
.col-10 { flex: 0 0 83.333%; max-width: 83.333%; }
.col-11 { flex: 0 0 91.667%; max-width: 91.667%; }
.col-12 { flex: 0 0 100%;    max-width: 100%;    }

/* Medium (â‰¥767px) */
@media (min-width: 767px) {
    .col-md-1  { flex: 0 0 8.333%;  max-width: 8.333%;  }
    .col-md-2  { flex: 0 0 16.667%; max-width: 16.667%; }
    .col-md-3  { flex: 0 0 25%;     max-width: 25%;     }
    .col-md-4  { flex: 0 0 33.333%; max-width: 33.333%; }
    .col-md-5  { flex: 0 0 41.667%; max-width: 41.667%; }
    .col-md-6  { flex: 0 0 50%;     max-width: 50%;     }
    .col-md-7  { flex: 0 0 58.333%; max-width: 58.333%; }
    .col-md-8  { flex: 0 0 66.667%; max-width: 66.667%; }
    .col-md-9  { flex: 0 0 75%;     max-width: 75%;     }
    .col-md-10 { flex: 0 0 83.333%; max-width: 83.333%; }
    .col-md-11 { flex: 0 0 91.667%; max-width: 91.667%; }
    .col-md-12 { flex: 0 0 100%;    max-width: 100%;    }
}

/* Large (â‰¥1200px) */
@media (min-width: 1200px) {
    .col-lg-1  { flex: 0 0 8.333%;  max-width: 8.333%;  }
    .col-lg-2  { flex: 0 0 16.667%; max-width: 16.667%; }
    .col-lg-3  { flex: 0 0 25%;     max-width: 25%;     }
    .col-lg-4  { flex: 0 0 33.333%; max-width: 33.333%; }
    .col-lg-5  { flex: 0 0 41.667%; max-width: 41.667%; }
    .col-lg-6  { flex: 0 0 50%;     max-width: 50%;     }
    .col-lg-7  { flex: 0 0 58.333%; max-width: 58.333%; }
    .col-lg-8  { flex: 0 0 66.667%; max-width: 66.667%; }
    .col-lg-9  { flex: 0 0 75%;     max-width: 75%;     }
    .col-lg-10 { flex: 0 0 83.333%; max-width: 83.333%; }
    .col-lg-11 { flex: 0 0 91.667%; max-width: 91.667%; }
    .col-lg-12 { flex: 0 0 100%;    max-width: 100%;    }
}

/* order */
@media (min-width: 767px) {
    .order-md-1  { order: 1; }
    .order-md-2  { order: 2; }
    .order-md-3  { order: 3; }
    .order-md-4  { order: 4; }
}

@media (min-width: 1200px) {
    .order-lg-1  { order: 1; }
    .order-lg-2  { order: 2; }
    .order-lg-3  { order: 3; }
    .order-lg-4  { order: 4; }
}

/* offset offset-lg-2 and so on */
@media (min-width: 767px) {
    .offset-md-1  { margin-left: 8.333%;  }
    .offset-md-2  { margin-left: 16.667%; }
    .offset-md-3  { margin-left: 25%;     }
    .offset-md-4  { margin-left: 33.333%; }
    .offset-md-5  { margin-left: 41.667%; }
    .offset-md-6  { margin-left: 50%;     }
    .offset-md-7  { margin-left: 58.333%; }
    .offset-md-8  { margin-left: 66.667%; }
    .offset-md-9  { margin-left: 75%;     }
    .offset-md-10 { margin-left: 83.333%; }
    .offset-md-11 { margin-left: 91.667%; }
    .offset-md-12 { margin-left: 100%;    }
}

@media (min-width: 1200px) {
    .offset-lg-1  { margin-left: 8.333%;  }
    .offset-lg-2  { margin-left: 16.667%; }
    .offset-lg-3  { margin-left: 25%;     }
    .offset-lg-4  { margin-left: 33.333%; }
    .offset-lg-5  { margin-left: 41.667%; }
    .offset-lg-6  { margin-left: 50%;     }
    .offset-lg-7  { margin-left: 58.333%; }
    .offset-lg-8  { margin-left: 66.667%; }
    .offset-lg-9  { margin-left: 75%;     }
    .offset-lg-10 { margin-left: 83.333%; }
    .offset-lg-11 { margin-left: 91.667%; }
    .offset-lg-12 { margin-left: 100%;    }
}



/* BUTTONS */
.btn {
    color: var(--dark);
    text-decoration: none;
    padding: 17px 30px;
    font-size: 16px;
    letter-spacing: .3px;
    border: 0;
    border-radius: 10px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    isolation: isolate;
}

@media(max-width: 900px) {
    .btn {
        padding: 16px 20px;
        font-size: 14px;
    }
}

.btn.accent {
    background: var(--primary);
}

.btn.accent:hover {
    box-shadow: 0px 5px 13px #0000002e;
}

.btn.outline {
    background: transparent;
    color: var(--accent);
    outline: 2px solid #a4a4a444;
    outline-offset: -1px;
}

.btn.outline:hover {
    background: var(--primary);
    box-shadow: 0px 5px 13px #0000002e;
    outline: none;
    color: var(--dark);
}

.btn.outline-light {
    background: transparent;
    color: white;
    outline: 1px solid #ffffff;
    outline-offset: -1px;
}

.btn.outline-light:hover {
    background: white;
    /*box-shadow: 0px 5px 13px #0000002e;*/
    outline: none;
    color: var(--dark);
}

.btn.ghost {
    color: #fff;
    background: transparent;
    border: 2px solid #ffffff44;
}

.btn.light {
    background: transparent;
    color: var(--accent);
    border: 2px solid #a4a4a444;
}

.btn.ghost:hover {
    box-shadow: 0px 1px 2px #0000002e;
}

.btn.light:hover {
    box-shadow: 0px 1px 2px #0000002e;
}

.btn.center {
    display: block;
    width: fit-content;
    margin: 0 auto;
}


button.readmore {
    background: transparent;
    color: var(--dark);
    border: 0;
    padding: 0 10px 10px 0;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    opacity: .7;
    margin: 0;
}

button.readmore i {
    padding-right: 5px;
    font-size: 20px;
    position: relative;
    top: 3px;
    color: var(--primary);
}

.readmore-content {
    display: none;
}

.readmore-content.active {
    display: block;
}

button.readmore:hover {
    opacity: 1;
}


/* Images */

figure img {
    width: 100%;
    display: block;
    height: auto;
}

.img-block {
    display: block;
    width: 100%;
    height: auto;
}

.img-max {
    margin: 0 auto;
    max-width: 80%;
}

.img-gray {
    filter: grayscale(100%);
}


/* Toggles */
.toggle {
    position: relative;
    display: block;
    border-bottom: 1px solid var(--light-gray);
}

.toggles .toggle:last-child {
    border-bottom: 0;
}

.toggle button {
    display: flex;
    justify-content: space-between;
    background: transparent;
    margin: 0;
    border: 0;
    width: 100%;
    text-align: left;
    padding: 20px 0;
    font-size: clamp(17px, 2vw, 21px);
    font-weight: 700;
    cursor: pointer;
    color: var(--dark);
}

.toggle button i {
    color: var(--primary);
    transition: all 0.6s ease-in-out;
    position: relative;
    transform-origin: center;
    line-height: 1;
}

.toggle-content {
    display: none;
}

.toggle-content.active {
    display: block;
}

.toggle button.active i {
    transform: rotate(45deg);
}

/* Aufzählung / Biglist */

main ol.biglist {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: cayas-counter;
}

main ol.biglist li {
    position: relative;
    margin-bottom: 10px;
    line-height: 1.4;
    list-style: none;
    counter-increment: cayas-counter;
    font-size: 20px;
    background-color: rgba(0, 0, 0, 0.04);
    border-radius: 10px;
    padding: 32px 32px 32px 104px;

}

ol.biglist li:before {
    content: counter(cayas-counter);
    position: absolute;
    left: 40px;
    top: 40px;
    background: none;

/*    width: 50px;*/
/*    height: 50px;*/
/*    background: var(--primary);*/
/*    background: linear-gradient(135deg, var(--primary), var(--secondary));*/
/*    border-radius: 50%;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
    font-weight: 800;
    font-size: 48px;
/*    border-radius: 100%;*/
}


/*Link Card*/

.link-card{
    flex: 1 1 0; 
    height: 476px; 
    padding-left: 32px; 
    padding-right: 32px; 
    padding-top: 40px; 
    padding-bottom: 40px; 
    position: relative; 
    background: #D9D9D9; 
    overflow: hidden; 
    border-radius: 15px; 
    flex-direction: column; 
    justify-content: flex-end; 
    align-items: center; 
    gap: 20px; 
    display: inline-flex
}

/* TOPBAR */

header.scrolled .top-navbar-overlay {
    top: -50px;
}

.top-navbar-overlay {
    background-color: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: top 0.6s ease-in-out;
    text-transform: uppercase;
    font-weight: 700;
}

.top-navbar-container {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    padding: 0.5rem 1rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.top-navbar-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 0.25rem;
    font-size: .9rem;
    color: white;
}

.top-navbar-item i {
    font-size: 1.5rem;
}


/* HEADER */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.6s ease-in-out, padding-top 0.6s ease-in-out;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
}

.nav-logo {
    text-decoration: none;
}

.nav-logo img {
    width: 200px;
    height: auto;
    position: relative;
    padding-top: 20px;
    transition: all 0.6s ease-in-out;
}

header.scrolled .nav-logo img {
    padding-top: 10px;
    width: 150px;
}

@media only screen and (max-width: 900px) {
    .nav-logo img {
        width: 140px;
        margin-right: 2rem;
    }

    header.scrolled .nav-logo img {
        width: 100px;
    }
}

@media only screen and (max-width: 440px) {
    .nav-logo img {
        width: 110px;
        margin-right: 0;
    }

    header.scrolled .nav-logo img {
        width: 90px;
    }
}


/* NAVIGATION */

.main-navbar-wrapper {
    width: 100%;
    padding-top: 50px;
    transition: padding-top 0.6s ease-in-out;
}

header.scrolled .main-navbar-wrapper {
    padding-top: 0;
}

.main-navbar-container {
    max-width: 1250px;
    width: 100%;
    padding: 0 1rem;
    /* px-4 */
    margin: 0 auto;
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

@media(min-width: 1290px) {
    .main-navbar-container {
        padding: 0;
    }
}


.main-navbar-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

.main-navbar-menu {
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0;
    padding: 0;
}

.main-navbar-menu li {
    position: relative;
    cursor: pointer;
    list-style: none;
}

.main-navbar-menu li a {
    color: rgba(255, 255, 255, 0.8);
    /* assuming 'text-light' means light text */
    letter-spacing: 1.3px;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    padding: 20px;
}

@media only screen and (min-width: 901px) {

    .main-navbar-menu li:after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 50%;
        transform: translateY(-50%) scale(0);
        width: 34px;
        height: 34px;
        z-index: -1;
        border-radius: 100%;
        background: transparent;
        border: 3px solid rgba(255, 255, 255, 0.1);
        opacity: 0;
        transition: all 0.6s ease-in-out;
    }

    .main-navbar-menu li:hover:after {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    .main-navbar-menu li.current:after {
        opacity: 1;
        transform: translateY(-50%) scale(1);
        border-color: rgba(0, 0, 0, 0.1);
    }

    .main-navbar-menu li:has(ul) button {
        background: transparent;
        border: 0;
        color: rgba(255, 255, 255, 0.8);
    }

    .main-navbar-menu li:hover a, .main-navbar-menu li.current a {
        color: #fff;
    }

    .main-navbar-menu ul.sub-menu {
        position: absolute;
        top: 0;
        left: 20px;
        background: #fff;
        border-radius: 0.375rem;
        box-shadow: 0px 5px 13px #0000002e;
        display: none;
        width: 200px;
    }

    .main-navbar-menu li:hover ul.sub-menu {
        display: block;
        top: 35px;
    }

    .main-navbar-menu ul.sub-menu:before {
        content: '';
        position: absolute;
        top: -16px;
        left: 22px;
        transform: translateX(-50%);
        border-width: 10px;
        border-style: solid;
        border-color: transparent transparent #fff transparent;
    }

    .main-navbar-menu ul.sub-menu li {
        cursor: pointer;
        color: var(--dark);
        list-style: none;
        padding: 0;
    }

    .main-navbar-menu ul.sub-menu li a {
        color: var(--dark);
        text-decoration: none;
        font-size: 14px;
        font-weight: 700;
        padding: 10px 20px;
        display: block;
    }

    .main-navbar-menu ul.sub-menu li a:hover {
        color: var(--primary);
    }
}

.main-navbar-actions {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}

.main-navbar-button {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    min-height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0;
    /* assuming 'border-primary' */
    background-color: var(--primary);
    /* bg-primary */
    color: black;
    border-radius: 0.375rem;
    box-shadow: 0px 5px 13px #0000002e;
    cursor: pointer;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 700;
}

.main-navbar-button i {
    display: none;
}

#switchlang, #menubtn {
    color: #fff;
    border: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    height: 44px;
    width: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
}

#switchlang i {
    transition: all 0.6s cubic-bezier(0.075, 0.82, 0.165, 1)
}

.langwrap {
    position: relative;
}

.langwrap:has(.active) #switchlang i {
    transform: rotate(180deg);
}

.langwrap ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 0.375rem;
    box-shadow: 0px 5px 13px #0000002e;
    display: none;
}

.langwrap ul.active {
    display: block;
}

#menubtn {
    display: none;
}

.langwrap ul:before {
    content: '';
    position: absolute;
    top: -16px;
    left: 22px;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
}

.langwrap ul li {
    cursor: pointer;
    color: var(--dark);
    list-style: none;
    padding: 0;
}

.langwrap ul li:first-child a {
    border-bottom: 1px solid #eee;
}

.langwrap ul li a {
    color: var(--dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 20px;
    display: block;
}

.langwrap ul li a.current {
    color: var(--primary);
}


/* HERO SECTION */

.hero-section-content {
    max-width: 100%;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 100px;
}

.hero-section-content p {
    color: var(--light);
}

.hero-section-title {
    max-width: 800px;
    font-size: 70px;
    /* text-5xl */
    font-weight: 700;
    line-height: 1;
    color: #fff;
    margin-top: 0.5rem;
}

.hero__img {
    position: absolute;
    right: 0;
    bottom: -16rem;
    z-index: 10;
}

.hero__img img {
    width: 100%;
    max-width: 550px;
    height: auto;
}

.img_shadow {
    filter: drop-shadow(0px 19px 25px rgba(73,73,73,0.5));
}

.hero--main {
    overflow: hidden;
}

.hero--line {
    position: absolute;
    bottom: 6rem;
    width: 100%;
    max-width: 800px;
    z-index: 9;
    pointer-events: none;
}

.hero--line svg {
    overflow: inherit;
    width: 100%;
}

.hero--main {
    position: relative;
    overflow: hidden;
}

.hero-section-cont {
    position: relative;
    z-index: 5;
}

.hero--circle1 {
    position: absolute;
    left: -100px;
    bottom: -100px;
    width: 600px;
    height: auto;
    aspect-ratio: 1/1;
    background: var(--primary);
    opacity: .2;
    border-radius: 50%;
    pointer-events: none;
}

.hero--circle2 {
    position: absolute;
    pointer-events: none;
    right: -100px;
    top: -300px;
    width: 500px;
    height: auto;
    aspect-ratio: 1/1;
    border: 50px solid var(--primary);
    opacity: .2;
    border-radius: 50%;
}

.hero-section-description {
    /* text-lg */
    font-weight: 400;
    color: #fff;
    margin-top: 4rem;
    margin-bottom: 7rem;
    max-width: 500px;
}

.hero-section-button {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border: 2px solid #d1d5db;
    /* border-gray-300 */
    color: #f5f5f5;
    border-radius: 0.375rem;
    background: transparent;
    cursor: pointer;
}

@media only screen and (max-width: 1400px) {
    .hero__img img {
        width: 100%;
        max-width: 40vw;
    }

    .hero--line {
        width: 57vw;
    }
}

@media only screen and (max-width: 1300px) {
    .hero__img img {
        width: 100%;
        max-width: 46vw;
    }
}

@media only screen and (max-width: 1200px) {
    .hero-section-content {
        max-width: 490px;
    }

    .hero__img img {
        width: 100%;
        max-width: 48vw;
    }

    .hero--line {
        bottom: 83px;
    }

    .hero--line-serv {
        bottom: -56px;
    }
}

@media only screen and (max-width: 900px) {
    .hero-section-content {
        padding-top: 120px;
        padding-bottom: 0;
        max-width: 660px;
    }

    .hero-section-title {
        margin-bottom: 0;
        font-size: 50px;
    }

    .hero-section-description {
        margin: 20px 0 40px;
    }

    .hero__img {
        text-align: center;
        width: 85%;
        position: relative;
        bottom: 0;
        margin-bottom: -170px;
        margin-top: 50px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__img img {
        width: 100%;
        max-width: 400px;
    }

    .hero--circle1 {
        left: -202px;
        bottom: -100px;
        width: 418px;
    }

    .hero--circle2 {
        right: -256px;
        top: -188px;
        width: 476px;
    }
}

@media only screen and (max-width: 525px) {
    .hero-section-title {
        font-size: 40px;
    }
}

/* Hero Small */
.hero--small {
    padding-bottom: 30px;
    padding-top: 230px;
    color: #fff;
}

.hero--small h1 {
    color: #fff;
    margin: 0 0 10px;
}

.hero--small .hero-section-container {
    max-width: 900px;
}

/* Hero Medium */
.hero--medium {
    overflow: visible;
}

.hero--medium .hero--circle1 {
    bottom: inherit;
    top: -120px;
    width: 540px;
}

.hero--medium .hero--circle2 {
    top: 80px;
    width: 370px;
}

.hero--medium .hero--medium-title {
    max-width: 1000px;
    color: #fff;
}

.hero--medium .hero-section-content svg {
    position: absolute;
    bottom: 0px;
    width: 140%;
}

@media only screen and (max-width: 1200px) {
    .hero--medium .hero-section-content svg {
        bottom: 30px;
        width: 150%;
    }
}
@media only screen and (min-width: 1500px) {
    .hero--medium .hero-section-content svg {
        bottom: 30px;
        width: 160%;
    }
}
@media only screen and (min-width: 1900px) {
    .hero--medium .hero-section-content svg {
        bottom: 30px;
        width: 180%;
    }
}

@media only screen and (max-width: 700px) {
    .hero--medium .hero-section-content svg {
        display: none;
    }
}

.hero--medium .hero-section-content {
    padding-top: 80px;
    padding-bottom: 0;
    max-width: 100% !important
}

.hero--medium .hero-section-content h1, .hero--medium .hero-section-content p {
    max-width: 78vw;
}


@media(max-width: 766px) {
    .hero--medium .hero-section-content h1, .hero--medium .hero-section-content p {
        max-width: 100%;
    }
}

.hero--medium img {
    position: absolute;
    right: 80px;
    width: calc(100% - 75vw);
    top: 240px;
    object-fit: cover;
    aspect-ratio: 4 / 6;
    height: auto;
    border-radius: 30px;
    box-shadow: 0px 30px 25px #0000002f;
    z-index: 5;
}

.imagehero img {
    position: relative;
    border-radius: 30px;
    box-shadow: 0px 30px 25px #0000002f;
    overflow: hidden;
    margin-bottom: 50px;
    max-width: 100%;
    height: auto;
}


@media only screen and (max-width: 1000px) {
    .hero--medium img {
        top: inherit;
        bottom: -40px;
    }
}

@media only screen and (max-width: 700px) {
    .hero--medium img {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        border-radius: 20px;
        bottom: 0;
    }
}

.hero__img_overflow {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 80%;
    bottom: 0;
    z-index: 2;
    pointer-events: none;

}

.hero__img_overflow img {
    right: 0;
    width: 40%;
    height: auto;
    position: absolute;
    bottom: 0;
    aspect-ratio: 1/2;
    object-fit: cover;
    height: 70%;
}

/* Quoter */
.quoter blockquote {
    padding: 80px 0;
    /*margin-top: 40px;*/
    display: block;
    font-size: 40px;
    color: var(--antrazit);
    line-height: 1.5;
    max-width: 800px;
    position: relative;
}

@media(max-width: 900px) {
    .quoter blockquote {
        font-size: 30px;
    }
}
@media(max-width: 500px) {
    .quoter blockquote {
        font-size: 22px;
    }
}

.quoter blockquote strong {
    color: var(--dark);
}

.quoter blockquote i {
    font-size: 50px;
    color: var(--primary);
    margin-right: 20px;
    position: absolute;
    top: 40px;
    left: -25px;
}

@media(max-width: 900px) {
    .quoter blockquote i {
        font-size: 40px;
        left: 0;
    }
}

/* Circle */

.green-circle-right, .green-circle-left {
    position: relative;
}

.green-circle-right:before, .green-circle-left:before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 30px solid var(--primary);
    background: transparent;
    opacity: .2;
}

.green-circle-left:before {
    right: inherit;
    left: -100px;
    width: 400px;
    height: 400px;
    border: 50px solid var(--primary);
}

.quoter.green-circle-left {
    padding-left: 500px;
}

@media(max-width: 1200px) {
    .quoter.green-circle-left {
        padding-left: 0;
    }

    .green-circle-left:before {
        left: -50px;
        width: 300px;
        height: 300px;
        border: 30px solid var(--primary);
    }
}


/* BRAND SLIDER */

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

.brand-slide img {
    width: 150px;
    height: 60px;
    object-fit: contain;
    object-position: center;
    margin: 0 auto;
}

.swiper-wrapper-brand {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    display: none;
}

.swiper-button-next i, .swiper-button-prev i {
    font-size: 30px;
    color: var(--dark);
    padding: 0;
    min-width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand--cont {
    position: relative;
    padding: 0 3rem;
}

.light-color {
    color: var(--antrazit);
}


/* Image SLider */

.imageslider {
    position: relative;
}

.imageslider img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9;
    display: block;
    margin: 0;
}

.imageslider_next, .imageslider_prev {
   text-shadow: 0 0 20px #00000081;
}

.imageslider_next i, .imageslider_prev i {
    color: #fff;
}


/* fullwidthimage */
.fullwidthimage {
    position: relative;
    width: 100%;
    aspect-ratio: 16/7;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

@media(max-width: 900px) {
    .fullwidthimage {
        aspect-ratio: 16/11;
    }
}


/* TEASER SLIDER */

main .teaserslider, .teaserslider .swiper-wrapper, .swiper-container-wrapper:has(.teaserslider) {
    overflow: visible;
}


.app-slide {
    width: 100%;
    position: relative;
    aspect-ratio: 2/3;
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, scale 0.2s ease !important;
    box-shadow: 0 10px 30px rgba(38, 38, 38, 0.2);
    will-change: box-shadow;
}

.app-slide:hover {
  box-shadow: 0 15px 50px rgba(38, 38, 38, 0.5);
  scale: 1.03;
}

.app-slide-background{
    width: 100%;
    height: 256px;
    left: 0px;
    bottom: 0px;
    position: absolute;
    background: linear-gradient(180deg, rgba(38, 38, 38, 0) 0%, rgba(38, 38, 38, 0.30) 30%, rgba(38, 38, 38, 0.60) 100%)
}

.slide-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
    background: rgba(0, 0, 0, 0.4);
}

.slide-text {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 40px 30px 40px 30px;
    align-self: stretch; 
    flex-direction: column; 
    justify-content: flex-start; 
    align-items: flex-start; 
    display: flex; 
    /*background: -webkit-gradient(linear, left top, left bottom, from(rgb(38 38 38 / 0%)), to(rgb(38 38 38 / 60%)));
    background: -o-linear-gradient(rgb(38 38 38 / 0%), rgb(38 38 38 / 60%));
    background: linear-gradient(rgb(38 38 38 / 0%), rgb(38 38 38 / 60%));*/
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
    width: 100%;
    pointer-events: none;
}

.slide-text-nogradien {
    position: absolute;
    top: 0;
    left: 0;
    padding: 40px 20px;
    z-index: 5;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
    width: 100%;
    pointer-events: none;
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(0 0 0 / 70%)), to(rgb(0 0 0 / 0%)));
    background: -o-linear-gradient(rgb(0 0 0 / 70%), rgb(0 0 0 / 0%));
    background: linear-gradient(rgb(0 0 0 / 70%), rgb(0 0 0 / 0%));
    color: #fff;
}

.slide-text-nogradien h4, .slide-text-nogradien h3 {
    color: #fff;
}

.reference-card.dark .slide-text-nogradien {
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(0 0 0 / 90%)), to(rgb(0 0 0 / 0%)));
    background: -o-linear-gradient(rgb(0 0 0 / 90%), rgb(0 0 0 / 0%));
    background: linear-gradient(rgb(0 0 0 / 90%), rgb(0 0 0 / 0%));
    padding-bottom: 200px;
}

.slide-heading {
    color: var(--light);
    font-size: 22px;
    /*max-width: 100%;*/
    width: 88%;
    margin-top: 10px;
    line-height: 1.3;
    align-self: stretch; 
    word-wrap: break-word;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
    margin-bottom: 0;
    text-shadow: 0 0 10px #2020207d;
}

@media(max-width: 900px) {
    .slide-heading {
        font-size: 20px;
    }
}

.slide-paragraph {
    color: var(--light);
    font-size: 16px;
    margin-top: 0;
    line-height: 1.4;
    width: 100%;
    -webkit-transition: all .6s;
    -o-transition: all .6s;
    transition: all .6s;
}

.button-round {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: var(--primary);
    background: linear-gradient(156deg, rgba(176, 210, 54, 1) 0%, rgba(128, 159, 14, 1) 100%);
    border-radius: 50%;
    cursor: pointer;
    transition: all .6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.button-round i {
    position: absolute;
    right: 45px;
    bottom: 45px;
    color: var(--dark);
    font-size: 30px;
}

.app-slide:hover .button-round {
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

.reference-card:hover .button-round {
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

.slide-icon {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: var(--primary);
    background: linear-gradient(156deg, rgba(176, 210, 54, 1) 0%, rgba(128, 159, 14, 1) 100%);
    border-radius: 50%;
    cursor: pointer;
    transition: all .6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.slide-icon i {
    position: absolute;
    right: 45px;
    bottom: 45px;
    color: var(--dark);
    font-size: 30px;
}

.app-slide:hover .slide-icon {
    width: 130%;
    height: 110%;
    border-radius: 0;
    background: rgba(176, 210, 54, .8);
}

.app-slide:hover .slide-text {
    background: none;
}

/*löschen.app-slide:hover .subtitle,
.app-slide:hover .slide-heading,
.app-slide:hover .slide-paragraph {
    color: var(--dark);
}*/

.slide-text:has(p.slide-paragraph) > h3.slide-heading {
    margin-bottom: 10px;
}

.swiper-container-wrapper {
    margin-top: 50px;
}


.agency-section {
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-items: center;
}

.agency-section__content {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    font-size: 20px;
    color: var(--dark);
    margin: 40px 0;
    line-height: 1.4;
}

.circle1 {
    position: absolute;
    bottom: -4vw;
    left: -4vw;
    width: 15vw;
    height: 15vw;
    border: 40px solid var(--primary);
    border-radius: 50%;
    -webkit-filter: blur(30px);
    filter: blur(30px);
    opacity: .5;
    pointer-events: none;
    will-change: transform;
}

.circle2 {
    position: absolute;
    top: 0;
    right: -13vw;
    width: 15vw;
    height: 15vw;
    border: 50px solid var(--primary);
    border-radius: 50%;
    -webkit-filter: blur(30px);
    filter: blur(30px);
    opacity: .7;
    pointer-events: none;
    will-change: transform;
}

.circle3 {
    position: absolute;
    bottom: -4vw;
    right: 0;
    width: 10vw;
    height: 10vw;
    border: 40px solid var(--primary);
    border-radius: 50%;
    -webkit-filter: blur(30px);
    filter: blur(30px);
    opacity: .5;
    pointer-events: none;
    will-change: transform;
}

.bottom--shap, .bottom--shape {
    position: absolute;
    bottom: -1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 300px;
    height: 40px;
    background: #fff;
    border-radius: 2rem 2rem 0 0;
    pointer-events: none;
}

.agency-section--heading {
    max-width: 25ch;
    width: 100%;
}


/* Portfolio */
ul.portfolio-filter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-top: 40px;
    margin-bottom: 30px;
}

ul.portfolio-filter li {
    cursor: pointer;
    list-style: none;
    padding: 0;
    margin: 0;
}

ul.portfolio-filter li:before {
    display: none;
}

ul.portfolio-filter li a {
    color: var(--antrazit);
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    padding: 10px 20px;
    display: block;
    position: relative;
}

@media(max-width: 900px) {
    ul.portfolio-filter {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0px;
    }

    ul.portfolio-filter li a {
        padding: 10px 10px;
        font-size: 15px;
    }
}

ul.portfolio-filter li a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 26px;
    height: 26px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.6s ease-in-out;
}

ul.portfolio-filter li:hover a:after {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

ul.portfolio-filter li.active a {
    color: var(--secondary);
}

ul.portfolio-grid {
    display: flex;
}
ul.portfolio-grid li {
    position: relative;
    width: 100%;
    list-style: none;
}
ul.portfolio-grid li:before {
    display: none;
}

ul.portfolio-grid li div {
    background: #fff;
    overflow: hidden;
    border-radius: 5px;
}

ul.portfolio-grid li img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    width: 80%;
    margin: 0 auto;
    display: block;
    filter: grayscale(.8);
}

ul.portfolio-grid li:hover img {
    filter: grayscale(0);
}

.portfolio-grid.fade-out {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.portfolio-grid.fade-in {
  opacity: 1;
  transition: opacity 0.6s ease;
}

.grid-item {
  transition: opacity 0.1s ease, transform 0.1s ease;
  opacity: 1;
  transform: scale(1);
}

.grid-item.hide {
  opacity: 0;
  transform: scale(0.95);
}

.grid-item.show {
  opacity: 1;
  transform: scale(1);
}


/* Formular */

.contact-form {
    display: block;
}

.contact-form input, .contact-form textarea {
    border: 2px solid var(--light-gray);
    background: var(--light-gray);
    padding: 15px 20px;
    width: 100%;
    display: block;
    font-size: 18px;
    color: var(--dark);
    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 20px;
    transition: border-color 0.6s ease-in-out;
}
.contact-form input:focus,
.contact-form textarea:focus{
    border-color: var(--primary);
    outline: none;
}

.form-check {
    display: flex;
    position: relative;
}

.form-check input {
    display: none;
}

.form-check label {
    display: block;
    border: 2px solid var(--light-gray);
    padding: 20px 20px 20px 50px;
    width: 100%;
    border-radius: 5px;
    cursor: pointer;
}

.form-check label:before {
    content:"";
    position: absolute;
    left: 10px;
    top: 15px;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.04);
}

.form-check:has(input:checked) label:after {
    content:"";
    position: absolute;
    left: 10px;
    top: 15px;
    width: 30px;
    height: 30px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" style="fill: rgba(0, 0, 0, 1);transform: ;msFilter:;"><path d="m10 15.586-3.293-3.293-1.414 1.414L10 18.414l9.707-9.707-1.414-1.414z"></path></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.form-check a {
    color: var(--dark);
}

#contact-us-button {
    margin-top: 20px;
}

/* Referenceheader */
.referenceheader {
    position: relative;
    background: var(--primary);
    background: linear-gradient(156deg, rgba(176, 210, 54, 1) 0%, rgba(128, 159, 14, 1) 100%);
    color: #fff;
}

.referenceheader + .breadcrumbs-section {
    margin-bottom: 90px;
}


.referenceheader:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background: var(--primary);
    background: linear-gradient(180deg, #000 0%, #00000000 100%);
    opacity: 0.7;
}

.referenceheader h1 {
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.referenceheader img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: #fff;
    object-fit: contain;
    margin-bottom: 20px;
    box-shadow: 0px 5px 13px #0000002e;
}

.referenceheader .padding-seventeen-lr {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 180px;
    padding-bottom: 20%;
}

.cover-background {
    background-size: cover !important;
}

@media(max-width: 767px) {
    .sm-height-300px {
        height: 400px !important;
    }

    .referenceheader .padding-seventeen-lr {
        padding-top: 10%;
        padding-bottom: 10%;
    }
}


.number div:first-child {
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    gap: 5px;
}

.number div:first-child strong {
    background: var(--secondary);
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-right: 10px;
    border-radius: 100%;
}

/* reference-nav */
.reference-nav {
    background: var(--light-gray);
    padding: 20px 0;
}

.blog-nav-home:hover {
    color: var(--primary);
}

.reference-nav .flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-nav-link {
    padding: 30px 0;
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    position: relative;
}

.blog-nav-home {
    font-size: 30px;
    color: var(--secondary);
    padding: 15px;
}

.blog-nav-link-prev {
    padding-left: 50px;
}

.blog-nav-link-next {
    padding-right: 50px;
}

.blog-nav-link span {
    display: block;
    font-size: 12px;
    letter-spacing: .2px;
    color: var(--dark);
    margin-bottom: 4px;
    text-transform: uppercase;
}

.blog-nav-link a {
    display: block !important;
    text-decoration: none;
    color: var(--antrazit);
    font-weight: 700;
}

.blog-nav-link a:hover {
    color: var(--accent);
}

.blog-nav-link-prev i, .blog-nav-link-next i {
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    position: absolute;
    color: var(--antrazit);
    font-size: 23px;
}

.blog-nav-link-prev i {
    left: 0;
}
.blog-nav-link-next i {
    right: 0;
}


/* Blog Übersicht */
.portfolio-filter-tab-1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    padding: 0;
    list-style: none;
}

.portfolio-filter-tab-1 li {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: rgb(255, 255, 255);
    border-radius: 20px;
    transition: background-color 0.2s ease, scale 0.2s ease !important;
}

.portfolio-filter-tab-1 li:hover {
    background-color: #F4F7F5;
    border-radius: 20px;
    scale: 1.03;
}

.portfolio-filter-tab-1 li:active {
    background-color: var(--accent);
    border-radius: 24px;
    scale: 1.1;
}


.portfolio-filter-tab-1 li:before {
    display: none;
}

.portfolio-filter-tab-1 li a {
    color: var(--antrazit);
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    padding: 10px 20px;
    display: block;
    position: relative;
}

.portfolio-filter-tab-1 li a:focus {
    color: var(--light);
    background-color: var(--primary);
    border-radius: 20px;
}

/*.portfolio-filter-tab-1 li a:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 26px;
    height: 26px;
    aspect-ratio: 1/1;
    border-radius: 100%;
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: all 0.6s ease-in-out;
}
.portfolio-filter-tab-1 li:hover a:after {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}
.portfolio-filter-tab-1 li.active a {
    color: var(--secondary);
}*/

@media(max-width: 900px) {
    .portfolio-filter-tab-1 {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0px;
    }

    .portfolio-filter-tab-1 li a {
        padding: 10px 10px;
        font-size: 15px;
    }
}

/* Blog */

pre {
    background-color: #F4F7F5;
    padding: 40px 24px;
    border-radius: 16px;
    margin: 40px 0px;
    font-size: 16px;
    overflow-x: auto;
}

.add {
    background-color: #F4F7F5;
    padding: 8%;
    border-radius: 16px;
    margin-bottom: 24px;
}

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

.blog-post {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    background: var(--light-gray);
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, scale 0.2s ease !important;
    box-shadow: rgb(130 130 130 / 22%) 3px 16px 30px 8px;
    /*box-shadow: 0 10px 30px rgba(38, 38, 38, 0.2);*/
    will-change: box-shadow;
}

.blog-post:hover {
  box-shadow: 20px 20px 50px 0px rgb(38 38 38 / 29%);
  /*box-shadow: 0 15px 50px rgba(38, 38, 38, 0.5);*/
  scale: 1.03;
}

.blog-post.light {
    background: #fff;
}

.blog-post .post-author {
    color: var(--dark);
    opacity: .7;
    margin-bottom: 10px;
    display: block;
    font-size: 14px;
    font-weight: 500;
}

.blog-post img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-post .post-details {
    padding: 32px;
}

.blog-post .post-details a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    font-size: 24px;
    display: block;
    margin-bottom: 10px;
}

.blog-post .post-details .author {
    color: var(--antrazit);
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.3;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding-bottom: 10px;
}

.blog-post .post-details p {
    color: var(--dark);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
}

.blogauthor {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    background: -o-linear-gradient(294deg, rgba(176, 210, 54, 1) 0%, rgba(128, 159, 14, 1) 100%);
    background: linear-gradient(156deg, rgba(176, 210, 54, 1) 0%, rgba(128, 159, 14, 1) 100%);
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 80px;
}

@media(max-width: 900px) {
    .blogauthor {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.blogauthor img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--light-gray);
}

.social-icon-style-6 ul {
    display: flex;
    gap: 5px;
    margin-top: 10px;
    margin-bottom: 20px;
    justify-content: center;
    align-items: center;
}

.social-icon-style-6 li {
    list-style: none;
    padding: 0;
}

.social-icon-style-6 li:before {
    display: none;
}

.social-icon-style-6 li a {
    color: #fff;
    font-size: 20px;
    display: inline-block;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    display: block;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 38px;
}

.social-icon-style-6 li a:hover {
    background: var(--secondary);
    color: #fff;
}

.social-icon-style-6.dark ul li a {
    background: var(--secondary);
}
.social-icon-style-6.dark ul li a:hover {
    background: var(--primary);
    color: #fff;
}

.blogfooter {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding-top: 40px;
    margin-top: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.tag-cloud a {
    color: var(--dark);
    text-decoration: none;
    font-size: 14px;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 5px;
    transition: background-color 0.3s ease-in-out;
    font-weight: 700;
}

.tag-cloud a:hover {
    background: var(--secondary);
    color: #fff;
}

.blogauthor h4 {
    color: #fff;
    margin: 0 0 5px;
}

.singleblog-content video,
.singleblog-content .gist {
    margin: 0 0 40px;
}

.singleblog-content img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 40px !important;
    display: inline-block;
}

@media(max-width: 900px) {
    .singleblog-content video, 
    .singleblog-content .gist  {
        margin: 0 0 20px;
    }
}

.singleblog-content h2 {
    color: var(--secondary);
    margin-top: 80px;
}

.singleblog-content h2:has(+h3){
    margin-bottom: 10px;
}

.singleblog-content ul li:has(a) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 10px 0;;
}

.singleblog-content ul li:has(a):before {
    display: none;
}

.singleblog-content ul li:has(a) a {
    text-decoration: none;
    color: var(--dark);
    opacity: .7;
}

.singleblog-content ul li:has(a) a:hover {
    color: var(--secondary);
    opacity: 1;
}

.singleblog-content ul li:has(a) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 10px 0;;
}

.singleblog-content ol li:has(a):before {
    display: none;
}

.singleblog-content ol li:has(a) a {
    text-decoration: none;
    color: var(--dark);
    opacity: .7;
}

.singleblog-content ol li:has(a) a:hover {
    color: var(--secondary);
    opacity: 1;
}


.masonry-container {
  position: relative;
}

.masonry-container > div {
  position: absolute;
  transition: transform 0.6s ease, opacity 0.6s ease;
  will-change: transform;
}

.masonry-hidden {
  opacity: 0 !important;
  pointer-events: none;
}


/* Slider Referenz */
.swiper-slider-second {
    position: relative;
    overflow: hidden;
}

.swiper-slider-second .swiper-button-prev {
    left: 0;
}
.swiper-slider-second .swiper-button-next {
    right: 0;
}

.swiper-slider-second .swiper-slide {
    padding: 0 100px;
}

.swiper-slider-second .swiper-slide .inner {
    display: flex;
    gap: 40px;
    align-items: center;
}

.swiper-slider-second .swiper-slide .inner img {
    width: 200px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 100%;
    border: 2px solid var(--light-gray);
}

.swiper-slider-second .swiper-slide .inner p {
    margin-bottom: 10px;
    font-size: 18px;
}

.swiper-slider-second .swiper-slide .inner span {
    color: var(--antrazit);
    font-size: 15px;
}

/* Icon + Text Card */
.icon-text-card {
    padding: 40px 16px;
    background: #F4F7F5;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
}

/* REASONS */

.reasons-section--heading {
    text-align: center;
}

.reason-card {
    padding: 48px 40px;
    background: #F4F7F5;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 40px;
}

.reason-card.light {
    background: #fff;
}

.reason-card__icon {
    width: 50px;
    height: 50px;
    background: -o-linear-gradient(294deg, rgba(176, 210, 54, 1) 0%, rgba(128, 159, 14, 1) 100%);
    background: linear-gradient(156deg, rgba(176, 210, 54, 1) 0%, rgba(128, 159, 14, 1) 100%);
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: auto;
}

.reason-card__icon i {
    font-size: 25px;
    color: var(--light);
}

.reason-card__title {
    text-align: center;

    font-size: 25px;
    line-height: 1.1;
    margin: 20px 0;
}

.reason-card__desc {
    margin: 0;
}

.reasons-section--heading {
    max-width: 25ch;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.reason-card a {
    text-decoration: none;
}

.reason-card:has(a):hover {
    background: var(--primary);
    background: linear-gradient(156deg, rgba(176, 210, 54, 1) 0%, rgba(128, 159, 14, 1) 100%);
}

.reason-card:has(a):hover h3 {
    color: var(--light);
}

.reason-icon:hover {
    transition: scale 0.2s ease;
} 


/* TESTIMONIALS */

.testimonial-image-box {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    filter: grayscale(1);
}

.testimonial-image-box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.testimonial-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
    gap: 40px;
}

.testimonial-icon-image {
    position: relative;
}

.testimonial-icon {
    position: absolute;
    right: -20px;
    top: -25%;
    z-index: 2;
}

.testimonial-icon i {
    font-size: 80px;
    color: var(--primary);
}

.testimonial-container figure blockquote {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 1.5rem;
}

.testimonial-container figcaption {
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
}

.testimonial-container figcaption span {
    display: block;
    font-weight: 400;
}

.testimonial-author {

    font-weight: 600;
    color: var(--dark);
    font-size: 22px;
}

.testimonial-position {

    font-weight: 400;
    color: var(--dark);
    font-size: 20px;
    margin-top: 5px;
}

@media(max-width: 900px) {
    .testimonial-container figure blockquote {
        font-size: 20px;
        text-align: center;
    }

    .testimonial-image-box {
        width: 120px;
        height: 120px;
    }

    .testimonial-icon i {
        font-size: 60px;
    }

    .testimonial-container figcaption {
        font-size: 16px;
    }
}


/* GREEN SECTIONS */

.app-dev-section {
    padding-left: 0;
    padding-right: 0;
}

.app-dev-content-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    position: relative;
}

.app-dev-image-section img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.app-dev-text-section {
    background: -o-linear-gradient(315deg,
    #226b46,
    #2d7848,
    #3b8448,
    #4b9148,
    #5c9d46,
    #70a944,
    #84b541,
    #9bc03d);
    background: linear-gradient(135deg,
    #226b46,
    #2d7848,
    #3b8448,
    #4b9148,
    #5c9d46,
    #70a944,
    #84b541,
    #9bc03d);
    padding: 7rem 7rem;
    position: relative;
    overflow: hidden;
}

.app-dev-text-inner {
    max-width: 630px;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    margin: auto;
    color: var(--light);
}

.app-dev-text-section .h3, .app-dev-text-section .h2, .app-dev-text-section p a {
    color: var(--light);
}


/* Text-Image-Component*/

.service-section-light {
    padding: 7rem 0rem;
    position: relative;
    overflow: hidden;
}

.service-section-text {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-start;
    margin: auto;
    color: var(--dark);
}

.service-content-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 0.8fr 1.2fr;
    grid-template-columns: 0.8fr 1.2fr;
    position: relative;
    margin: 0px 7rem;
    gap: 7rem;
    max-width: 1250px;
    align-items: center;
}

.service-content-wrapper-reverse {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1.2fr 0.8fr;
    grid-template-columns: 1.2fr 0.8fr;
    position: relative;
    margin: 0px 7rem;
    gap: 7rem;
    max-width: 1250px;
    align-items: center;
}

@media (max-width: 1290px) {
    .service-content-wrapper {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    margin: 0px 2rem;
    gap: 3rem;  
    }
.service-content-wrapper-reverse {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    margin: 0px 3rem;
    gap: 4rem;
}
}


.agency-circle1 {
    position: absolute;
    bottom: -3vw;
    left: -7vw;
    width: 15vw;
    height: 15vw;
    border-radius: 50%;
    border: 40px solid var(--primary);
    opacity: .2;
    z-index: 1;
}

.agency-circle2 {
    position: absolute;
    top: -3vw;
    right: -7vw;
    width: 15vw;
    height: 15vw;
    border-radius: 50%;
    border: 40px solid var(--primary);
    opacity: .2;
    z-index: 1;
}

.app-dev-container {
    position: relative;
}


/* REFERENZEN */

.reference-card {
    margin-bottom: 30px;
    width: 100%;
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.reference-card a {
    text-decoration: none;
    color: var(--dark);
}

.reference-card h4 {
    margin: 0
}

.reference-card p {
    margin: 0
}

.reference-image {
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(38, 38, 38, 0.2);
    will-change: box-shadow;
    transition: box-shadow 0.2s ease, scale 0.2s ease !important;
}

.reference-image:hover {
  box-shadow: 0 15px 50px rgba(38, 38, 38, 0.5);
  scale: 1.03;
}

.reference-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.reference-card a:hover .slide-icon {
    width: 130%;
    height: 110%;
    border-radius: 0;
    background: rgba(176, 210, 54, .7);
}


.reference-card.training p {
    margin: 10px 0
}

.job-training-card {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    background: var(--light-gray);
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow 0.2s ease, scale 0.2s ease !important;
    box-shadow: rgb(130 130 130 / 22%) 3px 16px 30px 8px;
    /*box-shadow: 0 10px 30px rgba(38, 38, 38, 0.2);*/
    will-change: box-shadow;
}

.job-training-card:hover {
  box-shadow: 20px 20px 50px 0px rgb(38 38 38 / 29%);
  /*box-shadow: 0 15px 50px rgba(38, 38, 38, 0.5);*/
  scale: 1.03;
}

.job-training-details {
    padding: 32px;
}

.job-training-details p {
    font-size: 16px;
    line-height: 1.6;
}

.job-training-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.training-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
    margin-top: 14px;
}

.img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    height: 80%
}

.img-container img {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-img {
    object-fit: contain !important;
}

.reference-card.training h4 {
    font-size: 22px;
}

.reference-tags {
    margin-top: 10px;
    margin-bottom: 40px;
}


.reference-tags span {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1px;
    margin-right: 5px;
    margin-bottom: 5px;
    text-decoration: none;
}


/* BLOG SLIDER */

.blog-slide {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    background: #F4F7F5;
    overflow: hidden;
}

.blog-image-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.blog-user {
    color: var(--dark);
    opacity: .5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    font-size: 16px;
}

.blog-user i {
    font-size: 20px;
}

.blog-content {
    position: relative;
    padding: 5rem 3rem;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.blog-btn-wrapper a {
    background: var(--primary);
}

.blog-title {

    font-size: 30px;
    color: var(--dark);
}

.blog-description {
    font-size: 20px;
    opacity: .6;
}

.blog-slider-wrapper {
    position: relative;
}

.swiper-button-next-m {
    position: absolute;
    right: -5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
    font-size: 50px;
}

.swiper-button-prev-m {
    position: absolute;
    left: -5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
    font-size: 50px;
}


/* CTA */

.cta-container {
    width: 100%;
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: .7fr 1fr;
    grid-template-columns: .7fr 1fr;
}

.cta-image-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.cta-content {
    background: -o-linear-gradient(315deg,
    #226b46,
    #2d7848,
    #3b8448,
    #4b9148,
    #5c9d46,
    #70a944,
    #84b541,
    #9bc03d);
    background: linear-gradient(135deg,
    #226b46,
    #2d7848,
    #3b8448,
    #4b9148,
    #5c9d46,
    #70a944,
    #84b541,
    #9bc03d);

    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    padding: 5rem;
    color: #fff;
}

.cta-content.white {
    background: #fff;
    color: var(--dark);
}

.cta-heading {
    color: var(--light);
    line-height: 1;
}


/* FOOTER */
.footer {
    background: var(--light-gray);
    padding: 0 1rem;
}


.footer-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-brand a i {
    color: var(--dark);
    font-size: 40px;
    margin-left: 10px;
    opacity: .5;
}

.footer-brand a:hover i {
    color: var(--secondary);
    opacity: 1;
}

.footer-logo {
    max-width: 170px;
    text-decoration: none;
}

.footer-logo img {
    width: 100%;
    height: auto;
    position: relative;
    top: 8px;
}

.footer-columns {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 30px 1fr 30px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0;
}

.footer-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.footer-links a {
    padding: 10px 0;
    border-bottom: 1px solid #d1d5db;
    font-size: 18px;

    color: var(--dark);
    text-decoration: none;
    opacity: .8;
}

.footer-links a:last-child {
    border: none;
}

.footer-headline {
    font-size: 20px;
    font-weight: 700;
    color: var(--antrazit);
    margin-bottom: 20px;
}

.footer-address {
    font-size: 18px;
    color: var(--dark);
    opacity: .7;
    margin-top: 5px;
    line-height: 1.6;
}

.footer-contact-links {
    margin-top: 30px;
    margin-bottom: 30px;
}

.footer-contact-links a {
    display: block;
    width: fit-content;
    color: var(--secondary);
    text-decoration: none;
    font-size: 18px;
    padding-top: 10px;
    font-weight: 700;
}

.footer-about p {
    font-size: 18px;
    color: var(--dark);
    line-height: 1.5;
    margin: 0 0 10px;
}

.footer-awards img {
    width: 100%;
    height: auto;
    max-width: 300px;
    margin-top: 20px;
}

.footer-awards div {
    -ms-flex-line-pack: center;
    align-content: center;
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 20px 1rem;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
    color: var(--antrazit);
    line-height: 1.4;
}

.footer-legal a {
    text-decoration: none;
    color: var(--dark);
}

@media (max-width: 900px) {
    .footer-columns {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-contact, .footer-services {
        margin-bottom: 50px;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: center;
    }

    .footer-copy {
        order: 2;
        margin-top: 20px;
    }
}

@media (max-width: 490px) {
    .footer-brand {
        flex-direction: column;
        align-items: center;
    }

    .footer-brand a i {
        margin-left: 0;
        margin-top: 10px;
    }

    .footer-logo img {
        margin-bottom: 20px;
    }

    .footer-socials {
        display: flex;
        justify-content: center;
        width: 100%;
        gap: 10px;
    }

    .footer-socials a {
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 2px solid rgba(0, 0, 0, 0.1);
        border-radius: 10px;
        text-decoration: none;
    }

    .footer-socials a i {
        margin: 0;
    }


}

/* Breadcrumbs */

.breadcrumbs-wrapper {
    background: var(--light-gray);
    padding: 16px 1rem;
}

.breadcrumbs-navigation {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 5px;
    font-size: 90%;
    color: var(--dark);
}

.breadcrumbs-navigation a {
    color: var(--dark);
    text-decoration: none;
}

.breadcrumbs-current {
    font-weight: 700;
}

@media only screen and (max-width: 700px) {
    .breadcrumbs-navigation {
        font-size: 80%;
    }
}

@media only screen and (max-width: 570px) {
    .breadcrumbs-navigation {
        font-size: 70%;
        gap: 1px;
    }

}

.breadcrumbs-description {
    max-width: 800px;
    margin: 50px 0;
}

.ui-design-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 50px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.ui-design-description {
    font-size: 20px;

    font-weight: 500;
    color: var(--dark);
    opacity: .8;
    line-height: 1.4;
    margin-top: 30px;
}

.ui-design-readmore {
    font-size: 20px;
    font-weight: 500;

    color: var(--dark);
    opacity: .6;
    margin-top: 20px;
}

.ui-design-dots {
    font-size: 40px;
    color: var(--primary);
}


.ui-design-image-wrapper {
    padding-right: 3rem;
}

.ui-design-image-wrapper img {
    width: 100%;
}

.ui-design-section {
    background: var(--light-gray);
    position: relative;
}


.tooltip-icon {
    cursor: pointer;
}

.tippy-box[data-theme~='custom'] {
    background-color: #636363;
    color: var(--light);
    padding: 12px 15px;
    border-radius: 10px;
    font-size: 14px;
    max-width: 300px;
    text-align: left;

    font-weight: 300;
}

/* .tippy-box[data-theme~='custom'][data-placement^='bottom'] > .tippy-arrow {
  top: -4px;
} */

.tippy-box[data-theme~='custom'] .tippy-arrow {
    color: #555;
}

.ui-design-image-wrapper2 {
    padding-right: 0;
}

.ui-design-section2 {
    background: #fff;
}

.section--testimonial--box .breadcrumbs-statistic {
    max-width: inherit;
}

.section--testimonial--box {
    padding-left: 25rem;

}

.testi--circle {
    width: 500px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 50px solid var(--dark);
    opacity: 0.04;
    position: absolute;
    left: -200px;
    bottom: -100px;
}

.section--testimonial {
    position: relative;
    overflow: hidden;
}

.mySwiper-ser {
    position: relative;
}

.swiper-button-next-serv {
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    z-index: 10;
    cursor: pointer;
}

.swiper-button-prev-serv {
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    position: absolute;
    z-index: 10;
    cursor: pointer;
}

.swiper-button-prev-serv img,
.swiper-button-next-serv img {
    -webkit-filter: invert(100);
    filter: invert(100);
}

.image-gallery--item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    display: block;
}

.app-dev-feature--services .feature-description {
    color: var(--dark);
}

.feature-description b {
    font-weight: 600;
    opacity: 1;
}

.cta-message--profile {
    position: relative;
}

.cta-message--background > img {
    position: absolute;
    z-index: -1;
    left: 53%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    max-width: 740px;
    width: 100%;
}

.section--cta-message {
    overflow: hidden;
}

.cta-message--profile {
    background: -o-linear-gradient(315deg,
    #226b46,
    #2d7848,
    #3b8448,
    #4b9148,
    #5c9d46,
    #70a944,
    #84b541,
    #9bc03d);
    background: linear-gradient(135deg,
    #226b46,
    #2d7848,
    #3b8448,
    #4b9148,
    #5c9d46,
    #70a944,
    #84b541,
    #9bc03d);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 1rem;
    padding: 20px;
    border-radius: 20px 20px 0 0;
}

.cta-message--profile-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #9EBEAE;
    padding: 10px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}


.cta-message--profile-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.cta-message--profile-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.cta-message--buttons {
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: -o-linear-gradient(315deg,
    #226b46,
    #2d7848,
    #3b8448,
    #4b9148,
    #5c9d46,
    #70a944,
    #84b541,
    #9bc03d);
    background: linear-gradient(135deg,
    #226b46,
    #2d7848,
    #3b8448,
    #4b9148,
    #5c9d46,
    #70a944,
    #84b541,
    #9bc03d);
    border-radius: 0 0 20px 20px;
}

.cta-message--buttons a {
    display: block;
}

.cta-message--buttons a:first-child {
    background: var(--primary);
}

.cta-message--buttons a:last-child {
    background: #d1d5db6c;
}

.cta-message--profile {
    position: relative;
}

.cta-message--wrapper {
    padding: 7rem;
    overflow: hidden;
}

.cta-message--content-main {
    padding-top: 7rem;
    padding-bottom: 3rem;
    max-width: 570px;
    width: 100%;
    margin: auto;
    border-radius: 20px;
    /* overflow: hidden; */
}

.cta-message--background {
    /* overflow: hidden; */
    position: relative;
}

.timer {
    font-size: 120px;
    text-align: center;

    opacity: .2;
    color: var(--light-gray);
}

.cta-message--name {

    font-weight: 600;
    color: var(--light);
    opacity: .6;
}

.cta-message--status {

    color: var(--dark);
}

.cta-message--description {
    font-size: 18px;

    color: var(--light);
    margin-top: 5px;
}

.cta-message--content {
    border-radius: 20px;
    /* overflow: hidden; */
    position: relative;
}

.red-dote {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: red;
    position: absolute;
    top: 0;
    right: -5px;
    z-index: 5;
}

.bg-gray {
    background: var(--light-gray);
}

.bg-white {
    background: #fff;
}

.ui-design-accordion-content {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.4s ease;
    -o-transition: max-height 0.4s ease;
    transition: max-height 0.4s ease;
}

.ui-design-accordion-item.active .ui-design-accordion-content {
    max-height: 500px; /* Adjust as needed */
}


.ui-design-accordion-icons svg:nth-child(2) {
    display: none;
}

.ui-design-accordion-item.active .ui-design-accordion-icons svg:nth-child(1) {
    display: none;
}

.ui-design-accordion-item.active .ui-design-accordion-icons svg:nth-child(2) {
    display: inline;
}

.ui-design-ac-container {
    max-width: 800px;
    width: 100%;
}

.ui-design-accordion-item {
    border-bottom: 1px solid #d1d5db;
}

.ui-design-accordion-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 15px 0;
    cursor: pointer;
}

.ui-design-accordion-title {
    font-size: 25px;

    color: var(--dark);
}

.ui-design-accordion-icons svg {
    color: var(--primary);
}

.ui-design-accordion-content p {
    padding: 15px;

    font-weight: 500;
    color: var(--dark);
    opacity: .7;
    font-size: 20px;
    line-height: 1.3;
    padding-top: 0;
}

.ui-design-accordion-wrapper {
    margin-top: 50px;
}

.ui-design-label--ac,
.ui-design-heading--ac,
.ui-design-description--ac {
    text-align: center;
}

.app-steps-container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 400px 30px 1fr;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    position: relative;
    z-index: 10;
}

.app-step-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.app-step-number {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: -webkit-gradient(linear, left top, left bottom, from(var(--accent)), to(var(--primary)));
    background: -o-linear-gradient(var(--accent), var(--primary));
    background: linear-gradient(var(--accent), var(--primary));
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    font-size: 50px;
    font-weight: 900;
}

.app-step-title {

    color: var(--dark);
    font-size: 30px;
    font-weight: 700;
}

.app-step-description {

    font-size: 25px;
    line-height: 1.3;
    color: var(--dark);
    opacity: .8;
    margin-top: 5px;
}

.app-step-item-btn a {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background: var(--primary);
    margin-top: 50px;
}

.app-steps-section {
    position: relative;
    overflow: hidden;
}

.app-step-circle1 {
    width: 500px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 50px solid var(--primary);
    -webkit-filter: blur(20px);
    filter: blur(20px);
    opacity: .2;
    position: absolute;
    left: -200px;
    bottom: -200px;
}

.app-step-circle2 {
    width: 500px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background: var(--primary);
    -webkit-filter: blur(20px);
    filter: blur(20px);
    opacity: .3;
    position: absolute;
    top: -100px;
    right: -400px;
}

.app-step-circle3 {
    width: 300px;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 50px solid var(--primary);
    -webkit-filter: blur(20px);
    filter: blur(20px);
    opacity: .3;
    position: absolute;
    right: 0;
    bottom: 0;
}

/* .cta-section-serv {
  padding: 0 1rem;
} */

.hero--line-serv {
    bottom: -80px;
}

@media only screen and (max-width: 1400px) {
    .swiper-button-next-m {
        right: 0;
    }

    .swiper-button-prev-m {
        left: 0;
    }

    .blog-slider-wrapper {
        padding: 0 3rem;
    }

    .app-dev-container {
        padding: 0;
    }

    .testimonial-icon--breadcrumbs {
        left: 0;
    }

    .breadcrumbs-statistic {
        padding-left: 3rem;
    }

    .breadcrumbs-content {
        padding: 0 1rem;
    }
}

@media only screen and (max-width: 1024px) {
    .cta-message--background > img {
        position: absolute;
        z-index: -1;
        left: 54%;
    }
}

@media only screen and (max-width: 900px) {

    #menubtn {
        display: flex;
        font-size: 35px;
        transition: all 0.6s ease;
    }

    #menubtn i {
        padding-top: 1px;
    }

    .nav-open #menubtn {
        transform: rotate(90deg);
    }


    .hero--line {
        display: none;
    }

    .top-navbar-container {
        min-height: 33px;
    }

    .top-navbar-item {
        opacity: 0;
        position: absolute;
        transform: translateY(-20px);
        transition: all 0.6s ease;
        font-size: 13px;
    }

    .top-navbar-item.active {
        opacity: 1;
        transform: translateY(0);
    }

    .top-navbar-container {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .reasons-section__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .app-dev-content-wrapper {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .service-content-wrapper {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0rem;
        gap: 0rem;
    }

    .service-content-wrapper-reverse {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin: 0rem;
        gap: 0rem;
    }

    .box-revers {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .img-container {
        margin: 0rem 2rem;
    }

    .service-section-light {
        padding: 3rem 2rem;
    }

    .app-dev-image-section img {
        display: block;
    }

    .bottom--shap {
        display: none;
    }

    .app-dev-text-section {
        padding: 3rem 2rem;
    }

    .cta-heading {
        font-size: 50px;
    }

    .hero--circle2-services {
        right: -200px;
        top: -200px;
    }

    .breadcrumbs-home {
        display: block;
    }

    .hero__img-services img {
        width: 370px;
        height: 461px;
        -o-object-fit: cover;
        object-fit: cover;
        border-radius: 30px;
    }

    .hero--line-serv {
        display: block;
    }

    .hero-section-cont-services {
        padding-top: 40px;
    }

    .ui-design-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .col-revs {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }


    .cta-message--content {
        -webkit-transform: scale(0.8);
        -ms-transform: scale(0.8);
        transform: scale(0.8);
    }

    .app-steps-container {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .app-step-number {
        width: 60px;
        height: 60px;
        font-size: 32px;
    }

    .app-step-title {
        font-size: 25px;
    }


    .app-step-description {
        font-size: 20px;
    }

    .section--testimonial--box {
        padding-left: 0;
    }

    .section--testimonial--box .breadcrumbs-statistic {
        padding: 80px 1rem;
    }

    .testimonial-icon--breadcrumbs {
        left: 0;
        top: 2rem;
    }

    .main-navbar-button {
        padding: 0.5rem 1rem;
        font-size: 14px;
        letter-spacing: 0.5px;
    }

    .mob--links {
        position: fixed;
        left: 0;
        width: 100%;
        top: 140px;
        /* height: 100%; */
        background-color: rgb(0 0 0 / 48%);
        backdrop-filter: blur(10px);
        -webkit-transition: all 0.6s ease;
        -o-transition: all 0.6s ease;
        transition: all 0.6s ease;
        transform: translateY(100%);
        opacity: 0;
        pointer-events: none;
    }

    header.scrolled .mob--links {
        top: 80px;
    }

    .nav-open .mob--links {
        opacity: 1;
        transform: translateY(0);
        pointer-events: all;
    }

    .main-navbar-menu {
        display: block;
        background-color: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(10px);
        padding: 0;
        gap: 20px;
    }

    body.nav-open {
        overflow: hidden;
    }

    .main-navbar-menu li a {
        color: var(--light);
        font-weight: 700;
        min-height: 55px;
        display: flex;
        padding: 0;
        text-align: left;
        justify-content: space-between;
        padding: 0 0 0 20px;
        align-items: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .main-navbar-menu li a button {
        height: 100%;
        background: transparent;
        font-size: 30px;
        border: 0;
        color: #fff;
        height: 54px;
        width: 54px;
        transition: all 0.6s ease;
    }

    .main-navbar-menu li a button.active {
        transform: rotate(180deg);
    }


    .main-navbar-menu li .sub-menu a {
        font-size: 14px;
        padding-left: 40px;
    }

    .main-navbar-menu li .sub-menu {
        display: none;
    }
    .main-navbar-menu li .sub-menu.active {
        display: block;
    }

    .hero-section-subtitle {
        font-size: 1.1rem;
    }

    .hero-section-description {
        font-size: 17px;
    }

    .blog-slide,
    .cta-container {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .blog-user {
        position: static;
    }

    .blog-content {
        padding: 2rem 1.5rem;
    }

    .swiper-button-next-m,
    .swiper-button-prev-m {
        display: none;
    }

    .blog-slider-wrapper {
        padding: 0;
    }

    .cta-content {
        padding: 3rem 1rem;
    }

    .testimonial-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 20px;
    }

    .testimonial-text {
        font-size: 20px;
        text-align: center;
        margin-bottom: 10px;
    }

    .testimonial-author {
        font-size: 20px;
        text-align: center;
    }

    .testimonial-position {
        font-size: 16px;
        text-align: center;
    }

    .testimonial-container {
        padding: 0 1rem;
    }

    .reason-card__title {
        font-size: 19px;
        margin: 10px 0;
    }

    .reason-card__desc {
        font-size: 14px;
    }

    .agency-section__content {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .main-navbar-content,
    .main-navbar-actions {
        gap: 10px;
    }

    .agency-circle1,
    .agency-circle2,
    .circle2,
    .circle3 {
        display: none;
    }

    .circle1 {
        bottom: -114px;
        left: -197px;
        width: 395px;
        -webkit-filter: blur(21px);
        filter: blur(21px);
        opacity: 0.4;
        height: auto;
        aspect-ratio: 1 / 1;
    }

    .ui-design-accordion-title {
        font-size: 22px;
    }

    .cta-message--wrapper {
        padding: 1rem;
        overflow: hidden;
        padding-top: 4rem;
    }

    .cta-message--content {
        -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
    }

    .timer {
        font-size: 78px;
    }

    .testi--circle {
        width: 329px;
    }

    .icon--quote-serv {
        top: 0;
    }
}


@media only screen and (max-width: 425px) {
    .reasons-section__grid {
        -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    }

    .cta-message--content {
        -webkit-transform: scale(0.7);
        -ms-transform: scale(0.7);
        transform: scale(0.7);
    }

    .cta-message--buttons a {
        font-size: 10px;
    }

    .cta-message--buttons {
        white-space: nowrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .main-navbar-actions {
        margin-left: 20px;
    }


}


@media only screen and (max-width: 400px) {

    .cta-message--background > img {
        position: absolute;
        z-index: -1;
        left: 54%;
        bottom: -223px;
    }
    .main-navbar-button {
        border: 0;
        font-size: 30px;
        line-height: 1;
        height: 44px;
        width: 44px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        cursor: pointer;
    }

    .main-navbar-button i {
        display: block;
    }
    .main-navbar-button span {
        display: none;
    }
}

@media only screen and (max-width: 370px) {
    .cta-message--content-main {
        padding-top: 3rem;
        padding-bottom: 0rem;
    }

    .timer {
        font-size: 50px;
    }

}

@media only screen and (max-width: 340px) {

    .main-navbar-content,
    .main-navbar-actions {
        gap: 10px;
    }

    .cta-message--content-main {
        padding-top: 5rem;
    }

    .cta-message--background > img {
        bottom: -160px;
    }
}