.smallIntro {
    width: 90%;
    max-width: 1920px;
    height: auto;
    margin: 0 auto;
    padding: 100px 0;
    display: flex;
}

.smallIntro>div{
    width: 100%;
}

.sInContent>h2 {
    font-size: 120%;
    font-family: var(--font2);
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 25px;
}

.sInContent>h1 {
    font-size: 300%;
    text-transform: capitalize;
    font-family: var(--font1);
    font-weight: 100;
    width: 90%;
    margin-bottom: 200px;
}

.sInContent>p {
    width: 90%;
    font-size: 100%;
    font-family: var(--font2);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 25px;
}

@media only screen and (max-width: 1400px) {
    .sInContent>h2 {
        font-size: 120%;
    }
    .sInContent>h1 {
        font-size: 250%;
    }

    .sInContent>p {
        font-size: 95%;
    }
}

@media only screen and (max-width: 1080px) {
    .sInContent>h2 {
        font-size: 100%;
    }
    .sInContent>h1 {
        font-size: 200%;
    }

    .sInContent>p {
        font-size: 90%;
    }
    .sInElement{
        max-width: 500px !important;
    }
}

@media only screen and (max-width: 992px) {
    .smallIntro {
        flex-direction: column;
        gap: 50px;
    }
    .sInContent>h2 {
        font-size: 120%;
    }
    .sInContent>h1 {
        font-size: 250%;
    }

    .sInContent>p {
        font-size: 95%;
    }

    .sInElement{
        max-width: 100% !important;
    }
}

@media only screen and (max-width: 576px) {
    .sInContent>h2 {
        font-size: 100%;
    }
    .sInContent>h1 {
        font-size: 200%;
    }

    .sInContent>p {
        font-size: 90%;
    }
}