/* Tipografía */
@font-face {
    font-family: Avenir roman;
    src: url(../../public/webfonts/Avenir-Roman.woff2) format('woff2'),
        url(../../public/webfonts/Avenir-Black.woff) format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
    font-family: Avenir roman, sans-serif !important;
}

@font-face {
    font-family: Avenir book;
    src: url(../../public/webfonts/Avenir-Book.woff2) format('woff2'),
        url(../../public/webfonts/Avenir-Book.woff) format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Avenir black;
    src: url(../../public/webfonts/Avenir-Black.woff2) format('woff2'),
        url(../../public/webfonts/Avenir-Black.woff) format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: Avenir linght;
    src: url(../../public/webfonts/Avenir-Light.woff2) format('woff2'),
        url(../../public/webfonts/Avenir-Light.woff) format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

body,
section,
main {
    font-family: Avenir roman, sans-serif;
}

/* Variables */
:root {
    --turquesa-medex: #03a591;
    --naranja-medex: #f07f1e;
    --azul-marino-medex: #02547d;
    --gris-claro: #858585;
    --gris-oscuro: #545454;
    --degradado-gdl: linear-gradient(90deg, #03a591 0%, #0880b4 100%);
    --degradado-cdmx: linear-gradient(
        90deg,
        #03547e 0%,
        #01558c 51%,
        #0699d6 100%
    );
    --degradado-cdmx-invertido: linear-gradient(270deg, #03547e 0%, #01568c 51%, #0697d5 100%);
}

/* Botón Medical Expo y Hover botón */
.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: 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%);
}
