/*
.container-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.contact-overlay-wrap {
    width: 100%;
    display: flex;
}
.boxes-item-wrap {
    width: 33.33%;
    display: flex;
    flex-direction: row;
    border-right: 1px solid #efefef;
}
.container-wrap h3 {
    font-size: 2.25rem;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-align: center;
}
.container-wrap p {
    font-family: 'Roboto', sans-serif;
    color: #fff;
    line-height: 140%;
    font-size: 1.25rem;
    width: 100%;
    text-align: center;
    margin: 25px 0 0 0;
    min-height: 100px;
}
.container-wrap .readmore {
    width: auto;
    display: inline-block;
    font-size: 1.375rem;
    color: #fff;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    background: url(./img/link-arrow-white.png)no-repeat 100% 50%;
    padding: 0 40px 0 0;
}
.container-wrap .readmore:hover {
    color: #2d6fab;
}
.container-wrap img {
    display: block;
    width: 100%;
    height: 100%;
}
.showtext {
    position: absolute;
    bottom: 0;
    left: 0;
    right:0;
    text-align: center;
    background: rgba(0,0,0, 0.75);
    height: auto;
    transition: .5s ease;
    padding: 25px 0 35px;
}
.container-wrap:hover .showtext {
    bottom: -50%;
}
.overlay {
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background: rgba(0,0,0, 0.75);
    overflow: hidden;
    width: 100%;
    height:0;
    transition: .5s ease;
}
.container-wrap:hover .overlay {
    bottom: 0;
    height: 100%;
}
.top-bottom {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 50px;
    text-align: center;
}
*/