/* Regular weight */
@font-face {
    font-family: 'wavehaus';
    src: url('../fonts/Wavehaus-66Book.otf') format('opentype');
    font-weight: 400;
}

/* Thinner weight */
@font-face {
    font-family: 'wavehaus';
    src: url('../fonts/Wavehaus-28Thin.otf') format('opentype');
    font-weight: 100;
}

/* Thin weight */
@font-face {
    font-family: 'wavehaus';
    src: url('../fonts/Wavehaus-42Light.otf') format('opentype');
    font-weight: 300;
}

/* Bold weight */
@font-face {
    font-family: 'wavehaus';
    src: url('../fonts/Wavehaus-128Bold.otf') format('opentype');
    font-weight: 700;
}

/* Semibold weight */
@font-face {
    font-family: 'wavehaus';
    src: url('../fonts/Wavehaus-95SemiBold.otf') format('opentype');
    font-weight: 500;
}

/* Extra bold weight */
@font-face {
    font-family: 'wavehaus';
    src: url('../fonts/Wavehaus-158ExtraBold.otf') format('opentype');
    font-weight: 900;
}

body {
    font-family: 'wavehaus', 'montserrat', sans-serif;
    background-color: #fffbf7;
    color: #212529;
    /* background-color: rgb(255, 238, 222); */
}

.navbar-logo-text {
    font-weight: 900;
    text-transform: uppercase;
}

.navbar-logo-text span {
    font-weight: 500;
}

.btn-outline-dark {
    transition: all 0.3s;
}

.logo-text {
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    font-size: 15vw;
    line-height: 15vw;
    font-weight: 900;
}

.logo-text--slim {
    font-weight: 300;
}

/* ABOUT US */
.about-title {
    text-decoration: underline;
    font-size: 42px;
    font-weight: 700;
}

.about-text {
    font-size: 32px;
    font-weight: 400;
}

@media only screen and (max-width: 480px) {
    .about-title {
        font-size: 24px;
    }

    .about-text {
        font-size: 18px;
    }
}

/* SERVICES */
.service-title {
    font-size: 24px;
}

/* .about-text{
    font-size:32px; 
    font-weight:400;
} */

@media only screen and (max-width: 480px) {
    .service-title {
        font-size: 16px;
    }
}

.card {
    position: relative !important;
    height: 170px;
    overflow: hidden;
    transition: all 0.3s !important;
    cursor: pointer;
    border: #212529 2.5px solid !important;
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    position: absolute !important;
    bottom: 0;
    left: 0;
}

.card-tint {
    position: absolute;
    top: 0;
    left: 0;
    width: 700px;
    height: 400px;
    background-color: #fffbf7;
}

.card-text {
    font-size: 32px;
    font-weight: 700;
    color: #212529;
}

.animate-card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease-out;
}

.animate-card--show {
    opacity: 1;
    transform: translateY(0);
}


/* CONNECT */
.connect-title {
    font-size: 108px;
    font-weight: 900;
    line-height: 108px;
}

.connect-text {
    font-size: 36px;
}

.connect-text-icon {
    height: 36px;
    width: 36px;
}

.connect-link {
    color: #3d2c8c;
    transition: all 0.3s;
    word-wrap: break-word;
}

.connect-link:hover {
    color: #ff8402;
}

.connect-link-whatsapp {
    color: #29AF3E;
    transition: all 0.3s;
}

.connect-link-whatsapp:hover,
.connect-link-whatsapp:active {
    color: #1c7c2a;
}

@media only screen and (max-width: 480px) {
    .connect-title {
        font-size: 72px;
        line-height: 72px;
    }

    .connect-text {
        font-size: 24px;
    }

    .connect-text-icon {
        height: 24px;
        width: 24px;
    }

}


/* PORTFOLIO SECTION */
#portfolio {
    padding: 0;
    margin: 0;
    width: 100%;
}

@media (max-width: 768px) {
    #portfolio .service-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

/* PORTFOLIO SLIDER */
.slider {
    height: 160px;
    margin: 20px auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider .slide-track {
    animation: scroll 60s linear infinite;
    display: flex;
    width: calc(280px * 22 * 2);
    gap: 30px;
}

/* Reverse Scroll Animation */
.slider.slider-reverse .slide-track {
    animation: scroll-reverse 60s linear infinite;
}

.slider .slide {
    height: 120px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.slider .slide:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    z-index: 2;
    border-color: transparent;
}

.slider .slide img {
    max-height: 80px;
    max-width: 100%;
    width: auto;
    filter: none;
    /* Show natural colors by default */
    opacity: 1;
    transition: all 0.3s;
}

/* Specific class for White Logos -> Invert them to Black */
.slider .slide img.white-logo-fix {
    filter: invert(1) brightness(0);
    /* Turns white to black */
    opacity: 0.8;
}

.slider .slide:hover img.white-logo-fix {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-280px * 22 - 30px * 22));
    }
}

@keyframes scroll-reverse {
    0% {
        transform: translateX(calc(-280px * 22 - 30px * 22));
    }

    100% {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .slider {
        height: 120px;
        margin: 10px auto;
    }

    .slider .slide {
        width: 160px;
        height: 90px;
        padding: 15px;
    }

    .slider .slide img {
        max-height: 50px;
    }

    .slider .slide-track {
        width: calc(190px * 22 * 2);
        gap: 20px;
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-180px * 22));
        }
    }

    @keyframes scroll-reverse {
        0% {
            transform: translateX(calc(-180px * 22));
        }

        100% {
            transform: translateX(0);
        }
    }

}