.container {
    display: flex;
    flex-direction: column;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .container {
        max-width:540px
    }
}

@media (min-width: 768px) {
    .container {
        max-width:720px
    }
}

@media (min-width: 992px) {
    .container {
        max-width:960px
    }
}

@media (min-width: 1200px) {
    .container {
        max-width:1140px
    }
}

@media (min-width: 1300px) {
    .container {
        max-width: 1240px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1340px;
    }
}

@media (min-width: 1500px) {
    .container {
        max-width: 1440px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }
}

html {
    height:100%;
}

body {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    min-width: 320px;
    font-family: Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
    cursor: default;
    color: #373737;
    transition: opacity .3s;
    background: #f4f7fa;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
}

*::-webkit-scrollbar {
    display: none;
}

header {
    padding: 25px 0;
    width: 100%;
    background-color: #459223;
}

header .container {
    align-items: left;
    flex-direction: row;
    color: #FFF;
    gap: 15px;
    align-items: center;
}

header .container .logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 75px;
    flex-grow: 0;
    flex-shrink: 0;
}

header .container .logo img {
    height: 50px;
}

header .container .text h1 {
    margin: 0;
    font-size: 20px;
    line-height: 22px;
    font-weight: 600!important;
    margin-bottom: 5px;
}

header .container .text p {
    margin: 0;
    font-size: 14px;
    line-height: 16px;
}


.header {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: inherit;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

nav {
    padding-top: 20px;
    background: #fff;
    border-bottom: 1px solid #dfe3e8;
}

nav .container {
    flex-direction: row;
}


.tabgroup {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.tabgroup .item {
    padding: 9px 15px;
    flex-grow: 0;
    flex-shrink: 0;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: transparent;
    scroll-snap-align: start;
    cursor: pointer;

    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 17px;
    color: #3E4C5A;
}

.tabgroup .item:hover {
    font-weight: 500;
    border-color: #d4d4d4;
}

.tabgroup .item.active {
    font-weight: 500;
    border-color: #4CA425;
}

article.roadmap {
    display: none;
}

article.roadmap.active {
    display: block;
    overflow-y: auto;
}

article.roadmap .container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
}

article.roadmap .container .roadmap-column {
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    scroll-snap-align: start;
    width: 100%;
    padding: 20px;
    gap: 10px;
    max-width: 300px;
}

article.roadmap .container .roadmap-column h2 {
    font-size: 18px;
    line-height: 20px;
    margin: 0;
}

article.roadmap .container .roadmap-column .item {
    box-shadow: 0px 0px 8px rgba(29, 45, 61, 0.04), 0px 2px 2px rgba(29, 45, 61, 0.06);
    border-radius: 10px;
    padding: 20px;
    background-color: #FFF;
    width: 100%;
    font-size: 14px;
    line-height: 16px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

article.roadmap .container .roadmap-column .item h3 {
    font-size: 14px;
    line-height: 16px;
    margin: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    gap: 5px;
    margin-bottom: 2px;
}

article.roadmap .container .roadmap-column .item h3 img {
    height: 14px;
}

article.roadmap .container .roadmap-column .item p {
    font-size: 12px;
    line-height: 14px;
    margin: 0;
}

article.roadmap .container .roadmap-column .item ul {
    font-size: 12px;
    line-height: 14px;
    margin: 0;
    padding-left: 17px;
    list-style: none;
    list-style-type: none;
}

article.roadmap .container .roadmap-column .item ul li.title {
    padding-top: 5px;
    padding-bottom: 2px;
    margin-left: -17px;
}

article.roadmap .container .roadmap-column .item ul li.title::before {
    display: none !important;
}

article.roadmap .container .roadmap-column .item ul li {
    position: relative;
    list-style: none;
    list-style-type: none;
}

article.roadmap .container .roadmap-column .item ul li img, article.roadmap .container .roadmap-column .item p img {
    height: 12px;
}

article.roadmap .container .roadmap-column .item ul li::marker {
    content: '';
    display: none;
}

article.roadmap .container .roadmap-column .item ul li::before {
    content: '';
    position: absolute;
    border-color: #bcbcbc;
    border-style: solid;
    border-width: 1px;
    top: 1px;
    left: -16px;
    height: 8px;
    width: 8px;
    border-radius: 2px;
}

article.roadmap .container .roadmap-column .item ul li.checked::after {
    content: '';
    position: absolute;
    border-color: #347219;
    border-style: solid;
    border-width: 0 1px 1px 0;
    top: 0px;
    left: -13px;
    transform: rotate(45deg);
    height: 8px;
    width: 3px;
}

article.roadmap .container .roadmap-column .item details summary {
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 9px 15px;
    background: #ECECEC;
    border-radius: 8px;
    width: max-content;
}

article.roadmap .container .roadmap-column .item details[open] summary {
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    cursor: pointer;
}


@media (min-width: 576px) {
    header .container {
        flex-direction: row;
    }

    header .container .text {
        text-align: left;
    }
}