@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,700&family=Fahkwang:wght@300;400;700&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.2/font/bootstrap-icons.min.css");

:root {
    --blue: #193c6c;
    --pink: #efd3d3;
    --gray: #7c7c7b;
    --lightblue: #55c3e9;
    --purple: #7f227f;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: rgb(0, 0, 0);
    font-weight: 400;
}

a,
a:link,
a:visited,
a:active {
    text-decoration: none;
}

.kontakt a, 
.kontakt a:link, 
.kontakt a:visited, 
.kontakt a:active {
    color: white;
}

footer a, 
footer a:link, 
footer a:visited, 
footer a:active {
    color: var(--blue);
}

.title-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--purple);
    font-family: 'Fahkwang', sans-serif;
}

/* Nav */

.logo-main {
    max-height: 40px;
}

.nav-item a {
    color: #FFFFFF;
}

.nav-link,
.nav-link:hover {
    color: #FFFFFF;
    font-weight: 400;
    font-size: 18px;
}

.mobile-nav .nav-link {
    color: var(--blue);
}

.pc-nav {
    background-color: #000000;
}

.hover-underline {
    display: inline-block;
    position: relative;
    color: #FFFFFF;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 6px;
    left: 0;
    background-color: #FFFFFF;
    transform-origin: bottom right;
    transition: transform 0.5s ease-out;
}

.hover-underline:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.offcanvas {
    width: 100% !important;
    border-left: none !important;
}

.offcanvas-header .btn-close {
    color: var(--blue);
}

.offcanvas-header .btn-close:focus {
    box-shadow: none;
}

.modal-header .btn-close:focus {
    box-shadow: none;
}

.offcanvas-body .nav-link {
    font-size: 26px;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler-icon {
    border: none;
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'><path stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/></svg>");
}

.navbar-toggler:focus {
    box-shadow: none;
}

.bg-body-tertiary {
    background-color: var(--blue) !important;
}

.btn-contact {
    font-weight: 400;
    font-size: 18px;
}

/* Background and Form */
.form-background {
    position: relative;
    top: 0;
    left: 0;
}

.form-background-bg {
    position: relative;
    top: 0;
    left: 0;
}

.form-text a {
    color: #0000FA;
}

.bg-text {
    text-align: center;
    font-size: 32px;
    font-family: 'Fahkwang', sans-serif;
    color: var(--blue);
    font-weight: 700;
}

.img-bg {
    width: 100%;
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
    border-radius: 10px;
}

.bg-col {
    background-position-y: bottom;
    background-position-x: center;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
}

.forms {
    position: absolute;
    top: 40px;
    right: 40px;
    background-color: #E6E6E6;
    border-radius: 0px;
    border: 2px solid #034E3F33;
    box-shadow: 0px 4px 31px 0px #00000033;
    padding: 30px;
}

.forms-col {
    background-color: #E6E6E6;
    border-radius: 10px;
    border: 2px solid #034E3F33;
    box-shadow: 0px 4px 31px 0px #00000033;
    padding: 30px;
}


.forms-title {
    font-family: 'Fahkwang', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--purple);
}

.btn-primary {
    background-color: var(--purple);
    border: 1px transparent solid;
    border-radius: 10px;
}

.btn-primary:hover {
    background-color: #FFFFFF;
    border: 1px var(--purple) solid;
    color: var(--purple);
}

.btn-form {
    font-size: 18px;
    padding: 10px 0px;
    background-color: var(--blue);
}

.btn-form:hover {
    border: 1px var(--blue) solid;
    color: var(--blue);
}

/* O nas */

.onas .title-text {
    color: var(--blue);
}

.onas-title-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--purple);
    font-family: 'Fahkwang', sans-serif;
}

.onas .normal-text {
    font-size: 21px;
    color: var(--blue);
}

.pink-box {
    background-color: var(--pink);
    padding: 0 5px;
    border-radius: 10px;
    height: 100%;
    width: auto;
    aspect-ratio: 1 / 1;
    color: var(--blue);
}

.onas i {
    font-size: 80px;
}

.card-title {
    font-size: 32px;
    font-family: 'Fahkwang', sans-serif;
    font-weight: 700;
}

.pink-box-hover {
    position: absolute;
    top: 0;
    opacity: 0;
    background-color: var(--pink);
    padding: 0 20px;
    border-radius: 10px;
    height: 100%;
    width: 100%;
    transition: opacity 0.3s;
    z-index: 5;
}

.click-me-icon {
    position: absolute;
    bottom: -8px;
    right: -8px;
    max-width: 13%;
    z-index: 10;
}

.pink-box-hover:hover {
    opacity: 1;
}

.normal-text-pink {
    font-family: 'Fahkwang', sans-serif;
    font-size: 32px !important;
    font-weight: 700;
}

.btn-card {
    position: relative;
    border-radius: 10px;
    border: none;
    background: none;
    padding: 0;
}

/* Dom */
.dom .container {
    background: var(--blue);
}

.dom .title-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--pink);
    font-family: 'Fahkwang', sans-serif;
}

.dom .subtitle-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--pink);
}

.dom .normal-text {
    font-size: 18px;
    color: #FFFFFF;
}

.house-icon i {
    font-size: 45px;
    color: var(--pink);
}

.betreuung-icon {
    max-width: 65px;
}

/* Zalety */
.zalety .container {
    background: var(--pink);
}

.zalety .title-text {
    font-size: 32px;
    font-weight: 700;
    color: var(--purple);
    font-family: 'Fahkwang', sans-serif;
}

.zalety .normal-text {
    font-size: 18px;
    color: #000000;
    font-weight: 700;
}

.zalety i {
    font-size: 70px;
    color: var(--blue);
}

.zalety-img {
    border-radius: 10px;
}

.zalety-icon {
    width: auto;
    height: 80px;
}

/* Proces */
.proces .container {
    background: #e6e6e6;
}

.proces-img {
    border-radius: 50%;
    max-height: 200px;
    max-width: 200px;
    outline: 2px solid var(--purple);
    outline-offset: 10px;
}

.proces-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--purple);
}

.proces .vr {
    opacity: 1;
    background-color: var(--purple);
    width: 2px;
}

.vr-around {
    margin: 20px 0;
}


/* Wartosci */
.wartosci .container {
    background: var(--pink);
}

.system-img {
    width: 100%;
}

.wartosci .normal-text {
    font-size: 24px;
    color: #000000;
    font-weight: 700;
    font-family: 'Fahkwang', sans-serif;
}

.system-icon img {
    width: auto;
    height: 80px;
}

.padding-12 {
    padding-left: 12px;
    padding-right: 12px;
}

.btn-big {
    font-size: 24px;
    padding: 6px 30px;
}
/* Kontakt */
.kontakt .container {
    background: var(--blue);
    border-radius: 20px;
}

.kontakt .title-text {
    color: #FFFFFF;
}

.kontakt-img {
    width: 100%;
    max-width: 355px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 20px;
    border: 4px solid var(--pink);
    display: block;
}

.kontakt-content {
    gap: 18px;
}

.kontakt-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.kontakt-icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.kontakt .normal-text {
    font-size: 24px;
    color: #FFFFFF;
    line-height: 1.4;
}

.kontakt .normal-text a {
    color: #FFFFFF;
    text-decoration: none;
    word-break: break-word;
}

.kontakt .normal-text a:hover {
    text-decoration: underline;
}

.kontakt i {
    color: #FFFFFF;
    font-size: 40px;
    line-height: 1;
}

/* Tablet */
@media (max-width: 991.98px) {
    .kontakt .container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .kontakt-img {
        max-width: 320px;
    }

    .kontakt-content {
        align-items: center;
        text-align: center;
    }

    .kontakt-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .kontakt .normal-text {
        font-size: 22px;
    }

    .kontakt i {
        font-size: 36px;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    .kontakt-img {
        max-width: 260px;
    }

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

    .kontakt .normal-text {
        font-size: 18px;
    }

    .kontakt i {
        font-size: 30px;
    }

    .kontakt-item {
        gap: 8px;
    }
}
/* Testimonials */
.testimonials {
    background-color: #E6E6E6;
}

.testimonial-card {
    background-color: #FFFFFF;
    -webkit-box-shadow: 0px 0px 24px -3px rgba(66, 68, 90, 1);
    -moz-box-shadow: 0px 0px 24px -3px rgba(66, 68, 90, 1);
    box-shadow: 0px 0px 24px -3px rgba(66, 68, 90, 1);
    max-width: 1000px;
    border-radius: 10px;
}

.testimonials img {
    max-height: 80px;
}

.testimonials .normal-text {
    color: var(--blue);
    font-size: 18px;
}

/* Form Button */
.form-button-bg {
    background-color: #E6E6E6;
}

/* Footer */
.footer-logo {
    max-width: 100%;
    height: auto;
}

.copy-text {
    color: var(--blue);
    font-weight: 700;
    font-size: 12px;
}

footer .normal-text {
    color: var(--blue);
    font-weight: 700;
}

.footer-icon {
    width: 50px;
    height: auto;
}

.text-footer {
    color: var(--blue);
}

.blue-box {
    background: var(--blue);
}

.blue-box a, 
.blue-box a:link, 
.blue-box a:visited, 
.blue-box a:active {
    color: #FFFFFF;
}

.icon-footer {
    max-height: 40px;
}

/* xxx */

.onas,
.dom,
.zalety,
.proces,
.wartosci,
.kontakt {
    padding: 0 12px;
}

.onas .container,
.onas img,
.dom .container,
.zalety .container,
.proces .container,
.wartosci .container,
.kontakt .container {
    border-radius: 10px;
}

.forms {
    border-radius: 10px;
}

.pc-nav-fix {
    margin-top: 7rem!important;
}

html {
    scroll-padding-top: 80px;
}

.copy-text-white {
    color: #FFFFFF;
}

.rekl-text {
    font-size: 22px;
}

.rekl-img img {
    max-height: 295px;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button {
    font-weight: 600;
    color: #000000;
    border-bottom: 1px solid #e6e6e6;
}

.accordion-item {
    margin-bottom: 10px;

}

.accordion-button:not(.collapsed) {
    color: #000000;
    background-color: unset;
    box-shadow: none;
}

.card {
    box-shadow: 0 8px 30px -7px #c9dff0;
    margin: 0 20px;
    border: 0;
}

.owl-stage-outer {
    padding-bottom: 10px;
}

.active span {
    background: var(--blue)!important;
}

.opinia-name {
    font-size: 21px;
    font-weight: 600;
    color: #193c6c;
}

.opinia-city {
    font-size: 18px;
    color: #193c6c;
}

.opinia-text {
    font-size: 18px;
}

.opinie-container {
    background-color: #E6E6E6;
    border-radius: 10px;
}

@media (max-width: 991px) {
    .kontakt-img {
        max-width: 50%;
        height: auto;
    }

    .pc-nav-fix {
        margin-top: 3rem!important;
    }

    .forms {
        position: static;
        box-shadow: none;
        padding: 30px 30px;
        border: none;
    }

    .form-background {
        margin-top: 72px;
    }

    .footer-logo {
        max-width: 50%;
    }

    footer .bi {
        padding-right: 12px;
    }

    .onas .normal-text {
        font-size: 17px;
    }

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

@media (max-width: 768px) {
    .forms {
        padding: 30px 30px;
    }

    .card-title {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .no-padding {
        padding: 0 !important;
        padding-left: 0;
        padding-right: 0;
    }

    .card-title {
        font-size: 26px;
    }

    .logo-main {
        max-height: 30px;
    }

    .forms {
        padding: 30px 12px;
        margin: 0 12px;
    }

    .form-background {
        margin-top: 62px;
    }

    .forms-title {
        font-size: 26px;
    }

    .testimonials .title-text,
    .onas .title-text,
    .dom .title-text,
    .zalety .title-text,
    .proces .title-text,
    .wartosci .title-text,
    .kontakt .title-text,
    .form-button-bg .title-text {
        font-size: 26px;
    }

    .dom .subtitle-text {
        font-size: 22px;
    }

    .wartosci .normal-text {
        font-size: 22px;    
    }

    .onas .normal-text,
    .kontakt .normal-text {
        font-size: 18px;
    }

    .kontakt i {
        font-size: 32px;
    }

    .proces-title {
        font-size: 22px;
    }

    .bg-text {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 26px;
    }

    .form-background-bg {
        padding-left: 12px;
        padding-right: 12px;
    }

    .forms-col {
        padding: 30px 15px;
    }

    .btn-big {
        font-size: 22px;
    }
}

@media (max-width: 500px) {
    .kontakt-img {
        max-width: 80%;
        height: auto;
    }

    .betreuung-icon {
        max-width: 50px;
    }

    .rekl-cont-cont {
        font-size: 18px;
    }
}

@media (max-width: 323px) {
    .onas .normal-text {
        font-size: 5vw;
    }
}

/* Barrierefreiheit (WCAG 1.4.1): Links im Textfluss duerfen sich nicht
   nur ueber die Farbe unterscheiden - daher Unterstreichung. */
.form-text a,
.kontakt .normal-text a,
.text-footer a,
.copy-text a,
.blue-box a,
.reklamationen-points a,
.rekl-cont-cont a,
.accordion-body a {
    text-decoration: underline;
}