body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    font-weight: 400;
    color: #fff;
    background-color: #0f3d58;
    background-image: linear-gradient(315deg, #4c4177 0%, #222120 74%);
}

@font-face {
    font-family: 'tabletgothicw02-boldregular';
    src: url('/fonts/tablet_gothic_w02_bold-webfont.woff2') format('woff2'),
         url('/fonts/tablet_gothic_w02_bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

.bg {
    position: fixed; 
    top: -50%; 
    left: -50%; 
    width: 200%; 
    height: 200%;
  }
  .bg img {
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    margin: auto; 
    min-width: 50%;
    min-height: 50%;
  }

.container {
    padding: 2rem;
    padding-bottom: 400px;
    margin: 0 auto;
    max-width: 1000px;
}

.top-section {
    text-align: center;
    padding: 2rem 0;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.timeline {
    position: relative;
    min-height: 150px;
}

.line {
    position: absolute;
    z-index: 1;
    left: calc(50% - 1px);
    width: 2px;
    top: -50px;
    bottom: -50px;
    background-color: #00C0F3;
    display: none;
}

.line::before,
.line:after {
    position: absolute;
    display: block;
    content: '';
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    background-color: #00C0F3;
    left: 50%;
    transform: translateX(-50%);
}

.line:after {
    bottom: 0;
}

.section {
    display: flex;
    opacity: 0;
    flex-direction: row-reverse;
    transform: translateX(100%);
    transition: 600ms ease;
    position: relative;
    z-index: 1;
    margin: 150px 0;
    padding: 1rem;
    border-radius: 1rem;
    align-items: center;
    min-height: 200px;
}



.bead {
    position: absolute;
    display: block;
    height: 1rem;
    width: 1rem;
    border-radius: 50%;
    background-color: #00C0F3;
    left: 50%;
    top: 5%;
    transform: translateX(-50%);
    z-index: 3;
}

.bead i {
    position: relative;
    display: block;
    text-align: center;
    top: 8px;
}

.outerBead {
    position: absolute;
    display: block;
    height: 1.0rem;
    width: 1.0rem;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #00C0F3;
    left: 50%;
    top: 12%;
    transform: translateX(-50%);
    z-index: 5;
}

.content {
    width: calc(100% - 2rem);
    margin-top: -175px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contentRight {
    width: calc(50% - 2rem);
    float: right;

}

.contentLeft {
    width: calc(50% - 2rem);
    float: left;
}

.contentLeft img {
    width: 90%;
    border: 1px solid #fff;
}

.contentPad {

}

.contentPad p {
    font-family: tabletgothicw02-boldregular;
    font-size: 20px;
    color: #fff;
}

.contentTitle {
    font-family: tabletgothicw02-boldregular;
    font-size: 20px;
    color: #fff;
    margin: 0;
    padding: 0;
}

.contentTitle h3 {
    margin: 0;
    padding: 5px 8px;
    font-family: tablet-gothic,Arial,sans-serif;
}

.show-me:nth-child(n) {
    transform: none;
    opacity: 1;
}

.contentRight h2 {
    position: relative;
    display: block;
    margin: 0;
    padding: 5px 8px;
    border-radius: 0.5rem;
    color: #00C0F3;
    font-family: "Comfortaa", sans-serif;
    font-size: 55px;
}

.contentRight h2::before {
    position: absolute;
    content: "";
    height: 15px;
    width: 15px;
    top: 15px;
    right: -7px;
    transform: rotate(45deg);
}

.section:nth-child(odd) .content h2::before {
    left: -7px;
}

h1 {
    font-weight: 400;
    letter-spacing: 1px;
}

/* COLORs */
.blueOuter {
    border-color: transparent;
    background-color: #00C0F3
}
.blueInner {
    background-color: rgb(13,61,88);
}

.content.blue h2 {
    background:rgb(15, 61, 88);
    text-align: center;
}

.content.blue h2::before {
    background-color: rgb(15, 61, 88);
}


.orangeOuter {
    border-color: transparent;
    background-color: rgba(240, 79, 35, 0.5);
}
.orangeInner {
    background-color: rgb(240, 79, 35);
}

.content.orange h2 {
    color: #00C0F3;
    font-family: "Comfortaa", sans-serif;
    font-size: 55px;
}

.content.orange h2::before {
    background-color: rgb(240, 79, 35);
}

@media (max-width: 575.98px) {
    .container {
        padding: 0.5rem;
        
    }
    .top-section h2 {
        font-size: 1.25rem;
    }
    .line {
        left: calc(39% - 1px);
    }
    .section {
        margin: 80px 0;
        padding: 1rem 0;
    }
    .bead {
        left: 39%;
    }
    .content {
        width: 100%;
    }
    .contentRight {
        width: 285px;
    }
    .contentLeft {
        width: 190px;
    }
    .contentRight h2,
    .contentLeft h2 {
        font-size: 35px;
    }
    .contentTitle h3 {
        font-size: 1rem;
    }
}