/*
Theme Name: My Custom Theme
Theme URI: http://example.com/
Author: Your Name
Author URI: http://example.com/
Description: A custom theme for WordPress
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: my-custom-theme
*/

@font-face {
    font-family: 'Acumin Pro';
    src: url('AcuminPro-Regular.woff2') format('woff2'),
        url('AcuminPro-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Uni Sans';
    src: url('Uni-Sans-Bold.woff2') format('woff2'),
        url('Uni-Sans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


.custom-color {
    color: var(--color6);
}

html {
    scroll-behavior:smooth
}

:root {
    --color1: #49423E;
    --color2: #B8C6AB;
    --color3: #E1E8D9;
    --color4: #FFF5F0;
    --color5: #A06f53;
    --color6: #CBAD91;
    --color7: #D1DFC4;
    --color8: #fff;
}

html {
    scroll-behavior: smooth;
}

p {
    font-family: 'Acumin Pro';
    font-size: 15px;
    font-weight: normal;
    color: var(--color6);
    line-height: 25px;
}

h1 {
    font-family: 'Uni Sans';
    font-size: 50px;
    font-weight: bold;
    color: var(--color1);
    line-height: 65px;
    vertical-align: bottom;
}

h2 {

    font-family: 'Uni Sans';
    font-size: 50px;
    font-weight: bold;
    color: var(--color1);
    line-height: 65px;


}

h3 {
    font-family: 'Uni Sans';
    font-size: 35px;
    font-weight: bold;
    color: var(--color1);
    line-height: 65px;
}

h4 {
    font-family: 'Acumin Pro';
    font-size: 20px;
    font-weight: normal;
    color: var(--color5);

}

h5 {
    font-family: 'Acumin Pro';
    font-size: 25px;
    font-weight: normal;
    color: var(--color5);


}

h6 {
    font-family: 'Acumin Pro';
    font-size: 15px;
    font-weight: normal;
    color: var(--color5);

}


.container-big {
    padding: 0rem 3rem 3rem 3rem;

}

.container-big-bottom {

    padding: 3rem 3rem 0rem 3rem;
}

.container {
    padding: 6rem;
}

.container-double {
    padding: 12rem;
}



.card-top {
    /*border-radius: 0px 0px 80px 80px;*/
    height: 80vh;

}

.card {
    border-radius: 80px;
    padding: 5rem;

}

.card-bottom {
    border-radius: 80px 80px 0px 0px ;
    height: 80vh;
}

.flex-column {
    flex-direction: column;
}
/*
button, .button {
    font-family: 'Acumin Pro';
    color: #FFF5F0;
    background-color: #B8C6AB;
    font-size: 20px;
    font-weight: normal;
    border-radius: 15px;
    text-align: center;
    border: 0px;
    padding: 1rem 3rem 1rem 3rem;
    transition: background-color 0.3s ease-in-out;
    background-size: 200% 200%;
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.2) 50%, transparent 50%);
}

button:hover, .button:hover {
    animation: waveEffect 1s ease forwards;
}

@keyframes waveEffect {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 200% 0;
    }
}
*/


button {
    --c: var(--color2);
    color: var(--color1);
    background-color: var(--color7);
    font-size: 20px;
    font-weight: normal;
    border-radius: 15px;
    font-family: 'Acumin Pro';
    letter-spacing: 0.1em;
    text-align: center;
    border: 0px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
    padding: 1rem 3rem 1rem 3rem;


}

button span {
    position: absolute;
    width: 25% !important;
    height: 100%;
    background-color: var(--c);
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--n) - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}

button:hover {
    color: black;
    transform: scale(0.95);
}

button:hover span {
    transform: translateY(0) scale(2);
}

button span:nth-child(1) {
    --n: 1;
}

button span:nth-child(2) {
    --n: 2;
}

button span:nth-child(3) {
    --n: 3;
}

button span:nth-child(4) {
    --n: 4;
}

.button {
    --c: var(--color2);
    color: var(--color8);
    background-color: var(--color7);
    font-size: 20px;
    font-weight: normal;
    border-radius: 15px;
    font-family: 'Acumin Pro';
    letter-spacing: 0.1em;
    text-align: center;
    border: 0px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
    padding: 1rem 3rem 1rem 3rem;
    cursor: pointer; /* Add cursor pointer for better usability */

}

.button::before {
    content: '';
    position: absolute;
    width: 25%;
    height: 100%;
    background-color: var(--c);
    transform: translateY(150%);
    border-radius: 50%;
    transition: 0.5s;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}

.button:hover {
    color: black;
    transform: scale(0.95);
}

.button:hover::before {
    transform: translateY(0) scale(2);
}

.button::before:nth-child(1) {
    --n: 1;
}

.button::before:nth-child(2) {
    --n: 2;
}

.button::before:nth-child(3) {
    --n: 3;
}

.button::before:nth-child(4) {
    --n: 4;
}



.custom-width {
    width: 120px;
}

.custom-width-burger {
    width: 180px;
}

.text-width {
    width: 500px;
}





.circle {
    height: 300px;
    width: 300px;
    background-color: var(--color4);
    border-radius: 50%;
    display: inline-block;
    margin: 4rem;
    transition: all 0.3s ease; 
}


.circle:hover {
    transform: scale(0.95);


}


circle {
    --c: var(--color2);
    color: var(--color4);
    background-color: var(--color7);
    font-size: 20px;
    font-weight: normal;
    border-radius: 15px;
    font-family: 'Acumin Pro';
    letter-spacing: 0.1em;
    text-align: center;
    border: 0px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: 0.5s;
    padding: 1rem 3rem 1rem 3rem;


}

circle span {
    position: absolute;
    width: 25% !important;
    height: 100%;
    background-color: var(--c);
    transform: translateY(150%);
    border-radius: 50%;
    left: calc((var(--n) - 1) * 25%);
    transition: 0.5s;
    transition-delay: calc((var(--n) - 1) * 0.1s);
    z-index: -1;
}

circle:hover {
    color: black;
    transform: scale(0.95);
}

button:hover span {
    transform: translateY(0) scale(2);
}

button span:nth-child(1) {
    --n: 1;
}

button span:nth-child(2) {
    --n: 2;
}

button span:nth-child(3) {
    --n: 3;
}

button span:nth-child(4) {
    --n: 4;
}







#burger-icon {
    cursor: pointer;


}

#burger-icon:hover {

}

#close-icon {
    cursor: pointer;;


}

#close-icon:hover {
}

.grid {
    gap: 6rem;
}

.custom-gap {
    gap: 6rem;
}

.gap-small {
    gap: 1rem;
}

.gap-medium {
    gap: 3rem !important;
}

.item {
    transition: all 0.3s ease-in-out;
}

.item:hover {
    transform: scale(0.95);
}

.placeholder {
    padding: 35px 70px 35px 70px ;
    border-radius: 10px;
    width: 100px;
    background-color: var(--color4);
    transition: all 0.3s ease-in-out;

}

.placeholder:hover {
    transform: scale(0.95);

}

.custom-grid {
    padding: 0rem 10rem 0rem 10rem;
}

.custom-column {
    padding: 0rem 15rem 0rem 15rem;
}


.column-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%; 
}


.kunden-container {
    padding: 2rem;
    padding-top: 20rem;
    border-radius: 80px;
    background-color: var(--color4);
    width: 100%;
}

.line-height {
    line-height: 1.8;
}

.element-4 {
    margin-bottom: 4rem;
}


video {
    border-radius: 0px 0px 80px 80px;
    z-index: -3;
}
.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    /* Center content */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px; /* Increase padding to increase gap between slides */
}
.swiper-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px; /* Adjust margin as needed */
    overflow: hidden;
}

.swiper-grid {
    display: none;
}

.container-boxed {
    padding: 6rem;
    max-width: 800px;
}



@media screen and (min-width: 1024px) {
    .button-hero-bottom {
        display: none;
    }
}

@media screen and (max-width: 1024px) { 

    .button-hero-bottom {
        width: 60px;
        height: 60px;
        border-radius: 0px;
        border-radius: 50%; 
        background-color: var(--color2);
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 24px;
        text-decoration: none;
        border: none;
        cursor: pointer;
    }

h1 {
    font-size: 28px;
}

h2 {
    padding-top: 0.5rem;
    font-size: 28px;
    line-height: 36px;
    padding-bottom: 0.5rem;


}

h3 {
    font-size: 28px;
}

h4 {
    font-size: 14px;
}

h5 {
    font-size: 14px;
}

h6 {
    font-size: 14px !important;
}

.swiper-grid {
    display: block;
}

.grid-grid {
    display: none;
}

.swiper-grid {
    display: block;
}

.swiper-container {
    padding: 3rem;
    margin-top: 0rem;
}

    .container-big {
    
        padding: 0rem;
    
    }
    
    .container-big-bottom {
    
        padding: 0rem;
    }
    
    .container {
        padding: 3rem;
        text-align: center;
    }

    .custom-column {
        padding: 1rem;
    }

    .card-top-content {
        padding: 1rem;
    }

    .button-hero-top {
        display: none;
    }

    .card-top-content {
        padding: 1rem;
    }

    .text-width {
        width: auto;
    }

    .grid-2 {
        grid-template-columns: 1fr 1fr;

    }

    .container-boxed {
        padding: 0rem;
        max-width: none;
    }

    .circle {
        margin: 0rem;
    }

    .circle {
        height: 250px;
        width: 250px;
        background-color: var(--color4);
        border-radius: 50%;
        display: inline-block;
        margin: 0rem;
        margin-bottom: 3rem;
        transition: all 0.3s ease; 
    }

    #burger-menu {
        padding: 3rem;
    }

    .custom-width-burger {
        width: auto;
    }
 

}