/* ------------------ */

/* Alap eligazgatások */

/* ------------------ */

.basic-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background-color: #f4f4f4;
    width: 100%;
    padding: 80px 0;

}

.header-content {
    width: 80%;
    max-width: 1140px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.header-content p {
    margin-bottom: 20px;
}


.header-content h1,
.header-content p {
    color: #f3f3f3;
}

.page-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: center;
    justify-content: center;
    height: 500px;
    padding-bottom: 30px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.page-header p {
    text-align: center;
}

.pixel-limiter {
    max-width: 1140px;
    width: 80%;
}

.post-card {
    width: 100%;
    min-height: 400px;
    background-color: #fefefe;
    margin: 30px 0;
    -webkit-box-shadow: -2px 11px 22px 0 rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 22px 0 rgba(0, 0, 0, 0.08);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    overflow: hidden;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 60px 0;

}

.left-side {
    padding: 50px;
    width: 50%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.right-side {
    width: 50%;
    background-size: cover;
    background-position: center;
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
    -webkit-transition: 1s;
    transition: 1s;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

@media screen and (max-width: 1000px) {
    .post-card {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .left-side,
    .right-side {
        width: 100%;
    }
    .right-side {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 0;
        height: 300px;
    }
}

.right-side:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.05);
}



.post-card div h2 a {
    color: #333;
}

.more-link {
    color: #B49F84;
    display: block;
    margin: 20px 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.more-link:hover {
    -webkit-transform: translateX(10px);
    transform: translateX(1);
}

.postmetadata,
.postmetadata a {
    margin-top: 20px;
    font-size: 14px;
    color: #d3d3d3;
    border-bottom: 1px solid rgba(211, 211, 211, 0);
}

.postmetadata a:hover {
    border-bottom: 1px solid rgba(211, 211, 211, 0.32);
}

.left-side h2 a {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

.left-side h2 a:hover {
    color: #B49F84;
}

.post-holder figure{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
