/*  ========== COLOR VARIABLES ========== */
:root {
  --white: #ffffff;
  --black: #000000;

  --textColor: #102032;

  --ctaColor1: #F2DB5C;
  --bgColor2: #102032;
  --bgColor3: #FCF0E9;
  --borderColor: #E68F55;
  --ctaColor3: #072D49;
  --ctaColor4: #cf4002;

  --errorColor: #FF0000;
  --bgcolor: #FAF3F4;

  --orangeColor: #ED9357;

}

body {
  background-size: 100% auto;
  color: var(--textColor);
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
  text-align: left;
  background: var(--bgcolor);
}

section {
  padding: 60px 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 500;
}



h1,
.h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 84px;
  font-weight: 600;
  line-height: 110%;
}

h2,
.h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
}

h3,
.h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 41px;
}

.nosotros h2 {
  font-weight: 700;
  font-size: 24px;
}

p {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

.background-alt {
  background: var(--ctaColor1);
}

.btn-main {
  background: transparent;
  border-radius: 10px;
  color: var(--textColor);
  border: 1px var(--textColor) solid;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  padding: 10px 20px;
  position: relative;
  text-align: center;
  transition: 0.3s ease all;
}

.btn-main:hover {
  color: var(--textColor);
  background: var(--ctaColor1);
  border: 1px solid var(--ctaColor1);
}

.btn-secondary {
  background: var(--ctaColor1);
  border-radius: 10px;
  border: 1px solid var(--ctaColor1);
  border-radius: 1px0;
  color: var(--textColor);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  min-width: 152px;
  padding: 12px 32px;
  position: relative;
  text-align: center;
  transition: 0.3s ease all;
}

.btn-secondary:hover {
  background: var(--bgcolor);
  color: var(--textColor);
}

.btn-txt {

  color: var(--textColor);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  min-width: 152px;
  padding: 17px 17px;
  position: relative;
  text-align: left;
  transition: 0.3s ease all;
}

.btn-txt:hover {
  background: var(--white);
  border: 1px solid var(--ctaColor3);
  color: var(--ctaColor3);
}


.btn-header {
  background: transparent;
  border: 1px solid var(--white);
  border-radius: 0;
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  line-height: 25px;
  min-width: 139px;
  padding: 9px 19px;
  position: relative;
  text-align: center;
  transition: 0.3s ease all;
}

.btn-header:hover {
  background: var(--white);
  color: var(--textColor);
}


.link {
  position: relative;
  transition: 0.3s ease all;
}

.link.active,
.link:hover {
  color: var(--ctaColor3);
  text-decoration: underline;
}

.link.alt {
  color: var(--textColor);
  position: relative;
  transition: 0.3s ease all;
}

.link.alt.active,
.link.alt:hover {
  color: var(--ctaColor3);
  text-decoration: underline;
}

.link.footer {
  color: var(--white);
  font-size: 16px;
  line-height: 24px;
  position: relative;
  transition: 0.3s ease all;
}

.link.footer.active,
.link.footer:hover {
  color: var(--ctaColor1);
  text-decoration: underline;
}




.link.social {
  color: var(--textColor);
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  min-width: 30px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: 0.3s ease all;
}

.link.social.active,
.link.social:hover {
  color: var(--textColor);
  text-decoration: none;
}

.link.social::before {
  background: var(--textColor);
  bottom: -4px;
  content: '';
  display: block;
  height: 5px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.3s ease all;
  width: 0;
}

.link.social.active::before,
.link.social:hover::before {
  background: var(--textColor);
  content: '';
  display: block;
  height: 5px;
  transition: 0.3s ease all;
  width: 100%;
}




.show-desktop {
  display: block;
}

.show-mobile {
  display: none;
}

.show-desktop-flex {
  display: flex;
}

.show-mobile-flex {
  display: none;
}

@media (max-width: 1199px) {

  h1,
  .h1 {
    font-size: 50px;
    line-height: 60px;
  }

  h2,
  .h2 {
    font-size: 40px;
    line-height: 50px;
  }

  h3,
  .h3 {
    font-size: 28px;
    line-height: 38px;
  }
}


@media (max-width: 991px) {
  body {
    font-size: 15px;
    line-height: 23px;
  }

  section {
    padding: 60px 0;
  }

  h1,
  .h1 {
    font-size: 30px;
    line-height: 40px;
  }

  h2,
  .h2 {
    font-size: 24px;
    line-height: 32px;
  }

  h3,
  .h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .show-desktop {
    display: none;
  }

  .show-mobile {
    display: block;
  }

  .show-desktop-flex {
    display: none;
  }

  .show-mobile-flex {
    display: flex;
  }
}

@media (max-width: 767px) {
  section {
    padding: 30px 0;
  }

  .btn-main {
    min-width: 170px;
    padding: 10px;
  }

  .btn-secondary {
    min-width: 170px;
    padding: 10px;
  }

  .btn-dark {
    min-width: 170px;
    padding: 10px;
  }

  .btn-header {
    min-width: 170px;
    padding: 10px;
  }
}




@media (min-width: 1200px) {
  .container {
    max-width: 1340px;
  }
}

.bg-main {
  background: url(../img/rectangules.png) no-repeat;
  background-position: top right;
  background-size: contain;
}

/* ========== HEADER START ========== */
header {
  left: 0;
  position: fixed;
  top: 0;
  transition: 0.3s ease all;
  width: 100%;
  z-index: 11000;
}

header.fixed {
  background: var(--bgcolor);
}

header i {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

header .navbar .navbar-nav .nav-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 21px;
}

header .navbar .navbar-nav .nav-item .nav-link {
  color: var(--textColor);
  font-size: 16px;
  line-height: 24px;
  padding: 0;
  text-decoration: none;
  text-transform: uppercase;
}

header .navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--ctaColor3);
}

header .navbar .navbar-nav .nav-item .nav-link::before {
  background: var(--bgcolor);
  bottom: -2px;
  content: '';
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.3s ease all;
  width: 0;
}

header .navbar .navbar-nav .nav-item .nav-link.active::before,
header .navbar .navbar-nav .nav-item .nav-link:hover::before {
  background: var(--bgcolor);
  content: '';
  display: block;
  height: 2px;
  transition: 0.3s ease all;
  width: 100%;
}

header.fixed {
  background: var(--bgcolor);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  z-index: 11000;
}

header.fixed i {
  color: var(--ctaColor3);
}

header.fixed .navbar .navbar-nav .nav-item .nav-link {
  color: var(--textColor);
}


header.fixed .navbar .navbar-nav .nav-item .nav-link::before {
  background: var(--textColor);
  bottom: -2px;
  content: '';
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: 0.3s ease all;
  width: 0;
}

header.fixed .navbar .navbar-nav .nav-item .nav-link.active::before,
header.fixed .navbar .navbar-nav .nav-item .nav-link:hover::before {
  background: var(--textColor);
  content: '';
  display: block;
  height: 2px;
  transition: 0.3s ease all;
  width: 100%;
}

header.fixed .navbar .navbar-nav .nav-item .btn-header {
  background: transparent;
  border-radius: 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 25px;
  min-width: 139px;
  padding: 9px 19px;
  position: relative;
  text-align: center;
  transition: 0.3s ease all;
}

header.fixed .navbar .navbar-nav .nav-item .btn-header:hover {
  color: var(--white);
}


@media (max-width: 991px) {
  header .navbar .navbar-nav {
    padding: 15px 20px;
  }

  header .navbar .navbar-nav .nav-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 10px;
  }

  header .img-logo,
  header .img-logo-fixed {
    max-width: 84px;
  }

  header .dropdown-item {
    padding: .25rem .25rem;
  }


  header .navbar-collapse {
    background: var(--bgcolor);

  }

  header .navbar .navbar-nav .nav-item .nav-link {
    font-size: 16px;
    line-height: 24px;
    padding: 0;
    text-decoration: none;
    text-transform: uppercase;
  }


  header .navbar .navbar-nav .nav-item .btn-header {
    background: transparent;
    border: 1px solid var(--textColor);
    border-radius: 0;
    color: var(--textColor);
    font-size: 17px;
    font-weight: 500;
    line-height: 25px;
    min-width: 139px;
    padding: 9px 19px;
    position: relative;
    text-align: center;
    transition: 0.3s ease all;
  }
}

/* ========== HEADER END ========== */







/* ========== FOOTER START ========== */
footer {
  background: var(--bgColor2);
  border-top: 1px solid #19314D;
  color: var(--white);
  padding: 32px 0;
  position: relative;
}

footer p {
  font-size: 16px;
  line-height: 24px;
}

.flex-container {
  display: flex;

}

footer .flex-container>div {
  margin: 10px;
  padding: 20px;
  width: 20%;
  color: #FAF3F4;
}

footer .img-logo {
  height: auto;
  max-width: 265px;
  width: 100%;
}

footer hr {
  margin-bottom: 2rem;
}

footer ul {
  display: flex;
  flex-direction: row;
  justify-content: end;
  list-style: none;
  margin: 0;
  padding: 0;
}

footer ul li {
  padding: 0 25px;
}

footer ul li:first-of-type {
  padding: 0 25px 0 0;
}

footer ul li:last-of-type {
  padding: 0 0 0 25px;
}



footer .copy-r {
  float: right;
  text-align: right;
}

footer .footer-links {
  margin: 0;
}

footer .footer-links .link {
  opacity: 0.5;
}

footer .footer-links .link:hover {
  opacity: 1;
}

@media (max-width: 1199px) {
  footer .flex-container {
    flex-wrap: wrap;
    justify-content: center;
  }

  footer .flex-container > div {
    width: 33%;
  }
}

@media (max-width: 991px) {
  footer {
    padding: 60px 0;
  }

  footer .img-logo {
    height: auto;
    max-width: 180px;
    width: 100%;
  }

  footer .copy {
    text-align: center;
  }

  footer ul {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  footer {
    padding: 30px 0;
  }

  footer .flex-container > div {
    margin-left: 0;
    margin-right: 0;
    width: 50%;
  }

  footer .link.footer {
    display: inline-block;
    float: none !important;
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }

  footer .h3 {
    font-size: 30px;
    line-height: 50px;
  }

  footer .img-logo {
    display: block;
  }

  footer ul {
    flex-wrap: wrap;
    justify-content: start;
    margin-top: 20px;
  }

  footer ul li {
    padding: 0 12px;
  }

  footer ul li:first-of-type {
    padding: 0 12px;
  }

  footer ul li:last-of-type {
    padding: 0 12px;
  }

  footer ul li .link.social {
    font-size: 36px;
  }

  footer .footer-links {
    flex-direction: column;
  }

  footer .footer-links li {
    margin: 10px 0;
  }
}

@media (max-width: 575px) {
  footer .flex-container > div {
    width: 100%;
  }

  footer .flex-container > div:first-of-type {
    text-align: center;
  }

  footer .flex-container > div:first-of-type img {
    display: block;
    margin: 0 auto;
  }

  footer .flex-container > div h4 {
    text-align: center;
  }
}

/* ========== FOOTER END ========== */



/* ========== MAIN BANNER START ========== */
.main-banner-section {
  background: url('../img/main-banner-bg.png') no-repeat top right var(--bgcolor);
  background-size: contain;
  /*min-height: 770px;*/
  padding: 80px 0 0;
  position: relative;
}

.main-banner-section.about-banner-section {
  min-height: 450px;
}

.padding-bottom-137 {
  padding-bottom: 137px;
  ;
}

.main-banner-section::before {
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.main-banner-section .content {
  color: var(--textColor);
  padding-top: 137px;
}

.main-banner-section .content .text-content {
  max-width: 580px;
}

.main-banner-section .row-features {
  padding-bottom: 30px;
  padding-top: 107px;
}

.main-banner-section .row-features img {
  height: auto;
  max-width: 33px;
  width: 100%;
}

.main-banner-section .row-features span {
  display: block;
  margin: 0 auto;
  max-width: 170px;
  font-size: 24px;
  line-height: 32px;
}

.main-banner-section.services-section {
  background: url('../img/services-bg.png') no-repeat top center;
  background-size: cover;
  min-height: 770px;
  padding: 32px 0 112;
}

.main-banner-section.services-section .content {
  padding-top: 0;
}

.main-banner-section.services-section .column {
  min-height: 770px;
}

.main-banner-section.services-section h1 {
  max-width: 590px;
}

.main-banner-section.services-section .form-section {
  background: var(--ctaColor1);
  padding: 42px 20px 28px;
}

.main-banner-section.services-section .form-section .h1 {
  color: var(--ctaColor3);
  /*text-transform: uppercase;*/
}







.main-banner-section.contact-section {
  background: var(--ctaColor3);
  position: relative;
}

.main-banner-section.contact-section::before {
  background: url('../img/contact-bg.png') no-repeat top left;
  background-size: cover;
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 50%;
  z-index: 0;
}

.main-banner-section.contact-section::after {
  background: rgba(0, 0, 0, 0.4);
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 50%;
  z-index: 0;
}

.main-banner-section.contact-section .content {
  padding-bottom: 60px;
  padding-top: 105px;
}

.main-banner-section.contact-section .column {
  z-index: 1;
}


.main-banner-section.contact-section .column h1 {
  margin-left: 35px;
}

.main-banner-section.contact-section .column .text-content {
  margin-left: 35px;
  max-width: 462px;
}

.main-banner-section.contact-section .form-content {
  margin-left: 35px;
}

@media (max-width: 991px) {
  .main-banner-section .content {
    padding-top: 60px;
  }
}

@media (max-width: 767px) {
  .main-banner-section {
    background-size: 80%;
    min-height: unset;
    padding: 0;
  }

  .main-banner-section .content {
    padding-top: 120px;
  }

  .main-banner-section.about-banner-section {
    min-height: unset;
  }

  .main-banner-section .row-features span {
    font-size: 18px;
    line-height: 24px;
  }

  .main-banner-section .row-features {
    padding-bottom: 0;
    padding-top: 60px;
  }

  .main-banner-section.services-section {
    min-height: unset;
    padding: 0;
  }

  .main-banner-section.services-section .column {
    min-height: unset;
  }

  .main-banner-section.services-section .content {
    padding-bottom: 30px;
    padding-top: 115px;
  }






  .main-banner-section.contact-section::before {
    display: none;
  }


  .main-banner-section.contact-section .column h1 {
    margin-left: 0;
  }

  .main-banner-section.contact-section .column .text-content {
    margin-left: 0;
    max-width: unset;
  }

  .main-banner-section.contact-section .form-content {
    margin-left: 0;
  }

  .main-banner-section.contact-section .content {
    padding-bottom: 30px;
    padding-top: 115px;
  }
}


/* ========== MAIN BANNER END ========== */
/* ========== SERVICIOS START ========== */


/* ========== SERVICIOS END ========== */

/* ========== FLIP CARD ========== */
.flipcard-section {
  background: var(--bgColor2);
}

.flip-card {
  background-color: transparent;
  width: 100%;
  height: 228px;
  margin: 0 auto;
  max-width: 420px;
  perspective: 1000px;
  margin-bottom: 32px;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-card-front {
  background-color: var(--bgcolor);
  color: black;
  border-radius: 32px;
}

.flip-card-front img {
  width: 80%;
  padding-top: 8%;
  max-width: 200px;
}

.flip-card-back {
  background-color: var(--bgColor2);
  color: var(--bgcolor);
  transform: rotateY(180deg);
  border-radius: 32px;
  border: 1px var(--bgcolor) solid;
  padding-top: 5%;
  padding-bottom: 5%;
}

/* ========== FLIP CARD START ========== */


/* ========== SERVICES START ========== */
.bg-rec-der {
  background: url(../img/rectangulos-derecha.png) no-repeat;
  background-size: contain;
  background-position: bottom left;
}

.services-section .text-content {
  max-width: 620px;

}

.service-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .services-section img {
    display: block;
    height: auto;
    margin: 0 auto;
    max-width: 480px;
    width: 100%;
  }

  .service-card img, .services-section img.small {
    display: block;
    height: auto;
    margin: 0 auto;
    max-width: 80px;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .bg-rec-der {
    background: url(../img/rectangulos-derecha.png) no-repeat;
    background-size: 60%;
  }
}

/* ========== SERVICES END ========== */


/* ========== CTA SECTION START ========== */
.revenue-section {

  background: var(--bgColor2);
}

.revenue-section h2 {

  background: var(--bgColor2);
}


.revenue-card {
  text-align: center;
}

.revenue-card .number {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px;
  font-size: 120px;
  font-weight: 500;
  line-height: 120px;
}

.revenue-card .text {
  font-size: 20px;
  font-weight: 600;
  line-height: 29px;
  margin: 0 auto;
  max-width: 244px;
}

@media (max-width: 1399px) {
  .revenue-card .number {
    font-size: 90px;
    line-height: 90px;
  }
}

@media (max-width: 991px) {
  .revenue-card .number {
    font-size: 60px;
    line-height: 60px;
  }
}

@media (max-width: 767px) {
  .revenue-card .number {
    font-size: 100px;
    line-height: 100px;
  }
}


/* ========== REVENUE END ========== */


/* ========== TABS START ========== */
.tabs-section {
  position: relative;
}

.tabs-section h3 {
  min-height: 100px;
}

.tabs-section .card {
  background: var(--bgColor3);
  border-radius: 30px;
  border: 1px solid var(--borderColor);
  height: 100%;
  padding: 32px;
}

@media (max-width: 991px) {
  .tabs-section .card {
    padding: 20px;
  }

  .tabs-section h3 {
    min-height: unset;
  }

  .tabs-section .card img {
    display: block;
    height: auto;
    margin: 0 auto;
    max-width: 480px;
    width: 100%;
  }
}

/* ========== TABS END ========== */

/* ========== TESTIMONIALS START ========== */
.testimonials-section {
  position: relative;
  background: url('../img/main-banner-bg.png') no-repeat top right;
  background-size: 75%;
}

.testimonials-section h3 {
  min-height: 100px;
}

.testimonials-section .card {
  background: var(--bgColor3);
  border-radius: 30px;
  border: 1px solid var(--borderColor);
  padding: 32px;

}

@media (max-width: 1599px) {
  .testimonials-section {
    background-size: 30%;
  }
}

@media (max-width: 1199px) {
  .testimonials-section {
    background-size: 50%;
  }
}

/* ========== TESTIMONIALS END ========== */


/* ========== MOSAIC START ========== */
.cta-section {
  background: var(--ctaColor1);
  color: var(--ctaColor3);
  position: relative;
  text-align: center;
}

.cta-section h2 {
  color: var(--ctaColor3);
  text-transform: uppercase;
}

.cta-section .subtitle {
  font-size: 35px;
  line-height: 45px;
}

@media (max-width: 991px) {
  .cta-section .h1 {
    text-align: left;
  }

  .cta-section .subtitle {
    font-size: 25px;
    line-height: 30px;
    text-align: left;
  }
}

/* ========== MOSAIC END ========== */



/* ========== MOSAIC START ========== */
.mosaic-section {
  background: var(--ctaColor1);
  padding: 90px 0 0;
  position: relative;
}

.mosaic-card-img {
  min-height: 500px;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.mosaic-card-img img {
  height: 100%;
  left: 50%;
  max-width: unset;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s ease all;
  width: auto;
}

.mosaic-card-img img:hover {
  height: 110%;
}

.mosaic-card {
  min-height: 500px;
  height: 100%;
}

.mosaic-card img {
  left: 37px;
  position: absolute;
  top: 34px
}

.mosaic-card .text {
  margin: 0 auto;
  max-width: 90%;
  padding: 0 15px;
  position: relative;
  top: 73px;
}

.mosaic-card .text .name {
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
}

.mosaic-card .text .company {
  font-size: 12px;
  font-weight: 700;
  line-height: 24px;
}

@media (max-width: 1399px) {
  .mosaic-card-img {
    min-height: 560px;
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .mosaic-card {
    min-height: 560px;
    height: 100%;
  }

  .mosaic-card img {
    left: 17px;
    position: absolute;
    top: 34px
  }
}

@media (max-width: 1199px) {
  .mosaic-card-img {
    min-height: 700px;
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
  }

  .mosaic-card {
    min-height: 700px;
    height: 100%;
  }
}

@media (max-width: 991px) {
  .mosaic-section {
    padding: 60px 0 0;
  }

  .mosaic-section .flex-elems>div:nth-of-type(1) {
    order: 1;
  }

  .mosaic-section .flex-elems>div:nth-of-type(2) {
    order: 2;
  }

  .mosaic-section .flex-elems>div:nth-of-type(3) {
    order: 4;
  }

  .mosaic-section .flex-elems>div:nth-of-type(4) {
    order: 3;
  }

  .mosaic-section .flex-elems>div:nth-of-type(5) {
    order: 5;
  }

  .mosaic-section .flex-elems>div:nth-of-type(6) {
    order: 6;
  }

  .mosaic-section .flex-elems>div:nth-of-type(7) {
    order: 8;
  }

  .mosaic-section .flex-elems>div:nth-of-type(8) {
    order: 7;
  }

  .mosaic-card-img {
    min-height: 500px;
  }

  .mosaic-card {
    min-height: 500px;
  }
}

@media (max-width: 767px) {
  .mosaic-section {
    padding: 30px 0 0;
  }

  .mosaic-card {
    min-height: unset;
  }

  .mosaic-card img {
    left: 10%;
    transform: translate(-50%);
    top: 20px;
  }

  .mosaic-card .text {
    padding: 60px 0 30px;
    top: unset
  }

  .mosaic-card-img {
    min-height: 280px;
  }

  .mosaic-section .flex-elems>div:nth-of-type(1) {
    order: 1;
  }

  .mosaic-section .flex-elems>div:nth-of-type(2) {
    order: 2;
  }

  .mosaic-section .flex-elems>div:nth-of-type(3) {
    order: 3;
  }

  .mosaic-section .flex-elems>div:nth-of-type(4) {
    order: 4;
  }

  .mosaic-section .flex-elems>div:nth-of-type(5) {
    order: 5;
  }

  .mosaic-section .flex-elems>div:nth-of-type(6) {
    order: 6;
  }

  .mosaic-section .flex-elems>div:nth-of-type(7) {
    order: 7;
  }

  .mosaic-section .flex-elems>div:nth-of-type(8) {
    order: 8;
  }
}

/* ========== MOSAIC END ========== */


/* ========== COMPANIES START ========== */
.companies-section {
  background: var(--ctaColor3);
  color: var(--white);
  position: relative;
}

.companies-section .paragraph {
  text-align: right;
}

.carousel-companies .slick-prev {
  height: 30px;
  left: 0;
  width: 30px;
  z-index: 2;
}

.carousel-companies .slick-prev:before {
  color: var(--white) !important;
  content: "\f053";
  font-family: 'Font Awesome 5 Pro';
  font-size: 30px;
  font-weight: 900;
  transition: all 0.2s;
}

.carousel-companies .slick-next {
  height: 30px;
  right: 0;
  width: 30px;
  z-index: 2;
}

.carousel-companies .slick-next:before {
  color: var(--white) !important;
  content: "\f054";
  font-family: 'Font Awesome 5 Pro';
  font-size: 30px;
  font-weight: 900;
  transition: all 0.2s;
}



.carousel-companies .slick-dots {
  bottom: -45px;
  left: 0;
  width: 100%;
}

.carousel-companies .slick-dots li button:before {
  border: 1px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  content: '';
  font-size: 16px;
  height: 16px;
  opacity: 1;
  width: 16px;
}

.carousel-companies .slick-dots li.slick-active button:before {
  background: var(--white);
}


@media (max-width: 991px) {
  .carousel-companies .slide {
    height: 120px;
  }

  .carousel-companies img {
    margin: 0 auto;
    width: 80%;
  }
}

@media (max-width: 767px) {
  .companies-section .paragraph {
    text-align: left;
  }
}

/* ========== COMPANIES END ========== */




/* ========== PARAGRAPH START ========== */
.paragraph-section {
  background: var(--ctaColor1);
}

.paragraph-section .text-content ul {
  margin: 0;
  padding-left: 20px;
}

.paragraph-section .text-content ul li p {
  margin: 0;
}

.paragraph-section .img-container {
  text-align: right;
}

@media (max-width: 767px) {
  .paragraph-section .img-container {
    text-align: center;
  }

  .paragraph-section .img-container img {
    height: auto;
    margin: 0 auto;
    max-width: 320px;
    width: 100%;
  }
}



/* ========== PARAGRAPH END ========== */





/* ========== CONTACT DATA START ========== */
.contact-data-section {
  background: var(--ctaColor1);
}

.contact-data-section .img-container {
  height: auto;
  max-width: 40px;
  min-width: 40px;
  width: 100%;
}

.contact-data-section .img-container img {
  height: 35px;
  max-width: unset;
  width: auto;
}

.contact-data-section .description {
  font-weight: 500;
  text-transform: uppercase;
}

.contact-column i {
  font-size: 30px;
}

/* ========== CONTACT DATA END ========== */




















/* ========== FORM START ========== */
.form-section input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ctaColor3);
  border-radius: 0;
  color: var(--textColor);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  min-height: 40px;
  padding: 4px 12px;
  text-transform: uppercase;
  width: 100% !important;
}


.form-section select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ctaColor3);
  border-radius: 0;
  color: var(--textColor);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  min-height: 40px;
  padding: 4px 12px;
  text-transform: uppercase;
  width: 100% !important;
}

.form-section input[type="submit"] {
  background: var(--ctaColor4);
  border: 1px solid var(--ctaColor4);
  border-radius: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
  min-width: 152px;
  padding: 12px;
  position: relative;
  text-align: center;
  text-transform: none;
  transition: 0.3s ease all;
}

.form-section input[type="submit"]:hover {
  background: var(--white);
  border: 1px solid var(--ctaColor3);
  color: var(--ctaColor3);
}

.form-section label {
  color: var(--ctaColor3);
  font-size: 20px;
}

.form-section .hs-form-booleancheckbox label {
  color: var(--textColor);
  display: block;
}

.form-section .hs-fieldtype-booleancheckbox .inputs-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.form-section input[type="checkbox"] {
  background: var(--white);
  border: 1px solid var(--textColor);
  color: var(--textColor);
  margin: 0 10px 0 0;
  min-height: unset;
  outline: none;
  width: auto;
}

.form-section textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ctaColor3);
  border-radius: 0;
  color: var(--textColor);
  font-size: 20px;
  outline: none;
  padding: 4px 12px;
  resize: none;
  text-transform: uppercase;
  width: 100% !important;
}

.form-section form a {
  color: var(--textColor);
}

.form-section .hs-form-field {
  margin-bottom: 20px;
  margin-top: 0;
}

.form-section .hs-error-msg,
.form-section .hs-error-msgs {
  color: var(--errorColor);
  list-style: none;
  margin: 0;
  padding: 0;
}

.form-section fieldset {
  max-width: unset !important;
}

.form-section ul.inputs-list {
  overflow: hidden;
}

.form-section .hs-form-field>label {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  /* text-transform: uppercase;*/
}

.form-section .hs-form-checkbox-display span {
  display: inline-block;
  margin-top: 10px;
  position: relative;
}




@media(max-width: 767px) {
  .form-section .hs-form-field>label {
    margin-bottom: 4px;
  }

  .form-section li.hs-form-checkbox {
    float: none;
    width: 100%;
  }
}





.form-section.contact-section input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--white);
  border-radius: 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  min-height: 40px;
  padding: 4px 12px;
  text-transform: uppercase;
  width: 100% !important;
}


.form-section.contact-section select {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--white);
  border-radius: 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  min-height: 40px;
  padding: 4px 12px;
  text-transform: uppercase;
  width: 100% !important;
}

.form-section.contact-section input[type="submit"] {
  background: var(--ctaColor4);
  border: 1px solid var(--ctaColor4);
  border-radius: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  margin: 0;
  min-width: 152px;
  padding: 12px;
  position: relative;
  text-align: center;
  text-transform: none;
  transition: 0.3s ease all;
}

.form-section.contact-section input[type="submit"]:hover {
  background: var(--white);
  color: var(--ctaColor4);
}

.form-section.contact-section label {
  color: var(--white);
  font-size: 20px;
}

.form-section.contact-section .hs-form-booleancheckbox label {
  color: var(--textColor);
  display: block;
}

.form-section.contact-section .hs-fieldtype-booleancheckbox .inputs-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.form-section.contact-section input[type="checkbox"] {
  background: var(--white);
  border: 1px solid var(--textColor);
  color: var(--textColor);
  margin: 0 10px 0 0;
  min-height: unset;
  outline: none;
  width: auto;
}

.form-section.contact-section textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--white);
  border-radius: 0;
  color: var(--white);
  font-size: 20px;
  outline: none;
  padding: 4px 12px;
  resize: none;
  text-transform: uppercase;
  width: 100% !important;
}

.form-section.contact-section form a {
  color: var(--textColor);
}

.form-section.contact-section .hs-form-field {
  margin-bottom: 20px;
  margin-top: 0;
}

.form-section.contact-section .hs-error-msg,
.form-section.contact-section .hs-error-msgs {
  color: var(--errorColor);
  list-style: none;
  margin: 0;
  padding: 0;
}

.form-section.contact-section fieldset {
  max-width: unset !important;
}

.form-section.contact-section ul.inputs-list {
  overflow: hidden;
}

.form-section.contact-section .hs-form-field>label {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.form-section.contact-section .hs-form-checkbox-display span {
  display: inline-block;
  margin-top: 10px;
  position: relative;
}




@media(max-width: 767px) {
  .form-section.contact-section .hs-form-field>label {
    margin-bottom: 4px;
  }

  .form-section.contact-section li.hs-form-checkbox {
    float: none;
    width: 100%;
  }
}

/* ========== FORM END ========== */

/* ========== PARAGRAPH IMAGE START ========== */
.paragraph-image-section {
  background: var(--ctaColor1);
  padding: 90px 0 0;
}

.paragraph-image-section.last {
  padding: 90px 0;
}

@media (max-width: 991px) {
  .paragraph-image-section {
    padding: 60px 0 0;
  }

  .paragraph-image-section.last {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .paragraph-image-section {
    padding: 30px 0 0;
  }

  .paragraph-image-section.last {
    padding: 30px 0;
  }
}

/* ========== PARAGRAPH IMAGE END ========== */



/* ========== TABS START ========== */
.tabs-section .nav-link {
  color: var(--borderColor);
}

.tabs-section .nav-link:hover {
  color: var(--textColor);
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: var(--textColor);
    background-color: var(--ctaColor1);
    border-color: #dee2e6 #dee2e6 #fff;
}


/* ========== TABS END ========== */

/* ========== GENERALES ========== */
.bg-degraded{
  background: rgb(255,255,255);
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(252,240,233,1) 100%);
}

.bg-white{
  background-color: var(--white);
}

.bg-header{
  background-color: var(--bgcolor);
}

.image-desktop{
  display: block;
}

.image-mobile{
  display: none;
}

.btn-orange {
  background: transparent;
  border-radius: 10px;
  color: var(--orangeColor);
  border: 1px var(--orangeColor) solid;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  padding: 10px 20px;
  position: relative;
  text-align: center;
  transition: 0.3s ease all;
}

.btn-orange:hover {
  color: var(--textColor);
  background: var(--orangeColor);
  border: 1px solid var(--orangeColor);
}

.title{
  font-size: 48px;
  line-height: 57px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .image-desktop{
    display: none;
  }
  .image-mobile{
    display: block;
  }
  .title{
    font-size: 36px;
    line-height: 43px;
    font-weight: 700;
  }
}

/* ========== BANNER ========== */
.banner-section{
  /* background: #102032 url('../img/agencia-outsourcing/main.svg') no-repeat;
  background-position: 115% 100%; */
  background: #102032 url('../img/agencia-outsourcing/bg.png') no-repeat;
  background-position: 115% 100%;
  min-height: 750px;
}

.banner-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 80px;
}

.banner-container h1{
  font-size: 56px;
  line-height: 120%;
  font-weight: 700;
}

.banner-container small{
  color: var(--ctaColor1);
  font-size: 12px;
  line-height: 120%;
  font-weight: 400;
}
.banner-container small a{
  color: var(--ctaColor1);
}

.banner-container .info{
  width: 55%;
}

.banner-container .main-form{
  width: 40%;
}

.banner-container .info p{
  font-size: 18px;
  line-height: 150%;
}

.banner-container .text-orange strong{
  display: block;
  color: var(--orangeColor);
  margin-top: 20px;
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .banner-section{
    background: #102032 url('../img/agencia-outsourcing/main_mobile.svg') no-repeat;
    background-position: 100% 0%;
  }
}

@media (max-width: 768px) {
  .banner-section{
    background: #102032 url('../img/agencia-outsourcing/main_mobile.svg') no-repeat;
    background-position: 100% 100%;
  }

  .banner-container{
    margin-top: 40px;
  }

  .banner-container h1{
    font-size: 40px;
    line-height: 120%;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .banner-container .info{
    width: 100%;
  }

  .banner-container .main-form{
    width: 100%;
  }
  

  .banner-container .card{
    width: 100%;
    margin-bottom: 1rem;
  }

  .banner-container .card-container{
    flex-direction: column;
  }

}
/* ========== BANNER END ========== */


/* ========== SERVICIOS ESPECIALIZADOS ========== */

.specialized-services-section small{
  color: var(--orangeColor);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.specialized-services-section h2 strong{
  font-weight: 400;
}

.specialized-services-section p{
  font-size: 18px;
  line-height: 27px;
  font-weight: 400;
}

.specialized-services-section img{
  width: 100%;
}

@media (max-width: 768px) {
  .specialized-services-section .specialized-container {
    display: flex;
  }

  .specialized-services-section .specialized-container .image{
    order: 2;
  }

  .specialized-services-section .specialized-container .info{
    order: 1;
  }
}


/* ========== SERVICIOS ESPECIALIZADOS END ========== */

/* ========== CARDS ========== */
.cards-section{

}


.container-card{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.services-card{
  background-color: #FAF3F4;
  border: 1px solid var(--borderColor);
  width: 100%;
  max-width: 300px;
  min-width: 300px;
  border-radius: 10px;
  margin: 0 10px 20px 10px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services-card figure{
  height: 160px;
  width: auto;
}

.services-card figure img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-card h5{
  font-size: 24px;
  line-height: 140%;
  color: var(--bgColor2);
  font-weight: 700;
}

.services-card .service-card-container{
  padding: 20px;
}

.services-card .service-card-container >div{
  display: flex;
  align-items: flex-start;
}

.services-card .service-card-container .list{
  margin-left: 20px;
}

.services-card ul{
  padding-left: 20px;
}

.services-card li{
  font-size: 16px;
  line-height: 150%;
  color: var(--bgColor2);
}

.services-card a{
  width: 100%;
}

.button-container{
  padding: 0 20px 20px 20px ;
}

@media (max-width: 768px) {
  .services-card{
    max-width: 100%;
    margin: 0 0 20px 0;
  }
}
/* ========== CARDS END ========== */

/* ==========  FAQS ========== */
.faqs-section {
  background-color: #FCF0E9;
  background-image: url('../img/agencia-outsourcing/bg_faqs.svg');
  background-repeat: no-repeat;
  background-position: 100%;
}

.faqs-section .title{
  font-size: 32px;
  line-height: 130%;
  color: var(--bgColor2);
}

.faqs-section .text{
  font-size: 18px;
  line-height: 150%;
  color: var(--bgColor2);
}
.accordion button{
  position: relative;
  padding: 15px 0;
  outline: none;
}

.accordion button::after{
  display: block;
  font-family: 'Font Awesome 5 Pro';
  content: "\f078";
  font-weight: 600;
  position: absolute;
  top: 50%;
  right: 0;
  color: var(--bgColor2);
  margin-top: -13px;
}

.accordion .collapsed::after{
  transform: rotate(180deg);
}

.form{
  text-align: center;
}

.faqs-section .accordion{
  border-top: 1px solid var(--borderColor) !important;
}

.faqs-section .card-body{
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  padding: 0 0 20px 0;
  background: #FCF0E9;
}

.faqs-section .card{
  border: none;
  border-bottom: 1px solid var(--borderColor) !important;
  border-radius: 0;
}

.faqs-section .card-header {
  padding: 0;
  margin-bottom: 0;
  background-color: #FCF0E9;
  border-bottom: none;
}

.faqs-section .card-header button p{
  color: var(--bgColor2);
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  width: 90%;
  margin-bottom: 0;
}

.faqs-section .card-header button:hover, .faqs-section .card-header button:focus, .faqs-section .card-header button:active{
  text-decoration: none;
  outline: none;
}

.faqs-section .btn.focus, .faqs-section .btn:focus {
  box-shadow: none;
}

.form-container{
  padding: 0 70px;
}

@media (max-width: 768px) {
  .faqs-section {
    background-image: none;
  }

  .form-container{
    padding: 0;
  }

  .faqs-section .title{
    margin-top: 40px;
  }
}


/* ========== END FAQS ========== */



