.eRoot {
    width: 100vw;
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding-left: 5%;
    background-color: #052E37;
    color: #fff;
}

.eDetails {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-top: 200px;
    padding-bottom: 4em;
    padding-right: 15%;
}

.eDetails h1 {
    font-size: 72px;
    color: #C3C8C0;
}
.eDetails h2 {
    font-size: 41px;
    color: #C3C8C0;
}

.eDetails .eContent {
    margin-top: 32px;
}

.eDetails .eContent p {
    font-weight: 200;
    font-size: 16px;
    color: #C3C8C0;
}

.eArticleSection {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
}

.eArticleSection .eArticle {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-direction: column;
    background-color: #083944;
    padding-bottom: 10vh;
    padding-top: 130px;

    background-position: top left;
    background-repeat: no-repeat;
    background-size: cover;
}

.eArticleSection .eArticle .eMessage {
    text-align: center;
    border: 1px solid #c3c8c050;
    border-radius: 12px;
    padding: 2em 3em;
}

.eArticleSection .eArticle article {
    width: 90%;
}

.eArticleSection .eArticle article h2 {
    font-weight: 700;
}

.eArticleSection .eArticle article .eSubTitle {
    font-size: 22px;
    font-weight: 400;
}

.eArticleSection .eArticle article .eBody, .eSubMessage {
    font-size: 16px;
    font-weight: 200;
}

.eArticleSection .eArticle article .eSubMessage {
    font-style: italic;
}

.eArticleSection .eArticle article .eButtons {
    display: flex;
    justify-content: flex-start;
}

.eArticleSection .eArticle article .eButtons button {
    margin-right: 2em;
}

@media (max-width: 768px) {
    .eRoot {
        display: block;
        padding: 0;
    }

    .eDetails {
        width: 80%;
        margin: auto;
        padding: 5em 0;
        padding-top: 8em;
    }

    .eArticleSection {
        display: block;
        width: 100vw;
    }

    .eArticleSection .eArticle {
        width: 100%;
    }

    .eArticleSection .eArticle .eButtons {
        display: block !important;
        width: 90%;
        margin: auto;
    }

    .eArticleSection .eArticle .eButtons button {
        margin-right: 0;
        margin-bottom: 1.5em;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .carousel-inner .carousel-item > div {
        display: none;
    }
    .carousel-inner .carousel-item > div:first-child {
        display: block;
    }
}

.carousel-inner .carousel-item.active,
.carousel-inner .carousel-item-next,
.carousel-inner .carousel-item-prev {
    display: flex;
}

/* medium and up screens */
@media (min-width: 768px) {
    
    .carousel-inner .carousel-item-end.active,
    .carousel-inner .carousel-item-next {
      transform: translateX(25%);
    }
    
    .carousel-inner .carousel-item-start.active, 
    .carousel-inner .carousel-item-prev {
      transform: translateX(-25%);
    }
}

.carousel-inner .carousel-item-end,
.carousel-inner .carousel-item-start { 
  transform: translateX(0);
}


.exSlide {
    height: 200px;
    background-position: left;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
}

.exSlide .exContent {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
    color: #fff;
    width: 80%;
}

.exSlide .exContent h4 {
    font-weight: 700;
    font-size: 22px;
}

.exSlide .exContent p {
    font-weight: 500;
    font-size: 16px;
}

.exSlide .exContent .exContent a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.exSlide .exContent a i {
    font-size: 14px;
}

.carousel-control-prev {
    display: none;
}

.carousel-control-next {
    position: absolute;
    z-index: 2;
    top: 0;
    width: 80px;
    height: 100%;
    cursor: pointer;
    border: 0;
    background: linear-gradient(90deg, rgba(5,46,55,0) 0%, rgba(5,46,55,1) 100%);
    opacity: 1;
}