/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {   
float: left;
width: 75%;
}

/* Right column */
.rightcolumn {
float: left;
width: 25%;
padding-left: 20px;
}

/* Fake image */
.fakeimg {
/* background-color: #aaa;   */
width: 80%;
padding: 0;
border-radius: 5px;
}

.newsimg{
    width: 100%;
    border-radius: 5px;
}

.newtitle{
    font-family: rem;
    font-weight: 200;
    width: 80%;
}

.titlemajor{
    font-family: rem;
    font-weight: 500;
    width: 80%;
}

.contact{
    font-family: rem;
    font-weight: 500;
    width: 100%;
    color: white;
}

/* Add a card effect for articles */
.card {
    /* background-color: rgb(204, 163, 163);  */
    padding: 20px;
    margin-top: 20px;
}

/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;

}

.identity{
    display: flex;
    align-items: center;
    /* background-color: aqua; */
}

.boxtexts{
    margin-left: 10px;
    font-family: rem;
}

.identity img{
    border-radius: 50%;
    width: 80px;
}

.data{
    font-family: rem;
}

/* .imgguto{
    width: 15%;
    border-radius: 5px;
} */

.box-contact{
    display: flex;
    padding: 10px;
    border-radius: 5px;
    background-color: #ce2a1d;
    margin-bottom: 10px;
    width: 100%;
}

.box-two{
    display: flex;
    padding: 10px;
    border-radius: 5px;
    background-color: #1fa016;
    margin-bottom: 10px;
    width: 100%;
}

.box_inst{
    display: flex;
    padding: 10px;
    border-radius: 5px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    margin-bottom: 10px;
    width: 80%;
    color: white;
}

.icons_svg{
width: 15%;
}

.icons_svg{
    width: 15%;
  }

/* .box_svg{
   
}
   */



/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
.leftcolumn, .rightcolumn {   
    width: 100%;
    padding: 0;
}
}

@media screen and (max-width:600px) {
    .box-contact{
        width: 80%;
    }
    
    .box-two{
        width: 80%;
    }
    
    .box_inst{
        width: 64%;

    }
    .fakeimg{
        width: 100%;
        height: 100%;
    }
}