/* style of history of Dpointgroup */
.testimonial-item.equal-height.style-6 {
    background-color: #eee;
    font-size: 13px;
    border-radius: 10px;
    margin: 10px;
    text-align: left;
    padding: 15px 15px 0px 15px;
    opacity: 0.6;
    transition: 0.3s;

}

.testimonial-item.equal-height.style-6 h4 {
    text-align: center;
}

.testimonial-item.equal-height.style-6:hover {
    opacity: 1;

}

/* End of style of history of Dpointgroup */

/* Style the tab */
.tab {
    overflow: hidden;
    border: 1px solid white;
    background-color: #f1f1f1;
    width: 100%;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    width: 20%;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border-top: none;
}

.tabcontent {
    animation: fadeEffect 1s;
    /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/*turn images into color on hover */
img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
}

img:hover {
    filter: none;
    -webkit-filter: grayscale(0);
}

/*contact on the left and social on the right */
#contact-social {
    width: 70%;
    align-content: center;
}

#contact {
    float: left;
    width: 50%;
}

#social {
    float: right;
    width: 50%;
    padding-top: 64px;
}

footer {
    clear: both;
}