
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Just+Me+Again+Down+Here&display=swap');

body {
    font-family: "Inter", serif;
    font-optical-sizing: auto;
}
.justme {
    font-family: "Just Me Again Down Here", cursive;
}
.fw-black {
    font-weight: 900;
}
@media screen and (min-width: 1024px) {
    .container {
        max-width: 1340px;
    }
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
}
.bg-choco {
    background: #261313;
    color: white;
}
.bg-choco-slate {
    background: #6A3838;
    color: white;
}
.bg-choco-trans {
    background: rgba(255,255,255,0.2);
}
.bg-choco-trans-2 {
    background: rgba(255,255,255,0.4);
}
/* .hero-bg {
    background: url('../img/hero-bg.webp');
    background-size: cover;
    color: white;
    background-repeat: no-repeat;
} */
.hero-bg {
    background: 
        url('../img/hero-upper.webp') no-repeat top, 
        url('../img/hero-lower.webp') no-repeat bottom;;
    background-position: top, bottom;
    position: relative;
    background-size: 100%;
    color: white;
}
.hero-bg::before {
    content: "";
    position: absolute;
    top: 50px; /* Match upper part's height */
    bottom: 50px; /* Match lower part's height */
    z-index: -1;
    left: 0;
    right: 0;
    background: url('../img/hero-center.webp') repeat-y center;
    background-size: 100%;
}
.banner-guy {
    position: absolute;
    bottom: -3rem;
    right: 0;
    z-index: 2;
}
.trapezoid-call {
    background-color: #EA2244;
    position: relative;
    padding: .5rem;
    cursor: pointer;
    z-index: 2;
    padding-left: 3rem;
    font-weight: bold;
    margin-right: -0.5rem;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.call-circle {
    background-color: #EFD905;
    color: #EA2244;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    padding-top: 3px;
}
.rounded-circle.bg-choco {
    height: 1.5rem;
    width: 1.5rem;
    display: inline-block;
}
.offers {
    background: var(--bs-danger);
    border: 10px dashed white;
    text-align: center;
    color: white;
    position: relative;
    height: 100%;
}
.fw-semibold {
    font-weight: 500;
}
.offers .btn-dark {
    width: 75%;
    position: absolute;
    bottom: 0;
    margin: -20px auto;
    left: 0;
    right: 0;
}

.testimonial-wrapper {
    background-color: #ececec;
    border-radius: 15px;
    margin-left: 3rem;
    margin-bottom: 2rem;
}
.testimonial-wrapper.active {
    margin-left: 0;
    box-shadow: 0 0 10px grey;
    margin-right: 3rem;
    background-color: white;
}
.rounded {
    border-radius: 1rem !important;
}
@media screen and (max-width: 768px) {
    .logo {
        max-width: 150px;
    }
    .hero-bg {
        min-height: unset;
        background-size: cover;
        border-radius: 2rem;
    }
    .banner-guy {
        position: relative;
        bottom: 0;
    }
}