@charset "utf-8";

@font-face {
    font-family: 'Rubik';
    src: url('../fonts/rubik/rubik.woff2') format('woff2'),
        url('../fonts/rubik/rubik.woff') format('woff'),
        url('../fonts/rubik/rubik.ttf') format('ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/*** TOLLTIP FLOTANTE ***/

/* Tooltip */
.custom-tooltip {
    position: absolute;
    background: #000000;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    font-family: 'Googlesans', sans-serif;
    /* Usando tu fuente cargada */
    transition: opacity 0.5s, transform 0.5s;
    white-space: nowrap;
}

/* Base de la flecha */
.custom-tooltip::after {
    content: "";
    position: absolute;
    border-style: solid;
    width: 0;
    height: 0;
}

.bs-top {
    transform: translateY(10px);
}

.bs-top::after {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 4px 4px 0 4px;
    border-color: #000000 transparent transparent transparent;
}

.bs-bottom {
    transform: translateY(-10px);
}

.bs-bottom::after {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 4px 4px 4px;
    border-color: transparent transparent #000000 transparent;
}

.bs-left {
    transform: translateX(10px);
}

.bs-left::after {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 4px 0 4px 4px;
    border-color: transparent transparent transparent #000000;
}

.bs-right {
    transform: translateX(-10px);
}

.bs-right::after {
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-width: 4px 4px 4px 0;
    border-color: transparent #000000 transparent transparent;
}

/* Estado Activo */
.custom-tooltip.visible {
    opacity: 1;
    transform: translate(0, 0) !important;
}

/*** TOOLTIP FIN ***/


/*** RESET ***/

*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

/* BARRAS DE DESPLAZAMIENTO */
*::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
    background-color: #000;
    width: 5px;
}

*::-webkit-scrollbar {
    background-color: #f60;
    width: 5px;
    height: 0;
}

*::-webkit-scrollbar-thumb {
    border-radius: 5px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #fff;
    width: 5px;
}

html {
    font-size: .6vw;
}

body {
    margin: 0;
    overflow: hidden;
    background-color: #fff;
    color: #000;
    cursor: default;
    font-family: 'Rubik', 'Verdana', 'Googlesans', sans-serif;
    font-size: 1.4rem;
    line-height: 1.9rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: justify;
    padding: 0;
}

/* SELECCIÓN COLOR */
::-moz-selection {
    background: #5cc;
    color: white;
}

::selection {
    background: #5cc;
    color: white;
}

.selectable {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/*********** BACKGROUNDS **********/

.intro {
    background: url(../laterales/acercade.jpg) no-repeat fixed;
}

.profesional {
    background: url(../laterales/profesional.jpg) no-repeat fixed;
}

.curriculum {
    background: url(../laterales/curriculum.jpg) no-repeat fixed;
}

.portafolio {
    background: url(../laterales/portafolio.png) no-repeat fixed;
    background-position: 0px 40.4vh;
}

.contacto {
    background: url(../laterales/contacto.jpg) no-repeat fixed;
}

.intro,
.profesional,
.curriculum,
.portafolio,
.contacto {
    background-size: 9.4%;
    padding-bottom: 33px;
}

.portafolio {
    background-color: #fff;
    color: #000;
}

.portafolio .titulo3,
.portafolio .titulo2 {
    color: #000 ;
}

/********* WIDERSCREENS ***********/

.widers {
    max-width: 70vw;
    min-width: 390px;
}

/********** AVISO IFRAME ***********/

#avisoiframe {
    position: relative;
    overflow: hidden;
    background: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
}

.aviso {
    margin: 0;
    padding: 1.5vh;
    width: 100%;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.5rem;
    /*ANIMACION SUAVE*/
    -webkit-transition: All .5s ease;
    -moz-transition: All .5s ease;
    -o-transition: All .5s ease;
    transition: All .5s ease;
}

.aviso h1 {
    font-size: 2.2rem;
    line-height: 4.4rem;
    font-weight: 600;
}

.avisolink {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 2.2vh;
    line-height: 5vh;
    color: #0fb;
}

.avisolink:hover {
    color: #fff;
}


/************* MAIN **************/

main {
    width: 100%;
    display: grid;
    grid-gap: 0;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row;
    margin: 0;
    padding: 0;
    border: 0px solid #000;
}

header {
    position: relative;
    grid-column: 1 / 3;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    height: 8vw;
    background: rgba(0, 255, 255, 0);
}

contenido {
    width: 100%;
    grid-column: 1 / 3;
    background: rgba(255, 0, 0, 0);
}

frase {
    grid-column: 1 / 3;
    background: rgba(0, 0, 255, 0);
    padding-top: 10rem;
    padding-bottom: 8rem;
}

footer1 {
    grid-column: 1 / 2;
    height: 10vw;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    color: #fff;
    background: rgba(0, 255, 0, 0);
}

footer2 {
    grid-column: 2 / 3;
    height: 10vw;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    color: #fff;
    background: rgba(0, 0, 255, 0);
}

/***********************************/

.grow {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    width: 2.5em;
    height: 2.5em;
    cursor: pointer;

    /*ANIMACION SUAVE*/
    -webkit-transition: All .3s ease;
    -moz-transition: All .3s ease;
    -o-transition: All .3s ease;
    transition: All .3s ease;
}

.grow:hover {
    color: #000;
}

.grow::after {
    content: '';
    position: absolute;
    z-index: -2;
    width: 0;
    height: 0;
    border-radius: 50%;

    /*ANIMACION SUAVE*/
    -webkit-transition: All .3s ease;
    -moz-transition: All .3s ease;
    -o-transition: All .3s ease;
    transition: All .2s ease;
}

.grow:hover::after {
    content: '';
    position: absolute;
    background: rgba(0, 0, 0, 0.07);
    width: 110%;
    height: 110%;
    z-index: -2;
}

.scrolltop {
    position: fixed;
    z-index: 8;
    right: 5vw;
    bottom: 5vw;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(90deg);
    font-family: 'Websymbols';
    font-size: 1.5rem;
    font-style: normal;
    color: #111;
}

/**************************/

#loader {
    position: relative;
    top: 8.8rem;
    left: 0;
    width: 100%;
    opacity: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    height: 100%;
    background: rgba(0, 255, 255, 0);

    /*ANIMACION SUAVE*/
    -webkit-transition: All 1s ease;
    -moz-transition: All 1s ease;
    -o-transition: All 1s ease;
    transition: All 1s ease;
}

.diamond {
    position: absolute;
    width: 3rem;
    height: 3rem;
}

.cargando {
    text-transform: uppercase;
    letter-spacing: .8rem;
    font-size: .8rem;
    padding-top: 10rem;
    color: #888;
}

.ring {
    position: absolute;
    width: 5rem;
    height: 5rem;
    border: 2px solid #000;
    border-top-color: transparent;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    animation: ring 1s linear infinite;
}

@keyframes ring {
    0% {
        transform: rotate(0deg);
        border-right-color: #aaa;
        border-left-color: #aaa;
        border-top-color: #aaa;
        border-bottom-color: transparent;
    }

    50% {
        transform: rotate(180deg);
        border-right-color: #aaa;
        border-left-color: #aaa;
        border-top-color: #aaa;
        border-bottom-color: transparent;
    }

    100% {
        transform: rotate(360deg);
        border-right-color: #aaa;
        border-left-color: #aaa;
        border-top-color: #aaa;
        border-bottom-color: transparent;
    }
}

/***************************/

a {
    color: #555;
    text-decoration: none;
}

a:hover {
    color: #0fc;
    text-decoration: none;
}

a:focus {
    color: #ccc;
    text-decoration: none;
}

#banner {
    width: 100%;
    height: 18rem;
    border: 0px solid #ddf;
    margin-bottom: 20px;

}

#prelude {
    width: 100%;
    display: grid;
    grid-template-columns: auto auto;
    grid-auto-flow: row;
}

div1 {
    grid-area: 1 / 2;
    display: flex;
    justify-content: center;
    background: rgba(255, 0, 0, 0);
}

div2 {
    padding-right: 1vw;
    grid-row: 1 / 3;
    background: rgba(0, 0, 255, 0);
}

div3 {
    grid-area: 2 / 2;
    background: rgba(0, 255, 0, 0);
    display: flex;
    justify-content: center;
    align-content: flex-end;
    align-items: flex-end;
    padding-top: 33px;
}

/****** BOTON BLACK ******/

.btnblack {
    background: rgba(0, 0, 0, 0);
    overflow: hidden;
    position: relative;
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    line-height: .5rem;
    padding: 2rem;
    margin: 0;
    cursor: pointer;
    border: 2px solid #333;
    border-radius: 5px;


    /*ANIMACION SUAVE*/
    -webkit-transition: All .5s ease;
    -moz-transition: All .5s ease;
    -o-transition: All .5s ease;
    transition: All .5s ease;
}

btnfondo {
    position: absolute;
    z-index: -1;
    width: 0%;
    height: 110%;
    top: 0;
    right: 0;
    background: rgba(0, 0, 0, 1);

    /*ANIMACION SUAVE*/
    -webkit-transition: All .5s ease;
    -moz-transition: All .5s ease;
    -o-transition: All .5s ease;
    transition: All .5s ease;
}

.btnblack:hover {
    color: #fff;
    border-color: #fff;
}


.btnblack:hover h2 {
    color: #fff;
}

.btnblack:hover btnfondo {
    width: 100%;
    /*ANIMACION SUAVE*/
    -webkit-transition: All .2s ease;
    -moz-transition: All .2s ease;
    -o-transition: All .2s ease;
    transition: All .2s ease;

}


/********** FIN **********/

#foto {
    width: 18rem;
    height: 18rem;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    border: 0px solid #fff;
    margin-top: 5rem;
    animation: salto 4s infinite ease;
}

@keyframes salto {
    0% {
        transform: translateY(7px);
        box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.4);
    }

    50% {
        transform: translateY(0px);
        box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4);
    }

    100% {
        transform: translateY(7px);
        box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.4);
    }
}

.barra {
    background: #c0c0c8;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-top-left-radius: 5px;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    padding: 10px;
    margin-bottom: 1.2rem;
    margin-top: 5rem;
}

h3 {
    color: #333;
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    line-height: 1.2rem;
    padding-top: 1rem;
}

.titulo1 {
    font-family: 'Googlesans', 'Verdana', sans-serif;
    font-size: 1.6rem;
    color: #eee;
    font-weight: bold;
    text-shadow: 1px 1px 1px rgba(100, 100, 100, .4);
}

.titulo2 {
    color: #333;
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    line-height: 3rem;
    text-align: left;
    color: #333;
    flex: 1;
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.brief {
    color: #333;
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: lighter;
    line-height: 3.4rem;
    text-align: left;
    color: #333;
    flex: 1;
    padding-top: 3rem;
    padding-bottom: 1rem;
}

.titulo3 {
    color: #333;
    font-family: 'Oswald', sans-serif;
    font-size: 2.44rem;
    line-height: 4rem;
    font-weight: lighter;
}

.titulo4 {
    color: #333;
    font-family: 'Oswald', sans-serif;
    font-size: 1.7rem;
    line-height: 2.4rem;
    text-align: left;
    color: #333;
    flex: 1;
    font-weight: lighter;
    padding-top: 1rem;
    padding-bottom: .5rem;
}

.frase {
    font-family: 'Googlesans';
    text-align: center;
    color: #aaa;
    font-size: 2.3rem;
    line-height: 3.3rem;
    font-style: normal;
    font-weight: bold;
}

.autor {
    font-size: .6em;
    line-height: 3em;
}

.nextlink {
    font-family: 'Oswald', 'Verdana', sans-serif;
    color: #111;
    font-size: 1.7rem;
    font-weight: bold;
    text-align: right;
    text-decoration: none;
}

.pdfs::after {
    content: 'h';
    padding-left: 5px;
    font-family: 'Websymbols', sans-serif;
    color: #eee;
}

/***** CONTACTO REDES SOCIALES *****/

#sociales {
    width: 100%;
    display: grid;
    grid-gap: .3rem;
    grid-template-columns: repeat(auto-fill, minmax(7rem, 1fr));
    grid-auto-flow: row;
    font-size: .99rem;
}

#sociales div {
    display: block;
    flex-flow: row;
    text-align: center;
    cursor: pointer;

    /*ANIMACION SUAVE*/
    -webkit-transition: All .1s ease;
    -moz-transition: All .1s ease;
    -o-transition: All .1s ease;
    transition: All .1s ease;
}

#sociales img {
    width: 4rem;
    height: 4rem;

    /*ANIMACION SUAVE*/
    -webkit-transition: All .5s ease;
    -moz-transition: All .5s ease;
    -o-transition: All .5s ease;
    transition: All .5s ease;
}

#sociales div:hover img {
    -webkit-transform: translateY(-7px);
    transform: translateY(-7px);
    filter: drop-shadow(1px 5px 5px rgba(0, 0, 0, .5));

    /*ANIMACION SUAVE*/
    -webkit-transition: All .5s ease;
    -moz-transition: All .5s ease;
    -o-transition: All .5s ease;
    transition: All .5s ease;
}

/**** SECCIONES PORTAFOLIO ******/

/* PRINCIPAL */

.seccionesportafolio {
    width: 100%;
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-flow: row;
    grid-gap: 2vw;
    border: 0px solid #000;    
}

.seccion {
    position: relative;
    width: 100%;
    height: 23vw;
    align-self: center;
    overflow: hidden;
    border: 1px solid #fff;
    border-radius: 2px;
    box-shadow: 2px 12px 28px rgba(0,0,0,.22),
        0px 0px 2px rgba(0,0,0,.1);
    margin-bottom: 1vw;    

    /*ANIMACION SUAVE*/
    -webkit-transition: All .7s ease;
    -moz-transition: All .7s ease;
    -o-transition: All .7s ease;
    transition: All .7s ease;
}

.seccion:hover {
    border-radius: 2px;
    transform: scale(1.1);
    box-shadow: 2px 12px 28px rgba(0,0,0,.5),
        -5px -5px 28px rgba(0,0,0,.1);

    /*ANIMACION SUAVE*/
    -webkit-transition: All .5s ease;
    -moz-transition: All .5s ease;
    -o-transition: All .5s ease;
    transition: All .5s ease;
}

.seccion div {
    position: absolute;
    width: 100%;
    height: 100%;
    /*cursor: url(../index/cursor/cursor.png), auto;*/
    cursor: url(../index/cursor/cursoredondo.png), auto;

    /*ANIMACION SUAVE*/
    -webkit-transition: All 1.5s ease;
    -moz-transition: All 1.5s ease;
    -o-transition: All 1.5s ease;
    transition: All 1.5s ease;
}

.seccion div:nth-child(1) {
    transform: scale(1.1);
    z-index: 1;    
    opacity: 1;
}

.seccion div:nth-child(2) {
    transform: scale(1);
    z-index: -1;
    opacity: 0;
}

.seccion:hover div:nth-child(1) {
    transform: scale(1);
    opacity: 0;
    z-index: -10;
}

.seccion:hover div:nth-child(2) {
    transform: scale(1.1);
    opacity: 1;
    z-index: 10;
}

titulo {
    opacity: 0;
    position: absolute;
    overflow: hidden;
    z-index: 12;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 2vw;
    padding-bottom: .77vw;
    cursor: url(../index/cursor/cursor.png), auto;
    user-select: none;
    
    /*background: rgba(50, 200, 255, 0);*/
    background:  linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.08) 10%, rgba(0,0,0,0.44) 35%, rgba(0,0,0,0.64) 55%, rgba(0,0,0,0.92) 100%);
    transform: translateY(100%);

    /*ANIMACION SUAVE*/
    -webkit-transition: All .5s ease;
    -moz-transition: All .5s ease;
    -o-transition: All .5s ease;
    transition: All .33s ease;
}

.seccion:hover titulo {
    transform: translateY(0%);
    opacity: 1;
}

T1 {
    display: block;
    padding-left: 1vw;
    padding-right: 1vw;
    font-family: 'Oswald', sans-serif;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: .1px;
    font-size: 1.2vw;
    line-height: 2vw;
    text-shadow:
        0 0 1px #fff,
    0 1px 5px rgba(0, 0, 0, 0.5);
}

S1 {
    display: block;
    font-family: 'Rubik', 'Verdana', sans-serif;
    color: #fff;
    letter-spacing: 0px;
    font-size: .77vw;
    line-height: 2.2vw;
    text-shadow:
        0 0 1px #fff,
        0 1px 2px rgba(0, 0, 0, 0.5);

}

/* FONDOS */

.aumen div:nth-child(1) {
    background: url(../portafolio/aumentada.jpg) center center;
    background-size: cover;
}

.aumen div:nth-child(2) {
    background: url(../portafolio/aumentada_.jpg) center center;
    background-size: cover;
}

.instala div:nth-child(1) {
    background: url(../portafolio/instalaciones.jpg) center center;
    background-size: cover;
}

.instala div:nth-child(2) {
    background: url(../portafolio/instalaciones_.jpg) center center;
    background-size: cover;
}

.senal div:nth-child(1) {
    background: url(../portafolio/senaletica.jpg) center center;
    background-size: cover;
}

.senal div:nth-child(2) {
    background: url(../portafolio/senaletica_.jpg) center center;
    background-size: cover;
}

.prodgraf div:nth-child(1) {
    background: url(../portafolio/prodgrafica.jpg) center center;
    background-size: cover;
}

.prodgraf div:nth-child(2) {
    background: url(../portafolio/prodgrafica_.jpg) center center;
    background-size: cover;
}

.identi div:nth-child(1) {
    background: url(../portafolio/identidad.jpg) center center;
    background-size: cover;
}

.identi div:nth-child(2) {
    background: url(../portafolio/identidad_.jpg) center center;
    background-size: cover;
}

.motion div:nth-child(1) {
    background: url(../portafolio/motiondesign.jpg) center center;
    background-size: cover;
}

.motion div:nth-child(2) {
    background: url(../portafolio/motiondesign_.jpg) center center;
    background-size: cover;
}

.cgid div:nth-child(1) {
    background: url(../portafolio/cgidesign.jpg) center center;
    background-size: cover;
}

.cgid div:nth-child(2) {
    background: url(../portafolio/cgidesign_.jpg) center center;
    background-size: cover;
}

.catalo div:nth-child(1) {
    background: url(../portafolio/catalogos.jpg) center center;
    background-size: cover;
}

.catalo div:nth-child(2) {
    background: url(../portafolio/catalogos_.jpg) center center;
    background-size: cover;
}

.clises div:nth-child(1) {
    background: url(../portafolio/clises.jpg) center center;
    background-size: cover;
}

.clises div:nth-child(2) {
    background: url(../portafolio/clises_.jpg) center center;
    background-size: cover;
}

.redes div:nth-child(1) {
    background: url(../portafolio/redes.jpg) center center;
    background-size: cover;
}

.redes div:nth-child(2) {
    background: url(../portafolio/redes_.jpg) center center;
    background-size: cover;
}

.clientes {
    position: relative;
    font-family: 'Oswald', sans-serif;
    line-height: 3rem;
    font-size: 1.4rem;
    color: #111;
    text-align: center;
    display: grid;
    grid-gap: 0;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: row;
    border: 0px solid #000;
}

cliente {
    position: relative;
    background: rgba(255,255,255, 0);
    border-radius: 10px;
    border: 0px solid #aaa;
    flex: 1 1 auto;
    color: #777;
    line-height: 220%;

    /*ANIMACION SUAVE*/
    -webkit-transition: All .3s ease;
    -moz-transition: All .3s ease;
    -o-transition: All .3s ease;
    transition: All .3s ease;
}

cliente:hover {
    color: #555;
    z-index: 5;
    transform: scale(1.5);
    font-weight: 1000;
    
    /*ANIMACION SUAVE*/
    -webkit-transition: All .2s ease;
    -moz-transition: All .2s ease;
    -o-transition: All .2s ease;
    transition: All .2s ease;
}

.separador {
    grid-column: span 3;
    height: 44px;
}

/******* MEDIA QUERIES **********/
/***** 2560px Hacia abajo *******/


/***** 1920px Hacia abajo *******/

@media screen and (max-width: 1920px) {

    html {
        font-size: 11px;
    }
}

/***** 1680px Hacia abajo *******/

@media screen and (max-width: 1688px) {

    html {
        font-size: 10.4px;
    }
}

/***** 1440px Hacia abajo *******/

@media screen and (max-width: 1444px) {

    html {
        font-size: 10px;
    }
}

/****** 1024px Hacia abajo ******/
@media screen and (max-width: 1030px) {

    html {
        font-size: 9.5px;
    }

    body {
        font-size: 1.2rem;
    }

    .profesional {
        background-size: 12.2%;
        background-position: -4% -1%;
    }

    .curriculum {
        background-size: 12.2%;
        background-position: -4% 0%;
    }

    .portafolio {
        background-size: 12.2%;
        background-position: -4% 0%;
    }

    .contacto {
        background-size: 15%;
        background-position: 94% -30%;
    }

    .widers {
        max-width: 80vw;
    }

}

/****** 775px Hacia abajo ********/
@media screen and (max-width: 775px) {

    html {
        font-size: 10px;
    }

    body {
        margin-bottom: 1vh;
        /* NO SELECCIONA EN MÓVILES */
        -webkit-user-select: none;
        /* Safari 3.1+ */
        -moz-user-select: none;
        /* Firefox 2+ */
        -ms-user-select: none;
        /* IE 10+ */
        user-select: none;
        /* Standard syntax */
    }

    .profesional {
        background-size: 20%;
        background-position: -8% 2.3%;
    }

    .curriculum {
        background-size: 20%;
        background-position: -8% 0.1%;
    }

    .portafolio {
        background-size: 21%;
        background-position: -8% 0%;

    }

    .contacto {
        background-size: 22%;
        background-position: 95% -20%;
    }

    div1 {
        grid-area: 1 / 1;
    }

    div2 {
        grid-area: 2 / 1;
        padding-right: 0;
    }

    div3 {
        grid-area: 3 / 1;
    }
    
    .brief {
    font-size: 2rem;
    font-weight: lighter;
    line-height: 3.3rem;
}
    
    .frase {
        font-size: 1.9rem;
    }

    T3 {
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 1.5rem;
        line-height: 1.9rem;
    }

    #sociales img {
        width: 40px;
        height: 40px;
    }

    footer2 {
        height: 1.2vh;
    }

    /*** PORTAFOLIO ***/
    
    .seccionesportafolio {
    grid-template-columns: repeat(2, 1fr);
    }    
    
.seccion {
     height: 44vw;
    }
 
    T1 {
    display: block;
    padding-left: 1vw;
    padding-right: 1vw;
    font-family: 'Oswald', sans-serif;
    color: #fff;
    text-transform: capitalize;
    font-size: 1.8rem;
    line-height: 4rem;
    text-shadow:
        0 0 0px #fff,
    0 1px 2px rgba(0, 0, 0, 0.5);
}

S1 {
    display: block;
    font-family: 'Rubik', 'Verdana', sans-serif;
    color: #fff;
    letter-spacing: 0px;
    font-size: 1.2rem;
    line-height: 1rem;
    padding-bottom: 2rem;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.5);
}    
    
}
