/*! HTML5 Boilerplate v6.1.0 | MIT License | https://html5boilerplate.com/ */

/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

   html {
    color: #222;
    font-size: 1em;
    line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */

 ::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

 hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */

 audio,
 canvas,
 iframe,
 img,
 svg,
 video {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

 fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

 textarea {
    resize: vertical;
}

/* ==========================================================================
   Browser Upgrade Prompt
   ========================================================================== */

   .browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
   html{
    box-sizing: border-box;  
}
*,*:before,*:after{
    box-sizing: inherit;
}
body{
    background-color: #f2f2f2;  
    font-family: 'Thasadith', sans-serif;
}
/* Globales */
.contenido-original{
    width: 100%;
}

.contenedor{
    width: 84%;
    margin: 0 auto;

}
@media only screen and (min-width:480px){
    .contenedor{
        width: 95%;

    }
}

@media only screen and (min-width:768px){
    .contenedor{
        width: 90%;
        
    }
}

@media only screen and (min-width:992px){
    .contenedor{
        width: 90%;
        max-width: 1100px;

    }
}

h2{
    font-size: 2em;
    text-transform: uppercase;
    text-align: center;
}
h2::after {
    content: "";
    margin: 0 auto;
    background-image: url(../img/separador.png);
    height: 30px;
    width: 100px;
    display: block;
    
    
}



/* Header */

div.hero{
    background-image: url(../img/callCenter.jpg);
    background-attachment: fixed;
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 85vh;
}
div.contenido-header{
    margin: 220px 0;
    padding: 10px 0px;
    font-family: 'Thasadith', sans-serif;
    background-color: rgba(25, 22, 22, 0.38);
    animation-duration: 1.5s;
} 

@media only screen and (min-width:768px){
    div.contenido-header{
        width: 70%;
        margin: 220px auto;
        padding: 10px 0;
        background-color: rgba(25, 22, 22, 0.38);

    }
    
}

nav.redes-sociales{
    text-align: center;
    animation-duration: 1s;
    animation-delay: 0.5s;    
}
nav.redes-sociales a{
    color: #939496;
    font-size: 2em;
    margin-right: 20px;
}

nav.redes-sociales a:last-child{
   margin-right: 0;
}

div.informacion-sitio{
    text-align: center;
    color: #e0e0e0;
    margin: 0 20px;
    
}
@media only screen and (min-width:768px){
    div.informacion-sitio{
        width: 70%;
        margin: 10px auto;    
    }
}
div.informacion-sitio p{
    margin: 0;
    display: inline-block;
    font-size: 20px;
    text-transform: uppercase;
    text-align: center;

}

div.informacion-sitio p i{
    color: #fe4518;
    font-size: 2rem;
    
    
}


h1.nombre-sitio{
    font-family: 'Thasadith', sans-serif;
    font-size: 8vw;
    text-transform: uppercase;
    
}

h1.nombre-sitio span{

    color: #c7010e;
}

p.slogan{
    text-transform: none!important;
}
p.slogan span{
   font-weight: bold;
}

@media only screen and (min-width:768px){

    h1.nombre-sitio{
        font-size: 4.5vw;
        margin: 0px;
        line-height: 1;
    }
    h1.nombre-sitio span{
        font-size: 4.5vw;
        margin: 0px;
        line-height: 1;
        color: #c7010e;
    }
}

/* Barra */
.contenedor2{
    width: 84%;
    margin: 0 auto;
    display: flex;
    align-items:center;
    align-content: space-between;
    animation-delay: 0.7s;
}

div.barra{
    background-color: #494848;
    position: sticky;
    top: 0;
    z-index: 1;
}

div.logo{
    width: 80%;
    padding: 15px 0;
}

div.logo img{
    width: 50%;
    
    
}

@media only screen and (max-width:768px){
    div.barra{
        padding: 20px 0;
        position: sticky;
        top: 0;
    }
    div.logo img{
        width: 50%;
        float: left;
        margin-right: 150px;
    }
    .contenedor2{
        display: block;
    }
}

@media only screen and (min-width:768px){
    div.logo {
        width:33%;
        float: left;
    }

}

/* Menu movil*/

div.menu-movil i{
    font-size: 2.1rem;
    color: #e0e0e0;
}

div.menu-movil:hover{
    cursor: pointer;
}

@media only screen and (min-width:768px) {
    div.menu-movil{
        display: none;
    }
}



/* Navegacion principal */

nav.navegacion-principal {
     display:none;
}

nav.navegacion-principal a{
    font-family: 'Thasadith', sans-serif;
    color: white;
    font-size: 1.3em;
    text-transform: capitalize;
    text-decoration: none;
    transition: all .3s ease-in;
    width: 100%;
    display: inline-block;
    margin-bottom: 20px;
    text-align: center;
    

}



@media only screen and (max-width:768px){
    nav.navegacion-principal {
        margin-top: 25px;
    }
}


@media only screen and (min-width:768px){
    nav.navegacion-principal {
        width:100%;
        float: right;
        text-align: right;
        display: block;
       
    }

    nav.navegacion-principal a{
        margin: 12px 20px;
        padding: 10px 10px;
        width: auto;
        display: inline-block;
        text-align: center;

    }

  
}






/** Footer **/

div.barra2{
    background-color: #494848;
    padding: 20px 0;
    display: flex;
    justify-content: flex-end;
    align-content: center;
}

div.todo{
    width: 80%; 
    margin: 0 auto;
}

div.copy{
    color: white;
    font-family: 'Oswald', sans-serif;
    margin: 0 auto;
    text-align: right;
    font-size: .9rem;
    font-style: italic;
}

div.direccion{
    color: white;
    font-family: 'Oswald', sans-serif;
    margin: 0 auto;
    text-align: right;
    font-size: .9rem;
}

.redes-bebe{
    display: flex;
    justify-content: space-between;
}

.redes-bebe div{
    margin: auto 15px;
}

.politicas ul{
    list-style: none;
}

.politicas ul a{
    text-decoration: none;
    color: white;
}

.politicas ul li{
    margin: 20px;
}



@media only screen and (min-width: 768px){
    div.logo{
        width: 33%;
        
    }
}


@media only screen and (min-width: 768px){
    div.logo{
        width: 33%;
        
    }
}



@media only screen and (min-width: 768px){
    section.seccion{
        display: flex;
        width: 100%;
        justify-content: space-around;
        padding-bottom: 65px;
        margin: 0;
        text-align: justify
    }

    section.seccion3{
        background-color: rgba(218, 218, 218, 0.26);
        padding: 30px;
        margin: 45px auto;
        width: 85%;
        display: grid;
        grid-template-columns: 50% 50px 45%;
        grid-template-rows: 45% 19px 52.4%;
        text-align: justify;
        justify-items: center;
              
    }

    .grid-2{
        grid-column-start: 3;
    }
    
    .grid-2 img{
        align-self: center;
    }

    .grid-3{
        grid-row-start: 3;
    }
    .grid-4{
        grid-column-start: 3;
        grid-row-start: 3;
    }

    .subgrid{
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }


    section .separacion{
            width: 80%;
    }

    section .separacion2{
        width: 80%;
    }

    section .caja{
        height: 39.4%;
        margin-top: 45px;
    }

    section.seccion p{
        text-align: center;
        width: 65%!important;
        margin: 30px auto;
    }    
}

@media only screen and (max-width: 768px){
        section.seccion3{
            margin: 20px auto;
            width: 80%;
            display: block;
            text-align: justify;    
        }
}

.subgrid{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}



section.seccion .separacion p{
    margin:6px auto;
    width: 80%;
    text-align: justify;
}

section.seccion .separacion2 p{
    margin:15px auto;
    width: 80%;
    text-align: justify;    
}

section.seccion{
    padding-bottom: 100px;
}

div.navbebe{
    width: 30%;
}

/* -----------Formulario */

.formulario{
    width:80%;
    margin: 0 auto;
}

@media only screen and (min-width: 768px){

    .contenidoform{
        width: 50%;
        margin: 0 auto;
        padding: 40px;
    }

}

.contenidoform{
    width: 80%;
    margin: 0 auto;
}

@media only screen and (max-width: 768px){

        label#id{
                content: "";
                margin: 0 auto;
                background-image: url(../img/separador.png);
                height: 30px;
                width: 100px;
                display: block;
            }
}

.lista{
    list-style-type: none;
    background-color: white;
    padding: 15px;
    border-radius: 3px; 
}

.puntos{
    padding: .5em;
    display: flex;
    justify-content: flex-end;
}

.puntos > label{
    padding: .5em 1em .5em 0;
    flex: .2;
    color: #000;
}

.puntos > input,
.puntos > textarea{
    padding: .5em;
    flex: 1;
}

.puntos > textarea{
    resize: none;
}

.puntos > button {
    background-color: #494848;
    color: white;
    border: 6px;
    height: 35px;
    width: 80px;
    cursor: pointer;
    transition:all .3s ease-in;
    opacity: .2;
}

.puntos > button:hover{
    background-color: #c7010e;
}

textarea#comentarios{
    height: 200px;
    width: 180px;
}

#loaders {
    text-align: center;
}
#loaders img {
    width: 150px;
    margin: 0 auto;
    /* display: none; */
}

@media only screen and (max-width: 768px){
    .puntos{
        display: block!important;
        margin-bottom:  0.3em;
    }    
    .puntos > label{
        margin-bottom: .5em;
    }

    .puntos textarea{
        width: 77%;
    }
}

h4#texto{
     transition:all .3s ease-in;
     text-align: center;
     text-decoration: underline;
     background: #c7010e;
     color: #f2f2f2;
     border-radius: 16px;
     width: 300px;
     max-height: 120px;
     padding: 8px;
     opacity: 0;
     margin: 0 auto;
}

.separador{
    background-color: #494848;
    padding-bottom: 50px;
    padding-top: 15px;
}

.otro{
    background-color: #494848;
    background-image: url(/img/compus.jpg) ;
    height: 35vh;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.texto{
    width: 300px;
    height: 50px;
    background-color: #494848cc;
    margin: auto;
    position: relative;
    top: 37%;
    text-align: center;
    border-radius: 15px;
}

.texto > p{
    color: white;
    font-size: 2rem;
}

.pe{
    font-size: 1.2rem;
    
}

.directivos{
    text-align: center!important;
}

.alv{
    background-color: rgba(218, 218, 218, 0.26);
    display: flex;
    flex-direction: column;
    text-align: justify;
    width: 80%;
    margin: 50px auto;
    padding: 20px 30px;
    
}

.caja2{
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.serv{
    display: flex;
    flex-direction: column;
    max-width: 23%;
    margin-bottom: 0;
    margin-left: 15px;
}
.titulo{
    font-size: 1.4rem;
    text-align: center; 
    font: bold 1.3rem Thasadith;
}

@media only screen and (max-width: 768px){
    .caja2{
        display: block;
    }
    .serv{
        max-width: 80%;
        margin: 20px auto;
    }
    .alv{
        width: 100%;
        padding: 0;
    }   
}

img.icons{
    width: 80px;
    margin: 0 auto!important;
    
}


/* ==================================MODELO NEGOCIO======================*/

    #modelo{
        width: 80%;
        margin: 50px auto;
        padding: 30px;
        background-color: rgba(218, 218, 218, 0.26);

    }

    section.seccion4{
        margin: 45px auto;
        width: 85%;
        display: grid;
        grid-template-columns: 25% 12.5% 12.5% 12.5% 12.5% 25%;
        grid-template-rows: auto;
        justify-items: center;
        grid-column-gap: 10px;
        grid-row-gap: 15px;            
    }

    .fase1-1{
        width: 120px;
        height: 80px;
        padding: 5px;
        border-radius: 10px;
        grid-column-start: 4;
        text-align: center;
        font-weight: bolder;
        box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;        
    }

    .fase1-2{
        width: 120px;
        height: 80px;
        padding: 5px;
        border-radius: 10px;
        grid-column-start: 3;
        grid-row-start: 3;
        font-weight: bolder;
        text-align: center;
        box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    }

    .fase1-3{
        width: 120px;
        height: 80px;
        padding: 5px;
        border-radius: 10px; 
        grid-column-start: 4;
        grid-row-start: 4;
        font-weight: bolder;
        text-align: center;
        box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    }

    .fase1-4{
        width: 120px;
        height: 80px;
        padding: 5px;
        padding: auto ;
        border-radius: 10px;
        grid-column-start: 5;
        grid-row-start: 3;
        font-weight: bolder;
        text-align: center;
        box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    }

    .fase1-titulo{
        width: 150px;
        height: 90px;
        padding: 0 25px;
        border-radius: 10px;
        border-left: 6px outset red;
        grid-column-start: 1;
        grid-row-start: 3;
        font-weight: bolder;
        text-align: start;
        line-height: 0.9rem;
        box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
        
    }

    .operacion{
        
        width: auto;
        height: 100px;        
    }

    /* ============================ ===================================*/


    .seccion5{
        margin: 45px auto;
        width: 85%;
        display: grid;
        grid-template-columns: 25% 11% 12.5% 12.5% 12.5% 12.5% ;
        grid-template-rows: auto;
        justify-items: center;
        grid-column-gap: 10px;
        grid-row-gap: 60px;
    }

    .fase2-titulo{
        width: 150px;
        height: 90px;
        padding: 0 25px;
        border-radius: 10px;
        border-left: 6px outset red;
        grid-column-start: 1;
        grid-row-start: 2;
        font-weight: bolder;
        text-align: start;
        line-height: 0.9rem;
        box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    }

    .fase2-1{
        width: 120px;
        height: 80px;
        padding: 5px;
        border-radius: 10px;
        grid-column-start: 3;
        text-align: center;
        font-weight: bolder;
        box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;  
    }

    .fase2-2{
        width: 120px;
        height: 80px;
        padding: 5px;
        border-radius: 10px;
        grid-column-start: 3;
        grid-row-start: 3;
        text-align: center;
        font-weight: bolder;
        box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;  
    }

    .fase2-3{
        background: linear-gradient(to bottom, rgba(240,249,255,1) 0%,rgba(203,235,255,1) 47%,rgba(161,219,255,1) 100%);
        width: 120px;
        height: 80px;
        padding: 11px;
        border-radius: 50%;
        grid-column-start: 2;
        grid-row-start: 2;
        text-align: center;
        font-weight: bolder;
        box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;  
    }

    .fase2-3-1{
        background: linear-gradient(to bottom, rgba(240,249,255,1) 0%,rgba(203,235,255,1) 47%,rgba(161,219,255,1) 100%);
        width: 120px;
        height: 80px;
        padding: 11px;
        border-radius: 50%;
        grid-column-start: 6;
        grid-row-start: 2;
        text-align: center;
        font-weight: bolder;
        box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;  
    }


    .fase2-4{
        width: 120px;
        height: 80px;
        padding: 5px;
        border-radius: 10px;
        grid-column-start: 5;
        grid-row-start: 3;
        text-align: center;
        font-weight: bolder;
        box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;  
    }

    .fase2-5{
        width: 120px;
        height: 80px;
        padding: 5px;
        border-radius: 10px;
        grid-column-start: 5;
        grid-row-start: 1;
        text-align: center;
        font-weight: bolder;
        box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;  
    }
    
    .seccion5 img{
        width: 100%;
        margin: 0 auto;
    }

    div.imagen1{
        width: 50%;
        margin: 0 auto;
        grid-column-start: 4;
    }

    div.imagen2{
        width: 50%;
        margin: 0 auto;
        grid-column-start: 3;
        grid-row-start: 2;
    }


    div.imagen3{
        width: 50%;
        margin: 0 auto;
        grid-column-start: 5;
        grid-row-start: 2;
    }

    div.imagen4{
        width: 50%;
        margin: 0 auto;
        grid-column-start: 4;
        grid-row-start: 3;
    }

    
@media only screen and (max-width:768px){
    section.seccion4{
        grid-template-columns: 25% 50% 25%;
        grid-template-rows: auto;
        grid-row-gap: 25px;
    }


    .fase1-1{
        grid-column-start: 2;
        grid-row-start: 2;
    }

    .fase1-2{
        grid-column-start: 1;
        grid-row-start: 3;
    }

    .fase1-3{
        grid-column-start: 2;
        grid-row-start: 4;
    }

    .fase1-4{
        grid-column-start: 3;
        grid-row-start: 3;
    }

    .fase1-titulo{
        grid-column-start: 2;
        grid-row-start: 1;        
    }

    .seccion5{
        grid-template-columns: 25%  25% 10% 25% 25%;
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }

    .fase2-titulo{
        margin-left: 35px; 
        grid-column-start: 2;
        grid-row-start: 1;
    }

    .fase2-1{
        grid-column-start: 1;
        grid-row-start: 2;        
    }

    .fase2-2{
        grid-column-start: 1;
        grid-row-start: 4;
    }

    .fase2-3{
        grid-column-start: 1;
        grid-row-start: 3;
    }

    .fase2-3-1{
        grid-column-start: 4;
        grid-row-start: 3;
    }


    .fase2-4{
        grid-column-start: 4;
        grid-row-start: 4;
    }

    .fase2-5{
        grid-column-start: 4;
        grid-row-start: 2;
    }
    .iconoos{
        display:none;
    }

    div.imagen1{
        display: none;
    }

    div.imagen2{
        display: none;
    }


    div.imagen3{
        display: none;
    }

    div.imagen4{
        display: none;
    }

    .imagenes{
        display: flex;
        align-content: space-around;
    }
  
    .imagen1-1{
        width: 40px;
        margin: 0 15px;
    }
    .imagen1-1 img{
        width: 40px;
        
    }

    .imagen2-1{
        width: 40px;
        margin: 0 20px;
    }
    .imagen2-1 img{
        width: 40px;
    }


    .imagen3-1{
        width: 40px;
        margin: 0 20px;
    }
    .imagen3-1 img{
        width: 40px;
    }


    .imagen4-1{
        width: 40px;
        margin: 0 20px;
    }
    .imagen4-1 img{
        width: 40px;
    }
}

/*
 ============================================================================
    Animaciones
 ============================================================================
*/ 
.animacion {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }

@keyframes fadedown {
    from {
      opacity: 0;
      transform: translate3d(0, -100%, 0);
    }
  
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  
  .fadedown {
    animation-name: fadedown;
  }

  @keyframes fadeleft {
    from {
      opacity: 0;
      transform: translate3d(-100%, 0, 0);
    }
  
    to {
      opacity: 1;
      transform: translate3d(0, 0, 0);
    }
  }
  
  .fadeleft {
    animation-name: fadeleft;
  }
    

/*
 ============================================================================
    Aviso de privacidad
 ============================================================================
*/ 

.aviso{
    background-color:rgba(255, 255, 255, 0.884);
    width: 85%;
    margin: 50px auto;
    padding: 30px;
    text-align: justify;
} 

.regreso{
    width: 300px;
}

.semititulo{
    color: black;
    font-weight: bolder;
}

.contacto-lista{
    padding: 0 40px;
}

.contacto-lista ul li{
    font-weight: bolder
}

div.regreso a{
    text-decoration: none;
    color: #5531b9;
}




/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Hide visually and from screen readers
 */

 .hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */

 .visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap; /* 1 */
}

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */

 .visuallyhidden.focusable:active,
 .visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}

/*
 * Hide visually and from screen readers, but maintain layout
 */

 .invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

 .clearfix:before,
 .clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */

   @media only screen and (min-width: 35em) {
    /* Style adjustments for viewports that meet the condition */
}

@media print,
(-webkit-min-device-pixel-ratio: 1.25),
(min-resolution: 1.25dppx),
(min-resolution: 120dpi) {
    /* Style adjustments for high resolution devices */
}

/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */

   @media print {
    *,
    *:before,
    *:after {
        background: transparent !important;
        color: #000 !important; /* Black prints faster */
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    /*
     * Don't show links that are fragment identifiers,
     * or use the `javascript:` pseudo protocol
     */

     a[href^="#"]:after,
     a[href^="javascript:"]:after {
        content: "";
    }

    pre {
        white-space: pre-wrap !important;
    }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    /*
     * Printing Tables:
     * http://css-discuss.incutio.com/wiki/Printing_Tables
     */

     thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}
