.services {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin: auto;
    margin-top: 335px;
    max-width: 1280px;
}
.services > h2 {
    text-align: center;
    font-size: 70px;
    font-family: 'InterTight-Regular';
    color: #222222;
    font-weight: inherit;
    line-height: 100px;
}
.services > h2 > span {
    color: #FC743F;
    font-family: 'InterTight-Bold';
}
.services > ul {
    display: flex;
    justify-content: space-between;
}
.option-services {
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
}
.option-services > div {
    width: 190px;
    height: 190px;
    background-color: #FFFFFF;
    box-shadow: 0px 10px 40px #0000000F;
    border: 2px solid #EEEEEE;
    border-radius: 30px;
    opacity: 1;
    backdrop-filter: blur(5px);
    transition: background-color 3s ease;
}
.option-services > div > img {
    position: absolute;
    margin: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    filter: drop-shadow(0px 20px 30px rgba(0, 0, 0, 0.1));
    transition: transform 0.8s ease;
}
.option-services > p {
    font-size: 22px;
    color: #222222;
    font-family: 'InterTight-SemiBold';
}
@media (min-width: 769px){
    .option-services:hover > div {
        background: transparent linear-gradient(66deg, rgba(254, 143, 56, 1) 0%, rgba(247, 43, 82, 1) 100%) 0% 0% no-repeat padding-box;
        position: relative;
        z-index: 0;
    }
    
    .option-services:hover > div > img {
        transform: translate(-50%, -50%) scale(1.7) rotate(-20deg);
    }
    
    .services-rotate-right:hover > div > img {
        transform: translate(-50%, -50%) scale(1.5) rotate(20deg);
    }
}

@media (max-width: 769px) {
    .services {
        padding: 0px 20px;
        gap: 40px;
        margin-top: 110px;
    }
    .services > ul {
        flex-wrap: wrap;
        row-gap: 30px;
        justify-content: center;
        gap: 12px;
    }
    .option-services > div {
        width: 154px;
        height: 154px;
    }
    .services > h2 {
        font-size: 38px;
        line-height: 44px;
    }
    .option-services > p {
        font-size: 16px;
    }
    .option-services {
        gap: 16px;
    }
}