#protocol {
    padding-top: 56px;
}

#protocol h5 {
    margin-bottom: 32px;
    font-size: 32px;
}

#protocol .protocol-image {
    display: flex;
    overflow: hidden;
}

#protocol .hover {
    z-index: 8;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: transparent;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 18px;
    align-items: center;
    width: 100%;
    height: 100%;
    position: absolute;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

#protocol .hover p,
#protocol .hover svg {
    display: none;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}

#protocol .hover p {
    color: var(--color-white);
    text-transform: uppercase;
}

#protocol .hover:hover {
    background-color: rgba(0, 0, 0, 0.6);
}
#protocol .hover:hover p,
#protocol .hover:hover svg {
    display: block;
}

#protocol .protocol-image:hover img {
    transform: scale(1.1);
    overflow: hidden;
}

#protocol img {
    width: 100%;
    transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
}
