@charset "UTF-8";
h1, h2, h3, h4, p, li, a, span, button, label, strong {
  font-family: "Be Vietnam Pro", sans-serif;
}

h1, h2, h3, h4 {
  font-weight: 700;
}

.select-wrapper {
  position: relative;
}
.select-wrapper .custom-select {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
  cursor: pointer;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  background: #e8e8e8;
  font-size: 16px;
  color: #808080;
}
.select-wrapper .custom-select:focus {
  border-color: #4A9EFF;
}
.select-wrapper .select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #666;
  pointer-events: none;
  stroke-width: 2;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.select-wrapper .custom-select:focus + .select-arrow {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.button-download {
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  padding: 14px 14px;
  outline: 0;
  background: #F5F5F5;
  border-radius: 12px;
}
.button-download .text {
  margin-left: 8px;
}
.button-download .text p {
  margin: 0;
  color: #060220;
  font-weight: 500;
  font-size: 16px;
}
.button-download:hover {
  background: #E63323;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.button-download:hover .icon img {
  -webkit-filter: invert(1);
          filter: invert(1);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.button-download:hover .text p {
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.button-red {
  text-decoration: none;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  padding: 0;
  outline: 0;
}
.button-red .text {
  padding: 14px 80px 14px 32px;
  background: #E63323;
  border-radius: 4px;
  clip-path: polygon(0 0, 90% 0, 100% 100%, 100% 100%, 0 100%);
}
.button-red .text p {
  margin: 0;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
}
.button-red .icon {
  padding: 14px 14px 14px 25px;
  background: #FBBA00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 4px;
  margin-left: -15px;
  clip-path: polygon(0% 0, 100% 0, 100% 100%, 30% 100%, 0 0%);
}
.button-red:hover {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 4px;
  background: #FBBA00;
}
.button-red:hover .text p {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.button-red:hover .icon {
  background: #E63323;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.button-red:hover .icon img {
  -webkit-filter: invert(1);
          filter: invert(1);
}

html, body {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
}

body {
  background: #ffffff;
}

.container-fluid {
  --bs-gutter-x: 4.5rem;
}
@media (max-width: 768px) {
  .container-fluid {
    --bs-gutter-x: 1.5rem;
  }
}

header {
  position: relative;
  z-index: 10;
}

nav#navbar-home.is-scrolled {
  background: rgba(24, 24, 24, 0.9);
  -webkit-box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
          box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

#navbar-home {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  min-height: auto;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 20px -8px rgb(117, 117, 117);
          box-shadow: 0px 0px 20px -8px rgb(117, 117, 117);
}
#navbar-home .logo-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
#navbar-home .logo-menu img {
  max-width: 100%;
  height: auto;
}
#navbar-home .menu {
  width: 100%;
  padding: 10px 0;
}
#navbar-home .menu .logo-mobile {
  display: none;
}
#navbar-home .menu .close-button {
  display: none;
  position: absolute;
  top: 18px;
  left: 15px;
  padding: 15px;
}
#navbar-home .menu .items-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
#navbar-home .menu .items-header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
#navbar-home .menu .items-header ul li {
  padding: 0 5px;
  position: relative;
  cursor: pointer;
}
#navbar-home .menu .items-header ul li a {
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  position: relative;
  display: block;
  padding: 10px 15px;
}
#navbar-home .menu .items-header ul li a:hover p {
  font-weight: 700;
  color: #060220;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#navbar-home .menu .items-header ul li a p {
  margin: 0;
  font-size: 16px;
  color: #2c2c2c;
}
#navbar-home .menu .items-header ul .active a p {
  font-weight: 700;
  color: #060220;
}
#navbar-home .menu .items-header ul .menu-item.dropdown {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
#navbar-home .menu .items-header ul .menu-link {
  text-decoration: none;
  color: #2c2c2c;
  padding: 10px 0;
  display: inline-block;
}
#navbar-home .menu .items-header ul .menu-link:hover {
  color: #060220;
  font-weight: 700;
}
#navbar-home .menu .items-header ul .dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
#navbar-home .menu .items-header ul .dropdown-toggle::after {
  content: none;
}
#navbar-home .menu .items-header ul .dropdown-icon {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
#navbar-home .menu .items-header ul .dropdown.active .dropdown-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
#navbar-home .menu .items-header ul .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border-radius: 14px;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 20px 40px 20px 20px;
  margin-top: 10px;
  opacity: 0;
  visibility: hidden;
  display: block;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
}
#navbar-home .menu .items-header ul .submenu li {
  padding: 0;
  margin-bottom: 10px;
}
#navbar-home .menu .items-header ul .submenu li:last-child {
  margin: 0;
}
#navbar-home .menu .items-header ul .submenu li a {
  padding: 0;
  color: #2c2c2c;
}
#navbar-home .menu .items-header ul .submenu li a:hover {
  font-weight: 700;
  color: #060220;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
#navbar-home .menu .items-header ul .dropdown.active .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#navbar-home .buttons-lenes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
#navbar-home .content-button {
  display: none;
}
#navbar-home .content-button .brand {
  max-width: 35%;
}
#navbar-home .content-button .menu-button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
@media (min-width: 1081px) and (max-width: 1450px) {
  #navbar-home .menu .items-header ul li a {
    padding: 10px 5px;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  #navbar-home .buttons-lenes .button-red .text {
    padding: 12px 20px 14px 12px;
    clip-path: polygon(0 0, 86% 0, 100% 100%, 100% 100%, 0 100%);
  }
  #navbar-home .buttons-lenes .button-red .icon {
    margin-left: -10px;
    padding: 12px 12px;
  }
  #navbar-home .menu .items-header ul li a {
    text-align: center;
    padding: 10px 0;
  }
}
@media (max-width: 768px) {
  #navbar-home {
    padding: 12px 20px;
    -webkit-box-shadow: 0px 0px 18px 1px rgba(143, 136, 136, 0.71);
            box-shadow: 0px 0px 18px 1px rgba(143, 136, 136, 0.71);
  }
  #navbar-home .logo-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 60px 0 0 0;
  }
  #navbar-home .menu {
    padding: 20px;
    position: fixed;
    top: 0;
    right: -100%;
    width: 95%;
    background-color: #ffffff;
    height: 100%;
    -webkit-transition: right 0.3s ease;
    transition: right 0.3s ease;
    z-index: 15;
    -webkit-box-shadow: 0px 0px 20px -8px rgb(117, 117, 117);
            box-shadow: 0px 0px 20px -8px rgb(117, 117, 117);
    border-radius: 32px 0 0 32px;
  }
  #navbar-home .menu:after {
    content: "";
    position: absolute;
    left: 20%;
    top: -35px;
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 60px solid #E63323;
    -webkit-transform: rotate(35deg);
            transform: rotate(35deg);
  }
  #navbar-home .menu:before {
    content: "";
    position: absolute;
    right: 0;
    top: calc(50% - 80px);
    border-top: 80px solid transparent;
    border-bottom: 80px solid transparent;
    border-right: 80px solid #009FE3;
    z-index: 1;
  }
  #navbar-home .menu .items-header {
    padding: 30px 0 20px 0;
    display: block;
  }
  #navbar-home .menu .items-header ul {
    display: block;
    background: transparent;
    margin-bottom: 40px;
  }
  #navbar-home .menu .items-header ul .active a:after {
    content: none;
  }
  #navbar-home .menu .items-header ul li {
    margin-bottom: 20px;
    padding: 0 0 0 30px;
  }
  #navbar-home .menu .items-header ul li a {
    padding: 0;
  }
  #navbar-home .menu .items-header ul li a:hover:after {
    content: none;
  }
  #navbar-home .menu .items-header ul li a:before {
    content: none;
  }
  #navbar-home .menu .items-header ul li a p {
    color: #363435;
    font-size: 22px;
    font-weight: 400;
  }
  #navbar-home .menu .items-header ul .menu-item {
    margin: 0;
  }
  #navbar-home .menu .items-header ul .menu-item.dropdown {
    display: block;
  }
  #navbar-home .menu .items-header ul .menu-link {
    font-size: 22px;
  }
  #navbar-home .menu .items-header ul .submenu {
    position: relative;
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: none;
            box-shadow: none;
    margin: 0;
    padding: 20px 20px 20px 0;
  }
  #navbar-home .menu .items-header ul .submenu li {
    padding-left: 20px;
  }
  #navbar-home .menu .items-header ul .submenu li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #E63323;
  }
  #navbar-home .menu .items-header ul .submenu li a:hover {
    font-weight: 400;
  }
  #navbar-home .menu .items-header ul .dropdown-toggle {
    display: none;
  }
  #navbar-home .menu .close-button {
    display: block;
  }
  #navbar-home .buttons-lenes {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #navbar-home .content-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #navbar-home .content-button button img {
    max-width: 100%;
  }
  #navbar-home .content-button .brand {
    max-width: 100px;
  }
}

.banner-home {
  position: relative;
}
.banner-home:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 60%;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#009FE3), to(rgba(0, 159, 227, 0)));
  background: linear-gradient(to bottom, #009FE3 0%, rgba(0, 159, 227, 0) 100%);
}
.banner-home .before-left {
  position: absolute;
  bottom: 0;
  left: 20px;
}
.banner-home .before-top-right {
  position: absolute;
  top: 110px;
  right: 20px;
  z-index: 1;
}
.banner-home .before-top-right img {
  max-width: 90%;
}
.banner-home .before-bottom-right {
  position: absolute;
  bottom: 0;
  right: 20px;
}
.banner-home .image-banner {
  position: relative;
}
.banner-home .image-banner video {
  min-height: 745px;
}
.banner-home .image-banner .principal {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.banner-home .image-banner .button-youtube {
  position: absolute;
  width: 84px;
  height: 84px;
  left: calc(50% - 42px);
  top: calc(50% - 42px);
  cursor: pointer;
}
.banner-home .image-banner .button-youtube img {
  clip-path: none;
  max-width: 100%;
}
.banner-home .image-banner .tri-blue {
  position: absolute;
  right: 0;
  bottom: -30px;
  text-align: right;
}
.banner-home .image-banner .tri-blue img {
  max-width: 80%;
}
.banner-home .image-banner .tri-yellow {
  position: absolute;
  left: 0;
  top: 105px;
  text-align: left;
}
.banner-home .image-banner .tri-yellow img {
  max-width: 70%;
}
.banner-home .image-banner .tri-red {
  position: absolute;
  left: 0;
  bottom: 60px;
  text-align: left;
}
.banner-home .image-banner .tri-red img {
  max-width: 80%;
}
.banner-home .text-banner {
  padding: 200px 0 140px 0;
  position: relative;
}
.banner-home .text-banner .line-before {
  position: absolute;
  bottom: -12%;
  right: -18%;
}
.banner-home .text-banner .line-before img {
  max-width: 80%;
}
.banner-home .text-banner p {
  font-size: 26px;
  color: #060220;
  margin: 0;
}
.banner-home .text-banner h1 {
  font-size: 46px;
  color: #060220;
  margin-bottom: 15px;
}
.banner-home .text-banner h1 span {
  color: #009FE3;
}
.banner-home .text-banner .button-red .text {
  clip-path: polygon(0 0, 91% 0, 100% 100%, 100% 100%, 0 100%);
}
.banner-home .text-banner .button-red .text p {
  font-size: 16px;
  color: #ffffff;
}
@media (min-width: 1201px) and (max-width: 1400px) {
  .banner-home .image-banner .tri-yellow {
    top: 70px;
  }
  .banner-home .image-banner .tri-red {
    bottom: 35px;
  }
  .banner-home .image-banner .tri-blue {
    bottom: -55px;
  }
}
@media (min-width: 991px) and (max-width: 1200px) {
  .banner-home .image-banner video {
    min-height: 400px;
  }
  .banner-home .image-banner .tri-yellow {
    top: 50px;
  }
  .banner-home .image-banner .tri-red {
    bottom: 10px;
  }
  .banner-home .image-banner .tri-blue {
    bottom: -80px;
  }
}
@media (min-width: 768px) and (max-width: 990px) {
  .banner-home .before-top-right {
    display: none;
  }
  .banner-home .text-banner {
    padding: 130px 0 80px 0;
  }
  .banner-home .text-banner p {
    font-size: 20px;
  }
  .banner-home .text-banner h1 {
    font-size: 35px;
  }
  .banner-home .image-banner {
    height: 80%;
    padding-top: 50px;
  }
  .banner-home .image-banner video {
    min-height: 400px;
  }
  .banner-home .image-banner .tri-yellow {
    top: 65px;
  }
  .banner-home .image-banner .tri-red {
    bottom: 15px;
  }
  .banner-home .image-banner .tri-red img {
    max-width: 55%;
  }
  .banner-home .image-banner .tri-blue {
    bottom: -45px;
  }
  .banner-home .image-banner .tri-blue img {
    max-width: 55%;
  }
}
@media (max-width: 768px) {
  .banner-home:before {
    height: 20%;
  }
  .banner-home .before-left, .banner-home .before-top-right, .banner-home .before-bottom-right {
    display: none;
  }
  .banner-home .image-banner video {
    min-height: 450px;
  }
  .banner-home .image-banner .button-youtube {
    width: 50px;
    height: 50px;
    left: calc(50% - 25px);
    top: calc(50% - 25px);
  }
  .banner-home .image-banner .tri-yellow {
    top: 30px;
  }
  .banner-home .image-banner .tri-red {
    bottom: 25px;
  }
  .banner-home .image-banner .tri-red img {
    max-width: 60%;
  }
  .banner-home .image-banner .tri-blue {
    bottom: -45px;
  }
  .banner-home .image-banner .tri-blue img {
    max-width: 60%;
  }
  .banner-home .text-banner {
    padding: 140px 0 50px 0;
  }
  .banner-home .text-banner p {
    font-size: 18px;
  }
  .banner-home .text-banner h1 {
    font-size: 32px;
  }
  .banner-home .text-banner .line-before {
    bottom: -28%;
  }
  .banner-home .text-banner .line-before img {
    max-width: 65%;
  }
}

.characterizes {
  position: relative;
}
.characterizes .background-characterizes {
  position: absolute;
  bottom: 20px;
  left: 40px;
}
.characterizes .background-characterizes img {
  max-width: 100%;
}
.characterizes .text-characterizes {
  padding: 90px 30px;
}
.characterizes .text-characterizes h2 {
  font-size: 50px;
  line-height: 120%;
  margin: 20px 0;
}
.characterizes .text-characterizes p {
  font-size: 16px;
  color: #404040;
}
.characterizes .text-characterizes .button-red .text {
  clip-path: polygon(0 0, 91% 0, 100% 100%, 100% 100%, 0 100%);
}
.characterizes .text-characterizes .button-red .text p {
  color: #ffffff;
}
.characterizes .content-video {
  position: relative;
  height: 100%;
}
.characterizes .content-video .img-characterizes {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  max-width: 230px;
}
.characterizes .content-video .birds {
  position: absolute;
  left: -10%;
  top: 20%;
  z-index: 1;
  -webkit-animation: ladeo 2s linear infinite;
  animation: ladeo 2s linear infinite;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes ladeo {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(2deg);
    transform: rotate(2deg);
  }
  50% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  75% {
    -webkit-transform: rotate(-2deg);
    transform: rotate(-2deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.characterizes .content-video .cloud {
  position: absolute;
  left: -15%;
  bottom: 20%;
  z-index: 1;
}
.characterizes .content-video .video-wrapper {
  width: 94%;
  height: 100%;
  margin: 0 auto;
}
.characterizes .content-video .video-wrapper video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-mask-image: url("https://impresoseldia.com.co/wp-content/themes/impresoseldia/assets/img/mask2.png");
  mask-image: url("https://impresoseldia.com.co/wp-content/themes/impresoseldia/assets/img/mask2.png");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.characterizes .before-characterizes {
  position: absolute;
  right: 5%;
  top: calc(50% - 130px);
}
@media (min-width: 993px) and (max-width: 1200px) {
  .characterizes .before-characterizes {
    right: 10px;
    top: 45%;
  }
  .characterizes .before-characterizes img {
    max-width: 30px;
  }
  .characterizes .text-characterizes {
    padding: 10px 0;
  }
  .characterizes .text-characterizes h2 {
    font-size: 40px;
  }
  .characterizes .background-characterizes {
    left: -10%;
    bottom: 5%;
  }
  .characterizes .background-characterizes img {
    max-width: 85%;
  }
  .characterizes .content-video .video-wrapper {
    width: 100%;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .characterizes .text-characterizes {
    padding: 30px 0;
  }
  .characterizes .text-characterizes h2 {
    font-size: 36px;
  }
  .characterizes .background-characterizes {
    left: -10%;
    bottom: 18%;
  }
  .characterizes .before-characterizes {
    right: 5px;
    top: 45%;
  }
  .characterizes .before-characterizes img {
    max-width: 25px;
  }
  .characterizes .content-video .video-wrapper {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .characterizes .ord-1-mob {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .characterizes .ord-2-mob {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .characterizes .before-characterizes {
    right: 5px;
    top: 45%;
  }
  .characterizes .before-characterizes img {
    max-width: 18px;
  }
  .characterizes .background-characterizes {
    left: 0;
  }
  .characterizes .text-characterizes {
    padding: 80px 0;
  }
  .characterizes .text-characterizes h2 {
    font-size: 32px;
  }
  .characterizes .text-characterizes .colors {
    display: none;
  }
  .characterizes .content-video {
    height: 425px;
  }
  .characterizes .content-video .cloud {
    left: 55%;
    bottom: 35%;
  }
  .characterizes .content-video .img-characterizes {
    max-width: 170px;
  }
  .characterizes .content-video .video-wrapper {
    width: 100%;
  }
}

.services {
  position: relative;
  padding: 150px 0;
}
.services .tittle-services h2 {
  font-size: 50px;
}
.services .before-services {
  position: absolute;
  left: 5%;
  top: calc(50% - 130px);
}
.services .content-cards {
  margin: 0 auto;
  position: relative;
}
.services .content-cards .item-service {
  top: 12vh;
  position: sticky;
}
.services .content-cards .item-service:before {
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 90%;
  border: 1px solid #B0B0B0;
  border-radius: 20px;
  position: absolute;
}
.services .content-cards .item-service:first-child {
  z-index: 1;
}
.services .content-cards .item-service:first-child .text-service h2, .services .content-cards .item-service:first-child .text-service p {
  color: #ffffff;
}
.services .content-cards .item-service:first-child .text-service .num h4 {
  -webkit-text-stroke: 2.5px #72c1e4;
  text-stroke: 2.5px #72c1e4;
}
.services .content-cards .item-service:first-child:before {
  background: #009FE3;
}
.services .content-cards .item-service:nth-child(2) {
  z-index: 2;
}
.services .content-cards .item-service:nth-child(2) .text-service:before {
  background: repeating-linear-gradient(to bottom, #060220 0 10px, transparent 0px 25px);
}
.services .content-cards .item-service:nth-child(2) .text-service .num h4 {
  -webkit-text-stroke: 2.5px #d4d4d4;
  text-stroke: 2.5px #d4d4d4;
}
.services .content-cards .item-service:nth-child(2):before {
  background: #ffffff;
}
.services .content-cards .item-service:nth-child(3) {
  z-index: 3;
}
.services .content-cards .item-service:nth-child(3) .text-service .button-red:hover .icon {
  background: #E63323;
}
.services .content-cards .item-service:nth-child(3) .text-service .button-red .icon {
  background: #ffffff;
}
.services .content-cards .item-service:nth-child(3) .text-service .num h4 {
  -webkit-text-stroke: 2.5px #dba813;
  text-stroke: 2.5px #dba813;
}
.services .content-cards .item-service:nth-child(3):before {
  background: #FBBA00;
}
.services .content-cards .item-service:last-child {
  z-index: 4;
}
.services .content-cards .item-service:last-child .text-service h2, .services .content-cards .item-service:last-child .text-service p {
  color: #ffffff;
}
.services .content-cards .item-service:last-child .text-service .button-red:hover .icon {
  background: #ffffff;
}
.services .content-cards .item-service:last-child .text-service .button-red:hover .icon img {
  -webkit-filter: invert(0);
          filter: invert(0);
}
.services .content-cards .item-service:last-child .text-service .button-red .text {
  background: #ffffff;
}
.services .content-cards .item-service:last-child .text-service .button-red .text p {
  color: #060220;
}
.services .content-cards .item-service:last-child .text-service .num h4 {
  -webkit-text-stroke: 2.5px #e58c84;
  text-stroke: 2.5px #e58c84;
}
.services .content-cards .item-service:last-child:before {
  background: #E63323;
}
.services .content-cards .item-service .text-service {
  width: 100%;
  height: 100%;
  padding: 100px 70px 0 70px;
  position: relative;
  overflow: hidden;
}
.services .content-cards .item-service .text-service:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 90%;
  width: 1px;
  background: repeating-linear-gradient(to bottom, #ffffff 0 10px, transparent 0px 25px);
}
.services .content-cards .item-service .text-service h2 {
  font-size: 35px;
  margin-bottom: 25px;
}
.services .content-cards .item-service .text-service p {
  font-size: 16px;
  color: #404040;
}
.services .content-cards .item-service .text-service .button-red {
  position: relative;
  z-index: 1;
}
.services .content-cards .item-service .text-service .button-red .text {
  padding: 14px 65px 14px 32px;
}
.services .content-cards .item-service .text-service .button-red .text p {
  color: #ffffff;
}
.services .content-cards .item-service .text-service .num {
  position: absolute;
  bottom: -12%;
  right: 20px;
}
.services .content-cards .item-service .text-service .num h4 {
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
  font-size: 250px;
  line-height: 120%;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: transparent;
}
.services .content-cards .item-service .image-service {
  position: relative;
  padding: 0 20px 0 0;
}
.services .content-cards .item-service .image-service img {
  width: 100%;
  height: auto;
}
@media (min-width: 1200px) and (max-width: 1340px) {
  .services .before-services {
    left: 15px;
  }
}
@media (min-width: 991px) and (max-width: 1199px) {
  .services .before-services {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 990px) {
  .services .tittle-services h2 {
    font-size: 36px;
  }
  .services .content-cards .item-service .text-service {
    padding: 100px 20px 20px 20px;
  }
  .services .content-cards .item-service .text-service h2 {
    font-size: 28px;
  }
  .services .content-cards .item-service .text-service .num {
    right: 0;
    bottom: -20px;
  }
  .services .content-cards .item-service .text-service .num h4 {
    font-size: 120px;
  }
}
@media (max-width: 768px) {
  .services {
    padding: 50px 0;
  }
  .services .before-services {
    display: none;
  }
  .services .ord-2-mob {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .services .ord-1-mob {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .services .tittle-services {
    padding-bottom: 120px;
  }
  .services .tittle-services h2 {
    font-size: 32px;
  }
  .services .content-cards .item-service {
    top: 1px;
    margin-bottom: 100px;
  }
  .services .content-cards .item-service .image-service {
    padding: 120px 20px;
  }
  .services .content-cards .item-service .image-service img {
    position: absolute;
    left: 20px;
    width: calc(100% - 40px);
    top: -45%;
    max-height: 340px;
  }
  .services .content-cards .item-service:first-child .text-service:before {
    background: repeating-linear-gradient(to right, #ffffff 0 10px, transparent 0px 25px);
  }
  .services .content-cards .item-service:nth-child(2) .text-service:before {
    background: repeating-linear-gradient(to right, #060220 0 10px, transparent 0px 25px);
  }
  .services .content-cards .item-service:nth-child(3) .text-service:before {
    background: repeating-linear-gradient(to right, #ffffff 0 10px, transparent 0px 25px);
  }
  .services .content-cards .item-service:last-child .text-service:before {
    background: repeating-linear-gradient(to right, #ffffff 0 10px, transparent 0px 25px);
  }
  .services .content-cards .item-service .text-service {
    padding: 20px 20px 100px 20px;
  }
  .services .content-cards .item-service .text-service:before {
    left: 20px;
    width: calc(100% - 40px);
    height: 1px;
    bottom: 98%;
  }
  .services .content-cards .item-service .text-service h2 {
    font-size: 24px;
  }
  .services .content-cards .item-service .text-service .num {
    right: 0;
    bottom: -20px;
  }
  .services .content-cards .item-service .text-service .num h4 {
    font-size: 120px;
  }
}

.customers {
  position: relative;
  padding: 100px 0 70px 0;
  overflow: hidden;
}
.customers:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: -webkit-gradient(linear, left bottom, left top, from(#FFFFFF), color-stop(85%, transparent));
  background: linear-gradient(to top, #FFFFFF 0%, transparent 85%);
  pointer-events: none;
  z-index: 1;
}
.customers .img-customers {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  max-width: 350px;
}
.customers .tittle-customers {
  margin-bottom: 90px;
  text-align: center;
}
.customers .tittle-customers h2 {
  font-size: 50px;
}
.customers .swiperCustomers {
  width: 90%;
}
.customers .swiperCustomers:before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to right, #0b0a28 0 10px, transparent 12px 24px) top/100% 1.5px no-repeat, repeating-linear-gradient(to right, #0b0a28 0 10px, transparent 12px 24px) bottom/100% 1.5px no-repeat, repeating-linear-gradient(to bottom, #0b0a28 0 10px, transparent 12px 24px) left/1.5px 100% no-repeat, repeating-linear-gradient(to bottom, #0b0a28 0 10px, transparent 12px 24px) right/1.5px 100% no-repeat;
}
.customers .swiperCustomers .swiper-slide-next .item-customer:before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, #0b0a28 0 10px, transparent 12px 24px) left/1.5px 100% no-repeat, repeating-linear-gradient(to bottom, #0b0a28 0 10px, transparent 12px 24px) right/1.5px 100% no-repeat;
}
.customers .content-slider {
  position: relative;
}
.customers .content-slider .item-customer {
  position: relative;
}
.customers .content-slider .item-customer .head-customer {
  padding: 45px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.customers .content-slider .item-customer .head-customer .image-customer {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  margin-right: 20px;
}
.customers .content-slider .item-customer .head-customer .image-customer img {
  min-width: 65px;
  min-height: 65px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.customers .content-slider .item-customer .head-customer .text-customer p {
  color: #514e63;
  font-size: 16px;
  margin: 0;
  font-weight: 700;
}
.customers .content-slider .item-customer .head-customer .text-customer span {
  font-size: 15px;
  color: #6a6779;
}
.customers .content-slider .item-customer .description-customer {
  padding: 0 35px 32px 35px;
  min-height: 128px;
}
.customers .content-slider .item-customer .description-customer p {
  margin: 0;
  font-size: 16px;
  color: #060220;
  position: relative;
}
.customers .content-slider .item-customer .description-customer p:before {
  content: "“";
  color: #009FE3;
  font-size: 60px;
  position: absolute;
  left: -30px;
  top: -20px;
  font-family: Georgia, serif;
}
.customers .content-slider .item-customer .description-customer p:after {
  content: "”";
  color: #009FE3;
  font-size: 60px;
  position: absolute;
  right: -10px;
  bottom: -50px;
  font-family: Georgia, serif;
}
.customers .content-slider .item-customer .end-customer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 35px 35px 35px;
  border-top: 1px solid #060220;
}
.customers .content-slider .item-customer .end-customer p {
  font-size: 15px;
  margin: 0;
  color: #858292;
}
.customers .content-slider .button-customer-next, .customers .content-slider .button-customer-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 5;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 9px;
  -webkit-box-shadow: 0px 0px 18px 1px rgba(143, 136, 136, 0.71);
          box-shadow: 0px 0px 18px 1px rgba(143, 136, 136, 0.71);
}
.customers .content-slider .button-customer-next {
  right: var(--swiper-navigation-sides-offset, 0);
  left: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.customers .content-slider .button-customer-prev {
  left: var(--swiper-navigation-sides-offset, 0);
  right: auto;
}
.customers .image-colors {
  position: relative;
}
.customers .image-colors .before-bottom-left {
  position: absolute;
  left: -60px;
  top: -50px;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.customers .image-colors .before-bottom-left img {
  max-width: 90%;
}
.customers .image-colors .before-bottom-right {
  position: absolute;
  right: -60px;
  top: -50px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.customers .image-colors .before-bottom-right img {
  max-width: 90%;
}
.customers .image-colors .colors {
  position: relative;
  z-index: 1;
  text-align: center;
  height: 33px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 80px 0 0 0;
}
.customers .image-colors .colors img {
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
@media (max-width: 768px) {
  .customers {
    padding: 20px 0 70px 0;
  }
  .customers .img-customers {
    max-width: 200px;
  }
  .customers .swiperCustomers {
    width: 95%;
  }
  .customers .tittle-customers {
    margin: 0;
  }
  .customers .tittle-customers h2 {
    font-size: 32px;
    margin-bottom: 50px;
  }
  .customers .content-slider .item-customer .description-customer {
    padding: 0 50px 32px 50px;
  }
  .customers .image-colors .colors {
    width: 70%;
    height: 25px;
    margin: 80px auto 0 auto;
  }
  .customers .image-colors .before-bottom-left img {
    max-width: 55%;
  }
  .customers .image-colors .before-bottom-right {
    right: -35px;
    top: -17px;
  }
  .customers .image-colors .before-bottom-right img {
    max-width: 55%;
  }
}

.transform {
  position: relative;
  padding: 0;
}
.transform:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 60%;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#009FE3), to(rgba(0, 159, 227, 0)));
  background: linear-gradient(to bottom, #009FE3 0%, rgba(0, 159, 227, 0) 100%);
}
.transform .before-transform {
  position: absolute;
  left: 5%;
  bottom: 10%;
}
.transform .tittle-transform {
  text-align: center;
  position: relative;
  margin: 50px auto 0 auto;
  z-index: 1;
  width: 70%;
}
.transform .tittle-transform h2 {
  font-size: 40px;
  margin-bottom: 50px;
}
.transform .tittle-transform .button-red:hover {
  background: #ffffff;
}
.transform .tittle-transform .button-red:hover .icon {
  background: #FBBA00;
}
.transform .tittle-transform .button-red .text {
  clip-path: polygon(0 0, 91% 0, 100% 100%, 100% 100%, 0 100%);
}
.transform .tittle-transform .button-red .icon {
  background: #ffffff;
}
.transform .cards-transform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  min-height: 650px;
}
.transform .cards-transform .card {
  background: #ffffff;
  padding: 4px;
  border-radius: 15px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease-out;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease-out, -webkit-transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  position: absolute;
  width: 20%;
  text-decoration: none;
}
.transform .cards-transform .card video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.transform .cards-transform .card .backimg {
  height: 210px;
  border-radius: 15px;
  position: relative;
}
.transform .cards-transform .card .backimg .principal {
  min-width: 100%;
  height: 100%;
  border-radius: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}
.transform .cards-transform .card .backimg .play-icon {
  position: absolute;
  left: calc(50% - 40px);
  top: calc(50% - 40px);
}
.transform .cards-transform .card .backimg .play-icon img {
  width: 80px;
  height: 80px;
}
.transform .cards-transform .card .textcar {
  padding: 12px 20px;
}
.transform .cards-transform .card .textcar p {
  margin: 0;
  font-weight: 700;
  font-size: 20px;
}
.transform .cards-transform .card .textcar span {
  font-size: 14px;
}
.transform .cards-transform .card:first-child {
  left: 0;
  top: -15%;
}
.transform .cards-transform .card:nth-child(2) {
  left: 12%;
  top: -7%;
  z-index: 1;
}
.transform .cards-transform .card:nth-child(3) {
  left: 24%;
  top: 10%;
  z-index: 2;
}
.transform .cards-transform .card:nth-child(4) {
  left: 40%;
  top: 20%;
  z-index: 3;
}
.transform .cards-transform .card:nth-child(5) {
  left: 56%;
  top: 10%;
  z-index: 2;
}
.transform .cards-transform .card:nth-child(6) {
  left: 68%;
  top: -7%;
  z-index: 1;
}
.transform .cards-transform .card:last-child {
  left: 80%;
  top: -15%;
}
.transform .cards-transform.show .card {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition: opacity 0.7s ease-out, -webkit-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), -webkit-filter 0.6s ease-out;
  transition: opacity 0.7s ease-out, -webkit-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), -webkit-filter 0.6s ease-out;
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease-out;
  transition: opacity 0.7s ease-out, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease-out, -webkit-transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), -webkit-filter 0.6s ease-out;
}
.transform .dip-desk {
  display: block;
}
.transform .dip-mob {
  display: none;
}
@media (min-width: 1200px) and (max-width: 1340px) {
  .transform .before-transform {
    left: 15px;
  }
}
@media (min-width: 991px) and (max-width: 1199px) {
  .transform .before-transform {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1220px) {
  .transform .tittle-transform {
    width: 100%;
  }
  .transform .tittle-transform h2 {
    font-size: 36px;
    margin-bottom: 25px;
  }
  .transform .cards-transform {
    margin: 50px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .transform .cards-transform .card {
    width: 30%;
  }
  .transform .cards-transform .card .textcar {
    padding: 12px 10px;
  }
  .transform .cards-transform .card .textcar p {
    font-size: 17px;
  }
  .transform .cards-transform.show .card {
    position: relative;
    left: 0;
  }
}
@media (max-width: 768px) {
  .transform .before-transform {
    display: none;
  }
  .transform .dip-desk {
    display: none;
  }
  .transform .dip-mob {
    display: block;
  }
  .transform .tittle-transform {
    width: 100%;
    margin-bottom: 30px;
  }
  .transform .tittle-transform h2 {
    font-size: 32px;
    margin-bottom: 25px;
  }
  .transform .swiperTransformds {
    width: 100%;
  }
  .transform .cards-transform {
    min-height: 400px;
  }
  .transform .cards-transform .card {
    opacity: 1;
    left: 0;
    top: 0;
    width: 100%;
  }
  .transform .cards-transform .card .textcar span {
    min-height: 42px;
    display: block;
  }
  .transform .cards-transform .swiper-slide:first-child .card, .transform .cards-transform .swiper-slide:nth-child(2) .card, .transform .cards-transform .swiper-slide:nth-child(3) .card, .transform .cards-transform .swiper-slide:nth-child(4) .card, .transform .cards-transform .swiper-slide:nth-child(5) .card, .transform .cards-transform .swiper-slide:nth-child(6) .card, .transform .cards-transform .swiper-slide:last-child .card {
    left: 0;
    top: 0;
  }
  .transform .cards-transform.show .card {
    position: relative;
    width: 100%;
  }
}

.brands {
  position: relative;
  padding: 60px 0 0 0;
  z-index: 1;
}
.brands .img-brands {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  max-width: 230px;
}
.brands .splide__list {
  padding: 10px;
}
.brands h2 {
  font-size: 32px;
  margin-bottom: 40px;
  text-align: center;
}
.brands .item-brand {
  border-radius: 19px;
  background: #ffffff;
  margin: 10px 10px 30px 10px;
  display: block;
  text-align: center;
  padding: 10px;
  -webkit-box-shadow: 0px 0px 20px -8px rgb(117, 117, 117);
          box-shadow: 0px 0px 20px -8px rgb(117, 117, 117);
}
.brands .item-brand img {
  max-width: 100%;
  height: auto;
  mix-blend-mode: luminosity;
}
.brands .content-square {
  position: relative;
  padding: 0 0 140px 0;
}
.brands .content-square .square-left {
  position: absolute;
  left: -60px;
  bottom: 10px;
  width: 60px;
  height: 60px;
}
.brands .content-square .square-left img {
  max-width: 100%;
}
.brands .content-square .square-right {
  position: absolute;
  right: -60px;
  bottom: 10px;
  width: 60px;
  height: 60px;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
.brands .content-square .square-right img {
  max-width: 100%;
}
@media (max-width: 768px) {
  .brands .splide {
    width: 85%;
    margin: 0 auto;
  }
  .brands .img-brands {
    max-width: 170px;
  }
  .brands .content-square .square-left {
    left: 0;
  }
  .brands .content-square .square-right {
    right: 0;
  }
}

.know-more {
  position: relative;
  margin: 20px 0 0 0;
  padding: 0 0 80px 0;
}
.know-more .square-left {
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 60px;
  height: 60px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.know-more .square-left img {
  max-width: 100%;
}
.know-more .square-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}
.know-more .square-right img {
  max-width: 100%;
}
.know-more .tittle-know {
  text-align: center;
  margin-bottom: 55px;
}
.know-more .tittle-know h2 {
  font-size: 50px;
}
.know-more .item-know {
  background: #EFF9FF;
  border-radius: 12px;
  padding: 14px;
  display: block;
  text-decoration: none;
}
.know-more .item-know:hover {
  background: #009FE3;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.know-more .item-know:hover .image-know {
  overflow: hidden;
}
.know-more .item-know:hover .image-know img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.know-more .item-know:hover .text-know .social .insta img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.know-more .item-know:hover .text-know .social .text h4 {
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.know-more .item-know:hover .text-know .social .text span {
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.know-more .item-know:hover .text-know p {
  color: #ffffff;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.know-more .item-know .image-know {
  border-radius: 8px;
}
.know-more .item-know .image-know img {
  max-width: 100%;
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.know-more .item-know .text-know .social {
  margin: 14px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.know-more .item-know .text-know .social .brand {
  width: 55px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px;
}
.know-more .item-know .text-know .social .brand img {
  max-width: 100%;
  height: auto;
}
.know-more .item-know .text-know .social .text h4 {
  color: #4c4c63;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.know-more .item-know .text-know .social .text span {
  color: #4c4c63;
  font-size: 14px;
  margin: 0;
}
.know-more .item-know .text-know p {
  font-size: 14px;
  color: #4c4c63;
  margin: 0;
}
.know-more .content-swiper {
  position: relative;
}
.know-more .content-swiper .button-know-next, .know-more .content-swiper .button-know-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 5;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 9px;
  -webkit-box-shadow: 0px 0px 18px 1px rgba(143, 136, 136, 0.71);
          box-shadow: 0px 0px 18px 1px rgba(143, 136, 136, 0.71);
}
.know-more .content-swiper .button-know-next {
  right: var(--swiper-navigation-sides-offset, -20px);
  left: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.know-more .content-swiper .button-know-prev {
  left: var(--swiper-navigation-sides-offset, -20px);
  right: auto;
}
@media (max-width: 768px) {
  .know-more .square-left, .know-more .square-right {
    display: none;
  }
  .know-more .swiperKnow {
    width: 90%;
  }
  .know-more .content-swiper .button-know-next {
    right: var(--swiper-navigation-sides-offset, 10px);
  }
  .know-more .content-swiper .button-know-prev {
    left: var(--swiper-navigation-sides-offset, 10px);
  }
  .know-more .tittle-know h2 {
    font-size: 32px;
  }
  .know-more .item-know .text-know p {
    font-size: 16px;
  }
}

.footer {
  position: relative;
  background: #F4F4F4;
  padding: 80px 0 0 0;
}
.footer .brand-print {
  padding: 0 50px 5px 0;
}
.footer .brand-print img {
  max-width: 100%;
  height: auto;
}
.footer .brand-print .list-social {
  list-style: none;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0 0 50px;
}
.footer .brand-print .list-social li {
  margin-right: 20px;
}
.footer .brand-print .list-social li:last-child {
  margin: 0;
}
.footer .brand-print .list-social li a {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #F2F2F2;
  border-radius: 50%;
  background: #F2F2F2;
}
.footer .brand-print .list-social li a:hover {
  background: #FBBA00;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.footer .brand-print .list-social li a:hover img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.footer .list-footer h4 {
  color: #060220;
  font-size: 16px;
  margin-bottom: 15px;
  position: relative;
}
.footer .list-footer h4:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translate(-35%, -50%);
          transform: translate(-35%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #cfcfcf;
}
.footer .list-footer ul {
  padding: 0;
  list-style: none;
}
.footer .list-footer ul li {
  margin-bottom: 15px;
}
.footer .list-footer ul li p {
  margin: 0;
  font-weight: 700;
}
.footer .list-footer ul li a {
  text-decoration: none;
  color: #060220;
  font-size: 16px;
  display: block;
  overflow-wrap: break-word;
}
.footer .content-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 25px 0;
  margin: 20px 0 0 0;
  border-top: 1px solid #8E8E8E;
}
.footer .content-end p {
  font-size: 16px;
  margin: 0;
}
.footer .content-end p a{
    color: #060220;
}
@media (min-width: 769px) and (max-width: 1000px) {
  .footer .brand-print .list-social {
    margin: 10px 0 25px 0;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0 0;
  }
  .footer .brand-print img {
    max-width: 70%;
  }
  .footer .brand-print .list-social {
    margin: 10px 0 25px 0;
  }
  .footer .list-footer {
    margin-bottom: 35px;
    padding-left: 40px;
  }
  .footer .list-footer h4:before {
    left: -25px;
  }
  .footer .content-end {
    display: block;
    text-align: left;
    margin: 0;
    padding: 30px 0 20px 0;
  }
  .footer .content-end p {
    margin-bottom: 10px;
  }
}

.wpp-chat {
  position: fixed;
  right: 30px;
  top: 60%;
  z-index: 9;
}

.contact {
  position: relative;
  padding: 40px 0 100px 0;
}
.contact .tittle-contact h2 {
  font-size: 50px;
  color: #060220;
}
.contact .tittle-contact p {
  font-size: 14px;
  color: #3f3f3f;
}
.contact .item-button {
  margin: 20px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.contact .content-map {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  position: relative;
}
.contact .content-map #map {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}
.contact .content-map .list-items {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 20px;
  width: 75%;
  -webkit-box-shadow: 0px 0px 20px -8px rgb(117, 117, 117);
          box-shadow: 0px 0px 20px -8px rgb(117, 117, 117);
  background: #ffffff;
  border-radius: 16px;
}
.contact .content-map .list-items li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 10px;
}
.contact .content-map .list-items li .icon {
  margin-right: 10px;
  min-width: 20px;
  min-height: 20px;
}
.contact .content-map .list-items li .icon img {
  max-width: 100%;
}
.contact .content-map .list-items li a {
  font-size: 14px;
  text-decoration: none;
  color: #060220;
}
.contact .content-map .list-items li p {
  font-size: 14px;
  margin: 0;
  color: #060220;
}
.contact .form-talk .button-red .text {
  clip-path: polygon(0 0, 92% 0, 100% 100%, 100% 100%, 0 100%);
}
@media (min-width: 768px) and (max-width: 992px) {
  .contact .tittle-contact h2 {
    font-size: 40px;
  }
  .contact .content-map .list-items {
    bottom: 15px;
    right: 15px;
    width: calc(100% - 30px);
  }
  .contact .form-talk {
    padding: 20px 10px;
  }
  .contact .form-talk label {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .contact .tittle-contact h2 {
    font-size: 32px;
  }
  .contact .tittle-contact p {
    font-size: 16px;
  }
  .contact .item-button {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .contact .content-map {
    margin-top: 30px;
    height: 550px;
  }
  .contact .content-map .list-items {
    right: 10px;
    bottom: 10px;
    width: calc(100% - 20px);
  }
  .contact .form-talk {
    border-radius: 24px;
    padding: 24px 30px;
  }
}

.internal-contact {
  padding: 180px 0 100px 0;
}
.internal-contact .before-contact {
  position: absolute;
  left: 5%;
  top: 5%;
}
.internal-contact .content-map .before-bottom-right {
  right: -65px;
  bottom: -60px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  position: absolute;
}
.internal-contact .content-map .before-bottom-right img {
  max-width: 90%;
}
.internal-contact .form-talk .before-bottom-left {
  left: -65px;
  bottom: -60px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  position: absolute;
}
.internal-contact .form-talk .before-bottom-left img {
  max-width: 90%;
}
@media (min-width: 1200px) and (max-width: 1340px) {
  .internal-contact .before-contact {
    left: 15px;
  }
}
@media (min-width: 991px) and (max-width: 1199px) {
  .internal-contact .before-contact {
    display: none;
  }
}
@media (max-width: 768px) {
  .internal-contact {
    padding: 120px 0 80px 0;
  }
  .internal-contact .content-map .before-bottom-right {
    display: none;
  }
  .internal-contact .form-talk .before-bottom-left {
    display: none;
  }
  .internal-contact .before-contact {
    display: none;
  }
}

.blog {
  padding: 180px 0 100px 0;
  position: relative;
}
.blog .tittle-blog {
  margin: 40px 0 30px 0;
}
.blog h2 {
  margin: 0;
  font-size: 32px;
}
.blog .filters-head {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.blog .filters-head .search-input-wrapper {
  position: relative;
  width: 50%;
}
.blog .filters-head .search-input-wrapper .search-input {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  background: #e8e8e8;
}
.blog .filters-head .search-input-wrapper .search-input:focus {
  border-color: #009FE3;
}
.blog .filters-head .search-input-wrapper .search-input::-webkit-input-placeholder {
  color: #999;
}
.blog .filters-head .search-input-wrapper .search-input::-moz-placeholder {
  color: #999;
}
.blog .filters-head .search-input-wrapper .search-input:-ms-input-placeholder {
  color: #999;
}
.blog .filters-head .search-input-wrapper .search-input::-ms-input-placeholder {
  color: #999;
}
.blog .filters-head .search-input-wrapper .search-input::placeholder {
  color: #999;
}
.blog .filters-head .search-input-wrapper .search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #666;
  pointer-events: none;
  stroke-width: 2;
}
.blog .filters-head .select-wrapper {
  position: relative;
  width: 40%;
}
.blog .filters-head .select-wrapper .custom-select {
  width: 100%;
  padding: 12px 45px 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: white;
  cursor: pointer;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
  background: #e8e8e8;
  font-size: 16px;
  color: #808080;
}
.blog .filters-head .select-wrapper .custom-select:focus {
  border-color: #4A9EFF;
}
.blog .filters-head .select-wrapper .select-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: #666;
  pointer-events: none;
  stroke-width: 2;
}
.blog .filters-head .select-wrapper .select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #666;
  pointer-events: none;
  stroke-width: 2;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.blog .filters-head .select-wrapper .custom-select:focus + .select-arrow {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.blog .content-grids {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 3.5fr 20px 3.5fr 20px 5fr;
  grid-template-columns: 3.5fr 3.5fr 5fr;
  -ms-grid-rows: 500px 20px 400px;
  grid-template-rows: 500px 400px;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}
.blog .content-grids > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.blog .content-grids > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.blog .content-grids > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.blog .content-grids > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.blog .content-grids > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.blog .content-grids > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.blog .content-grids .card-blog--empty {
  opacity: 0;
  pointer-events: none;
}
.blog .content-grids .card-blog:nth-child(1) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-column: 1/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.blog .content-grids .card-blog:nth-child(2) {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.blog .content-grids .card-blog:nth-child(3) {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.blog .content-grids .card-blog:nth-child(4) {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.blog .content-grids .card-blog:nth-child(5) {
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-column: 3/4;
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
}
.blog .content-year {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  height: 100%;
}
.blog .content-year .select-year {
  border: none;
  outline: none;
  font-weight: 700;
}
.blog .card-blog {
  position: relative;
  border-radius: 16px;
}
.blog .card-blog:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
  border-radius: 16px;
}
.blog .card-blog img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.blog .card-blog .card-content {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: calc(100% - 40px);
}
.blog .card-blog .card-content .card-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.blog .card-blog .card-content .card-tags .tag {
  background-color: rgba(210, 241, 255, 0.8);
  border-radius: 60px;
  padding: 5px 20px;
}
.blog .card-blog .card-content .card-tags .tag p {
  color: #ffffff;
  font-size: 15px;
  margin: 0;
}
.blog .card-blog .card-content .card-tags .date p {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
}
.blog .card-blog .card-content .card-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px 0 10px 0;
  gap: 15px;
}
.blog .card-blog .card-content .card-description .text {
  width: 80%;
}
.blog .card-blog .card-content .card-description .text p {
  font-weight: 700;
  font-size: 20px;
  margin: 0;
  color: #ffffff;
}
.blog .card-blog .card-content .card-description a {
  color: #ffffff;
}
.blog .content-slider {
  position: relative;
}
.blog .content-slider .swiper-wrapper {
  height: auto;
}
.blog .content-slider .button-blog-next, .blog .content-slider .button-blog-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 5;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 9px;
  -webkit-box-shadow: 0px 0px 18px 1px rgba(143, 136, 136, 0.71);
          box-shadow: 0px 0px 18px 1px rgba(143, 136, 136, 0.71);
}
.blog .content-slider .button-blog-next {
  right: var(--swiper-navigation-sides-offset, -20px);
  left: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.blog .content-slider .button-blog-prev {
  left: var(--swiper-navigation-sides-offset, -20px);
  right: auto;
}
.blog .content-slider .swiperBlog .card-blog {
  height: 420px;
}
@media (min-width: 769px) and (max-width: 1080px) {
  .blog {
    padding: 160px 0;
  }
  .blog .card-blog .card-content {
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
  }
  .blog .card-blog .card-content .card-description .text p {
    font-size: 16px;
  }
  .blog .card-blog .card-content .card-tags {
    display: inline-block;
  }
  .blog .card-blog .card-content .card-tags .tag {
    margin-bottom: 10px;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .blog {
    padding: 130px 0 50px 0;
  }
  .blog .content-grids {
    display: block;
  }
  .blog .content-grids .card-blog {
    height: 300px;
    margin-bottom: 20px;
  }
  .blog .filters-head {
    margin: 0;
  }
  .blog .filters-head .select-wrapper {
    width: 50%;
  }
  .blog .content-year {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding: 10px 0 20px 0;
  }
  .blog .card-blog .card-content {
    bottom: 0;
  }
  .blog .card-blog .card-content .card-tags {
    display: inline-block;
  }
  .blog .card-blog .card-content .card-tags .tag {
    margin-bottom: 10px;
    text-align: center;
  }
  .blog .card-blog .card-content .card-description {
    margin: 10px 0;
  }
  .blog .content-slider .swiper-wrapper {
    height: auto;
  }
  .blog .content-slider .button-blog-next {
    right: var(--swiper-navigation-sides-offset, -5px);
  }
  .blog .content-slider .button-blog-prev {
    left: var(--swiper-navigation-sides-offset, -5px);
  }
  .blog .content-slider .swiperBlog .card-blog {
    min-height: 300px;
  }
  .blog .content-slider .swiperBlog .card-blog img {
    min-height: 300px;
  }
}

.breadcrumbs {
  position: relative;
  padding: 150px 0 50px 0;
}
.breadcrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  padding: 0;
}
.breadcrumbs ul li {
  padding-right: 24px;
  position: relative;
}
.breadcrumbs ul li:first-child:before {
  content: "";
  position: absolute;
  right: 12px;
  width: 1px;
  top: 10%;
  height: 80%;
  background: #060220;
}
.breadcrumbs ul li:last-child a {
  font-weight: 700;
}
.breadcrumbs ul li a {
  font-size: 16px;
  text-decoration: none;
  color: #060220;
}
@media (max-width: 768px) {
  .breadcrumbs {
    padding: 120px 0 15px 0;
  }
  .breadcrumbs ul li:last-child {
    padding: 0;
  }
  .breadcrumbs ul li a {
    font-size: 14px;
  }
}

.internal-blog {
  position: relative;
}
.internal-blog .categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.internal-blog .categories .category {
  background: #009FE3;
  border-radius: 60px;
  padding: 8px 14px;
}
.internal-blog .categories .category p {
  font-size: 14px;
  margin: 0;
  color: #ffffff;
}
.internal-blog .categories .date p {
  margin: 0;
  font-size: 16px;
  color: #2c2c2c;
}
.internal-blog h1 {
  font-size: 44px;
  color: #060220;
}
.internal-blog .content-write {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  height: 100%;
  padding-bottom: 30px;
}
.internal-blog .content-write .write-by {
  padding-right: 20px;
}
.internal-blog .content-write .write-by .text-write {
  margin-bottom: 20px;
}
.internal-blog .content-write .write-by .text-write p {
  font-size: 14px;
  margin: 0;
}
.internal-blog .content-write .print-by {
  padding-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  border-left: 1px solid #808080;
}
.internal-blog .content-write .print-by .image-print img {
  border-radius: 50%;
}
.internal-blog .content-write .print-by .text-print p {
  margin: 0;
  color: #514e63;
  font-weight: 700;
}
.internal-blog .content-write .print-by .text-print span {
  font-size: 14px;
  color: #6a6779;
}
.internal-blog .banner-internal {
  width: 100%;
  margin-bottom: 60px;
}
.internal-blog .banner-internal img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
.internal-blog .summary {
  background: #F6F6F6;
  padding: 20px 20px;
  border-radius: 8px;
  margin-bottom: 50px;
  position: relative;
}
.internal-blog .summary:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 100%;
  height: 1px;
  background: #626262;
}
.internal-blog .summary h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.internal-blog .summary ul li {
  margin-bottom: 20px;
  font-size: 16px;
}
.internal-blog .description {
  padding: 50px 0;
}
.internal-blog .description p {
  color: #2c2c2c;
}
.internal-blog .content-right p {
  font-size: 20px;
  color: #060220;
}
.internal-blog .content-right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  list-style: none;
  gap: 12px;
}
.internal-blog .content-right ul li {
  width: 45px;
  height: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #F6F6F6;
  border-radius: 50%;
}
.internal-blog .content-slider {
  position: relative;
}
.internal-blog .content-slider h2 {
  font-size: 35px;
  margin: 20px 0;
}
.internal-blog .content-slider .content-cards-desk {
  display: block;
}
.internal-blog .content-slider .swiperInternalBlog, .internal-blog .content-slider .button-blog-next, .internal-blog .content-slider .button-blog-prev {
  display: none;
}
.internal-blog .content-slider .button-blog-next, .internal-blog .content-slider .button-blog-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 5;
  cursor: pointer;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 9px;
  -webkit-box-shadow: 0px 0px 18px 1px rgba(143, 136, 136, 0.71);
          box-shadow: 0px 0px 18px 1px rgba(143, 136, 136, 0.71);
}
.internal-blog .content-slider .button-blog-next {
  right: var(--swiper-navigation-sides-offset, -5px);
  left: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.internal-blog .content-slider .button-blog-prev {
  left: var(--swiper-navigation-sides-offset, -5px);
  right: auto;
}
.internal-blog .content-slider .card-blog {
  position: relative;
  border-radius: 16px;
  margin-bottom: 20px;
}
.internal-blog .content-slider .card-blog:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.8)));
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.8));
  border-radius: 16px;
}
.internal-blog .content-slider .card-blog img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.internal-blog .content-slider .card-blog .card-content {
  position: absolute;
  left: 20px;
  bottom: 20px;
  width: calc(100% - 40px);
}
.internal-blog .content-slider .card-blog .card-content .card-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.internal-blog .content-slider .card-blog .card-content .card-tags .tag {
  background-color: rgba(210, 241, 255, 0.8);
  border-radius: 60px;
  padding: 5px 20px;
}
.internal-blog .content-slider .card-blog .card-content .card-tags .tag p {
  color: #ffffff;
  font-size: 15px;
  margin: 0;
}
.internal-blog .content-slider .card-blog .card-content .card-tags .date p {
  margin: 0;
  color: #ffffff;
  font-size: 15px;
}
.internal-blog .content-slider .card-blog .card-content .card-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px 0 0 0;
}
.internal-blog .content-slider .card-blog .card-content .card-description .text {
  width: 76%;
}
.internal-blog .content-slider .card-blog .card-content .card-description .text p {
  font-weight: 700;
  font-size: 20px;
  margin: 0;
  color: #ffffff;
}
.internal-blog .content-slider .card-blog .card-content .card-description a {
  color: #ffffff;
}
@media (min-width: 769px) and (max-width: 1080px) {
  .internal-blog h1 {
    font-size: 35px;
  }
  .internal-blog .content-slider h2 {
    font-size: 25px;
  }
  .internal-blog .content-slider .card-blog img {
    height: 300px;
  }
  .internal-blog .content-slider .card-blog .card-content {
    width: calc(100% - 20px);
    bottom: 10px;
    left: 10px;
  }
  .internal-blog .content-slider .card-blog .card-content .card-description a {
    font-size: 15px;
  }
  .internal-blog .content-slider .card-blog .card-content .card-description .text p {
    font-size: 17px;
  }
  .internal-blog .content-slider .card-blog .card-content .card-tags {
    display: block;
  }
  .internal-blog .content-slider .card-blog .card-content .card-tags .tag {
    display: inline-block;
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .internal-blog h1 {
    font-size: 32px;
  }
  .internal-blog .categories {
    display: block;
  }
  .internal-blog .categories .category {
    margin-bottom: 20px;
    display: inline-block;
  }
  .internal-blog .content-write {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
  .internal-blog .banner-internal img {
    min-height: 350px;
    -o-object-position: left;
       object-position: left;
  }
  .internal-blog .content-slider .content-cards-desk {
    display: none;
  }
  .internal-blog .content-slider .swiperInternalBlog {
    display: block;
  }
  .internal-blog .content-slider .button-blog-next, .internal-blog .content-slider .button-blog-prev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .internal-blog .content-slider .card-blog {
    margin: 0;
  }
  .internal-blog .content-slider .card-blog img {
    height: 320px;
  }
  .internal-blog .content-slider .card-blog .card-content {
    bottom: 0;
  }
  .internal-blog .content-slider .card-blog .card-content .card-tags {
    display: inline-block;
  }
  .internal-blog .content-slider .card-blog .card-content .card-tags .tag {
    margin-bottom: 10px;
    text-align: center;
  }
  .internal-blog .content-slider .card-blog .card-content .card-description {
    margin: 10px 0;
  }
  .internal-blog .content-slider .card-blog .card-content .card-description .text p {
    font-size: 18px;
  }
}

.banner-sustainability {
  position: relative;
  padding: 110px 0;
}
.banner-sustainability:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 50%;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#86d6f9), to(rgba(0, 159, 227, 0)));
  background: linear-gradient(to bottom, #86d6f9 0%, rgba(0, 159, 227, 0) 100%);
}
.banner-sustainability .cloud1 {
  position: absolute;
  left: -50px;
  top: 15%;
}
.banner-sustainability .cloud2 {
  position: absolute;
  right: 20px;
  top: 15%;
}
.banner-sustainability .mountain {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
}
.banner-sustainability .mountain img {
  max-width: 90%;
  height: auto;
}
.banner-sustainability .text-sustainability {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  width: 95%;
  position: relative;
  z-index: 1;
}
.banner-sustainability .text-sustainability h1 {
  font-size: 45px;
  color: #060220;
}
.banner-sustainability .text-sustainability p {
  font-size: 16px;
  color: #2c2c2c;
}
.banner-sustainability .content-image {
  position: relative;
  z-index: 1;
}
.banner-sustainability .content-image img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .banner-sustainability {
    padding: 140px 0 50px;
  }
  .banner-sustainability .cloud1, .banner-sustainability .cloud2, .banner-sustainability .mountain {
    display: none;
  }
  .banner-sustainability .text-sustainability h1 {
    font-size: 32px;
  }
}

.devein {
  position: relative;
  padding: 90px 0 100px 0;
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.devein .square-top-left {
  position: absolute;
  left: 20px;
  top: 50px;
  width: 40px;
  height: 40px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.devein .square-top-left img {
  max-width: 100%;
}
.devein .square-top-right {
  position: absolute;
  right: 20px;
  top: 50px;
  width: 40px;
  height: 40px;
}
.devein .square-top-right img {
  max-width: 100%;
}
.devein .square-bottom-left {
  position: absolute;
  left: 20px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.devein .square-bottom-left img {
  max-width: 100%;
}
.devein .square-bottom-right {
  position: absolute;
  right: 20px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.devein .square-bottom-right img {
  max-width: 100%;
}
.devein .before-left {
  position: absolute;
  left: 10px;
  top: 55%;
  width: 25px;
  height: 25px;
}
.devein .before-left img {
  max-width: 100%;
  height: auto;
}
.devein .before-right {
  position: absolute;
  right: 10px;
  top: 55%;
  width: 25px;
  height: 25px;
}
.devein .before-right img {
  max-width: 100%;
  height: auto;
}
.devein .tittle-devein {
  margin-bottom: 50px;
  text-align: center;
}
.devein .tittle-devein h2 {
  font-size: 35px;
}
.devein .image-center {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}
.devein .image-center img {
  max-width: 100%;
  height: auto;
}
.devein .content-list {
  position: relative;
  z-index: 1;
}
.devein .content-list ul {
  list-style: none;
  padding: 0;
}
.devein .content-list ul li {
  -webkit-box-shadow: 0px 0px 15px -5px #afadad;
          box-shadow: 0px 0px 15px -5px #afadad;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 16px;
  padding: 20px 20px;
  margin-bottom: 20px;
  background: #ffffff;
}
.devein .content-list ul li:hover {
  -webkit-box-shadow: 0px 0px 15px -5px #E63323;
          box-shadow: 0px 0px 15px -5px #E63323;
  -webkit-transition: -webkit-box-shadow 0.4s ease;
  transition: -webkit-box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease, -webkit-box-shadow 0.4s ease;
}
.devein .content-list ul li:hover .image {
  -webkit-box-shadow: 0px 0px 15px -5px #afadad;
          box-shadow: 0px 0px 15px -5px #afadad;
  -webkit-transition: -webkit-box-shadow 0.4s ease;
  transition: -webkit-box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease, -webkit-box-shadow 0.4s ease;
  overflow: hidden;
}
.devein .content-list ul li:hover .image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.devein .content-list ul li .image {
  -webkit-box-shadow: 0px 0px 15px -5px #E63323;
          box-shadow: 0px 0px 15px -5px #E63323;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 14px;
  min-width: 72px;
  height: 72px;
  margin-right: 22px;
}
.devein .content-list ul li .text p {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #010101;
}
.devein .content-list ul li .text span {
  font-size: 15px;
  color: #2c2c2c;
}
@media (min-width: 769px) and (max-width: 1080px) {
  .devein .order-mob-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .devein .order-mob-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .devein .order-mob-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media (max-width: 768px) {
  .devein {
    padding: 50px 0 0 0;
    margin-bottom: 20px;
    background-image: none !important;
  }
  .devein .square-top-left, .devein .square-top-right, .devein .before-left, .devein .before-right {
    display: none;
  }
  .devein .square-bottom-left {
    left: 10px;
    bottom: 0;
  }
  .devein .square-bottom-right {
    right: 10px;
    bottom: 0;
  }
  .devein .order-mob-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .devein .order-mob-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .devein .order-mob-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .devein .tittle-devein {
    margin: 0;
  }
  .devein .tittle-devein h2 {
    font-size: 32px;
  }
  .devein .content-list ul li {
    width: 95%;
    margin: 0 auto 20px auto;
  }
  .devein .content-list ul li .text p {
    font-size: 18px;
  }
  .devein .content-list ul li .text span {
    font-size: 14px;
  }
}

.prevention {
  position: relative;
  padding: 80px 0;
}
.prevention .tittle-prevention {
  width: 45%;
  margin-bottom: 70px;
}
.prevention .tittle-prevention h2 {
  font-size: 35px;
}
.prevention .image-prevention {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
  margin: 0 auto;
}
.prevention .image-prevention img {
  max-width: 100%;
  height: auto;
}
.prevention .content-list {
  position: relative;
  z-index: 1;
}
.prevention .content-list ul {
  list-style: none;
  padding: 0;
}
.prevention .content-list ul li {
  -webkit-box-shadow: 0px 0px 15px -5px #afadad;
          box-shadow: 0px 0px 15px -5px #afadad;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 16px;
  padding: 20px 12px;
  margin-bottom: 20px;
  background: #ffffff;
}
.prevention .content-list ul li:hover {
  -webkit-box-shadow: 0px 0px 15px -5px #009FE3;
          box-shadow: 0px 0px 15px -5px #009FE3;
  -webkit-transition: -webkit-box-shadow 0.4s ease;
  transition: -webkit-box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease, -webkit-box-shadow 0.4s ease;
}
.prevention .content-list ul li:hover .image {
  -webkit-box-shadow: 0px 0px 15px -5px #afadad;
          box-shadow: 0px 0px 15px -5px #afadad;
  -webkit-transition: -webkit-box-shadow 0.4s ease;
  transition: -webkit-box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease, -webkit-box-shadow 0.4s ease;
  overflow: hidden;
}
.prevention .content-list ul li:hover .image img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.prevention .content-list ul li .image {
  -webkit-box-shadow: 0px 0px 15px -5px #009FE3;
          box-shadow: 0px 0px 15px -5px #009FE3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 14px;
  min-width: 65px;
  height: 65px;
  margin-right: 15px;
}
.prevention .content-list ul li .text p {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #2c2c2c;
}
.prevention .content-list ul li .text span {
  font-size: 15px;
  color: #2c2c2c;
}
@media (min-width: 769px) and (max-width: 1080px) {
  .prevention .tittle-prevention {
    text-align: center;
    width: 100%;
    margin-bottom: 35px;
  }
  .prevention .image-prevention {
    height: 100%;
  }
  .prevention .content-list {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .prevention {
    padding: 40px 0;
  }
  .prevention .tittle-prevention {
    width: 100%;
  }
  .prevention .tittle-prevention h2 {
    font-size: 32px;
  }
  .prevention .content-list {
    margin-top: 40px;
  }
}

.reports {
  position: relative;
  padding: 80px 0 30px 0;
}
.reports .tittle-reports h2 {
  font-size: 35px;
  margin-bottom: 10px;
}
.reports .rules {
  padding: 10px 0;
}
.reports .rules .rule {
  background: #f5f5f5;
  border-radius: 16px;
  border: 1px solid #cacaca;
  padding: 20px 20px;
  margin-bottom: 20px;
}
.reports .rules .rule:hover {
  -webkit-box-shadow: 0px 0px 15px -5px #afadad;
          box-shadow: 0px 0px 15px -5px #afadad;
  -webkit-transition: -webkit-box-shadow 0.4s ease;
  transition: -webkit-box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease, -webkit-box-shadow 0.4s ease;
}
.reports .rules .rule p {
  font-size: 15px;
  min-height: auto;
}
.reports .rules .rule h4 {
  font-size: 20px;
  min-height: 48;
}
.reports .rules .rule .button-download {
  background: #ffffff;
}
.reports .rules .rule .button-download .text p {
  min-height: auto;
}
.reports .rules .rule .button-download:hover {
  background: #E63323;
}
.reports .image-reports {
  width: 85%;
  margin: 0 auto;
  padding-top: 25px;
}
.reports .image-reports img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .reports .tittle-reports h2 {
    font-size: 32px;
  }
  .reports .rules {
    padding: 30px 0 60px 0;
  }
  .reports .image-reports {
    width: 90%;
    padding-top: 30px;
  }
}

.security {
  position: relative;
  padding: 100px 0 150px 0;
}
.security .before-security {
  position: absolute;
  right: -10%;
  bottom: 0;
  text-align: right;
}
.security .before-security img {
  max-width: 90%;
}
.security .tittle-security {
  margin-bottom: 35px;
}
.security .tittle-security h2 {
  font-size: 35px;
}
.security .yellow .icon-security {
  -webkit-box-shadow: 0px 0px 15px -5px #FBBA00;
          box-shadow: 0px 0px 15px -5px #FBBA00;
}
.security .red .icon-security {
  -webkit-box-shadow: 0px 0px 15px -5px #E63323;
          box-shadow: 0px 0px 15px -5px #E63323;
}
.security .blue .icon-security {
  -webkit-box-shadow: 0px 0px 15px -5px #009FE3;
          box-shadow: 0px 0px 15px -5px #009FE3;
}
.security .content-cards-right {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.security .item-security {
  border: 1px solid #B5B5B5;
  border-radius: 16px;
  padding: 20px 25px;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
  background: #ffffff;
}
.security .item-security:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 0 25px 40px;
  border-color: transparent transparent transparent #FBBA00;
}
.security .item-security:after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 0;
  height: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  border-style: solid;
  border-width: 10px 0 35px 65px;
  border-color: transparent transparent transparent #009FE3;
}
.security .item-security:hover {
  -webkit-box-shadow: 0px 0px 15px -5px #afadad;
          box-shadow: 0px 0px 15px -5px #afadad;
  -webkit-transition: -webkit-box-shadow 0.4s ease;
  transition: -webkit-box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease, -webkit-box-shadow 0.4s ease;
}
.security .item-security:hover .icon-security {
  -webkit-box-shadow: 0px 0px 15px -5px #afadad;
          box-shadow: 0px 0px 15px -5px #afadad;
  -webkit-transition: -webkit-box-shadow 0.4s ease;
  transition: -webkit-box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease;
  transition: box-shadow 0.4s ease, -webkit-box-shadow 0.4s ease;
  overflow: hidden;
}
.security .item-security:hover .icon-security img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.security .item-security .icon-security {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
}
.security .item-security .icon-security img {
  max-width: 100%;
  height: auto;
}
.security .item-security .text-security {
  min-height: 152px;
}
.security .item-security .text-security h4 {
  color: #2c2c2c;
  font-weight: 600;
  font-size: 20px;
}
.security .item-security .text-security p {
  color: #2c2c2c;
}
.security .image-security {
  width: 85%;
  margin: 0 0 0 auto;
  position: sticky;
  top: 120px;
}
.security .image-security img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 769px) and (max-width: 1080px) {
  .security .image-security {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .security {
    padding: 50px 0;
  }
  .security .before-security {
    right: 0;
    bottom: 72%;
  }
  .security .before-security img {
    max-width: 120%;
  }
  .security .g-5 {
    --bs-gutter-y: auto;
  }
  .security .order-1-mobile {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .security .order-2-mobile {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .security .tittle-security {
    text-align: center;
  }
  .security .tittle-security h2 {
    font-size: 32px;
  }
  .security .image-security {
    width: 100%;
    margin-bottom: 50px;
  }
}

.our-proccess {
  position: relative;
  padding: 80px 0 140px;
}
.our-proccess .before-tri {
  position: absolute;
  right: 0;
  top: calc(50% - 25px);
}
.our-proccess .text-proccess {
  padding-left: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.our-proccess .text-proccess h2 {
  margin: 18px 0;
  font-size: 46px;
  color: #161616;
}
.our-proccess .image-proccess {
  border-radius: 16px;
}
.our-proccess .image-proccess:hover {
  -webkit-box-shadow: 0px 0px 30px -5px #009FE3;
          box-shadow: 0px 0px 30px -5px #009FE3;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.our-proccess .image-proccess img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 769px) and (max-width: 1080px) {
  .our-proccess .image-proccess {
    height: 60%;
  }
  .our-proccess .image-proccess img {
    height: 100%;
  }
  .our-proccess .text-proccess {
    padding: 0;
  }
  .our-proccess .text-proccess h2 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .our-proccess {
    padding: 70px 0;
  }
  .our-proccess .before-tri {
    display: none;
  }
  .our-proccess .text-proccess {
    padding: 45px 0 0 0;
  }
  .our-proccess .text-proccess h2 {
    font-size: 32px;
  }
}

.certifications {
  position: relative;
  padding: 20px 0 50px 0;
  overflow-x: hidden;
}
.certifications .content-rules {
  padding: 150px 0;
}
.certifications .content-rules .text-certifications {
  width: 70%;
  margin-bottom: 50px;
}
.certifications .content-rules .text-certifications h2 {
  font-size: 46px;
}
.certifications .content-rules .text-certifications p {
  color: #161616;
}
.certifications .content-rules .rules {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.certifications .content-rules .rules .rule {
  background: #f5f5f5;
  border-radius: 16px;
  border: 1px solid #cacaca;
  padding: 20px 20px;
}
.certifications .content-rules .rules .rule p {
  font-size: 15px;
  min-height: 68px;
}
.certifications .content-rules .rules .rule .button-download {
  background: #ffffff;
}
.certifications .content-rules .rules .rule .button-download .text p {
  min-height: auto;
}
.certifications .content-rules .rules .rule .button-download:hover {
  background: #E63323;
}
.certifications .image-certifications {
  position: relative;
  width: 150%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
.certifications .image-certifications img {
  max-width: 100%;
  position: absolute;
  left: 25%;
}
@media (min-width: 768px) and (max-width: 992px) {
  .certifications .content-rules .text-certifications {
    width: 100%;
  }
  .certifications .content-rules .text-certifications h2 {
    font-size: 36px;
  }
  .certifications .content-rules .rules {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
}
@media (max-width: 768px) {
  .certifications {
    overflow-x: visible;
  }
  .certifications .content-rules {
    padding: 75px 0 50px 0;
  }
  .certifications .content-rules .text-certifications {
    width: 100%;
  }
  .certifications .content-rules .text-certifications h2 {
    font-size: 32px;
  }
  .certifications .content-rules .text-certifications h2 p {
    font-size: 16px;
  }
  .certifications .content-rules .rules {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
  .certifications .image-certifications {
    width: 100%;
  }
  .certifications .image-certifications img {
    position: relative;
  }
}

.pillars {
  position: relative;
  padding: 150px 0 100px 0;
}
.pillars .tittle-pillars {
  text-align: center;
  margin-bottom: 80px;
}
.pillars .tittle-pillars h2 {
  font-size: 46px;
}
.pillars .verde:hover {
  -webkit-box-shadow: 0px 0px 15px -5px #4CAF50;
          box-shadow: 0px 0px 15px -5px #4CAF50;
}
.pillars .verde .overlay {
  background-color: #4CAF50;
}
.pillars .azul-french:hover {
  -webkit-box-shadow: 0px 0px 15px -5px #1565C0;
          box-shadow: 0px 0px 15px -5px #1565C0;
}
.pillars .azul-french .overlay {
  background-color: #1565C0;
}
.pillars .azul-victoria:hover {
  -webkit-box-shadow: 0px 0px 15px -5px #0D47A1;
          box-shadow: 0px 0px 15px -5px #0D47A1;
}
.pillars .azul-victoria .overlay {
  background-color: #0D47A1;
}
.pillars .naranja:hover {
  -webkit-box-shadow: 0px 0px 15px -5px #FB8C00;
          box-shadow: 0px 0px 15px -5px #FB8C00;
}
.pillars .naranja .overlay {
  background-color: #FB8C00;
}
.pillars .rojo:hover {
  -webkit-box-shadow: 0px 0px 15px -5px #DF3F32;
          box-shadow: 0px 0px 15px -5px #DF3F32;
}
.pillars .rojo .overlay {
  background-color: #DF3F32;
}
.pillars .azul-scuba:hover {
  -webkit-box-shadow: 0px 0px 15px -5px #00ACC1;
          box-shadow: 0px 0px 15px -5px #00ACC1;
}
.pillars .azul-scuba .overlay {
  background-color: #00ACC1;
}
.pillars .amarillo:hover {
  -webkit-box-shadow: 0px 0px 15px -5px #FFC300;
          box-shadow: 0px 0px 15px -5px #FFC300;
}
.pillars .amarillo .overlay {
  background-color: #FFC300;
}
.pillars .fucsia:hover {
  -webkit-box-shadow: 0px 0px 15px -5px #CA4286;
          box-shadow: 0px 0px 15px -5px #CA4286;
}
.pillars .fucsia .overlay {
  background-color: #CA4286;
}
.pillars .rosado:hover {
  -webkit-box-shadow: 0px 0px 15px -5px #F48FB1;
          box-shadow: 0px 0px 15px -5px #F48FB1;
}
.pillars .rosado .overlay {
  background-color: #F48FB1;
}
.pillars .gris:hover {
  -webkit-box-shadow: 0px 0px 15px -5px #757575;
          box-shadow: 0px 0px 15px -5px #757575;
}
.pillars .gris .overlay {
  background-color: #757575;
}
.pillars .item-pillar {
  padding: 15px 15px;
  margin: 10px;
  border-radius: 16px;
  -webkit-box-shadow: 0px 0px 15px -5px #afadad;
          box-shadow: 0px 0px 15px -5px #afadad;
}
.pillars .item-pillar:hover .image-container .overlay {
  opacity: 0;
}
.pillars .item-pillar .image-container {
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
}
.pillars .item-pillar .image-container img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.pillars .item-pillar .image-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: 16px;
}
.pillars .item-pillar .text-pillar h4 {
  font-size: 20px;
  margin: 0;
}
.pillars .item-pillar .text-pillar p {
  margin: 0;
  font-size: 16px;
}
.pillars .content-pillars {
  position: relative;
}
.pillars .content-pillars .button-pillar-next, .pillars .content-pillars .button-pillar-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 9px;
  -webkit-box-shadow: 0px 0px 18px 1px rgba(143, 136, 136, 0.71);
          box-shadow: 0px 0px 18px 1px rgba(143, 136, 136, 0.71);
}
.pillars .content-pillars .button-pillar-next {
  right: var(--swiper-navigation-sides-offset, -20px);
  left: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.pillars .content-pillars .button-pillar-prev {
  left: var(--swiper-navigation-sides-offset, -20px);
  right: auto;
}
.pillars .square-top-left {
  position: absolute;
  left: 20px;
  top: 50px;
  width: 60px;
  height: 60px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.pillars .square-top-left img {
  max-width: 100%;
}
.pillars .square-top-right {
  position: absolute;
  right: 20px;
  top: 50px;
  width: 60px;
  height: 60px;
}
.pillars .square-top-right img {
  max-width: 100%;
}
.pillars .square-bottom-left {
  position: absolute;
  left: 20px;
  bottom: 10px;
  width: 60px;
  height: 60px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.pillars .square-bottom-left img {
  max-width: 100%;
}
.pillars .square-bottom-right {
  position: absolute;
  right: 20px;
  bottom: 10px;
  width: 60px;
  height: 60px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.pillars .square-bottom-right img {
  max-width: 100%;
}
.pillars .before-left {
  position: absolute;
  left: 10px;
  top: 55%;
  width: 25px;
  height: 25px;
}
.pillars .before-left img {
  max-width: 100%;
  height: auto;
}
.pillars .before-right {
  position: absolute;
  right: 10px;
  top: 55%;
  width: 25px;
  height: 25px;
}
.pillars .before-right img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 769px) and (max-width: 1080px) {
  .pillars {
    padding: 100px 0;
  }
  .pillars .before-left, .pillars .before-right {
    display: none;
  }
  .pillars .tittle-pillars {
    margin-bottom: 50px;
  }
  .pillars .tittle-pillars h2 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .pillars {
    padding: 100px 0;
  }
  .pillars .before-left, .pillars .before-right {
    display: none;
  }
  .pillars .verde {
    -webkit-box-shadow: 0px 0px 15px -5px #4CAF50;
            box-shadow: 0px 0px 15px -5px #4CAF50;
  }
  .pillars .azul-french {
    -webkit-box-shadow: 0px 0px 15px -5px #1565C0;
            box-shadow: 0px 0px 15px -5px #1565C0;
  }
  .pillars .azul-victoria {
    -webkit-box-shadow: 0px 0px 15px -5px #0D47A1;
            box-shadow: 0px 0px 15px -5px #0D47A1;
  }
  .pillars .naranja {
    -webkit-box-shadow: 0px 0px 15px -5px #FB8C00;
            box-shadow: 0px 0px 15px -5px #FB8C00;
  }
  .pillars .rojo {
    -webkit-box-shadow: 0px 0px 15px -5px #DF3F32;
            box-shadow: 0px 0px 15px -5px #DF3F32;
  }
  .pillars .tittle-pillars {
    margin-bottom: 40px;
  }
  .pillars .tittle-pillars h2 {
    font-size: 32px;
  }
  .pillars .content-pillars {
    width: 90%;
    margin: 0 auto;
  }
  .pillars .item-pillar .image-container .overlay {
    display: none;
  }
}

.proposal {
  padding: 100px 0;
  background-color: #F6F6F6;
  background-size: 100% 100%;
  position: relative;
}
.proposal:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), color-stop(85%, transparent));
  background: linear-gradient(to bottom, #FFFFFF 0%, transparent 85%);
  pointer-events: none;
  z-index: 1;
}
.proposal:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: -webkit-gradient(linear, left bottom, left top, from(#FFFFFF), color-stop(85%, transparent));
  background: linear-gradient(to top, #FFFFFF 0%, transparent 85%);
  pointer-events: none;
  z-index: 1;
}
.proposal .image-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.proposal .image-container .diagonal-image {
  position: relative;
  opacity: 0;
  -webkit-transform: translate(-150px, -200px) rotate(-15deg);
  transform: translate(-150px, -200px) rotate(-15deg);
  -webkit-transition: all 2.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: all 2.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  max-width: 120%;
  left: -20%;
  height: auto;
}
.proposal .image-container .diagonal-image.slide-in {
  opacity: 1;
  -webkit-transform: translate(0, 0) rotate(0deg);
  transform: translate(0, 0) rotate(0deg);
  -webkit-animation: float 6s ease-in-out 2.5s infinite;
  animation: float 6s ease-in-out 2.5s infinite;
}
.proposal .fade-in-section {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: opacity 1.2s ease-out 0.6s, -webkit-transform 1.2s ease-out 0.6s;
  transition: opacity 1.2s ease-out 0.6s, -webkit-transform 1.2s ease-out 0.6s;
  transition: opacity 1.2s ease-out 0.6s, transform 1.2s ease-out 0.6s;
  transition: opacity 1.2s ease-out 0.6s, transform 1.2s ease-out 0.6s, -webkit-transform 1.2s ease-out 0.6s;
}
.proposal .fade-in-section.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.proposal .text-proposal {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 1;
}
.proposal .text-proposal h2 {
  font-size: 46px;
  margin: 20px 0;
}
.proposal .text-proposal p {
  line-height: 120%;
  color: #161616;
}
@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    -webkit-transform: translate(8px, -15px) rotate(2deg);
    transform: translate(8px, -15px) rotate(2deg);
  }
  50% {
    -webkit-transform: translate(-5px, -25px) rotate(-1deg);
    transform: translate(-5px, -25px) rotate(-1deg);
  }
  75% {
    -webkit-transform: translate(-8px, -15px) rotate(-2deg);
    transform: translate(-8px, -15px) rotate(-2deg);
  }
}
@keyframes float {
  0%, 100% {
    -webkit-transform: translate(0, 0) rotate(0deg);
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    -webkit-transform: translate(8px, -15px) rotate(2deg);
    transform: translate(8px, -15px) rotate(2deg);
  }
  50% {
    -webkit-transform: translate(-5px, -25px) rotate(-1deg);
    transform: translate(-5px, -25px) rotate(-1deg);
  }
  75% {
    -webkit-transform: translate(-8px, -15px) rotate(-2deg);
    transform: translate(-8px, -15px) rotate(-2deg);
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .proposal .image-container .diagonal-image {
    left: 0;
    max-width: 100%;
  }
  .proposal .text-proposal {
    width: 100%;
  }
  .proposal .text-proposal h2 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .proposal {
    background-size: cover;
    padding: 60px 0;
  }
  .proposal .image-container .diagonal-image {
    max-width: 70%;
    margin: 0 auto;
    left: auto;
  }
  .proposal .text-proposal {
    width: 100%;
    margin-top: 40px;
  }
  .proposal .text-proposal h2 {
    font-size: 32px;
  }
}

.our-history {
  position: relative;
  padding: 50px 0;
}
.our-history .tittle-history {
  text-align: center;
  margin-bottom: 70px;
}
.our-history .tittle-history h2 {
  font-size: 46px;
}
.our-history .swiper-backface-hidden .swiper-slide {
  height: auto !important;
}
.our-history .swiper-slide-thumb-active .text-history:before {
  background: #009FE3;
}
.our-history .swiper-slide-thumb-active .text-history:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20.5px 0 20.5px 30px;
  border-color: transparent transparent transparent #0095DA;
  border-radius: 5px;
  left: -50px;
  top: 0;
}
.our-history .swiper-slide-thumb-active .text-history h2 {
  color: #009FE3;
}
.our-history .text-history {
  width: 80%;
  padding: 0 0 100px 60px;
  position: relative;
  border-left: 1px solid #060220;
  margin-left: 40px;
}
.our-history .text-history:before {
  content: "";
  position: absolute;
  left: -6px;
  top: 15px;
  width: 10px;
  height: 10px;
  background: #626262;
  border-radius: 50%;
}
.our-history .text-history h2 {
  color: #626262;
  font-size: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.our-history .text-history h2 span {
  font-size: 18px;
  font-weight: 400;
}
.our-history .text-history p {
  color: #626262;
}
.our-history .image-history img {
  max-width: 100%;
  height: auto;
}
.our-history .history-sticky-wrapper {
  position: sticky;
  top: 150px;
}
.our-history .content-dots {
  display: none;
}
@media (min-width: 769px) and (max-width: 1080px) {
  .our-history .tittle-history {
    margin-bottom: 50px;
  }
  .our-history .tittle-history h2 {
    font-size: 36px;
  }
  .our-history .text-history {
    padding: 0 0 90px 30px;
    width: 90%;
  }
}
@media (max-width: 768px) {
  .our-history .ord-1-mob {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .our-history .ord-2-mob {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .our-history .image-history {
    width: 80%;
    margin: 0 auto;
  }
  .our-history .tittle-history {
    margin-bottom: 40px;
  }
  .our-history .tittle-history h2 {
    font-size: 32px;
  }
  .our-history .content-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
    padding-bottom: 20px;
  }
  .our-history .content-dots .button-year-next, .our-history .content-dots .button-year-prev {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 9px;
    -webkit-box-shadow: 0px 0px 18px 1px rgba(143, 136, 136, 0.71);
            box-shadow: 0px 0px 18px 1px rgba(143, 136, 136, 0.71);
  }
  .our-history .content-dots .button-year-next {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .our-history .text-history {
    width: 100%;
    margin: 0 0 40px 0;
    padding: 0 0 40px 0;
    border-left: none;
    border-bottom: 1px solid #060220;
  }
  .our-history .text-history:before {
    top: auto;
    bottom: -5px;
    left: 30px;
  }
  .our-history .swiper-slide-thumb-active .text-history:after {
    top: auto;
    bottom: -50px;
    left: 20px;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

.banner-us {
  position: relative;
}
.banner-us:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 50%;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#86d6f9), to(rgba(0, 159, 227, 0)));
  background: linear-gradient(to bottom, #86d6f9 0%, rgba(0, 159, 227, 0) 100%);
}
.banner-us .cloud1 {
  position: absolute;
  left: -50px;
  top: 15%;
}
.banner-us .cloud2 {
  position: absolute;
  right: 20px;
  top: 15%;
}
.banner-us .mountain {
  position: absolute;
  left: 0;
  bottom: 0;
  text-align: left;
}
.banner-us .mountain img {
  max-width: 90%;
  height: auto;
}
.banner-us .text-banner {
  position: relative;
  z-index: 1;
  padding: 200px 40px 250px 0;
}
.banner-us .text-banner h1 {
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 40px;
}
.banner-us .text-banner h1 span {
  color: #009FE3;
}
.banner-us .text-banner p {
  font-size: 16px;
}
.banner-us .content-banner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  height: 100%;
  padding: 70px 20px 0 80px;
}
.banner-us .content-banner .line-before {
  position: absolute;
  left: -100%;
  top: 25%;
}
.banner-us .content-banner .line-before img {
  max-width: 85%;
  height: auto;
}
.banner-us .content-banner .tri-yellow {
  position: absolute;
  left: -15px;
  bottom: 20%;
  text-align: left;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.banner-us .content-banner .tri-yellow img {
  max-width: 70%;
}
.banner-us .content-banner .image {
  position: relative;
}
.banner-us .content-banner .image img {
  border-radius: 16px;
  max-width: 100%;
  height: auto;
}
.banner-us .content-banner .figureblue {
  margin: -30px 0 30px 0;
}
.banner-us .content-banner .figureblue img {
  max-width: 70%;
  height: auto;
}
.banner-us .content-banner .figurered {
  margin: 20px 0 0 0;
  text-align: right;
}
.banner-us .content-banner .figurered img {
  max-width: 90%;
  height: auto;
}
.banner-us .content-banner .side-left .image:first-child {
  margin-bottom: 20px;
}
@media (min-width: 993px) and (max-width: 1400px) {
  .banner-us .text-banner {
    padding: 150px 0;
  }
  .banner-us .content-banner .line-before img {
    max-width: 75%;
  }
  .banner-us .content-banner .tri-yellow {
    display: none;
  }
  .banner-us .content-banner .figureblue img {
    max-width: 60%;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .banner-us .text-banner {
    padding: 120px 0 20px 0;
  }
  .banner-us .text-banner h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .banner-us .content-banner {
    padding: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .banner-us .content-banner .line-before, .banner-us .content-banner .tri-yellow {
    display: none;
  }
  .banner-us .content-banner .figureblue {
    margin: 0 0 20px 0;
  }
  .banner-us .content-banner .figureblue img {
    max-width: 40%;
  }
}
@media (max-width: 768px) {
  .banner-us .cloud1 {
    top: 8%;
  }
  .banner-us .cloud2 {
    display: none;
  }
  .banner-us .mountain {
    bottom: 30%;
  }
  .banner-us .mountain img {
    max-width: 60%;
  }
  .banner-us .text-banner {
    padding: 150px 0 0 0;
  }
  .banner-us .text-banner h1 {
    font-size: 32px;
  }
  .banner-us .content-banner {
    padding: 50px 0 0 0;
  }
  .banner-us .content-banner .line-before {
    display: none;
  }
  .banner-us .content-banner .figureblue {
    margin: 0 0 50px 0;
  }
  .banner-us .content-banner .figureblue img {
    max-width: 30%;
  }
}

.form-talk {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 20px -8px rgb(117, 117, 117);
          box-shadow: 0px 0px 20px -8px rgb(117, 117, 117);
  padding: 20px 20px;
  border-radius: 16px;
  z-index: 1;
}
.form-talk .form-group {
  position: relative;
  margin-bottom: 20px;
}
.form-talk .form-group ::-webkit-input-placeholder {
  color: #7C7C7C;
  font-size: 14px;
  pointer-events: none;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  margin: 0;
}
.form-talk .form-group ::-moz-placeholder {
  color: #7C7C7C;
  font-size: 14px;
  pointer-events: none;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  margin: 0;
}
.form-talk .form-group :-ms-input-placeholder {
  color: #7C7C7C;
  font-size: 14px;
  pointer-events: none;
  -ms-transition: 0.2s ease all;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  margin: 0;
}
.form-talk .form-group ::-ms-input-placeholder {
  color: #7C7C7C;
  font-size: 14px;
  pointer-events: none;
  -ms-transition: 0.2s ease all;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  margin: 0;
}
.form-talk .form-group ::placeholder {
  color: #7C7C7C;
  font-size: 14px;
  pointer-events: none;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  margin: 0;
}
.form-talk .form-group select {
  color: #7C7C7C;
  font-size: 14px;
}
.form-talk .form-group label {
  font-weight: 400;
  color: #060220;
  margin-bottom: 5px;
}
.form-talk .form-group input, .form-talk .form-group textarea, .form-talk .form-group select {
  padding: 12px 13px;
  display: block;
  width: 100%;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #060220;
}
.form-talk .form-group input:focus, .form-talk .form-group textarea:focus, .form-talk .form-group select:focus {
  outline: none;
}
.form-talk .form-group input:focus ~ label, .form-talk .form-group input:valid ~ label, .form-talk .form-group textarea:focus ~ label, .form-talk .form-group textarea:valid ~ label, .form-talk .form-group select:focus ~ label, .form-talk .form-group select:valid ~ label {
  top: -15px;
  font-size: 14px;
}
.form-talk .form-group .highlight {
  position: absolute;
  height: 50%;
  width: 90%;
  bottom: 0;
  left: 0;
  pointer-events: none;
  opacity: 0.5;
}
.form-talk .form-group input:focus ~ .highlight, .form-talk .form-group textarea:focus ~ .highlight {
  -webkit-animation: inputHighlighter 0.5s ease;
  animation: inputHighlighter 0.5s ease;
}
@-webkit-keyframes inputHighlighter {
  background: #E63323;
  width: 0;
  background: transparent;
}
@keyframes inputHighlighter {
  from {
    background: #E63323;
  }
  to {
    width: 0;
    background: transparent;
  }
}
.form-talk input::-webkit-outer-spin-button, .form-talk input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form-talk input[type=number] {
  -moz-appearance: textfield;
}

.has-image[data-image-fit=contain] .fancybox__image {
  background: #ffffff;
  border-radius: 20px;
}

.fancybox__thumb {
  background-color: #ffffff;
}

.fade-in-sos {
  opacity: 0;
  -webkit-transform: translateY(60px);
          transform: translateY(60px);
  -webkit-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.fade-in-sos.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.slide-left-sos {
  opacity: 0;
  -webkit-transform: translateX(-80px);
          transform: translateX(-80px);
  -webkit-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.slide-left-sos.show {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.slide-right-sos {
  opacity: 0;
  -webkit-transform: translateX(80px);
          transform: translateX(80px);
  -webkit-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.slide-right-sos.show {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.slide-up-sos {
  opacity: 0;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
  -webkit-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.slide-up-sos.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.zoom-in-sos {
  opacity: 0;
  -webkit-transform: scale(1.3);
          transform: scale(1.3);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.zoom-in-sos.show {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.banner-services {
  position: relative;
}
.banner-services .reveal-container {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
}
.banner-services .reveal-container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.banner-services .reveal-container #img-base {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-services .reveal-container .reveal-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 50%);
  -webkit-transition: clip-path 0s;
  transition: clip-path 0s;
  z-index: 3;
}
.banner-services .reveal-container .reveal-mask img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.banner-services .reveal-container #cursorHex {
  width: 320px;
  height: 320px;
  position: fixed;
  pointer-events: all;
  z-index: 8;
  clip-path: polygon(50% 0%, 100% 50%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  border-radius: 4px;
  -webkit-transform: translate(-300px, -300px);
          transform: translate(-300px, -300px);
  -webkit-transition: -webkit-transform 0s;
  transition: -webkit-transform 0s;
  transition: transform 0s;
  transition: transform 0s, -webkit-transform 0s;
  cursor: pointer;
}
.banner-services .reveal-container .text-services {
  position: absolute;
  top: 170px;
  left: 50%;
  margin-left: -15%;
  width: 30%;
  z-index: 2;
  height: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.banner-services .reveal-container .text-services .text-head {
  text-align: center;
  color: #ffffff;
}
.banner-services .reveal-container .text-services .text-head h1 {
  font-size: 46px;
}
.banner-services .reveal-container .text-services .text-head p {
  font-size: 18px;
}
.banner-services .reveal-container .text-services .text-bottom {
  margin: 0 auto;
}
.banner-services .reveal-container .text-services .text-bottom ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  border: 1px solid #ffffff;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  list-style: none;
  border-radius: 300px;
  margin: 0;
  outline: 0;
  border-collapse: separate;
  border-spacing: 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
}
.banner-services .reveal-container .text-services .text-bottom ul li {
  padding: 10px 25px;
  background: transparent;
}
.banner-services .reveal-container .text-services .text-bottom ul li:first-child {
  border: 1px solid #ffffff;
  border-radius: 300px;
}
.banner-services .reveal-container .text-services .text-bottom ul li:first-child p {
  font-weight: 700;
}
.banner-services .reveal-container .text-services .text-bottom ul li p {
  margin: 0;
  color: #ffffff;
}
@media (min-width: 769px) and (max-width: 1080px) {
  .banner-services .reveal-container {
    height: 600px;
  }
  .banner-services .reveal-container .reveal-mask {
    display: none;
  }
  .banner-services .reveal-container .text-services {
    width: 50%;
    margin-left: -25%;
    left: 50%;
    height: 60%;
  }
}
@media (max-width: 768px) {
  .banner-services .reveal-container {
    height: 650px;
  }
  .banner-services .reveal-container .reveal-mask {
    display: none;
  }
  .banner-services .reveal-container .text-services {
    left: 5%;
    width: 90%;
    margin-left: 0;
    display: block;
  }
  .banner-services .reveal-container .text-services .text-bottom {
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 50px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .banner-services .reveal-container .text-services .text-bottom ul li {
    padding: 10px 15px;
  }
}

.cards-services {
  position: relative;
  padding: 10px 0 50px 0;
}
.cards-services .before-services {
  position: absolute;
  left: 5%;
  top: 15%;
}
.cards-services .timeline-card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  position: relative;
}
.cards-services .timeline-card .swiperItems {
  height: 420px;
  width: 25%;
  padding: 15px 0;
}
.cards-services .timeline-card .swiperPrincipal {
  width: 75%;
}
.cards-services .content-cards {
  margin-top: 40px;
  padding: 30px 60px;
  position: relative;
  overflow: hidden;
}
.cards-services .content-cards:before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  pointer-events: none;
  outline: 2px solid #b0b0b0;
  outline-offset: -2px;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #b0b0b0)) padding-box, repeating-linear-gradient(0deg, #b0b0b0 0 10px, transparent 10px 18px) border-box, repeating-linear-gradient(90deg, #b0b0b0 0 10px, transparent 10px 18px) border-box;
  -webkit-mask: linear-gradient(#b0b0b0 0 0) padding-box, repeating-linear-gradient(0deg, #b0b0b0 0 10px, transparent 10px 18px) border-box, repeating-linear-gradient(90deg, #b0b0b0 0 10px, transparent 10px 18px) border-box;
          mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #b0b0b0)) padding-box, repeating-linear-gradient(0deg, #b0b0b0 0 10px, transparent 10px 18px) border-box, repeating-linear-gradient(90deg, #b0b0b0 0 10px, transparent 10px 18px) border-box;
          mask: linear-gradient(#b0b0b0 0 0) padding-box, repeating-linear-gradient(0deg, #b0b0b0 0 10px, transparent 10px 18px) border-box, repeating-linear-gradient(90deg, #b0b0b0 0 10px, transparent 10px 18px) border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.cards-services .content-cards .line-right {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  width: 2px;
  background-image: repeating-linear-gradient(to bottom, #b0b0b0 0 10px, transparent 10px 18px);
}
.cards-services .content-cards .line-left {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 30px;
  width: 2px;
  background-image: repeating-linear-gradient(to bottom, #b0b0b0 0 10px, transparent 10px 18px);
}
.cards-services .content-cards .section-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 20;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.cards-services .content-cards .section-overlay img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.cards-services .content-cards .section-overlay-left {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 20;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 1s ease-in-out;
  transition: -webkit-transform 1s ease-in-out;
  transition: transform 1s ease-in-out;
  transition: transform 1s ease-in-out, -webkit-transform 1s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}
.cards-services .content-cards .gray-mask .head-card {
  gap: 5px;
}
.cards-services .content-cards .gray-mask .head-card .text-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #D4D4D4;
  opacity: 1;
  -webkit-transition: opacity 2.5s ease-in-out;
  transition: opacity 2.5s ease-in-out;
  pointer-events: none;
}
.cards-services .content-cards .gray-mask .head-card .button-service {
  position: relative;
}
.cards-services .content-cards .gray-mask .head-card .button-service:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 55px;
  background: #D4D4D4;
  border-radius: 50%;
  opacity: 1;
  -webkit-transition: opacity 2.5s ease-in-out;
  transition: opacity 2.5s ease-in-out;
  pointer-events: none;
}
.cards-services .content-cards .gray-mask .image-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #D4D4D4;
  border-radius: 16px;
  opacity: 1;
  -webkit-transition: opacity 2.5s ease-in-out;
  transition: opacity 2.5s ease-in-out;
  pointer-events: none;
}
.cards-services .content-cards.revealed .section-overlay-left {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
.cards-services .content-cards.revealed .section-overlay {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.cards-services .content-cards.revealed .gray-mask .head-card .text-card:before, .cards-services .content-cards.revealed .gray-mask .head-card .button-service:before {
  opacity: 0;
}
.cards-services .content-cards.revealed .gray-mask .image-card:before {
  opacity: 0;
}
.cards-services .content-cards .card-service {
  margin: 15px;
  padding: 25px;
  -webkit-box-shadow: 0px 0px 15px -5px #afadad;
          box-shadow: 0px 0px 15px -5px #afadad;
  border-radius: 12px 56px 12px 12px;
  position: relative;
  background: #ffffff;
  cursor: pointer;
}
.cards-services .content-cards .card-service:before {
  content: "";
  position: absolute;
  right: -15px;
  top: -15px;
  width: 100%;
  height: 100%;
  background: #e4e4e4;
  border-radius: 12px 56px 12px 12px;
  z-index: -1;
}
.cards-services .content-cards .card-service .head-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cards-services .content-cards .card-service .head-card .text-card {
  position: relative;
}
.cards-services .content-cards .card-service .head-card .text-card h4 {
  font-size: 20px;
  color: #060220;
  min-height: 48px;
}
.cards-services .content-cards .card-service .head-card .text-card p {
  color: #2c2c2c;
  font-size: 15px;
  margin: 0;
  min-height: 45px;
}
.cards-services .content-cards .card-service .image-card {
  margin-top: 15px;
  position: relative;
}
.cards-services .content-cards .card-service .image-card img {
  width: 100%;
  max-height: 220px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
.cards-services .modal .closemod {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  pointer-events: all;
  background: transparent;
  border: none;
  outline: 0;
}
.cards-services .modal .modal-dialog {
  max-width: 85%;
}
.cards-services .modal .modal-content {
  border-radius: 30px;
  padding: 60px 50px;
  clip-path: polygon(0 0, calc(100% - 90px) 0, 100% 90px, 100% 100%, 0 100%);
}
.cards-services .modal .modal-content .text-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cards-services .modal .modal-content .text-modal h3 {
  font-size: 38px;
  color: #3F3F3F;
  margin-bottom: 15px;
}
.cards-services .modal .modal-content .text-modal p {
  color: #3f3f3f;
  margin: 0;
}
.cards-services .modal .modal-content .text-modal .button-red {
  margin-top: 15px;
}
.cards-services .modal .modal-content .text-modal .button-red .text {
  clip-path: polygon(0 0, 89% 0, 100% 100%, 100% 100%, 0 100%);
}
.cards-services .modal .modal-content .text-modal .button-red .text p {
  color: #ffffff;
}
.cards-services .modal .modal-content .item-prin {
  position: relative;
  border-radius: 16px;
}
.cards-services .modal .modal-content .item-prin img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
}
.cards-services .modal .modal-content .item-line {
  width: 100%;
  height: 100%;
}
.cards-services .modal .modal-content .item-line img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.cards-services .modal .modal-content .swiper-slide-thumb-active .item-line img {
  border: 4px solid #060220;
}
.cards-services .modal .modal-prev {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(25% - 20px);
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 15px -5px #afadad;
          box-shadow: 0px 0px 15px -5px #afadad;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 7px 0;
}
.cards-services .modal .modal-next {
  position: absolute;
  left: 0;
  bottom: 0;
  width: calc(25% - 20px);
  border-radius: 8px;
  -webkit-box-shadow: 0px 0px 15px -5px #afadad;
          box-shadow: 0px 0px 15px -5px #afadad;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 7px 0;
}
.cards-services .modal .modal-next img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (min-width: 1080px) and (max-width: 1340px) {
  .cards-services .before-services {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 1080px) {
  .cards-services {
    padding: 80px 0;
  }
  .cards-services .before-services {
    top: -80px;
    left: calc(50% - 25px);
  }
  .cards-services .before-services img {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .cards-services .content-cards {
    padding: 20px 0;
    margin: 0;
  }
  .cards-services .content-cards:before {
    content: none;
  }
  .cards-services .content-cards .line-left, .cards-services .content-cards .line-right {
    display: none;
  }
  .cards-services .content-cards .card-service {
    margin: 5px;
    padding: 15px;
  }
  .cards-services .content-cards .card-service:before {
    right: -5px;
    top: -5px;
  }
}
@media (max-width: 768px) {
  .cards-services {
    padding: 100px 0;
  }
  .cards-services .before-services {
    top: -80px;
    left: calc(50% - 25px);
  }
  .cards-services .before-services img {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .cards-services .content-cards {
    padding: 0;
    margin: 0;
  }
  .cards-services .content-cards:before {
    content: none;
  }
  .cards-services .content-cards .line-left, .cards-services .content-cards .line-right {
    display: none;
  }
  .cards-services .content-cards .card-service {
    margin: 15px 15px 40px 15px;
  }
  .cards-services .content-cards .section-overlay, .cards-services .content-cards .section-overlay-left {
    -webkit-transform: translateY(-35%);
            transform: translateY(-35%);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cards-services .content-cards .section-overlay img, .cards-services .content-cards .section-overlay-left img {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    max-width: 55%;
  }
  .cards-services .content-cards.revealed .section-overlay, .cards-services .content-cards.revealed .section-overlay-left {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  .cards-services .modal .modal-prev, .cards-services .modal .modal-next {
    display: none;
  }
  .cards-services .modal .modal-dialog {
    max-width: 100%;
  }
  .cards-services .modal .modal-content {
    padding: 45px 15px;
  }
  .cards-services .modal .modal-content .text-modal {
    padding: 40px 1rem 1rem 1rem;
  }
  .cards-services .modal .modal-content .text-modal h3 {
    font-size: 32px;
  }
  .cards-services .timeline-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cards-services .timeline-card .swiperPrincipal {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
  .cards-services .timeline-card .swiperItems {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    height: 100px;
    width: 100%;
    padding: 0;
  }
}

.cards-section {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}
.cards-section .section-overlay {
  position: absolute;
  inset: 0;
  background: #e5e5e5;
  z-index: 20;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform 1.2s ease-in-out;
  transition: -webkit-transform 1.2s ease-in-out;
  transition: transform 1.2s ease-in-out;
  transition: transform 1.2s ease-in-out, -webkit-transform 1.2s ease-in-out;
}

.cards-section.revealed .section-overlay {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  /* se va hacia la IZQUIERDA */
}

.g-recaptcha{
  display: flex;
  justify-content: end;
}

.content-thanks{
    padding: 250px 0;
    text-align: center;
}
.content-thanks h2{
    font-size: 50px;
    margin-bottom: 20px;
}