/* ==============================================================================

  HERO

============================================================================== */

main {
    height: 700px;
    background-image: url(../assets/home/hero/hero-image-one.webp);
    background-size: 1950px;
    background-position: center bottom;
    margin-bottom: var(--g40);
}

main > :nth-child(2) {
    display: none;
}

main h1 {
    font-size: 28px;
    color: #FCFCFC;
    font-weight: 900;
    margin-bottom: var(--g4);
}

main p {
    font-size: 15px;
    color: #C7C8C8;
    font-weight: 400;
}

main .button-main {
    margin: var(--g20) 0;
}

/* =======================================
  BREAKPOINT 1
======================================= */

@media (max-width: 1340px) {

    /* ==============================================================================

        HERO

    ============================================================================== */

    main {
        height: 600px;
        background-size: auto 600px;
    }

    main h1 {
        font-size: 27px;
    }

    main p {
        font-size: 14px;
    }
}

@media (max-width: 1027px) {

    /* ==============================================================================

        HERO

    ============================================================================== */

    main {
        height: 800px;
        align-items: center !important;
        justify-content: flex-start !important;
        background-image: url(../assets/home/hero/hero-image-two.webp);
        background-size: 100%;
        text-align: center;
    }

    main p,
    main > :first-child {
        display: none;
    }

    main > :nth-child(2) {
        display: block;
    }

    main h1 {
        font-size: 36px;
    }
    
    main .button-main {
        padding: 10px 12px 9px 12px;
        font-size: 14px !important;
    }
}

@media (max-width: 703px) {

    /* ==============================================================================

        HERO

    ============================================================================== */

    main {
        height: auto;
        aspect-ratio: 1 / 1.5;
        background-size: 120% auto;
        background-position: center bottom;
        padding-top: 100px !important;
    }

    main h1 {
        font-size: 32px;
    }
    
    main .button-main {
        padding: 8px 11px 8px 11px;
        font-size: 13px !important;
    }
}