﻿/* 
  ##Device = All
  ##Screen = Styles will be apply for all resolutions
*/

/* CSS */
#blockTitle {
    text-align: center;
    padding: 4rem 2rem 2rem 2rem;
}

#blockImageItemsElek {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content-items-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blockImageItemsElek {
    padding: 2rem 1rem;
}

    .blockImageItemsElek img {
        width: 100%;
        height: auto;
        object-fit: cover;
        object-position: center;
    }

/* 
  ##Device = Desktops large
  ##Screen = 1920px to higher resolution desktops
*/
@media (min-width: 1920px) {
    /* CSS */

    .container-news {
        padding: 6rem;
    }
}


/* 
  ##Device = Desktops
  ##Screen = 1281px to 1919px
*/

@media (min-width: 1281px) and (max-width: 1919px) {

    /* CSS */

    .container-news {
        padding: 6rem;
    }
}

/* 
    ##Device = Laptops, Desktops
    ##Screen = B/w 1025px to 1280px
  */

@media (min-width: 1025px) and (max-width: 1280px) {

    /* CSS */
    .container-news {
        padding: 6rem;
    }
}

/* 
    ##Device = Tablets, Ipads (portrait)
    ##Screen = B/w 768px to 1024px
  */

@media (min-width: 768px) and (max-width: 1024px) {

    /* CSS */
    .container-news {
        padding: 5rem;
    }
}

/* 
    ##Device = Tablets, Ipads (landscape)
    ##Screen = B/w 768px to 1024px
  */

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {

    /* CSS */
    .container-news {
        padding: 4rem 4rem;
    }
}

/* 
    ##Device = Low Resolution Tablets, Mobiles (Landscape)
    ##Screen = B/w 481px to 767px
  */

@media (min-width: 481px) and (max-width: 767px) {

    /* CSS */
    container-news {
        padding: 2rem;
    }

    .column-reverse {
        display: flex;
        flex-direction: column-reverse;
    }
}

/* 
    ##Device = Most of the Smartphones Mobiles (Portrait)
    ##Screen = B/w 320px to 479px
  */

@media (min-width: 320px) and (max-width: 480px) {

    /* CSS */
    .container-news {
        padding: 2rem;
    }

    .column-reverse {
        display: flex;
        flex-direction: column-reverse;
    }
}
