.image-with-text {
    padding-bottom: 200px;
    max-width: 1440px;
    margin: auto;
}

#image-with-text-1 {
    padding-bottom: 100px;
    padding-top: 20px;
}

.image-with-text .content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 100px;
    align-items: center;
}

.image-with-text .left-column img {
    border-radius: 6px;
}

.image-with-text .right-column h2 {
    font-family: 'Montserrat';
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1b3b6b;
}

.image-with-text .right-column p:nth-child(3) {
    margin-bottom: 20px;
}

@media (max-width: 1600px) {
    .image-with-text .right-column p {
        font-size: 18px;
    }
}

@media (max-width: 1440px) {
    .image-with-text {
        max-width: 1300px;
    }

    .image-with-text .right-column p {
        font-size: 16px;
    }
}

@media (max-width: 1340px) {
    .image-with-text {
        max-width: 1200px;
    }

    .image-with-text .right-column h2 {
        font-size: 38px;
    }
}

@media (max-width: 1279px) {
    .image-with-text {
        max-width: unset;
        padding: 100px 40px 0;
        padding-top: 0;
        padding-bottom: 100px;
    }

    #image-with-text-1 {
        padding-bottom: 0;
    }

    .image-with-text .content-wrapper {
        column-gap: 50px;
    }
}

@media (max-width: 840px) {
    .image-with-text .left-column img {
        height: 400px;
    }
}

@media (max-width: 767px) {
    .image-with-text {
        padding: 70px 20px 0;
    }

    #image-with-text-1 {
        padding-bottom: 0;
    }

    .image-with-text .content-wrapper {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .image-with-text .right-column h2 {
        font-size: 32px;
    }

    .image-with-text .right-column p {
        font-size: 12px;
    }

    .image-with-text .left-column img {
        width: 100%;
    }
}