﻿.tabs-wrapper .paragraph-container { margin-bottom: 0; }
.tabs-wrapper > ul.tabs-nav { display: flex; }
.tabs-wrapper > ul.tabs-nav > li { transition: 0.3s linear; }
.tabs-wrapper > ul.tabs-nav > li.active { background-color: #EEE; transition: 0.3s linear; }
.tabs-wrapper > ul.tabs-nav > li > a { padding: 15px 25px; display: inline-block; font-size: 0.85rem; text-transform: uppercase; }
.tabs-wrapper > .tabs-content > .tabs-pane { display: none; background-color: #EEE; padding: 30px 30px; }
.tabs-wrapper > .tabs-content > .tabs-pane.active { display: block; }

@media (max-width:1024px) {
    .tabs-wrapper > ul.tabs-nav { display: block }
    .tabs-wrapper > ul.tabs-nav { display: grid; grid-template-columns: 1fr 1fr; }
    .tabs-wrapper > ul.tabs-nav > li:last-child:nth-last-child(odd) { grid-column: auto / span 2; }
    .tabs-wrapper > ul.tabs-nav > li:first-child:nth-last-child(even),
    .tabs-wrapper > ul.tabs-nav > li:first-child:nth-last-child(even) ~ li { grid-column: auto / span 1; }
    .tabs-wrapper > ul.tabs-nav > li { text-align: center; }
}

@media (max-width:640px) {
    .tabs-wrapper > ul.tabs-nav { display: block }
}
