section#content2{
    position: relative;
}

section#content2 .container{
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
    overflow: visible;
}

section#content2 .leftside{
    flex: 0 0 45%;
}

section#content2 .leftside img{
    border-radius: 15px;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

section#content2 .rightside{
    flex: 0 0 50%;
}

section#content2 .rightside p{
    font-size: 20px;
}

section#content2 .rightside h2{
    margin-top: 0;
    color: #293080;
    font-size: 60px;
    line-height: 65px;
    font-weight: bold;
}

@media screen and (max-width: 1000px) {
    section#content2 .rightside h2{
        font-size: 30px;
        line-height: 43px;
    }

    section#content2 .rightside p{
        font-size: 16px;
        line-height: 26px;
    }
}

@media screen and (max-width: 800px) {
    section#content2 .leftside{
        flex: 0 0 100%;
    }

    section#content2 .rightside{
        flex: 0 0 100%;
        margin-top: 20px;
    }
}