* {
    margin: 0px;
    padding: 0px;
}
body {
    background: linear-gradient(#6C517F, #4F3F76, #374E84) no-repeat;
}
.scheme {
    width: 100%;
    height: 410px;
    position: relative;
}
.scheme .scheme-img {
    width: 100%;
    height: auto;
}
.scheme .scheme-dark {
    width: 100%;
    height: auto;
}
@supports(object-fit: cover){
    .scheme .scheme-img {
      height: 100%;
      object-fit: cover;
      object-position: center center;
    }
}
.scheme .scheme-title {
    position: absolute;
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    text-align: center;
    justify-content: center;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, -15%); 
}
.scheme .scheme-title h2 {
    margin: 0px 15px;
    padding: 5px 15px;
    text-align: center;
	font-size: 40px;
    font-weight: bold;
	letter-spacing: 4px;
	text-shadow: 0px 2px 3px #333;
	transition: all 3ms;
}
.scheme .scheme-title h2:hover {
	text-shadow: 0px 2px 1px #333, 0px 0px 4px #333;
}
.c-btn.-primary {
    padding: 0 10px !important;
    height: 35px !important;
}
.btn-description {
    position: absolute;
    display: flex;
    flex-flow: row wrap;
    font-size: 30px;
    text-align: center;
    justify-content: center;
    bottom: 40%;
    left: 50%;
    transform: translate(-50%, -15%);
}
.btn-description:hover > i {
    cursor: pointer;
    opacity: 0.5;
}
.scheme .scheme-categories {    
    display: flex;
    flex-flow: row wrap;
    position: absolute;
    width: 100%;
    text-align: center;
    justify-content: center;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
}
.scheme .scheme-categories div {
    color: #eee;
    padding: 6px 15px 3px;
    text-transform: uppercase;
    font-weight: bold;
}

.scheme .scheme-categories div.active,
.scheme .scheme-categories div:hover {
    color: #01a2dd;
    cursor: pointer;
}
#content-articles {
    width: 95%;
    display: flex;
    flex-flow: row wrap ;
    justify-content: space-around;
    margin: 0px auto !important;
}
.article {
    position: relative;
    width: 23%;
    height: 690px;
    margin: 0 10px 35px;
    transition: all 0.5s;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
    word-break: break-word;
}
.article .article-img {
    width: 100%;
    height: 218px;
    object-fit: cover;
}
.article .content {
    color: #fff !important;
    padding: 41px 31px 28px;
    font-size: 18px;
    line-height: 25px;
}
.article .content p {
    line-height: 1.6 !important;
    font-size: 17px;
}
.article .content h2 {
    color: #fff !important;
    margin-bottom: 8px;
    font-size: 20px;
}
.article .content h2:hover {
    cursor: pointer;
}
.article .content h3 {
    color: #fff !important;
    margin-bottom: 8px;
    font-size: 10px;
}
.article .content a {
    text-decoration: none;
}
.article .content a > h2:hover {
    text-decoration: underline;
}
.article .content::before {
    content: "";
    position: absolute;
    margin-top: -40px;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 100px 100px 0 0;
    border-color: rgba(255,255,255,.15) transparent transparent;
    z-index: -1;
}
.row {
    justify-content: center;
    margin: 15px auto;
}
.modal-description {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 30px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}
.modal-description .modal-content {
    position: relative;
    background-color: rgba(255,255,255,0.8);
    margin: auto;
    padding: 0;
    width: 80%;
    height: 80%;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    overflow: hidden;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    z-index: 3 !important;
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s

}
@-webkit-keyframes animatetop {
    from {
        top:-300px;
        opacity:0;
    }
    to {
        top:0;
        opacity:1;
    }
}
@keyframes animatetop {
    from {
        top:-300px;
        opacity:0;
    }
    to {
        top:0;
        opacity:1;
    }
}
.modal-description .close {
    color: #333;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin: 5px;
}
.modal-description .close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
.modal-description .modal-header {
    padding: 10px;
    border: 0px solid #f3f3f3;
}
.modal-description .modal-body {
    width: 100%;
    height: 550px;    
    overflow-y: auto;    
    font-size: 17px;
}
.modal-description .modal-body > p {
    height: auto;    
    color: #333;
}
.input-group .form-control {
    z-index: 1 !important;
}
/* Extra small devices (phones, 600px and down) */
@media screen and (max-width: 599px) {    
    .scheme {
        height: 195px;
        position: relative;
        margin-bottom: 15px;
    }
    .scheme .scheme-categories {        
        transform: translate(-50%, 0%);
        font-size: 12px;
    }
    .scheme .scheme-categories div {
        padding: 2px 6px 1px;
    }
    #content-articles {
        margin: 0px auto !important;
    }
    .article {
        width: 75%;
        height: 450px;
        margin: 15px 55px 5px;
    }
    .article .article-img {
        height: 266px;
    }
    .article .content {
        padding: 10px;
        font-size: 11px;        
    }
    .article .content p {
        line-height: normal;
    }
    .article .content h2 {
        margin-bottom: 4px;
        font-size: 15px;
    }
    .article .content h3 {
        margin-bottom: 8px;
        font-size: 11px;
    }
    .article .content::before {
        margin-top: -10px;
    }
    .row {
        margin-bottom: 0px;
    }
    .c-btn {
        width: 100%;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media screen and (min-width: 600px) and (max-width: 767px) {
    .scheme {
        height: 195px;
        position: relative;
        margin-bottom: 15px;
    }
    .scheme .scheme-categories {        
        transform: translate(-50%, 0%);
        font-size: 12px;
    }
    .scheme .scheme-categories div {
        padding: 2px 6px 1px;
    }
    #content-articles {
        margin: 0px auto !important;
    }
    .article {
        width: 46.25%;
        height: 400px;
        margin: 15px 10px 5px;
    }
    .article .article-img {
        height: 186px;
    }
    .article .content {
        padding: 12px;
        font-size: 12px;        
    }
    .article .content p {
        line-height: normal;
    }
    .article .content h2 {
        margin-bottom: 4px;
        font-size: 15px;
    }
    .article .content h3 {
        margin-bottom: 8px;
        font-size: 11px;
    }
    .article .content::before {
        margin-top: -12px;
    }
    .row {
        margin-bottom: 0px;
    }
    .c-btn {
        width: 100%;
    }
}
/* Medium devices (landscape tablets, 768px and up) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    .scheme {
        height: 195px;
        position: relative;
        margin-bottom: 15px;
    }
    .scheme .scheme-categories {        
        transform: translate(-50%, 0%);
        font-size: 12px;
    }
    .scheme .scheme-categories div {
        padding: 2px 6px 1px;
    }
    #content-articles {
        margin: 0px auto !important;
    }
    .article {
        width: 47.25%;
        height: 500px;
        margin: 15px 10px 5px;
    }
    .article .article-img {
        height: 247px;
    }
    .article .content {
        padding: 15px;
        font-size: 13px;        
    }
    .article .content p {
        line-height: normal;
    }
    .article .content h2 {
        margin-bottom: 4px;
        font-size: 15px;
    }
    .article .content h3 {
        margin-bottom: 8px;
        font-size: 11px;
    }
    .article .content::before {
        margin-top: -15px;
    }
    .row {
        margin-bottom: 15px;
    }
    .c-btn {
        width: 100px;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {...}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {...}