


/*
 * Postgrid
 */
/*
.postgrid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 2.4rem;
}
.post {
    width: calc(25% - 1.8rem);
    position: relative;
    margin-left: 2.4rem;
    margin-top: 2.4rem;
}
.post:first-child,
.post:nth-child(2),
.post:nth-child(3),
.post:nth-child(4) {
    margin-top: 0;
}
.post:nth-child(4n-3) {
    margin-left: 0;
}

.post__image {
    position: relative;
    overflow: hidden;
    background-color: #000;
}
.post__image:before {
    content: '';
    padding-top: 100%;
    display: block;
}
.post__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s;
    position: absolute;
    top: 0;
    left: 0;
}
.post:hover .post__img {
    opacity: .6;
    transform: scale(1.1);
}

.post__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 3.6rem 1.2rem 2.4rem;
    background: -moz-linear-gradient(top, rgba(57,62,65,0) 0%, rgba(57,62,65,0.6) 20%, rgba(57,62,65,1) 49%, rgba(57,62,65,1) 100%);
    background: -webkit-linear-gradient(top, rgba(57,62,65,0) 0%,rgba(57,62,65,0.6) 20%,rgba(57,62,65,1) 49%,rgba(57,62,65,1) 100%);
    background: linear-gradient(to bottom, rgba(57,62,65,0) 0%,rgba(57,62,65,0.6) 20%,rgba(57,62,65,1) 49%,rgba(57,62,65,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00393e41', endColorstr='#393e41',GradientType=0 );
}

.post__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.post__excerpt {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: .2rem solid rgba(255, 255, 255, .3);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.3;
}

.post__more {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
    transition: .2s;
    font-size: 1.2rem;
    letter-spacing: .1rem;
    color: #f2c14e;
}
.post__icon {
    font-size: 1.2rem;
    margin-left: .6rem;
    border: .2rem solid #f2c14e;
    border-radius: 10rem;
    width: 2.6rem;
    height: 2.6rem;
    padding-left: .1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.post:hover .post__more {
    
}

.post__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}

*/





/*
.postgrid-news {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 2.4rem;
}
.post-news {
    width: calc(25% - 1.8rem);
    position: relative;
    margin-left: 2.4rem;
    margin-top: 2.4rem;
}
.post-news:first-child,
.post-news:nth-child(2),
.post-news:nth-child(3),
.post-news:nth-child(4) {
    margin-top: 0;
}
.post-news:nth-child(4n-3) {
    margin-left: 0;
}

.post-news .post__image {
    position: relative;
    overflow: hidden;
    background-color: #000;
}
.post-news .post__image:before {
    content: '';
    padding-top: 100%;
    display: block;
}
.post-news .post__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s;
    position: absolute;
    top: 0;
    left: 0;
}
.post-news:hover .post__img {
    opacity: .6;
    transform: scale(1.1);
}

.post-news .post__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 3.6rem 1.2rem 2.4rem;
    background: -moz-linear-gradient(top, rgba(57,62,65,0) 0%, rgba(57,62,65,0.6) 20%, rgba(57,62,65,1) 49%, rgba(57,62,65,1) 100%);
    background: -webkit-linear-gradient(top, rgba(57,62,65,0) 0%,rgba(57,62,65,0.6) 20%,rgba(57,62,65,1) 49%,rgba(57,62,65,1) 100%);
    background: linear-gradient(to bottom, rgba(57,62,65,0) 0%,rgba(57,62,65,0.6) 20%,rgba(57,62,65,1) 49%,rgba(57,62,65,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00393e41', endColorstr='#393e41',GradientType=0 );
}

.post-news .post__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.post-news .post__desc {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: .2rem solid rgba(255, 255, 255, .3);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.3;

    display: none;
}

.post-news .post__more {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
    transition: .2s;
    font-size: 1.2rem;
    letter-spacing: .1rem;
    color: #f2c14e;
}
.post-news .post__icon {
    font-size: 1.2rem;
    margin-left: .6rem;
    border: .2rem solid #f2c14e;
    border-radius: 10rem;
    width: 2.6rem;
    height: 2.6rem;
    padding-left: .1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.post-news:hover .post__more {
    
}

.post-news .post__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}*/















/*
 * Postgrid
 */

.postgrid-news {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 2.4rem;
}
.post-news {
    width: calc(33.33% - 1.6rem);
    position: relative;
    margin-left: 2.4rem;
    margin-top: 2.4rem;
}
.post-news:first-child,
.post-news:nth-child(2),
.post-news:nth-child(3) {
    margin-top: 0;
}
.post-news:nth-child(3n-2) {
    margin-left: 0;
}

.post-news .post__image {
    position: relative;
    overflow: hidden;
    background-color: #000;
    border-radius: 1.6rem;
}
.post-news .post__image:before {
    content: '';
    padding-top: 60%;
    display: block;
}
.post-news .post__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
    position: absolute;
    top: 0;
    left: 0;
}
.post-news:hover .post__img {
    opacity: .6;
    transform: scale(1.1);
}

.post-news .post__content {
    margin-top: 1rem;
}

.post-news .post__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #555;
    line-height: 1.3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.post-news .post__title span {
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #49A8BC;
    border-radius: 50rem;
    height: 2.4rem;
    padding: 0 1.2rem 0 .7rem;
    margin-bottom: .3rem;
    color: #fff;
    line-height: 1;
}
.post-news .post__title span i {
    font-size: 1.6rem;
    /*padding-bottom: .1rem;*/
    /*margin-right: .2rem;*/
}

/*.post-news .post__excerpt {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: .2rem solid rgba(255, 255, 255, .3);
    color: #555;
    font-size: 1.4rem;
    line-height: 1.3;
}*/

/*.post-news .post__more {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
    transition: .2s;
    font-size: 1.2rem;
    letter-spacing: .1rem;
    color: #f2c14e;
}
.post-news .post__icon {
    font-size: 1.2rem;
    margin-left: .6rem;
    border: .2rem solid #f2c14e;
    border-radius: 10rem;
    width: 2.6rem;
    height: 2.6rem;
    padding-left: .1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.post-news:hover .post__more {
    
}*/

.post-news .post__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}


















/*
 * Postgrid
 */

.postgrid-advices {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 2.4rem;
}
.post-advices {
    width: calc(25% - 1.8rem);
    position: relative;
    margin-left: 2.4rem;
    margin-top: 2.4rem;
}
.post-advices:first-child,
.post-advices:nth-child(2),
.post-advices:nth-child(3),
.post-advices:nth-child(4) {
    margin-top: 0;
}
.post-advices:nth-child(4n-3) {
    margin-left: 0;
}

.post-advices .post__image {
    position: relative;
    overflow: hidden;
    background-color: #000;
    border-radius: 1.6rem;
}
.post-advices .post__image:before {
    content: '';
    padding-top: 60%;
    display: block;
}
.post-advices .post__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
    position: absolute;
    top: 0;
    left: 0;
}
.post-advices:hover .post__img {
    opacity: .6;
    transform: scale(1.1);
}

.post-advices .post__content {
    margin-top: 1rem;
}

.post-advices .post__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #555;
    line-height: 1.3;
}

/*.post-advices .post__excerpt {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: .2rem solid rgba(255, 255, 255, .3);
    color: #555;
    font-size: 1.4rem;
    line-height: 1.3;
}*/

/*.post-advices .post__more {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
    transition: .2s;
    font-size: 1.2rem;
    letter-spacing: .1rem;
    color: #f2c14e;
}
.post-advices .post__icon {
    font-size: 1.2rem;
    margin-left: .6rem;
    border: .2rem solid #f2c14e;
    border-radius: 10rem;
    width: 2.6rem;
    height: 2.6rem;
    padding-left: .1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.post-advices:hover .post__more {
    
}*/

.post-advices .post__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}
















































@media all and (max-width: 1200px) {
    



/*
 * Postgrid
 */
/*
.postgrid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 2.4rem;
}
.post {
    width: calc(25% - 1.8rem);
    position: relative;
    margin-left: 2.4rem;
    margin-top: 2.4rem;
}
.post:first-child,
.post:nth-child(2),
.post:nth-child(3),
.post:nth-child(4) {
    margin-top: 0;
}
.post:nth-child(4n-3) {
    margin-left: 0;
}

.post__image {
    position: relative;
    overflow: hidden;
    background-color: #000;
}
.post__image:before {
    content: '';
    padding-top: 100%;
    display: block;
}
.post__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s;
    position: absolute;
    top: 0;
    left: 0;
}
.post:hover .post__img {
    opacity: .6;
    transform: scale(1.1);
}

.post__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 3.6rem 1.2rem 2.4rem;
    background: -moz-linear-gradient(top, rgba(57,62,65,0) 0%, rgba(57,62,65,0.6) 20%, rgba(57,62,65,1) 49%, rgba(57,62,65,1) 100%);
    background: -webkit-linear-gradient(top, rgba(57,62,65,0) 0%,rgba(57,62,65,0.6) 20%,rgba(57,62,65,1) 49%,rgba(57,62,65,1) 100%);
    background: linear-gradient(to bottom, rgba(57,62,65,0) 0%,rgba(57,62,65,0.6) 20%,rgba(57,62,65,1) 49%,rgba(57,62,65,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00393e41', endColorstr='#393e41',GradientType=0 );
}

.post__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.post__excerpt {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: .2rem solid rgba(255, 255, 255, .3);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.3;
}

.post__more {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
    transition: .2s;
    font-size: 1.2rem;
    letter-spacing: .1rem;
    color: #f2c14e;
}
.post__icon {
    font-size: 1.2rem;
    margin-left: .6rem;
    border: .2rem solid #f2c14e;
    border-radius: 10rem;
    width: 2.6rem;
    height: 2.6rem;
    padding-left: .1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.post:hover .post__more {
    
}

.post__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}

*/





/*
.postgrid-news {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 2.4rem;
}
.post-news {
    width: calc(25% - 1.8rem);
    position: relative;
    margin-left: 2.4rem;
    margin-top: 2.4rem;
}
.post-news:first-child,
.post-news:nth-child(2),
.post-news:nth-child(3),
.post-news:nth-child(4) {
    margin-top: 0;
}
.post-news:nth-child(4n-3) {
    margin-left: 0;
}

.post-news .post__image {
    position: relative;
    overflow: hidden;
    background-color: #000;
}
.post-news .post__image:before {
    content: '';
    padding-top: 100%;
    display: block;
}
.post-news .post__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .2s;
    position: absolute;
    top: 0;
    left: 0;
}
.post-news:hover .post__img {
    opacity: .6;
    transform: scale(1.1);
}

.post-news .post__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 3.6rem 1.2rem 2.4rem;
    background: -moz-linear-gradient(top, rgba(57,62,65,0) 0%, rgba(57,62,65,0.6) 20%, rgba(57,62,65,1) 49%, rgba(57,62,65,1) 100%);
    background: -webkit-linear-gradient(top, rgba(57,62,65,0) 0%,rgba(57,62,65,0.6) 20%,rgba(57,62,65,1) 49%,rgba(57,62,65,1) 100%);
    background: linear-gradient(to bottom, rgba(57,62,65,0) 0%,rgba(57,62,65,0.6) 20%,rgba(57,62,65,1) 49%,rgba(57,62,65,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00393e41', endColorstr='#393e41',GradientType=0 );
}

.post-news .post__title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.post-news .post__desc {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: .2rem solid rgba(255, 255, 255, .3);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1.3;

    display: none;
}

.post-news .post__more {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
    transition: .2s;
    font-size: 1.2rem;
    letter-spacing: .1rem;
    color: #f2c14e;
}
.post-news .post__icon {
    font-size: 1.2rem;
    margin-left: .6rem;
    border: .2rem solid #f2c14e;
    border-radius: 10rem;
    width: 2.6rem;
    height: 2.6rem;
    padding-left: .1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.post-news:hover .post__more {
    
}

.post-news .post__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}*/















/*
 * Postgrid
 */

.postgrid-news {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 2.4rem;
}
.post-news {
    width: calc(33.33% - 1.6rem);
    position: relative;
    margin-left: 2.4rem;
    margin-top: 2.4rem;


    width: 100%;
    margin-left: 0;
}
.post-news:first-child {
    margin-top: 0;
}
.post-news:nth-child(2),
.post-news:nth-child(3) {
    margin-top: 0;


    margin-top: 2.4rem;
}
.post-news:nth-child(3n-2) {
    margin-left: 0;
}

.post-news .post__image {
    position: relative;
    overflow: hidden;
    background-color: #000;
    border-radius: 1.6rem;
}
.post-news .post__image:before {
    content: '';
    padding-top: 60%;
    display: block;
}
.post-news .post__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
    position: absolute;
    top: 0;
    left: 0;
}
.post-news:hover .post__img {
    opacity: .6;
    transform: scale(1.1);
}

.post-news .post__content {
    margin-top: 1rem;
}

.post-news .post__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #555;
    line-height: 1.3;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.post-news .post__title span {
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #49A8BC;
    border-radius: 50rem;
    height: 2.4rem;
    padding: 0 1.2rem 0 .7rem;
    margin-bottom: .3rem;
    color: #fff;
    line-height: 1;
}
.post-news .post__title span i {
    font-size: 1.6rem;
    /*padding-bottom: .1rem;*/
    /*margin-right: .2rem;*/
}

/*.post-news .post__excerpt {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: .2rem solid rgba(255, 255, 255, .3);
    color: #555;
    font-size: 1.4rem;
    line-height: 1.3;
}*/

/*.post-news .post__more {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
    transition: .2s;
    font-size: 1.2rem;
    letter-spacing: .1rem;
    color: #f2c14e;
}
.post-news .post__icon {
    font-size: 1.2rem;
    margin-left: .6rem;
    border: .2rem solid #f2c14e;
    border-radius: 10rem;
    width: 2.6rem;
    height: 2.6rem;
    padding-left: .1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.post-news:hover .post__more {
    
}*/

.post-news .post__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}


















/*
 * Postgrid
 */

.postgrid-advices {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-top: 2.4rem;
}
.post-advices {
    width: calc(25% - 1.8rem);
    position: relative;
    margin-left: 2.4rem;
    margin-top: 2.4rem;


    margin-left: 0;
    width: 100%;
}
.post-advices:first-child {
    margin-top: 0;
}
.post-advices:nth-child(2),
.post-advices:nth-child(3),
.post-advices:nth-child(4) {
    margin-top: 0;


    margin-top: 2.4rem;
}
.post-advices:nth-child(4n-3) {
    margin-left: 0;
}

.post-advices .post__image {
    position: relative;
    overflow: hidden;
    background-color: #000;
    border-radius: 1.6rem;
}
.post-advices .post__image:before {
    content: '';
    padding-top: 60%;
    display: block;
}
.post-advices .post__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
    position: absolute;
    top: 0;
    left: 0;
}
.post-advices:hover .post__img {
    opacity: .6;
    transform: scale(1.1);
}

.post-advices .post__content {
    margin-top: 1rem;
}

.post-advices .post__title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #555;
    line-height: 1.3;
}

/*.post-advices .post__excerpt {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: .2rem solid rgba(255, 255, 255, .3);
    color: #555;
    font-size: 1.4rem;
    line-height: 1.3;
}*/

/*.post-advices .post__more {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-weight: 700;
    transition: .2s;
    font-size: 1.2rem;
    letter-spacing: .1rem;
    color: #f2c14e;
}
.post-advices .post__icon {
    font-size: 1.2rem;
    margin-left: .6rem;
    border: .2rem solid #f2c14e;
    border-radius: 10rem;
    width: 2.6rem;
    height: 2.6rem;
    padding-left: .1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.post-advices:hover .post__more {
    
}*/

.post-advices .post__link {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
}


}































