/* Grid */

.eg-col-full, .eg-col-full-custom .eg-cols, .eg-col-full-custom .eg-col {
    width: 100%;
    float: left;
}

.eg-col-two, .eg-col-two-custom .eg-cols, .eg-col-two-custom .eg-col {
    width: 50%;
    float: left;
}

.eg-col-three, .eg-col-three-custom .eg-cols, .eg-col-three-custom .eg-col {
    width: 33.33%;
    float: left;
}

.eg-col-four, .eg-col-four-custom .eg-cols, .eg-col-four-custom .eg-col {
    width: 25%;
    float: left;
}

.eg-col-six, .eg-col-six-custom .eg-cols, .eg-col-six-custom .eg-col {
    width: 16.66%;
    float: left;
}


/* Responsive */

@media screen and (max-width: 1200px) {

    .eg-col-four, .eg-col-four-custom .eg-cols, .eg-col-four-custom .eg-col {
        width: 33.33%;
    }

    .eg-col-six, .eg-col-six-custom .eg-cols, .eg-col-six-custom .eg-col {
        width: 25%;
    }

}

@media screen and (max-width: 900px) {

    .eg-col-three, .eg-col-three-custom .eg-cols, .eg-col-three-custom .eg-col {
        width: 50%;
    }

    .eg-col-four, .eg-col-four-custom .eg-cols, .eg-col-four-custom .eg-col,
    .eg-col-six, .eg-col-six-custom .eg-cols, .eg-col-six-custom .eg-col {
        width: 33.33%;
    }

}

@media screen and (max-width: 600px) {

    .eg-col-three, .eg-col-three-custom .eg-cols, .eg-col-three-custom .eg-col,
    .eg-col-four, .eg-col-four-custom .eg-cols, .eg-col-four-custom .eg-col,
    .eg-col-six, .eg-col-six-custom .eg-cols, .eg-col-six-custom .eg-col {
        width: 50%;
    }

}

@media screen and (max-width: 450px) {

    .eg-col-two, .eg-col-two-custom .eg-cols, .eg-col-two-custom .eg-col,
    .eg-col-three, .eg-col-three-custom .eg-cols, .eg-col-three-custom .eg-col,
    .eg-col-four, .eg-col-four-custom .eg-cols, .eg-col-four-custom .eg-col,
    .eg-col-six, .eg-col-six-custom .eg-cols, .eg-col-six-custom .eg-col {
        width: 100%;
    }

}
