:root {
    --tunga-main-color: #FF8C00;
    --tunga-secondary-color: #FFA500;
    --tunga-border-color: #FFF3;
    --tunga-text-color: #FFFFFF;
    --tunga-text-color-light: #FFFFFFB3;
    --tunga-link-background-color: #D0403600;
}

.tunga__section {
    display: flex;
    box-sizing: border-box;
}

.tunga__section-space--2 {
    padding: 15px 0;
}

.tunga__section-space--m {
    padding: 30px 0;
}

.tunga__section-space--l {
    padding: 50px 0;
}

.tunga__section-space--xl {
    padding: 70px 0;
}

.tunga__section-space--xxl {
    padding: 100px 0;
}

.tunga__section .tunga__section-content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 10px;
}

.tunga__section .tunga__section-header {
    padding: 10px;
    width: 100%;
}

.tunga__section .tunga__section-title {
    margin-bottom: 25px;
    width: 100%;
    text-align: center;
}

.tunga__section .tunga__section-title h2 {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.3em;
    margin: 0;
}

.tunga__section .tunga__section-description {
    text-align: center;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3em;
    letter-spacing: 0;
    word-spacing: 0;

}

.tunga__section .tunga__section-description p {
    white-space-collapse: preserve;
}

.tunga__section .tunga__section-body {
    width: 100%;
}

/* Thumbnail */
.tunga__section-thumbnail {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.tunga__section-thumbnail .tunga__section-thumbnail-item {
    margin: 0 10px;
}

.tunga__section-thumbnail .tunga__section-thumbnail-item:first-child {
    margin-left: 0;
}

.tunga__section-thumbnail .tunga__section-thumbnail-item:last-child {
    margin-right: 0;
}

.tunga__section-thumbnail .tunga__section-thumbnail-item .tunga__section-thumbnail-item--link {
    text-decoration: none;
}

.tunga__section-thumbnail .tunga__section-thumbnail-item .tunga__section-thumbnail-item--link:hover {
    text-decoration: none;
    color: inherit;
}

.tunga__section-thumbnail .tunga__section-thumbnail-content {
    margin-top: 10px;
    text-align: center;
    width: 100%;
}

.tunga__section-thumbnail .tunga__section-thumbnail-content--title {
    padding-top: 2px;
    margin-bottom: 10px;
}

.tunga__section-thumbnail .tunga__section-thumbnail-content--title h3 {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    word-spacing: 4px;
    color: var(--tunga-text-color);
    padding: 0;
    margin: 0;
    line-height: 1;
}

.tunga__section-thumbnail .tunga__section-thumbnail-content--description p {
    margin-bottom: 0;
}

.tunga__section-thumbnail .tunga__section-thumbnail-content--description p {
    text-align: center;
    color: var(--tunga-text-color-light);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3em;
    letter-spacing: 0;
    word-spacing: 0;
}

.tunga__section-box {
    box-sizing: border-box;
}

.tunga__section-box .tunga__section-box-content {
    width: 100%;
    display: flex;
    flex: 1;
    flex-wrap: wrap;
}

.tunga__section-box .tunga__section-box-item {
    width: 50%;
    margin: 10px 0px;
    padding: 0 5px;
    display: flex;
}

.tunga__section-thumbnail .tunga__section-box-item:first-child {
    padding-left: 0;
}

.tunga__section-thumbnail .tunga__section-box-item:last-child {
    padding-right: 0;
}

.tunga__section-box .tunga__section-box-item .tunga__section-box-item--wrapper {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: var(--tunga-border-color);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 25px 100px;
    position: relative;
    width: 100%;
}

.tunga__section-box .tunga__section-box-item .tunga__section-box-item--wrapper::before {
    position: absolute;
    content: "";
    width: 2px;
    height: 75px;
    background: var(--tunga-secondary-color);
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
}

.tunga__section-box .tunga__section-box-item--content {
    width: 100%;
    display: inline-flex;
    align-items: center;
}

.tunga__section-box .tunga__section-box-item--content .tunga__section-box-item--number {
    color: var(--tunga-main-color);
    font-size: 90px;
    font-weight: 500;
    -webkit-text-stroke-color: #000;
    stroke: #000;
}

.tunga__section-box .tunga__section-box-item--content .tunga__section-box-item--title {
    color: var(--tunga-text-color-light);
    font-size: 24px;
    font-weight: 600;
    line-height: 28px;
    margin-left: 50px;
}

.tunga__section-box .tunga__section-box-item--description {
    color: var(--tunga-text-color-light);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3em;
    letter-spacing: 0;
    word-spacing: 0;
}

.tunga__section-redirect-link {
    padding: 10px 20px 10px 20px;
    display: flex;
    justify-content: center;
}

.tunga__section-redirect-link a {
    font-size: 18px;
    font-weight: 500;
    text-transform: none;
    text-shadow: 0 0 10px rgba(0, 0, 0, .3);
    background-color: var(--tunga-link-background-color);
    border-radius: 0 0 0 0;
    color: var(--tunga-text-color);
    fill: var(--tunga-text-color);
    text-align: center;
    transition: all .3s;
    line-height: 1;
    text-decoration: none;
}

.tunga__section-redirect-link a span {
    margin-left: 8px;
}