/******************************
*   Tipografias
******************************/
@import url('all.css');
@import url('icon.css');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --negro: 0, 0, 0;
    --blanco: 255, 255, 255;

    --amarillo: 250, 225, 0;

}

::selection {
    color: rgb(var(--blanco), 1);
    background: rgb(var(--negro), 1);
}
::-moz-selection {
    color: rgb(var(--blanco), 1);
    background: rgb(var(--negro), 1);
}
::-webkit-selection {
    color: rgb(var(--blanco), 1);
    background: rgb(var(--negro), 1);
}

/******************************
*   Reset
******************************/
*{
    border: 0px;
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    scroll-padding: 70px;
}
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: 'Montserrat';
    font-weight: normal;
    line-height: 1.4;
    font-size: 16px;
    color: rgb(var(--negro), 1);
}
figure {
    pointer-events: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
figure img { margin: 0 auto; }
img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}
a, a:link, a:hover, a:visited {
    text-decoration: none;
    color: inherit;
    cursor: pointer;

    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
ul,
ol {
    margin: 0;
    padding: 0;
    padding-inline-start: 20px;
}
li + li { margin-top: 15px; }
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}
input,
select,
textarea {
    display: block;
    width: 100%;
    padding: 12px 16px;
    color: rgb(var(--oscuro), 1);
    background: rgb(var(--blanco), 1);
    border-radius: 10000px;
    border: 1px solid;
    -moz-appearance: none;
    -webkit-appearance: none;
}
textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
    border-radius: 30px;
}
/* Change autocomplete styles in WebKit */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: ;
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}
input::placeholder,
textarea::placeholder { color: rgb(var(--name), 1); }
button { background: transparent; }
input:focus,
select:focus,
textarea:focus,
button:focus { outline: none; }

p { margin: 0; }
* + p,
* + ol,
* + ul { margin-top: 20px; }
ol + *,
ul + *,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 { margin-top: 40px; }

ul > li::marker,
ul > li > ul > li::marker { color: rgb(var(--name), 1); }

/******************************
*   Loader
******************************/
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
}
.bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: 100% 0%;
}
.bar__01 {
    background: rgb(var(--blanco), 1);
    z-index: 2;
}
.bar__02 {
    background: rgb(var(--amarillo), 1);
    z-index: 1;
}
.logo__load {
    width: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 100;
}

/******************************
*   General
******************************/
main {
    min-height: calc(100vh - 87px);
    position: relative;
}
section {
    padding-top: 60px;
    padding-bottom: 60px;
    /* min-height: 100vh; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.container {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
}
.c__center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* CTA */
* + .c__cta, 
.c__cta + * { margin-top: 40px; }
.c__cta { text-align: center; }
.cta {
    display: inline-flex;
    gap: 10px;
    justify-content: center;
    align-items: baseline;
    font-family: 'Bebas Neue';
    font-weight: normal;
    font-style: normal;
    font-size: clamp(22px, .8vmin + 0.5vw, 56px);
    color: rgb(var(--negro), 1);
    background: rgb(var(--blanco), 1);
    line-height: 1;
    border: 1px solid rgb(var(--negro), 1);
    border-radius: 100px;
    padding: 12px;
    min-width: 170px;
    text-align: center;
    position: relative;
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    cursor: pointer;
}
.cta > * {
    display: inline-block;
    position: relative;
}
.cta::before {
    content: '';
    position: absolute;
    width: 100%;
    height: calc(100% + 10px);
    top: 0;
    left: 0;
    background: rgb(var(--negro), 1);
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    transform-origin: 0 0;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.cta:hover { color: rgb(var(--amarillo), 1); }
.cta:hover::before {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}

/* Bg Sect */
.bg__page {
    position: fixed;
    
    height: 0%;
    background: rgb(var(--amarillo), 1);
}
.bg__01 {
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
}
.bg__02 {
    bottom: 0;
    left: 0;
    width: 100%;
}
.box__fil {
    overflow: hidden;
    position: relative;
}

.wor__top {
    font-family: 'DM Sans';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
}
.word__middle {
    font-family: 'Bebas Neue';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
}

.words__content { display: inline-block; }
.words__content > div {
    white-space: nowrap;
    padding: .5vw 1vw;
    border-radius: 1000px;
    border: 1px solid rgb(var(--negro), 1);
    background: rgb(var(--blanco), 1);
    display: flex;
    gap: 1vw;
}
.words__content > div > * {
    margin: 0;
    font-size: 1.15vw;
}

/******************************
*   Home
******************************/
/* Inicio */
.inicio { min-height: 100vh; }
.asterisk {
    width: 20%;
    margin: 0 auto;
}
.bull {
    width: 80%;
    margin: 0 0 0 auto;
    pointer-events: none;
}
.bull > div { overflow: hidden; }
.bull > div figure {
    -webkit-transform: translateX(20%);
    -moz-transform: translateX(20%);
    -ms-transform: translateX(20%);
    -o-transform: translateX(20%);
    transform: translateX(20%);
}
.inicio .container {
    width: 100%;
    text-align: center;
}
.inicio .container .conten__box {
    display: inline-block;
    text-align: left;
}
.inicio .word__middle {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.inicio .word__middle > * { grid-area: 1 / 1 / 2 / 2; }
.inicio .wor__top { font-size: calc(5vh + 12vw); }
.inicio .word__middle { font-size: calc(5vh + 12vw); }
.word__middle .char {
    display: inline-block;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}
.word__middle .words:nth-child(1) .char {
    -webkit-transform: translate(0%, 0%);
    -moz-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    -o-transform: translate(0%, 0%);
    transform: translate(0%, 0%);
}
.to__shine {
    position: absolute;
    top: 45%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.to__shine span {
    display: inline-block;
    font-weight: 600;
    line-height: .8;
    font-size: 4vw;
    background: rgb(var(--blanco), 1);
    border: 1px solid rgb(var(--negro), 1);
    border-radius: 100px;
    padding: 2.5vw 3vw;
}
.scroll {
    width: 3%;
    min-width: 25px;
    margin: 0 auto;
}
.scroll span {
    display: block;
    width: 100%;
    padding-top: 150%;
    border-radius: 1000px;
    border: 1px solid rgb(var(--negro), 1);
    background: rgb(var(--blanco), 1);
    position: relative;
}
.scroll span::before {
    content: '';
    width: 20%;
    padding-top: 50%;
    background: rgb(var(--negro), 1);
    border-radius: 1000px;
    position: absolute;
    top: 15%;
    left: 50%;
    animation: scroll-animation 2s infinite ease-in-out;
    -webkit-transform: translate(-50%, 0%);
    -moz-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    -o-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
}
@keyframes scroll-animation {
    0% {
        -webkit-transform: translate(-50%, 0%);
        -moz-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        -o-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
        opacity: 1;
    }
    50% {
        -webkit-transform: translate(-50%, 90%);
        -moz-transform: translate(-50%, 90%);
        -ms-transform: translate(-50%, 90%);
        -o-transform: translate(-50%, 90%);
        transform: translate(-50%, 90%);
        opacity: 0.2;
    }
    100% {
        -webkit-transform: translate(-50%, 0%);
        -moz-transform: translate(-50%, 0%);
        -ms-transform: translate(-50%, 0%);
        -o-transform: translate(-50%, 0%);
        transform: translate(-50%, 0%);
        opacity: 1;
    }
}

/* Hello */
.hello .wor__top {
    display: flex;
    align-items: center;
    font-size: 31vw;
}
.hello .word__middle { font-size: 30vw; }
.hello .wor__top .letter__o {
    font-size: 23vw;
    -webkit-transform: translateX(-28%);
    -moz-transform: translateX(-28%);
    -ms-transform: translateX(-28%);
    -o-transform: translateX(-28%);
    transform: translateX(-28%);
}
.hello .wor__top .letter__o span {
    display: flex;
    position: relative;
}
.hello .wor__top .letter__o span::before {
    position: absolute;
    content: '';
    width: 70%;
    padding-top: 70%;
    border-radius: 50%;
    border: 2.2vw solid rgb(var(--blanco), 1);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
}
.cont__fil { font-size: clamp(16px, .8vmin + 0.5vw, 56px); }
.cont__photo { padding: 3% 0; }
.cont__photo + * { margin-top: 30px; }
.photo {
    width: 80%;
    margin: 0 auto;
    -webkit-transform: rotate(-4deg);
    -moz-transform: rotate(-4deg);
    -ms-transform: rotate(-4deg);
    -o-transform: rotate(-4deg);
    transform: rotate(-4deg);
    position: relative;
    z-index: 1;
}
.photo::before {
    content: '';
    width: 95%;
    height: 94%;
    background: rgb(var(--negro), .7);
    position: absolute;
    bottom: 2%;
    left: 2%;
    transform-origin: 0% 0%;
    -webkit-transform: skewY(3deg);
    -moz-transform: skewY(3deg);
    -ms-transform: skewY(3deg);
    -o-transform: skewY(3deg);
    transform: skewY(3deg);
    filter: blur(10px);
    border-radius: 3%;
}
.phot__marc {
    background: rgb(var(--blanco), 1);
    padding: 1.5%;
    position: relative;
}
.phot__marc figure {
    position: relative;
    padding-top: 60%;
}
.phot__marc figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.cont__fil p {
    display: flex;
    gap: 10px;
}
.cont__fil p span {
    font-size: 550%;
    font-weight: 800;
    line-height: 1;
}

/* For */
.for {
    text-align: center;
    padding-bottom: 0;
}
.info__for { width: 100%; }
.t__for {
    font-family: 'DM Sans';
    font-weight: normal;
    font-style: normal;
    text-transform: uppercase;
    font-size: calc(3vh + 4vw);
    line-height: 1;
}
.tetx__great {
    overflow: hidden;
    display: inline-block;
    padding: .8vw 2vw .5vw;
    border-radius: 1000px;
    border: 2px solid rgb(var(--negro), 1);
    background: rgb(var(--amarillo), 1);
    position: relative;
}
.tetx__great .bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background: rgb(var(--blanco), 1);
}
.tetx__great span {
    font-family: 'Bebas Neue';
    font-weight: normal;
    font-style: normal;
    font-size: calc(4vh + 6vw);
    line-height: 1;
    position: relative;
}
.img__toro {
    width: calc(2vh + 6vw);
    margin-top: -5%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.img__toro figure {
    -webkit-transform: translateX(18%);
    -moz-transform: translateX(18%);
    -ms-transform: translateX(18%);
    -o-transform: translateX(18%);
    transform: translateX(18%);
}

/* Brands */
.grid__brands {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px 20px;
}
.tem__brad {
    width: calc(33.33% - 13.33px);
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Contact Us */
.logo__toro {
    margin-left: auto;
    margin-right: auto;
    width: 90px;
}
.logo__toro figure {
    -webkit-transform: translateX(14%);
    -moz-transform: translateX(14%);
    -ms-transform: translateX(14%);
    -o-transform: translateX(14%);
    transform: translateX(14%);
}

/******************************
*   Work
******************************/
#work { overflow-x: hidden; }
#work main { display: flex; }
#work main section {
    min-width: 100vw;
    min-height: 100vh;
}
.cont__proyect > * { position: relative; }
.proyect__head .proyect__title + * { margin-top: 15px; }
.proyect__head .proyect__title span {
    font-size: calc(2vh + 4vw);
    text-transform: uppercase;
    overflow: hidden;
    display: block;
}
.proyect__head .proyect__title * + * { margin-top: 15px; }
.proyect__head .proyect__title span:nth-child(1) {
    font-family: 'DM Sans';
    font-weight: normal;
    font-style: normal;
    line-height: .8;
}
.proyect__head .proyect__title span:nth-child(2) {
    font-family: 'Bebas Neue';
    font-weight: normal;
    font-style: normal;
    padding-top: 6px;
    margin-top: -.5px;
    line-height: .7;
}
.proyect__head .proyect__title span:nth-child(2) i {  }
.proyect__head .proyect__title span i {
    font-style: normal;
    display: inline-block;
}
.txte__type {
    display: block;
    font-weight: 600;
    font-size: clamp(16px, .8vmin + 0.5vw, 56px);
}
.proyect__graf .c__cta {
    position: absolute;
    margin: 0;
    top: 90%;
    left: 10%;
}
.proyect__graf figure {
    height: 100%;
    height: calc(32vh + 15vw);
    overflow: hidden;
}
.proyect__graf figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    -webkit-transition: all 1s ease-out;
    -moz-transition: all 1s ease-out;
    -ms-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    transition: all 1s ease-out;
}
.proyect__graf .c__cta .cta {
    font-family: 'DM Sans';
    font-weight: normal;
    font-style: normal;
    text-transform: uppercase;
    font-weight: 600;
}

/******************************
*   Detail
******************************/
#detail .container  {
    width: 100%;
    padding: 0;
}
.detail__img + *,
* + .detail__img { margin-top: 4vw; }
.detail__img figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.detail__img figure {
    width: calc(50vh + 50vw);
    max-width: 100%;
}
.detail__head .detail__img { overflow: hidden; }
.detail__head { padding: 0; }
.detail__head .detail__info > div {
    padding: 140px 20px 30px;
    font-size: clamp(16px, .8vmin + 0.5vw, 56px);
}
.detail__head .detail__info .proyect__title span { display: block; }

/******************************
*   Contact
******************************/
.con__contact > div + div { margin-top: 60px; }
.col__01 h2 span {
    text-transform: uppercase;
    line-height: .8;
}
.col__01 h2 span:nth-child(1) {
    font-family: 'Bebas Neue';
    font-weight: normal;
    font-style: normal;
}
.col__01 h2 span:nth-child(2) {
    font-family: 'DM Sans';
    font-weight: normal;
    font-style: normal;
}
.camp + .camp { margin-top: clamp(30px, .8vmin + 1vw, 56px) }
.camp label {
    display: block;
    font-weight: 700;
    font-style: normal;
    font-size: clamp(20px, .8vmin + 1vw, 56px);
    padding-left: 20px;
    opacity: .8;
    margin-bottom: clamp(10px, .2vmin + 0.5vw, 56px);
}
.camp input,
.camp textarea {
    line-height: 1;
    padding: clamp(12px, .8vmin + .5vw, 56px);
    font-size: clamp(16px, .8vmin + .5vw, 56px);
    border-radius: clamp(30px, 1vmin + 1vw, 100px);
}
.camp textarea { min-height: 20vh; }

/******************************
*   Messsage
******************************/
.message {
    text-align: center;
    font-size: clamp(16px, .8vmin + .5vw, 56px);
}
.message h2 {
    font-size: clamp(28px, 1vmin + 3vw, 160px);
    font-family: 'Bebas Neue';
    font-weight: normal;
    font-style: normal;
}

/******************************
*   Error
******************************/
.cont__error {
    text-align: center;
    font-size: clamp(16px, .8vmin + 0.5vw, 56px);
}
.error {
    font-family: 'Bebas Neue';
    font-weight: normal;
    font-style: normal;
}
.error p {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: baseline;
    line-height: .8;
}
.error__number { font-size: 38vw; }
.error__text { font-size: 12vw; }
.error p .letter__o {
    font-size: 30vw;
    margin: 0 -5%;
} 
.error p .letter__o span {
    display: flex;
    position: relative;
}
.error p .letter__o span::before {
    position: absolute;
    content: '';
    width: 70%;
    padding-top: 70%;
    border-radius: 50%;
    border: 3.2vw solid rgb(var(--blanco), 1);
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.error p .letter__o span * { position: relative; }


/******************************
*   Mobile
******************************/
/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
@media (max-width : 679px) {
}
@media (min-width : 680px) {

.grid__brands { gap: 50px 20px; }
.tem__brad { width: calc(25% - 15px); }


}
@media (min-width : 680px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {

/* Hello */
.words__content > div {
    padding: 1vw 2vw;
    gap: 3vw;
}
.words__content > div > * { font-size: 2.3vw; }
.hello .container > * + * { margin-top: 30px; }

/* Contatc */
.col__01 h2 {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: baseline;
    gap: 16px;
}
.col__01 h2 span { font-size: 18vw; }

}
/* Medium Devices to Large Devices */
@media (min-width : 768px) {
.container {
    margin: 0 auto;
    width: 70%;
}
.cta {
    font-size: clamp(28px, 1vmin + 0.5vw, 56px);
    padding: 0.8vw 1vw 0.7vw;
}

/* Inicio */
.asterisk {
    position: absolute;
    top: 50%;
    left: -7%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.to__shine span {
    font-size: calc(2vh + 1vw);
    padding: 1vw 2vw;
}
.bull {
    position: absolute;
    width: 30%;
    top: 50%;
    right: 0%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* Hello */
.hello .container {
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: flex-start;
    -webkit-align-items: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}
.hello .conten__box {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: calc(50vh - 30%);
    z-index: 1;
}
.hello .wor__top { font-size: calc(5vh + 12vw); }
.hello .word__middle { font-size: calc(5vh + 12vw); }
.hello .wor__top .letter__o { font-size: calc(4.8vh + 8.8vw) }
.hello .wor__top .letter__o span::before { border: 1.2vw solid rgb(var(--blanco), 1); }
.cont__fil { padding: 6vw 0; }

/* Work */
#work .container { width: 90%; }
#work .container .cont__proyect { margin: 0 -20px; }

/* Contatc */
.con__contact > div + div { margin-top: 0; }
.con__contact {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: clamp(30px, .8vmin + 3vw, 56px);
}
.col__01 h2 span { display: block; }
.col__01 h2 span:nth-child(1) { font-size: calc(3vh + 7vw); }
.col__01 h2 span:nth-child(2) { font-size: calc(8vh + 16vw); }
.col__02 { flex-grow:1; }
.camp textarea { min-height: calc(6vh + 8vw); }

/* Error */
.error__number { font-size: calc(5vh + 12vw); }
.error__text { font-size: calc(2vh + 4vw); }
.error p .letter__o {
    font-size: calc(4.8vh + 8.8vw);
    margin: 0 -3%;
} 
.error p .letter__o span::before { border: 1.2vw solid rgb(var(--blanco), 1); }

}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
@media (max-width : 991px) {

/* Work */
.cont__proyect > * + * { margin-top: 30px; }

}
@media (min-width : 992px) {

/* Hello */
.hello .container { width: 85%; }

/* Work */
.cont__proyect {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    gap: 3vw;
}
.cont__proyect .proyect__head { width: 45%; }
.cont__proyect .proyect__graf { width: 55%; }
.proyect__head * { display: block; }
.proyect__graf .c__cta {
    top: 60%;
    left: -10%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.proyect__graf > a:hover + .c__cta > .cta { color: rgb(var(--amarillo), 1); }
.proyect__graf > a:hover + .c__cta > .cta::before {
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}
.cont__proyect .proyect__graf:hover > a figure img {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

/* Detail */
.detail__head .container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.detail__head .container > div { width: 50%; }
.detail__head .detail__info > div {
    width: 80%;
    margin: 0 auto;
    padding: 60px 0;
}
.detail__head .detail__img {
    width: 100%;
    height: auto;
    margin: 0;
}
.detail__head .detail__img figure {
    width: 100%;
    height: calc(100vh - 87px);
}

}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) {
}
@media (max-width : 1199px) {
}
@media (min-width : 1200px) {
}


header ul,
footer ul,
header ol,
footer ol {
    padding-inline-start: 0;
    list-style: none;
}
header li + li,
footer li + li { margin-top: 0; }

/******************************
*   Header
******************************/
.header {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 0px;
    width: 100%;
    z-index: 300;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    background: rgb(var(--blanco), 0);
    box-shadow: 0 0 10px rgb(var(--negro), 0);
}
#home .header,
#work .header { position: fixed; }
.cont__header {
    padding: 10px 20px;
    text-transform: uppercase;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.logo a {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
}
.logo a figure {
    width: 65px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.logo a figure .cls-1 {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.logo a div {
    font-size: 16px;
    font-weight: 700;
    overflow: hidden;
}
.logo a div .word { display: inline-block; }
.list__opt {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 20px;
}
.list__opt li,
.list__opt li div { overflow: hidden; }
.list__opt li div a {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

#home .header,
#work .header {
    background: rgb(var(--blanco), 0);
    box-shadow: 0 0 10px rgb(var(--negro), 0);
}
.header.active,
#home .header.active {
    background: rgb(var(--blanco), 1);
    box-shadow: 0 0 10px rgb(var(--negro), .05);
}


/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
@media (max-width : 679px) {
}
@media (min-width : 680px) {
}
@media (min-width : 680px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
}
/* Medium Devices to Large Devices */
@media (min-width : 768px) {
.list__opt { gap: 30px; }
}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
@media (max-width : 991px) {
.logo a div { display: none; }
}
@media (min-width : 992px) {
.list__opt li div a { font-size: 20px; }
.cont__header { padding: 10px 40px; }
#home .cont__header { padding: 20px 40px; }
#home .logo a figure { width: 95px; }
#home .header.active .logo a figure { width: 65px; }
#home .header.active .cont__header {
    padding-top: 10px;
    padding-bottom: 10px;
}
}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) {
}
@media (max-width : 1199px) {
}
@media (min-width : 1200px) {
}


/******************************
*   Footer
******************************/
.footer {
    width: 100%;
    font-size: 14px;
    text-align: center;
    position: relative;
}
.line {
    position: absolute;
    top: 0;
    left: 30px;
    right: 30px;
}
.line span {
    display: block;
    width: 100%;
    border-top: 1px solid rgb(var(--negro), 1);
}
.infoo__foo { padding: 20px 15px; }
.logo__seaeye {
    width: 150px;
    margin: 0 auto;
}
.foo__col a {
    display: inline-block;
    padding: 0 5px;
}

/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
@media (max-width : 679px) {
.foo__col + .foo__col { margin-top: 10px; }
}
@media (min-width : 680px) {
.infoo__foo {
    padding: 20px 50px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
.line {
    left: 50px;
    right: 50px;
}
}
@media (min-width : 680px) and (max-width : 891px) {
.infoo__foo .foo__col:nth-child(1) { width: 100%; }
}
/* Small Devices, Nav */
@media (max-width : 767px) {
}
/* Medium Devices to Large Devices */
@media (min-width : 768px) {
/* #home .footer {
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    z-index: 100;
    bottom: 0;
} */
#work .footer {
    position: fixed;
    bottom: 0;
}
}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
@media (max-width : 991px) {
}
@media (min-width : 992px) {
.foo__col { width: calc(33.33% - 15px); }
.foo__col:first-child { text-align: left; }
.foo__col:first-child figure { margin: 0; }
.foo__col:last-child { text-align: right; }
}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) {
}
@media (max-width : 1199px) {
}
@media (min-width : 1200px) {
}