/**********
* General *
***********/

.tm-subheadline{
    text-transform: uppercase;
    letter-spacing: 4px;
}

.tm-subheadline-line-container{
    display: flex;
    overflow: hidden;
}

.tm-subheadline-line{
    width: 35%;
    height: 1px;
    background: var(--e-global-color-secondary);
    transform: scaleX(0);
    animation: lineReeal 1.2s cubic-bezier(.19,1,.22,1) forwards;
}

@keyframes lineReveal {
    0% {
        transform: scaleX(0);
    }

    70% {
        transform: scaleX(1.04);
    }

    100% {
        transform: scaleX(1);
    }
}

.tm-txt-edit-link a,
.tm-link.normal{
    color: var(--e-global-color-secondary);
    text-decoration: none;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
}

.tm-txt-edit-link a:hover,
.tm-link.normal:hover{
    text-decoration: underline;
}

.tm-opacity{
    opacity: 20%;
}

/*************
* Typography *
**************/

h1{
    font-size: 56px;
}

h2{
    font-size: 46px;
}

h3{
    font-size: 38px;
}

h4{
    font-size: 32px;
}

h5{
    font-size: 26px;
}

h6{
    font-size: 22px;
}

p, li{
    font-size: 18px;
}

.tm-text-number span{
    font-size: 100px;
}

@media (max-width: 767px){
    h1{
        font-size: 36px;
    }

    h2{
        font-size: 30px;
    }

    h3{
        font-size: 26px;
    }

    h4{
        font-size: 22px;
    }

    h5{
        font-size: 20px;
    }

    h6{
        font-size: 18px;
    }

    .tm-text-number span{
        font-size: 100px;
    }
}

/*********
* Header *
**********/

.tm-header-section::before{
    background:
        radial-gradient(
                circle at top left,
                rgba(213, 191, 29, 0.60) 0%,
                rgba(213, 191, 29, 0) 15%
        ),

        radial-gradient(
                circle at bottom right,
                rgba(0, 170, 201, 0.60) 0%,
                rgba(0, 170, 201, 0) 15%
        ),

        rgba(0,0,0,0.35);
}

.tm-header-content-container{
    margin-top: auto;
    margin-bottom: 100px;
}

/************
* Accordion *
*************/

.e-n-accordion-item-title-text{
    font-size: 18px !important;
}

/***************
* Image & Text *
****************/

.tm-absolute-img-container{
    position: absolute;
    width: 50%;
}

.tm-absolute-img-container.left{
    left: 0;
}

.tm-absolute-img-container.right{
    right: 0;
}

.tm-abs-img-content-container.right{
    margin-left: auto;
    margin-right: 0;
}

.tm-content-container{
    margin-top: auto;
    margin-bottom: 0;
}

@media(max-width:1024px){
    .tm-absolute-img-container{
        position: relative;
        width: 100%;
    }

    .tm-abs-img-content-container{
        margin-left: auto;
        margin-right: auto;
    }
}