@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&family=Roboto+Mono:wght@200;300;400;500;600;700&display=swap');

@font-face {
    font-family: 'FuturaPT Bold';
    src: url('../assets/fonts/FuturaPT-Bold.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaPT Light';
    src: url('../assets/fonts/FuturaPT-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'FuturaPT Book';
    src: url('../assets/fonts/FuturaPT-Book.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    outline: 0;
    border: none;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'FuturaPT Book';
}

:root {
    --h1-height: 25pt;
    --h2-height: 17pt;
    --h3-height: 13pt;
    --h4-height: 10pt;
    --first-color: #E7CA93;
    --second-color: #D5BFA3;
    --three-color: #301F17;
    --four-color: #FFFFFF;
    --five-color: #D8D7D5;
    --poppins-font: 'Poppins', sans-serif;
    --futurapt-bold: 'FuturaPT Bold', sans-serif;
    --futurapt-light: 'FuturaPT Light', sans-serif;
    --futurapt-book: 'FuturaPT Book', sans-serif;
    --extra-bold: 800;
    --white: #ffffff;
    --bg: #f5f5f5;
}

/* ol,
ul {
    padding-left: 0px !important;
    margin-bottom: 0px !important;
} */

dl,
ol,
ul {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

body {
    line-height: 1.6;
    min-height: 100vh;
    margin: 0;
    zoom: 100%;
}

body::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

body::-webkit-scrollbar-track {
    background: #2A2442;
}

body::-webkit-scrollbar-thumb {
    background-color: #FFF;
    border-radius: 20px;
}

/*Deshabilitar scroll*/
body.no-scroll {
    overflow: hidden;
}

main {
    width: 100%;
    height: 100%;
    background-color: #FFF;
}

/*Menu General*/
header {
    transition: top 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
    background-color: #006699;
    position: relative;
}

header .container {
    width: 90%;
    max-width: 1920px;
    margin: 0 auto;
}

header .container .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: transparent;
    font-size: 15px;
    padding: 20px 10px;
}

header .container .navbar .logo {
    flex: 0.2;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

header .container .navbar .logo img {
    height: 60px;
    border-radius: inherit;
    object-position: center;
    object-fit: scale-down;
    image-rendering: auto;
    box-sizing: border-box;
}

/*Links*/
header .container .navbar .nav-list {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

header .container .navbar .nav-list .nav-item {
    padding-left: 40px;
}

header .container .navbar .nav-list .nav-item a {
    color: #FFF;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
}

header .container .navbar .nav-list .nav-item a:hover {
    color: #CCCC66;
}

header .container .navbar .nav-list .nav-item a.active {
    color: #CCCC66;
}

/*Social*/
header .container .navbar .social {
    display: flex;
    justify-content: center;
    align-items: center;
}

header .container .navbar .social .nav-item-r {
    padding-left: 15px;
}

header .container .navbar .social .nav-item-r a {
    color: #FFF;
}

header .container .navbar .social .nav-item-r:hover {
    opacity: 0.8;
    transform: scale(1.08);
    color: #CCCC66;
}

/*Menu hamburguesa*/
header .container .navbar .hamburger-menu {
    display: none;
}

/*Menu movil*/
header .container .mobile-menu {
    display: none;
    position: fixed;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #006699;
    z-index: 1002;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease-in-out;
    transform: translateY(-100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

header .container .mobile-menu .header-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header .container .mobile-menu .header-mobile .logo {
    position: absolute;
    left: 10px;
    top: 20px;
}

header .container .mobile-menu .header-mobile .logo img {
    width: 80px;
    border-radius: inherit;
    object-position: center;
    object-fit: scale-down;
    image-rendering: auto;
    box-sizing: border-box;
}

header .container .mobile-menu .header-mobile i#close-menu-mobile {
    font-size: 1.7rem;
    cursor: pointer;
    position: absolute;
    top: 30px;
    right: 30px;
    color: #FFF;
}

header .container .mobile-menu .mobile-list-link {
    font-size: 26px;
    font-weight: 500;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: auto 0;
}

header .container .mobile-menu .mobile-list-link a {
    color: #FFF;
    margin: 5px 0;
    text-decoration: none;
}

header .container .mobile-menu .mobile-list-link a:hover {
    color: #CCCC66;
}

header .container .mobile-menu .mobile-list-link .active {
    color: #CCCC66;
}

header .container .mobile-menu .additional-sections {
    width: 100%;
}

header .container .mobile-menu .additional-sections .social-links {
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid #FFF;
    padding: 10px 0;
}

header .container .mobile-menu .additional-sections .social-links a {
    font-size: 16px;
    font-weight: 500;
    color: #FFF;
    text-decoration: none;
}

/*Banner home*/
.principal-home {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    width: 100%;
    /* background-image: url("../assets/images/background_home.png"); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 5%;
    box-sizing: border-box;
}

.principal-home .content {
    position: relative;
    z-index: 2;
    color: #FFF;
    max-width: 650px;
}

.principal-home .content .title {
    font-size: 48px;
    line-height: 1.0;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--futurapt-bold);
    font-style: italic;
}

.principal-home .content .description {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 30px;
}

.principal-home .content .btn-banner {
    width: 250px;
    display: inline-block;
    background-color: #CCCC66;
    color: #006699;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.principal-home .btn-banner:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/*Line section*/
.line-section {
    display: flex;
    justify-content: space-around;
    background-color: #CCCC66;
    padding: 40px 20px;
    align-items: center;
}

.line-section .line-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.line-section .line-item img {
    width: 30px;
    height: auto;
    object-fit: cover;
    object-position: center;
    padding-right: 10px;
}

.line-section .line-item .link {
    font-size: 14px;
    font-weight: bold;
    color: #FFF;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.line-section .line-item .link:hover {
    text-decoration: underline;
}

/*Home section 1*/
.home-section1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1920px;
    margin: 0 auto;
    background-image: url(../assets/images/background_home_s1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-sizing: border-box;
    padding: 50px 40px 50px 40px;
}

.home-section1 .headers {
    width: 80%;
    display: flex;
    padding: 0 40px;
    flex-direction: column;
    align-items: center;
}

.home-section1 .headers .title,
.home-section1 .headers .title span,
.home-section1 .headers .title div {
    font-size: 36px;
    line-height: 1.2;
    font-weight: bold;
    color: #006699;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-align: center;
    font-family: var(--futurapt-bold);
    font-style: italic;
}

.home-section1 .headers .title b {
    font-weight: 700;
    font-family: var(--futurapt-bold);
}

/* .home-section1 .headers .title .color {
    color: #CCCC66;
    font-family: var(--futurapt-bold);
} */

.home-section1 .headers .description {
    margin-bottom: 30px;
}

.home-section1 .headers .description,
.home-section1 .headers .description span,
.home-section1 .headers .description div {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: #606060;
    text-align: center;
}

.home-section1 .headers .description b {
    font-weight: 700;
}

.home-section1 .wtp {
    max-width: 1248px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.home-section1 .wtp .elements {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #006699;
    border-radius: 12px;
    padding: 20px;
    width: 260px;
    height: 320px;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease-in-out;
    justify-content: center;
}

.home-section1 .wtp .elements:hover {
    transform: translateY(-5px);
}

.home-section1 .wtp .elements img.figure {
    width: 180px;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.home-section1 .wtp .elements .subtitle {
    font-size: 16px;
    line-height: 1.2;
    font-weight: bold;
    color: #FFF;
    font-style: italic;
}

.home-section1 .btn-view {
    width: 250px;
    display: inline-block;
    background-color: #CCCC66;
    color: #006699;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.home-section1 .btn-view:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/*Home clients*/
.clients {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #FFF;
    padding: 50px 40px 50px 40px;
}

.clients .headers {
    width: 80%;
    display: flex;
    padding: 0 40px;
    flex-direction: column;
}

.clients .headers .title,
.clients .headers .title span,
.clients .headers .title div {
    font-size: 36px;
    line-height: 1.2;
    font-weight: bold;
    color: #006699;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-align: center;
    font-family: var(--futurapt-bold);
    font-style: italic;
}

.clients .headers .title b {
    font-weight: 700;
    font-family: var(--futurapt-bold);
}

/* .clients .headers .title .color {
    color: #CCCC66;
    font-family: var(--futurapt-bold);
} */

.clients .client-logos {
    max-width: 1248px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.clients .client-logos .logo-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 40px;
}

.clients .client-logos .logo-track::-webkit-scrollbar {
    height: 6px;
    width: 0px;
}

.clients .client-logos .logo-track::-webkit-scrollbar-thumb {
    background-color: #006699;
    border-radius: 4px;
}

.clients .client-logos .logo-track img {
    flex: 0 0 auto;
    width: 120px;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease-in-out;
}

/* .clients .client-logos .logo-track img:hover {
    transform: scale(1.05);
} */

/*Home section 2*/
.home-section2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #FFF;
    padding: 50px 0px 50px 40px;
}

.home-section2 .title,
.home-section2 .title span,
.home-section2 .title div {
    font-size: 36px;
    line-height: 1.2;
    font-weight: bold;
    color: #006699;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-align: center;
    font-family: var(--futurapt-bold);
    font-style: italic;
}

.home-section2 .title b {
    font-weight: 700;
    font-family: var(--futurapt-bold);
}

/* .home-section2 .title .color {
    color: #CCCC66;
    font-family: var(--futurapt-bold);
} */

.home-section2 .content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    background-color: #F2F2F2;
}

.home-section2 .content .ct-txt {
    width: 50%;
    display: flex;
    flex-direction: column;
}

/* .home-section2 .content .ct-txt .subtitle {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    color: #606060;
    margin-bottom: 5px;
} */

.home-section2 .content .ct-txt .description,
.home-section2 .content .ct-txt .description span,
.home-section2 .content .ct-txt .description div {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: #606060;
}

.home-section2 .content .ct-txt .description b {
    font-weight: 700;
}

.home-section2 .content .ct-txt .description ul,
.home-section2 .content .ct-txt .description ol {
    all: unset;
    display: block;
    margin: 0;
    padding-left: 0;
}

.home-section2 .content .ct-txt .description ul li,
.home-section2 .content .ct-txt .description ol li {
    all: unset;
    display: block;
    position: relative;
    padding-left: 1.2em;
    font-size: 16px;
}

/*Personalización de viñetas*/
.home-section2 .content .ct-txt .description ul li::before {
    content: "•";
    position: absolute;
    left: 0;
}

/*Personalización de números*/
.home-section2 .content .ct-txt .description ol {
    counter-reset: custom-counter;
}

.home-section2 .content .ct-txt .description ol li::before {
    counter-increment: custom-counter;
    content: counter(custom-counter) ".";
    position: absolute;
    left: 0;
}

/* .home-section2 .content .ct-txt .benefit {
    margin-bottom: 10px;
}

.home-section2 .content .ct-txt .benefit .list {
    all: unset;
    display: block;
    padding-left: 20px !important;
    padding-top: 10px !important;
    padding-bottom: 20px !important;
    list-style-type: disc !important;
    list-style-position: inside;
}

.home-section2 .content .ct-txt .benefit .list li {
    all: unset;
    display: list-item !important;
    list-style-type: disc !important;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    color: #606060;
}

.home-section2 .content .ct-txt .benefit .list .description {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: #606060;
} */

.home-section2 .content .ct-image {
    width: 50%;
    min-height: 400px;
    /* background-image: url(../assets/images/image1.png); */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-section2 .content .ct-image .btn-start {
    width: 250px;
    display: inline-block;
    background-color: #CCCC66;
    color: #006699;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.home-section2 .content .ct-image .btn-start:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/*Inicio form*/
.home-form {
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #FFF;
    color: #000;
    padding: 50px 40px 50px 40px;
}

.home-form .form-info {
    max-width: 1000px;
    width: 100%;
}

.home-form .form-info h2 {
    font-size: 36px;
    line-height: 1.2;
    font-weight: bold;
    color: #006699;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-family: var(--futurapt-bold);
    font-style: italic;
}

.home-form .form-info h2 .color {
    color: #CCCC66;
    font-family: var(--futurapt-bold);
}

.home-form .form-info .subtitle {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 600;
    color: #606060;
    margin-bottom: 30px;
}

.home-form form {
    max-width: 1248px;
    width: 100%;
}

.home-form form .input-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.home-form form .input-container input {
    font-size: 16px;
    width: 49%;
    padding: 10px 10px;
    border: none;
    background-color: #EAEAEA;
    border-radius: 6px;
}

.home-form form .input-box textarea {
    font-size: 14px;
    width: 100%;
    padding: 10px 10px;
    border: none;
    resize: none;
    background-color: #EAEAEA;
    border-radius: 6px;
}

.home-form form .validation-message {
    color: red;
    font-size: 14px;
    text-align: left;
    margin-bottom: 10px;
    display: block;
}

.home-form form .submint_save {
    margin-top: 10px;
    width: 250px;
    display: inline-block;
    background-color: #CCCC66;
    color: #006699;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.home-form form .submint_save:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/*Maps*/
.maps {
    width: 100%;
    max-width: 1920px;
    display: flex;
    flex-wrap: wrap;
    background-color: #FFF;
    color: #000;
    padding: 0px;
    justify-content: center;
}

.maps iframe {
    border: 0;
}

/*Banner aboutus*/
.principal-aboutus {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* background-image: url("../assets/images/background_aboutus.png"); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 50vh;
    width: 100%;
    position: relative;
}

.principal-aboutus .content {
    position: relative;
    z-index: 2;
    margin-left: 5%;
    max-width: 600px;
}

.principal-aboutus .content .title {
    font-size: 62px;
    line-height: 1.0;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--futurapt-bold);
    font-style: italic;
    color: #FFF;
}

/*Aboutus partners*/
.partners {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #FFF;
    padding: 50px 40px 50px 40px;
}

.partners .headers {
    width: 80%;
}

.partners .headers .title,
.partners .headers .title span,
.partners .headers .title div {
    font-size: 36px;
    line-height: 1.2;
    font-weight: bold;
    color: #006699;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-align: center;
    font-family: var(--futurapt-bold);
    font-style: italic;
}

.partners .headers .title b {
    font-weight: 700;
    font-family: var(--futurapt-bold);
}

/* .partners .title .color {
    color: #CCCC66;
    font-family: var(--futurapt-bold);
} */

.partners .partner-logos {
    max-width: 1248px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.partners .partner-logos .logo-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 40px;
}

.partners .partner-logos .logo-track::-webkit-scrollbar {
    height: 6px;
    width: 0px;
}

.partners .partner-logos .logo-track::-webkit-scrollbar-thumb {
    background-color: #006699;
    border-radius: 4px;
}

.partners .partner-logos .logo-track img {
    flex: 0 0 auto;
    width: 120px;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease-in-out;
}

/* .partners .partner-logos .logo-track img:hover {
    transform: scale(1.05);
} */

/*Aboutus section1*/
.aboutus-section1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #F1F1F1;
    padding: 50px 40px 50px 40px;
}

.aboutus-section1 .title,
.aboutus-section1 .title span,
.aboutus-section1 .title div {
    font-size: 36px;
    line-height: 1.2;
    font-weight: bold;
    color: #006699;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-align: center;
    font-family: var(--futurapt-bold);
    font-style: italic;
}

.aboutus-section1 .title b {
    font-weight: 700;
    font-family: var(--futurapt-bold);
}

/* .aboutus-section1 .title .color {
    color: #CCCC66;
    font-family: var(--futurapt-bold);
} */

.aboutus-section1 .description {
    width: 80%;
    margin-bottom: 30px;
}

.aboutus-section1 .description,
.aboutus-section1 .description span,
.aboutus-section1 .description div {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: #606060;
    text-align: center;
}

.aboutus-section1 .description b {
    font-weight: 700;
}

/*Text slide aboutus*/
.text-slide-aboutus {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #FFF;
    padding: 50px 20px 0px 20px;
}

.text-slide-aboutus .title,
.text-slide-aboutus .title span,
.text-slide-aboutus .title div {
    font-size: 36px;
    line-height: 1.2;
    font-weight: bold;
    color: #006699;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-align: center;
    font-family: var(--futurapt-bold);
    font-style: italic;
}

.text-slide-aboutus .title b {
    font-weight: 700;
    font-family: var(--futurapt-bold);
}

/* .text-slide-aboutus .title .color {
    color: #CCCC66;
    font-family: var(--futurapt-bold);
} */

/*Slide aboutus*/
.slide-aboutus {
    width: 100%;
    overflow: hidden;
    background-color: #FFF;
    padding: 0px 20px 20px 20px;
    text-align: center;
}

.slide-aboutus .mySwiperCustom {
    overflow: visible;
}

.slide-aboutus .swiper-wrapper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.slide-aboutus .swiper-wrapper .swiper-slide .slide-content {
    width: 100%;
    max-width: 80%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    background-color: #EDEDED;
    gap: 10px;
    padding: 20px 20px;
    box-sizing: border-box;
    border-radius: 12px;
}

.slide-aboutus .swiper-wrapper .swiper-slide .slide-content .icono-slide {
    width: 220px;
    height: auto;
    object-fit: cover;
    object-position: center center;
}

.slide-aboutus .swiper-wrapper .swiper-slide .slide-content .text-content {
    text-align: left;
}

.slide-aboutus .swiper-wrapper .swiper-slide .slide-content .text-content .description {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    margin: 5px 0 0;
    color: #606060;
}

.slide-aboutus .swiper-button-next,
.slide-aboutus .swiper-button-prev {
    width: 0;
    height: 0;
    background: none;
    border: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

/*Triángulo izquierdo*/
.slide-aboutus .swiper-button-prev {
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 20px solid #606060;
    left: 50px;
}

/*Triángulo derecho*/
.slide-aboutus .swiper-button-next {
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid #606060;
    right: 50px;
}

/*Oculta el contenido generado por Swiper*/
.slide-aboutus .swiper-button-prev::after,
.slide-aboutus .swiper-button-next::after {
    display: none;
}

/*laterales*/
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
    background: #EDEDED !important;
    border-radius: 12px;
}

.slide-aboutus .swiper-pagination {
    position: static;
    display: block;
}

.slide-aboutus .swiper-pagination-bullet {
    background-color: #998066;
}

.slide-aboutus .swiper-pagination-bullet-active {
    background-color: #7F7F7F;
}

/*Aboutus section2*/
.aboutus-section2 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #F1F1F1;
}

.aboutus-section2 .content {
    width: 80%;
    padding: 50px 40px 0px 40px;
}

.aboutus-section2 .content .title,
.aboutus-section2 .content .title span,
.aboutus-section2 .content .title div {
    font-size: 36px;
    line-height: 1.2;
    font-weight: bold;
    color: #006699;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-align: center;
    font-family: var(--futurapt-bold);
    font-style: italic;
}

.aboutus-section2 .content .title b {
    font-weight: 700;
    font-family: var(--futurapt-bold);
}

/* .aboutus-section2 .content .title .color {
    color: #CCCC66;
    font-family: var(--futurapt-bold);
} */

.aboutus-section2 .content .description {
    margin-bottom: 20px;
}

.aboutus-section2 .content .description,
.aboutus-section2 .content .description span,
.aboutus-section2 .content .description div {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: #606060;
    text-align: center;
}

.aboutus-section2 .content .description b {
    font-weight: 700;
}

.aboutus-section2 .content .subtitle {
    font-size: 18px;
    line-height: 1.2;
    font-weight: bold;
    color: #546880;
    margin-bottom: 20px;
    text-align: center;
}

.aboutus-section2 .abt-image {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* background-image: url(../assets/images/image2.png); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 450px;
    position: relative;
}

/*Banner services*/
.principal-services {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* background-image: url("../assets/images/background_services.png"); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 50vh;
    width: 100%;
    position: relative;
}

.principal-services .content {
    position: relative;
    z-index: 2;
    margin-left: 5%;
    max-width: 100%;
}

.principal-services .content .title {
    font-size: 62px;
    line-height: 1.0;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: var(--futurapt-bold);
    font-style: italic;
    color: #FFF;
}

/*Services section 1*/
.services-section1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #F2F2F2;
    padding: 50px 40px 50px 40px;
}

.services-section1 .headers {
    width: 80%;
    display: flex;
    padding: 0 40px;
    flex-direction: column;
    align-items: center;
}

.services-section1 .headers .title,
.services-section1 .headers .title span,
.services-section1 .headers .title div {
    font-size: 36px;
    line-height: 1.2;
    font-weight: bold;
    color: #006699;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-align: center;
    font-family: var(--futurapt-bold);
    font-style: italic;
}

.services-section1 .headers .title b {
    font-weight: 700;
    font-family: var(--futurapt-bold);
}

/* .services-section1 .headers .title .color {
    color: #CCCC66;
    font-family: var(--futurapt-bold);
} */

.services-section1 .headers .subtitle {
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    color: #606060;
    text-align: center;
    font-family: var(--futurapt-bold);
    letter-spacing: 1.5px;
}

.services-section1 .headers .description {
    margin-bottom: 30px;
}

.services-section1 .headers .description,
.services-section1 .headers .description span,
.services-section1 .headers .description div {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: #606060;
    text-align: center;
}

.services-section1 .headers .description b {
    font-weight: 700;
}

.services-section1 .wtp {
    max-width: 1248px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.services-section1 .wtp .elements {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #006699;
    border-radius: 12px;
    padding: 20px;
    width: 260px;
    height: 320px;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease-in-out;
    justify-content: center;
}

.services-section1 .wtp .elements:hover {
    transform: translateY(-5px);
}

.services-section1 .wtp .elements img.figure {
    width: 180px;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.services-section1 .wtp .elements .subtitle {
    font-size: 16px;
    line-height: 1.2;
    font-weight: bold;
    color: #FFF;
    font-style: italic;
}

.services-section1 .btn-view {
    width: 250px;
    display: inline-block;
    background-color: #CCCC66;
    color: #006699;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.services-section1 .btn-view:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/*Services map*/
.service-map {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #FFFFFF;
}

.service-map .content {
    width: 80%;
    padding: 50px 40px 0px 40px;
}

.service-map .content .title {
    font-size: 36px;
    line-height: 1.2;
    font-weight: bold;
    color: #006699;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-align: center;
    font-family: var(--futurapt-bold);
    font-style: italic;
}

.service-map .content .title .color {
    color: #CCCC66;
    font-family: var(--futurapt-bold);
}

.service-map .smp-image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.service-map .smp-image-wrapper .map-container {
    overflow: hidden;
    position: relative;
}

.service-map .smp-image-wrapper .map-container iframe {
    border: 0;
    transform: translateY(-80px);
    pointer-events: none;
}

/* .service-map .smp-image-wrapper .smp-image {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
}

.service-map .smp-image-wrapper .smp-image::-webkit-scrollbar {
    display: none;
}

.service-map .smp-image-wrapper .smp-image img {
    width: 100%;
    height: auto;
    display: block;
} */

/*scrollbar personalizada superpuesta*/
/* .service-map .smp-image-wrapper .custom-scrollbar {
    position: absolute;
    top: 10px;
    bottom: 10px;
    right: 10px;
    width: 10px;
    background: #FFF;
    border-radius: 4px;
    overflow: hidden;
}

.service-map .smp-image-wrapper .custom-scrollbar .custom-thumb {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #006699;
    border-radius: 4px;
} */

.service-map .btn-contact {
    margin-top: 20px;
    width: 250px;
    display: inline-block;
    background-color: #CCCC66;
    color: #006699;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.service-map .btn-contact:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/*Banner products*/
.principal-products {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* background-image: url("../assets/images/background_products.png"); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 50vh;
    width: 100%;
    position: relative;
}

.principal-products .content {
    position: relative;
    z-index: 2;
    margin-left: 5%;
    max-width: 100%;
}

.principal-products .content .title {
    font-size: 62px;
    line-height: 1.0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: var(--futurapt-bold);
    font-style: italic;
    color: #FFF;
}

/*Products section 1*/
.product-section1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #F1F1F1;
    padding: 50px 40px 50px 40px;
}

.product-section1 .title,
.product-section1 .title span,
.product-section1 .title div {
    font-size: 36px;
    line-height: 1.2;
    font-weight: bold;
    color: #006699;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-align: center;
    font-family: var(--futurapt-bold);
    font-style: italic;
}

.product-section1 .title b {
    font-weight: 700;
    font-family: var(--futurapt-bold);
}

/* .product-section1 .title .color {
    color: #CCCC66;
    font-family: var(--futurapt-bold);
} */

.product-section1 .description {
    width: 80%;
    /* margin-bottom: 30px; */
}

.product-section1 .description,
.product-section1 .description span,
.product-section1 .description div {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: #606060;
    text-align: center;
}

.product-section1 .description b {
    font-weight: 700;
}

/*Products line section*/
.pt-line-section {
    display: flex;
    justify-content: center;
    background-color: #006699;
    padding: 40px 40px;
    align-items: center;
}

.pt-line-section .description,
.pt-line-section .description span,
.pt-line-section .description div {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
}

.pt-line-section .description b {
    font-weight: 700;
}

/*Products boxes*/
.products-boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1920px;
    margin: 0 auto;
    padding: 50px 40px;
    background-color: #FFF;
}

.products-boxes .box {
    max-width: 1248px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.products-boxes .box .elements {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #006699;
    border-radius: 18px;
    padding: 4px;
    width: 260px;
    height: auto;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease-in-out;
}

.products-boxes .box .elements:hover {
    transform: translateY(-5px);
}

.products-boxes .box .elements img {
    max-width: 100%;
    height: fit-content;
    object-fit: cover;
    object-position: center;
    margin-bottom: 10px;
}

.products-boxes .box .elements .title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: bold;
    color: #FFF;
    font-style: italic;
    font-family: var(--futurapt-light);
    letter-spacing: 2px;
}

.products-boxes .box .elements .description {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: #FFF;
    margin-bottom: 30px;
    text-align: center;
}

.products-boxes .btn-request {
    width: 250px;
    display: inline-block;
    background-color: #CCCC66;
    color: #006699;
    padding: 12px 30px;
    font-weight: bold;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    margin-bottom: 30px;
}

.products-boxes .btn-request:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

.products-boxes .text {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: #606060;
    text-align: center;
}

/*Banner contact*/
.principal-contact {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /* background-image: url("../assets/images/background_contact.png"); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 50vh;
    width: 100%;
    position: relative;
}

.principal-contact .content {
    position: relative;
    z-index: 2;
    margin-left: 5%;
    max-width: 100%;
}

.principal-contact .content .title {
    font-size: 62px;
    line-height: 1.0;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-family: var(--futurapt-bold);
    font-style: italic;
    color: #FFF;
}

/*Contact section 1*/
.contact-section1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    max-width: 1920px;
    margin: 0 auto;
    background-color: #F2F2F2;
    padding: 50px 40px 50px 40px;
}

.contact-section1 .headers {
    width: 80%;
    margin-bottom: 30px;
}

.contact-section1 .headers .title,
.contact-section1 .headers .title span,
.contact-section1 .headers .title div {
    font-size: 36px;
    line-height: 1.2;
    font-weight: bold;
    color: #006699;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-align: center;
    font-family: var(--futurapt-bold);
    font-style: italic;
}

.contact-section1 .headers .title b {
    font-weight: 700;
    font-family: var(--futurapt-bold);
}

/* .contact-section1 .headers .title .color {
    color: #CCCC66;
    font-family: var(--futurapt-bold);
} */

.contact-section1 .headers .description,
.contact-section1 .headers .description span,
.contact-section1 .headers .description div {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: #606060;
    text-align: center;
}

.contact-section1 .headers .description b {
    font-weight: 700;
}

.contact-section1 .element-box {
    max-width: 1248px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-section1 .element-box .box-card {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    background-color: #006699;
    border-radius: 18px;
    width: 260px;
    height: 250px;
    gap: 10px;
    text-align: center;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease-in-out;
}

.contact-section1 .element-box .box-card:hover {
    transform: translateY(-5px);
}

.contact-section1 .element-box .box-card .numbers,
.contact-section1 .element-box .box-card .numbers span,
.contact-section1 .element-box .box-card .numbers div {
    font-size: 72px;
    line-height: 1.0;
    font-weight: bold;
    color: #FFF;
    font-family: var(--futurapt-bold);
    font-style: italic;
}

.contact-section1 .element-box .box-card .numbers b {
    font-weight: 700;
    font-family: var(--futurapt-bold);
}

.contact-section1 .element-box .box-card .subtitle,
.contact-section1 .element-box .box-card .subtitle span,
.contact-section1 .element-box .box-card .subtitle div {
    font-size: 22px;
    line-height: 1.0;
    font-weight: 400;
    color: #FFF;
    font-style: italic;
    font-family: var(--futurapt-bold);
    letter-spacing: 1px;
}

.contact-section1 .element-box .box-card .subtitle b {
    font-weight: 700;
    font-family: var(--futurapt-bold);
}

/* .contact-section1 .element-box .box-card .highlight-white {
    color: #FFF;
    font-weight: bold;
    font-family: var(--futurapt-bold);
}

.contact-section1 .element-box .box-card .highlight-yellow {
    color: #CCCC66;
    font-weight: bold;
    margin-left: 0px;
    font-family: var(--futurapt-bold);
} */

/*Privacy text titular*/
.containter-title-privacy {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 2rem 4rem;
    background-color: #CCCC66;
    color: #FFF;
}

.containter-title-privacy .title {
    font-size: 62px;
    line-height: 1.0;
    margin: 0 auto;
    font-weight: bold;
    text-transform: uppercase;
    font-family: var(--futurapt-bold);
    font-style: italic;
    z-index: 2;
    position: relative;
}

/*Aviso de privacidad*/
.privacy {
    max-width: 100%;
    margin: 80px 40px;
    overflow: hidden;
    height: auto;
}

.privacy .privacy_container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.privacy .privacy_container .privacy_items {
    width: 90%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-direction: column;
}

.privacy .privacy_container .privacy_items .privacy_item .privacy_title_one {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    padding-bottom: 20px;
    margin-bottom: 0px;
    font-family: var(--futurapt-bold);
    color: #606060;
    letter-spacing: 0.9px;
}

.privacy .privacy_container .privacy_items .privacy_item .privacy_title,
.privacy .privacy_container .privacy_items .privacy_item .privacy_title_only {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    padding: 10px 0px 20px 0px;
    margin-bottom: 0px;
    font-family: var(--futurapt-bold);
    color: #606060;
    letter-spacing: 0.9px;
}

.privacy .privacy_container .privacy_items .privacy_item .privacy_title_only {
    padding: 0px 0px 10px 0px;
}

.privacy .privacy_container .privacy_items .privacy_item .privacy_title span,
.privacy .privacy_container .privacy_items .privacy_item .privacy_title_only span {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: normal;
}

.privacy .privacy_container .privacy_items .privacy_item .privacy_description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #606060;
}

.privacy .privacy_container .privacy_items .privacy_item .privacy_description a {
    display: flex;
    align-items: center;
    color: #606060;
    text-decoration: none;
}

.privacy .privacy_container .privacy_items .privacy_item .privacy_description a:hover span {
    text-decoration: underline;
    color: #212529;
}

.privacy .privacy_container .privacy_items .privacy_item .privacy_description a i {
    min-width: 20px;
    border-radius: 6px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #606060;
    text-decoration: none;
}

/* .privacy .privacy_container .privacy_items .privacy_item .privacy_description_pie {
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    color: #5f5e5c;
    font-style: italic;
}

.privacy .privacy_container .privacy_items .privacy_item .info-list {
    all: unset;
    display: block;
    padding-left: 20px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.privacy .privacy_container .privacy_items .privacy_item .info-list li {
    all: unset;
    display: list-item !important;
    list-style-type: disc !important;
    color: #212529;
    font-size: 15px;
    font-weight: 300;
    line-height: 18px;
    margin-left: 20px;
} */

/*Questions text titular*/
.containter-title-questions {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 2rem 4rem;
    background-color: #CCCC66;
    color: #FFF;
}

.containter-title-questions .title {
    font-size: 62px;
    line-height: 1.0;
    margin: 0 auto;
    font-weight: bold;
    text-transform: uppercase;
    font-family: var(--futurapt-bold);
    font-style: italic;
    z-index: 2;
    position: relative;
}

/*Questions full*/
.questions {
    max-width: 100%;
    margin: 40px 40px;
    overflow: hidden;
    height: auto;
}

.questions .questions_container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.questions .questions_container .questions_content_full {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.questions .questions_container .questions_content_full .custom-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #A9A8A4;
    border-radius: 0;
    background-color: transparent;
}

.questions .questions_container .questions_content_full .custom-accordion .accordion-button {
    background-color: #FFFFFF;
}

.questions .questions_container .questions_content_full .custom-accordion .accordion-button::after {
    content: '';
    background-image: none !important;
    transform: rotate(0deg);
}

.questions .questions_container .questions_content_full .custom-accordion .accordion-button:not(.collapsed) {
    color: #111111;
}

.questions .questions_container .questions_content_full .custom-accordion .accordion-button.collapsed::after {
    content: '▼';
    font-size: 0.9rem;
    font-weight: 300;
    color: #CCCC66;
    margin-left: auto;
}

.questions .questions_container .questions_content_full .custom-accordion .accordion-button:not(.collapsed)::after {
    content: '▲';
    font-size: 0.9rem;
    font-weight: 300;
    color: #006699;
    margin-left: auto;
}

.questions .questions_container .questions_content_full .custom-accordion .accordion-item:first-of-type .accordion-button {
    border-top: 1px solid #A9A8A4;
}

.questions .questions_container .questions_content_full .custom-accordion .accordion-item .accordion-button {
    font-size: 22px;
    font-weight: 400;
    line-height: 22.8px;
    font-family: var(--futurapt-bold);
    /* text-transform: uppercase; */
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
    color: #606060;
    letter-spacing: 1px;
}

.questions .questions_container .questions_content_full .custom-accordion .accordion-body {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    font-family: var(--futurapt-book);
    color: #606060;
    border-bottom: 1px solid #A9A8A4;
}

.questions .questions_container .questions_content_full .custom-accordion .accordion-item .accordion-button:focus {
    z-index: 1;
    border-color: #A9A8A4;
    outline: 0;
    box-shadow: none;
}

/*Team text titular*/
.containter-title-team {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 2rem 4rem;
    background-color: #CCCC66;
    color: #FFF;
}

.containter-title-team .title {
    font-size: 62px;
    line-height: 1.0;
    margin: 0 auto;
    font-weight: bold;
    text-transform: uppercase;
    font-family: var(--futurapt-bold);
    font-style: italic;
    z-index: 2;
    position: relative;
}

/*Join team*/
.team {
    max-width: 100%;
    margin: 80px 40px;
    overflow: hidden;
    height: auto;
}

.team .team_container {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.team .team_container .team_items {
    width: 90%;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-direction: column;
}

.team .team_container .team_items .team_item .team_title_one {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
    padding-bottom: 20px;
    margin-bottom: 0px;
    font-family: var(--futurapt-bold);
    color: #606060;
    letter-spacing: 0.9px;
}

.team .team_container .team_items .team_item .team_title,
.team .team_container .team_items .team_item .team_title_only {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    padding: 10px 0px 20px 0px;
    margin-bottom: 0px;
    font-family: var(--futurapt-bold);
    color: #606060;
    letter-spacing: 0.9px;
}

.team .team_container .team_items .team_item .team_title_only {
    padding: 0px 0px 10px 0px;
}

.team .team_container .team_items .team_item .team_title span,
.team .team_container .team_items .team_item .team_title_only span {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: normal;
}

.team .team_container .team_items .team_item .team_description {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
    color: #606060;
}

.team .team_container .team_items .team_item .team_description a {
    display: flex;
    align-items: center;
    color: #606060;
    text-decoration: none;
}

.team .team_container .team_items .team_item .team_description a:hover span {
    text-decoration: underline;
    color: #212529;
}

.team .team_container .team_items .team_item .team_description a i {
    min-width: 20px;
    border-radius: 6px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #606060;
    text-decoration: none;
}

/* .team .team_container .team_items .team_item .team_description_pie {
    font-size: 12px;
    font-weight: 300;
    line-height: 18px;
    color: #5f5e5c;
    font-style: italic;
}

.team .team_container .team_items .team_item .info-list {
    all: unset;
    display: block;
    padding-left: 20px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.team .team_container .team_items .team_item .info-list li {
    all: unset;
    display: list-item !important;
    list-style-type: disc !important;
    color: #212529;
    font-size: 15px;
    font-weight: 300;
    line-height: 18px;
    margin-left: 20px;
} */

/*Footer*/
footer {
    width: 100%;
    background-color: #006699;
}

footer .footer-desk {
    max-width: 1920px;
    margin: 0 auto;
}

footer .footer-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 1px solid #FFF;
    padding: 3rem 4rem;
    gap: 2rem;
    flex-wrap: wrap;
}

footer .footer-container .footer-column-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 30%;
}

footer .footer-container .footer-column {
    width: 20%;
    min-width: 180px;
}

footer .footer-container .footer-column .nav_logo {
    margin-bottom: 2rem;
    display: block;
}

footer .footer-container .footer-column-logo .nav_logo img {
    width: 280px;
    height: auto;
}

footer .footer-container .footer-column-logo .nav__social-icons {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
}

footer .footer-container .footer-column-logo .nav__social-icons a {
    color: #FFF;
    text-decoration: none;
    padding-left: 1rem;
}

footer .footer-container .footer-column-logo .nav__social-icons a i:hover {
    opacity: 0.8;
    transform: scale(1.08);
}

footer .footer-container .footer-column-logo .nav__social-icons a i:active {
    transform: scale(0.96);
}

footer .footer-container .footer-column h3 {
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    font-weight: bold;
    color: #FFF;
}

footer .footer-container .footer-column a {
    color: #FFF;
    text-decoration: none;
}

footer .footer-container .footer-column a:hover {
    text-decoration: underline;
}

footer .footer-container .footer-column a p,
footer .footer-container .footer-column p {
    font-size: 16px;
    margin-bottom: 0.4rem;
    line-height: 1.4;
    color: #FFF;
}

.development {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 80px;
    padding: 2rem;
    color: #555555;
    font-size: 14px;
    background-color: #FFF;
}

.development .text {
    max-width: 1920px;
    margin: 0 auto;
}

.development .text a {
    color: #555555;
    text-decoration: none;
    cursor: pointer;
}

.development .text a:hover {
    text-decoration: underline;
}

@media only screen and (min-width: 1920px) {

    /*Banner home*/
    .principal-home {
        width: 100%;
        height: 650px;
        background-size: cover;
        background-attachment: scroll;
    }

    /*Banner aboutus*/
    .principal-aboutus {
        width: 100%;
        height: 350px;
        background-size: cover;
        background-attachment: scroll;
    }

    /*Banner services*/
    .principal-services {
        width: 100%;
        height: 350px;
        background-size: cover;
        background-attachment: scroll;
    }

    /*Banner products*/
    .principal-products {
        width: 100%;
        height: 350px;
        background-size: cover;
        background-attachment: scroll;
    }

    /*Banner contact*/
    .principal-contact {
        width: 100%;
        height: 350px;
        background-size: cover;
        background-attachment: scroll;
    }

}

/*Adaptacion pc 1248px*/
@media only screen and (min-width: 1248px) {

    .container-desk {
        max-width: 1920px;
        margin: 0 auto;
        overflow: hidden;
        height: auto;
    }

    /*Menu General*/
    header .container {
        max-width: 1920px;
        margin: 0 auto;
    }

    /*Privacy text titular*/
    .containter-title-privacy {
        width: 100%;
        height: 250px;
    }

    /*Questions text titular*/
    .containter-title-questions {
        width: 100%;
        height: 250px;
    }

    /*Team text titular*/
    .containter-title-team {
        width: 100%;
        height: 250px;
    }

}

/*Adaptacion tablets*/
@media only screen and (max-width: 1248px) {

    /*Menu General*/
    header .container {
        width: 100%;
    }

    header .container .navbar {
        padding: 20px 20px;
    }

    /*Banner home*/
    .principal-home {
        width: 100%;
        height: 650px;
    }

    .principal-home .content .title {
        font-size: 38px;
    }

    /*Home section 1*/
    .home-section1 .wtp .elements {
        width: 210px;
        height: 280px;
    }

    /*Banner aboutus*/
    .principal-aboutus {
        width: 100%;
        height: 350px;
    }

    .principal-aboutus .content .title {
        font-size: 48px;
    }

    /*Banner services*/
    .principal-services {
        width: 100%;
        height: 350px;
    }

    .principal-services .content .title {
        font-size: 48px;
    }

    /*Services section 1*/
    .services-section1 .wtp .elements {
        width: 210px;
        height: 280px;
    }

    /*Banner products*/
    .principal-products {
        width: 100%;
        height: 350px;
    }

    .principal-products .content .title {
        font-size: 48px;
    }

    /*Products boxes*/
    .products-boxes .box .elements {
        width: 210px;
        height: 280px;
    }

    /*Banner contact*/
    .principal-contact {
        width: 100%;
        height: 350px;
    }

    .principal-products .content .title {
        font-size: 48px;
    }

    /*Contact section 1*/
    .contact-section1 .element-box .box-card {
        width: 210px;
        height: 220px;
    }

    .contact-section1 .element-box .box-card .numbers,
    .contact-section1 .element-box .box-card .numbers span,
    .contact-section1 .element-box .box-card .numbers div {
        font-size: 62px;
    }

    .contact-section1 .element-box .box-card .subtitle,
    .contact-section1 .element-box .box-card .subtitle span,
    .contact-section1 .element-box .box-card .subtitle div {
        font-size: 20px;
    }

    /*Privacy text titular*/
    .containter-title-privacy {
        width: 100%;
        height: 200px;
    }

    .containter-title-privacy .title {
        font-size: 42px;
        line-height: 42px;
    }

    /*Aviso de privacidad*/
    .privacy {
        margin: 0px 40px;
    }

    .privacy .privacy_container {
        flex-direction: column;
        margin: 40px 0px;
    }

    .privacy .privacy_container .privacy_items {
        width: 100%;
    }

    .privacy .privacy_container .privacy_items .privacy_item .privacy_title {
        padding-bottom: 20px;
    }

    .privacy .privacy_container .privacy_items .privacy_item .privacy_description {
        width: 100%;
    }

    /*Questions text titular*/
    .containter-title-questions {
        width: 100%;
        height: 200px;
    }

    .containter-title-questions .title {
        font-size: 42px;
        line-height: 42px;
    }

    /*Questions full*/
    .questions {
        margin: 40px 20px;
    }

    .questions .questions_container {
        flex-direction: column;
    }

    .questions .questions_container .questions_content_full {
        width: 100%;
        padding-top: 20px;
    }

    /*Team text titular*/
    .containter-title-team {
        width: 100%;
        height: 200px;
    }

    .containter-title-team .title {
        font-size: 42px;
        line-height: 42px;
    }

    /*Join team*/
    .team {
        margin: 0px 40px;
    }

    .team .team_container {
        flex-direction: column;
        margin: 40px 0px;
    }

    .team .team_container .team_items {
        width: 100%;
    }

    .team .team_container .team_items .team_item .team_title {
        padding-bottom: 20px;
    }

    .team .team_container .team_items .team_item .team_description {
        width: 100%;
    }

    /*Footer*/
    footer .footer-container .footer-column-logo .nav_logo img {
        width: 200px;
    }

}

@media only screen and (min-width: 1200px) and (max-width: 1399.98px) {}

@media only screen and (max-width: 998px) {

    /*Menu General*/
    header .container .navbar .logo img {
        height: 50px;
    }

    header .container .navbar .nav-list .nav-item {
        padding-left: 20px;
    }

    /*Banner home*/
    .principal-home .content .title {
        font-size: 28px;
    }

    /*Home section 1*/
    .home-section1 .wtp .elements {
        width: 40%;
        height: 280px;
    }

    /*Line section*/
    .line-section {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        padding: 40px 0px;
    }

    .line-section .line-item {
        flex: 1 1 250px;
        max-width: 300px;
    }

    .line-section .line-item .link {
        font-size: 12px;
    }

    /*Home section 2*/
    .home-section2 {
        padding: 50px 0px 50px 0px;
    }

    .home-section2 .title br,
    .home-section2 .title span br,
    .home-section2 .title div br {
        display: none;
    }

    .home-section2 .title div {
        display: inline;
    }

    .home-section2 .content {
        flex-direction: column;
    }

    .home-section2 .content .ct-txt {
        width: 100%;
        padding: 10px 20px 0px 20px;
    }

    .home-section2 .content .ct-txt .description br,
    .home-section2 .content .ct-txt .description span br,
    .home-section2 .content .ct-txt .description div br {
        display: none;
    }

    .home-section2 .content .ct-txt .description div {
        display: inline;
    }

    .home-section2 .content .ct-image {
        width: 100%;
        background-size: 140%;
    }

    /*Banner aboutus*/
    .principal-aboutus .content .title {
        font-size: 38px;
    }

    /*Slide aboutus*/
    .slide-aboutus {
        padding: 0px;
    }

    .slide-aboutus .swiper-wrapper .swiper-slide .slide-content {
        max-width: 85%;
    }

    .slide-aboutus .swiper-wrapper .swiper-slide .slide-content .icono-slide {
        width: 180px;
    }

    .slide-aboutus .swiper-button-next {
        right: 25px;
    }

    .slide-aboutus .swiper-button-prev {
        left: 25px;
    }

    .slide-aboutus .swiper-wrapper .swiper-slide .slide-content .text-content .description br {
        display: none;
    }

    /*Aboutus section2*/
    .aboutus-section2 .content {
        width: 90%;
        padding: 50px 20px 0px 20px;
    }

    .aboutus-section2 .content .title br,
    .aboutus-section2 .content .title span br,
    .aboutus-section2 .content .title div br {
        display: none;
    }

    .aboutus-section2 .content .title div {
        display: inline;
    }

    .aboutus-section2 .content .description br,
    .aboutus-section2 .content .description span br,
    .aboutus-section2 .content .description div br {
        display: none;
    }

    .aboutus-section2 .content .description div {
        display: inline;
    }

    .aboutus-section2 .abt-image {
        height: 350px;
    }

    /*Banner services*/
    .principal-services .content .title {
        font-size: 38px;
    }

    /*Services section 1*/
    .services-section1 .wtp .elements {
        width: 40%;
        height: 280px;
    }

    /*Banner products*/
    .principal-products .content .title {
        font-size: 38px;
    }

    /*Products boxes*/
    .products-boxes .box .elements {
        width: 40%;
        height: auto;
    }

    /*Banner contact*/
    .principal-contact .content .title {
        font-size: 38px;
    }

    /*Contact section 1*/
    .contact-section1 .element-box .box-card {
        width: 40%;
        height: 220px;
    }

    /*Privacy text titular*/
    .containter-title-privacy {
        padding: 2rem 3rem;
    }

    .containter-title-privacy .title {
        font-size: 32px;
        line-height: 32px;
    }

    /*Questions text titular*/
    .containter-title-questions {
        padding: 2rem 3rem;
    }

    .containter-title-questions .title {
        font-size: 32px;
        line-height: 32px;
    }

    /*Team text titular*/
    .containter-title-team {
        padding: 2rem 3rem;
    }

    .containter-title-team .title {
        font-size: 32px;
        line-height: 32px;
    }

}

@media only screen and (min-width: 992px) and (max-width: 1199.98px) {}

@media only screen and (max-width: 833px) {

    /*Menu General*/
    header .container .navbar .logo img {
        height: 40px;
    }

    header .container .navbar .social .nav-item-r {
        padding: 10px 10px;
    }

}

@media only screen and (max-width: 800px) {}

@media only screen and (max-width: 768px) {

    /*Home section 1*/
    .home-section1 {
        padding: 50px 20px;
    }

    .home-section1 .headers {
        width: 90%;
        padding: 0px;
    }

    .home-section1 .headers .title br,
    .home-section1 .headers .title span br,
    .home-section1 .headers .title div br {
        display: none;
    }

    .home-section1 .headers .title div {
        display: inline;
    }

    .home-section1 .headers .description br,
    .home-section1 .headers .description span br,
    .home-section1 .headers .description div br {
        display: none;
    }

    .home-section1 .headers .description div {
        display: inline;
    }

    .home-section1 .wtp .elements {
        width: 45%;
        height: 280px;
    }

    /*Home clients*/
    .clients {
        padding: 50px 20px 50px 20px;
    }

    .clients .headers .title br,
    .clients .headers .title span br,
    .clients .headers .title div br {
        display: none;
    }

    .clients .headers .title div {
        display: inline;
    }

    /*Aboutus partners*/
    .partners {
        padding: 50px 20px 50px 20px;
    }

    .partners .headers {
        width: 90%;
    }

    .partners .headers .title br,
    .partners .headers .title span br,
    .partners .headers .title div br {
        display: none;
    }

    .partners .headers .title div {
        display: inline;
    }

    /*Aboutus section1*/
    .aboutus-section1 {
        padding: 50px 20px;
    }

    .aboutus-section1 .title br,
    .aboutus-section1 .title span br,
    .aboutus-section1 .title div br {
        display: none;
    }

    .aboutus-section1 .title div {
        display: inline;
    }

    .aboutus-section1 .description {
        width: 90%;
    }

    .aboutus-section1 .description br,
    .aboutus-section1 .description span br,
    .aboutus-section1 .description div br {
        display: none;
    }

    .aboutus-section1 .description div {
        display: inline;
    }

    /*Text slide aboutus*/
    .text-slide-aboutus .title br,
    .text-slide-aboutus .title span br,
    .text-slide-aboutus .title div br {
        display: none;
    }

    /*Services section 1*/
    .services-section1 {
        padding: 50px 20px;
    }

    .services-section1 .headers {
        width: 100%;
        padding: 0px;
    }

    .services-section1 .headers .title br,
    .services-section1 .headers .title span br,
    .services-section1 .headers .title div br {
        display: none;
    }

    .services-section1 .headers .title div {
        display: inline;
    }

    .services-section1 .headers .description br,
    .services-section1 .headers .description span br,
    .services-section1 .headers .description div br {
        display: none;
    }

    .services-section1 .headers .description div {
        display: inline;
    }

    .services-section1 .wtp .elements {
        width: 45%;
        height: 280px;
    }

    /*Services map*/
    .service-map .content {
        width: 100%;
        padding: 50px 20px 0px 20px;
    }

    .service-map .smp-image-wrapper {
        height: 420px;
    }

    /*Products section 1*/
    .product-section1 {
        padding: 50px 20px;
    }

    .product-section1 .title br,
    .product-section1 .title span br,
    .product-section1 .title div br {
        display: none;
    }

    .product-section1 .title div {
        display: inline;
    }

    .product-section1 .description {
        width: 90%;
    }

    .product-section1 .description br,
    .product-section1 .description span br,
    .product-section1 .description div br {
        display: none;
    }

    .product-section1 .description div {
        display: inline;
    }

    /*Products line section*/
    .pt-line-section {
        padding: 40px 20px;
    }

    /*Products boxes*/
    .products-boxes {
        padding: 50px 20px;
    }

    .products-boxes .box .elements {
        width: 45%;
    }

    /*Contact section 1*/
    .contact-section1 {
        padding: 50px 20px;
    }

    .contact-section1 .headers .title br,
    .contact-section1 .headers .title span br,
    .contact-section1 .headers .title div br {
        display: none;
    }

    .contact-section1 .headers .title div {
        display: inline;
    }

    .contact-section1 .headers .description br,
    .contact-section1 .headers .description span br,
    .contact-section1 .headers .description div br {
        display: none;
    }

    .contact-section1 .headers .description div {
        display: inline;
    }

    .contact-section1 .element-box .box-card {
        width: 45%;
        height: 280px;
    }

    .contact-section1 .element-box .box-card .numbers,
    .contact-section1 .element-box .box-card .numbers span,
    .contact-section1 .element-box .box-card .numbers div {
        font-size: 52px;
    }

    .contact-section1 .element-box .box-card .numbers br,
    .contact-section1 .element-box .box-card .numbers span br,
    .contact-section1 .element-box .box-card .numbers div br {
        display: none;
    }

    .contact-section1 .element-box .box-card .numbers div {
        display: inline;
    }

    .contact-section1 .element-box .box-card .subtitle,
    .contact-section1 .element-box .box-card .subtitle span,
    .contact-section1 .element-box .box-card .subtitle div {
        font-size: 18px;
    }

    .contact-section1 .element-box .box-card .subtitle br,
    .contact-section1 .element-box .box-card .subtitle span br,
    .contact-section1 .element-box .box-card .subtitle div br {
        display: none;
    }

    .contact-section1 .element-box .box-card .subtitle div {
        display: inline;
    }

    /*Privacy text titular*/
    .containter-title-privacy {
        padding: 2rem 2rem;
    }

    .containter-title-privacy .title {
        font-size: 28px;
        line-height: 28px;
    }

    /*Questions text titular*/
    .containter-title-questions {
        padding: 2rem 2rem;
    }

    .containter-title-questions .title {
        font-size: 28px;
        line-height: 28px;
    }

    /*Team text titular*/
    .containter-title-team {
        padding: 2rem 2rem;
    }

    .containter-title-team .title {
        font-size: 28px;
        line-height: 28px;
    }

}

@media only screen and (min-width: 768px) and (max-width: 991.98px) {}

/*Adaptacion movil*/
@media only screen and (max-width: 668px) {

    /*Menu General*/
    header .container .navbar .logo {
        justify-content: center;
    }

    header .container .navbar .social {
        display: none;
    }

    header .container .navbar .nav-list {
        display: none !important;
    }

    /*Menu mobile*/
    header .container .navbar .hamburger-menu {
        display: block;
        cursor: pointer;
        margin-right: 10px;
        margin-left: auto;
    }

    header .container .navbar .hamburger-menu span {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px;
        background: #FFF;
        transition: 0.3s;
    }

    header .container .navbar .hamburger-menu.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    header .container .navbar .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    header .container .navbar .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /*Banner home*/
    .principal-home {
        width: 100%;
        height: 620px;
    }

    .principal-home .content .title br {
        display: none;
    }

    .principal-home .content .description br {
        display: none;
    }

    .principal-home .content .btn-banner {
        width: 200px;
    }

    /*Line section*/
    .line-section {
        padding: 40px 20px;
    }

    .line-section .line-item {
        flex: 1 1 100%;
        max-width: 100%;
    }

    /*Inicio form*/
    .home-form {
        padding: 50px 20px;
    }

    .home-form form .input-container input {
        width: 100%;
    }

    /*Home section 1*/
    .home-section1 .wtp .elements {
        width: 100%;
        height: auto;
    }

    /*Banner aboutus*/
    .principal-aboutus {
        width: 100%;
        height: 320px;
    }

    .principal-aboutus .content .title {
        font-size: 28px;
    }

    /*Slide aboutus*/
    .slide-aboutus .swiper-wrapper .swiper-slide .slide-content {
        max-width: 90%;
        flex-direction: column;
    }

    .slide-aboutus .swiper-wrapper .swiper-slide .slide-content .icono-slide {
        width: 140px;
    }

    .slide-aboutus .swiper-button-next {
        display: none;
    }

    .slide-aboutus .swiper-button-prev {
        display: none;
    }

    /*Banner services*/
    .principal-services {
        width: 100%;
        height: 320px;
    }

    .principal-services .content .title {
        font-size: 28px;
    }

    /*Services section 1*/
    .services-section1 .wtp .elements {
        width: 100%;
        height: auto;
    }

    /*Services map*/
    .service-map .smp-image-wrapper {
        height: 500px;
    }

    /*Banner products*/
    .principal-products {
        width: 100%;
        height: 320px;
    }

    .principal-products .content .title {
        font-size: 28px;
    }

    /*Products boxes*/
    .products-boxes .box .elements {
        width: 95%;
    }

    .products-boxes .box .elements img {
        width: 100%;
        height: max-content;
        object-position: center top;
    }

    /*Banner contact*/
    .principal-contact {
        width: 100%;
        height: 320px;
    }

    .principal-contact .content .title {
        font-size: 28px;
    }

    /*Contact section 1*/
    .contact-section1 .element-box .box-card {
        width: 95%;
        height: 280px;
    }

    /*Aviso de privacidad*/
    .privacy {
        margin: 0px 20px;
    }

    .privacy .privacy_container {
        flex-direction: column;
    }

    .privacy .privacy_container .privacy_items {
        width: 100%;
    }

    .privacy .privacy_container .privacy_items .privacy_item .privacy_title_one {
        font-size: 18px;
    }

    .privacy .privacy_container .privacy_items .privacy_item .privacy_title,
    .privacy .privacy_container .privacy_items .privacy_item .privacy_title_only {
        font-size: 16px;
    }

    .privacy .privacy_container .privacy_items .privacy_item .privacy_title span,
    .privacy .privacy_container .privacy_items .privacy_item .privacy_title_only span {
        font-size: 16px;
    }

    .privacy .privacy_container .privacy_items .privacy_item .privacy_description {
        font-size: 16px;
    }

    /*Questions full*/
    .questions .questions_container .questions_content_full {
        padding-top: 30px;
    }

    /*Join team*/
    .team {
        margin: 0px 20px;
    }

    .team .team_container {
        flex-direction: column;
    }

    .team .team_container .team_items {
        width: 100%;
    }

    .team .team_container .team_items .team_item .team_title_one {
        font-size: 18px;
    }

    .team .team_container .team_items .team_item .team_title,
    .team .team_container .team_items .team_item .team_title_only {
        font-size: 16px;
    }

    .team .team_container .team_items .team_item .team_title span,
    .team .team_container .team_items .team_item .team_title_only span {
        font-size: 16px;
    }

    .team .team_container .team_items .team_item .team_description {
        font-size: 16px;
    }

    /*Footer*/
    footer .footer-container {
        height: auto;
        display: flex;
        flex-direction: column;
        padding: 3rem 1rem;
    }

    footer .footer-container .footer-column {
        width: 100%;
    }

    footer .footer-container .footer-column-logo {
        width: 100%;
        align-items: center;
    }

    footer .footer-container .footer-column-logo .nav_logo {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    footer .footer-container .footer-column-logo .nav_logo img {
        width: 150px;
        height: auto;
    }

    .development .text {
        font-size: 14px;
    }

}

@media only screen and (min-width: 576px) and (max-width: 767.98px) {}

@media only screen and (max-width: 468px) {}