/* WHAT WE DO SECTION */

#whatWeDo {
    background: linear-gradient(rgba(28, 64, 125, .6), rgba(28, 64, 125, .6)), url("../custom-images/banner.jpg");
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Tanıtım Section */

#tanitim .col-md-3 {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}

#tanitim h4 {
    font-size: 16px;
    font-weight: 300;
}

#tanitim .fa {
    font-size: 24px;
    margin-bottom: 20px;
}

#tanitim p {
    font-size: 14px;
    font-weight: 300;
}

.imageContainer {
    position: relative;
    cursor: pointer;
}

.imageOverlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: #00aecd;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.imageContainer:hover .imageOverlay {
    opacity: 0.7;
}

.imageText {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

