#header-django *:not(i),
#cms-content *:not(i),
footer *:not(i) {
    font-family: 'DM Sans', sans-serif;
}

#header-django.white-header {
    border-bottom: 1px solid white;
}

.hero-custom {
    height: 700px;
    width: 96%;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
    padding: 0;

    .hero-custom-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }

    .date-container {
        position: absolute;
        top: 30px;
        right: 0;
        color: white;
        z-index: 3;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0;

        p {
            font-size: 1.2rem;
            font-weight: 300;
            margin: 0;
        }
    }

    .date-container::after {
        content: '';
        width: 20px;
        height: 40px;
        background: white;
        border-radius: 10px 0 0 10px;
        margin-left: 20px;
    }

    .text-container {
        position: absolute;
        z-index: 2;
        top: 30%;
        left: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 0;

        h1 {
            font-size: 60px;
            color: white;
            margin: 0;
            line-height: 1;
        }

        h2 {
            font-size: 55px;
            font-weight: 200;
            color: white;
            margin: 0;
        }
    }

    .custom-btn {
        position: absolute;
        margin-top: 20px;
        border-radius: 8px;
        font-weight: 700;
        color: #00B4D9;
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .custom-btn:hover {
        background-color: transparent;
        color: white;
        border: 2px solid white;
    }

    .text-container::before {
        content: '';
        width: 40px;
        height: 130px;
        background: white;
        border-radius: 0 15px 15px 0;
        margin-right: 20px;
    }

    .hero-bottom {
        position: absolute;
        bottom: 0;

        .wave-img {
            border-radius: 0 0 20px 20px;
            object-fit: cover;
            min-height: 170px;
            width: 100%;
        }

        .powered-by {
            position: absolute;
            z-index: 2;
            right: 30px;
            bottom: 30px;
            display: flex;
            flex-direction: column;
            align-items: end;
        }
    }
}

.hero-custom::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 20px;
    background: linear-gradient(to bottom,
            rgba(0, 180, 216, 0.6) 0%,
            rgba(1, 105, 131, 0.45) 60%,
            rgba(1, 105, 131, 0.1) 100%);
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .hero-custom {
        height: 575px;

        .date-container {
          p {
            font-size: 18px;
          }
        }

        .text-container {
            top: 25%;

            h1 {
                font-size: 30px;
            }

            h2 {
                font-size: 25px;
            }
        }

        .hero-bottom {
            .wave-img {
                object-position: right;
            }

            .powered-by {
                right: 3px;
                bottom: 26px;

                img {
                    max-width: 145px !important;
                }
            }
        }
    }
}

.logos-container {
    width: 96%;
    margin: 0 auto;
    padding: 1rem 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;

    .slide-track {
        display: inline-flex;
        animation: scroll 20s linear infinite;
    }

    .slide {
        flex: 0 0 auto;
        padding: 0 25px;
    }

    img {
        height: 100px;
        object-fit: contain;
        max-width: 180px;
    }
}

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

    to {
        transform: translateX(-50%);
    }
}

.text-container-intro {
    background-color: #00AACC;
    color: white;
    border-radius: 15px;
    padding: 2rem;
    font-size: 1.2rem;

    p {
        margin: 0;
        font-size: 1.1rem;
    }
}

.product-container {
    background-color: #daedf2;
}