/*Desktop css szabályok és grid beállítások
Azért vettem külön fájlba a desktop beállításokat, hogy a könnyebben lehessen
áttekinteni, és kevesebb egymásra hatás történhessen, mivel a többi fájl
(tablet, desktop) be sem töltődik.
*/
:root
{
    --i_scroll_h1_cms_main_testimonials: 415;
}

/*1440 és annál nagyobb felbontások*/

.h1_page_container
{

    /*Az 1440-nél nagy szélesség esetéb bal és jobb szélen egy üres "margó" van. */

    margin: 0 auto;
    max-width: 100%;
    box-sizing: border-box;
    display: grid;
    grid-template-columns:
        [start] 1fr
        [c4-1s] 64px 40px 64px 40px 64px [c4-1e] 40px
        [c4-2s] 64px 40px 64px 40px 64px [c4-2e] 40px
        [c4-3s] 64px 40px 64px 40px 64px [c4-3e] 40px
        [c4-4s] 64px 40px 64px 40px 64px [c4-4e]
        1fr [end];
    grid-template-rows: 80px auto;
}
/*Header kifeszítése a grid-re.*/
.h1_page_header
{
    grid-template-columns: 130px 1fr auto auto auto;
}


.h1_page_header .h1_header_menu
{

}

.h1_only_mobile
{
    display: none !important;
}

.h1_page_header .h1_header_button_menu
{
    display: none;
}

.h1_page_header .h1_button_contact
{

}


/*Lábléc és alsó linkek*/
.h1_page_footer
{
    padding-top: 80px;
    padding-bottom: 24px;
    grid-template-areas:
        'logo employers employees hireone contact'
        'social employers employees hireone contact'
        'cert employers employees hireone contact'
        'footlinks footlinks footlinks footlinks footlinks';
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
}

.h1_page_footer .h1_footer_footlinks
{

    grid-template-areas:
        'copyright copyright gdpr company conditions imrpessum';
}

.h1_page_footer .h1_footer_footlinks a:nth-child(2)
{
    border-right: 1px solid;
}

.h1_page_footer .h1_footer_footlinks a:nth-child(3)
{
    border-right: 1px solid;
}

.h1_page_footer .h1_footer_footlinks a:nth-child(4)
{
    border-right: 1px solid;
}

.h1_page_footer .h1_footer_footlinks a:nth-child(5)
{

}

/*Helyköz tartók*/
.h1_ph_big
{
    height: 120px;
}

.h1_ph_small
{
    height: 40px;
}


/*############################################ FŐOLDAL #############################################*/
#h1_hero_text
{
    grid-column-start: c4-1s;
    grid-column-end: c4-2e;
    grid-row-start: 2;
    grid-row-end: 3;
}

#h1_hero_text p
{
    font-size: 20px;
}

#h1_hero_text a
{
    font-size: 16px;
    margin-left: 35px;
}

#h1_hero_img
{
    height: 32vw;
    background-size: 85%;
    background-position: center bottom;
    grid-column-start: c4-3s;
    grid-column-end: end;  /*Jobbra kilóg*/
    grid-row-start: 1;
    grid-row-end: 3;
}

@media only screen and (max-width: 1440px)
{
    #h1_hero_img
    {
        height: 65vh;
        background-size: 120%;
        background-position: 0 bottom;
    }
}

#h1_cms_main_employers
{

}

#h1_cms_main_employees
{

}

#h1_cms_main_cert
{
    grid-template-columns: 1fr 1fr;
}

#h1_cms_main_cert #h1_cert_text
{
    margin: 40px;
}

#h1_cms_main_testimonials .h1_scrollable div
{
    width: 378px;
    margin-right: 37px;
}
/*############################################ SZOLGÁLTATÁSOKS #############################################*/

/*############################################ RÓLUNK #############################################*/
#h1_cms_about_more_text
{
    padding-right: 100px;
}

#h1_cms_about_expert_text
{
    padding-left: 100px;
}