/*----------HERO SECTION----------*/

.ti-hero-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 225px 20px 175px 20px;
    border-bottom: var(--ti-ldm-border);
    margin-top: -80px;
}

.ti-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--ti-gradient-overlay-right);
    pointer-events: none;
    z-index: 0;
}

.ti-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 125px;
    background: var(--ti-gradient-overlay-bottom);
    pointer-events: none;
    z-index: 0;
}

.ti-hero-section .ti-section-container {
    position: relative;
    z-index: 1;
}

.ti-hero-container {
    max-width: 500px;
    align-items: flex-start;
}

.ti-hero-section h1 {
    font-size: var(--ti-font-size-sm);
}

.ti-hero-section h2 {
    font-size: var(--ti-font-size-xl);
}

.ti-hero-section h1,
.ti-hero-section h2,
.ti-hero-section p {
    text-shadow: var(--ti-text-shadow);
    color: var(--ti-color-white);
}

.ti-hero-section .ti-button {
    margin-top: 10px;
}

/*----------MEDIA QUERIES----------*/

@media (max-width: 1920px) {
    .ti-hero-section {
        padding: 200px 20px 150px 20px;
    }
}

@media (max-width: 1366px) {
    .ti-hero-section {
        padding: 175px 20px 125px 20px;
    }

    .ti-hero-section .ti-section-container {
        margin: 0px 50px;
    }
}

@media (max-width: 1024px) {
    .ti-hero-section {
        padding: 175px 20px 100px 20px;
    }
}

@media (max-width: 900px) {
    .ti-hero-section .ti-section-container {
        margin: 0 25px;
    }
}

@media (max-width: 450px) {
    .ti-hero-section {
        padding: 135px 20px 75px 20px;
    }
}

@media (max-width: 650px) {
    .ti-hero-section .ti-section-container {
        margin: 0 10px;
    }
}

@media (max-width: 400px) {
    .ti-hero-section .ti-section-container {
        margin: 0;
    }
}
