.info_section{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    padding-top: 140px;
    padding-bottom: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.info_section:first-of-type{ 
    padding-top: 70px;
}

/* title */

.info_section h2{
    width: 400px;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
    color: var(--text1);
}

/* text */

.info_section p{
    width: 520px;
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
    color: var(--text2);
}

/* image */

.info_section img{
    width: fit-content;
    height: fit-content;
}

/* --- Media --- */

@media screen and (max-width: 1100px) {
    
    .info_section img{
        width: 75%;
    }

    .info_section:first-of-type img{
        width: fit-content;
    }
}

@media screen and (max-width: 600px) {
   
    .info_section{
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .info_section:first-of-type{
        padding-top: 30px;
    }

    .info_section:first-of-type img{
        width: 80%;
    }

    /* title */
    
    .info_section h2{
        width: 94%;
    }

    /* text */

    .info_section p{
        width: 96%;
    }

    /* image */

    .info_section img{
        width: 100%;
    }
}