.services{
    display: flex;
    max-width: 1440px;
    margin: auto;
    padding: 120px 40px;
    box-sizing: border-box;
}

.services_container{
    display: flex;
    flex-direction: column;
    gap: 96px;
}

.services_title{
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.services_large{
    font-size: 39px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.39px;
    color: #202020;
}

.services_small{
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    color: #545454;
}

.services_options{
    display: flex;
    gap: 24px;
}

.services_frame{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #eceded;
    border-radius: 12px;
    padding: 24px;
    transition: 0.5s;
    height: 419px;
    width: 274px;
}

.services_box{
    display: flex;
    flex-direction: column;
    gap: 3.889vw;
}

.services_frame a{
    display: flex;
    align-self: flex-end;
    position: relative;
}

.services_icon{
    display: flex;
    width: 3.889vw;
    height: 3.889vw;
    max-width: 56px;
    max-height: 56px;
    background-size: 3.889vw;
    background-repeat: no-repeat;
}

.services_text{
    display: flex;
    flex-direction: column;
    gap: 24px;  
}

.services_big{
    font-size: 25px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.25px;
    color: #202020;
}

.services_tiny{
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    color: #545454;
}

.services_frame:hover{
    background-color: #BA282D;
}

.services_frame:hover .services_big, .services_frame:hover .services_tiny{
    color: #f8f8f8;
}

.services_frame:hover .who_button div{
    transform: rotate(45deg);
}

.services_frame:hover .read_more{
    transform: scaleX(1);
}

@media screen and (max-width: 768px) {
    .services{
        padding: 72px 16px;
    }

    .services_title{
        flex-direction: column;
        justify-content: center;
        gap: 16px;
    }

    .services_options{
        flex-direction: column;
    }

    .services_frame{
        width: 100%;
        box-sizing: border-box;
        height: 467px;
    }

    .read_more{
        display: flex; 
    }

    .services_box{
        gap: 32px;
    }

    .services_icon{
        width: 64px;
        height: 64px;
    }

    .services_frame .read_more{
        transform: scaleX(1);
    }

    .services_frame:hover .who_button div{
       transform: rotate(0deg);
    }

    .services_frame:hover{
        background-color: #eceded;
    }

    .services_frame:hover .services_big{
        color: #202020;
    }

    .services_frame:hover .services_tiny{
        color: #545454;
    }
}

@media screen and (min-width: 1440px){
    .services_small{
        font-size: 20px;
    }

    .services_box{
        gap: 56px;
    }

    .services_icon{
        background-size: 56px;
    }
}