﻿body {
}

#simbusiness_row_div {    
    /*border: 1px solid red;*/
    width: 100%;    
    padding: 10px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.content_div {    
    /*border: 1px solid blue;*/
    padding: 5px;
}

.paragraph_item {
    /*border: 1px solid red;*/    
    padding-bottom: 20px;
}

.paragraph_text {
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    font-weight: lighter;
    color: #808080;
}


.images_container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

images_container {
    display: flex;
}

.images_item {
    /*border: 1px solid blue;*/
    text-align: center;
    padding: 5px;    
    height: 100%;
    width: 100%;
}

/*img#pic_1 {
    max-width: 600px;
    max-height: 100%;    
}*/

/* M E D I A  Q U E R I E S */

/*LARGE DESKTOP*/
@media (min-width: 1201px) and (max-width: 2000px) {
    img.image_item {
        /*max-height: 100%;*/
        /*max-width: 100%;*/
        width: 80%;
    }

}

/* DESKTOP */
@media (min-width: 1025px) and (max-width: 1200px) {
    img.image_item {
        max-height: 100%;
        max-width: 700px;
    }

    .content_div {
        width: 90%;
    }

    .paragraph_text {
        text-align: justify;
    }
    .paragraph_text > br {
        display: none;
    }

}

/* PORTRAIT TABLET TO LANDSCAPE AND DESKTOP */
@media (min-width: 768px) and (max-width: 1024px) {
    img.image_item {
        max-height: 100%;
        max-width: 500px;
    }

    .content_div {
        width: 90%;
    }

    .paragraph_text {
        text-align: justify;
    }

    .paragraph_text > br {
        display: none;
    }

}

@media(max-width: 767px) {
    img.image_item {
       max-height: 100%;
        max-width: 100%;
    }
    .content_div {        
        padding: 5px;
        width: 90%;
    }
    .paragraph_text {
        text-align: justify;
    }
    .paragraph_text > br {
        display: none;
    }

}

/* LANDSCAPE PHONES AND DOWN */
@media(max-width: 480px) {
    img.image_item {
        max-height: 100%;
        max-width: 100%;
    }
    .content_div {        
        padding: 5px;
        width: 90%;
    }
    .paragraph_text {
        text-align: justify;
    }
    .paragraph_text > br {
        display: none;
    }
}