/* Images container */
.photo-block {
    width: 100%;
    text-align: center;
}

.photo-block a {
    border-bottom: none !important;
}

.photo-block .docs-container {
    display: inline-block;
    vertical-align: top;
}

.photo-block .docs-container,
.photo-block.single .docs-container {
    width: 100%;
}

.photo-block.double .docs-container {
    width: 48%;
}

.photo-block.triple .docs-container {
    width: 32%;
}

.docs-container .imgs {
    width: 96%;
    margin-left: 2%;
    padding: 2em 0 0 0;
    text-align: center;
}

.docs-container .imgs img {
    display: inline-block;
    box-shadow: 0 0 5px 0 #353535;
    margin-bottom: 10px;
    -webkit-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    -moz-transition: all .4s ease-out;
    -ms-transition: all .4s ease-out;
    -kthtml-transition: all .4s ease-out;
    transition: all .4s ease-out;
    vertical-align: middle;
}

.docs-container .imgs img:hover {
    box-shadow: 0 0 10px 0 #353535;
}

.docs-container.no-shadow .imgs img {
    box-shadow: none !important;
}

.docs-container.far .imgs img {
    margin-left: 5% !important;
    margin-right: 5% !important;
}

.docs-container.closer .imgs img {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.docs-container.single .imgs img {
    max-width: 98%;
}

.docs-container.double .imgs img {
    max-width: 46%;
    margin-left: 1%;
    margin-right: 1%;
}

.docs-container.triple .imgs img {
    max-width: 30.5%;
    margin-left: 1%;
    margin-right: 1%;
}

.docs-container.four .imgs img {
    max-width: 22%;
    margin-left: 1%;
    margin-right: 1%;
}

.docs-container.six .imgs img {
    max-width: 14%;
    margin-left: 1%;
    margin-right: 1%;
}

.docs-container.seven .imgs img {
    max-width: 11%;
    margin-left: 1%;
    margin-right: 1%;
}

.docs-container .desc {
    width: 80%;
    margin-left: 10%;
}

.docs-container .desc p {
    padding: 0;
    text-align: center;
    font-weight: normal;
    font-style: italic;
}

/* !Images container */   