

.productstopblock {
    width: 100%;
    background-image: url('../assets/images/productblock.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    aspect-ratio: 2880 / 501;
}

.mobileproductstopblock {
    display: none;
}

.burgermenuiconcontainer {
    display: none;
}


#mobileonlyburgermenu {
    display: none;
}

.burgermenu {
    display: none;
}

.burgermenu.is-open {
    transform: translateX(0);
}

header {
    width: 100%;
    height: auto;
    position: relative;
}

.pagetitle {
    position: absolute;
    bottom: 0;
    left: 0;
    margin-bottom: 6vh;
    margin-left: 7vw;
    /* border: 1px solid #ccc; */
    width: 70%;
    height: auto;
    color: var(--tntwhite);
    font-family: Cairo-Bold, Thai-Bold, Chinese-Bold, sans-serif;
    line-height: 1;
    font-size: clamp(3rem, 7vw, 8rem);
}

.mainsection {
    display: flex;
    width: 100%;
    position: relative;
    flex-direction: row;
    margin-top: 3rem;
    /* border: 1px #ff0000 solid; */

}

.leftnav {
    height: auto;
    width: 22%;
    min-width: 220px;
    /* border: #ccc 1px solid; */
    padding-left: 5vw;
}

.contentblock {
    height: auto;
    flex: 1 1 0;
    min-width: 0;
    /* border: #ccc 1px solid; */
    padding-right: 5vw;
}

.inthispagecontainer {
    display: flex;
    flex-direction: column;
    height: auto;
    width: 12rem;
    /* border: 1px solid #ccc; */
    text-decoration: none;
}

.inthispagetitle {
    font-family: Cairo-Regular, Thai-Regular, Chinese-Regular;
    font-size: 1.2rem;
    border-bottom: var(--tntgray) 2px solid;
    color: var(--tntgray);
    margin-bottom: 0.5rem;
}

.inthispageoptions {
    width: 10rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.inthispageoptions:hover .inthispageline {
    transform: rotate(45deg);
    transition: all ease-in-out 0.3s;
}

.inthispageoptions:hover .inthispagetext {
    font-family: Cairo-Bold, Thai-Bold, Chinese-Bold, sans-serif;
    transition: all ease-in-out 0.3s;

}

.inthispagelinecontainer {
    height: 1.5rem;
    width: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid #000; */
}

.inthispageline {
    background: var(--tntgray);
    width: 50%;
    height: 10%;
    transition: all ease-in-out 0.3s;
}

.inthispagetext {
    font-family: Cairo-Regular, Thai-Regular, Chinese-Regular;
    font-size: 1rem;
    color: var(--tntgray);
    line-height: 2;
    transition: all ease-in-out 0.3s;
    text-wrap: nowrap;
}

@media screen and (max-width: 767px) {
    section {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .burgermenuiconcontainer {
        position: absolute;
        right: 0;
        height: clamp(0, 1.5rem,100%);
        aspect-ratio: 1 / 1;
        object-fit: contain;
        display: block flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;

    }

    .burgermenutitle .burgermenuiconcontainer {
        margin-right: 1rem;
    }

    .burgermenuicon {
        height: 1.5rem;
        width: 1.5rem;
    }

    .leftnav {
        display: none;
    }

    .productstopblock {
        background-image: url('../assets/images/productblock.png');
        display: none;
    }


    .mobileproductstopblock {
        width: 100%;
        background-image: url('../assets/images/mobiletopblock.png');
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        aspect-ratio: 1163 / 443;
        display: block;
    }


    .pagetitle {
        margin-bottom: 1rem;
        margin-left: 1rem;
    }

    #mobileonlyburgermenu {
        display: block;
    }

    .burgermenu {
        display: flex;
        position: fixed;
        height: 100%;
        width: 80vw;
        right: 0;
        top: 0;
        background: var(--tntblack);
        z-index: 2001;
        box-shadow: 0px 0px 39px -18px var(--tntblack);
        flex-direction: column;
        padding-top: 2rem;
        pointer-events: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }

    .burgermenu > * {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .burgermenutitle {
        width: 100%;
        height: auto;
        /* border: 1px #ccc solid; */
        display: flex;
        flex-direction: row;
        align-items: center;
        padding-bottom: 2rem;
    }


    .burgermenubrandinglogo {
        font-family: Cairo-Bold, Thai-Bold, Chinese-Bold, sans-serif;
        line-height: 1;
        font-size: 1.5rem;
        width: fit-content;
        color: var(--tntwhite);
    }

    .burgermenubranding {
        font-family: Cairo-Regular, Thai-Regular, Chinese-Regular;
        line-height: 1;
        font-size: 1rem;
        width: fit-content;
        color: var(--tntwhite);
        margin-left: 5px;
    }

    .mask {
        width: 100%;
        height: 100%;
        background-color: #161618be;
        position: fixed;
        inset: 0;
        z-index: 1101;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease-in-out;
    }

    .mask.is-open {
        opacity: 1;
        pointer-events: auto;
    }

    .burgermenuanchorcontainer {
        height: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .burgermenuanchor {
        height: 2rem;
        color: var(--tntwhite);
        font-size: 1rem;
        font-family: Cairo-Regular, Thai-Regular, Chinese-Regular;
        /* border: 1px #ccc solid; */
        text-decoration: none;
    }

    .burgermenuanchor:hover {
        background-color: #111113;
    }

    .burgermenulanguageselectorcontainer {
        width: 100%;
        height: auto;
        color: var(--tntwhite);
        /* border: #ccc solid 1px; */
        display: flex;
        flex-direction: column;
        padding-top: 3rem;
        
    }

    .burgermenulanguageselectortitle {
        color: var(--tntwhite);
        font-family: Cairo-Bold, Thai-Bold, Chinese-Bold, sans-serif;
        font-size: 1rem;
        margin: 0;
        line-height: 2;
    }

    .burgermenulanguageselectorcontainer .langoption .langtext {
        color: var(--tntwhite);
    }

}

