<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.tabssection {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 1em 0em;
    width: calc(100% + 8em);
}
.tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}
.tabs img { 
    object-fit: contain;
    max-width: 200px;
    max-height: 70px;
    min-height: 50px;
    width: auto;
    height: auto;
}
.tabs h2 {
    font-size: 1.2em;
}
.tab {
    background: transparent;
    margin: 0.5em 0.5em 0.5em 0.5em;
    padding: 1em 1em 1em 1em;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    flex: 1;
    text-align: center;
    color: #F2F2F2;
}
.tab:hover {
    background: rgba(242, 242, 242, 0.25);
    border-radius: 5px;
    scale: 1.02;
    transition: 0.2s ease-in-out;
}

.tab.active {
    /*border: solid 1px #F2F2F2;*/
    border-radius: 5px;
    background: rgba(242, 242, 242, 0.25);
}
.tabcontent {
    margin: 0 0 0em 1.5em;
    padding: 2em 2em 2em 2em;
    display: none;
    background: rgba(242, 242, 242, 0.25);
}
.tabcontent p {
    font-size: 1em;
    padding: 0.5em 0.5em 0.5em 0.5em;
}
.tabcontent h2 {
    font-size: 1.2em;
    padding: 0.5em 0.5em 0.5em 0.5em;
}
.tabcontent img {
    width: 50%;
    padding: 0.5em 0em 0em 0.5em;
    border-radius: 5px;
}
.tabcontent img:hover {
    scale: 1.02;
    transition: 0.2s ease-in-out;
}
.tabcontent.active {
    display: block;
}

@media screen and (max-width: 1681px) {
    .tabs img {
        object-fit: contain;
        max-width: 100%;
        min-width: 90px;
        max-height: 70px;
        width: auto;
        height: auto;
    }
    .tabs h2 {
        font-size: 1.1em;
    }
    .tabcontent img {
        max-width: 100%;
    }
}

@media screen and (max-width: 980px) {
    .tabs img {
        object-fit: contain;
        max-width: 100%;
        min-width: 90px;
        max-height: 70px;
        width: auto;
        height: auto;
    }
    .tabs h2 {
        font-size: 1.1em;
    }
    .tabcontent img {
        max-width: 100%;
    }
}

@media screen and (max-width: 736px) {
    .tabs img {
        object-fit: contain;
        max-width: 100%;
        min-width: 90px;
        max-height: 70px;
        width: auto;
        height: auto;
    }
    .tabs h2 {
        font-size: 1em;
    }
    .tabcontent img {
        display: none;
    }
}

.button {
    margin: 2em 0em 2em 0em;
}

/*Extra light background to brighten up the tab/content*/
.lightbackground {
    background-color:rgba(242, 242, 242, 0.25);
}</pre></body></html>