header {
    height: 600px;
    width: 100%;
    background: black;
    overflow: hidden;
    position: relative;
}

header img {
    object-fit: fill;
    opacity: 0.4;
    width: auto;
    height: 100%;
}

.header-text {
    position: absolute;
    bottom: 48px;
    left: 16px;
    color: rgb(255,255,255);
}

.main-body img{
    border-radius: 15px 15px 0 0;
    margin: 2.8rem 0;
}

.related-container {
    background-color: rgb(6,48,109);
    color: rgb(255,255,255);
    padding: 2.6rem;
}

.related-items-container {
    display: flex;
    flex-direction: column;
}

.related-container a {
    color: white;
    font-weight: bold;
    font-size: small;
    text-decoration: none;
    text-align: center;
}

.related-container a:hover {
    text-decoration: underline;
}

.first-news-item {
    padding: 0 0 0.8rem 0;
    position: relative;
}

img.img-fluid {
    border-radius: 15px;
    margin-bottom: 1.4rem;
}

.date {
    color: rgb(1,161,177);
    font-size: small;
    margin: 0;
    font-weight:bold;
}

.item-title {
    position: relative;
}


.related-list {
    border-top: 2px solid rgb(1,161,177);
    padding: 0.8rem 0 0.8rem 0;
    display: flex;
}

.related-list div:first-of-type {
    flex: 4
}

.related-list div{
    flex:1
}

.related-list img {
    height: 70px;
    width: 70px;
    border-radius: 15px;
    margin-left: 1.8rem;
}

.view-more {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

span.insights > a {
    text-decoration: none;
    font-size: 0.8rem;
    color: white;
    font-weight: bold;
}

.insights {
    color: white;
    background-color: #01a1b1;
    border: 1px solid #01a1b1;
    padding: 4px 14px;
    border-radius: 18px;
    font-family: Roboto;
    width: max-content;
    display: flex;
}

.article-quote {
	border-left: solid 4px red;
	padding-left: 1.6rem;
	font-weight: bold;
    display: block;
}

.article-Image img {
    width: 100%;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    height: 18rem;
    display: block;
    object-fit: cover;
}

.bu {
    font-weight: bold;
    color: blue;
}


/* Medium devices*/
@media only screen and (min-width: 768px){

}

/* Large devices*/
@media only screen and (min-width: 992px) {
    .header-text {
        margin: 0 2rem;
    }

    .related-items-container {
        flex-direction: row;
    }

    .first-news-item {
        flex: 1;
    }

    .related-list-container {
        flex: 1;
        padding-left: 2rem;
    }
    .item-title {
        position: absolute;
        bottom: 48px;
        left: 16px;
    }

    .related-list:first-of-type {
        border-top: none;
    }
}

/* Extra Large devices*/
@media only screen and (min-width: 1200px) {
    .related-list-container {
        padding-left: 4rem;
    }
}

@media (max-width:1200px)
{
    h1 {
    	font-size: calc(1.375rem + 1.5vw);
    }


    h2 {
    	font-size: calc(1.325rem + 0.9vw);
    }

    h3 {
	    font-size: calc(1.3rem + 0.6vw);
    }

    h4 {
	    font-size: calc(1.275rem + 0.3vw);
    }
}