body{
    margin: 0;
    padding: 0;
}

header{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        180deg,
        rgba(146, 3, 255, 0.1) 25%,
        rgba(253, 186, 255, 0.4) 50%,
        rgba(211, 179, 255, 0.4) 120%
    );
}

.titleAbout{
    font-family: 'Poltawski Nowy';
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    margin: 40px 0 0 0;
}

.secondaryTilteAbout{
    font-family: 'Afacad';
    font-size: 25px;
    font-weight: 400;
    text-align: center;
    text-wrap: balance;
    margin: 0;
}

.videoAbout {
    width: 85vw;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #B9B3FF, #F0D2FF);
    border-radius: 60px;
    margin: 40px 0 100px;
    overflow: hidden; 
}

/* Story */

.storyAbout{
    display: flex;
    flex-direction: row;
    /* align-items: center; */
    justify-content: space-around;
    padding: 50px 0 50px 0;
    background: 
    linear-gradient(135deg, #EBB3FF, #CFBBFF, #B3C4FF);
}

.columnLeftStoryAbout{
    display: flex;
    flex-direction: column;
    width: 40%;
}

.columnRightStoryAbout{
    display: flex;
    flex-direction: column;
    width: 40%;
}

.textStoryAbout.marginB{
    margin-bottom: 50px;
}

.titleStoryAbout{
    font-family: 'Poltawski Nowy';
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.textStoryAbout{
    font-family: 'Afacad';
    font-size: 19px;
    font-weight: 400;
    margin: 0;
}

.ctaStoryAbout{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    text-wrap: balance;
    width: 400px;
    height: 40px;
    margin: 30px 0 0 0;
    color: #000;
    border-radius: 3px;
    font-family: 'Afacad';
    font-size: 19px;
    font-weight: 400;
    background-color: #EBB3FF;
    box-shadow: 
    0px 1px 4px 0px rgba(0,0,0,0.25),
    inset 0px 4px 10px 6px rgba(255,255,255,0.35),
    inset 0px -4px 4px 0px rgba(0,0,0,0.15),
    inset -1px 0px 4px 0px rgba(0,0,0,0.25),
    inset 3px 0px 6px 2px rgba(255,255,255,0.25);
    transition: 0.3s ease;
}

.ctaStoryAbout:hover{
    transform: scale(1.01);
}

.ctaStoryAbout:active{
    transform: scale(0.97);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}


/* End story */

/* CTA Home */

.ctaHome{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #F4F4F4;
    padding: 40px 0 40px 0;
    width: 100%;
}

.titleCtaHome{
    font-size: 42px;
    font-weight: 600;
    margin: 0;
}

.textCtaHome{
    font-family: 'Afacad';
    font-size: 19px;
    font-weight: 400;
    text-wrap: balance;
    margin: 10px 0 20px 0;
    width: 35%;
}

.btnCtaHome{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 40px;
    background-color: #B3C4FF;
    color: #000;
    font-family: 'Afacad';
    font-size: 17px;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 
    0px 1px 4px 0px rgba(0, 0, 0, 0.25),
    inset 0px 4px 10px 6px rgba(255, 255, 255, 0.35),
    inset 0px -4px 4px 0px rgba(0, 0, 0, 0.15),
    inset -1px 0px 4px 0px rgba(0, 0, 0, 0.25),
    inset 3px 0px 6px 2px rgba(255, 255, 255, 0.25);
    transition: 0.3s ease;
}

.btnCtaHome:hover{
    transform: scale(1.05);
}

/* End CTA Home */



@media(max-width: 1080px){
    .titleAbout{
        width: 80%;
    }

    .secondaryTilteAbout{
        width: 80%;
    }
}

@media(max-width: 834px){
    .titleCtaHome{
        font-size: 32px;
    }

    .textCtaHome{
        width: 80%;
        font-size: 17px;
    }

    .storyAbout{
        flex-direction: column;
        gap: 50px;
    }

    .columnLeftStoryAbout{
        width: 80%;
    }

    .columnRightStoryAbout{
        width: 80%;
    }
}

@media(max-width: 768px){
    .titleAbout{
        font-size: 48px;
    }

    .secondaryTilteAbout{
        width: 80%;
        font-size: 17px;
    }

    .titleStoryAbout{
        font-size: 32px;
    }

    .textStoryAbout{
        font-size: 17px;
    }

    .videoAbout{
        margin-bottom: 50px;
    }
}

@media(max-width: 634px){
    .titleAbout{
        font-size: 32px;
    }

    .titleStoryAbout{
        font-size: 26px;
    }
}

@media(max-width: 576px){
    .titleCtaHome{
        font-size: 28px;
    }

    .ctaStoryAbout{
        width: 280px;
        padding: 12px 0 12px 0;
        line-height: 100%;
    }
}