/* Intro section */

#intro {
    position: relative;
}

.intro__padding-top {
    padding-top: 100px;
}

.intro__title--wrapper {
    text-align: center;
    margin-bottom: 20px;
}

.intro__title--font-size {
    font-size: 60px;
}

.intro__container {
    z-index: 2;
    display: flex;
    position: relative;
    justify-content: center;
}

.intro__content--wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 50%;
    margin-top: 40px;
    margin-inline: 30px;
}

.intro__socials--wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 3vw;
}

.intro__social-icon {
    width: 50px;
    transition: transform .25s;
}

.intro__social-icon:hover {
    transform: scale(1.04);
}

.intro__text--size {
    font-size: 26px;
}

.intro__desktop-image {
    width: 350px;
}

.intro__background-drawing--1 {
    z-index: 1;
    position: absolute;
    opacity: 0.12;
    left: 0;
    top: 0;
}

.intro__background-drawing--1-height {
    height: 700px;
}

.intro__background-drawing--2 {
    z-index: 1;
    position: absolute;
    opacity: 0.12;
    right: 0;
    top: 0;
}

.intro__background-drawing--2-height {
    height: 750px;
}

.intro__mobile-decoration {
    display: none;
}

.intro__mobile-divider-image--wrapper {
    display: none;
}

.intro__mobile-divider-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro__text--1 {
    margin-bottom: 30px;
}  


@media only screen and (max-width: 1600px) {
    .intro__desktop-image {
        width: 300px;
    }

    .intro__background-drawing--1-height {
        height: 650px;
    }

    .intro__background-drawing--2-height {
        height: 700px;
    }

    .intro__social-icon {
        width: 40px;
    }

    .intro__title--font-size {
        font-size: 50px;
    }

    .intro__text--size {
        font-size: 22px;
    }  
}

@media only screen and (max-width: 1350px) {
    .intro__background-drawing--1-height {
        height: 600px;
    }

    .intro__background-drawing--2-height {
        height: 650px;
    } 

    .intro__desktop-image {
        width: 250px;
    }
}

@media only screen and (max-width: 1150px) {
    .intro__background-drawing--1-height {
        height: 500px;
    }

    .intro__background-drawing--2-height {
        height: 550px;
    } 

    .intro__title--font-size {
        font-size: 45px;
    }

    .intro__desktop-image {
        width: 225px;
    }

    .intro__padding-top {
        padding-top: 50px;
    }

    .intro__content--wrapper {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 1000px) {
    .intro__desktop-image {
        display: none;
    }

    .intro__content--wrapper {
        width: 75%;
        margin-top: 20px;
        margin-inline: 30px;
    }

    .intro__socials--wrapper {
        margin-top: 35px;
        gap: 4vw;
    }

    .intro__background-drawing--1-height {
        height: 400px;
    }

    .intro__background-drawing--2-height {
        height: 450px;
    } 

    .intro__title--font-size {
        font-size: 40px;
    }
}

@media only screen and (max-width: 750px) {
    .intro__background-drawing--1 {
        display: none;
    }

    .intro__background-drawing--2 {
        display: none;
    }

    .intro__title--font-size {
        font-size: 35px;
    }
}

@media only screen and (max-width: 600px) {
    .intro__mobile-decoration {
        display: block;
        width: 100%;
        margin: 40px 0 30px 0;
    }

    .intro__mobile-divider-image--wrapper {
        display: block;
        position: relative;
        width: 100%;
        height: 75svh;
    }

    .intro__mobile-divider-image--wrapper::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        border-top: 50px solid transparent;
        border-right: 100vw solid var(--primary-color);
        z-index: 2;
    }

    .intro__content--wrapper {
        width: 100%;
        margin-top: 20px;
        margin-inline: 0;
    }

    .intro__padding-top {
        padding-top: 50px;
    }

    .intro__content--wrapper {
        margin-top: 0;
    }

    .intro__title--wrapper {
        margin-bottom: 40px;
    }

    .intro__text--1 {
        font-size: 20px;
        margin-inline: 10vw !important;
        margin-bottom: 0;
    }  

    .intro__text--2 {
        font-size: 18px;
    }

    .intro__text--2 {
        margin-top: 40px;
    }

    .intro__socials--wrapper {
        gap: 0;
        margin-inline: 10vw;
        justify-content: space-between;
        margin-bottom: 40px;
    }

    .intro__social-icon {
        width: 35px;
    }

    .text {
        line-height: 170%;
    }
}

/* End intro section */