.home {
    width: 80%;
    max-width: 1180px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
    gap: 2.5rem;
}

.bread-crumbs {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.bread-crumb-low-opacity {
    opacity: 0.7;
}

.bread-crumb-text {
    margin-left: 0.3rem;
}

.home-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2.5rem;
}

.influencers-banner {
    width: 100%;
    height: 12.875rem;
    margin-left: 50%;
    transform: translateX(-50%);
    border-radius: 42px;
    background-image: linear-gradient(#00297c, #005EFF);
    display: flex;
    flex-direction: column;
    align-items: end;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 2rem;
    position: relative;
    overflow: hidden;
}

.rays {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0.25;
}

.influencer-banner-first-part {
    width: 65%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.apply-now-btn {
    padding: 1.5rem;
    height: 45px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.5px;
    color: #0C90E6;
    background-color: white;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
    text-decoration: none;
    text-wrap: nowrap;
}

.apply-now-btn:hover {
    transform: scale(1.05);
}

.banner-text {
    font-weight: 700;
    font-size: 32px;
    letter-spacing: -1px;
    display: flex;
    flex-direction: column;
}

.influencer-img-wrapper {
    position: absolute;
    bottom: 0;
    left: 3rem;
    width: 19rem;
    height: 13rem;
    z-index: 5;
}

.influencer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heading_1 {
    font-weight: 700;
    font-size: 64px;
    text-align: center;
}

.type-of-model-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.custom-model-form-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.hidden {
    display: none !important;
}

.recent_custom_models_wrapper {
    width: 100%;
}

@media (max-width: 480px) {
    .home {
        width: 100%;
        gap: 2rem;
    }

    .heading_1 {
        font-size: 32px;
    }
}

@media (max-width: 768px) and (min-width: 481px) {
    .home {
        width: 90%;
    }

    .heading_1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .influencers-banner {
        width: 100%;
        height: 9.5rem;
        border-radius: 24px;
        padding: 1rem;
    }

    .influencer-banner-first-part {
        width: 68%;
        flex-direction: column;
        align-items: start;
    }

    .influencer-img-wrapper {
        width: 9rem;
        height: 7rem;
        left: -12px;
    }

    .banner-text {
        font-size: 1rem;
        letter-spacing: 0;
    }

    .apply-now-btn {
        font-size: 12px;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 1260px) and (min-width: 769px) {
    .banner-text {
        font-size: 24px;
    }

    .influencers-banner {
        height: 8.875rem;
    }

    .influencer-img-wrapper {
        width: 13rem;
        height: 9rem;
        left: 1rem;
    }
}