*,
*:before,
*:after {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
}

.main-title {
    color: #2d2d2d;
    text-align: center;
    text-transform: capitalize;
    padding: 0.7em 0;
}

.containerSpec {
    margin: 1% 0;
    padding: 1em 0;
    float: left;
}

@media screen and (max-width: 640px) {
    .containerSpec {
        display: block;
    }
}

.containerSpec .title {
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 10px;
}

.content {
    position: relative;
    width: 90%;
    max-width: 400px;
    margin: auto;
    overflow: hidden;
}

.content .content-overlay {
    background: #000000a2;
    position: absolute;
    height: 99%;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-overlay, .content:active .content-overlay  {
    opacity: 1;
}

.content-image {
    width: 100%;
}

.content-details {
    position: absolute;
    text-align: center;
    padding-left: 1em;
    padding-right: 1em;
    width: 100%;
    top: 50%;
    left: 50%;
    opacity: 0;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.content:hover .content-details, .content:active .content-details {
    top: 50%;
    left: 50%;
    opacity: 1;
}

.content-details p {
    color: #fff;
    font-size: 1em;
    font-weight: 300;
}

.fadeIn-top {
    top: 40%;
}

/*FOOTER*/
footer a {
    color: #649aec;
    transition: .1s;
}
footer a:hover {
    color: #3f7fdf;
}


@media (max-width: 640px) {
    .mainLogo {
        max-height: 50px;
    }
    .containerSpec .content:active a {
        pointer-events: none;
    }
    .containerSpec .content .openLink {
        pointer-events: auto;
    }
}