
/* FUENTES */
:root {
    --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-primary: "Montserrat", sans-serif;
    --font-secondary: "Raleway", sans-serif;
}
:root {
    --scroll-size: 15px;
    --scroll-radius: 20px;
    --scroll-track: rgb(255 255 255 / 10%);
    --scroll-thumb: linear-gradient(45deg, #00aeff, #a68eff);
}
body::-webkit-scrollbar {
    width: var(--scroll-size, 10px);
    height: var(--scroll-size, 10px);
}
body::-webkit-scrollbar-track {
    background-color: var(--scroll-track, transparent);
    border-radius: var(--scroll-track-radius, var(--scroll-radius));
}
body::-webkit-scrollbar-thumb {
    background-color: var(--scroll-thumb-color, grey);
    background-image: var(--scroll-thumb, none);
    border-radius: var(--scroll-thumb-radius, var(--scroll-radius));
}
/* COLORES */
:root {
    --color-default: #2b180d;
    --color-primary: #56b8e6;
    --color-secondary: #1b2f45;
}
/* SMOOTH SCROLL BEHAVIOR */
:root {
    scroll-behavior: smooth;
}
/*--------------------------------------------------
#GENERAL
--------------------------------------------------*/
body {
    font-family: var(--font-default);
    color: var(--color-default);
}
a {
    color: var(--color-primary);
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    color: #82cbed;
    text-decoration: none;
}
h1,h4, h5, h6 {
    font-family: 'PT Sans', sans-serif;
}
h2, h3 {
    font-family: var(--font-default);
}
/*--------------------------------------------------
#SECCIÓN-HEADER
--------------------------------------------------*/
#accesorios, #equipo-medico, #mobiliario {
    scroll-margin-top: 100px;
}
#gases-medicinales {
    scroll-margin-top: 200px;
}
section {
    overflow: hidden;
    padding: 80px 0;
}
.section-header {
    text-align: center;
    padding-bottom: 30px;
} 
.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}
.section-header h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 2px;
    background: var(--color-primary);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.section-header p {
    margin-bottom: 0;
}
/*--------------------------------------------------
#BREADCRUMBS
--------------------------------------------------*/
.breadcrumbs {
    padding: 140px 0 60px 0;
    min-height: 30vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 0px;
}
.breadcrumbs::before {
    content: "";
    background-color: rgba(27, 47, 69, 0.7);
    position: absolute;
    inset: 0;
}
.breadcrumbs h2 {
    font-size: 56px;
    font-weight: 500;
    color: #fff;
    font-family: var(--color-secondary);
}
.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0 0 10px 0;
    margin: 0;
    font-size: 13px;
    font-weight: bolder;
    font-family: 'Figtree', sans-serif;
    text-transform: uppercase;
    color: #00BCD4;
    letter-spacing: 1.8px;
}
.breadcrumbs ol a {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.3s;
}
.breadcrumbs ol a:hover {
    text-decoration: underline;
}
.breadcrumbs ol li+li {
    padding-left: 10px;
}
.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #fff;
    content: "/";
}
/*--------------------------------------------------
#BOTON SCROLL-TOP
--------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: rgb(27 47 69 / 95%);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}
.scroll-top i {
    font-size: 24px;
    color: #fff;
    line-height: 0;
}
.scroll-top:hover {
    background: rgb(42, 165, 223);
    color: #fff;
}
.scroll-top.active {
    visibility: visible;
    opacity: 1;
}
.dropdown-menu {
    border-top: 1px solid grey;
}
.dropdown-megamenu {
    background-color: #0c1526;
    width: 1254px;
}
.dropdown-megamenu .dropdown-heading {
    color: #E91E63;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    filter: brightness(1.75);
}
.dropdown-megamenu .text-muted1 {
    color: antiquewhite;
    font-family: 'Figtree';
    letter-spacing: 0.8px;
    font-size: 12px;
}
.dropdown-megamenu .fw-medium {
    color: aquamarine;
    margin-left: -30px;
    letter-spacing: 2px;
    margin-bottom: 50px;
}
@media (max-width: 1440px) {
    .dropdown-megamenu {
        width: 1060px;
    }
}
@media (max-width: 800px) {
    .dropdown-megamenu {
        max-width: fit-content;
    }
    .dropdown-megamenu .fw-medium {
        margin-bottom: 20px;
    }
}
/*--------------------------------------------------
#ICON-CARGANDO PAGINA
--------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    /*background: #fff;*/
    transition: all 0.8s ease-out;
}
#preloader::before {
    content: "";
    position: fixed;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    border: 6px solid var(--color-primary);
    border-top-color: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    -webkit-animation: animate-preloader 1s linear infinite;
    -moz-animation: animate-preloader 1s linear infinite;
    -ms-animation: animate-preloader 1s linear infinite;
    -o-animation: animate-preloader 1s linear infinite;
    animation: animate-preloader 1s linear infinite;
}
@-webkit-keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*--------------------------------------------------
#animación deshabilitada para dispositivos móviles
--------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition: 0 !important;
    }
}
/*--------------------------------------------------
#HEADER-ESTILOS
--------------------------------------------------*/
.header {
    transition: all 0.5s;
    z-index: 997;
    padding: 24px 0;
}
@media (max-width: 1200px) {
    .header {
        padding: 12px 0;
    }
}
.header.sticked {
    background: #010e21;
    /*background: rgb(27 47 69 / 95%);;*/
    padding: 12px 0;
}
.header .logo img {
    max-height: 70px;
    margin-right: 6px;
}
.header .logo h1 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-secondary);
    margin: 0;
}
/*--------------------------------------------------
#NAVEGACIÓN-ESCRITORIO
--------------------------------------------------*/
@media (min-width: 1280px) {
    .navbar {
        padding: 0;
    }
    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    .navbar li {
        position: relative;
    }
    .navbar a,
    .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 0 15px 30px;
        /*font-family: var(--font-default);*/
        font-family: 'Figtree', sans-serif;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.6);
        white-space: nowrap;
        transition: 0.3s;
    }
    .navbar a i,
    .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #fff;
    }
    
    
@media (min-width: 1280px) {
    .mobile-nav-show,
    .mobile-nav-hide {
        display: none;
    }
}
}
/*--------------------------------------------------
#NAVEGACIÓN-DISPOSITIVO MÓVIL
--------------------------------------------------*/
@media (max-width: 1279px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 400px;
        bottom: 0;
        transition: 0.3s;
        z-index: 9997;
    }
    .navbar ul {
        position: absolute;
        inset: 0;
        padding: 50px 0 10px 0;
        margin: 0;
        background: rgba(5 25 46);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }
    .navbar a, .navbar a:focus {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px 20px;
        font-family: var(--font-default);
        font-size: 15px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.7);
        white-space: nowrap;
        transition: 0.3s;
    }
    .navbar a i, .navbar a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
    }
    .navbar a:hover,
    .navbar .active,
    .navbar .active:focus,
    .navbar li:hover>a {
        color: #fff;
    }
    
    .mobile-nav-show {
        color: rgba(255, 255, 255, 0.9);
        font-size: 28px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
    }
    .mobile-nav-hide {
        color: rgba(255, 255, 255, 0.9);
        font-size: 32px;
        cursor: pointer;
        line-height: 0;
        transition: 0.5s;
        position: fixed;
        right: 15px;
        top: 15px;
        z-index: 9999;
    }
    .mobile-nav-active {
        overflow: hidden;
    }
    .mobile-nav-active .navbar {
        right: 0;
    }
    .mobile-nav-active .navbar::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(27, 47, 69, 0.7);
        z-index: 9996;
    }
}
/*--------------------------------------------------
#SECCIÓN HERO | BACKGORUNDIMAGE
--------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    background: url("../img/fondo6.jpg") top center;
    background-size: cover;
    position: relative;
    padding: 120px 0;
    z-index: 3;
}
@media (min-width: 1034px) {
    .hero:after {
        position: absolute;
        content: "";
        width: 40%;
        background: #010e21;
        /*background: var(--color-secondary);*/
        top: 0;
        bottom: 0;
    }
}
.hero::before {
    position: absolute;
    content: "";
    background: rgba(27, 47, 69, 0.6);
    inset: 0;
}
@media (max-width: 1034px) {
    .hero::before {
        background: rgba(27, 47, 69, 0.7);
    }
}
.hero .container {
    z-index: 1;
}
@media (min-width: 1365px) {
    .hero {
        background-attachment: fixed;
    }
}
.hero h2 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    font-family: var(--font-secondary);
}
.hero blockquote {
    color: #a6b3c6;
    padding-left: 20px;
    font-size: 15px;
    font-family: 'Figtree', sans-serif;
    /*border-left: 2px solid var(--color-primary);*/
    border-left: 5px solid #04dbec;
    margin: 40px 0;
    letter-spacing: 2px;
    line-height: 30px;
}
.hero .btn-get-started {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 2px;
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
	box-shadow: 0px 0px 10px;
    transition: 0.5s;
    color: #fff;
    background: #175b7a; /*var(--color-primary);*/
}
.hero .btn-get-started:hover {
    background: rgba(86, 184, 230, 0.8);
}
.hero .btn-watch-video {
    font-size: 16px;
    transition: 0.5s;
    margin-left: 25px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

.hero .btn-watch-video i {
    color: var(--color-primary);
    font-size: 32px;
    transition: 0.3s;
    line-height: 0;
    margin-right: 8px;
}
.hero .btn-watch-video:hover {
    color: #fff;
}
.hero .btn-watch-video:hover {
    color: #82cbed;
}
@media (max-width: 640px) {
    .hero h2 {
        font-size: 40px;
        line-height: 1;
        margin-bottom: 4rem;
    }
    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 15px;
		letter-spacing: 1px;
		text-align: center;
    }
}
@media (min-width: 425px) {
    .hero blockquote {
        color: white;
    }
    .hero::before {
        background: rgb(1 10 20 / 90%);
    }
}
/*--------------------------------------------------
#section1 | contadorcall-to-action
--------------------------------------------------*/
@media (min-width: 992px) {
    .container.facts {
        max-width: 100% !important;
    }
    .container.facts .facts-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
    .container.facts .facts-counter {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}
@media (min-width: 1200px) {
    .container.facts .facts-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
    .container.facts .facts-counter {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}
@media (min-width: 1400px) {
    .container.facts .facts-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
    .container.facts .facts-counter {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}
@media (min-width: 768px) {
    .container.facts .facts-counter .h-100 {
        margin-left: 80px;
    }
}
.container.facts .facts-text {
    background: linear-gradient(rgba(255 255 255 / 90%), rgba(198 225 255 / 90%)), url(../img/experiencia2.png) center right no-repeat;
    background-size: cover;
}
.container.facts .facts-text .text-whiteNew {
    font-family: "Poppins", sans-serif;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 4rem;
    color: black;
}
.container.facts .facts-text .text-lightNew {
    font-size: 22px;
    font-family: "Dosis", sans-serif;
    line-height: 35px;
    letter-spacing: 1px;
    color: black;
}
.container.facts .facts-text button {
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    text-align: center;
    font-weight: bold;
    padding: 0.7rem 2em;
    border: 3px solid black;
    border-radius: 2px;
    position: relative;
    max-width: fit-content;
    font-family: "Poppins", sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    color: black;
    text-decoration: none;
    transition: 0.3s ease all;
    z-index: 1;
}
.container.facts .facts-text button a {
    color: black;
}

button:before {
    transition: 0.5s all ease;
    position: absolute;
    top: 0;
    left: 50%;
    right: 50%;
    bottom: 0;
    opacity: 0;
    content: '';
    /*background-color: rgb(221, 228, 246);*/
    color: white;
    z-index: -1;
}
button:hover, button:focus {
    color: white;
}
button:hover:before, button:focus:before {
    transition: 0.5s all ease;
    left: 0;
    right: 0;
    opacity: 1;
}
button:active {
    transform: scale(0.9);
}


.container.facts .facts-counter {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/experiencia1.jpg) center right no-repeat;
    background-size: cover;
}
@media (min-width: 768px) {
    .container.facts .facts-counter {
        background: linear-gradient(rgba(255, 255, 255), rgba(251, 251, 251)), url(../img/experiencia1.jpg) center right no-repeat;
    }
}
@media (max-width: 425px) {
    .container.facts .facts-text .text-whiteNew {
        font-size: 40px;
    }
}
@media (min-width: 425px) {
    .container.facts .facts-counter {
        background: linear-gradient(rgba(255, 255, 255), rgba(255 255 255 / 85%)), url(../img/experiencia1.jpg) center right no-repeat;
    }
    .container.facts .facts-text .text-lightNew {
        font-size: 17px;
    }
    .container.facts .facts-text button {
        padding: 0.5rem 1rem;
    }
    .facts-counter .h-100 {
        text-align: center;
        margin-right: 68px;
    }
    .facts-counter .h-100 .display-5 {
        color: black;
        margin-bottom: 15px;
    }
    .facts-counter .h-100 .fs-5 {
        color: pink;
    }
}
.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.facts-counter .h-100 {
    margin-left: 100px;
}
.facts-counter .h-100 span {
    color: pink;
}
.facts-counter .h-100 .display-5 {
    font-family: "Poppins", sans-serif;
    letter-spacing: 2px;
    font-size: 5rem;
}
.facts-counter .h-100 .fs-5 {
    font-family: 'Figtree', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}
/*--------------------------------------------------
#section2 | serv_adicional
--------------------------------------------------*/
.ftco-section {
    /*padding: 7em 0;*/
    position: relative;
}
@media (max-width: 768px) {
    .ftco-section {
        padding: 6em 0;
    }
    .ftco-section .col-md-7 {
        display: contents;
    }
    .ftco-section .col-md-5 {
        flex: auto;
    }
    .ftco-section .col-md-5 .appointment-form {
        flex: auto;
    }
}
@media (max-width: 425px) {
    .ftco-section .col-md-7 {
        display: block;
        margin-top: -100px;
    }
    .ftco-section .col-md-7 .heading-section .mb-3{
        text-align: center;
        font-size: 35px;
    }
    .ftco-section .media-body {
        padding-left: 1rem;
        margin-bottom: 50px;
    }
    .ftco-services-2 .services .media-body h3 {
        color: pink;
    }
    .ftco-section .appointment-wrap {
        margin-left: auto;
    }
    .ftco-section .appointment-wrap h3 {
        text-align: center;
    }
}
.ftco-section .heading-section h2 {
    color: bisque;
    line-height: 1.2;
    font-size: 45px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-top: 70px;
}
.ftco-services-2 .services .icon {
    line-height: 1.3;
    position: relative;
    width: 90px;
    height: 90px;
    z-index: 1;
    margin-bottom: 20px;
    background: transparent;
    border-radius: 50%;
}
.ftco-services-2 .services .icon span {
    font-size: 50px;
    color: aquamarine;
}
.ftco-services-2 .services .media-body h3 {
    font-size: 20px;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    color: white;
    letter-spacing: 0.8px;
    line-height: 1.5;
}
.block-6 .media-body p {
    font-size: 15px;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
    color: hotpink;
    line-height: 30px;
}
.media-body {
    -webkit-box-flex: 1;
    flex: 1;
    padding-left: 2rem;
    margin-bottom: 40px;
}
.appointment-wrap {
    /*width: 100%;*/
    margin-left: 30px;
}
.appointment-wrap h3 {
    color: #207dff;
    font-size: 18px;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bolder;
    font-family: 'Poppins', sans-serif;
}
.appointment-form .form-group {
    position: relative;
    width: 100%;
    display: block;
}
.appointment-form .form-group .select-wrap, .appointment-form .form-group .input-wrap {
    position: relative;
}
.form-group {
    margin-bottom: 1rem;
}
.appointment-form .form-control {
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 58px;
    padding-left: 15px;
    padding-right: 15px;
    background: rgba(17, 24, 39, 1);
    outline: 0;
    color: rgba(243, 244, 246, 1);
    font-size: 14px;
    border-radius: 5px;
    box-shadow: none;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
}
.appointment-form .form-control[type=text], 
.appointment-form .form-control[type=email],
.appointment-form .form-control[type=option],
.appointment-form .form-control[type=message] {
    border: 1px solid rgba(55, 65, 81, 1);
}
.appointment-form .form-control[type=text]:focus,
.appointment-form .form-control[type=email]:focus,
.appointment-form .form-control[type=message]:focus,
.appointment-form .form-control[type=option]:focus {
    border: rgba(167, 139, 250);
    box-shadow: 1px 1px 3px 4px rgb(237 171 181 / 39%);
}
.appointment-form .form-group .icon {
    color: rgb(0 0 0 / 31%);
    position: absolute;
    top: 50%;
    right: 15px;
    font-size: 16px;
    transform: translateY(-50%);
}
.appointment-form .form-group .btn {
    width: 100%;
    display: block;
    margin-top: 30px;
    font-size: 20px;
    font-weight: 900;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: white;
}
.appointment-form .form-group .btn.btn-secondary {
    background: rgba(167, 139, 250, 1);
    border: none;
    color: rgba(17, 24, 39, 1);
}
.appointment-form .form-group .btn.btn-secondary:hover {
    /*border: 1px solid #010e21;*/
    background: rgb(119 93 195);
    color: #010e21;
}
/*--------------------------------------------------
#section3 | department
--------------------------------------------------*/
.ftco-section .heading-section .cartera-cliente {
    color: #000;
    font-family: 'Sora', sans-serif;
    font-size: 55px;
    filter: drop-shadow(2px 15px 15px #c072cd);
}
@media (max-width: 425px) {
    .ftco-section .heading-section .cartera-cliente {
        font-size: 40px;
        text-align: center;
    }
}
.sec-form {
    background-color: #010e21;
}
.ftco-no-pb {
    padding-bottom: 0;
}
.ftco-no-pt {
    padding-top: 0;
}
.ftco-section {
    /*padding: 1em 0;*/
    position: relative;
}
.no-gutters {
    margin-right: 0;
    margin-left: 0;
}
.no-gutters > .col,
.no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}
.img-dept {
    width: 100%;
    display: block;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.department-wrap {
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
@media (max-width: 768px) {
    .department-wrap {
        border-right: 1px solid rgba(0, 0, 0, 0.1);
    }
    #department-section .col-md-8 {
        width: 100%;
    }
}
.department-wrap .text .icon span {
    color: #207dff;
    font-size: 60px;
}
.department-wrap .text h3 {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-top: 10px;
    margin-bottom: 20px;
}
.department-wrap .text p {
    color: black;
    font-family: 'Raleway', sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 25px;
}
.department-wrap .text h3 a {
    color: #000000;
}
.department-wrap:hover, .department-wrap:focus {
    background: #09244a;
}
.department-wrap:hover .text, .department-wrap:focus .text {
    color: rgba(0, 0, 0, 0.7);
}
.department-wrap:hover .text h3 a , .department-wrap:focus .text h3 a {
    color: #fff;
}
.department-wrap:hover .text p, .department-wrap:focus .text p {
    color: #fff;
}
.department-wrap:hover .icon span, .department-wrap:focus .icon span {
    color: #fff;
}
/*--------------------------------------------------
#section4 | features_section1
--------------------------------------------------*/
.container-xxl {
    margin-top: 5%;
}
.container-xxl h1 {
    color: black;
    font-weight: 700;
    font-family: 'Dosis', sans-serif;
    font-size: 47px;
    letter-spacing: 0.8px;
    line-height: 60px;
}
.container-xxl p {
    color: black;
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
    margin-bottom: 50px;
}
.container-xxl i {
    color: #207dff;
    font-size: 40px;
}
.container-xxl .mb-0 {
    color: black;
    font-family: 'Sora', sans-serif;
    font-size: 20px;
}
.container-xxl img {
    left: 60px;
}
/*--------------------------------------------------
#section5 | features_section2
--------------------------------------------------*/
.feature-area .single-feature img {
    height: 70px;
    width: 80px;
}
.section-padding {
    padding: 130px 0;
}
.single-feature {
    background: #f6fbff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
    margin-bottom: 50px;
    padding: 30px;
}
.single-feature  .title_feature{
    color: black;
    font-size: 15px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 0.8px;
}
.single-feature img {
    margin-bottom: 20px;
}
.single-feature:hover {
    background: #fff;
    -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
/*--------------------------------------------------
#section6 | blog-posts
--------------------------------------------------*/
@media (max-width: 768px) {
    #blog-section .col-md-4 {
        display: contents;
    }
}
@media (max-width: 425px) {
    #blog-section .col-md-4 {
        display: block;
    }
}
.block-20 {
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    height: 350px;
    width: 100%;
    position: relative;
    display: block;
    margin-bottom: 30px;
    margin-top: 50px;
}
.blog-entry .text {
    position: relative;
    border-top: 0;
    border-radius: 2px;
    width: 100%;
}
.blog-entry .meta a {
    color: #ed143dab;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
}
.blog-entry .text .tag {
    color: #b3b3b3;
}
.blog-entry .text .heading {
    font-size: 25px;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    font-weight: bold;
}
.blog-entry .text .heading a {
    color: black;
}
.blog-entry .text .heading a:hover, .blog-entry .text .heading a:focus, .blog-entry .text .heading a:active {
    color: #585858;
}
.blog-entry .text .meta-chat {
    color: #fe5f55;
}
.blog-entry .text .read {
    color: #000000;
    font-size: 14px;
}
.blog-entry .meta > div {
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}
.blog-entry .meta > div a {
    color: #fe5f55;
    font-size: 12px;
}
.blog-entry .meta > div a:hover {
    color: black;
}
.blog-entry p {
    color: #727272;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
    font-size: 15px;
}
.blog-entry button {
    color: black;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    padding: 0.3rem 1rem;
    border: 2px solid black;
    border-radius: 2px;
    position: relative;
    max-width: fit-content;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: 0.3s ease all;
    z-index: 1;
}
.blog-entry button a {
    color: black;
}
/*--------------------------------------------------
#section7 | fabricaciones-section
--------------------------------------------------*/
.ftco-facts {
    margin-top: 250px;
    padding: 15em 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    background: #207dff;
}
.ftco-facts .img {
    width: 50%;
}
.ftco-facts .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: '';
    opacity: .8;
}
.ftco-facts .subheading {
    margin-bottom: 20px;
}
.ftco-facts h2 span {
    background: #207dff;
}
@media (max-width: 1024px) {
    .heading-section {
        width: 100%;
        margin: auto;
    }
    .heading-section button {
        align-items: center;
    }
    .col-md-7 {
        margin: auto;
        margin-top: 80px;
    }
}
@media (max-width: 425px) {
    .heading-section .mb-4 {
        font-size: 50px;
    }
}
.heading-section .subheading {
    font-size: 20px;
    display: block;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: antiquewhite;
    letter-spacing: 2px;
    font-weight: 600;
}
.heading-section h2 {
    font-size: 70px;
    line-height: 1.2;
    color: whitesmoke;
    font-family: 'Poppins', sans-serif;
    width: 110%;
    letter-spacing: 1px;
}
.heading-section button{
    margin-bottom: 30px;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 20px;
    box-shadow: 0px 0px 10px;
    transition: 0.5s;
    background: transparent;
}
.heading-section button a {
    color: white;
}
@media (max-width: 1200px) {
    .ftco-counter {
        background-position: center center;
    }
}
.ftco-counter .img {
    display: block;
    width: 100%;
    position: relative;
    z-index: 1;
}
@media (max-width: 768px) {
    .ftco-counter .img {
        height: 350px;
    }
    .ftco-counter .btn {
        display: block;
        margin-bottom: 10px;
    }
}
.ftco-counter .text {
    display: inline-block;
}
.ftco-counter .text p {
    font-size: 25px;
    line-height: 1;
}
.ftco-counter .text span.number {
    color: #000000;
    font-weight: 400;
    font-size: 30px;
}
.ftco-counter .text span {
    color: black;
    margin-bottom: 10px;
    font-weight: 500;
    display: inline-block;
    letter-spacing: 1px;
    font-size: 18px;
}
.ftco-counter {
    overflow-x: hidden;
    position: relative;
}
@media (max-width: 1200px) {
    .ftco-counter {
        background-position: center center;
    }
}
.ftco-counter .block-18 {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}
.ftco-counter .text strong.number {
    font-weight: 800;
    font-size: 44px;
    color: #fff;
    display: block;
}
.ftco-counter .text span {
    display: block;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #72e1d6;
}
.ftco-counter .counter-wrap {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media (min-width: 992px) {
    .ftco-counter .counter-wrap:nth-child(even) {
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }
    .ftco-counter .counter-wrap:last-child {
        border-bottom: none;
    }
    .ftco-counter .counter-wrap:nth-child(3) {
        border-bottom: none;
    }
}
@media (max-width: 768px) {
    .ftco-counter .counter-wrap {
        margin-bottom: 20px;
    }
}
.ftco-counter .text i {
    font-weight: 800;
    font-size: 60px;
    display: block;
    color: antiquewhite;
    margin-bottom: 20px;
}
/*--------------------------------------------------
#section8 | carousel-marks
--------------------------------------------------*/
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
.logos {
    overflow: hidden;
    /*margin-left: -230px;*/
    padding: 60px 0;
    white-space: nowrap;
    position: relative;
}
.logos::before,
.logos::after {
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    content: "";
    z-index: 2;
}
.logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
}
.logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
}
.logos:hover .logos-slide {
    animation-play-state: paused;
}
.logos-slide {
    animation: 35s slide infinite linear;
    display: inline-block;
}
.logos-slide img {
    height: 50px;
    margin: 0 40px;
    filter: grayscale(100%);
}
@media (max-width: 1440px) {
    .logos-slide img {
        height: 30px;
    }
}
@media (min-width: 1024px) {
    .logos-slide img {
        max-width: fit-content;
    }
}
@media (min-width: 760px) {
    .logos-slide img {
        max-width: fit-content;
    }
}
@media (min-width: 425px) {
    .logos-slide img {
        max-width: fit-content;
    }
}
/*--------------------------------------------------
#SECCION1 NOSOTROS | Presentacion
--------------------------------------------------*/
.us-section {
    padding: 60px 0;
}
.us-section .section-title {
    text-align: center;
    padding-bottom: 60px;
}
.us-section .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #2c4964;
}
.us-section .section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}
.us-section .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #1977cc;
    bottom: 0;
    left: calc(50% - 20px);
}
.us-section ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}
img {
    max-width: 100%;
    /*height: auto;*/
    height: 700px;
}
section {
    /*padding: 35px 0;*/
    overflow: hidden;
    padding: 80px 0;
}
.sec-title {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}
.sec-title .title {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 24px;
    color: crimson;
    font-weight: 600;
    margin-bottom: 15px;
}
.sec-title h2 {
    position: relative;
    display: block;
    font-size: 50px;
    line-height: 1.28em;
    color: black;
    font-weight: bold;
    padding-bottom: 18px;
    width: max-content;
    font-family: 'Poppins', sans-serif;
}
@media (max-width: 1440px) {
    .sec-title h2 {
        font-size: 45px;
    }
}
@media (max-width: 1024px) {
    .sec-title h2 {
        max-width: fit-content;
    }
    .us-section .text {
        max-width: fit-content;
    }
}
@media (max-width: 768px) {
    .us-section .image-column .image-1 {
        margin-left: 10%;
        display: none;
    }
}
.sec-title h2::before {
    position: absolute;
    content: '';
    left: 0px;
    bottom: 0px;
    width: 200px;
    height: 5px;
    background-color: #d1d2d6;
}
.sec-title .text {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
    margin-top: 35px;
}
.sec-title.light h2 {
    color: #ffffff;
}
.sec-title.text-center h2::before {
    left: 50%;
    margin-left: -25px;
}
.list-style-one {
    position: relative;
}
.list-style-one li {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: black;
    font-weight: 700;
    font-family: 'Figtree', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-left: 35px;
    margin-bottom: 12px;
}
.list-style-one .bi {
    color: crimson;
    margin-right: 15px;
}
.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 30px;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 600;
    overflow: hidden;
    letter-spacing: 0.02em;
    background-color: #ff2222;
}
.btn-style-one:hover {
    background-color: #001e57;
    color: #ffffff;
}
.us-section {
    position: relative;
    padding: 120px 0 30px;
}
.us-section .sec-title {
    margin-bottom: 45px;
}
.us-section .content-column {
    position: relative;
    margin-bottom: 50px;
}
.us-section .content-column .inner-column {
    position: relative;
    padding-left: 30px;
}
.us-section .text {
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 35px;
    color: #6A6A6B;
    letter-spacing: 1px;
    font-weight: 400;
    font-family: 'Figtree', sans-serif;
    width: 600px;
}
.us-section .text strong {
    color: black;
    background-color: antiquewhite;
    text-transform: uppercase;
    font-weight: bolder;
    font-family: 'Poppins', sans-serif;
}
.us-section .list-style-one {
    margin-bottom: 45px;
    margin-left: -25px;
}
.us-section .btn-box {
    position: relative;
}
.us-section .btn-box a {
    padding: 15px 50px;
}
.us-section .image-column {
    position: relative;
}
@media (max-width: 320px) {
    .us-section .image-column {
        display: none;
    }
}
@media (max-width: 375px) {
    .us-section .image-column {
        display: none;
    }
}
.us-section .image-column .text-layer {
    position: absolute;
    right: -110px;
    top: 50%;
    font-size: 325px;
    line-height: 1em;
    color: #ffffff;
    margin-top: -175px;
    font-weight: 500;
}
.us-section .image-column .inner-column {
    position: relative;
    padding-left: 40px;
    padding-bottom: 50px;
    margin-right: 50px;
}
.us-section .image-column .inner-column::before {
    position: absolute;
    left: -75px;
    top: 65px;
    height: 520px;
    width: 520px;
    background-image: url(https://i.ibb.co/fxJ1jtC/about-circle-1.png);
    content: "";
}
.us-section .image-column .image-1 {
    position: relative;
}
.us-section .image-column .image-2 {
    position: absolute;
    left: 0;
    bottom: 0;
}
.us-section .image-column .image-1 img {
    box-shadow: 0 30px 50px rgb(174 175 187 / 15%);
}
.us-section .image-column .video-link {
    position: absolute;
    left: 70px;
    top: 170px;
}
.us-section .image-column .video-link .link {
    position: relative;
    display: block;
    font-size: 22px;
    color: #191e34;
    font-weight: 400;
    text-align: center;
    height: 100px;
    width: 100px;
    line-height: 100px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 30px 50px rgba(8, 13, 62, .15);
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}
.us-section .image-column .video-link .link:hover {
    background-color: #191e34;
    color: #fff;
}
/*--------------------------------------------------
#SECCION2 NOSOTROS | Mision & Vision
--------------------------------------------------*/
.mision .icon-box {
    text-align: center;
    border: 1px solid #d5e1ed;
    padding: 80px 20px;
    transition: all ease-in-out 0.3s;
}
.mision .icon-box .icon {
    margin: 0 auto;
    width: 64px;
    height: 64px;
    background: #1977cc;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transform-style: preserve-3d;
}
.mision .icon-box .icon i {
    color: #fff;
    font-size: 28px;
}
.mision .icon-box .icon::before {
    position: absolute;
    content: "";
    left: -8px;
    top: -8px;
    height: 100%;
    width: 100%;
    background: #badaf7;
    border-radius: 5px;
    transition: all 0.3s ease-out 0s;
    transform: translateZ(-1px);
}
.mision .icon-box h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 25px;
}
.mision .icon-box h4 a {
    color: #2c4964;
}
.mision .icon-box .politicas {
    color: #081722;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 30px;
}
.mision .icon-box .cursive {
    font-family: 'Edu VIC WA NT Beginner', cursive;
    font-size: 23px;
}
.mision .icon-box p {
    line-height: 25px;
    letter-spacing: 1px;
    font-size: 15px;
    margin-bottom: 0;
    font-family: 'Figtree', sans-serif;
}
.mision .icon-box:hover {
    background: #1977cc;
    border-color: #1977cc;
}
.mision .icon-box:hover .icon {
    background: #fff;
}
.mision .icon-box:hover .icon i {
    color: #1977cc;
}
.mision .icon-box:hover .icon::before {
    background: #3291e6;
}
.mision .icon-box:hover h4 a,
.mision .icon-box:hover p {
    color: #fff;
}
/*--------------------------------------------------
#SECCION1 MARCAS | LOGOTIPOS
--------------------------------------------------*/
.banner {
    padding: 90px 0;
    z-index: 5;
}
.banner .block h1 {
    color: #040404;
    font-size: 52px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}
@media (max-width: 425px) {
    .banner .block h1 {
        font-size: 40px;
    }
}
.banner .block p {
    color: #888888;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.5px;
    font-size: 20px;
    font-family: 'Figtree', sans-serif;
}
.banner .banner-button {
    color: white;
    background: #173770;
    font-size: 15px;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    font-weight: 500;
    transition: 0.2s ease;
    overflow: hidden;
    border: 0;
    letter-spacing: 0.8px;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
}
.banner .img-banner {
    width: 100%;
    height: auto;
    vertical-align: middle;
    border: 0;
}
.section-banner {
    padding-top: 120px;
    padding-bottom: 120px;
}
.section-banner .section-title-2 {
    margin-bottom: 30px;
}
.section-banner .section-title-2 .first-title {
    color: #51B56D;
    font-size: 18px;
    letter-spacing: 0.3px;
    font-family: 'Poppins', sans-serif;
}
.section-banner .section-title-2 h1 {
    color: #040404;
    font-weight: 700;
    font-size: 50px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.8px;
}
@media (max-width: 425px) {
    .section-banner .section-title-2 h1 {
        font-size: 35px;
    }
}
.section-banner .section-title-2 p {
    color: #888888;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.4px;
    font-family: 'Figtree', sans-serif;
}
.item-banner {
    position: relative;
    transition: 0.3s;
}
.item-banner:not(:last-child) {
    margin-bottom: 10px;
}
.item-banner .icon-banner {
    color: #917AEB;
    background-color: rgba(145, 122, 235, 0.1);
    height: 85px;
    flex: 0 0 auto;
    width: 85px;
    line-height: 85px;
    text-align: center;
    border-radius: 8px;
}
.item-banner:nth-child(even) .icon-banner {
    color: #51B56D;
    background-color: rgba(81, 181, 109, 0.1);
}
.item-banner h3 {
    color: #040404;
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}
.item-banner p {
    color: #888888;
    font-weight: 400;
    line-height: 1.7;
    font-size: 16px;
    letter-spacing: 0.4px;
    font-family: 'Figtree', sans-serif;
}
.item-banner:hover {
    box-shadow: 0px 25px 65px 0px rgba(0, 0, 0, 0.1);
}
.mark {
    padding: 60px 0;
    background-color: white;
}
.mark .section-title {
    text-align: center;
    padding-bottom: 60px;
}
.mark .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #2c4964;
}
.mark .section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}
.mark .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #1977cc;
    bottom: 0;
    left: calc(50% - 20px);
}
.mark .section-title p {
    margin-bottom: 0;
    color: #000000c7;
    text-align: left;
    font-family: 'Figtree', sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 50px;
    letter-spacing: 1px;
}
.mark .section-title .titulo1 {
    color: black;
    font-size: 60px;
    line-height: 80px;
    letter-spacing: 1px;
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    margin-top: 100px;
}
@media (max-width: 425px) {
    .mark .section-title .titulo1 {
        font-size: 50px;
        text-align: center;
        line-height: 55px;
    }
    .mark .section-title p {
        text-align: center;
        font-size: 30px;
        line-height: 40px;
    }
}
.mark .mark-wrap {
    border-top: 1px solid #ececec;
    border-left: 1px solid #ececec;
}
.mark .mark-logo {
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    overflow: hidden;
    background: #fff;
    /*height: 100px;*/
}
.mark .mark-logo img {
    transition: all 0.3s ease-in-out;
    height: 45px;
    filter: grayscale(100%);
}
.mark .mark-logo:hover img {
    filter: none;
    transform: scale(1.1);
}
/*--------------------------------------------------
#section-products-accesorios y consumibles
--------------------------------------------------*/
.img-item {
    max-width: 100%;
    height: auto;
}
.img-item-product {
    max-width: 100%;
    height: 340px;
}
@media (max-width: 425px) {
    .img-item-product {
        height: 230px;
    }
    .blog-item-content {
        width: 300px;
    }
}
.about-item span {
    color: rgb(201, 9, 122);
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    font-family: 'Poppins', sans-serif;
    margin-bottom: .5rem;
    line-height: 1.2;
}
.content-title-product {
    color: #242424;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 1.5rem;
    margin-top: 1rem;
}
@media (max-width: 425px) {
    .content-title-product {
        font-size: 35px;
    }
}
.about-item p {
    color: rgba(0, 0, 0, 0.65);
    margin-bottom: 1rem;
    line-height: 30px;
    margin-top: 0;
    font-size: 17px;
    letter-spacing: 0.4px;
    font-family: 'Raleway', sans-serif;
}
.about-item .btn-product {
    color: #fff;
    background: rgb(163, 23, 86);
    transition: all 0.2s ease;
    display: inline-block;
    font-size: 13px;
    font-family: 'Figtree', sans-serif;
    letter-spacing: 1px;
    font-weight: 800;
    padding: 1rem 2.5rem 0.8rem;
    text-transform: uppercase;
    border-radius: 3px;
}
.about-info-item h3 {
    color: #242424;
    margin-bottom: 1rem;
    font-size: 27px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}
@media (max-width: 425px) {
    .about-info-item h3 {
        margin-top: 30px;
    }
}
.blog-item-content .btn-product-item {
    border-radius: 50px;
    padding: 13px 25px 10px;
    font-size: 13px;
    background: rgb(163, 23, 86);
    color: #fff;
    transition: all 0.2s ease;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.about-info-item span {
    color: rgb(92, 10, 96);
    margin-right: .5rem;
    font-size: 50px;
}
.about-info-item p {
    color: #000000A6;
    font-size: 17px;
    font-family: 'Hind', sans-serif;
    line-height: 30px;
    margin-top: 0;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}
.about-info {
    margin-top: 100px;
    margin-bottom: 100px;
}
/*--------------------------------------------------
#SECCION1.2-products accesorios y consumibles
--------------------------------------------------*/
.blog-wrap {
    background-color: #f7f7f775;
}
.blog-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #fff;
    padding: 3rem;
}
.blog-item h3 {
    line-height: 36px;
    transition: all 0.4s ease 0s;
    color: #242424;
    font-family: 'Poppins', sans-serif;
    font-size: 33px;
}
.blog-item-content p {
    color: #000000A6;
    font-size: 17px;
    font-family: 'Hind', sans-serif;
    line-height: 30px;
    letter-spacing: 0.4px;
}

.blog-item-content {
    padding: 1rem;
}
.blog-item-meta {
    background: #f5f8f9;
    padding-left: 1rem;
    text-align: center;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .25rem;
}
.blog-item-meta span {
    color: #363636;
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.4px;
}
.blog-item-content li {
    color: #4e4e4e;
    font-family: 'Hind', sans-serif;
    letter-spacing: 0.6px;
}

/*--------------------------------------------------
#section-products-equipo medico
--------------------------------------------------*/
.img-equip {
    height: 550px;
    /*width: 100%;*/
}
.container-xxl .square h1 {
    font-weight: 600;
    font-size: 2.5rem;
}
.container-xxl .square h2 {
    font-weight: 600;
    font-size: 2rem;
}
.container-xxl .square h5 {
    font-weight: 600;
    font-size: 1.25rem;
}
.container-xxl .title1 {
    font-size: 40px;
    line-height: 50px;
    color: #15233C;
}
@media (max-width: 425px) {
    .container-xxl .mb-0 {
        line-height: 35px;
    }
}
.container-xxl .parrafo1 {
    font-size: 15px;
    color: #015FC9;
}
.container-xxl .parrafo2 {
    font-size: 15px;
    color: #2c2c2c;
}
.container-xxl .img-icon {
    width: 64px;
    height: 64px;
}
.container-xxl .phone {
    padding-top: 1.5rem;
}
.table {
    color: black;
}
/*--------------------------------------------------
#SECCION1 PRODUCTOS-MAQUINA DE ANESTESIA
--------------------------------------------------*/
.anestesia_item {
    /*border-bottom: 1px solid #f2f2f2;*/
    margin-bottom: 65px;
}
.anestesia_item:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}
.anestesia_item_pic {
    text-align: center;
}
.anestesia_item_pic img {
    height: 490px;
    width: 490px;
}
@media (max-width: 425px) {
    .anestesia_item_pic img {
        max-height: fit-content;
    }
}
.anestesia_item_txt {
    padding-top: 25px;
}
/*.anestesia_item_txt.anestesia_item_txt--left {
    text-align: right;
}*/
.anestesia_item_txt span {
    color: #13a2b7;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Figtree', sans-serif;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 10px;
}
.anestesia_item_txt h2 {
    color: black;
    font-weight: 900;
    font-family: 'Figtree', sans-serif;
    font-size: 60px;
    margin-bottom: 35px;
}
@media (max-width: 425px) {
    .anestesia_item_txt h2 {
        font-size: 40px;
    }
}
.anestesia_item_txt p {
    color: #646464;
    line-height: 30px;
    font-size: 17px;
    letter-spacing: 0.4px;
    font-family: 'Raleway', sans-serif;
    margin-bottom: 80px;
}

/*--------------------------------------------------
#SECCION1 PRODUCTOS-GASES MEDICINALES-CONECTORES
--------------------------------------------------*/
.featured-cars {
    padding: 20px 0 120px;
    background-color: #f1f1f12b;
}
.featured-cars-content {
    padding-top: 50px;
}
.featured-img-box {
    border: 1px solid #dadfe9;
}
.featured-cars-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    height: 220px;
    border-bottom: 3px solid #dadfe9;
}
.featured-cars-img img {
    border: none;
    max-width: 100%;
    height: auto;
}
@media (max-width: 425px) {
    .featured-cars-img img {
        width: 225px;
    }
}
.featured-model-info {
    padding: 12px 7px;
    font-family: 'Poppins', sans-serif;
}
.featured-model-info p {
    font-size: 11px;
    color: #8c92a0;
    text-transform: capitalize;
}
.featured-mi-span {display: inline-block;margin: 0 10px;color: #000000;}
.featured-hp-span {display: inline-block;margin-right: 10px;}
.featured-cars-txt {margin: 21px 0 47px;}
.featured-cars-txt h2 a {
    color: black;
    font-weight: 700;
    font-size: 17px;
    margin-bottom: 15px;
    font-family: 'Figtree', sans-serif;
    letter-spacing: 0.5px;
}
.featured-cars-txt h2 a span {text-transform: uppercase;}
.featured-cars-txt h3 {
    margin-bottom: 10px;
    font-weight: 500;
    color: #444a57;
    text-transform: capitalize;
}
.featured-cars-txt h3, .featured-cars-txt p {
    font-size: 14px;
    letter-spacing: 0.3px;
    font-family: 'Figtree', sans-serif;
    color: #818998;
    text-transform: initial;
}
/* Tipo de GAS - AIRE */
.featured-cars-txt .aire {
    width: 75px; /*125px*/
    height: 25px; /*40px*/
    border-radius: 5px;
    padding: 5px 25px; /*10px 25px*/
    font-weight: 700;
    background: transparent;
    transition: all 0.3s ease;
    box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
    7px 7px 20px 0px rgba(0,0,0,.1),
    4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
    color: white;
    background: rgb(6, 14, 131);
    background: linear-gradient(0deg, rgb(228 234 0) 0%, rgb(255 197 0) 100%);
    border: none;
}
/* Tipo de GAS - OXIGENO */
.featured-cars-txt .oxigeno {
    width: 124px; 
    height: 29px; 
    border-radius: 5px;
    padding: 7px 15px; 
    font-weight: 700;
    background: transparent;
    transition: all 0.3s ease;
    box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
    7px 7px 20px 0px rgba(0,0,0,.1),
    4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
    color: white;
    background: rgb(6, 14, 131);
    background: linear-gradient(0deg, rgb(2 70 24) 0%, rgb(0 255 8) 100%);
    border: none;
}
/* Tipo de GAS - OXIDO NITROSO */
.featured-cars-txt .oxido {
    width: 175px; 
    height: 29px; 
    border-radius: 5px;
    padding: 7px 15px; 
    font-weight: 700;
    background: transparent;
    transition: all 0.3s ease;
    box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
    7px 7px 20px 0px rgba(0,0,0,.1),
    4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
    color: white;
    background: linear-gradient(0deg, rgb(5, 44, 104) 0%, rgb(5 75 149) 100%);
    border: none;
}
/* Tipo de GAS - VACIO */
.featured-cars-txt .vacio {
    width: 80px; /*125px*/
    height: 27px; /*40px*/
    border-radius: 5px;
    padding: 6px 25px; /*10px 25px*/
    font-weight: 700;
    background: #ffffff;
    transition: all 0.3s ease;
    box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
    7px 7px 20px 0px rgba(0,0,0,.1),
    4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
    color: black;
    border: none;
}
/* Tipo de GAS - DIOXIDO DE CARBONO */
.featured-cars-txt .dioxido {
    width: 210px; 
    height: 29px; 
    border-radius: 5px;
    padding: 7px 15px; 
    font-weight: 700;
    background: transparent;
    transition: all 0.3s ease;
    box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
    7px 7px 20px 0px rgba(0,0,0,.1),
    4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
    color: white;
    background: rgb(6, 14, 131);
    background: linear-gradient(0deg, rgb(151 151 151) 0%, rgb(175 175 175) 100%);
    border: none;
}
.featured-cars-txt .black {
    width: 110px; 
    height: 29px; 
    border-radius: 5px;
    padding: 7px 15px; 
    font-weight: 700;
    background: transparent;
    transition: all 0.3s ease;
    box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
    7px 7px 20px 0px rgba(0,0,0,.1),
    4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
    color: white;
    background: rgb(6, 14, 131);
    background: linear-gradient(0deg, rgb(6 6 6) 0%, rgb(58 58 58) 100%);
    border: none;
}

/*--------------------------------------------------
#section-products-mobiliario
--------------------------------------------------*/
.about-mobiliario .inner-title {
    font-size: 2.75rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    margin: 30px 0;
}
@media (max-width: 425px) {
    .about-mobiliario .inner-title {
        font-size: 30px;
        text-align: center;
        margin-bottom: 80px;
        margin-top: 80px;
    }
}
@media (min-width: 991px) {
    .about-mobiliario .inner-title {
        max-width: 65%;
        margin: 0 0 80px 0;
    }
}
.about-mobiliario .description-txt {
    padding: 40px;
    background-color: color-mix(in srgb, #dbeeff6e, transparent 0%);
}
@media (min-width: 991px) {
    .about-mobiliario .description-txt {
        padding-right: 35%;
    }
}
.about-mobiliario .description-txt h4 {
    text-transform: uppercase;
    color: #364d59;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}
.about-mobiliario .description-txt h3 {
    color: black;
    font-weight: 700;
    font-size: 2.25rem;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
}
@media (max-width: 425px) {
    .about-mobiliario .description-txt h3 {
        margin-top: 20px;
        margin-bottom: 40px;
    }
}
.about-mobiliario .description-txt p {
    letter-spacing: 0.5px;
    line-height: 25px;
    font-family: 'Figtree', sans-serif;
    margin-bottom: 30px;
}
.about-mobiliario .description-txt p:last-child {
    margin-bottom: 0;
}
.about-mobiliario ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
    letter-spacing: 0.3px;
    font-family: 'Figtree', sans-serif;
}
.about-mobiliario ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}
.about-mobiliario ul i {
    font-size: 1.25rem;
    margin-right: 1rem;
    line-height: 1.2;
    color: #e91e63;
}
.about-mobiliario .watch-video i {
    color: #3F51B5;
    font-size: 30px;
    transition: 0.2s;
}
.about-mobiliario .watch-video a {
    color: #3F51B5;
    font-weight: bold;
    margin-left: 18px;
    transition: 0.3s;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.about-mobiliario .watch-video:hover a {
    color: #3f51b5cc;
}
.about-mobiliario .about-img-mob {
    min-height: 400px;
    position: relative;
}
@media (min-width: 992px) {
    .about-mobiliario .about-img-mob {
        position: absolute;
        top: 0;
        right: 0;
        min-height: 600px;
    }
}
.about-mobiliario .about-img-mob img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}
.features-cards .feature-box {
    height: 100%;
    padding: 40px 30px;
    border-radius: 10px;
}
.features-cards .feature-box i {
    font-size: 50px;
    display: inline-block;
    line-height: 0;
    margin-bottom: 20px;
    color: #555;
}
.features-cards .feature-box h4 {
    font-size: 25px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    margin: 0 0 10px 0;
}
.features-cards .feature-box p {
    margin-bottom: 0;
    font-size: 15px;
    font-family: 'Figtree', sans-serif;
    line-height: 25px;
}
.features-cards .feature-box.orange {
    background-color: #fff3e2;
}
.features-cards .feature-box.orange i {
    color: #edb86e;
}
.features-cards .feature-box.blue {
    background-color: #deedfd;
}
.features-cards .feature-box.blue i {
    color: #20a5f8;
}
.features-cards .feature-box.green {
    background-color: #d5f1e4;
}
.features-cards .feature-box.green i {
    color: #48c88a;
}
.features-cards .feature-box.red {
    background-color: #fdeded;
}
.features-cards .feature-box.red i {
    color: #f28484;
}
.features-2 .feature-item .feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: color-mix(in srgb, #0d83fd, transparent 92%);
}
.features-2 .feature-item .feature-icon i {
    color: #0d83fd;
    font-size: 24px;
}
.features-2 .feature-item .feature-content h3 {
    color: black;
    font-weight: 600;
    font-size: 28px;
    font-family: 'Figtree', sans-serif;
    letter-spacing: 0.8px;
}
.features-2 .feature-item .feature-content p {
    color: darkslategray;
    font-size: 15px;
    font-family: 'Figtree', sans-serif;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}
.features-2 .mobi-mockup {
    position: relative;
    padding: 30px 0;
}
.features-2 .mobi-mockup img {
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}
@media (max-width: 991.98px) {
    .features-2 .feature-item .d-flex {
        text-align: center;
        margin-bottom: 2rem;
    }
    .features-2 .feature-item .d-flex {
        flex-direction: column;
        text-align: center;
        justify-content: center;
    }
    .features-2 .mobi-mockup {
        margin: 3rem;
    }
}

.pt-10 {
    padding-top: 7rem;
}
.container-mobi {
    width: 100%;
    padding-right: 2rem;
    padding-left: 2rem;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 1400px) {
    .container-mobi {
        max-width: 1320px;
    }
}
@media (min-width: 1200px) {
    .container-mobi {
        max-width: 1140px;
    }
}
@media (min-width: 992px) {
    .container-mobi {
        max-width: 100%;
    }
}
@media (min-width: 768px) {
    .container-mobi {
        max-width: 100%;
    }
}
@media (min-width: 567px) {
    .container-mobi {
        max-width: 100%;
    }
}
.container-mobi h4 {
    color: black;
    margin-top: 0;
    margin-bottom: .5rem;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}
.container-mobi p {
    color: #0F172A;
    margin: 0px 0px 16px;
    font-size: 17px;
    font-family: 'Figtree', sans-serif;
    letter-spacing: 0.5px;
    line-height: 30px;
}
.container-mobi p a {
    color: #2c4bff;
    text-decoration: none;
}
.container-mobi p a:hover {
    color: #0f172a;
    text-decoration: underline;
    font-weight: bold;
}
.btn-mob {
    display: inline-block;
    font-weight: 500;
    line-height: 1;
    color: #0f172a;
    text-align: center;
    vertical-align: center;
    cursor: pointer;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 1rem 1.25rem;
    font-size: .975rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.btn-success-v2 {
    color: #000;
    background-color: #5debdf;
    border-color: #5debdf;
    font-family: 'Figtree', sans-serif;
    letter-spacing: 0.8px;
    font-weight: 600;
}
.btn-success-v2:hover {
    color: #000;
    background-color: #75eee4;
    border-color: #6dede2;
}
.img-fluid-v2 {
    max-width: 100%;
    height: auto;
}
/*--------------------------------------------------
#SECCION1 PRODUCTOS
--------------------------------------------------*/
.product {
    padding: 60px 0;
}
.product .section-title {
    text-align: center;
    padding-bottom: 20px;
}
.product .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #2c4964;
}
.product .section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}
.product .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #1977cc;
    bottom: 0;
    left: calc(50% - 20px);
}
/*--------------------------------------------------------------
#SECCION1 PRODUCTOS DESCRIPCION #F.A.Q
--------------------------------------------------------------
.faq .faq-list {
    padding: 0 100px;
}
.faq .faq-list ul {
    padding: 0;
    list-style: none;
}
.faq .faq-list li+li {
    margin-top: 15px;
}
.faq .faq-list li {
    padding: 20px;
    background: #dbeeff6e;
    border-radius: 4px;
    position: relative;
}
.faq .faq-list a {
    display: block;
    position: relative;
    font-family: var(--font-secondary);
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
    padding: 0 30px;
    outline: none;
    cursor: pointer;
    margin-top: 5px;
}
.faq .faq-list .icon-help {
    font-size: 23px;
    position: absolute;
    right: 0;
    left: 15px;
    color: #ffc107;
}
.faq .faq-list .icon-show,
.faq .faq-list .icon-close {
    font-size: 24px;
    position: absolute;
    right: 0;
    top: 0;
}
.faq .faq-list p {
    margin-bottom: 0;
    padding: 10px 0 0 0;
    font-family: "PT Sans", sans-serif;
    line-height: 26px;
}
.faq .faq-list .icon-show {
    display: none;
    font-weight: bold;
}
.faq .faq-list a.collapsed {
    color: #343a40;
}
.faq .faq-list a.collapsed:hover {
    color: crimson;
}
.faq .faq-list a.collapsed .icon-show {
    display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
    display: none;
}
@media (max-width: 1200px) {
    .faq .faq-list {
        padding: 0;
    }
}*/

/*--------------------------------------------------
#SECCION2 PORTFOLIO | PRODUCTOS
--------------------------------------------------*/

/*--------------------------------------------------
#SECCION1 | SERVICIO_1
--------------------------------------------------*/
.product_service h2 {
    color: black;
    font-family: "Baloo Bhaijaan 2", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-weight: 800;
    text-align: left;
    font-size: 60px;
    letter-spacing: 1px;
}
@media (max-width: 425px) {
    .product_service h2 {
        text-align: center;
        font-size: 50px;
    }
}
.product_service .parrafo1 {
    color: #565656;
    text-align: left;
    font-family:  Poppins, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    line-height: 30px;
    letter-spacing: 1.2px;
}
@media (max-width: 425px) {
    .product_service .parrafo1 {
        text-align: center;
        font-size: 16px;
    }
}
.services-card-shado {
    -webkit-box-shadow: 0 7px 14px 0 rgba(65, 69, 88, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0 7px 14px 0 rgba(65, 69, 88, 0.1), 0 3px 6px 0 rgba(0, 0, 0, 0.07);
}
.img-serv {
    height: 65.31px;
}
.services-card-shado .mt-3 {
    color: #0e182b;
    font-family: 'Baloo Bhaijaan 2';
    font-weight: 600;
    font-size: 35px;
}
.services-card-shado .parrafo2 {
    color: #565656;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.8px;
}

/*--------------------------------------------------
#SECCION1 | SERVICIO_2
--------------------------------------------------*/
.pricing .titulo1 {
    color: darkslateblue;
    filter: grayscale(1);
    text-align: start;
    font-size: 80px;
    font-family: 'Poppins', sans-serif;
    line-height: 90px;
    margin-bottom: 30px;
    letter-spacing: 2px;
}
@media (max-width: 425px) {
    .pricing .titulo1 {
        font-size: 40px;
        line-height: 55px;
        color: black;
        margin-bottom: 50px;
    }
}
.pricing .parrafo1 {
    color: black;
    text-align: start;
    letter-spacing: 1.2px;
    font-family: 'Figtree', sans-serif;
    font-size: 20px;
    margin-bottom: 30px;
}
@media (max-width: 425px) {
    .pricing .parrafo1 {
        margin-bottom: 60px;
    }
}
.pricing .titulo2 {
    color: #240064;
    font-family: 'Baloo Bhaijaan 2', sans-serif;
    letter-spacing: 1px;
    font-size: 20px;
    text-transform: uppercase;
    margin-left: -1px;
}
@media (max-width: 425px) {
    .pricing .titulo2 {
        text-align: center;
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 25px;
    }
    .pricing #left-content h4 {
        margin-left: 70px;
    }
    .pricing #left-content p {
        margin-left: 35px;
    }
}
.pricing .parrafo_mant {
    color: grey;
    width: 115%;
    font-size: 17px;
    letter-spacing: 0.8px;
    font-family: 'Figtree', sans-serif;
}
.pricing .caja1 {
    width: 100%;
}
@media (max-width: 425px) {
    .pricing .caja1 {
        flex-direction: column;
    }
}@media (max-width: 425px) {
    .pricing .caja2 {flex-direction: column;}
    .pricing .parrafo_mant {width: 100%; text-align: center;}
    .pricing .w_img {display: none;}
    .pricing .w-100 {display: none;}
    .pricing .parrafo-item {text-align: left;}
}
.pricing .w_img {
    height: 600px;
}
.pricing #left-content {
    margin-right: 70px;
}
.pricing .btn-primarys {
    color: white;
    background-color: #5e38a4;
    border-color: #59359a;
    font-family: 'Baloo Bhaijaan 2';
    letter-spacing: 1px;
    font-weight: 700;
    padding: 0.6rem 1.6rem;
    display: inline-block;
    line-height: 1.45;
    text-align: center;
    vertical-align: middle;
    border: 1px solid transparent;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
.btn-primarys:hover {
    color: #fff;
    background-color: #5e4193;
    border-color: #59359a;
}
.pricing .btn-form {
    color: #717075;
    font-family: 'Baloo Bhaijaan 2', sans-serif;
    letter-spacing: 1px;
    font-weight: 700;
    margin-left: 20px;
    font-size: 16px;
}
@media (max-width: 425px) {
    .pricing .btn-sm {
        display: block;
    }
}
.pricing .parrafo-item h4 {
    color: black;
    font-size: 18px;
    font-family: 'Figtree', sans-serif;
    letter-spacing: 1px;
    line-height: 25px;
}
.pricing .parrafo-item i {
    color: #9C27B0;
    margin-right: 10px;
    font-size: 30px;
    vertical-align: middle;
}
@media (max-width: 425px) {
    .pricing .parrafo-item i {
        font-size: 20px;
    }
}
.py-10 h4 {
    color: black;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 2.75rem;
    font-family: 'Metropolis', sans-serif;
}
.py-10 .sub-title {
    color: #64748b;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Metropolis', sans-serif;
}
.py-10 .title-asesoria {
    color: black;
    font-weight: 800;
    letter-spacing: 0.6px;
    font-size: 25px;
    font-family: 'Figtree', sans-serif;
}
.py-10 .text-asesoria {
    color: #64748b;
    letter-spacing: 0.8px;
    font-size: 17px;
    font-family: 'Figtree', sans-serif;
    font-weight: 400;
}
.py-10 .d-table {
    color: white;
    background-color: #2c4bff;
    border-color: #2c4bff;
    display: inline-block;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 1rem 1.25rem;
    font-size: .975rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    letter-spacing: 0.5px;
    font-family: 'Figtree', sans-serif;
}
.py-10 .d-table:hover {
    color: #fff;
    background-color: #2540d9;
    border-color: #233ccc;
}
.py-10 .list-unstyled2 {
    color: black;
    font-weight: 500;
    padding-left: -1px;
    list-style: none;
    margin-bottom: 1rem;
    line-height: 1.65;
    letter-spacing: 1px;
    font-family: 'Figtree', sans-serif;
    text-transform: uppercase;
    font-size: 14px;
}
.py-10 .list-unstyled2 i {
    color: #2c4bff;
}
/*--------------------------------------------------
#SECCION1 SERVICIOS
--------------------------------------------------*/
.service {
    padding: 60px 0;
}
.service .section-title {
    text-align: center;
    padding-bottom: 60px;
}
.service .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #2c4964;
}
.service .section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}
.service .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #1977cc;
    bottom: 0;
    left: calc(50% - 20px);
}
.service .content {
    padding: 30px;
    background: #0a406a;
    border-radius: 4px;
    color: beige;
}
@media (max-width: 425px) {
    .service .content {
        padding: 20px;
    }
    .service .content h3, .service .content p {
        text-align: center;
    }
}
.service .content h3 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 30px;
    font-family: 'Baloo Bhaijaan 2', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    filter: drop-shadow(2px 4px 6px black);
}
.service .content p {
    margin-bottom: 30px;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 28px;
    font-family: 'Figtree', sans-serif;
}
.service .content .more-btn {
    display: inline-block;
    background: rgba(27 124 201);
    padding: 6px 30px 8px 30px;
    color: #fff;
    border-radius: 50px;
    transition: all ease-in-out 0.4s;
    font-size: 13px;
    letter-spacing: 1px;
    font-family: 'Figtree', sans-serif;
}
.service .content .more-btn i {
    font-size: 13px;
}
.service .content .more-btn:hover {
    color: white;
    background: #6698bf;
}
.service .icon-boxes .icon-box {
    text-align: center;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding: 40px 20px;
    width: 100%;
    transition: 0.3s;
}
.service .icon-boxes .icon-box i {
    font-size: 40px;
    color: #1977cc;
    margin-bottom: 30px;
}
.service .icon-boxes .icon-box h4 {
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    line-height: 30px;
    font-family: 'Figtree', sans-serif;
    letter-spacing: 0.8px;
    text-align: center;
}
.service .icon-boxes .icon-box p {
    font-size: 15px;
    color: #848484;
    letter-spacing: 0.5px;
    font-family: 'Figtree', sans-serif;
}
.gases .content h2 {
    font-weight: 700;
    font-size: 39px;
    line-height: 60px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.gases .content h3 {
    font-weight: 500;
    line-height: 32px;
    font-size: 20px;
}
.gases .content ul {
    list-style: none;
    padding: 0;
}
.gases .content ul li {
    padding: 10px 0 0 28px;
    position: relative;
}
.gases .content ul i {
    left: 0;
    top: 7px;
    position: absolute;
    font-size: 20px;
    color: #1977cc;
}
.gases .content .more-btn2 {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 10px 16px;
    border-radius: 50px;
    transition: 0.5s;
    background-color: var(--color-primary);
    color: #fff;
    margin-left: 40%;
}
.gases .content .more-btn2:hover {
    color: #fff;
    background: #1b2f45;
}
.gases .content .more-btn3 {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
    padding: 10px 16px;
    border-radius: 50px;
    transition: 0.5s;
    background-color: var(--color-primary);
    color: #fff;
    margin-right: 40%;
}
.gases .content .more-btn3:hover {
    color: #fff;
    background: #1b2f45;
}

/*--------------------------------------------------
#SECCION1 FABRICACIONES ESPECIALES
--------------------------------------------------*/
.pt-4 {
    padding: 80px 32px 112px 32px;
}
.pt-4 .row {
    display: flex;
    --bs-gutter-x: 2rem;
    --bs-gutter-y: 0;
    flex-wrap: wrap;
    margin-top: calc(var(--bs-gutter-y)* -1);
    margin-right: calc(var(--bs-gutter-x) / -2);
    margin-left: calc(var(--bs-gutter-x) / -2);
}
.contenedor1 {
    padding: 0px 56px 0px 56px;
    margin-left: -50px;
}
.display-3 {
    color: #0F172A;
    margin: 0px 0px 24px;
    text-align: justify;
    font-size: 70px;
    font-family: 'Metropolis', sans-serif;
}
@media (max-width: 425px) {
    .display-3 {
        font-size: 50px;
        margin-top: 65px;
    }
    .card-header img {
        width: 330px;
        margin-left: -35px;
    }
}
.contenedor1 h2 {
    text-align: left;
    font-family: 'Raleway', sans-serif;
    letter-spacing: 1px;
}
.contenedor1 h2 strong {
    color: black;
    text-transform: uppercase;
    font-weight: 600;
}
.card-header {
    padding: 60px;
}
.card-header img {
    max-width: 700px;
    height: 700px;
}
@media (max-width: 864px) {
    .card-header img {
        max-width: 700px;
        height: 450px;
    }
    .contenedor1 {
        margin-left: 0;
    }
    .contenedor1 h2 {
        text-align: center;
    }
    .display-3 {
        text-align: center;
    }
}
@media (max-width: 723px) {
    .card-header img {
        max-width: 700px;
        height: 370px;
    }
    .contenedor1 {
        padding: 0px 0px 0px 0px;
    }
}
.btn_fab {
    font-size: .975rem;
    display: inline-block;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    user-select: none;
    border: 1px solid transparent;
    padding: 1rem 1.25rem;
    border-radius: .25rem;
    font-family: 'Metropolis', sans-serif;
    letter-spacing: 1px;
    margin-bottom: 20px;
    transition: color .15sease-in-out, background-color .15sease-in-out, border-color .15sease-in-out, box-shadow .15sease-in-out;
}
.btn-success {
    color: black;
    background-color: #5debdf;
    border-color: #5debdf;
}
.btn-success:hover {
    color: #000;
    background-color: #75eee4;
    border-color: #6dede2;
}
.list-unstyled {
    letter-spacing: 0.3px;
    font-family: 'Figtree', sans-serif;
    color: black;
}
.text1-success {
    color: #5debdf;
}
@media (max-width: 864px) {
    .contec .p3 {
        text-align: center;
    }
}


/*--------------------------------------------------
#SECCION2 FABRICACIONES ESPECIALES_2
--------------------------------------------------*/
.contec {
    background-color: #0f172a;
}
.contec .p1 {
    color: #ff6c60;
    font-size: 0.925em;
    font-family: 'Metropolis', sans-serif;
}
.contec h3 {
    color: aliceblue;
    font-size: 70px;
    font-family: 'Metropolis', sans-serif;
    letter-spacing: 5px;
}
@media (max-width: 425px) {
    .contec h3 {
        color: yellowgreen;
        font-size: 50px;
        letter-spacing: 2px;
    }
}
.contec .p2 {
    font-size: 16px;
    font-family: 'Figtree', sans-serif;
    letter-spacing: 0.8px;
}
.img-contec {
    max-width: fit-content;
    height: 120px;
}
.contec .p3 {
    color: white;
    margin-top: 80px;
    font-size: 23px;
    font-family: 'Metropolis', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}
@media (max-width: 425px) {
    .contec .p3 {
        color: floralwhite;
    }
    .img-contec {
        height: 90px;
    }
}
.contec .p4 {
    color: blanchedalmond;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 25px;
}
.btn_plus {
    font-size: .975rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    use-select: none;
    border: 1px solid transparent;
    padding: 1rem 1.25rem;
    border-radius: .25rem;
    font-family: 'Metropolis', sans-serif;
    color: black;
    background-color: #fff;
    border-color: #fff;
    margin-top: 7rem;
    letter-spacing: 1px;
}
.btn_plus:hover {
    color: white;
    background-color: transparent;
}

/*--------------------------------------------------
#SECCION3 FABRICACIONES ESPECIALES_3
--------------------------------------------------*/
.img_fab1 {
    width: 500px;
}
.container_fab small {
    color: black;
    font-weight: 500;
    font-family: 'Figtree', sans-serif;
    letter-spacing: 0.5px;
}
.container_fab span {
    margin-top: 10px;
    font-family: 'Figtree', sans-serif;
    letter-spacing: 0.7px;
}
.container_fab i {
    color: #ff002d;
    font-size: 25px;
}
.txt-ls {
    font-size: 20px;
    font-family: 'Figtree', sans-serif;
}
.txt-title {
    color: black;
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.8px;
    font-family: 'Metropolis', sans-serif;
}
.txt-parrafo {
    color: #64748b;
    letter-spacing: 0.6px;
    font-family: 'Figtree', sans-serif;
    margin-bottom: 40px;
}
.btn_link {
    color: #2196F3;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Figtree', sans-serif;
}
.parr_1 {
    color: #2c4bff;
    letter-spacing: 1px;
    font-family: 'Figtree', sans-serif;
}
.gallery {
    padding: 60px 0;
}
.gallery .section-title {
    text-align: center;
    padding-bottom: 60px;
}
.gallery .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #2c4964;
}
.gallery .section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}
.gallery .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #1977cc;
    bottom: 0;
    left: calc(50% - 20px);
}
.gallery .section-title p {
    margin-bottom: 0;
}
.gallery .gallery-item {
    overflow: hidden;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}
.gallery .gallery-item img {
    transition: all ease-in-out 0.4s;
}
.gallery .gallery-item:hover img {
    transform: scale(1.1);
}
/*--------------------------------------------------
#SECCION1 NOVEDADES
--------------------------------------------------*/
.testimonials {
    padding: 60px 0;
}
.testimonials .section-title {
    text-align: center;
    padding-bottom: 60px;
}
.testimonials .section-title h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #2c4964;
}
.testimonials .section-title h2::before {
    content: "";
    position: absolute;
    display: block;
    width: 120px;
    height: 1px;
    background: #ddd;
    bottom: 1px;
    left: calc(50% - 60px);
}
.testimonials .section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 40px;
    height: 3px;
    background: #1977cc;
    bottom: 0;
    left: calc(50% - 20px);
}
.testimonials .testimonial-item {
    box-sizing: content-box;
    padding: 30px;
    margin: 40px 30px;
    box-shadow: 0px 0 20px rgba(84 128 177 / 41%);
    background: #fff;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    text-align: center;
    transition: 0.3s;
}  
.testimonials .testimonial-item .stars {
    margin-bottom: 15px;
    font-size: 13px;
}
.testimonials .testimonial-item .stars i {
    color: #ffc107;
    margin: 0 1px;
}  
.testimonials .testimonial-item .testimonial-img {
    width: 125px;
    height: 110px;
    border: 4px solid #fff;
    margin: 0 auto;
}
.testimonials .testimonial-item h3 {
    font-size: 22px;
    font-weight: bold;
    margin: 10px 0 5px 0;
    color: crimson;
    font-family: 'Figtree', sans-serif;
    letter-spacing: 1.5px;
} 
.testimonials .testimonial-item h4 {
    font-size: 14px;
    color: #999;
    margin: 0;
    font-family: 'Figtree', sans-serif;
    font-weight: 200;
    letter-spacing: 0.96px;
}
.testimonials .testimonial-item p {
    /*font-style: italic;*/
    margin: 0 auto 15px auto;
    margin-top: 30px;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    letter-spacing: 0.8px;
}
.testimonials .swiper-pagination {
    margin-top: 20px;
    position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #e8eff6;
    opacity: 1;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--color-primary);
}
.testimonials .swiper-slide {
    opacity: 0.3;
}
@media (max-width: 1199px) {
    .testimonials .swiper-slide-active {
        opacity: 1;
    }
    .testimonials .swiper-pagination {
        margin-top: 0;
    }
    .testimonials .testimonial-item {
        margin: 40px 20px;
    }
}
@media (min-width: 1200px) {
    .testimonials .swiper-slide-next {
        opacity: 1;
        transform: scale(1.12);
    }
}
/*--------------------------------------------------
#SECCION2 NOVEDADES
--------------------------------------------------*/
#features {
    padding: 80px 0;
}
#features h4 {
    font-weight: 700;
    font-size: 45px;
    color: #1b2f45;
    letter-spacing: 1px;
    font-family: 'Figtree', sans-serif;
}
@media (max-width: 425px) {
    #features h4 {
        font-size: 30px;
    }
    .features .img-fluid {
        width: 300px;
        margin-left: 35px;
    }
}
.features .list-style-one {
    list-style: none;
    margin-left: -40px;
}
.features .list-style-one li {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 800;
}
.features p {
    font-size: 17px;
    margin-top: 25px;
    letter-spacing: 0.5px;
    line-height: 27px;
    font-family: 'Figtree', sans-serif;
}
.features .img-fluid {
    margin-top: 60px;
}
.btn-biomedical {
    color: #1363c6;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Figtree', sans-serif;
    margin-bottom: 15px;
}
.title1-vet {
    color: black;
    font-weight: 700;
    font-size: 3.5rem;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}
@media (max-width: 425px) {
    .title1-vet {
        font-size: 39px;
    }
}
.p1_vet {
    color: #555;
    line-height: 30px;
    font-weight: 400;
    letter-spacing: 0.5px;
    font-size: 19px;
    font-family: 'Figtree', sans-serif;
}
.btn-info1 {
    color: #fff;
    background-color: #1363c6;
    border-color: #1363c6;
    font-weight: 500;
    font-size: 1rem;
    font-family: 'Figtree', sans-serif;
    transition: .5s;
    display: inline-block;
    line-height: 1.5;
    text-align: center;
    vertical-align: middle;
    border: 1px solid rgba(0, 0, 0, 0);
    padding: .375rem .75rem;
    letter-spacing: 0.5px;
}
.service-item {
    background: #ffffff;
    position: relative;
    transition: .5s;
    padding: 30px 30px;
}
.service-item .service-icon {
    margin: 0 auto 20px auto;
    margin-top: 30px;
    transition: .5s;
    width: 90px;
    height: 90px;
}
.service-icon .img-icon {
    height: 90px;
    width: auto;
}
.service-item h5 {
    color: #14183e;
    font-weight: 700;
    font-size: 25px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    line-height: 1.2;
}
.service-item .p_descr {
    color: #525252;
    transition: .5s;
    margin-bottom: 2rem;
    line-height: 28px;
    letter-spacing: 0.5px;
    font-size: 1rem;
    font-weight: 500;
    font-family: 'Figtree', sans-serif;
}
.sec_vet {
    background-color: #05243e;
}
.sec_vet .btn-biomedical2 {
    color: #fff;
    letter-spacing: 0.8px;
    font-weight: 400;
    font-family: 'Figtree', sans-serif;
    font-size: 0.875rem;
    margin-bottom: 25px;
}
.sec_vet .mb-4_1 {
    color: cornsilk;
    line-height: 1.2;
    letter-spacing: 0.8px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif;
    font-size: 60px;
}
@media (max-width: 425px) {
    .sec_vet .mb-4_1 {
        font-size: 43px;
    }
    .sec_vet .img-fluid_1 {
        height: 280px;
    }
}
.sec_vet .parr-1 {
    color: #f4f7fee3;
    line-height: 33px;
    letter-spacing: 0.8px;
    font-family: 'Figtree', sans-serif;
    margin-top: 20px;
}
.sec_vet .icono-1 {
    color: blanchedalmond;
    margin-bottom: 1rem;
    font-size: 16px;
    font-family: 'Figtree', sans-serif;
    font-weight: 600;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}
.sec_vet .icono-1 i {
    color: antiquewhite;
    margin-right: 12px;
    font-size: 25px;
}
.sec_vet .icon2 {
    color: antiquewhite;
    font-size: 35px;
}
.sec_vet .number {
    color: white;
    letter-spacing: 1.9px;
    font-size: 40px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
}
.sec_vet .counter-title {
    color: white;
    letter-spacing: 1px;
    font-size: 20px;
    font-family: 'Figtree', sans-serif;
}
.btn-biomedical3 {
    color: #1363c6;
    font-weight: 700;
    letter-spacing: 0.8px;
    font-family: 'Figtree', sans-serif;
}
.title-sect3 {
    color: #14183E;
    letter-spacing: 1px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    margin-bottom: 50px;
}
.case-item img {
    transition: .5s;
}
.img-fluid-sec3 {
    max-width: 100%;
    height: 430px;
}
.case-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    background: linear-gradient(rgba(20, 24, 62, 0), #14183E);
}
.case-overlay small {
    color: gold;
    display: inline-block;
    padding: 3px 15px;
    background: rgba(20, 24, 62, .7);
    border-radius: 25px;
    margin-bottom: 15px;
    letter-spacing: 0.8px;
    font-family: 'Figtree', sans-serif;
}
.case-overlay h5 {
    color: aliceblue;
    letter-spacing: 1px;
    font-weight: 500;
    font-size: 21px;
    font-family: 'PT Sans', sans-serif;
}
.case-overlay .btn-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    width: 38px;
    height: 38px;
    color: #fff;
    background-color: #1363c6;
    border-color: #1363c6;
    border-radius: 10px;
}
/*--------------------------------------------------
#SECCION CONTACTO
--------------------------------------------------*/
.contact {
    background: url("../img/contact-bg.png") left top no-repeat;
    background-size: contain;
    position: relative;
}
@media (max-width: 640px) {
    .contact {
        background-position: center 50px;
    }
}
.contact:before {
    content: "";
    background: rgba(255, 255, 255, 0.7);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}
.contact .info-item+.info-item {
    margin-top: 40px;
}
.contact .info-item i {
    font-size: 30px;
    background: cornflowerblue;
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}
.contact .info-item h4 {
    padding: 1px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #14183E;
}
.contact .info-item p {
    padding: 0;
    margin-bottom: 0;
    font-size: 15px;
    font-family: 'Figtree', sans-serif;
    letter-spacing: 1px;
    line-height: 35px;
}
.contact .help {
    font-size: 16px;
    text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	color: midnightblue;
	font-family: 'Poppins', sans-serif;
}
.contact .php-email-form {
    width: 100%;
	margin-top: 30px
}
.contact .php-email-form .form-group {
    padding-bottom: 8px;
}
.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #df1529;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}
.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}
.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #059652;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}
.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}
.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #059652;
    border-top-color: #fff;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}
.contact .php-email-form input,
.contact .php-email-form textarea {
    border-radius: 0;
    box-shadow: none;
    font-size: 15px;
    letter-spacing: 1px;
    padding: 12px 15px;
    font-family: 'Figtree', sans-serif;
    color: black;
    font-weight: 500;
}
.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: var(--color-primary);
}
.contact .php-email-form textarea {
    padding: 10px 12px;
}
.contact .php-email-form button[type=submit] {
    background: #14385e;
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 15px;
}
.contact .php-email-form button[type=submit]:hover {
    background: crimson;
}
@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*--------------------------------------------------
#FOOTER
--------------------------------------------------*/
.footer {
    font-size: 14px;
}
.footer .footer-content {
    background-color: #f7f9fc;
    background-size: contain;
    padding: 60px 0 30px 0;
}
.footer .footer-content .footer-info {
    margin-bottom: 30px;
}
.footer .footer-content .footer-info .logo {
    line-height: 0;
    margin-bottom: 25px;
}
.footer .footer-content .footer-info .log img {
    max-height: 40px;
    margin-right: 6px;
}
.footer .footer-content .footer-info .logo span {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #010E21;
    /*color: var(--color-secondary);*/
    font-family: var(--font-secondary);
    margin-top: 3px;
}
.footer .footer-content .footer-info p {
    font-size: 15px;
    margin-bottom: 0;
    font-family: var(--font-primary);
    color: var(--color-secondary);
}
.footer .footer-content .social-links a {
    font-size: 18px;
    line-height: 0;
    display: inline-block;
    width: 32px;
    height: 32px;
    color: rgba(27, 47, 69, 0.5);
    margin-right: 10px;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #04dbec;
    /*background: var(--color-primary);*/
    color: #fff;
    border-radius: 50px;
}
.footer .footer-content .social-links a:hover {
    background-color: #38618e;
}
.footer .footer-content h4 {
    font-size: 16px;
    font-weight: bold;
    color: #010E21;
    /*color: #29486a;*/
    position: relative;
    padding-bottom: 12px;
}
.footer .footer-content .footer-links {
    margin-bottom: 30px;
}
.footer .footer-content .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer .footer-content .footer-links ul i {
    margin-right: 7px;
    color: darkcyan;
    font-size: 16px;
    line-height: 0;
}
.footer .footer-content .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}
.footer .footer-content .footer-links ul li:first-child {
    padding-top: 0;
}
.footer .footer-content .footer-links ul a {
    color: #31547c;
    transition: 0.3s;
    display: inline-block;
    font-family: system-ui;
    letter-spacing: 0.5px;
    line-height: 20px;
}
.footer .footer-content .footer-links ul a:hover {
    color: var(--color-primary);
}
.footer .footer-content .footer-contact p {
    line-height: 26px;
    color: #010E21;
    /*color: var(--color-secondary);*/
    font-size: 12.5px;
}
.footer .footer-legal {
    background: #010E21;
    /*background: var(--color-secondary);*/
    padding: 30px 0;
}
.footer .footer-legal .copyright {
    text-align: center;
    color: #fff;
    font-size: 12px;
}
.footer .footer-legal .credits {
    padding-top: 4px;
    text-align: center;
    font-size: 13px;
    color: var(--color-secondary);
}
.footer span {
    color: #04dbec;
}

footer .col-12{
    padding-right: 0;
    padding-left: 0;
}
footer .col-md-8 {
    padding-right: 0;
    padding-left: 0;
}
footer .col-lg-6 {
    padding-right: 0;
    padding-left: 0;
}

footer .title-footer{
    letter-spacing: 1.5px;
    line-height: 60px;
    font-family: 'Figtree', sans-serif;
    font-size: 55px;
}
footer .title-footer-2 {
    color: cornsilk;
    letter-spacing: 1.5px;
    font-size: 20px;
    font-family: 'Figtree', sans-serif;
}
footer .title-link {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    letter-spacing: 2.5px;
}
footer i {
    color: #04dbec;
    margin-right: 7px;
    font-size: 16px;
    line-height: 0;
}
footer .list-unstyled {
    color: hsla(0,0%,100%,.85);
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    letter-spacing: 0.8px;
    line-height: 30px;
}
footer .list-unstyled strong {
    color: #00aeff;
}
footer .footer-rights {
    color: bisque;
    letter-spacing: 0.8px;
    font-family: 'Figtree', sans-serif;
}
footer .social-icon {
    font-size: 30px;
}
footer .btn {
    font-family: 'Figtree', sans-serif;
    letter-spacing: 1px;
}
@media (max-width: 425px) {
    footer .footer-rights span {
        text-align: center;
        font-size: 14px;
    }
}