#header {}

/*----------------------------------------------------------------------------------------------------*/

#header > .content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}
#header > .content-wrapper:first-child {
    margin-bottom: 75px;
    text-align: center;
}

/*----------------------------------------------------------------------------------------------------*/

#header > .content-wrapper > .title {
    margin-bottom: 50px;
    font-weight: 700;
}
#header > .content-wrapper > .title > span { font-weight: 100; }
@media (min-width: 900px)    { #header > .content-wrapper > .title { font-size: 60px; } }
@media (max-width: 899.99px) { #header > .content-wrapper > .title { font-size: 30px; } }
#header > .content-wrapper > .cta-btn {
    display: flex; min-height: 50px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 25px;
    
    background-color: var(--main-color);
    border-radius: 25px;
    
    text-align: center;
    font-size: 16px;
    color: #000;
}
.loaded #header > .content-wrapper > .cta-btn {
    transition:
        background-color .2s ease-out,
        color            .2s ease-out;
}
#header > .content-wrapper > .cta-btn:hover {
    background-color: #000;
    color: #FFF;
}

/*----------------------------------------------------------------------------------------------------*/

#header > .swiper {
    pointer-events: none;
    user-select: none;
}
@media (min-width: 900px)    { #header > .swiper { margin-bottom: 100px; } }
@media (max-width: 899.99px) { #header > .swiper { margin-bottom: 50px; } }
#header > .swiper > .swiper-wrapper { transition-timing-function: linear !important; }
#header > .swiper > .swiper-wrapper > .swiper-slide {
    position: relative;
    width: 300px; overflow: hidden;
    margin-left: 30px;
    
    border-radius: 40px;
}
#header > .swiper > .swiper-wrapper > .swiper-slide > img {
    position: absolute; top: 0; left: 0;
    display: block; height: 100%; width: 100%;
    
    object-fit: cover;
    object-position: center;
}
#header > .swiper > .swiper-wrapper > .swiper-slide:after {
    content: '';
    display: block;
    padding-top: 120%;
}

/*----------------------------------------------------------------------------------------------------*/

#header > .content-wrapper > .intro {
    position: relative;
    display: flex;
    align-items: center;
}
#header > .content-wrapper > .intro > .content {
    flex: 1;
    line-height: 170%;
    font-weight: 300;
}
#header > .content-wrapper > .intro > .avatar {}

@media (min-width: 1100px) {
    #header > .content-wrapper > .intro {
        flex-direction: row;
        column-gap: 100px;
    }
    #header > .content-wrapper > .intro > .content { flex: 1; }
    #header > .content-wrapper > .intro > .avatar { height: 450px; flex: 0 0 450px; }
    #header > .content-wrapper > .intro > .avatar > img {
        display: block; height: 100%; width: 100%;

        object-fit: contain;
        object-position: center;
    }
}
@media (max-width: 1099.99px) {
    #header > .content-wrapper > .intro {
        flex-direction: column;
        row-gap: 50px;
    }
}