/*=======================
    General
=========================*/

html,
body {
    height: 100%;
}

body {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
}

ol,
ul,
li {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}

section {
    overflow: hidden;
}

#newsletter {
    padding: 20px 0;
}


a,
a:hover,
a:focus,
input,
button,
textarea {
    outline: none;
    text-decoration: none;
}

img,
svg {
    vertical-align: bottom;
}

.text-white {
    color: #ffffff;
}

/*=======================
    Animation del loader
=========================*/

@keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}
@-webkit-keyframes spin {
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-webkit-keyframes wobble-vertical {
    15% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
    30% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
    45% {
        -webkit-transform: translateY(3px);
        transform: translateY(3px);
    }
    60% {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
    }
    75% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes wobble-vertical {
    15% {
        -webkit-transform: translateY(6px);
        transform: translateY(6px);
    }
    30% {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }
    45% {
        -webkit-transform: translateY(3px);
        transform: translateY(3px);
    }
    60% {
        -webkit-transform: translateY(-3px);
        transform: translateY(-3px);
    }
    75% {
        -webkit-transform: translateY(1px);
        transform: translateY(1px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes cubemove {
    25% {
        -webkit-transform: translateX(12px) rotate(-90deg) scale(0.5);
        transform: translateX(12px) rotate(-90deg) scale(0.5);
    }
    50% {
        -webkit-transform: translateX(12px) translateY(12px) rotate(-179deg);
        transform: translateX(12px) translateY(12px) rotate(-179deg);
    }
    50.1% {
        -webkit-transform: translateX(12px) translateY(12px) rotate(-180deg);
        transform: translateX(12px) translateY(12px) rotate(-180deg);
    }
    75% {
        -webkit-transform: translateX(0px) translateY(12px) rotate(-270deg) scale(0.5);
        transform: translateX(0px) translateY(12px) rotate(-270deg) scale(0.5);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

@keyframes cubemove {
    25% {
        -webkit-transform: translateX(12px) rotate(-90deg) scale(0.5);
        transform: translateX(12px) rotate(-90deg) scale(0.5);
    }
    50% {
        -webkit-transform: translateX(12px) translateY(12px) rotate(-179deg);
        transform: translateX(12px) translateY(12px) rotate(-179deg);
    }
    50.1% {
        -webkit-transform: translateX(12px) translateY(12px) rotate(-180deg);
        transform: translateX(12px) translateY(12px) rotate(-180deg);
    }
    75% {
        -webkit-transform: translateX(0px) translateY(12px) rotate(-270deg) scale(0.5);
        transform: translateX(0px) translateY(12px) rotate(-270deg) scale(0.5);
    }
    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg);
    }
}

/*=======================
    Botones
    Hay otra customizacion de los botones en el archivo button.css
=========================*/

.btn__wobble:hover {
    -webkit-animation: wobble-vertical 0.6s ease-in-out 1;
    animation: wobble-vertical 0.6s ease-in-out 1;
}

.btn-zetti-primary {
    background-color: rgb(72, 165, 225);
    border-color: rgb(72, 165, 225);
    box-shadow: 0 10px 20px 0 rgba(72, 165, 225, 0.1);
    color: #ffffff;
    font-weight: bolder;
}

.btn-zetti-primary:hover {
    background-color: #29b6f650;
    color: #29b6f6;
    border: none;
}

.btn-zetti-primary:focus {
    background-color: #29b6f650;
    color: #29b6f6;
    box-shadow: 0px 0px 8px 1px #29b6f675;
}

/*=======================
    Icon Style
=========================*/

/*----- Icon Rings -----*/

.icon-rings {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 100%;
    margin: 25px auto 50px;
}

.icon-rings::before,
.icon-rings::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border-radius: 100%;
    content: '';
    background-color: inherit;
}

.icon-rings::before {
    -webkit-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
    -webkit-transform: scale(1.45);
    -ms-transform: scale(1.45);
    transform: scale(1.45);
    z-index: -2;
    opacity: 0.15;
}

.icon-rings::after {
    -webkit-transition: opacity 0.8s ease;
    -o-transition: opacity 0.8s ease;
    transition: opacity 0.8s ease;
    -webkit-transform: scale(1.25);
    -ms-transform: scale(1.25);
    transform: scale(1.25);
    z-index: -1;
    opacity: 0.25;
}

.icon-rings img {
    width: 100%;
    height: auto;
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}

/*----- End Icon Rings -----*/

/*=======================
    End Icon Style
=========================*/

/*=======================
    Nav Border Animate
=========================*/

.navAnimateBorder .nav-link {
    position: relative;
}

.navAnimateBorder .nav-link::before {
    content: '';
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #29b6f6;
    opacity: 0;
}

.navAnimateBorder .nav-link:hover::before,
.navAnimateBorder .active .nav-link::before {
    width: 100%;
    opacity: 1;
}

.social-icon-top-group > a {
    color: #000000;
    /* background-color: #ffffff; */
    padding: 2px 8px !important;
    margin: 0 2px;
    border-radius: 50% !important;
}

/* .social-icon-top > a:hover {
    color: white;
    background-color: #1276cc;
} */

/*=======================
    End Nav Border Animate
=========================*/

/*=======================
    Sombras
=========================*/

.box-shadow {
    -webkit-transition: -webkit-box-shadow 0.25s ease;
    transition: -webkit-box-shadow 0.25s ease;
    -o-transition: box-shadow 0.25s ease;
    transition: box-shadow 0.25s ease;
    transition: box-shadow 0.25s ease, -webkit-box-shadow 0.25s ease;
    border-width: 0;
    border-radius: 10px;
    -webkit-box-shadow: 0 6px 15px rgba(36, 37, 38, 0.08);
    box-shadow: 0 6px 15px rgba(36, 37, 38, 0.08);
    margin-top: 15px;
    margin-bottom: 15px;
}

.box-shadow:hover {
    -webkit-box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

/*=======================
    Header
=========================*/

.slicknav_menu {
    background-color: #858482 !important;
    border-radius: 5px;
}

.header {
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 991;
    background-image: -webkit-linear-gradient(270deg, #1276cc65 0%, transparent 75%);
    background-image: -o-linear-gradient(180deg, #1276cc65 0%, transparent 75%);
    background-image: linear-gradient(180deg, #1276cc65 0%, transparent 75%);
}

.fixed-top {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.075);
    background: rgb(255, 255, 255);
}

.header-inner {
    padding: 20px 0;
}

.fixed-top .header-inner {
    padding: 5px 0;
}

/*----- Logo -----*/

.header-logo a {
    line-height: 28px;
}

.no-fixed-logo {
    width: 70%;
    height: auto;
}

.fixed-logo,
.fixed-top .no-fixed-logo {
    display: none;
}

.no-fixed-logo,
.fixed-top .fixed-logo {
    display: block;
}

/*----- End Logo -----*/

/*----- Nav -----*/

.slicknav_nav {
    max-height: 70vh;
    overflow-y: scroll;
}

.header-nav__main a,
.header .slicknav_nav a {
    font-size: 0.875rem;

    text-transform: uppercase;
}

.header-nav__main .nav .nav-link {
    margin: 0 15px;
    padding: 5px 0;
}

.header .navAnimateBorder .nav-link::before {
    background-color: #ffffff;
}

.header.fixed-top .header-nav__main .nav .nav-link {
    color: #444444 !important;
}

.header.fixed-top .navAnimateBorder .nav-link::before {
    background-color: #444444;
}

.login-dropdown {
    width: 300px;
    border: none;
    border-radius: 20px 0 20px 20px;
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.1);
}

/* Quita flechas en input number */
.no-arrows::-webkit-outer-spin-button,
.no-arrows::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.no-arrows[type='number'] {
    -moz-appearance: textfield;
}

/*----- End Nav -----*/

/*=======================
    End Header
=========================*/

/*=======================
    Secciones
=========================*/

.section {
    position: relative;
    padding: 100px 0;
    background: #ffffff;
}

.section svg {
    z-index: 99;
}

.section .curve-bottom {
    width: 100%;
}

.section .absolute-bottom {
    position: absolute;
    bottom: 0;
}

/*----- Title -----*/

.section-title-text {
    position: relative;
    border-bottom: 2px solid rgb(72, 165, 225);
    /* border-radius: 10px; */
    padding: 15px;
}

.section-title-text-white {
    position: relative;
    color: white;
    border-bottom: 2px solid #ffffff;
    /* border-radius: 10px; */
    padding: 15px;
}

/*----- End Title -----*/

.section-image {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    /*background-attachment: fixed;*/
}

/*=======================
    Portada
=========================*/

.hero {
    /* max-height: 700px; */
    padding-bottom: 0;
}

.hero.section-image {
    /* background-image: url('../images/bg-hero.png'); */
    -webkit-transition: background-image 0.4s cubic-bezier(0.4, 0, 1, 1);
    transition: background-image 0.4s cubic-bezier(0.4, 0, 1, 1);
}

.slide-button {
    margin-top: 25px;
}

.hero img {
    /*max-width: 85%;*/
    max-height: 330px;
/*     -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5); */
}
/*-----Gradient -----*/

#canvas-basic,
#particles-js {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/*----- End Gradient -----*/

/*=======================
    Fin portada
=========================*/

/*=======================
    Project
=========================*/

.single-project {
    position: relative;
    overflow: hidden;
}

/*=======================
    End Project
=========================*/

/*=======================
    Team
=========================*/

/*----- Single Team -----*/

.single-project .overlayAnimate {
    height: 150px;
}

.single-team__text {
    top: auto;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.single-project__img {
    width: 150px !important;
}

.single-team__text,
.single-team__text p {
    color: #ffffff;
}

.single-team__social {
    -webkit-transition: all 0.4s ease-in-out 0s;
    -o-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 30px;
    position: absolute;
    right: 15px;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    z-index: 99;
}

.single-team__social a {
    padding: 4px 7px;
    margin: 3px 4px;
    width: 22px;
    text-align: center;
}

.single-team__social li:last-child a {
    margin-bottom: 4px;
}

.single-team:hover .single-team__social {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
    opacity: 1;
    visibility: visible;
}

/*----- End Single Team -----*/

/*=======================
    End Team
=========================*/

/*=======================
    Contact
=========================*/

.nosotros.section-image {
    background-image: url('../images/bg-contact.jpg');
}

.nosotros .section-title h2::before,
.nosotros .section-title h2::after {
    display: none;
}

/*=======================
    End Contact
=========================*/

/*=======================
    Footer
=========================*/

.calidad img {
    height: auto;
}

.calidad img:first-child{
    height: 40px;
}

.modal-dialog {
/*     width: 90%!important; */
    max-width: 90%!important;
}

#popup-img img {
	width: 100%;
}

.popup-close {
   position: absolute;
    margin-left: -30px;
    z-index: 1000000;
    cursor: pointer;
}

.popup-close i {
	font-size: 30px;
}

.footer {
    border-top: 2px solid;
    border-image: linear-gradient(to right, #1276cc, #48a5e1) 15% stretch;
}

.footer-main__logo,
.footer-main__logo img {
    height: 32px;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 32px;
}

.footer .nav-link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #242526;
}

.footer-description {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.8125rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #747474;
}

/*----- Back To Top -----*/

#scrollUp {
    bottom: 120px;
    right: 40px;
    background: #29b6f6;
    color: #ffffff;
    font-size: 1.5rem;
    opacity: 0.88;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
}

#scrollUp:hover {
    opacity: 1;
}

/*----- End Back To Top -----*/

/* ----- Preloader -----*/

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #29b6f6;
    z-index: 9999;
}

#loading {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    -webkit-animation: spin 1s ease-in-out infinite;
}

/*----- End Preloader ----- */

/*=======================
    End Footer
=========================*/

/*=======================
    Overlay & Overlay Animate
=========================*/

.overlay,
.overlayAnimate {
    position: relative;
    overflow: hidden;
}

.overlay::before,
.overlayAnimate::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: '';
    background: rgba(255, 255, 255, 0.4);
}

.overlay h1,
.overlay h2,
.overlay .section-title,
.section.overlay p,
.overlay i,
.overlay .header-logo a,
.overlay .nav .nav-link {
    color: black;
}

.overlay .section-title h2::before,
.overlay .section-title h2::after {
    display: none;
}

/*----- Overlay Animate -----*/

.overlayAnimate::before {
    background: rgb(41, 182, 246);
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: hidden;
    z-index: 91;
}

.overlayAnimate:hover::before {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    visibility: visible;
}

.overlayAnimate__img {
    -webkit-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.overlayAnimate:hover .overlayAnimate__img {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
}

.overlayAnimate__text {
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    visibility: hidden;
    z-index: 92;
}

.overlayAnimate:hover .overlayAnimate__text {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
    visibility: visible;
}

/*=======================
    End Overlay
=========================*/

/*=======================
    Extra and Gradient
=========================*/

.mfp-bg {
    background: rgba(0, 0, 0, 0.8);
    z-index: 9992;
}

.mfp-wrap {
    z-index: 9993;
}

.equal-height > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.btn-play {
    position: relative;
}

.btn-play__pulse {
    -webkit-animation: pulse 1.5s cubic-bezier(0.8, 0, 0, 1) infinite;
    animation: pulse 1.5s cubic-bezier(0.8, 0, 0, 1) infinite;
}

.btn__wobble:hover {
    -webkit-animation: wobble-vertical 0.6s ease-in-out 1;
    animation: wobble-vertical 0.6s ease-in-out 1;
}

.overlay .btn-simple {
    color: #ffffff;
}

.about .btn-play,
.video-intro .btn-play i {
    background-color: transparent;
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(34, 139, 230, 0.6)), to(rgba(66, 190, 247, 0.6)));
    background-image: -webkit-linear-gradient(bottom, rgba(34, 139, 230, 0.6) 0%, rgba(66, 190, 247, 0.6) 100%);
    background-image: -o-linear-gradient(bottom, rgba(34, 139, 230, 0.6) 0%, rgba(66, 190, 247, 0.6) 100%);
    background-image: linear-gradient(to top, rgba(34, 139, 230, 0.6) 0%, rgba(66, 190, 247, 0.6) 100%);
    color: #ffffff;
}

.overlay .btn-play,
.overlay#testimonial .owl-dot span {
    border-color: #ffffff;
}

.single-testimonial__rating span i {
    background-image: -webkit-linear-gradient(330deg, #ffeb3b 0%, #ffc107 100%);
    background-image: -o-linear-gradient(330deg, #ffeb3b 0%, #ffc107 100%);
    background-image: linear-gradient(120deg, #ffeb3b 0%, #ffc107 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.overlay .btn-play,
.overlay .single-testimonial__site a {
    color: #ffffff;
}

.circles-text {
    font-size: 25px !important;
    line-height: unset !important;
    top: 85px !important;
    height: 100px !important;
}

/*=============================
    Configuracion de estilo 
    del slider de la portada
==============================*/

.slick-dots {
    position: absolute;
    bottom: -25px;
    left: 0;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li {
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
    font-size: 90px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: 0.25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    opacity: 0.75;
    color: black;
}

/*=======================
    Seccion de empresa
=========================*/

#empresa {
    /* border-bottom: 2px solid rgb(72, 165, 225); */
    border-bottom: 2px solid;
    border-image: linear-gradient(to right, #1276cc, #48a5e1) 15% stretch;
}

.vision-title {
    color: rgb(72, 165, 225);
    font-weight: bold;
}

.counter-text {
    color: rgb(72, 165, 225);
    font-weight: bold;
}

.single-stat {
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.single-stat__icon i {
    margin: 20px 0;
    font-size: 5rem;
}

#stats {
    border-bottom: 2px solid;
    border-image: linear-gradient(to right, #1276cc, #48a5e1) 15% stretch;
}

/*=======================
    Seccion de productos
=========================*/

/*=======================
    Seccion de productos
=========================*/

.card-producto {
    box-shadow: 0 6px 15px rgba(36, 37, 38, 0.08);
    border: 2px solid rgb(72, 165, 225);
    padding: 10px;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.card-producto img {
    width: auto;
    /*height: 20px;*/
    margin: 10px 0;
}

.card-producto > .btn {
    min-width: 80px;
    padding: unset;
}

/*=======================
    Soporte tecnico
=========================*/

.destacado{
    font-size: 1.1em;
    font-weight: bold;
}

.containerSoporteTecnico {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    flex-wrap: wrap;
}

.soporte-tecnico-nacional{
    color: #29B6F6;
    font-size: 24px;
    /* margin-top: 20px; */
}

.soporte-tecnico-nacional-texto{
	white-space: nowrap;
	padding-right: 25px;
}

.containerSoporteTecnicoInfo {
    display: flex;
    flex-direction: column;
}

.datos {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

#soporte {
    min-height: 100%;
    background-color: #29b6f6;
}

.soporte {
    width: 35%;
    min-width: 400px;
    height: 420px;
}

.container-soporte-card {
    width: 45%;
    min-width: 300px;
    margin-bottom: 20px;
}

.soporte-card {
    justify-content: center;
    border-radius: 15px;
    padding: 5px 0;
    border: unset;
}

.soporte-card-header {
    border-radius: 15px !important;
    background-color: white;
    border: unset;
}

.collapsible-link {
    width: 100%;
    position: relative;
    text-align: left;
}

.collapsible-link::before {
    content: '\f107';
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    display: block;
    font-family: 'FontAwesome';
    font-size: 2rem;
}

.collapsible-link[aria-expanded='true']::before {
    content: '\f106';
}

.mailSoporte {
    margin: 10px 0;
}

.card-header {
    padding: .75rem;
}

@media screen and (max-width: 991px) {
    #soporte .containerSoporteTecnico > div {
        width: 100%;
    }

    #soporte .containerSoporteTecnico .datos {
        margin-top: 40px;
    }
}

@media screen and (max-width: 768px) {
    .container-soporte-card {
        width: 100%;
    }
}

/*=======================
    Contacto
=========================*/

.contacto-block {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    background-color: #29b6f6;
    border-radius: 10px;
    color: #ffffff;
    padding: 10px;
    transition: 0.2s;
    height: 55px;
    /* margin: 0 5px; */
}

.contacto-block:hover {
    background-color: #29b6f650;
    color: #29b6f6;
}

.contacto-block:focus {
    background-color: #29b6f650;
    color: #29b6f6;
    box-shadow: 0px 0px 8px 1px #29b6f675;
}

.contacto-block .icon {
    background-color: #ffffff;
    color: #29b6f6;
    padding: 0 9px;
    border-radius: 50%;
}

.contact-input {
    border: 1px solid #1276cc;
    border-radius: 10px;
}

.file-upload {
    width: unset !important;
}

.custom-file-input {
    height: unset !important;
}
.custom-file-label {
    height: unset !important;
}

.custom-file-label::after {
    background-color: #29b6f650;
    color: #29b6f6;
    height: 100%;
    content: 'Elegir';
    cursor: pointer;
    border-left: unset;
}

.whatsapp-flotante{
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    position: fixed;
    display: flex;
    align-items: center;
    right: 30px;
    bottom: 50px;
    z-index: 100;
    opacity: 0.9;
}

.whatsapp-flotante a{
    cursor: pointer;
}

.btn-wsp:hover {
    text-decoration: none;
    color: #0df053;
    background: #ffffff;
}

.whatsapp-flotante span{
    color: #444444;
    font-size: 14px;
    letter-spacing: .3px;
    font-weight: 600;
    margin-right: 10px;
    opacity: 0.8;
}

.wp-container{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #0df053;
    color: #ffffff;
    border-radius: 60px;
    font-size: 35px;
}

.wp-container:hover {
    text-decoration: none;
    color: #0df053;
    border: 1px solid #0df053;
    background: #ffffff;
}


@media screen and (max-width: 767px) {
	.p-5{
		padding: 0px!Important;
	}
	
	.card-text{
		margin: 20px!Important;
	}
}

/*Estilos solicitud-adesion-ftcheq*/

.solicitud-container{
    margin-top: 20px;
    max-width: 825px;
}50px
    font-weight: bold;
}

.solicitud-container p{
    margin-top: 15px;
}

#solicitudAdhesion{
    height: 77%;
    display: flex;
    align-items: center;
}
@media screen and (min-width: 370px) and (max-width: 380px) and (min-height: 660px) and (max-height: 870px) {
    .hero-content-3 p{
        line-height: 18px;
    }

    .hero-content-3 h1{
        margin-top: 20px;
    }
}