﻿/*
  hero-banner1
  ------------
*/
.hero-banner1 {
    width: 100%;
    min-height: 80vh;
    position: relative;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
}

    .hero-banner1 img {
        position: absolute;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 1;
    }

    .hero-banner1:before {
        content: "";
        background: color-mix(in srgb, var(--background-color), transparent 60%);
        position: absolute;
        inset: 0;
        z-index: 2;
    }

    .hero-banner1 .container {
        position: relative;
        z-index: 3;
    }

    .hero-banner1 .text-1 {
        margin: 0;
        font-size: 48px;
        font-weight: 700;
    }

    .hero-banner1 .hero-icon {
        color: var(--accent-color);
        font-size: 20px;
        margin-right: 12px;
        align-items: center;
    }

    .hero-banner1 .text-p {
        color: color-mix(in srgb, var(--light-color), transparent 20%);
        margin: 10px 0 0 0;
        font-size: 24px;
    }

@media (max-width: 768px) {
    .hero-banner1 .text-1 {
        font-size: 32px;
    }

    .hero-banner1 .text-p {
        font-size: 18px;
    }
}
