.disko-component-expertise {
    padding: 6% 8%;
}

.disko-component-expertise .expertise-wrapper {
    text-align: center;    
}

.disko-component-expertise .expertise-title {
    font-size: 30px;
    line-height: 40px;
}

.disko-component-expertise .expertise-container {
    margin: 30px 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.disko-component-expertise .word-title {
    display: inline-block;
    margin-bottom: 30px;
    position: relative;
}
.disko-component-expertise .word-title:after {
    content:'';
    width: 75px;
    height: 1px;
    background-color: #03485E;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

.disko-component-expertise .word-hover-title {
    display: inline-block;
    font-size: 60px;
    line-height: 100px;
    transition: all 350ms ease-in-out;
}

.disko-component-expertise .word-hover-title:hover {
    color: #17FA73;
}

@media screen and (min-width: 1025px) {
    
    .disko-component-expertise .cursor {
    top: -100px;
    width: 0;
    height: 0;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transition: all 0.1s linear, top 0ms linear, left 0ms ease-in-out;
    z-index: 15;
    cursor: none;
}
        
    .disko-component-expertise .cursor-image-show {
    width: 200px;
    height: 200px;
    top: auto;
    left: auto;
    border-radius: 50px;
    transform: translate(-40%, -50%) rotate(5deg);
    background-size: cover;
    transition: all 0.2s linear, top 0ms linear, left 0ms ease-in-out;
    border: none;
    mix-blend-mode: normal;
    cursor: none;
}

}

@media screen and (max-width: 768px) {
    
    .disko-component-expertise {
        padding: 40px 8%;
    }
    
    .disko-component-expertise .expertise-title {
        font-size: 20px;
        line-height: 26px;
    }
    
    .disko-component-expertise .expertise-container {
        margin: 30px 0 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .disko-component-expertise .word-hover-title {
        font-size: 26px;
        line-height: 32px;
    }
    .disko-component-expertise .word-title:after {
        width: 38px;
    }

}