* {
    margin: 0px;
    padding: 0px;
}

body {
    margin: 0px;
    padding: 0px;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 19px;
    line-height: 30px;
    font-weight: 300;
    scroll-behavior: smooth;
}

img {
    width: 100%;
}


/* Fonts */
h2 {
    font-size: 35px;
    line-height: 50px;
    margin-bottom: 15px;
}

h3 {
    font-size: 21px;
    line-height: 24px;
    margin-bottom: 5px;
}

h4 {
    font-size: 11px;
    line-height: 17px;
    font-weight: 400;
    margin-bottom: 5px;
}


p {
    font-size: 19px;
    line-height: 30px;
    font-weight: 300;
    margin-bottom: 15px;
}

li {
    padding-left: 25px;
    list-style: none;
    position: relative;
}

li:before {
    content: ">";
    position: absolute;
    margin-left: -20px;
    margin-top: -2px;
}


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

.center-text .btn {
    margin: auto !important;
}


/* Btn & Links */
a {
    color: #000;
    text-decoration: none;
}

button,
.btn {
    position: relative;
    color: #000;
    text-decoration: none;
    margin: 0;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(to right, #98FF53, #71BD3E);
    border-radius: 20px;
    overflow: hidden;
    /* Ensures the pseudo-element doesn't overflow the button */
    transition: color 0.6s ease;
    width: 160px;
    height: 40px;
    font-size: 15px;

}

button::before,
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    /* Start completely off the left side */
    width: 100%;
    height: 100%;
    background: #000;
    /* Black background */
    transition: transform 0.6s ease;
    z-index: 0;
}

.btn span {
    position: relative;
    z-index: 2;
}

button:hover::before,
.btn:hover::before {
    transform: translateX(100%);
    /* Moves the black background to the right */
}
button:hover,
.btn:hover {
    color: #FFF;
    /* Changes text color to white for contrast */
    z-index: 1;
    /* Ensures the text is above the pseudo-element */
}

.btn.white-btn span {
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    background-color: #fff;
    color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

.btn-margin-100 {
    margin-bottom: 100px;
}


/* Container & Sections */
.container {
    max-width: 1200px;
    width: 90%;
    margin: auto;
    display: block;
}

section {
    padding: 100px 0;
    background-color: #FFF;
}

section .container {
    max-width: 970px;
}

.title-row-flex {
    display: flex;
    gap: 25px;
}

.title-row-flex .title-row {
    text-align: right;
    border-right: 1px solid #000;
    padding-right: 10px;
    min-width: 200px;
}

.title-row-flex .row-content {
    max-width: 750px;
    padding-top: 150px;
}

.flex-section {
    display: flex;
    gap: 15px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.flex-section p {
    margin: 0px;
}


.gallery-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 5px;
    grid-auto-rows: minmax(100px, auto);
    width: 95%;
    margin: auto;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.gallery-item h4 {
    position: absolute;
    z-index: 2;
    bottom: 15px;
    left: 10px;
    display: inline-block;
    padding: 5px 15px;
    color: #fff;
    background: rgba(0, 0, 0, 0.85);
    /* Black with 35% transparency */
    backdrop-filter: blur(10px);
    /* Apply the blur effect */
    -webkit-backdrop-filter: blur(10px);
    /* For Safari compatibility */
    border-radius: 10px;
}

.gallery-item img {
    width: 100%;
}

.faq {
    max-width: 680px;
    display: block;
    margin: 0px auto;
}

.faq .item {
    display: flex;
    gap: 40px;
    margin-bottom: 30px;
}

.faq .item h3 {
    font-size: 60px;
    line-height: 60px;
    color: #98FF53;
    background: linear-gradient(180deg, #98FF53, #71BD3E); /* The gradient color */
    -webkit-background-clip: text; /* Clips the background to the text */
    -webkit-text-fill-color: transparent; /* Makes the text color transparent */
}

.faq .item-container {
    max-width: 580px;
}


.faq .item-container p {
    margin: 0px;
}

.faq .item-container strong{
    font-weight: 600;
    display: block;
}


.flex-tetimonial {
    display: flex;
}

.flex-tetimonial .image-testimonial {
    width: 300px;
    position: relative;
}

.flex-tetimonial .image-testimonial video{
    width: 300px;
    height: 300px;
    margin-top: -40px;
}


.flex-tetimonial .content-testimonial {
    max-width: 700px;
}

.video-section{
    position: relative;
    padding: 0px !important;
}
.video-section .title-box{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    width: 100%;
    height: 100%;
}
.video-section .title-box h2{
    max-width: 620px;
    text-align: center;
    margin: 0px;
}
.video-section .responsive-video{
    margin: 0px;
}

/* Backgrounds */

.back-black {
    background-color: #000;
    color: #FFF;
}

.back-grey {
    background-color: #f3f3f3;
}

.back-grey .white-btn span {
    background-color: #f3f3f3 !important;
}

.back-2-colors {
    background: #f3f3f3;
    /* Top color */
    background: linear-gradient(to bottom, #f3f3f3 50%, white 50%);
    background-size: 100% 100%;
    padding: 0px !important;
}

.back-cow{
    background-image: url(images/BannerFooter.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 300px;
    margin: -5px auto 0;
}

.needsclick.kl-teaser-X42wei.undefined.kl-private-reset-css-Xuajs1{display: none!important;}


/* Header */
header {
    background-color: #fff;
    padding: 25px 0;
}

header .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

nav {
    display: flex;
    flex-direction: row-reverse;
    gap: 10px;
}

/* Form */
form{
    margin: 0px !important;
    padding: 0px !important;
    width: 100%;
    max-width: 550px !important;
}
form div{
    margin: 0px !important;
    padding: 0px !important;
}
form input{
    font-size: 15px !important;
    margin-bottom: 15px !important;
    height: 40px !important; 
}
form button{
    max-width: 160px !important;
    text-align: center !important;
    font-size: 15px !important;
    border-radius: 20px !important;
    height: 40px !important;
    color: #000 !important;
    background: linear-gradient(to right, #98FF53, #71BD3E) !important;
    border: 0px !important;
}
form button:hover{
    background: #000 !important;
    color: #fff !important;
}
/* Footer */
footer{
    text-align: center;
    background-color: #fff;
    padding: 25px 0;
}
footer p{
    font-size: 13px;
    font-weight: 700;
    margin: 0px;
}

/* read more function */
.hidden {
    max-height: 0px !important;
    transition: 1s;
}
.read-more-content {
    display: block;
    overflow: hidden;
    max-height: 1000px;
}
.read-more-btn {
    cursor: pointer;
    text-decoration: underline;
}