@font-face {
    font-family: Avenir roman;
    font-weight: normal;
    src: url(../../../font/Avenir-Roman.ttf);
}

@font-face {
    font-family: Avenir linght;
    font-weight: normal;
    src: url(../../../font/Avenir-Light.ttf);
}

@font-face {
    font-family: Avenir heavy;
    font-weight: normal;
    src: url(../../../font/Avenir-Heavy.ttf);
}

@font-face {
    font-family: Avenir black;
    font-weight: normal;
    src: url(../../../font/Avenir-Black.ttf);
}

@font-face {
    font-family: Avenir book;
    font-weight: normal;
    src: url(../../../font/Avenir-Book.ttf);
}

body,
section,
main {
    font-family: Avenir roman;
}

/* --------- Botón finalizar --------- */
.box-footer {
    display: flex;
    justify-content: center;
}

.btn-20,
.btn-20 *,
.btn-20 :after,
.btn-20 :before,
.btn-20:after,
.btn-20:before {
    border: 0 solid;
    box-sizing: border-box;
}

.btn-20 {
    -webkit-tap-highlight-color: transparent;
    background-color: #F07F1E;
    background-image: none;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    margin: 0;
    padding: 0;
    width: 380px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-20:disabled {
    cursor: default;
}

.btn-20:-moz-focusring {
    outline: auto;
}

.btn-20 [hidden] {
    display: none;
}

.btn-20 {
    border-radius: 99rem;
    border-width: 2px;
    overflow: hidden;
    padding: 0.8rem 3rem;
    position: relative;
}

.btn-20 span {
    mix-blend-mode: color-dodge;
}

.btn-20:before {
    background: var(--degradado-marino-claro-medex, linear-gradient(90deg, #03547E 0%, #01558C 51%, #0699D6 100%));
    content: "";
    display: block;
    height: 100%;
    left: -100%;
    position: absolute;
    top: 0;
    transform: skew(0deg) translateX(-20%);
    transition: transform 0.2s ease;
    width: 120%;
}

.btn-20:hover:before {
    transform: skew(-45deg) translateX(75%);
}