.data-handling-title {
    color: white;
    font-style: italic;
    font-weight: 700;
}

.data-handling-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.data-handling-section::before {
    background-color: #f4d215;
    width: 150px;

    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    transform: skewX(-45deg);
    z-index: -1;
    left: -100px;
}

.data-handling-section::after {
    background-color: #f7fafa;
    width: 150px;

    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    transform: skewX(-45deg);
    z-index: -1;
    right: -100px;
}

.data-handling-button {
    color: #fff!important;
    background: #e52f37;
    border: 1px solid #e52f37;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border-radius: 23px 23px;
    padding: 12px 18px!important;
    margin-left: 10px;
    margin-right: 15px;
    font-family: 'Nunito', sans-serif;
}
.data-handling-button:hover {
    border: 1px solid #e52f37;
    color: #e52f37!important;
    background: transparent;
}

