/* Animation */

@keyframes fade-bottom {
    0% {
        transform: translateY(20px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0%;
    }
    100% {
        transform: translateX(0);
        opacity: 100%;
    }
}

.slideToLeft {
    animation: 1s ease-in 0s 1 slideInLeft;
}

.reveal {
    position: relative;
    opacity: 0;
}

.reveal.active {
    opacity: 1;
}

.active.fade-bottom {
    animation: 0.5s ease-in fade-bottom;
}

.bg-0A7A3E {
    background-color: #0A7A3E;
}

.green {
    color: #0A7A3E;
}

.footer-list {
    font-family: 'Roboto', sans-serif;
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.img-gride-01 {
    height: 50%;
    overflow: hidden;
    position: relative;
}

.img-gride-02 {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.img-01 {
    position: absolute;
    top: -90%
}

.img-02 {
    position: absolute
}

.text-tl2 {
    font-family: 'Roboto', sans-serif;
    font-size: 40px;
    font-weight: 1000;
}

.text-sm-1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
}

.border-custom {
    border-right: 1px solid black;
}

.navbar {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
}

.nav-link {
    margin: 0 10px 0 10px;
}

.text-title {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 45px;
}


/* .animation-card:hover .title-card-animation {
    transform: translateX(-100px);
} */


/* CARD */

.card-title {
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 25px;
}

.card-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 200;
    /* display: none; */
    font-size: 15px;
}

.card-overlay-right {
    margin-top: 120px;
}

.card-overlay-left {
    transform: translateX(210px);
    opacity: 0;
    transition: ease-in-out 1s;
}

.card-img {
    opacity: 40%;
}

.card-animation:hover .card-overlay-left {
    transform: translateX(0);
    opacity: 1;
}


/* ---------------- */

.text-SS {
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 40px;
    position: absolute;
    top: 60%;
    left: 60%;
}

.text-SS2 {
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 40px;
    position: absolute;
    top: 60%;
    right: 65%;
}

.text-small {
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 15px;
    position: absolute;
    top: 75%;
    left: 5%;
}

.text-small2 {
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 15px;
    position: absolute;
    top: 75%;
    left: 5%;
}

.img {
    opacity: 35%;
}

.text-tl {
    font-family: Roboto;
    font-size: 45px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    text-transform: uppercase;
}

.border-line-active {
    width: 50%;
    margin-left: 20px;
    border: 1px solid #59260B !important;
    transition: all 0.3s linear(0 0%, 0 1.8%, 0.01 3.6%, 0.03 6.35%, 0.07 9.1%, 0.13 11.4%, 0.19 13.4%, 0.27 15%, 0.34 16.1%, 0.54 18.35%, 0.66 20.6%, 0.72 22.4%, 0.77 24.6%, 0.81 27.3%, 0.85 30.4%, 0.88 35.1%, 0.92 40.6%, 0.94 47.2%, 0.96 55%, 0.98 64%, 0.99 74.4%, 1 86.4%, 1 100%);
}

.border-line {
    opacity: 0;
    width: 0%;
    border: 1px solid #59260B !important;
    transition: all 0.3s linear(0 0%, 0 1.8%, 0.01 3.6%, 0.03 6.35%, 0.07 9.1%, 0.13 11.4%, 0.19 13.4%, 0.27 15%, 0.34 16.1%, 0.54 18.35%, 0.66 20.6%, 0.72 22.4%, 0.77 24.6%, 0.81 27.3%, 0.85 30.4%, 0.88 35.1%, 0.92 40.6%, 0.94 47.2%, 0.96 55%, 0.98 64%, 0.99 74.4%, 1 86.4%, 1 100%);
}

.nav-item:hover .border-line {
    opacity: 100%;
    margin-left: 20px;
    width: 50%;
    border: 1px solid #59260B !important;
}


/* ===== Scrollbar CSS ===== */


/* Firefox */

* {
    scrollbar-width: auto;
    scrollbar-color: #0A7A3E #ffffff;
}


/* Chrome, Edge, and Safari */

*::-webkit-scrollbar {
    width: 13px;
}

*::-webkit-scrollbar-track {
    background: #ffffff;
}

*::-webkit-scrollbar-thumb {
    background-color: #0A7A3E;
    border-radius: 10px;
    border: 3px solid #ffffff;
}