:root {
    --color-text: #CDCDCD;
    --color-text-rgb: 29, 29, 27;
    --color-text-hover: #5F5F5F;
    --font-primary: "Manrope";
    --font-heading: "Barlow";
    --font-icons: "Font Awesome 6 Free";

    --bs-primary: #006a3e;
    --bs-primary-rgb: 0, 106, 62;
    --bs-primary-hover: #005231;
    --bs-secondary: #8BB69B;
    --bs-secondary-rgb: 139, 182, 155;
    --bs-secondary-hover: #7daa9b;
    --bs-light: #F4F2EE;
    --bs-light-rgb: 244, 242, 238;
    --bs-dark: #232220;
    --bs-dark-rgb: 35, 34, 32;
    --bs-dark-hover: #031B17;
    --bs-black: #111111;
    --bs-black-rgb: 17, 17, 17;

    --bs-body-font-family: var(--font-primary);
    --bs-body-font-weight: 300;
    --bs-body-font-size: 17px;
    --bs-body-color: var(--color-text);
    --bs-border-color: #5F5F5F;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading), sans-serif;
    font-weight: 600;
    color: var(--color-text);
}
@media (min-width: 768px) {
    .fs-7 {
        font-size: 0.85rem;
    }
    .fs-8 {
        font-size: 0.75rem;
    }
}

strong {
    font-weight: 800;
}

.ff-body {
    font-family: var(--font-body), sans-serif;
}
.ff-heading {
    font-family: var(--font-heading), sans-serif;
}

.text-dark-75 {
    color: rgba(var(--bs-dark-rgb),0.75) !important;
}
.text-hover {
    color: var(--color-text-hover) !important;
}

.alert-dismissible .btn-close {
    padding: 0.5rem;
}

/********** ELEMENTS **********/
/******************************/
.preloader {
    position: fixed;
    z-index: 100;
    background: var(--bs-dark);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn {
    --bs-btn-line-height: 2;
    --bs-btn-font-weight: 300;
    --bs-btn-border-radius: .25rem;
}
.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--bs-primary);
    --bs-btn-border-color: none;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--bs-primary-hover);
    --bs-btn-hover-border-color: none;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: var(--bs-primary-hover);
    --bs-btn-active-border-color: none;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: var(--bs-primary);
    --bs-btn-disabled-border-color: none;
}
.btn-outline-primary {
    --bs-btn-color: var(--bs-primary);
    --bs-btn-border-color: var(--bs-primary);
    --bs-btn-hover-bg: var(--bs-primary);
    --bs-btn-hover-border-color: var(--bs-primary);
    --bs-btn-active-color: var(--bs-primary);
    --bs-btn-active-bg: var(--bs-primary);
    --bs-btn-active-border-color: var(--bs-primary);
    --bs-btn-disabled-color: var(--bs-primary);
    --bs-btn-disabled-border-color: var(--bs-primary);
}

label {
    font-weight: 500;
}

.form-control {
    background-color: rgba(var(--bs-dark-rgb),1);
    border: 1px solid rgba(var(--bs-dark-rgb),1);
    padding: .5rem 0;
    color: white;
}
.form-control:active,
.form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--bs-dark);
    background: transparent;
}
.form-control::placeholder {
    color: var(--bs-white);
    opacity: 1;
}
.form-control::-ms-input-placeholder {
    color: var(--bs-white);
}
.form-control:-ms-input-placeholder {
    color: var(--bs-white);
}
.form-floating>.form-control {
    height: calc(2.5rem + calc(var(--bs-border-width)* 2));
}
.form-floating>.form-control-plaintext~label::after,
.form-floating>.form-control:focus~label::after,
.form-floating>.form-control:not(:placeholder-shown)~label::after,
.form-floating>.form-select~label::after {
    background-color: var(--bs-primary);
    color: var(--bs-dark);
}
.form-floating>label {
    color: var(--color-text)!important;
}
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    transform: scale(.7) translateY(-.5rem) translateX(.15rem);
}
.form-control:active, .form-control:focus label {
    text-shadow: none;
}

.was-validated .form-control:valid {
    border-color: var(--color-text);
    padding-right: 0;
    background-image: none;
    background-repeat: no-repeat;
}
.g-recaptcha.min-height {
    height: 78px !important;
}

.title-decor {
    position: relative;
    padding-left: 1rem;
    line-height: 3rem;
    letter-spacing: 1px;
    z-index: 0;
}
.title-decor::before {
    content: '';
    position: absolute;
    width: 3rem;
    height: 3rem;
    background-color: var(--bs-primary);
    top: 0;
    left: 0;
    z-index: -1;
}

.separator img{
    max-width: 100px;
    display: block;
    margin: 0 auto 1.5rem;
}

.splide__arrow {
    background: var(--bs-primary);
    border-radius: 0;
    height: 3rem;
    width: 1.5rem;
    opacity: 1;
}
.splide__arrow--prev {
    left: 0;
}
.splide__arrow--next {
    right: 0;
}
.splide__arrow svg {
    fill: var(--bs-light);
    width: 1rem;
    height: 1rem;
}
.splide__arrow:focus {
    outline: none !important;
}

.whatsapp {
    background: #25D366 !important;
    border: 1px solid #ffffff !important;
    font-size: 1.75rem;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 1000;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    text-align: center;
    box-shadow: -3px 3px 0 #00000030;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
}
.whatsapp i {
    color: #ffffff;
}
.whatsapp:hover {
    background: #ffffff !important;
    border-color: #25D366 !important;
}
.whatsapp:hover i {
    color: #25D366;
}
@media (min-width: 768px) {
    .whatsapp {
        bottom: 50px;
        right: 30px;
    }
}

.scrollBottom {
    padding-top: 70px;
    position: absolute;
    bottom: 1rem;
    left: 50%;
    z-index: 1;
}
.scrollBottom span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 30px;
    height: 30px;
    margin-left: -12px;
    border-left: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb05 1.5s infinite;
    animation: sdb05 1.5s infinite;
    box-sizing: border-box;
}
@-webkit-keyframes sdb05 {
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}
@keyframes sdb05 {
    0% {
        transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}

.fa-stack-svg {
    display: flex;
    justify-content: center;
    align-items: center;
}


[class*="list-style"] {
    list-style: none;
    padding: 0;
}
[class*="list-style"] li {
    padding-left: 1em;
    line-height: 2;
}
[class*="list-style"] li:before {
    font-family: var(--font-icons), serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-left: -1.3em; /* same as padding-left set on li */
    width: 1.5em; /* same as padding-left set on li */
    color: var(--bs-primary);
}
.list-style-1 li:before {
    content: "\f101";
}
.list-style-2 {
    padding-left: 0.5em;
}
.list-style-2 li:before {
    content: "\f14a";
    font-weight: 400;
    color: var(--bs-black);
    font-size: 20px;
}
.list-style-3 {
    padding-left: 0.75em;
}
.list-style-3 li {
    line-height: 1.8;
}
.list-style-3 li:before {
    content: "\f00c";
    font-size: 22px;
}
.list-style-4 {
    padding-left: 0.5em;
}
.list-style-4 li:before {
    content: "\f068";
    font-size: 20px;
}

.alert {
    --bs-alert-padding-x: .5rem;
    --bs-alert-padding-y: .5rem;
}

.btn.btn-slot {
    --bs-btn-hover-color: var(--bs-primary);
    display: flex;
    align-items: center;
}
/* Ventana visible */
.slot {
    width: 34px;
    height: 34px;
    overflow: hidden;
}
.reel {
    display: flex;
    flex-direction: column;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.reel i {
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.btn-slot:hover .reel {
    transform: translateY(-34px);
}

/********** SECTIONS **********/
/******************************/
header {
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    transition: all 0.4s ease-in-out;
}
@media (min-width: 992px) {
    header {
        transform: translateY(-70px);
    }
    header.scrolled {
        transform: translateY(0);
    }
}
.navbar-brand img {
    height: 44px;
}
.navbar .nav-link {
    font-size: 15px;
    font-weight: 500;
    font-family: var(--font-heading), sans-serif;
    position: relative;
    text-transform: uppercase;
}
.navbar .nav-link.active {
    color: var(--bs-black);
}
.navbar .nav-link span::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease-in-out;
    background-color: var(--bs-primary);
}
.navbar .nav-link:hover span::after {
    width: 100%;
}
@media (min-width: 992px) {
    header {
        height: 70px;
    }
    .navbar .nav-link {
        font-size: 13px;
    }
    .navbar-brand img {
        height: 50px;
    }
}

.masthead {
    height: 700px;
}

.masthead .navbar-nav {
    border-bottom: 1px solid rgba(255,255,225,0.2);
}
.masthead .navbar-nav .nav-link {
    color: white;
}

.carousel {
    width: 100%;
    height: 100%;
}
.carousel-item {
    height: 100%;
}
.carousel-inner {
    height: 100%;
}
.carousel-item__img {
    object-fit: cover;
    -o-object-fit: cover;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}
.carousel-caption {
    position: absolute;
    right: 0 !important;
    left: 0 !important;
    bottom: 50%;
    width: 100%;
    transform: translateY(50%);
}
.carousel-item__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--bs-black-rgb),0.6);
}

.about .bg-dark {
    margin-top: -5rem;
    position: relative;
    z-index: 2;
}
.about-item {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-family: var(--font-heading), sans-serif;
    font-weight: 600;
    color: var(--bs-white);
}
.about-item:hover {
    color: var(--bs-primary);
}
.about-item svg {
    fill: var(--bs-primary);
    width: 44px;
    height: 44px;
    z-index: 1;
}

.solutions-item {
    display: block;
    width: 300px;
    height: 100%;
    padding: 1rem .5rem;
    text-decoration: none;
    border-radius: var(--bs-border-radius-sm);
    background-color: var(--bs-black);
    transition: background-color 0.4s ease-in-out;
}
.solutions-item:hover {
    background-color: var(--bs-dark);
}
.solutions-item svg {
    fill: var(--bs-primary);
    width: 100px;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
}
.solutions-item:nth-child(2) svg {
    width: 60px;
}

.railway-item {
    background-color: rgba(var(--bs-primary-rgb),0.9);
    color: var(--bs-light);
}

.others-logo {
    position: absolute;
    width: 200px;
    height: 180px;
    bottom: 0;
    left: 0;
    background-color: rgba(var(--bs-primary-rgb),0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: -1px;
}
.others-logo__img {
    width: 120px;
    height: auto;
}

.form-contact {
    border-radius: var(--bs-border-radius);
}
.form-dark {
    border: 1px solid var(--color-text-hover);
}
.form-dark .form-control {
    background-color: var(--bs-black);
}

.form-black {
    border: 2px solid var(--bs-dark);
}
.form-black .form-control {
    background-color: var(--bs-dark);
}

footer {
    color: var(--bs-light);
}
footer .jarallax-img {
    opacity: 0.05;
}