.row {
    justify-content: center;
    column-gap: 15px;
    height: 700px;
}

.col_article {
    width: 30%;
    border: 10px solid pink;
    background-color: lemonchiffon;
    opacity: 0.7;
    z-index: -1;
}

.col_gallery {
    height: inherit;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 65%;
    /* border: 5px solid rgb(21, 211, 113); */
}

.col_gallery > div {
    width: 100%;
    /* border: 2px solid blue; */
}

.row_1 {
    flex-grow: 1;
}

.row_2 {
    flex-grow: 6;
    display: flex;
    flex-direction: row;
}

.row_3 {
    flex-grow: 3;
    display: flex;
    /* flex-direction: row; - ez az alap beallítás */
}

.col_lg_image {
    flex-wrap: wrap;
    width: 70%;
    
}

.col_lg_image img {
    width: 100%; /* or any custom size */
    height: 100%; 
    object-fit: fill;
    border: 5px solid pink;
}

.col_arrow {
    flex-wrap: wrap;
    width: 20%;
}

.row_img {
    width: 16.667%;
    height: inherit;
    /* border: 2px solid red; */
    /* flex-wrap: nowrap; */
}

.row_img img{
    width: 100%;
    height: 100%; 
    object-fit: fill;
    border: 3px solid pink;
    cursor: pointer;
}

.row_1 p{
    text-transform: uppercase;
    font-family:"Jazz LET", fantasy;
    text-align: center;
    font-size: 30px;
    color:#29746f;
}

h2 {
    text-transform: uppercase;
    font-family:"Jazz LET", fantasy;
    text-align: center;
    margin: 12px;
    margin-top: 25px;
    letter-spacing: 3.5px;
    font-size: 43px;
    color:#29746f;
}

.col_article p {
    font-family:"Palatino", "URW Palladio L", serif;
    text-align: justify;
    margin: 0 35px;
    font-size: 18px;
    color:#29746f;
}

.col_arrow img {
    width: 40%;
    margin: 230px 20px 0 20px;
    cursor: pointer;
    flex: 1;
    display: flex;
    align-items: center;
}

h3{
    font-weight: bold; 
    margin: 25px;
    text-align: center;
    text-transform: uppercase;
    font-size: 20px;
}
