/*----------HOME PAGE---------- */

.ti-home-section {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin-top: -80px;
    width: 100%;
}

.ti-home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.ti-home-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 130px 20px;
    gap: 10px;
}

.ti-home-container h1 {
    font-size: clamp(31px, calc(31px + (55 - 31) * ((100vw - 320px) / (1400 - 320))), 55px);
    line-height: 1.1;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    text-align: center;
    color: var(--ti-color-white);
    margin: 0;
}

.ti-home-container h2 {
    font-size: clamp(15.5px, calc(15.5px + (18 - 15.5) * ((100vw - 320px) / (1500 - 320))), 18px);
    color: var(--ti-color-white);
    text-align: center;
    margin: 0;
    font-family: var(--ti-font-family-primary);
}

.ti-home-container a {
    margin-top: 10px;
}
