﻿/*
    Theme Name: Trevios
    Theme URI: trevios.com
    Author: enobis Ideenmanagement GmbH
    Author URI: trevios.com
    Description: This is the theme for the website trevios.com.
    Version: 1.9.13
*/

:root {
    --black:#1c1b1a;
    --palewhite:#fafafa;
    --maxwidth: 1200px;
    --darkblue: #567696;
    --lightblue: RGB(244, 246, 250);
    --tinyscreen: 600px;

    /* Sizes */
    --pd-md: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: unset;
    background-color: var(--palewhite);
    margin-top: 50px;
    overflow-x: hidden;
}

em {
    font-weight: 600;
}

h1,h2,h3,h4,h5,h6,body,a, span {
    font-family: Arial, Helvetica, sans-serif !important;
}

p {
    font-size: 16px !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    line-height: 1.5em !important;
}

h1 {
    font-size: 48px !important;
    font-weight: 700 !important;
}

h2 {
    font-size: 48px !important;
    font-weight: 700 !important;
}


h3 {
    font-size: 38px !important;
    font-weight: 700 !important;
}

ul {
    list-style: none;
    line-height: 1.5em;
}

.tr-a {
    text-decoration: none;
    color: var(--darkblue);
    position: relative;
    transition: color 0.3s;
}
  
.tr-a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--darkblue);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease-out;
}
  
.tr-a:hover {
    color: #0056b3;
}

.front-page-desc {
    hyphens: auto;
    max-width: 90%;
    max-width: 1000px;
}

.tr-a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/**Fonts Responsive**/

@media screen and (max-width: 850px) {
    h2 {
        font-size: 1.5em !important;
    }
    h3 {
        font-size: 1.35em !important;
    }
    p {
        font-size: 1.25em !important;
    }
    ul {
        font-size: 1.05em !important;
    } 
}

.page-center {
    float: none;
    margin: 0 auto;
    max-width: 1200px;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media screen and (max-width: 1024px) {
    .page-center {
        padding-left: var(--pd-md);
        padding-right: var(--pd-md);
    }
}

@media screen and (max-width: 850px) {
    .front-page-desc,
    .page-center,
    .tr-hero {
        padding-left: var(--pd-md, 1.25rem) !important;
        padding-right: var(--pd-md, 1.25rem) !important;
    }
}

@media screen and (max-width: 850px) {
    .tr-hero {
        align-items: unset !important;
    }

    .tr-hero h1 {        
        font-size: unset !important;
    }
}

@media screen and (max-width: calc(var(--maxwidth) + 20px)) {
    .row-fluid {
        margin: 0 40px;
    }
    
}

@media screen and (max-width: 850px) {
    .row-fluid {
        margin: 0 0px;
    }
}

/*For Getting rid of in page link list on mobile*/
@media screen and (max-width: 850px) {
    #software-inpage-links{
        display: none !important;
    }
}

/** CTA **/
.t-cta::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #567696;
    background: -moz-linear-gradient(top, #00000070, #567696);
    background: -webkit-linear-gradient(top, #00000070, #567696);
    background: linear-gradient(to bottom, #00000070, #567696);
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#567696', endColorstr='#567696',GradientType=0 );*/
    
}
.t-cta > div:nth-child(1){
    z-index: 1;
}
.t-cta > div:nth-child(1) * :not(a) {
    color: white;
}
.t-cta > div:nth-child(1){
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: left;
}
/** CTA FONTS */
.t-cta h1{
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.6em;
}
.t-cta p{
    max-width: 500px;
    font-size: 18px;
    line-height: 1.625em;
}

@media screen and (max-width:600px) {
    .t-cta h1 {
        font-size: 1.5em;
    }
}

/**Header*/
.t-header {
    background-color: white;
    padding: 20px 0;
    top: 0px;
    position: fixed;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: uppercase;
    transform: translateZ(100px);
    transition: background .4s ease;
    z-index: 9999999;
    width: 100vw;
}
.t-header > div:not(.tr-header-search) {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.t-header .page-center {
    max-height: 45px;
}
.t-header-scrolled {

    background-color: var(--black);
    top: 0px;
    position: fixed;
    transform: translateZ(100px);
    transition: background .4s ease;
}
.t-header-scrolled *{
    color: white;
    fill: white;
}
.tr-header-search {
    position: absolute;
    top: -100%;
    right: 0;
    left: 0;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: var(--palewhite);
    z-index: 1;
    transition: top 0.2s;
}

.tr-header-search-open {
    top: 0;
    transition: top 0.2s;
}
.tr-header-search {
    background-color: white;
}
.t-header-scrolled .tr-header-search {
    background-color: var(--black);
}

.tr-header-search input {
    background-color: transparent;
    border: 0;
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.tr-header-search div {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.t-header-scrolled span{
    background-color: var(--palewhite);
}

.t-non-lined-link{
    text-decoration: unset;
}
.t-header-nav {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.t-header-mm {
    position:relative;
    margin-left: 25px;
    padding-right: 25px;
}

.t-header-mm>div:nth-child(1)::after {
    box-shadow: inset -2px 2px 0 0;
    color: #1c1b1a;
    content: "";
    display: block;
    height: 7px;
    position: absolute;
    right: 10px;
    top: 50%;
    -webkit-transform: translateY(-5px) rotate(135deg);
    transform: translateY(-5px) rotate(135deg);
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    transition: transform .15s ease-in-out;
    width: 7px;
}

.t-header-mm:hover {
    cursor: pointer;
}

.t-header-mm:hover>div:nth-child(1) {
    color: #6b6b6a;
}

.t-header-scrolled .t-header-mm>div:nth-child(1)::after {
    color: white;
}
.t-header-scrolled .t-non-lined-link img {
    filter: grayscale(1) contrast(100);
    transition: 0.2s;
}


.t-header-mm:hover .t-header-mm-content {
    display: flex;
}

.t-header-mm-content:hover {
    display: flex;
}

.t-header svg:nth-of-type(1) {
    transform: scaleX(-1);
}
.t-header-mm-content {
    display: flex;
    top: 25px;
    flex-direction: column;
    gap: 10px;
    width: 250px;
    background: white;
    padding: 15px;
    border-radius: 5px;
    left: -25px;
    box-shadow: 10px 5px 5px black;
}

.t-header-mm-content a {
    text-decoration: none;
    color: black !important;
    font-size: 14px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 0.2s;
}

.t-header-mm-content a:hover {
    text-decoration: none;
    color: white !important;
    background-color: var(--darkblue);
    transition: background-color 0.2s;
}
.t-header-scrolled .t-header-mm-content a {
    color:white !important;
}

.t-header-langbutt button {
    all: unset;
}

.t-header-langbutt button:hover {
    cursor: pointer;
}

.t-header-langbutt button:focus {
    outline: revert;
}

.tr-lang-dropdown{
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    right: 50%;
    background-color: white;
    padding: 20px 10px;
    width: 75px;
    border-radius: 5px;
    box-shadow: 10px 5px 5px black;
    transform: translateX(50%);
}

.tr-lang-dropdown-show button{
    padding: 20px 10px;
}

.tr-lang-dropdown button {
    text-decoration: none;
    color: black;
    font-size: 14px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color 0.2s;
}

.tr-lang-dropdown-show button:hover{
    background-color: var(--darkblue);
    color: white;
    transition: background-color 0.2s;
}

.tr-lang-dropdown-show {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.t-header-langbutt{
    position: relative;
}
.t-header-scrolled .t-header-mm-content {
    background-color: var(--black);
}

.t-featurecard {
    gap: 20px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    margin-bottom: 80px;
}

.t-featurecard-card {
    max-width: calc( 100% / 4);
    background-color: white;
    width: calc( 100% / 4 );
    height: 375px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 20px 0;
}

@media screen and (max-width: 600px) {
    .t-featurecard {
        flex-direction: column
    }

    .t-featurecard-card {
        max-width: unset;
        width: unset;
    }
}

.t-featurecard-card img {
   padding-top: 20px;
}

.t-featurecard-card a {
    margin-top: auto;
    margin-bottom: 20px;
}

.t-featurecard h3 {
    font-size: 20px !important;
    font-weight: unset !important;
}

.t-hidden {
    display: none;
}

#footer {
    background-color: var(--black);
    padding-top: 100px;
    padding-bottom: 60px;
}

#footer *:not(#BorlabsCookieBox *){
    color: white;
}

#footer ul {
    min-width: 190px;
    text-align: left;
    border-radius: 6px;
    list-style: none;
    list-style-position: inside;
    padding-left: 0;
}

#footer li {
    padding: 10px 0;

}

#footer li a {
    opacity: 0.8;
    transition: opacity .4s ease-in-out;
    text-decoration: none;
}

#footer li a:hover{ 
    opacity: 1;
    transition: opacity .2s ease-in-out;
}

#footer-info-columns {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    margin-bottom: 65px;
}

#footer-info-sitemap {
    display: flex;
    width: 66.66%;
}

#footer-info-sitemap > div {
    width: calc(33.33% - 26px)
}

#footer-info-sitemap a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 20px;
}

#footer-info-brandinfo {
    display: flex;
    flex-direction: column;
    width: 33.33%;
    gap: 20px;
    transform: translateY(-55px);
}

#social-map{
    display: flex;
    flex-direction: row;
    gap: 35px;

}

#footer-info-brandinfo .social-svg {
    height: 1em;
    width: 1em;
}

#footer-info-brandinfo .social-svg svg {
    fill: white;
    transition: fill .4s ease-in-out;
}

#footer-info-brandinfo * {
    max-width: 270px;
}

#footer-info-brandinfo img{
    filter: grayscale(1) contrast(100);
}

#footer-info-contact{
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

#footer-info-contact span{
    font-size: 12px;
    font-weight: 600;
    position: relative;
}

#footer-info-contact span:not(:last-child)::after{
    content: "|";
    position: absolute;
    right: -22px;
}

#footer-info-contact a{
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
}

@media screen and (max-width: 800px) {
    #footer-info-contact {
        flex-direction: column;
        align-items: flex-start;
    }

    #footer-info-contact span:not(:last-child)::after{
        all: unset;
    }
}

@media screen and (max-width: 600px) {
    #footer {
        padding-left: 5px;
        padding-right: 5px;
    }
    #footer-info-contact{
        gap: 10px;
    }

    #footer-info-contact span:not(:last-child)::after{
        right: -7px;
    }
}

#footer-rights {
    display: flex;
    flex-direction: row;
    justify-items: center;
    margin-bottom: 20px;
}

#footer-rights > button {
    all: unset;
    background-color: var(--darkblue);
    margin-left: auto;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.2s;
    border-radius: 5px;
}

#footer-rights > button svg {
    fill: white;
    transition: 0.2s;
    width: 25px;
    height: 25px;
}

#footer-rights > button:hover {
    background-color: white;
    transition: 0.2s;
    cursor: pointer;
}

#footer-rights > button:hover svg {
    fill: var(--darkblue);
    transition: 0.2s;
}

@media screen and (max-width: 600px) {
    #footer-info-columns {
        flex-direction: column;
    }

    #footer-info-brandinfo {
        width: unset;
    }

    #footer-info-sitemap {
        flex-direction: column;
        width: unset;
    }
}

.two-column {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.two-column h2 {
    font-size: 38px;
    line-height: 1.6em;
    letter-spacing: -1px;
}

.two-col-50{
    width: 50%;
}

.two-col-50 img {
    max-width: 100%;
}

@media screen and (max-width: 600px) {
    .two-column {
        flex-direction: column;
    }
    .two-column h2 {
        font-size: 29px;
    }
    .two-col-50 {
        width: unset;
    }
}

.tr-wrapper {
    padding: 80px 0;
}

.frontpage-column-wrapper {
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
}

.frontpage-column-wrapper-left {
    background-position: left center;
}

.btn-hollow {
    border-style: solid !important;
    border-width: 2px !important;
    padding: 13px 19px !important;
    border-color: var(--darkblue);
    color: var(--darkblue);
    border: 0;
    border-radius: 6px;
    display: inline-block;
    font-family: arial, helvetica, sans-serif;
    font-size: 13px !important;
    font-weight: 800 !important;
    letter-spacing: 0;
    letter-spacing: .5px;
    line-height: 1.6em !important;
    opacity: 1 !important;
    overflow: hidden;
    padding: 15px 21px;
    position: relative;
    text-transform: uppercase;
    transition: all .4s ease-in-out;
    z-index: 0;
    text-decoration: none;
}

.btn-hollow:hover {
    background: var(--darkblue);
    color: var(--palewhite);
}

.sitemap-heading {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0;
    padding-bottom: 20px;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
}
/** Buttons */
.t-button {
    color: white;
    text-decoration: unset;
    background-color: var(--darkblue);
    border: 0;
    border-radius: 6px;
    display: inline-block;
    font-family: arial, helvetica, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.6em;
    opacity: 1 !important;
    overflow: hidden;
    padding: 15px 21px;
    position: relative;
    text-transform: uppercase;
    transition: all .4s ease-in-out;
    z-index: 0;
}

.t-button-white {
    color: var(--black);
    background-color: white;
}

.t-button:hover {
    background-color: white;
    color: var(--black);
    transform: translateZ(100px);
    transition: background .4s ease;
    cursor: pointer;
}

.t-button-white:hover {
    background-color: var(--black);
    color: white;
}

.t-yt-video {
    margin-top: 100px;
    min-height: 750px;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
}

.t-yt-video > div:nth-child(2) {
    top: -100px;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    min-width: 1920px;
    width: 100vw;
}

.t-yt-video > div:nth-child(2) > iframe {
    position: relative;
    min-height: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}
/**Home */
#tr-home-slider {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
    background: white;
}

@media screen and (max-width: calc(var(--maxwidth) + 20px)) {
    #tr-home-slider > img:nth-of-type(1),
    #tr-home-slider > img:nth-of-type(2) {
        display: none;
    }
}

/*Side Images for Home Slider*/
#tr-home-slider > img {
    width: 200px;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    background: white;
    box-shadow: white 0px 0px 30px 15px;
}

#tr-home-slider > img:nth-of-type(2){
    margin-left: auto;
}

#tr-home-slider > div:nth-of-type(1) {
    display: block;
    width: 80%; /*Feel free to change this*/
    position: absolute;
}

@media screen and (max-width: 800px) {
    #tr-home-slider > div:nth-of-type(1) {
        width: 100%;
        position: relative;
    }
}

@media screen and (max-width: 600px) {
    #tr-home-slider > img {
        display: none;
        box-shadow: none;
    }
}

/** Solid CTA */
.t-cta-solid {
    background-color: var(--darkblue);
    padding: 80px 0;
}

.t-cta-solid .page-center{
    display:flex;
    flex-direction:row;
    align-items:center;
}

.t-cta-solid .page-center div:nth-child(1){
    display: flex; 
    flex-direction: column; 
    gap: 25px;
}


.t-cta-solid > div > div {
    max-width: 800px;
}

.t-cta-solid h2, .t-cta-solid p{
    color: white;
}

.t-cta-solid h2 {
    font-size: 38px;
    font-weight: 700;
}

.t-cta-solid p {
    font-size: 18px;
    font-weight: 400;
}
.t-cta-solid a {
    margin-left: auto;
}

@media screen and (max-width: 600px ) {
    .t-cta-solid .page-center{
        flex-direction: column;
        align-content: center;
    }
    .t-cta-solid .page-center div:nth-child(1) {
        align-items: center;
    }

    .t-cta-solid a {
        margin-left: unset;
    }
}

/** IDM **/
.tr-hero {
    box-sizing: border-box !important;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 20px 70px;
    gap: 45px;
    min-height: 720px;
}

#id-management img.ipad-mockup {
    max-width: 600px;
    width: 100%;
    height: auto;
}

@media screen and (max-width: calc(var(--maxwidth) + 20px)) {
    #id-management img.ipad-mockup {       
        padding-top: 30px !important;
    }
}

@media (max-width: 850px) {
    #id-management img.ipad-mockup {
        max-width: 90%;   
        padding-top: 300px !important;
    }
}

.tr-hero p {
    max-width: 500px;
}

.tr-hero img {
    width: 100%;
    min-width: 300px;
    max-width: 1000px;
}

.tr-hero div {
    flex: 1
}

@media screen and (max-width: 850px) {
    .tr-hero {
        flex-direction: column;
    }
}
.tr-faq{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}
@media screen and (max-width: 850px) {
    .tr-faq{
        grid-template-columns: 1fr;
    }
    
}
.tr-accordian{
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-family: arial, helvetica, sans-serif;
    font-weight: 700;
    padding: 25px 70px 25px 30px;
    position: relative;
    transition: all .4s ease-in-out;
    border-radius: 6px;
}
.tr-accordian:hover{
    background-color: #567696;
    color: #fff;
}
.tr-accordian-head{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.tr-accordian-head:hover {
    cursor: pointer;
}

.tr-accordian-head > h3 {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    margin: unset;
    font-size: 16px !important; 
}
.tr-accordian-ico {
    left: auto;
    height: 25px;
    width: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tr-accordian-ico div{
    background-color: #1c1b1a;
    height: 2px;
    width: 25px;
    position: absolute;
    transition: 0.2s;
}

.tr-accordian:hover .tr-accordian-ico div{
    background-color: #fff;
    transition: 0.2s;
}

.tr-accordian-ico div:nth-child(1){
    transform: rotate(90deg);
}

.tr-accordian-open .tr-accordian-ico > div:nth-child(1){
    transform: rotate(0deg);
}

.tr-accordian-open {
    background-color: var(--darkblue);
    color: var(--palewhite);
}

.tr-accordian-column {
    display: flex;
    gap: 25px;
    flex-direction: column;
}

.tr-accordian p{
    font-size: 16px;
}

@media screen and (max-width: 850px) {
    .tr-accordian {
        padding: 25px 30px;
    }
}

.tr-faq-container {
    padding: 80px 0;
    background-size: contain;
    background-position: right bottom;
    background-repeat: no-repeat;
    margin: 100px 0;
}

@media screen and (max-width: 800px) {
    .tr-faq-container {
        background-image: none !important;
    }
}

.tr-advantages-container {
    background-color: var(--lightblue);
    padding: 135px 0;
}

.tr-advantages-container h2 {
    max-width: 670px;
    margin-bottom: 60px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.6em; 
}

.tr-advantages-container h3 {
    font-size: 19px;
}

.tr-advantages-columns {
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: wrap;
}

.tr-advantages-columns div {
    width: calc(25% - 20px);
}

@media screen and (max-width: 935px) {
    .tr-advantages-columns {
        padding: 0 20px;
    }
    .tr-advantages-columns div {
        width: calc(50% - 20px);
    }
}

@media screen and (max-width: 850px) {
    .tr-advantages-columns {
        flex-direction: column;
    }
    .tr-advantages-columns div {
        width: calc(100%);
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .tr-advantages-columns p {
        text-align: center;
    }
}

.tr-advantages-columns p {    
    line-height: 32px;
    margin-top: 20px;
    font-weight: 400;
}

.tr-advantages-columns img {
    width: 70px;
    height: 70px;

}

.tr-review-idm-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 70px;
}

.tr-review-idm-header h2{    
    max-width: 670px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.6em;
    margin-top: unset;
    margin-bottom: unset;
}

.tr-review-idm-header p:nth-child(1) {
    margin-top: unset;
    margin-bottom: 15px;
    font-size: 18px;
}

.tr-review-card {
    display: flex;
    flex-direction: column;
    padding: 40px;
    box-sizing: border-box;
}

.tr-review-header img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-right: 25px;
    aspect-ratio: 1/1;
}

.tr-review-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-size: 16px;
    margin-bottom: 40px;
}

.tr-review-review {
    line-height: 36px;
    font-size: 18px;
}

.tr-review-idm .tr-review-card {
    width: 80%;
}

.tr-review-header * {
    text-transform: uppercase;
    line-height: 26px;
}

.tr-review-header h3{
    font-weight: 700;
    font-size: 16px;
    margin: unset;
}

.tr-review-idm {
    padding-top: 130px;
    padding-bottom: 40px;
    min-height: 300px;
}

.tr-review-card-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
}

@media screen and (max-width: 1200px) {
    .tr-review-card-container {
        flex-direction: column;
    }
    .tr-review-idm .tr-review-card {
        width: calc(100%);
    }

    .tr-review-idm {
        padding-top: 80px;
    }
}

.tr-cta {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 80px 0px;
}

.tr-cta h2 {
    max-width: 670px;
    line-height: 1.5em;
    letter-spacing: -1px;
    margin-bottom: 55px;
}

.tr-idm-cta {    
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0px;
    background-color: white;
}

.tr-buttonrow {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    padding: 80px 0px;
    text-align: left;
}

.tr-buttonrow a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: calc(25% - 20px);
    position: relative;
    min-height: 100px;
    border-radius: 6px;
    overflow: hidden;
    padding-left: 20px;
    box-sizing: border-box;
    color: var(--black);
    text-decoration: none;
    transition: all .4s ease-in-out;
}

.tr-buttonrow a::before {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--darkblue);
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    content: "";
    opacity: 0;
}

.tr-buttonrow a::after {    
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    content: "READ MORE";
    font-size: 20px;
    font-weight: 700;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    color: white;
    text-decoration: none;
    opacity: 0;
    transition: all .4s ease-in-out;
}

.tr-buttonrow a:hover::before{
    opacity: 80%;
    transition: all .4s ease-in-out;
}

.tr-buttonrow a:hover::after {
    opacity: 1;
    transition: all .4s ease-in-out;
}

.tr-buttonrow span {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.5em;
}

/**Breakpoints**/
@media screen and (max-width: 935px) {
    .tr-buttonrow a {
        width: calc(33.33% - 20px);
    }
    
}

@media screen and (max-width: 768px){
    .tr-buttonrow a {
        width: calc(50% - 20px);
    }
}
@media screen and (max-width: 500px){
    .tr-buttonrow a {
        margin: 0 20px;
    }
    .tr-buttonrow a {
        width: calc(100%);
        /* justify-content: center; */
    }
}


.tr-twocol-content {
    display: flex;
    flex-direction: row;
    gap: 50px;
    min-height: 400px;
    padding: 80px 0;
}

.tr-twocol-nogap {
    gap: unset;
}

.tr-twocol-content > div {
    flex: 1;
    position: relative;
}

.tr-twocol-content > .tr-twocol-2 {
    flex: 2;
}

.tr-twocol-content > .tr-twocol-4 {
    flex: 4;
}

.tr-twocol-content img:not(.tr-twocol-unset) {
    width: 100%;
    top: calc( 50% );
    transform: translateY(-50%);
    height: calc(100% - 50px);
    object-fit: contain;
    position: absolute;
}

.tr-twocol-content h3 {
    letter-spacing: -0.5px;
    line-height: 51px;
    margin-top: 0;
}

.tr-twocol-content p{
    /* font-size: 16px; */
    font-weight: 400;
    line-height: 1.5em;
}

.tr-twocol-content ul {
    line-height: 1.5em;
}

.tr-twocol-content ul li {
    margin: 5px 0 10px;
}


@media screen and (max-width: 768px){
    .tr-twocol-content {
        flex-direction: column;
        padding: 20px 0;
    }
    .tr-twocol-content img {
        position: unset;
        transform: unset;
        height: unset;
        top: unset;
    }
}

/* .swiper-slide {
    width: 200px !important;
    height: 200px !important;
} */
.t-carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/** Kunden Site **/

.tr-kun-header {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 440px;
    position: relative;
    padding-top: 150px;
}

.tr-kun-header > div:nth-child(1) {
    z-index: 1;
    position: relative;
}

.tr-kun-header::after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
}

.tr-kun-header div:nth-child(1) {
    color: white;
    padding: 20px 0px;
}

.tr-comp-buttonrow{    
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    padding: 80px 0px;
    text-align: left;
    width: Auto;
}
.tr-comp-buttonrow-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
}
.tr-comp-buttonrow-buttons button {
    all: unset;
    color: var(--black);
    font-weight: 700;
}

.tr-comp-buttonrow-buttons button:hover {
    cursor: pointer;
    color: var(--darkblue);
}

.tr-comp-buttonrow > div {
    display: flex;
    flex-direction: column;
    width: calc(25% - 20px);
}

.tr-comp-buttonrow a, .tr-comp-buttonrow div {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* width: 100%; */
    position: relative;
    min-height: 100px;
    min-width: 200px;
    border-radius: 6px;
    overflow: hidden;
    box-sizing: border-box;
    color: var(--black);
    text-decoration: none;
    transition: all .4s ease-in-out;
    padding: 20px;
}

@media screen and (max-width: 800px) {
    .tr-comp-buttonrow > div {
        width: calc(50% - 20px);
    }

    .tr-comp-buttonrow a, .tr-comp-buttonrow div {
        justify-content: center;
    }

    .tr-comp-buttonrow a, .tr-comp-buttonrow div {
        min-width: 100px;
    }

    .tr-comp-buttonrow span {
        display: none;
    }
}

.tr-comp-buttonrow a::before, .tr-comp-buttonrow div::before {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--darkblue);
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    content: "";
    opacity: 0;
}

.tr-comp-buttonrow a {
    --case-study-text: attr(data-case-study-text);
}

.tr-comp-buttonrow a::after {    
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    content: var(--case-study-text);
    font-size: 20px;
    font-weight: 700;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    color: white;
    text-decoration: none;
    opacity: 0;
    transition: all .4s ease-in-out;
}

.tr-comp-buttonrow a:hover::before{
    opacity: 80%;
    transition: all .4s ease-in-out;
}

.tr-comp-buttonrow a:hover::after {
    opacity: 1;
    transition: all .4s ease-in-out;
}

.tr-comp-buttonrow span {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.6em;
}

.tr-company-button-blog-inactive {
    display: none !important;
}

/**Breakpoints**/
@media screen and (max-width: 935px) {
    .tr-comp-buttonrow a, .tr-comp-buttonrow div {
        width: calc(33.33% - 20px);
    }
    
}

@media screen and (max-width: 768px){
    .tr-comp-buttonrow a, .tr-comp-buttonrow div {
        width: calc(50% - 20px);
    }
}
@media screen and (max-width: 500px){
    .tr-comp-buttonrow a, .tr-comp-buttonrow div {
        margin: 0 20px;
    }
    .tr-comp-buttonrow a, .tr-comp-buttonrow div {
        width: calc(50% - 50px);
        /* justify-content: center; */
    }
}


/** Kunden **/

.tr-kun-header h1{
    font-size: 48px !important; 
    font-weight: 700 !important;
    letter-spacing: -1px !important;
    line-height: 1.2em !important;
}

.tr-kun-header p {
    font-size: 30px !important;
    line-height: 40px !important;
    max-width: 500px !important;
}

.tr-kun-content {
    padding: 40px 0;
}

.tr-kun-content * {
    text-align: left;
    max-width: 800px;
}

.tr-kun {
    background-color: white;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.tr-kun-review > div{
    padding: 80px 0;
    display: flex;
    flex-direction: row-reverse;
}

.tr-kun-review-img {
    flex: 1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media screen and (max-width: 800px) {
    .tr-kun-review-img {
        min-height: 300px;
        min-width: 300px;
        background-position: center !important;

    }
    .tr-kun-review > div {
        flex-direction: column;
        padding: 0px 20px 0 0;
        margin-top: -50px;
    }
}

.tr-kun-review-item {
    flex: 4;
}

.tr-kun-bottom {
    background-color: var(--darkblue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 95px 0;
}

.tr-kun-bottom-content {
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 800px) {
    .tr-kun-bottom-content {
        padding: 0 20px;
    }
    
}

.tr-kun-bottom-content h3 {
    max-width: 670px;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: -1px;
    text-align: center;
}

.tr-kun-bottom-content p {
    margin-top: 25px;
    display: block;
    font-size: 18px;
    line-height: 1.6em;
    letter-spacing: 0;
    font-weight: 400;
    text-align: center;
    max-width: 1200px;
} 

/** About **/

.tr-about-header {
    height: 530px;
    color: white;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
}

.tr-about-header h1 {
    font-size: 48px;
}

.tr-about-header div:nth-child(1) {    
    position: absolute;
    bottom: 80px;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/** Ego Counter **/
.tr-ego-counter {
    display: flex;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    padding: 60px 0 35px;
    gap: 50px;
}

.tr-ego-counter-item {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 250px;
}

.tr-ego-counter-item > span:nth-child(1) {
    font-size: 48px;
    font-weight: 700;
    word-break: break-all;
    margin-bottom: unset;
}

.tr-ego-counter-item > span:nth-child(2) {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: unset;
}

@media screen and (max-width: 768px) {
    .tr-ego-counter {
        flex-direction: column;
        align-items: center;
    }
    
}

.tr-about-footer {
    display: flex;
}



.tr-about-footer-iframe {
    flex: 1;
}

.tr-about-footer-address {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--black);
    color: White;
    flex: 1;
    padding-left: 90px;
}

.tr-about-footer-address h3, .tr-about-footer-address p {
    margin: 10px;
}


.tr-about-footer-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.tr-about-footer-item img {
    fill: white;
    color: white;
}

@media screen and (max-width: 768px) {
    .tr-about-footer {
        flex-direction: column;
    }

    .tr-about-footer-address {
        padding: 20px;
    }
}

.tr-about-form {
    background-color: var(--darkblue);
    color: white;
    padding: 100px 0;
}

.tr-about-form-items {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    align-items: center;
    text-align: center;
}

/** Jobs **/

.tr-jobs-header {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    height: 530px;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
}

.tr-jobs-header > div:nth-child(1){
    position: relative;
    z-index: 1;
}

.tr-jobs-header::after{
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
}

.tr-job-background{    
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: black;
    opacity: 0.2;
    z-index: 0;
}

.tr-job-button {
    color: white;
    text-decoration: unset;
    background-color: var(--darkblue);
    border: 0;
    border-radius: 6px;
    display: inline-block;
    font-family: arial, helvetica, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.6em;
    opacity: 1 !important;
    overflow: hidden;
    padding: 15px 21px;
    position: relative;
    text-transform: uppercase;
    transition: all .4s ease-in-out;
    z-index: 0;
}

.tr-job-button:hover {
    background-color: white;
    color: var(--black);
    transform: translateZ(100px);
    transition: background .4s ease;
}

.tr-job-accordian {
    display: flex;
    flex-direction: column;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

.tr-job{
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-family: arial, helvetica, sans-serif;
    font-weight: 700;
    padding: 25px 70px 25px 30px;
    position: relative;
    transition: all .4s ease-in-out;
    border-radius: 6px;
}
.tr-job:hover{
    background-color: #567696;
    color: #fff;
}
.tr-job-head{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.tr-job-head:hover {
    cursor: pointer;
}

.tr-job-head > h3 {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
    margin: unset;
    font-size: 16px !important;
}
.tr-job-ico {
    left: auto;
    height: 25px;
    width: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tr-job-ico div{
    background-color: #1c1b1a;
    height: 2px;
    width: 25px;
    position: absolute;
    transition: 0.2s;
}

.tr-job:hover .tr-job-ico div{
    background-color: #fff;
    transition: 0.2s;
}

.tr-job-ico div:nth-child(1){
    transform: rotate(90deg);
}

.tr-job-open .tr-job-ico > div:nth-child(1){
    transform: rotate(0deg);
}

.tr-job-open {
    background-color: var(--darkblue);
    color: var(--palewhite);
}

.tr-job-column {
    display: flex;
    gap: 25px;
    flex-direction: column;
}

.tr-job p{
    font-size: 16px;
}


/** Demo **/

.tr-dem {    
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    height: 100%;
}

.tr-dem-content {
    display: flex;
    flex-direction: column;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
}

.tr-dem-content img {
    max-width: 100%;
    height: auto;
}


/** Partner **/

.tr-par {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    background-color: var(--black);
    color: white;
    position: relative;
    min-height: 720px;
    box-sizing: border-box;
}

.tr-par > div {
    position: absolute;
    bottom: 180px;
    left: 0;
    right: 0;
}

@media screen and (max-width: 768px) {
    .tr-par > div {
        position: unset;
    }
}

.tr-par-content > div{
    display:flex;
}

.tr-par-content > div:not(.tr-par-img-container) {    
    flex-direction: column;
    justify-content: center;
}

.tr-par-img-container img{   
    max-width: 512px;
    height: auto;
    aspect-ratio: 1 / 1;
}

.tr-par-img-left img {
    margin-right: auto;
}

.tr-par-img-right img {
    margin-left: auto;
}

.tr-par-button {
    color: white;
    text-decoration: unset;
    background-color: var(--darkblue);
    border: 0;
    border-radius: 6px;
    display: inline-block;
    font-family: arial, helvetica, sans-serif;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.6em;
    opacity: 1 !important;
    overflow: hidden;
    padding: 15px 21px;
    position: relative;
    text-transform: uppercase;
    transition: all .4s ease-in-out;
    z-index: 0;
}

.tr-par-button:hover {
    background-color: white;
    color: var(--black);
    transform: translateZ(100px);
    transition: background .4s ease;
}

/** Buttonrow Images **/

.tr-company-buttons-img img{
    aspect-ratio: 1/1;
    max-width: 100%;
    object-fit: contain;
    /* height: 280px; */
    /* width: 280px; */
    background-color: white;
}

/** Blog **/

.tr-blog-head {
    background-size: cover;
    background-position: center;
    position: relative;
}

.tr-blog-head > div:nth-child(1) {
    position: relative;
    z-index: 1;
}

.tr-blog-head::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

#tr-blog-head-image-overlay {
    position: absolute;
    top: 0;
    left: 0; 
    right: 0;
    bottom: 0;
    background-color: rgba(26, 29, 23, 0.35);
}

.tr-blog-head h2, .tr-blog-head h3 {
    color: white;
}

.tr-blog-head h2 {
    max-width: 800px;
}

.tr-blog-head h3 {
    max-width: 700px;
    margin-bottom: 50px;
}

.tr-blog-head .page-center{
    display: flex;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    background-color: white;
}

.tr-blog-head .page-center > div {
    margin-top: 100px;
    margin-bottom: 50px;
    width: 100%;
}

.tr-blog-bottom {
    color: white;
    background-color: var(--darkblue);
    padding: 40px 0;
    margin: 80px 0;
}

.tr-blog-bottom p {
    font-size: 16px;
}

.tr-blog-bottom h2 {
    font-size: 38px;
    font-weight: 700;
}

.tr-blog-bottom-items {
    display: flex;
    flex-direction: row;
    align-items: center;
}

@media screen and (min-width: 800px) {
    .tr-blog-head {
        min-height: 580px;
        height: 580px;
    }
    
}

/** Impressum **/

.tr-imp-header {
    padding: 150px 0 80px;
    background-color: white;
}

.tr-imp-content {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 100px 0;
}

.tr-imp-content-text {
    display: flex;
    flex-direction: column;
    flex: 3;
    gap: 15px;
    line-height: 2em;
    word-break: break-word;
}


.tr-imp-content-text h2 {
    line-height: 1;
}

.tr-imp-content-slider {
    flex: 1;
    position: sticky;
    top: 100px;
}

@media screen and (max-width: 768px) {
    .tr-imp-content-slider {
        display: none;
    }
}

.tr-imp-content-slider li {
    padding: 25px 0;
    position: relative;
}

.tr-imp-content-slider ul{
    list-style-type: none;
    padding: 0;
}

.tr-imp-content-slider li::before {
    content: "";
    display: block;
    position: absolute;
    width: 3px;
    background-color: white;
    top: 0px;
    left: -20px;
    height: 100%;
    transition: all .2s ease-in-out;
}

.tr-imp-content-slider a {
    color: rgba(28, 27, 26, 0.45);
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

.tr-imp-content-slider{
    padding-right: 100px;
}

.tr-imp-content-slider .active a {
    color: var(--darkblue) !important;
    font-weight: 700;
}

.tr-imp-content-slider li.active::before {
    background-color: var(--darkblue) !important;
    transition: all .2s ease-in-out;
}

.tr-blogentries {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 20px;
}

.tr-blog-card{
    text-decoration: none !important;
    color: var(--black);
    width: calc( ( ( 100% - ( 20px * 2 )  ) / 3 ) );
    background-color: rgb(222, 234, 255);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
}

.tr-blog-card > div {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tr-blogentries  .tr-blog-archive-data {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 35px 40px 45px;
}
.tr-blogentries h2 {
    font-size: 20px !important;
    font-weight: 700 !important;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.tr-blogentries p {
    font-size: 14px;
    font-weight: 400;
    line-height: 26px;
}

@media screen and (max-width: 992px){
    .tr-blog-card {
        width: calc(( ( 100% - ( 20px )  ) / 2 ));
    }    
}

@media screen and (max-width: 600px){
    .tr-blog-card {
        width: calc(100%  / 1 );
    }    
}

.tr-blog-archive-data > span:nth-of-type(1){
    margin-top: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

/**Arrow Animation on Blog Entries**/
.tr-blog-archive-data > span:nth-of-type(1) svg{
    fill: var(--black);
    transition: all .4s ease-in-out;
}

.tr-blog-card:hover .tr-blog-archive-data > span:nth-of-type(1) svg{
    transform: translateX(10px);
    transition: all .4s ease-in-out;
}

.tr-blogentries img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: 50% 50%;
}

.tr-blog-meta {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;   
}

.tr-blog-meta span {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

/** Blog Entry **/

.tr-blog-content p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5em;
}

.tr-blog-content li {
  /** list-style-image: url(/right-arrow.svg); **/
  /* OR */
  list-style-type: '👉';
  padding-inline-start: 1ch;
  font-size: 18px;
}

.tr-blog-content img {
    width: 400px !important;
    height: auto;
    float: right;
}

.tr-blog-content ul {
    padding-bottom: 10px;
}

.tr-blog-content td {
    font-size: 18px;
}

.tr-blog-content td > strong:nth-child(1) {
    font-size: 42px;
}

.tr-blog-header {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 440px;
    position: relative;
}

.tr-blog-header > * {
    display: flex;
    position: relative;
    height: 100%;
    z-index: 1;
}

.tr-blog-header > div > div {
    margin-top: auto;
    padding: 40px 0px;
}

.tr-blog-header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.tr-blog-header div:nth-child(1) {
    color: white;
}

.tr-blog-header h1{
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.2em;
}

.tr-blog-header-meta span {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.tr-blog-header-meta span:not(:first-child)::before {
    content: "|";
    margin: 0 10px;
}

.tr-back-btn {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
}

.tr-back-btn svg {
    transition: all .4s ease-in-out;
}

.tr-back-btn:hover .arrow-svg-left > svg {
    transform: translateX(10px);
    transition: all .4s ease-in-out;
}
.tr-blog-cats {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin: 40px 0px;
    flex-wrap: wrap;
}

.tr-blog-cats a {
    text-decoration: none;
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.tr-blog-cats a.active {
    color: var(--darkblue);
}

/**Borlabs Cookies**/
.brlbs-cmpnt-container :is(.brlbs-z-max) {
    z-index: 99999999;
}

/** tr-full-width-img **/
.tr-full-width-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/** Downloads **/

.tr-download-table {
    display: flex;
    justify-content: center;
}

.tr-download-table table{    
    border-spacing: 0px;
    padding: 12px 15px;
    border: 2px solid var(--darkblue);
    border-radius: 25px;
}

.tr-download-table tbody tr:nth-of-type(even){
    background-color: var(--lightblue);
}

.tr-download-table a{
    all: unset;
    cursor: pointer;
    font-weight: 700;
    font-style: italic;
}

.tr-download-table td {
    padding: 12px 15px;
}

.checklist {
    list-style: none;
    padding-left: 0;
}

.checklist li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.checklist li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 2px;
    font-weight: bold;
    color: green;
    font-size: 18px;
    line-height: 1.5em;
    width: 20px;
}