/******************************
*   Tipografias
******************************/
@import url('all.css');
@import url('typo.css');

:root {
    --negro: 0, 0, 0;
    --blanco: 255, 255, 255;
    --ocuro: 25, 54, 82;
    --gris: 206, 206, 206;
    --azul_d: 13, 76, 138;
    --azul_m: 40, 121, 189;
    --azul_n: 94, 171, 236;
    --azul_l: 210, 222, 235;
    --azul_xl: 249, 252, 255;
    --cafe: 187, 165, 141;
    --crema_m: 229, 196, 161;
    --crema_l: 248, 237, 225;
    --rojo: 170, 29, 29;

    --deg_azul: linear-gradient(90deg, rgb(var(--azul_m), 1), rgb(var(--azul_n), 1));

    --deg_crema_t: linear-gradient(0deg, #FFFFFF 0%, #F8EDE1 100%);
    --deg_crema_l: linear-gradient(90deg, #F8EDE1 0%, #FFFFFF 100%);
    --deg_crema_r: linear-gradient(90deg, #FFFFFF 0%, #F8EDE1 100%);

    --deg_azul_t: linear-gradient(0deg, rgb(var(--azul_l), 0) 0%, rgb(var(--azul_l), 1) 100%);
    --deg_azul_l: linear-gradient(90deg, rgb(var(--azul_l), 1) 0%, rgb(var(--azul_l), 0) 100%);
    --deg_azul_r: linear-gradient(90deg, rgb(var(--azul_l), 0) 0%, rgb(var(--azul_l), 1) 100%);
}

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

/******************************
*   Reset
******************************/
*{
    border: 0px;
    margin: 0px;
    padding: 0px;
}
html {
    scroll-behavior: smooth;
    scroll-padding: 80px;
}
body {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: 'Lato';
    font-weight: normal;
    font-style: normal;
    line-height: 1.4;
    font-size: 16px;
    color: rgb(var(--ocuro), 1); 
    background: rgb(var(--name), 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 {
    max-width: 100%;
    height: auto;
    display: block;
}
.mask {
    border-radius: 16px;
    overflow: hidden;
}
a, a:link, a:hover, a:visited {
    text-decoration: underline;
    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;
    font-family: 'Lato';
    font-weight: bold;
    font-style: normal;
}
input,
select,
textarea {
    display: block;
    width: 100%;
    padding: 12px 16px;
    color: rgb(var(--azul_m), 1);
    background: rgb(var(--azul_d), .1);
    border-radius: 8px;
    -moz-appearance: none;
    -webkit-appearance: none;
}
textarea {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
}
/* 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 + *,
* + 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: 100%;
    height: 100%;
    background: rgb(var(--blanco), 1);
    z-index: 1000;
}
.loader::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 100%;
    background: var(--deg_azul_l);
    opacity: .8;
}
.c__log {
    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%);
    width: 180px;
    max-width: 60%;

    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.c__log > div {
    grid-area: 1 / 1 / 2 / 2;
    opacity: 0;
}

/******************************
*   General
******************************/
main {
    min-height: calc(100vh - 70px);
    position: relative;
}
.m__center {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.full__h { min-height: calc(100vh - 60px); }
main section {
    padding: 60px 0;
    position: relative;
}



/* Background */
.bg__al { background: rgb(var(--azul_l), 2); }
.bg__cd {
    color: rgb(var(--blanco), 1);
    background: rgb(var(--cafe), 2);
}

.bg__c__t { background: var(--deg_crema_t); }
.bg__c__l { background: var(--deg_crema_l); }
.bg__c__r { background: var(--deg_crema_r); }
.bg__a__t { background: var(--deg_azul_t); }
.bg__a__l { background: var(--deg_azul_l); }
.bg__a__r { background: var(--deg_azul_r); }

.bg__c__t .h__sect,
.bg__c__l .h__sect,
.bg__c__r .h__sect { color: rgb(var(--cafe), 1); }

.bg__al .h__sect,
.bg__a__t .h__sect,
.bg__a__l .h__sect,
.bg__a__r .h__sect { color: rgb(var(--azul_d), 1); }



/* Head Page */
.head__page { padding: 0; }
.page__text {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}
.page__img figure {
    width: 100%;
    height: 20vh;
}
.page__img figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.fil__head .text__info {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.fil__head figure {
    position: absolute;
    max-width: 70%;
    opacity: .1;

    top: 5%;
    right: -5%;
}

/* Head Section */
.h__sect + *,
* + .h__sect { margin-top: 40px; }
.h__sect { text-align: center; }
.sect__tit {
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    margin: 0;
}
.sect__sub {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
}
.h__sect strong { font-weight: normal; }

.h__01 .sect__tit { color: rgb(var(--azul_d), 1); }
.h__01 .sect__tit strong { color: rgb(var(--cafe), 1); }

.h__02 .sect__tit { color: rgb(var(--azul_d), 1); }
.h__02 .sect__tit strong { color: rgb(var(--azul_d), 1); }

/* CTA */
* + .c__cta { margin-top: 40px; }
.c__cta {
    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;
    gap: 20px;
}
.cta__cntr { justify-content: center; }
.cta,
a.cta {
    display: inline-block;
    border-radius: 6px;
    text-align: center;
    line-height: 1;
    padding: 12px 20px;
    font-weight: bold;
    position: relative;
    color: rgb(var(--blanco), 1);
    text-decoration: none;
    z-index: 1;
}
.cta__01 { background: rgb(var(--azul_n), 1); }
.cta__02 { background: rgb(var(--cafe), 1); }
.cta__02:hover { background: rgb(var(--crema_m), 1); }
.cta__03 { background: var(--deg_azul); }
.cta__03::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    border-radius: 6px;
    background: rgb(var(--azul_n), 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;
}
.cta__03:hover::before { opacity: 1; }
.cta > * + * { margin-left: 10px; }
.cta i {
    display: inline-block;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.cta__center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}


/* Hero */
.col__her { position: relative; }
.cont__hero .col__02 { padding: 30px 20px 40px; }
.img__slide {
    width: 100%;
    height: 45vh;
}
.img__slide figure, 
.img__slide figure img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.cont__hero .col__02 .cont__slider {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}
.cont__hero .col__02 .h__sect { text-align: left; }
.arrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.a__prev { left: 0; }
.a__next { right: 0; }
.a__icon {
    background: rgb(var(--blanco), .5);
    color: rgb(var(--blanco), 1);
    padding: 6px 12px;
    font-size: 20px;
    line-height: 1;
}
.cont__hero .swiper-pagination {
    margin-top: 0px;
    position: absolute;
}
.cont__hero .swiper-pagination-bullet {
    background: rgb(var(--blanco), 1);
    opacity: .5;
}
.cont__hero .swiper-pagination-bullet-active {
    background: rgb(var(--cafe), 1);
    opacity: 1;
}
.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: rgb(var(--blanco), 1);
}
.autoplay-progress svg {
    --progress: 0;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 10;
    width: 100%;
    height: 100%;
    stroke-width: 4px;
    stroke: rgb(var(--blanco), 1);
    fill: none;
    stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
    stroke-dasharray: 125.6;
    transform: rotate(-90deg);
}

.swiper-pagination {
    position: relative;
    margin-top: 20px;
}
.swiper-pagination-bullet {
    background: rgb(var(--azul_m), 1);
    opacity: .2;
}
.swiper-pagination-bullet-active {
    background: rgb(var(--cafe), 1);
    opacity: 1;
}

/* Slide view */
.s__over { overflow: hidden; }
.s__over .swiper { overflow: visible; }

/* Card */
.card {
    border-radius: 16px;
    width: 100%;
}
.card > * {
    display: block;
    padding: 20px; 
}
.card > a { text-decoration: none; }
.card .h__sect { text-align: left; }
.card .h__sect i { font-size: 24px; }
.card figure,
.card figure img {
    width: 100%;
    height: 100%;
    object-position: center;
    object-fit: cover;
}
.card figure {
    position: relative;
    padding-top: 100%;
}
.card figure img {
    top: 0;
    position: absolute;
}
.card .car__ti { font-size: 18px; }


/* Card pro */
.card__pro,
.card__pro > div  {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.card__pro > * + * { margin-top: 15px; }
.card__pro > div > * + *,
.card__pro > div > div > * + * { margin-top: 15px; }
.card__pro > div  {
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
}
.card__pro figure,
.card__pro figure img {
    width: 100%;
    object-position: center;
    object-fit: cover;
}
.card__pro figure {
    position: relative;
    padding-top: 80%;
}
.card__pro figure img {
    top: 0;
    position: absolute;
    height: 100%;
}

/* Grid IMG */
.grid__img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
.grid__01 .img__item:nth-child(1) { grid-area: 1 / 1 / 2 / 3; }
.grid__01 .img__item:nth-child(2) { grid-area: 2 / 1 / 3 / 2; }
.grid__01 .img__item:nth-child(3) { grid-area: 2 / 2 / 3 / 3; }

.grid__02 .img__item:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
.grid__02 .img__item:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
.grid__02 .img__item:nth-child(3) { grid-area: 2 / 1 / 3 / 3; }

.grid__img figure { position: relative; }
.grid__img figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.grid__01 .img__item:nth-child(1) figure,
.grid__02 .img__item:nth-child(3) figure { padding-top: 50%; }
.grid__01 .img__item:nth-child(2) figure,
.grid__01 .img__item:nth-child(3) figure,
.grid__02 .img__item:nth-child(1) figure,
.grid__02 .img__item:nth-child(2) figure { padding-top: 100%; }

/******************************
*   Home
******************************/
.principal { padding: 0; }
.phrase { padding: 40px 20px; }

/* -------- We are ------ */
.col__02 > * {
    width: 70%;
    max-width: 300px;
    margin: 0 auto;
}
.fill__we  .h__sect { text-align: left;}

/******************************
*   About Us
******************************/
.info__02 .text__content { color: rgb(var(--cafe), 1); }

.serv__item .card figure {
    padding-top: 50%;
    margin-top: 20px;
}

/******************************
*   Services
******************************/
.cont__service figure { height: 30vh; }
.cont__service .h__sect {
    text-align: left;
    margin-top: 25px;
}
.cont__service .h__sect + * { margin-top: 25px; }


.slide__projets .card a > * + * { margin-top: 15px; }
.slide__projets .card figure { padding-top: 50%; }
.slide__projets .card figure img {
    -webkit-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    transition: all 0.5s ease-out;
}
.slide__projets .card a:hover 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);
}

/******************************
*   Project Detail
******************************/
.fil__detail + .fil__detail { margin-top: 60px; }
.img__detail figure {
    padding-top: 60%;
    position: relative;
}
.img__detail figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.txt__detail .h__sect { text-align: left; }
/* Controles LB */
.cntrl__ele {
    width: 50px;
    height: 50px;
    position: relative;
    -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;
}
.cntrl__ele > * {
    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%);
    font-size: 28px;
}
.c__slide {
    background: rgb(var(--blanco), .3);
    color: rgb(var(--blanco), 1);
}
/* Controles LB */

.img__gal figure {
    padding-top: 65%;
    position: relative;
}
.img__gal figure img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/******************************
*   Formularios
******************************/
.camp + .camp { margin-top: 20px; }
.camp textarea { min-height: 200px; }

/******************************
*   Contact
******************************/
.contact__cont .h__sect { text-align: left; }
.img__cntct {
    position: relative;
    padding-top: 40%;
    height: 100%;
}
.img__cntct figure,
.img__cntct figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.img__cntct figure {
    position: absolute;
    top: 0;
    left: 0;
}
.cntct__info p + p { margin-top: 4px; }
.c__02 { color: rgb(var(--azul_m), 1); }


/******************************
*   Legal
******************************/
#legal .bg__c__t .h__sect { color: rgb(var(--azul_d), 1); }
.cont__legal {
    margin-left: auto;
    margin-right: auto;
    max-width: 800px;
}
.cont__legal h3,
.cont__legal h4,
.cont__legal h5,
.cont__legal h6 {
    font-size: 20px;
    text-align: center;
    font-weight: normal;
    color: rgb(var(--cafe), 1);
    margin-top: 50px;
    padding-top: 50px;
    position: relative;
}
.cont__legal h3::before,
.cont__legal h4::before,
.cont__legal h5::before,
.cont__legal h6::before {
    content: '';
    position: absolute;
    width: 50px;
    left: 50%;
    top: 0;
    margin-left: -25px;
    border-top: 1px solid rgb(var(--cafe), 1);
}


/******************************
*   Message
******************************/
.bg__page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/linea-azul.svg') center no-repeat;
    background-size: 100%;
}
.con__message {
    margin-right: auto;
    margin-left: auto;
    max-width: 650px;
    padding-left: 15px;
    padding-right: 15px;
    text-align: center;
    font-size: 18px;
}
.con__message figure {
    width: 140px;
    margin-right: auto;
    margin-left: auto;
}
.con__message .sect__tit { font-size: 32px; }
#error .sect__tit span { color: rgb(var(--rojo), 1); }


/******************************
*   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) {
/* -------- Grid ------ */
.item__grid + .item__grid { margin-top: 40px; }

}
@media (min-width : 680px) {
/* Grid */
.grid {
    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;
    gap: 50px 30px;
}
.item__grid { width: calc(50% - 15px); }

}
@media (min-width : 680px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
/* -------- We are ------ */
.fill__we > div + div { margin-top: 30px;}

/* -------- About Us ------ */
.info__about .container {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
}
.info__about .container::before,
.info__about .container::after { content: unset; }
.serv__item + .serv__item  { margin-top: 30px; }
.serv__item .card .sect__tit { font-size: 22px; }

/* -------- Services ------ */
.item__service + .item__service { margin-top: 30px; }

/* -------- Project Detail ------ */
.fil__detail {
    display: flex;
    flex-direction: column-reverse;
    gap: 30px;
}

/* -------- Contact ------ */
#contact section { padding-top: 0; }
.img__contact {
    margin-left: -15px;
    margin-right: -15px;
}
.img__contact .mask { border-radius: 0; }

}
/* Medium Devices to Large Devices */
@media (min-width : 768px) {
/* Head Page */
.page__img figure {
    width: 100%;
    height: 30vh;
    max-height: 350px;
}
.fil__head {
    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;
    gap: 30px;
}
.page__text .fil__head > * { margin: 0; }
.fil__head .h__sect { white-space: nowrap; }
.fil__head .text__info {
    width: 50%;
    text-align: left;
}
.fil__head figure {
    position: relative;
    max-width: 20%;
    min-width: 160px;
    opacity: .3;
}
.sect__tit { font-size: 32px; }
.con__message .sect__tit { font-size: 42px; }

/* Hero */
.cont__hero {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.cont__hero .col__01 { width: 55%; }
.cont__hero .col__02 {
    width: 45%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 40px;
}
.img__slide { height: 65vh; }
.a__icon {
    padding: 8px 16px;
    font-size: 32px;
}

/* -------- We are ------ */
.we__are {
    padding-top: 100px;
    padding-bottom: 100px;
}
.fill__we {
    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;
    flex-direction: row-reverse;
}
.fill__we > div { width: 50%; }
.col__02 > * {
    width: 80%;
    max-width: initial;
}

/* -------- About Us ------ */
.info__about .grid__img {
    width: calc(45% - 30px);
    min-width: calc(45% - 30px);
    margin-bottom: 30px;
}
.info__01 .grid__img {
    float: right;
    margin-left: 40px;
}
.info__02 .grid__img {
    float: left;
    margin-right: 40px;
}
.grid__serv {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    gap: 30px;
}
.serv__item { width: calc(33.33% - 10px); }

/* -------- Services ------ */
.grid__services {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -webkit-flex-flow: row wrap;
    -ms-flex-wrap: row wrap;
    flex-flow: row wrap;
    display: flex;
    row-gap: 80px;
    column-gap: 60px;
    
}
.item__service { width: calc(50% - 30px); }

/* -------- Project Detail ------ */
.fil__detail + .fil__detail { margin-top: 30px; }
.fil__detail > div + div { margin-top: 0px; }
.fil__detail::before,
.fil__detail::after {
    display: table;
    content: " ";
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.fil__detail::after { clear: both; }
.fil__detail .img__detail {
    width: calc(45% - 30px);
    margin-bottom: 30px;
}
.fil__detail:nth-child(1) .img__detail {
    float: left;
    margin-right: 40px;
}
.fil__detail:nth-child(2) .img__detail {
    float: right;
    margin-left: 40px;
}
.img__detail figure {
    padding-top: 70%;
    position: relative;
}

/* -------- Contact ------ */
.contact__cont > * { margin-top: 0; }
.contact__cont {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 20px;
}
.img__contact {
    grid-area: 3 / 1 / 4 / 3;
    display: flex;
}
.img__cntct { padding-top: 0%; }
.img__contact > div,
.img__contact > div .swiper {
    width: 100%;
    height: 100%;
}
.h01 { grid-area: 1 / 1 / 2 / 2; }
.c__01 { grid-area: 2 / 1 / 3 / 2; }
.c__02 { grid-area: 2 / 3 / 3 / 4; }
.h02 { grid-area: 1 / 3 / 2 / 4; }
.cont__form { grid-area: 3 / 3 / 4 / 4; }

.contact__cont .h__sect { margin-bottom: 40px; }
.cntct__info { margin-bottom: 40px; }

}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
/* -------- Contacto ------ */
#contact main .container { width: 100%; }

}
@media (max-width : 991px) {

.s__over { width: 100%; }

/* -------- Projects Home ------ */
.projects .item__grid:nth-child(1) .card__pro {
    background: var(--deg_azul_t);
    border-radius: 16px;
    padding: 20px;
}

}
@media (min-width : 992px) {
/* Grid */
.item__grid { width: calc(33.33% - 20px); }

/* -------- Our projects ------ */
.projects .item__grid:nth-child(1) { width: 100%; }
.projects .item__grid:nth-child(1) .card__pro {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 30px;
}
.projects .item__grid:nth-child(1) .card__pro figure {
    width: calc(66.66% - 20px);
    padding-top: 30%;
}
.projects .item__grid:nth-child(1) .card__pro > div {
    width: calc(33.33% - 20px);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

}
/* 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;
    margin: 0;
}
header li + li,
footer li + li { margin-top: 0; }

/******************************
*   Header
******************************/
.header {
    padding: 0 0 0 20px;
    background: rgb(var(--blanco), 1);
    position: -webkit-sticky;
    position: -moz-sticky;
    position: -o-sticky;
    position: -ms-sticky;
    position: sticky;
    top: 0px;
    z-index: 300;
    border-bottom: 1px solid;
    border-image-slice: 1;
    border-width: 1px;
    border-image-source: var(--deg_azul_r);
    -webkit-box-shadow: 0 0 10px 0 rgb(var(--negro), .03);
    box-shadow: 0 0 10px 0 rgb(var(--negro), .03);
}
.cont__menu {
    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;
    -webkit-box-pack: space-between;
    -webkit-justify-content: space-between;
    -ms-flex-pack: space-between;
    justify-content: space-between;
}
.logo {
    position: relative;
    width: 180px;
    overflow: hidden;
}
.logo a { display: block; }
.logo a span {
    position: absolute;
    top: -100%;
    left: -100%;
    opacity: 0;
}
.menu__nav nav ul li a {
    z-index: 0;
    display: block;
    padding: 25px;
    font-size: 16px;
    line-height: 1;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}
.menu__nav nav ul li a * { display: inline-block; }
.menu__nav nav ul li a * + * { margin-left: 6px; }
.menu__nav nav ul li a i {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
}
.menu__nav nav ul li:not([class]) a:hover {
    color: rgb(var(--blanco), 1);
    background: rgb(var(--cafe), 1);
}
.menu__nav nav ul li:has([class]) a { background: linear-gradient(90deg, #E6F4FF 0%, #FFFFFF 65.02%, #FFD5E4 128.68%); }
.menu__nav nav ul li:has([class]) a::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #E6F4FF;
    z-index: -1;
    opacity: 0;
    -webkit-transition: all 0.9s ease-out;
    -moz-transition: all 0.9s ease-out;
    -ms-transition: all 0.9s ease-out;
    -o-transition: all 0.9s ease-out;
    transition: all 0.9s ease-out;
}
.menu__nav nav ul li:has([class]) a:hover::before { opacity: 1; }
.btn__mob {
    width: 70px;
    height: 70px;
    cursor: pointer;
    position: relative;
}
.btn__mob > div {
    position: absolute;
    width: 50%;
    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%);
}
.btn__mob > div span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgb(var(--azul_d), 1);
    -webkit-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -moz-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -ms-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    -o-transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
    transition: all 300ms cubic-bezier(0.68, -0.1, 0.265, 1.55);
}
.btn__mob > div span + span { margin-top: 6px; }
.btn__mob.active > div span { background: rgb(var(--azul_d), 1); }
.btn__mob.active > div span:nth-child(2) {
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
}
.btn__mob.active > div span:nth-child(1) {
    -webkit-transform: translate(0px, 8px) rotate(45deg);
    -moz-transform: translate(0px, 8px) rotate(45deg);
    -ms-transform: translate(0px, 8px) rotate(45deg);
    -o-transform: translate(0px, 8px) rotate(45deg);
    transform: translate(0px, 8px) rotate(45deg);
}
.btn__mob.active > div span:nth-child(3) {
    -webkit-transform: translate(0px, -8px) rotate(-45deg);
    -moz-transform: translate(0px, -8px) rotate(-45deg);
    -ms-transform: translate(0px, -8px) rotate(-45deg);
    -o-transform: translate(0px, -8px) rotate(-45deg);
    transform: translate(0px, -8px) rotate(-45deg);
}

/* Extra Small Devices, Phones */ 
@media (max-width : 479px) {
}
@media (min-width : 480px) {
}
/* Small Devices, Tablets */
@media (min-width : 480px) and (max-width : 767px) {
}
/* Small Devices, Nav */
@media (max-width : 767px) {
}
/* Medium Devices to Large Devices */
@media (min-width : 768px){
}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
/* Large Devices, Wide Screens */
@media (max-width : 1069px) {
.menu {
    position: absolute;
    top: 100%;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    height: calc(100dvh - 70px);
    -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;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    border-top: 1px solid;
    border-image-slice: 1;
    border-width: 1px;
    border-image-source: var(--deg_azul_l);
}
.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(var(--blanco), .8);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
    z-index: -1;
}
.menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    left: 0%;
}
.menu__nav {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.menu__nav > nav { height: 100%; }
.menu__nav nav ul { padding-top: 66px; }
.menu__nav nav ul li:has([class]) {
    width: 100%;
    position: absolute;
    top: 0;
    text-align: center;
}
}
/* Medium Devices to Large Devices */
@media (min-width : 1070px){
main { min-height: calc(100vh - 76px); }

.header { padding: 0 0 0 20px; }
.btn__mob { display: none; }
.logo { width: 200px; }
.menu__nav,
.menu__nav nav,
.menu__nav nav ul {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.menu__nav nav ul li { display: inline-block; }
.menu__nav nav ul li a {
    padding: 30px 15px;.inicio
    font-size: 14px;
}
}
@media (min-width : 992px) and (max-width : 1200px) {
}
@media (max-width : 1199px) {
}
/* Medium Devices to Large Devices */
@media (min-width : 1200px){
.header { padding: 0 0 0 40px; }
}


/******************************
*   Footer
******************************/
.footer {
    color: rgb(var(--azul_l), 1);
    background: rgb(var(--azul_d), 1);
    position: relative;
}
.fil__foo {
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-left: 15px;
}
.foo__col > * + * { margin-top: 40px; }
.fil__top { padding: 60px 15px; }
.logo__foo { width: 220px; }
.foo__col h3 {
    font-weight: 300;
    font-size: 26px;
}
.social, .social ul {
    display: flex;
    align-items: center;
    gap: 30px;
}
.social ul li a { font-size: 22px; }
.legal {
    display: flex;
    flex-flow: row wrap;
    gap: 30px;
}
.legal > * { display: inline-block; }
.legal > span { font-weight: 300; }
.legal > a { text-decoration: underline; }
.cont__line {
    -webkit-transform: translateX(-15px);
    -moz-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    -o-transform: translateX(-15px);
    transform: translateX(-15px);
}
.cont__line svg {
    display: flex;
    width: 100%;
}

/* 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) {
.foo__col h3 { font-weight: 300; }
.legal {
    flex-direction: row-reverse;
    justify-content: flex-end;
}
.fil__top {
    width: 90%;
    max-width: 1580px;
}
.cont__fil {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
}
.cont__fil > * {
    position: relative;
    grid-area: 1 / 1 / 2 / 2; 
}
.fil__foo {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
.fil__top {
    -webkit-box-pack: flex-end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: flex-end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 1;
}
.fil__top .foo__col {
    max-width: 45%;
    min-width: 450px;
}
.fil__bot {
    width: 100%;
    -webkit-box-align: flex-end;
    -webkit-align-items: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
}
.fil__bot .foo__col {
    width: 45%;
    padding-top: 60px;
}
}
/* Medium Devices, Desktops */
@media (min-width : 768px) and (max-width : 991px) {
}
@media (max-width : 991px) {
}
@media (min-width : 992px) {
.fil__bot .foo__col { width: 50%; }
}
/* Large Devices, Wide Screens */
@media (min-width : 992px) and (max-width : 1200px) {
}
@media (max-width : 1199px) {
}
@media (min-width : 1200px) {
}