.space {
    padding: 8vh 0;
}


.background {
    width: 100%;
    height: 100vh;
    background: #c59e9e;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    transition: background-color 0.5s;
}


h1 {
    font-family: "Mallory Compact", sans-serif;
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-top: 1rem;
}

.opis {
    font-family: "SF Pro Display", sans-serif;
    font-weight: 400;
    font-size: 18px;
    padding: 0.5rem;
    line-height: 150%;
}

.cta {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #CC2A33;
    color: white;
    font-size: 20px;
    font-family: "SF Pro Display", sans-serif;
    text-decoration: none;
    border-radius: 30px;
    min-width: 200px;

    transition: transform 0.5s ease, background-color 0.5s ease, color 0.5s ease;
}

.a {
    text-decoration: none;
    color: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.product h1 {
    margin-bottom: 2rem
}


.background-img img {
    width: 1000px;
    height: 615px;
    object-fit: cover;
    transition: opacity 0.5s;
}

.product {
    background: white;
    border-radius: 30px;
    height: 80vh;
    width: 22vw;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mountain-bg .tekst {
    text-align: justify;
}
.mountain-bg .product {
    height: 50vh;
}


.cls-4 {
    transition: fill 0.5s ease, transform 0.75s ease, opacity 0.5s ease;
    transform: scale(1);
    transform-origin: left;
}


.cls-4:hover {
    fill: #ffffff;
    transition: fill 0.5s ease, transform 0.75s ease, opacity 0.5s ease;
    transform: scale(1)
}

.cls-1 {
    transition: fill 0.5s ease, transform 0.75s ease, opacity 0.5s ease;
    transform: scale(1);
    transform-origin: left;
}

.cls-1:hover {
    fill: #ffffff;
    transition: fill 0.5s ease, transform 0.75s ease, opacity 0.5s ease;
    transform: scale(1)
}

.cls-2 {
    transition: fill 0.5s ease, transform 0.75s ease, opacity 0.5s ease;
    transform: scale(1);
    transform-origin: left;
}

.cls-2:hover {
    fill: #ffffff;
    transition: fill 0.5s ease, transform 0.75s ease, opacity 0.5s ease;
    transform: scale(1)
}


.cls-6 {
    transition: fill 0.5s ease, transform 0.75s ease, opacity 0.5s ease;
    transform: scale(1);
    transform-origin: left;
}

.cls-6:hover {
    fill: #ffffff;
    transition: fill 0.5s ease, transform 0.75s ease, opacity 0.5s ease;
    transform: scale(1)
}

.cls-3 {
    transition: fill 0.5s ease, transform 0.75s ease, opacity 0.5s ease;
    transform: scale(1);
    transform-origin: left;
}

.cls-3:hover {
    fill: #ffffff;
    transition: fill 0.5s ease, transform 0.75s ease, opacity 0.5s ease;
    transform: scale(1)
}



.grey {
    background: #E8E8E8;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.white {
    background: #ffffff;
    font-family: "SF Pro Display", sans-serif;
    font-weight: 600;
    font-size: 18px;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.staty {
    padding: 1rem;
    display: flex;
    flex-direction: column;   
}

.product .cta {
    width: 30%;
}

.mountain-bg .product .cta {
    margin-top: 0.5rem;
}

h2 {
    font-family: "Mallory Compact", sans-serif;
    font-size: 36px;
    font-weight: 900;
    text-align: center;
}

.nazwa-koloru {
    font-family: "SF Pro Display", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #4C0001;
    margin: 0.25rem;
    transition: opacity 0.5s, color 0.5s;
}


.kolor {
    border-radius: 50%;
    height: 35px;
    width: 35px;
    background: #4C0001;
    flex-shrink: 0;
    margin-top: 0.5rem;
    cursor: pointer;
    transition: transform 0.5s;
}

.kolor:hover {
    transform: scale(1.2);
    border: 2px solid rgba(0, 0, 0, 0.2);
}

.kolor.active {
    border: 2px solid black;
}


.kolor:nth-child(2) {
    background: #355446;
}

.kolor:nth-child(3) {
    background: rgb(39, 39, 39);
}



.kolory-wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.tekst h1 {
    padding-bottom: 1rem;
    padding-top: 0rem
}

.mountain-bg {
    width: 100%;
    height: 80vh;
    background: #E3E3E3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5rem;

}

.wykres {
    width: 50%;
    height: auto;
    display: flex;
}

.mountain-bg .tekst {
    padding-bottom: 0rem;
}


.mountain-bg .wykres,
.mountain-bg .product {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.mountain-bg .wykres.animate,
.mountain-bg .product.animate {
    opacity: 1;
    transform: translateY(0);
}