@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* -=-=-=-=-=-=-=- FONTS -=-==-=-=-=-=-=-=-*/
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
}

body {
  font-family: "Montserrat", sans-serif;
}

p {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
}

h1 {
    font-size: 28px;
    letter-spacing: 0px;
}

#b2Top {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 0px;
    z-index: 2;
    border: none;
    outline: none;
    background-color: #1e1e1e;
    color: white;
    cursor: pointer;
    padding: 0px;
    border-radius: 0px;
    font-size: 18px;
    width: 40px;
    height: 40px;
    transition: 0.3s;
}

#b2Top:hover {
  background-color: #555; /* Add a dark-grey background on hover */
  transition: 0.3s;
}

.b2tIcon {
    width: 16px;
    height: 16px;
    border-top: 1px solid white;
    border-right: 1px solid white;
    transform: rotate(-45deg);
    top: 5px;
    position: relative;
    left: 12px;
}

b, strong {
    font-weight: 600;
}

.btn {
    font-size: 16px;
    font-weight: 600!important;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 12px!important;
    padding: 10px 30px!important;
    transition: 0.4s;
}

.btn:hover {
    transition: 0.4s;
}

.btn-sm {
  font-size: 14px;
}

.btn-primary {
    background-color: rgba(255,255,255,0.9)!important;
    border: 1px solid #fff;
}

.btn-primary:hover {
        background-color: rgba(255,255,255,1)!important;
    border: 1px solid rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
h1 {
    font-size: 20px;
    letter-spacing: 0px;
    margin-left: 15px;
}
  
.h5, h5 {
    font-size: 1rem;
}
  
p {
    font-size: 14px;
    margin-left: 15px;
    margin-right: 15px;
}
  
.btn {
    font-size: 15px;
    letter-spacing: 1px;
    padding: 6px!important;
    width: 90%!important;
    margin-left: 5%;
    margin-right: 5%;
}
}



/* -=-=-=-=-=-=-=- FORMS -=-==-=-=-=-=-=-=-*/
.custom-form {
    border: none;
    border-bottom: 1px solid #dfe3e7;
    border-radius: 0px;
}

.form-control.custom-form:focus {
    border-bottom: 1px solid #376cba;
    outline: 0;
    box-shadow: none;
}

.form-floating>.form-control-plaintext~label, .form-floating>.form-control:focus~label, .form-floating>.form-control:not(:placeholder-shown)~label, .form-floating>.form-select~label {
    color: rgba(var(--bs-body-color-rgb),.65);
    transform: scale(.75) translateY(-.5rem) translateX(.15rem);
}

.form-floating>label {
    padding: 1rem 0rem;
}

.form-floating>.custom-form, .form-floating>.form-control-plaintext {
    padding: 1.25rem 0rem 0.25rem 0rem!important;
}

.custom-select {
    border: none;
    border-bottom: 1px solid #dfe3e7;
    border-radius: 0px;
    padding: 1.75rem 0rem .25rem 0rem;
}

.form-floating>.form-control.custom-textArea , .form-floating>.form-control-plaintext{
    border: none;
    border-bottom: 1px solid #dfe3e7;
    border-radius: 0px;
    padding: 1.75rem 0rem .25rem 0rem;
}

.form-control.custom-textArea:focus {
    border-bottom: 1px solid #376cba;
    outline: 0;
    box-shadow: none;
}

.form-select:focus {
    border-bottom: 1px solid #376cba;
    outline: 0;
    box-shadow: none;
}

  input:-webkit-autofill,
  input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, transparent 0s 600000s !important;
    border-bottom: 1px solid teal;
  }



/* -=-=-=-=-=-=-=- NAVBAR -=-==-=-=-=-=-=-=-*/
#myNavbar {
    height: 80px;
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    text-align: center;
    padding: 10px 0;
    transition: 0.4s;
    opacity: 1;
    filter: invert(1);
}

#myNavbar.scrolled {
    opacity: 1;
    background-color: rgba(255,255,255,0.95);
    filter: invert(0);
    transition: 0.4s;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
}

.content {
  margin-top: 100px; /* Create some space for the content */
  padding: 15px;
  height: 2000px; /* Making the page scrollable */
}


a.navbar-brand {
    height: 70px;
}

a.nav-link {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
    font-weight: 500;
    padding: 0.5rem 1rem!important;
    text-align: center;
    line-height: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a.nav-link.active {
    opacity: 0.3;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

a.nav-link.active::after {
    content: '';
    width: 50px;
    height: 1px;
    background-color: black;
    position: relative;
    top: 10px;
    margin-left: auto;
    margin-right: auto;
}

a:hover.nav-link::after {
    content: '';
    width: 50px;
    height: 1px;
    background-color: black;
    position: relative;
    top: 10px;
    margin-left: auto;
    margin-right: auto;
    animation: lineGrow 0.4s forwards;
}

a.nav-link.social {
    opacity: 1;
    transition: 0.4s;
}

a.nav-link.social:hover {
    opacity: 0.5;
    transition: 0.4s;
}

a.nav-link.social::after {
    display: none;
}

a.nav-link.social i.bi {
    font-size: 15px;
    margin-top: -3px;
}

@keyframes lineGrow {
  0% {width: 0px;}
  100% {width: 50px;}
}

li.nav-item.btn {
    padding: 0px;
    margin-top: 2px;
}

li.nav-item.btn a.nav-link {
    background-color: #6618ff;
    border-radius: 50rem;
    padding: 0.35rem 1.5rem!important;
    color: white;
}

li.nav-item.dropdown.language {
    background-color: #F4F4F4;
    padding: 0px!important;
    margin-left: 30px;
    border-radius: 4px;
    height: 35px;
    margin-top: 4px;
}

li.nav-item.dropdown.language .nav-link {
    text-transform: uppercase;
    font-weight: 400;
    padding: 0.45rem 1.25rem!important;
    font-size: 13px;
}


button.navbar-toggler.navbar-toggler-button.menu-btn {
    border: none;
}

.nav-link-dropdown::before {
    display: inline-block;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 1px solid #575858;
    border-right: 1px solid #575858;
    border-bottom: 0;
    border-left: 0;
    position: absolute;
    right: 4px;
    top: 9px;
    width: 6px;
    height: 6px;
    transform: rotate(135deg);
    transition: 0.4s;
}

a.nav-link.nav-link-dropdown:hover::before {
    transform: rotate(-45deg);
    transition: 0.4s;
    transform-origin: center;
    top: 12px;
}

ul.dropdown-menu.show {
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 0px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

.nav-item.dropdown .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    display: block;
    pointer-events: none;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    border: none;
    border-radius: 0px;
    background-color: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding-top: 10px;
    line-height: 25px;
}

/* On hover, show dropdown with animation */
.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: var(--bs-dropdown-link-active-bg);
}

.dropdown-item.active, .dropdown-item:active {
    color: #303031;
    text-decoration: none;
    background-color: #ffffff;
}

a.dropdown-item.active {
    font-weight: 600;
    opacity: 0.4;
}

@media (max-width: 991px) {
.navbar-collapse {
    flex-basis: 100%;
    flex-grow: 1;
    align-items: center;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 100%;
    margin-top: 0px;
}

.navbar-nav {
    display: flex;
    flex-direction: column;
    list-style: none;
    height: calc(100vh - 85px);
    background: rgb(255 255 255 / 95%);
    justify-content: space-between;
    padding: 40px 0px 80px 0px;
    align-items: center;
    margin-top: 80px;
}
  
a.navbar-brand {
    height: 60px;
    margin-top: -10px;
}
}

@media (max-width: 768px) {
a.nav-link {
    font-size: 14px;
    letter-spacing: 2px;
}
}

/* -=-=-=-=-=-=-=- MOBILE MENU -=-==-=-=-=-=-=-=-*/
.animated-hamburger {
    width: 30px !important;
    height: 20px !important;
    position: relative !important;
    margin: 0px !important;
    -webkit-transform: rotate(0deg) !important;
    -moz-transform: rotate(0deg) !important;
    -o-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
    -webkit-transition: .5s ease-in-out !important;
    -moz-transition: .5s ease-in-out !important;
    -o-transition: .5s ease-in-out !important;
    transition: .5s ease-in-out !important;
    cursor: pointer !important;
    top: -4px;
}
    
.animated-hamburger span {
    display: block !important;
    position: absolute !important;
    height: 1px !important;
    width: 100% !important;
    border-radius: 9px !important;
    opacity: 1 !important;
    left: 0 !important;
    -webkit-transform: rotate(0deg) !important;
    -moz-transform: rotate(0deg) !important;
    -o-transform: rotate(0deg) !important;
    transform: rotate(0deg) !important;
    -webkit-transition: .25s ease-in-out !important;
    -moz-transition: .25s ease-in-out !important;
    -o-transition: .25s ease-in-out !important;
    transition: .25s ease-in-out !important;
}
    
.animated-hamburger span {
    background: #000!important;
}
    
.animated-hamburger span:nth-child(1) {
    top: 0px !important;
    -webkit-transform-origin: left center !important;
    -moz-transform-origin: left center !important;
    -o-transform-origin: left center !important;
    transform-origin: left center !important;
    width: 50%!important;
}
    
.animated-hamburger span:nth-child(2) {
    top: 10px !important;
    -webkit-transform-origin: left center !important;
    -moz-transform-origin: left center !important;
    -o-transform-origin: left center !important;
    transform-origin: left center !important;
}
    
.animated-hamburger span:nth-child(3) {
    top: 20px !important;
    -webkit-transform-origin: left center !important;
    -moz-transform-origin: left center !important;
    -o-transform-origin: left center !important;
    transform-origin: left bottom !important;
    width: 50%!important;
    margin-left: 50%;
}
    
.animated-hamburger.open span:nth-child(1) {
    -webkit-transform: rotate(45deg) !important;
    -moz-transform: rotate(45deg) !important;
    -o-transform: rotate(45deg) !important;
    transform: rotate(45deg) !important;
    top: 0px !important;
    left: 0px !important;
    width: 100%!important;
}
    
.animated-hamburger.open span:nth-child(2) {
    width: 100% !important;
    opacity: 0 !important;
    transform: translateX(30px)!important;
}
    
.animated-hamburger.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg) !important;
    -moz-transform: rotate(-45deg) !important;
    -o-transform: rotate(-45deg) !important;
    transform: rotate(-45deg) !important;
    top: 21px !important;
    left: 0px !important;
    width: 100%!important;
    margin-left: 0px;
}

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}




/* -=-=-=-=-=-=-=- CAROUSEL - HOME -=-==-=-=-=-=-=-=-*/
div#carouselHome {
    height: 100vh;
}

div#carouselHome .carousel-inner {
    height: 100vh;
}

.carousel-item {
    height: 100vh;
}

.carousel-item img {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    height: 100%;
    min-width: 100%;
}

.carousel-img::before {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    background: rgb(0,0,0);
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
}

.carousel-caption {
    top: 40%;
    z-index: 150;
    width: 55%;
    margin-right: auto;
    margin-left: auto;
    position: absolute;
    right: auto;
    bottom: 1.25rem;
    left: 7%;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    color: #fff;
    text-align: left;
}

.carousel-caption h1 {
    top: 40%;
    z-index: 150;
    font-size: 38px;
    font-weight: 200;
    letter-spacing: -2px;
}

.carousel-caption h6 {
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    text-align: left;
    top: -30px;
    position: absolute;
    font-weight: 300;
}

.carousel-caption h6::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 50px;
    background-color: #ffffff;
    margin-top: 30px;
    margin-bottom: 0px;
    margin-right: auto;
    left: 0;
}

.carousel-control-next, .carousel-control-prev {
    width: 6%;
}

button.carouselIndicator.active {
    width: 10px!important;
    transition: 0.4s!important;
}

button.carouselIndicator {
    width: 50px!important;
    transition: 0.4s!important;
    height: 1px!important;
}

@media (max-width: 768px) {
.carousel-caption {
    top: 35%;
    width: 80%;
    left: 10%;
    right: 10%;
}
 
.carousel-caption h1 {
    font-size: 22px;
    letter-spacing: -1px;
    margin-left: 0px;
}
  
.carousel-caption h6 {
    font-size: 14px;
}
  
.carousel-item img {
    left: -100%;
}
}


/* -=-=-=-=-=-=-=- ABOUT -=-==-=-=-=-=-=-=-*/
section#nosotros {
    background: rgb(41,45,57,1);
    background: linear-gradient(45deg, rgba(10,10,12,1) 0%, rgba(41,45,57,1) 100%);
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
    position: relative;
    overflow-x: hidden;
}

.logoAboutContainer {
    position: absolute;
    z-index: -1;
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
}

.logoAbout {
    background-image: url("../img/iso-dark.svg");
    width: 100%;
    min-height: 100vh;
    background-size: cover;
    position: relative;
    z-index: 0;
    background-repeat: no-repeat;
    margin-left: -20px;
    margin-right: auto;
    background-position: center;
    opacity: 0.3;
}

#nosotros h1 {
    color: white;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    font-weight: 200;
    margin-bottom: 40px;
}

#nosotros h1 span.fw-bold {
    font-weight: 500!important;
}

#nosotros h1::after {
    content: '';
    position: absolute;
    height: 1px;
    width: 50px;
    background-color: #ffffff;
    margin-top: 45px;
    left: 12px;
    vertical-align: middle;
    margin-bottom: 0px;
}

#nosotros p {
  color: white;
}

@media (max-width: 768px){
section#nosotros {
    height: auto;
    justify-content: flex-start;
    padding-top: 100px;
    padding-bottom: 40px;
}
  
#nosotros h1 {
    padding-left: 0px;
}
  
#nosotros h1::after {
    margin-top: 35px;
    left: 28px;
}
  
.techLogocontainer {
    flex-direction: column!important;
    align-items: center!important;
}
  
.logoAbout {
  display: none;
}
}

.item-3d {
    width: 100%;
    transform-origin: 50% 100%;
    transform-style: preserve-3d;
}

@media (max-width: 600px) {
  .item-3d {
    margin-bottom: 40%;
  }
}

.item-3d:nth-child(even) .ground:before {
  background-position: 100% 50%;
  -webkit-animation: floating-shadow-r 5s -1s infinite;
          animation: floating-shadow-r 5s -1s infinite;
}

.item-3d:nth-child(odd) .ground:before {
  background-position: 0 50%;
  -webkit-animation: floating-shadow-l 5s -1s infinite;
          animation: floating-shadow-l 5s -1s infinite;
}

@-webkit-keyframes floating-shadow-l {
  0%, 100% {
    background-size: 35% 80%;
    background-position: 10% 80%;
  }
  50% {
    background-size: 50% 80%;
    background-position: 0 80%;
  }
}

@keyframes floating-shadow-l {
  0%, 100% {
    background-size: 35% 80%;
    background-position: 10% 80%;
  }
  50% {
    background-size: 50% 80%;
    background-position: 0 80%;
  }
}
@-webkit-keyframes floating-shadow-r {
  0%, 100% {
    background-size: 35% 80%;
    background-position: 90% 80%;
  }
  50% {
    background-size: 50% 80%;
    background-position: 100% 80%;
  }
}
@keyframes floating-shadow-r {
  0%, 100% {
    background-size: 35% 80%;
    background-position: 90% 80%;
  }
  50% {
    background-size: 50% 80%;
    background-position: 100% 80%;
  }
}

.item-img {
    position: relative;
    float: left;
    display: block;
    width: 100%;
    transform-origin: 50% 50%;
    transform-style: preserve-3d;
    -webkit-animation: floating 5s -1s infinite;
    animation: floating 5s -1s infinite;
}

.item-img img {
  display: block;
  width: 100%;
  height: auto;
  transform-origin: 50% 100%;
  transform: translateZ(-5rem);
}

.item-3d:nth-child(even) .item-img {
  float: right;
  order: 1;
}

@-webkit-keyframes floating {
  0%, 100% {
    transform: translateY(-5%);
  }
  50% {
    transform: translateY(0);
  }
}

@keyframes floating {
  0%, 100% {
    transform: translateY(-5%);
  }
  50% {
    transform: translateY(0);
  }
}

.techLogocontainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.techLogo {
    margin: 20px;
}

/* -=-=-=-=-=-=-=- SOLUCIONES -=-==-=-=-=-=-=-=-*/
section#soluciones {
    background-color: #fff;
    display: flex;
    justify-content: center;
    z-index: 1;
    position: relative;
    flex-direction: column;
    padding: 100px 0px;
    min-height: 100vh;
}

section#soluciones h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
}




.card.card-soluciones {
    position: relative;
    width: 100%;
    min-height: 450px;
    height: calc(100% - 20px);
    background: linear-gradient(45deg, rgba(10,10,12,1) 0%, rgba(41,45,57,1) 100%);
    border-radius: 20px;
    margin-bottom: 20px;
    transition: 0.4s;
}

.card.card-soluciones:hover {
    box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.15);
    background: linear-gradient(45deg, rgba(20,20,22,1) 0%, rgba(51,55,57,1) 100%);
    transition: 0.4s;
}

.card.card-soluciones:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.05);
    clip-path: circle(460px at 80% 20%);
    transition: 0.5s ease-in-out;
}

.card.card-soluciones:hover:before {
  clip-path: circle(300px at 80% -20%);
    opacity: 0;
}

.card.card-soluciones .imgBx {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10000;
    width: 100%;
    height: 220px;
    transition: 0.5s;
}

.card.card-soluciones:hover .imgBx {
  top: 0%;
  transform: translateY(0%);
  transition: 0.5s;
}

.card.card-soluciones .imgBx img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 360px;
    transition: 0.2s;
    animation-delay: 0.5s;
}

.card.card-soluciones:hover .imgBx img {
    transform: translate(-50%, -70%) rotate(0deg) scale(1.15);
    width: 300px;
    transition: 0.2s;
}

.card.card-soluciones .contentBx {
    position: absolute;
    bottom: 0px;
    width: 100%;
    height: 100px;
    text-align: center;
    transition: 1s;
    z-index: 10;
    overflow: hidden;
}

.card.card-soluciones:hover .contentBx {
    height: auto;
    bottom: 10px;
}

.card.card-soluciones .contentBx h2 {
    position: relative;
    font-weight: 600;
    letter-spacing: 0px;
    color: #fff;
    margin: 0;
    font-size: 22px;
    text-transform: uppercase;
    transition: 0.4s;
}

.card.card-soluciones .contentBx .mainTxt {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 20px;
    transition: 0.5s;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
    transform: translateY(-160px);
}

.card.card-soluciones:hover .contentBx .mainTxt {
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
  transform: translateY(0px);
}

.card.card-soluciones .contentBx .mainTxt h3 {
  color: #fff;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 10px;
}

.card.card-soluciones .contentBx .mainTxt p {
    width: 100%;
    height: auto;
    text-align: center;
    line-height: 20px;
    font-size: 15px;
    display: inline-block;
    background: transparent;
    margin: 10px 5px;
    transition: 0.5s;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.card.card-soluciones .contentBx a.btn-verMas {
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    border-radius: 4px;
    margin-top: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #111;
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s;
    width: 80%;
    margin-bottom: 20px;
}

.card.card-soluciones:hover .contentBx a.btn-verMas {
    opacity: 1;
    transform: translateY(0px);
    margin-top: 20px;
    transition-delay: 0.25s;
}

.card.card-soluciones:hover .contentBx a.btn-verMas:hover {
    opacity: 0.5;
    transition: 0.25s;
}




@media (max-width: 768px) {
section#commitment {
    padding-top: 140px;
    padding-bottom: 70px;
}
  
.iconContainer {
    width: 50px;
    margin-top: 0px;
    margin-bottom: 20px;
}
  
.commitmentText {
    margin-top: 0px;
    width: 100%;
}

.port-textBox {
    width: 90%;
    padding: 20px;
}
  
.port-textBox.left {
    margin-top: -10%;
    margin-left: 5%;
    margin-bottom: 60px;
}

.port-textBox.right {
    margin-top: -10%;
    margin-left: 5%;
}
  
.port-textBox p {
    margin: 0px;
}
  
.port-textBox h2 {
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 10px;
}
  
.card.card-soluciones .imgBx img {
    width: 300px;
}
  
.card.card-soluciones:hover .contentBx {
    height: 250px;
    bottom: 20px;
}
  
.card.card-soluciones .contentBx h2 {
    font-size: 18px;
}
  
.card.card-soluciones .contentBx .mainTxt p {
    font-size: 13px;
}
  
.card.card-soluciones:hover .imgBx img {
    transform: translate(-50%, -80%) rotate(0deg) scale(1.15);
    width: 260px;
}
  
}


/* -=-=-=-=-=-=-=- CATALOGO -=-==-=-=-=-=-=-=-*/
section#catalogo {
    background: rgb(41,45,57,1);
    background: linear-gradient(45deg, rgba(10,10,12,1) 0%, rgba(41,45,57,1) 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

:root {
  --gap: 1rem;
  --card-width: clamp(280px, 20vw, 100vw);
  --card-aspect-ratio: 5 / 7;
  --card-height: calc(var(--card-width) * (7 / 5));
}

.bodyProy {
    display: grid;
    place-items: center;
    overflow: hidden;
    justify-content: center;
    height: 100vh;
}

.gridProy {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(5, var(--card-width));
  gap: 1rem;
  /* overflow: hidden shouldn't break this? */
  overflow: hidden;
}

.grid-wrapper {
  /* overflow: hidden; */
}

.columnProy {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.columnProy:not(:nth-of-type(3)) {
  animation: scale 1s linear both;
  animation-timeline: scroll(root);
}

/* The distance is the number of cards minus 100vh */
.columnProy:is(:nth-of-type(2), :nth-of-type(4)) {
  --origin: calc(var(--gap) * -31);
  --destination: calc(var(--card-height) * 1.5 + var(--gap));
}
.columnProy:is(:nth-of-type(1), :nth-of-type(5)) {
    --origin: calc(var(--gap) * -52);
    --destination: calc(var(--card-height) * 3.4 + var(--gap));
}

@keyframes scale {
  0% {
    transform: translateY(var(--origin, 0%));
  }
  100% {
    transform: translateY(var(--destination, -50%));
  }
}

.columnProy img {
  max-width: 100%;
  border: 0;
  padding: 0;
  max-height: 100%;
  width: 100%;
  background: hsl(0 0% 80%);
}

@media (max-width: 768px) {
:root {
    --gap: 0.5rem;
    --card-width: clamp(120px, 20vw, 100vw);
    --card-aspect-ratio: 5 / 7;
    --card-height: calc(var(--card-width) * (7 / 5));
}
}

/* -=-=-=-=-=-=-=- CLIENTES -=-==-=-=-=-=-=-=-*/
section#clientes {
    background-color: #fff;
    display: flex;
    justify-content: center;
    z-index: 1;
    position: relative;
    flex-direction: row;
    min-height: 100vh;
    overflow-y: hidden;
    padding: 80px;
}

.clientContainer {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
}

a.clientLogo {
    width: 20%;
    padding: 20px;
}

.clientLogoContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.clHover {
    width: 100%;
    height: 100%;
    background-color: black;
    position: absolute;
    z-index: 0;
}

a.clientLogo .clientLogoContainer .clHover {
    width: 1px;
    height: 1px;
    background-color: rgba(0,0,0,0.2);
    position: absolute;
    border-radius: 50rem; 
    transition: transform 0.3s, opacity 0.3s, background-color 0.3s;
}

a.clientLogo:hover .clientLogoContainer .clHover {
    width: 200px;
    height: 200px;
    background-color: #00000000;
    position: absolute;
    border-radius: 0rem; 
    transition: 0.4s;
}

a.clientLogo .clientLogoContainer img {
    transform: scale(1);
    filter: grayscale(0);
    transition: 0.4s;
}

a.clientLogo:hover .clientLogoContainer img {
    transform: scale(1.1);
    filter: grayscale(1);
    transition: 0.4s;
}

@media (max-width: 768px) {
section#clientes {
    padding: 100px 10px;
}
  
.clientContainer {
    justify-content: space-between;
}
  
a.clientLogo {
    width: 30%;
    padding: 0px;
}
}


/* -=-=-=-=-=-=-=- CONTACT -=-==-=-=-=-=-=-=-*/
section#contacto {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.contactImgContainer {
    min-height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    max-width: 70%;
}

.contactImgContainer img {
    height: 80vh;
    min-width: 100%;
}

.sideText {
    padding: 30px;
    height: auto;
    text-align: left;
    width: 40%;
    right: 10%;
    background-color: rgba(255,255,255,0.9);
    border-radius: 20px;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.25);
    position: absolute;
    top: calc(15vh - 0px);
}

.sideText p a {
    text-decoration: none;
    color: black;
    font-weight: 400;
    transition: 0.4s;
} 

.sideText p a:hover {
    opacity: 0.5;
    transition: 0.4s;
}

.bkg-logo {
    position: absolute;
    width: 100%;
    height: 100vh;
    background-image: url("../img/iso-dark.svg");
    background-size: 120%;
    opacity: 0.05;
    top: 0px;
    right: 0px;
    background-repeat: no-repeat;
    background-position: top center;
}

@media (max-width: 768px) {
section#contacto {
    flex-direction: column;
    align-items: center;
    position: relative;
    height: 100vh;
    justify-content: flex-start;
}

.sideText {
    padding: 30px;
    height: auto;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    left: 5%;
    right: 5%;
    top: 45vh;
}
  
 .sideText p {
    font-size: 14px;
    margin-left: 0px;
    margin-right: 0px;
}
  
.contactImgContainer {
    min-height: 500px;
    max-height: 500px;
    max-width: 100%;
}
  
.contactImgContainer img {
    height: 500px;
    min-width: auto;
}
}

/* -=-=-=-=-=-=-=- FOOTER -=-==-=-=-=-=-=-=-*/
footer.footer.mt-auto.py-3.bg-dark {
    text-align: center;
}

footer.footer .text-muted {
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.5)!important;
}

.socialContainer {
    display: flex;
}

a.nav-link.social {
    width: 20px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 4px 10px;
    opacity: 0.6;
    transition: 0.4s;
    position: relative;
}

a.nav-link.social:hover {
    opacity: 1;
    transition: 0.4s;
}

.si_icon {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.si_instagram {background-image: url("icons/si_instagram.svg");}
.si_linkedin {background-image: url("icons/si_linkedin.svg");}
.si_whatsapp {background-image: url("icons/si_whatsapp.svg");}

@media (max-width: 768px) {
.socialContainer {
    display: flex;
    min-width: 60vw;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
}
  
a.nav-link.social {
    width: 30px;
    height: 30px;
}
  
footer.footer .text-muted {
    font-size: 10px;
    letter-spacing: 1px;
}
  

}


/* -=-=-=-=-=-=-=- OWL -=-==-=-=-=-=-=-=-*/
.owl-theme .owl-dots .owl-dot span {
    width: 40px!important;
    height: 1px!important;
}

.owl-theme .owl-dots .owl-dot.active span {
    width: 10px!important;
    transition: 0.4s;
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    transition: 0.4s;
}

.owl-theme .owl-dots .owl-dot span {
    width: 40px!important;
    height: 1px!important;
    border-radius: 0px!important;
    margin: 10px 2px!important;
}


@media (max-width: 768px) {
.owl-theme .owl-dots .owl-dot span {
    width: 20px!important;
}
}



/* -=-=-=-=-=-=-=- PRODUCTOS -=-==-=-=-=-=-=-=-*/
.main_jumbotron {
    min-height: 50vh;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: center;
    padding-top: 0px;
    text-align: left;
}

.bg-jumbotron {
    position: absolute;
    z-index: -2;
    width: 100%;
    height: 50vh;
    left: 0px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    background: -webkit-linear-gradient(bottom left, rgba(10,10,12,1) 0%, rgba(41,45,57,1) 100%);
    background: -o-linear-gradient(bottom left, rgba(10,10,12,1) 0%, rgba(41,45,57,1) 100%);
    background: linear-gradient(to top right, rgba(10,10,12,1) 0%, rgba(41,45,57,1) 100%);    
}

.bg_soluciones {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 50vh;
    left: 0px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;    
}

.solucionUno {
    background-image: url(../img/bkg_productos-uno.jpg);
}

.solucionDos {
    background-image: url(../img/bkg_productos-dos.jpg);
}

.solucionTres {
    background-image: url(../img/bkg_productos-tres.jpg);
}

.solucionCuatro {
    background-image: url(../img/bkg_productos-cuatro.jpg);
}


.titleBox {
    width: 40%;
}

.main_jumbotron h1 {
    text-align: left;
    color: white;
}

.main_jumbotron p {
    text-align: left;
    color: white;
}


a.productMain {
    text-decoration: none;
    color: black;
}

.productContainer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 190px;
}

.productTitle h1 {
    font-size: 18px;
}

section#productosAdicionales {
    min-height: 315px;
}

section#callToAction {
    height: 240px;
    background: linear-gradient(45deg, rgba(10,10,12,1) 0%, rgba(41,45,57,1) 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    overflow-x: hidden;
}

section#callToAction h1 {
    color: white;
    font-weight: 200;
    font-size: 32px;
}


@media (max-width: 768px) {
section#productosIntro {
}

.main_jumbotron {
    padding-left: 10px;
}
  
.titleBox {
    width: 100%;
}
  
.main_jumbotron h1 {
    padding-left: 0px;
    letter-spacing: 0px;
}
  
section#callToAction h1 {
    font-size: 20px;
    text-align: center;
}
  
section#callToAction h1 br {
    display: none;
}
}


/* -=-=-=-=-=-=-=- MODAL -=-==-=-=-=-=-=-=-*/
.modal-title {
    margin-bottom: 0;
    line-height: var(--bs-modal-title-line-height);
    font-weight: 300;
}























