main{
    padding: 50px 0;
    min-height: 60vh;
    .line{
        height: 2px;
        color: var(--blue-color);
    }
    .image{
        box-shadow: 0 0 5px #c2c1c1;
        border-radius: 10px;
        overflow: hidden;
        img{
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    }
    .image-small{
        box-shadow: 0 0 5px #c2c1c1;
        border-radius: 10px;
        overflow: hidden;
        @media(max-width: 767px){
            margin-bottom: 20px;
        }
        img{
            width: 100%;
            height: 100%;
            min-height: 166px;
            object-fit: cover;
        }
    }
    h2{
        font-family: 'Roboto-b';
        color: var(--dark-color-100);
        font-size: 26px;
        line-height: 1;
        margin-bottom: 30px;
    }
    p{
        font-size: 15px;
        font-family: 'Roboto-r';
        line-height: 25.5px;
        &.strong{
            font-family: 'Roboto-m';
        }
    }
}