*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
:root{
    --green: #46ceac;
    --green_h: #35ba9b;
    --green_l: #61ddbc;

    --blue: #47c0e8;
    --blue_h: #3aadd9;
    --blue_l: #66d4f1;

    --yellow: #fdcd56;
    --yellow_h: #f5b945;
    --yellow_l: #fbd277;

    --red: #eb5463;
    --red_h: #d94452;
    --red_l: #f76c82;
}
a:hover{
    text-decoration: underline;
    color: var(--blue_h);
}
a{
    text-decoration: none;
    font-weight: 700;
    color: var(--blue);
}
img{
    max-width: 100%;
}
img a{
    border: none;
}
embed,
video,
iframe,
iframe[style]{
    max-width: 100%;
    height: auto;
}
/*
CONTAINERS
*/
.container{
    max-width: 1200px;
    margin: 0 auto;
}
.embed-container{
    position: relative;
    max-width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
}
.embed-container embed,
.embed-container video,
.embed-container iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
/*
FLEXBOX
 */
.flex{
    display: flex;
    flex-wrap: wrap;
}
.flex .flex-3{
   flex-basis: calc(33.33% - 30px);
    margin: 15px;
}