:root {
    --color_principal: #e6e7ee;
    --color_secundario: #ffcb08;
    --obscuro1: #4d4c4d;
    --negro: #000000;
    --overlayColor: rgba(0, 0, 0, 0.5);
    --blanco: #ffffff;
    --azulFacebook: #3b5998;
    --azulMessenger: #019ffd;
    --verdeWhatsapp: #25d366;
    --verdeCheck: #00b600;
    --rosaInstagram: #e8486c;
    --rojo1: #e60000;
    --rojoIntenso: #FF0000;
    --fuentePrincipal: 'Poppins', sans-serif;
}

html {
    font-size: 62.5%;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    margin: 0;
    font-size: 1.6rem;
    font-family: var(--fuentePrincipal);
    overflow-x: hidden;
    background-color: var(--blanco);
    text-align: center;
    position: relative;
}
/* Globales */
.hide{
    display: none !important;
}
.contenedor {
    max-width: 96%;
    margin: 0 auto;
}
.contenedor-plano {
    background-color: var(--color_principal);
    padding: 1rem !important;
}
.icontenedor {
    padding: 4rem 2rem;
}
@media (min-width: 768px) {
    .contenedor-plano {
        padding: 2.5rem !important;
    }
}
@media (min-width: 1100px) {
    .contenedor {
        max-width: 120rem;
    }
}
img{
    width: 100%;
}
a {
    text-decoration: none;
}
h1{
    font-size: 5rem;
}
h2{
    font-size: 4.5rem;
}
h3{
    font-size: 4rem;
}
h4{
    font-size: 3.5rem;
}
h5{
    font-size: 3rem;
}
.grid-2-column {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 2rem;
    row-gap: 2rem;
}
.grid-3-column{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 2rem;
    row-gap: 2rem;
}
.grid-2-column-2-1 {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 2rem;
    row-gap: 2rem;
}
.grid-3-column-60-20-20 {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 2rem;
    row-gap: 2rem;
}
@media (min-width: 1100px) {
    .grid-2-column {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3-column{
        grid-template-columns: repeat(3, 1fr);
    }
    .grid-2-column-2-1 {
        grid-template-columns: 2fr 1fr;
    }
    .grid-3-column-60-20-20 {
        grid-template-columns: 3fr 1fr 1fr;
    }
}
.grid-center-center{
    align-items: center;
    justify-items: center;
}
.border-radius-1 {
    border-radius: 1rem;
}
.padding-2rem {
    padding: 2rem;
}
.margin-bottom-2rem{
    margin-bottom: 2rem;
}
.margin-10-auto {
    margin: 10rem auto;
}
.neumorphism-text {
    text-transform: uppercase;
    font-size: 5rem;
    color: #aeb0b3;
    text-shadow: 4px 4px 5px #8e90929f,
                -4px -4px 5px #c0c2c66e;
    caret-color: #000;
}
.inset-neu {
    border: .1rem solid #d1d9e6;
    background: #e6e7ee;
    box-shadow: inset 5px 5px 10px #a8a9ae,
                inset -5px -5px 10px #ffffff;
}
.outset-neu {
    border: .1rem solid #d1d9e6;
    background: #e6e7ee;
    box-shadow: 5px 5px 10px #a8a9ae, 
                -5px -5px 10px #ffffff;
}
hr.hr-secondary-color {
    border: 0;
    border-top: 2px solid var(--color_secundario);
}
.button-hover {
    border-radius: .5rem;
    background-color: var(--negro);
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 2.8rem;
    padding: 2rem;
    width: 20rem;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}
.button-hover.button-hover-secondary {
    background-color: var(--color_secundario);
    color: var(--negro);
}
.button-hover span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}
.button-hover span:after {
    content: '\00bb';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}
.button-hover:hover span {
    padding-right: 25px;
}
.button-hover:hover span:after {
    opacity: 1;
    right: 0;
}
/* Faders */
.fadersIn,.fadersU,.fadersR,.fadersL,.fadersD{opacity: 0;}
.animate__fadeIn,
.animate__fadeInUp,
.animate__fadeInRight,
.animate__fadeInLeft,
.animate__fadeInDown{
    opacity: 1;
}
/* animate Css */
.animate__fadeIn{
    -webkit-animation: fadeIn 1.5s ease;
    -o-animation: fadeIn 1.5s ease;
    -moz-animation: fadeIn 1.5s ease;
    animation: fadeIn 1.5s ease;
}
.animate__fadeInUp{
    -webkit-animation: fadeInUp 1.5s ease;
    -o-animation: fadeInUp 1.5s ease;
    -moz-animation: fadeInUp 1.5s ease;
    animation: fadeInUp 1.5s ease;
}
.animate__fadeInRight{
    -webkit-animation: fadeInRight 1.5s ease;
    -o-animation: fadeInRight 1.5s ease;
    -moz-animation: fadeInRight 1.5s ease;
    animation: fadeInRight 1.5s ease;
}
.animate__fadeInLeft{
    -webkit-animation: fadeInLeft 1.5s ease;
    -o-animation: fadeInLeft 1.5s ease;
    -moz-animation: fadeInLeft 1.5s ease;
    animation: fadeInLeft 1.5s ease;
}
.animate__fadeInDown{
    -webkit-animation: fadeInDown 1.5s ease;
    -o-animation: fadeInDown 1.5s ease;
    -moz-animation: fadeInDown 1.5s ease;
    animation: fadeInDown 1.5s ease;
}
.animate__shakeX {
    animation: shakeX .9s ease-in-out;
}
/* Site Header */
.site__header {
    padding: 2rem;
    width: 100%;
}
.header__logo {
    padding: 1rem 1.5rem;
    display: flex;
    border-radius: 1rem;
    width: 27rem;
    border: .0001rem solid #d1d9e6;
    background: #e6e7ee;
    background: linear-gradient(145deg, #f6f7ff, #cfd0d6);
    box-shadow: 5px 5px 7px #c4c4ca,
                -5px -5px 7px #ffffff;
}
.header__logo img{
    height: 6rem;
    display: block;
}
.header__nav ul{
    padding: 0;
    display: none;
}
.header__nav ul li {
    list-style: none;
    margin-bottom: 2rem;
}
.header__nav ul li:last-of-type {
    margin: 0;
}
.header__nav ul li a {
    text-transform: uppercase;
    color: var(--negro);
    padding: 2rem 3rem;
    border-radius: 1rem;
    border: .1rem solid #d1d9e6;
    background: #e6e7ee;
    box-shadow: 4px 4px 5px #c4c4ca, 
                -4px -4px 5px #ffffff;
    transition: all .3s ease-in-out;
    display: block;
}
.header__nav ul li a.active,
.header__nav ul li a:hover {
    border: .1rem solid #d1d9e6;
    background: #e6e7ee;
    box-shadow: inset 2px 2px 5px #c4c4ca,
                inset -3px -3px 5px #ffffff;
    transition: all .2s ease-in-out;
}
/* Menu Icon */
.header-logo-mburger {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.menu-icon {
    cursor: pointer;
    display: inline-block;
    transform: scale(1.3);
    margin-right: 1rem;
}
.bar1,
.bar2,
.bar3 {
    width: 35px;
    height: 5px;
    background-color: var(--obscuro1);
    margin: 6px 0;
    transition: 0.4s;
}
.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px) scale(1.3);
    transform: rotate(-45deg) translate(-9px, 6px) scale(1.3);
}
.change .bar2 {
    opacity: 0;
    transform: scale(1.3);
}
.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px) scale(1.3);
    transform: rotate(45deg) translate(-8px, -8px) scale(1.3);
}
@media (min-width: 768px) {
    .header__logo{
        width: 29rem;
    }
}
@media (min-width: 1100px) {
    .site__header {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    .header__nav ul{
        display: flex;
    }
    .header__nav ul li {
        margin-right: 4rem;
        margin-bottom: 0;
    }
    .menu-icon{
        display: none;
    }
}
/* Header Inicio*/
.header__inicio {
    position: relative;
    padding-top: 15rem;
    padding-bottom: 15rem;
}
.header__inicio .contenedor-plano .icontenedor{
    padding: 4rem 0 10rem;
    position: relative;
}
    .header__inicio .lineas__bottom,
    .header__inicio .lineas__top {
        position: absolute;
        width: 70%;
        z-index: -1;
    }
.header__inicio .lineas__bottom {
    bottom: 0;
    left: 0;
}
.header__inicio .lineas__top {
    top: 0;
    right: 0;
    transform: rotate(180deg);
}
#svg-visual {
    width: 20rem;
    position: absolute;
    bottom: 1rem;
    right: 2rem;
}
.swiper.index__swiper{
    width: 96%;
    padding-top: 0;
    padding-bottom: 40px;
}
.index__swiper .swiper-slide{
    height: 200px;
    -webkit-box-reflect: initial;
}
.header__inicio-title {
    color: var(--obscuro1);
    font-size: 3.2rem;
    font-weight: normal;
}
/* Segundo Swiper FrontPage */
.index-servicios__swiper.swiper{
    padding-top: 0;
    padding-bottom: 130px;
}
.index-servicios__swiper .swiper-slide::after{
    content: '';
}
.index-servicios__swiper .swiper-slide{
    position: relative;
    overflow: hidden;
}
.index-servicios__swiper .swiper-slide img {
    transition: .5s linear;
    width: 100%;
    object-fit: contain;
}
.index-servicios__swiper .swiper-slide .button-hover{
    font-size: 2rem;
    position: absolute;
    bottom: -.5rem;
    left: 50%;
    transform: translate(-50%,100%);
    width: 100%;
}
.index-servicios__swiper .swiper-slide:hover img,
.index-servicios__swiper .swiper-slide-active img {
    transform: scale(.8);
}
.index-servicios__swiper .swiper-slide:hover .button-hover,
.index-servicios__swiper .swiper-slide-active .button-hover{
    transform: translate(-50%,0);
}
.index-servicios__swiper .swiper-slide .button-hover:hover {
    background-color: var(--color_secundario);
    color: var(--negro);
    transition: color .5s linear;
}
.index-servicios__swiper .swiper-slide .button-hover.button-hover-secondary:hover {
    background-color: var(--negro);
    color: var(--blanco);
    transition: color .5s linear;
}

.header__inicio .h-inicio-productos-btn { 
    margin: 5rem auto;
    width: 40rem;
}
.h-inicio-productos-btn i {
    margin-left: 1rem;
}
@media (min-width: 768px) {
    .header__inicio {
        padding-top: 20rem;
    }
    .swiper.index__swiper{
        width: 90%;
    }
    .index__swiper .swiper-slide{
        height: 400px;
    }
    .header__inicio .lineas__bottom,
    .header__inicio .lineas__top {
        width: 40%;
    }
}
@media (min-width: 1100px) {
    .header__inicio {
        padding-top: 15rem;
    }
    .swiper.index__swiper{
        width: 90%;
    }
    .index__swiper .swiper-slide{
        height: 500px;
    }
    .header__inicio .lineas__bottom,
    .header__inicio .lineas__top {
        width: 30%;
    }
}
/* Productos */
/* Productos BTN Catalogo btn anim1*/
.productos-catalogo-btn {
    margin: 10rem auto 15rem;
    width: 35rem;
}
.btn-anim1{
    color: var(--obscuro1);
    padding: 4rem 3rem;
    border-radius: 1rem;
    font-size: 2.6rem;
    transition: .3s linear;
    background-color: var(--color_principal);
    border: .1rem solid #d1d9e6;
    box-shadow: 4px 4px 5px #c4c4ca;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-box-reflect: below 1rem linear-gradient(transparent, #0004);
}
.btn-anim1 span {
    position: relative;
    z-index: 1;
}
.btn-anim1:hover {
    background-color: var(--obscuro1);
    color: var(--color_secundario);
    border: .1rem solid var(--obscuro1);
}
.btn-anim1:hover:before{
    width: 200%;
}
.btn-anim1::before{
    content: '';
    position: absolute;
    width: 6rem;
    height: 400%;
    background-color: var(--color_secundario);
    transition: .5s;
    animation: rotate 2.5s linear infinite;
}
.btn-anim1:hover:after{
    background-color: var(--obscuro1);
}
.btn-anim1::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 1rem;
    background-color: var(--color_principal);
    transition: .3s;
}
@keyframes rotate {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);
    }
}
.productos-catalogo-btn i {
    margin-right: 2rem;
}
/**/
.productos__section {
    margin-bottom: 10rem;
}
.productos__section .productos__div {
    border-radius: 1rem;
    padding: 5rem 0;
    overflow: hidden;
}
.productos-div--padding {
    padding: 2rem 2rem;
    margin-top: 4rem;
    overflow: hidden;
}
/* Franjas Title */
.contenedor-franjas {
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 1rem;
}
.franja-amarilla {
    background-color: var(--color_secundario);
    padding-bottom: .5rem;
    border-radius: 1rem;
    /* margin: 4rem 0; */
}
.franja-obscura {
    background-color: var(--obscuro1);
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
    width: 95%;
    padding: .8rem 0 1.1rem;
    border-top-left-radius: 1rem;
    border-bottom-left-radius: 1rem;
}
.franja-negra {
    background-color: var(--negro);
    clip-path: polygon(0 0, 100% 0, 94% 100%, 0 100%);
    width: 93%;
    min-height: 5.6rem;
    padding: .5rem 4rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.productos__title {
    margin: 0 1rem;
    color: white;
    font-weight: normal;
    font-size: 2.3rem;
}
.productos__title--large-text{
    font-size: 2rem;
}
.productos-div-1-column-80 {
    width: 100%;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .productos-div--padding {
        padding: 2rem 4rem;
    }
    .franja-obscura {
        width: 80%;
    }
    .franja-negra {
        width: 90%;
    }
    .productos__title {
        font-size: 3rem;
    }
    .productos__title--large-text{
        font-size: 2rem;
    }
    .productos-div-1-column-80 {
        width: 80%;
        margin: 0 auto;
    }
}
@media (min-width: 1100px) {
    .productos__title {
        font-size: 4rem;
    }
    .productos__title--large-text{
        font-size: 3rem;
    }
}
/* Señalamientos */
#senalamientos {
    margin: 6rem auto;
}
#senalamientos .senalamientos-contenedor__anim {
    border-radius: 1rem;
    padding: 4rem 2rem;
    overflow: hidden;
}
.senalamientos-contenedor__anim .contenedor__anim--title {
    align-self: center;
    font-size: 2.3rem;
    text-transform: uppercase;
    font-weight: normal;
    color: var(--obscuro1);
}
.senalamientos-contenedor__anim .contenedor__anim--svg {
    padding: 2rem;
    border-radius: 1rem;
}
@media (min-width: 768px) {
    #senalamientos .senalamientos-contenedor__anim {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        column-gap: 3rem;
        row-gap: 5rem;
        padding: 8rem 3rem;
    }
    .senalamientos-contenedor__anim .contenedor__anim--title {
        font-size: 2.9rem;
        margin: 1rem;
    }
}
@media (min-width: 1100px) {
    #senalamientos .senalamientos-contenedor__anim {
        row-gap: 10rem;
    }
    .senalamientos-contenedor__anim .contenedor__anim--title {
        font-size: 3.5rem;
        margin: 1rem;
    }
}
/* Artes Graficas */

/* Productos Swiper */
.swiper {
    width: 98%;
    padding-top: 50px;
    padding-bottom: 150px;
    overflow: hidden;
}
.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 300px;
    -webkit-box-reflect: below 1px linear-gradient(transparent, transparent, #0006);
    overflow: hidden;
}
.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 1rem;
    object-fit: cover;
}
.swiper-slide::after {
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900; 
    content: "\f00e";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    font-size: 4rem;
    text-shadow: 0 0 1rem #ffffff,
                 0 0 1.5rem #ffffff,
                 0 0 3rem #ffffff;
    transform: translate(-50%,-50%);
    opacity: 0;
    transition: .3s linear;
    pointer-events: none;
}
.swiper-slide:hover::after{
    opacity: 1;
    transition-delay: .3s;
}
.swiper-slide .swiper-slide__title{
    position: absolute;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--blanco);
    font-size: 3rem;
    font-weight: normal;
    padding: 2rem 1rem;
    border-radius: 1rem;
    bottom: 0;
    left: 50%;
    width: 90%;
    transform: translate(-50%, 0);
    text-shadow: 0 0 4rem var(--negro);
    transition: .5s ease-in-out;
}
.swiper-slide:hover .swiper-slide__title{
    /* transform: translate(-50%, 25rem); */
    transform: translate(-50%, 200%);
}
.productos__description {
    color: var(--obscuro1);
    font-weight: lighter;
}
/* Acrilico */
.acrilico__description {
    background-color: var(--color_secundario);
    width: 30rem;
    padding: 2rem;
    margin: 0 auto;
}
.productos__description--big {
    font-size: 2rem;
    font-weight: lighter;
    line-height: 1.3;
    color: var(--obscuro1);
    text-align: justify;
}
.productos__description-ul--big {
    font-size: 1.8rem;
    font-weight: lighter;
    line-height: 1.3;
    color: var(--obscuro1);
    text-align: left;
}
/* btn Flotantes */
.btn-ir-arriba {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1.7rem 2rem;
    opacity: 0;
    pointer-events: none;
    transition: .3s linear;
    z-index: 99;
}
.btn-ir-arriba.show {
    opacity: 1;
    pointer-events: all;
}
.btn-ir-arriba:hover {
    cursor: pointer;
    border: .1rem solid #d1d9e6;
    background: #e6e7ee;
    box-shadow: inset 2px 2px 5px #c4c4ca, inset -3px -3px 5px #ffffff;
}
.btn-ir-arriba i{
    font-size: 3rem;
    color: var(--obscuro1);
}
.whatsapp-flotante {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    padding: 1.7rem 2rem;
    border-radius: 50%;
    transition: .2s linear;
    z-index: 99;
}
@media (min-width: 1100px) {
    .whatsapp-flotante {
        bottom: 15rem;
        right: 2rem;
        left: unset;
    }
}
.whatsapp-flotante:hover{
    border: .1rem solid #d1d9e6;
    background: #e6e7ee;
    box-shadow: inset 2px 2px 5px #c4c4ca, inset -3px -3px 5px #ffffff;
}
.whatsapp-flotante i {
    color: var(--verdeWhatsapp)
}
/* Site Footer */
.site__footer {
    padding: 10rem 0;
    border-top: .1rem solid #d1d9e6;
    background-color: var(--color_principal);
}
.site__footer .contenedor{
    margin-bottom: 5rem;
}
.footer-redes .red-icon .icon-container {
    width: 6rem;
    height: 6rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.footer-redes .red-icon .icon-container i {
    color: var(--obscuro1);
    font-size: 2.5rem;
}
.footer-redes .red-icon p {
    color: var(--obscuro1);
    transition: .2s linear;
}
.footer-redes .red-icon p:hover {
    color: var(--azulMessenger);
    cursor: pointer;
}
.footer-logo .footer-logo-img-container{
    width: 10rem;
    margin: auto;
}
.footer-enlaces {
    margin: 0 auto;
}
.footer-enlaces a {
    display: block;
    text-align: start;
    color: var(--obscuro1);
    border: .1rem solid transparent;
    padding: 1rem 2rem;
    margin-bottom: 2rem;
    border-radius: .5rem;
    transition: .2s linear;
}
.footer-enlaces a:hover {
    color: var(--negro);
    border: .1rem solid #d1d9e6;
    background: #e6e7ee;
    box-shadow: inset 2px 2px 5px #c4c4ca, inset -3px -3px 5px #ffffff;
}
.footer-catalogo {
    margin: 4rem 0;
}
.footer-catalogo a{
    color: var(--obscuro1);
    padding: 1.5rem 3rem;
    border-radius: .5rem;
}
.footer-catalogo a:hover {
    color: var(--azulMessenger);
    border: .1rem solid #d1d9e6;
    background: #e6e7ee;
    box-shadow: inset 2px 2px 5px #c4c4ca, inset -3px -3px 5px #ffffff;
}
.footer-catalogo a i {
    margin-right: 1rem;
}
.powered {
    color: var(--negro);
}
@media (min-width: 768px) {
    .footer-redes.grid-3-column{
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-enlaces {
        margin: 4rem auto;
        display: flex;
    }
}
@media (min-width: 1100px) {
    .site__footer {
        padding: 5rem 0;
    }
    .footer-catalogo {
        margin: 0;
    }
    .footer-enlaces {
        margin: 0 auto;
        display: unset;
    }
}

/* Nosotros */
#nosotros {
    margin: 10rem auto;
}
#nosotros .icontenedor {
    padding: 5rem 2rem 15rem;
    position: relative;
}
.img-nosotros {
    width: 30rem;
    margin: 0rem auto 5rem;
}
#nosotros p {
    font-size: 2rem;
    text-align: center;
}
#nosotros .icontenedor .lineas__bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30rem;
}
@media (min-width: 768px) {
    #nosotros .icontenedor {
        padding: 5rem 5rem 25rem;
    }
    .img-nosotros {
        width: 45rem;
        margin: 0rem auto 5rem;
    }
    #nosotros .icontenedor .lineas__bottom {
        width: 50rem;
    }
}
@media (min-width: 1100px) {
    #nosotros .icontenedor {
        padding: 5rem 20rem 20rem;
    }
}
/* Contacto */

.formulario-contacto {
    max-width: 100%;
    margin: 10rem auto;
    padding: 6rem 2rem;
    border-radius: 1rem;
    position: relative;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    column-gap: 4rem;
    row-gap: 4rem;
}
.formulario-contacto legend {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 1.5rem 3rem;
    font-size: 4rem;
    border-radius: 1rem;
    color: var(--obscuro1);
}
.formulario-contacto .campo {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    flex-direction: column;
}
.formulario-contacto .campo label {
    flex: 0 0 3rem;
    color: var(--obscuro1);
    display: block;
    margin-top: .5rem;
}
.input-control {
    flex: 1;
    border: 1px solid #e1e1e1;
    border-radius: .5rem;
    padding: 1rem;
    outline: 0;
    resize: none;
    color: var(--obscuro1);
}
.inputError {
    border: 1px solid #FF0000;
    animation: shakeX .9s ease-in-out;
}
.formulario-contacto .enviar {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
}
.formulario-contacto .enviar .submit {
    text-transform: none;
    font-size: 1.8rem;
    color: var(--obscuro1);
    outline: 0;
    border-radius: .5rem;
    padding: 1.5rem 3rem;
    transition: .3s ease-in-out;
}
.formulario-contacto .enviar .submit:hover {
    cursor: pointer;
    box-shadow: inset 2px 2px 5px #c4c4ca, inset -3px -3px 5px #ffffff;
}
.contacto-tarjeta .tarjeta-img {
    width: 85%;
    margin: auto;
    padding-top: 2rem;
}
.contacto-tarjeta .tarjeta-ldi{
    font-size: 2rem;
}
.contacto-tarjeta .tarjeta-icon i,
.formulario-contacto .red-icon.red-icon--map i {
    font-size: 3rem;
    color: var(--obscuro1);
}
.icon-container {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.contacto-tarjeta .tarjeta-icon p {
    color: var(--obscuro1);
    word-wrap: break-word;
    word-break: break-all;
    transition: .2s linear;
    font-size: 1.4rem;
}
.contacto-tarjeta .tarjeta-icon p:hover,
.formulario-contacto .red-icon.red-icon--map p:hover {
    color: var(--azulMessenger);
    cursor: pointer;
}
.formulario-contacto .red-icon.red-icon--map {
    max-width: 25rem;
    margin: auto;
    color: var(--obscuro1);
}
.formulario-contacto .red-icon.red-icon--map p{
    transition: .2s linear;
    font-size: 1.4rem;
}
@media (min-width: 650px) {
    .formulario-contacto{
        padding: 5rem;
    }
    .formulario-contacto .campo {
        flex-direction: row;
    }
    .formulario-contacto .campo label {
        flex: 0 0 8rem;
    }
    .formulario-contacto .contacto-tarjeta .grid-2-column{
        grid-template-columns: repeat(2, 1fr);
    }
    .contacto-tarjeta .tarjeta-img {
        width: 65%;
    }
}
@media (min-width: 1100px) {
    .formulario-contacto {
        grid-template-columns: repeat(2, 1fr);
    }
    .contacto-tarjeta .tarjeta-img {
        width: 55%;
    }
}
/* Sweet Alert */
.wea::after {
    content: '|';
    display: inline;
    -webkit-animation: blink 0.6s infinite;
    -moz-animation: blink 0.6s infinite;
    animation: blink 0.6s infinite;
}
@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.swal2-styled.swal2-confirm {
    background-color: var(--verdeCheck);
}
@media (min-width: 768px) {
    .swal2-container {
        transform: scale(2);
    }
}
/* Politica de privacidad */
.sample-link{
    color: #0000ff;
    transition: .3s linear;
}
.sample-link:hover{
    color: var(--azulMessenger);
}
.politica {
    margin: 10rem auto;
}
.politica h1,
.politica h2,
.politica h3,
.politica h4,
.politica h5{
    font-weight: lighter;
}
/* error 404 */
.error-404 {
    color: var(--obscuro1);
    position: relative;
}
.error-404::before{
    content: '404';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    color: var(--obscuro1);
    font-size: 16rem;
    opacity: .1;
}
.error-404 h1{
    font-weight: lighter;
}
.error-404 .inset-neu{
    padding: 5rem 2rem;
}
@media (min-width: 768px) {
    .error-404::before{
        font-size: 30rem;
    }
    .error-404 .inset-neu{
        padding: 10rem;
    }
}