/* Header */

#t-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 2px 10px 0px rgb(0, 0, 0, .15);
}

#t-header + div {
    margin-top: 80px;
}

@media screen and (max-width: 1200px) {
    #t-header + div {
        margin-top: 70px;
    }
}

@media screen and (max-width: 480px) {
    #t-header + div {
        margin-top: 50px;
    }
}


/*Navigation link*/
.nav__item .tn-atom {
    position: relative;
    padding-bottom: 3px;
}

.nav__item .tn-atom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -20px;
    width: 100%;
    height: 2px;
    background-color: #eb690b;
    opacity: 0;
    transition: all .3s ease;
}

.nav__item:hover > .tn-atom::after {
    left: 0;
    opacity: 1;
}


/* Mobile version */
.t450__container {
    display: flex;
    align-items: center;
    justify-content: center;
}




/*===================================
=========== HOME PAGE
===================================*/

/* === HERO === */
@media screen and (max-width: 1300px) {
    .hero__title .tn-atom {
        font-size: 35px;
    }
}













