@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --background: #FFFFFF;
    --text: #000000;

    --primary: #015835;
    --secondary: #F2F6F5;

    --primary-text: #FFFFFF;
}


body {
    color: var(--text);
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 300 !important;
}
h2 span,
.h2 span {
    color: var(--primary) !important;
}
h1, .h1 {
    font-size: 3.5rem;
    font-weight: 400 !important;
}
h2, .h2 {
    font-size: 2.5rem !important;
    font-weight: 200 !important;
}
h4, .h4 {
    font-weight: 200 !important;
}

.box {
    background-color: var(--secondary);
    padding: 1.5rem;
}
.box-big-icon {
    color: var(--primary);
    font-size: 40px;
    margin-top: -10px;
}


.scroll-video-wrapper {
    position: relative;
    overflow: hidden;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-video-wrapper video {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    pointer-events: none;
}



.bg-secondary {
    background-color: var(--secondary) !important;
}


.btn {
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    padding: .75rem 2rem;
    outline: none !important;
    box-shadow: none !important;
}
.btn-sm {
    padding: .4rem 2rem;
}
.btn-light {
    background-color: #FFFFFF !important;
    border: 1px solid #FFFFFF !important;
    color: var(--text) !important;
}
.btn-primary {
    background-color: var(--primary) !important;
    border: 1px solid var(--primary) !important;
    color: var(--primary-text) !important;
}



@keyframes moveGlow {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 400% 0%;
    }
}

.pricing-box__focus {
    position: relative;
    z-index: 1;
    border-radius: 8px;
    overflow: visible;
}

.glow-border {
    position: absolute;
    inset: 0;
    border-radius: 4px;
    padding: 2px;
    background: linear-gradient(
        to right,
        transparent,
        #00854f,
        transparent
    );
    background-size: 400% 100%;
    animation: moveGlow 8s linear infinite;
    pointer-events: none;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
}

.pricing-box {
    position: relative;
    z-index: 10;
    border-radius: 6px;
    overflow: visible;
    border: 2px solid transparent !important;
}

.pricing-box__title {
    position: relative;
    background-color: var(--primary);
    color: var(--primary-text);
    text-align: center;
    font-size: 1.75rem;
    font-weight: 500;
    padding: 2rem 1rem;
}
.pricing-box__badge {
    position: absolute;
    top: 6px;
    right: 6px;
    font-weight: 400;
    background-color: #ffffff;
    font-size: 13px;
    border-radius: 50px;
    padding: 3px 12px;
    color: #000000;
}
.pricing-box__content {
    background-color: #FFFFFF;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
}
.pricing-box__sub-title {
    font-weight: 300;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
.pricing-box__item {
    margin-bottom: 1.5rem;
}
.pricing-box__button {
    margin-top: 1.5rem;
}


.webshop-buy-button {
    position: fixed;
    bottom: 4rem;
    right: 4rem;
}


.product-box {
    background-color: var(--secondary);
    padding: 1rem;
}
.product-box__image {
    width: 100%;
    padding-bottom: 100%;
    background-size: cover;
    background-position: center;
}
.product-box__title {
    font-size: 1.75rem;
}
.product-box__description {
    font-size: 0.875rem;
}
.product-box__price {
    font-size: 1.35rem;
    font-weight: 500;
}


header {
    background-color: var(--background);
    padding: 12px 0;
}
.header-toggler {
    display: none;
}
.header-inner {
    display: flex;
    align-items: center;
}
header .logo {
    display: block;
    height: 65px;
}
header .logo img {
    height: 100%;
}
header .links {
    display: flex;
    margin-left: auto;
    gap: 2rem;
}
header .links .header-link {
    text-decoration: none !important;
    color: var(--text);
    padding: 6px 0;
    font-weight: 300;
}


.blog-card {
    display: block;
    text-decoration: none !important;
    color: inherit !important;
}
.blog-card__image {
    padding-bottom: 56.25%;
    background-color: #CCCCCC;
    background-position: center;
    background-size: cover;
    margin-bottom: 1rem;
}
.blog-card__title {
    font-size: 1.3rem;
}


.hero {
    padding: 175px 0;
    position: relative;
    background-position: top center;
    background-size: cover;
    color: #FFFFFF;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.25);
}
.hero p {
    margin-bottom: 3rem !important;
}

.hero-banner {
    background-color: var(--primary);
    color: var(--primary-text);
    font-weight: 500 !important;
    font-size: 18px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.blog-contact-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    background-color: var(--secondary);
}
.blog-contact-card .text {
    font-size: 22px;
}


.multistep-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}
.multistep-form-header__number {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    width: 55px;
    border-radius: 50%;
    background-color: var(--secondary);
    font-size: 22px;
    font-weight: 500;
}
.multistep-form-header__number::after {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 2px);
    left: 55px;
    width: 1000px;
    height: 4px;
    background-color: var(--secondary);
}
.multistep-form-header__number.active {
    background-color: var(--primary);
    color: var(--primary-text);
}
.multistep-form-header__number.active-line::after {
    background-color: var(--primary) !important;
}


.certification-image {
    height: 40px;
}

b {
    font-weight: 600;
}


.fill-image {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #BFBFBF;
    background-size: cover;
    background-position: center;
}
.fill-image .bottom-button {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    width: calc(100% - 2rem);
}

.icon-list {
    display: flex;
    flex-direction: column;
}
.icon-list .list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}
.icon-list .list-item__icon {
    color: var(--primary);
    font-size: 30px;
    width: 30px;
    margin-right: 0.5rem;
}
.icon-list .list-item__icon.normal {
    color: inherit !important;
}
.icon-list .list-item__text {
    font-weight: 600;
}
.icon-list .list-item__text.normal {
    font-weight: 300 !important;
}
.icon-list .list-item__text p {
    margin-bottom: 0 !important;
}


.text-block-text p:last-child {
    margin-bottom: 0 !important;
}


.fw-200 {
    font-weight: 200 !important;
}
.fw-500 {
    font-weight: 500 !important;
}


.price-calculator-result-icon {
    background-color: var(--primary);
    border-radius: 50%;
    height: 75px;
    width: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-text);
    font-size: 36px;
}


.contact-info-row {
    display: flex;
    align-items: center;
}
.contact-info-row__icon {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--primary-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-right: 1rem;
}
.contact-info-row__text {
    font-size: 26px;
}


.form-label span {
    color: red !important;
}

.form-control,
.form-select {
    box-shadow: none !important;
    outline: none !important;
    border-radius: 25px !important;
    background-color: #FFFFFF !important;
    border: 1px solid #cfcfcf !important;
    padding: .65rem 1rem !important;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545 !important;
}

a.silent {
    color: inherit !important;
    text-decoration: none !important;
}

.form-check-input {
    outline: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}
input[type="radio"].form-check-input {
    border-radius: 50% !important;
}


.usp-block {
    position: relative;
    background-color: var(--secondary);
    padding-bottom: 110%;
}
.usp-block__inner {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    width: calc(100% - 2.4rem);
    height: calc(100% - 2.4rem);
}
.usp-block__inner h4 {
    padding-right: 3rem;
}
.usp-block__inner p {
    margin-top: auto;
    margin-bottom: 0 !important;
    color: #5D5D5D !important;
}


.usp-flexer {
    display: flex;
    flex-wrap: wrap;
}
.usp-flexer__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    margin-right: 2rem;
    margin-bottom: 0.5rem;
}
.usp-flexer__item i {
    font-size: 26px;
    margin-right: 0.5rem;
    color: var(--primary);
}

.faq-item {
    background-color: var(--secondary);
    margin-bottom: 1rem;
}
.faq-item__header {
    color: inherit !important;
    text-decoration: none !important;
    display: flex;
    align-items: center;
    padding: 1rem;
}
.faq-item__header:not(.collapsed) .faq-item__header__icon {
    transform: rotate(180deg);
}
.faq-item__header__icon {
    margin-left: auto;
}
.faq-item__body {
    padding: 1rem;
}


.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-link {
    color: inherit !important;
    text-decoration: none !important;
}


.footer-credits {
    font-size: 0.75rem;
    color: inherit !important;
    text-decoration: none !important;
}


.footer-logo {
    max-width: 100%;
    max-height: 75px;
}


.price-calculator-usp {
    background-color: var(--secondary);
    padding: 1rem 1.5rem;
    display: flex;
}
.price-calculator-usp .icon {
    width: 80px;
    display: flex;
    align-items: center;
    font-size: 44px;
}
.price-calculator-usp .title {
    font-size: 22px;
    margin-bottom: 0.5rem;
}
.price-calculator-usp .text {
    color: #5D5D5D;
    font-size: 1rem;
}


@media only screen and (max-width: 991px) {
    header {
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    header .links {
        position: absolute;
        background-color: #ffffff;
        top: 89px;
        left: -100%;
        height: calc(100vh - 89px);
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding-top: 1rem;
        transition: left 0.2s ease;
    }
    header.open .links {
        left: 0;
    }
    header .links .header-link {
        font-size: 1.2rem;
    }
    .header-toggler {
        display: block;
        margin-left: auto;
        font-size: 42px;
    }

    h1, .h1 {
        font-size: 2.5rem;
    }
    h2, .h2 {
        font-size: 2rem !important;
    }

    .hero {
        padding: 75px 0;
    }

    .certification-image {
        height: 30px;
    }

    .fill-image {
        padding-bottom: 56.25%;
    }

    .usp-block__inner h4 {
        padding-right: 0;
        font-size: 1.1rem;
    }
    .usp-block__inner p {
        font-size: 0.8rem;
    }


    .contact-info-row__icon {
        height: 45px;
        width: 45px;
        font-size: 22px;
    }
    .contact-info-row__text {
        font-size: 18px;
    }

    .scroll-video-wrapper {
        height: 200px;
    }

    .blog-contact-card {
        flex-direction: column;
        text-align: center;
    }
    .blog-contact-card .text {
        margin-bottom: 1.5rem;
    }
    .blog-contact-card .button,
    .blog-contact-card .btn {
        width: 100%;
    }
}
