/*############################################ GLOBÁLISAN HASZNÁLT CSS VÁLTOZÓK ######################################*/
:root
{
    /*Betűtípus vastagságok (font weigth)*/
    --h1_fw_normal: 400;
    --h1_fw_medium: 500;
    --h1_fw_demibold: 600;

    /*Alap belsőmargó - padding*/
    --h1_padding_1: 16px;
    /*Sarokívek (border radius)*/
    --h1_radius_1: 16px;
    --h1_radius_2: 8px;
    /*Űrlapelemek alap magassága*/
    --h1_input_height: 40px;
    /*Gördítősáv szélességek*/
    --h1_scrollbar_width: 6px;
    --h1_scrollbar_width_ff: thin;

    /*SZÍNKÓDOK*/

    /* Orange */
    --h1_color_orange_110: #DC5800;
    --h1_color_orange_100: #F46200;
    --h1_color_orange_30: #FCD0B3;
    --h1_color_orange_15: #FDE7D9;

    /* Dark Blue */
    --h1_color_dark_blue_110: #1D2B3B;
    --h1_color_dark_blue_100: #203042;
    --h1_color_dark_blue_90: #364555;
    --h1_color_dark_blue_70: #636E7B;
    --h1_color_dark_blue_50: #8F97A0;
    --h1_color_dark_blue_20: #D2D6D9;
    --h1_color_dark_blue_15: #DEE0E3;

    /* Gray */
    --h1_color_gray_100: #CDDADE;
    --h1_color_gray_60: #E1E9EB;
    --h1_color_gray_30: #F0F4F5;

    /* Cyan */
    --h1_color_cyan_100: #DDF0F5;
    --h1_color_cyan_40: #F1F9FB;

    /* Positive */
    --h1_color_positive_130: #379729;
    --h1_color_positive_100: #4FD83A;
    --h1_color_positive_50: #A7EC9D;
    --h1_color_positive_15: #E5F9E1;

    /* Warning */
    --h1_color_warning_130: #BD8916;
    --h1_color_warning_100: #FCB723;
    --h1_color_warning_50: #FDD786;
    --h1_color_warning_15: #FEF1D3;

    /* Negative */
    --h1_color_negative_130: #BB3121;
    --h1_color_negative_100: #F9412C;
    --h1_color_negative_50: #FCAAA0;
    --h1_color_negative_15: #FEECEA;

    /* White */
    --h1_color_white_100: #ffffff;
    --h1_color_white_90: rgba(255,255,255,0.9);
    --h1_color_white_70: rgba(255,255,255,0.7);

}

/*############################################ FONT CSALÁD NEVEK #####################################################*/
@font-face
{
    font-family: 'TT_Norms_Pro';
    src: url('../font/norms/TT_Norms_Pro_Normal.eot');
    src: url('../font/norms/TT_Norms_Pro_Normal.eot?#iefix') format('embedded-opentype'),
    url('../font/norms/TT_Norms_Pro_Normal.woff2') format('woff2'),
    url('../font/norms/TT_Norms_Pro_Normal.woff') format('woff'),
    url('../font/norms/TT_Norms_Pro_Normal.ttf') format('truetype'),
    url('../font/norms/TT_Norms_Pro_Normal.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face
{
    font-family: 'TT_Norms_Pro';
    src: url('../font/norms/TT_Norms_Pro_Medium.eot');
    src: url('../font/norms/TT_Norms_Pro_Medium.eot?#iefix') format('embedded-opentype'),
    url('../font/norms/TT_Norms_Pro_Medium.woff2') format('woff2'),
    url('../font/norms/TT_Norms_Pro_Medium.woff') format('woff'),
    url('../font/norms/TT_Norms_Pro_Medium.ttf') format('truetype'),
    url('../font/norms/TT_Norms_Pro_Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}

@font-face
{
    font-family: 'TT_Norms_Pro';
    src: url('../font/norms/TT_Norms_Pro_DemiBold.eot');
    src: url('../font/norms/TT_Norms_Pro_DemiBold.eot?#iefix') format('embedded-opentype'),
    url('../font/norms/TT_Norms_Pro_DemiBold.woff2') format('woff2'),
    url('../font/norms/TT_Norms_Pro_DemiBold.woff') format('woff'),
    url('../font/norms/TT_Norms_Pro_DemiBold.ttf') format('truetype'),
    url('../font/norms/TT_Norms_Pro_DemiBold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}



/*############################################ GLOBÁLIS ALAPÉRTELMEZÉSEK #############################################*/
.h1_under_construction
{
    cursor: not-allowed !important;
}
html
{
    padding: 0;
    background: none;
}
body
{
    font-family: 'TT_Norms_Pro';
    font-weight: var(--h1_fw_normal);
    color: var(--h1_color_dark_blue_100);
    letter-spacing: 0px;
    padding: 0;
    margin: 0;
}

div
{
    background-repeat: no-repeat;
    background-position: center center;
}

/*H tagek*/
h1, h2, h3, h4, h5, h6
{
    margin: 0;
    margin-top: 10px;
    margin-bottom: 10px;
}

.h1_page_container > h1, .h1_page_container > h2,
.h1_page_container > h3, .h1_page_container > h4,
.h1_page_container > h5, .h1_page_container > h6
{
    margin: 0;
    margin-top: 10px;
    margin-bottom: 10px;
}


.h1_bookbage > h1, .h1_bookbage > h2,
.h1_bookbage > h3, .h1_bookbage > h4,
.h1_bookbage > h5, .h1_bookbage > h6
{
    margin: 0;
    margin-top: 40px;
    margin-bottom: 10px;
}


h1
{
    font-size: 64px;
    line-height: 72px;
    font-weight: var(--h1_fw_demibold);
    letter-spacing: -1px;

}

h2
{
    font-size: 56px;
    line-height: 56px;
    font-weight: var(--h1_fw_demibold);

}

h3
{
    font-size: 40px;
    line-height: 48px;
    font-weight: var(--h1_fw_demibold);

}

h4
{
    font-size: 32px;
    line-height: 38px;
    font-weight: var(--h1_fw_demibold);

}

h5
{
    font-size: 24px;
    line-height: 28px;
    font-weight: var(--h1_fw_demibold);

}

h6
{
    font-size: 20px;
    line-height: 28px;
    font-weight: var(--h1_fw_demibold);

}

a
{
    color: var(--h1_color_dark_blue_100);
    text-decoration: none;
    font-weight: bold;
}
/*Bodycopy Szövegközi elemek, kenyér szövegek*/
.h1_bc_1
{
    font-size: 20px;
    line-height: 28px;
}

.h1_bc_2
{
    font-size: 18px;
    line-height: 26px;
}

.h1_bc_3
{
    font-size: 16px;
    line-height: 24px;
}

.h1_bc_4
{
    font-size: 14px;
    line-height: 20px;
}

/*Kiemelés*/
.h1_bc_hl
{
    font-weight: var(--h1_fw_demibold);
    color: var(--h1_color_dark_blue_90);
}

.h1_navigation_path
{
    margin-top: 20px;
    text-overflow: ellipsis;
    text-wrap: nowrap;
    overflow: hidden;
}

.h1_navigation_path a
{
    padding-right: 25px;
    text-transform: uppercase;
    margin-right: 10px;
    font-size: 12px;
    color: var(--h1_color_dark_blue_50);
    vertical-align: middle;

}


.h1_navigation_path a:not(:last-child)
{
    color: var(--h1_color_dark_blue_90);
    background-image: url("../icon/h1_icon_arrow_forward.svg");
    background-position: right center;
    background-repeat: no-repeat;
    background-size: 12px;
}



.h1_tooltip
{
    font-size: 16px;
    line-height: 24px;
}

.h1_label
{
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    /*letter-spacing: 5%;*/
    text-transform: uppercase;
}

.h1_label_gray
{
    color: var(--h1_color_dark_blue_50);
}

.h1_label_orange
{
    color: var(--h1_color_orange_100);
}

.h1_tag
{
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
}

.h1_button
{
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    /*letter-spacing: 1%;*/
}

/*Alap html elemek*/
.h1_hr_1
{
    height: 1px;
    border: none;
    background-color: var(--h1_color_dark_blue_15);
}

.h1_hr_2
{
    height: 2px;
}

button,
input[type="button"]
{
    cursor: pointer;
    border: none;
}

.h1_button_large
{
    height: 48px;
    border-radius: 24px;
    padding-left: 24px;
    padding-right: 24px;
    gap: 8px;
}

.h1_button_1
{
    background-color: var(--h1_color_orange_100);
    color: var(--h1_color_white_100);
}

.h1_button_1:hover
{
    background-color: var(--h1_color_orange_110);
    color: var(--h1_color_white_100);
}

.h1_button_1:disabled
{
    background-color: var(--h1_color_orange_30);
    color: var(--h1_color_white_100);
}

.h1_button_2
{
    background-color: var(--h1_color_white_100);
    color: var(--h1_color_dark_blue_100);
    border: 2px solid var(--h1_color_dark_blue_15)
}

.h1_button_2:hover
{
    background-color: var(--h1_color_dark_blue_15);
    color: var(--h1_color_dark_blue_100);
}

.h1_button_2:disabled
{
    background-color: var(--h1_color_white_100);
    color: var(--h1_color_dark_blue_50);
}



.h1_button_small
{
    height: 40px;
    border-radius: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.h1_button_large_icon_left
{
    padding-left: 32px;
    background-position: left center;
    background-repeat: no-repeat;
    gap: 12px;
}

.h1_button_large_icon_right
{
    padding-right: 56px;
    background-position: calc( 100% - 24px ) center;
    background-repeat: no-repeat;
    gap: 12px;

}

.h1_ph_big, .h1_ph_small
{
    grid-column-start: start;
    grid-column-end: end;
}

.h1_button_sroll_container
{
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 55px 55px;
    justify-items: end;
    justify-content: end;
}

.h1_button_sroll
{

    height: 55px;
    width: 55px;
    background-color: var(--h1_color_gray_30);
    border-radius: 100px;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
}

.h1_button_sroll_left
{
    background-image: url("../icon/h1_icon_arrow_left.svg");
}

.h1_button_sroll_right
{
    background-image: url("../icon/h1_icon_arrow_right.svg");
}

/*############################################## IKONOK ############################################*/
.h1_icon_account_circle
{
    background-image: url('../icon/h1_icon_account_circle.svg');
}

.h1_icon_add
{
    background-image: url('../icon/h1_icon_add.svg');
}

.h1_icon_arrow_back
{
    background-image: url('../icon/h1_icon_arrow_back.svg');
}

.h1_icon_arrow_downward
{
    background-image: url('../icon/h1_icon_arrow_downward.svg');
}

.h1_icon_arrow_forward
{
    background-image: url('../icon/h1_icon_arrow_forward.svg');
}

.h1_icon_arrow_forward_ios
{
    background-image: url('../icon/h1_icon_arrow_forward_ios.svg');
}

.h1_icon_betoltott_pozicio
{
    background-image: url('../icon/h1_icon_betoltott pozicio.svg');
}

.h1_icon_bookmark
{
    background-image: url('../icon/h1_icon_bookmark.svg');
}

.h1_icon_bookmark_active
{
    background-image: url('../icon/h1_icon_bookmark_active.svg');
}

.h1_icon_bulb
{
    background-image: url('../icon/h1_icon_bulb.svg');
}

.h1_icon_calendar_today
{
    background-image: url('../icon/h1_icon_calendar_today.svg');
}

.h1_icon_change
{
    background-image: url('../icon/h1_icon_change.svg');
}

.h1_icon_check_small
{
    background-image: url('../icon/h1_icon_check_small.svg');
}

.h1_icon_chevron_forward
{
    background-image: url('../icon/h1_icon_chevron_forward.svg');
}

.h1_icon_close_normal
{
    background-image: url('../icon/h1_icon_close_normal.svg');
}

.h1_icon_close_small
{
    background-image: url('../icon/h1_icon_close_small.svg');
}

.h1_icon_delete
{
    background-image: url('../icon/h1_icon_delete.svg');
}

.h1_icon_description
{
    background-image: url('../icon/h1_icon_description.svg');
}

.h1_icon_draft
{
    background-image: url('../icon/h1_icon_draft.svg');
}

.h1_icon_egyuttmukodes
{
    background-image: url('../icon/h1_icon_egyuttmukodes.svg');
}

.h1_icon_emberkozpontusag
{
    background-image: url('../icon/h1_icon_emberkozpontusag.svg');
}

.h1_icon_error
{
    background-image: url('../icon/h1_icon_error.svg');
}

.h1_icon_facebook
{
    background-image: url('../icon/h1_icon_facebook.svg');
}

.h1_icon_fact_check
{
    background-image: url('../icon/h1_icon_fact_check.svg');
}

.h1_icon_felkereses
{
    background-image: url('../icon/h1_icon_felkereses.svg');
}

.h1_icon_format_quote
{
    background-image: url('../icon/h1_icon_format_quote.svg');
}

.h1_icon_info
{
    background-image: url('../icon/h1_icon_info.svg');
}

.h1_icon_interju
{
    background-image: url('../icon/h1_icon_interju.svg');
}

.h1_icon_jelentkezes
{
    background-image: url('../icon/h1_icon_jelentkezes.svg');
}

.h1_icon_keyboard_arrow_down
{
    background-image: url('../icon/h1_icon_keyboard_arrow_down.svg');
}

.h1_icon_keyboard_arrow_up
{
    background-image: url('../icon/h1_icon_keyboard_arrow_up.svg');
}

.h1_icon_keyboard_arrow_left
{
    background-image: url('../icon/h1_icon_keyboard_arrow_left.svg');
}

.h1_icon_keyboard_arrow_right
{
    background-image: url('../icon/h1_icon_keyboard_arrow_right.svg');
}

.h1_icon_kivalasztott
{
    background-image: url('../icon/h1_icon_kivalasztott.svg');
}

.h1_icon_language
{
    background-image: url('../icon/h1_icon_language_footer.svg');
}

.h1_icon_link
{
    background-image: url('../icon/h1_icon_link.svg');
}

.h1_icon_linkedin
{
    background-image: url('../icon/h1_icon_linkedin.svg');
}

.h1_icon_linkedin_white
{
    background-image: url('../icon/h1_icon_linkedin_white.svg');
}

.h1_icon_location_on
{
    background-image: url('../icon/h1_icon_location_on.svg');
}

.h1_icon_logout
{
    background-image: url('../icon/h1_icon_logout.svg');
}

.h1_icon_mail
{
    background-image: url('../icon/h1_icon_mail.svg');
}

.h1_icon_notifications
{
    background-image: url('../icon/h1_icon_notifications.svg');
}

.h1_icon_nyitott_pozicio
{
    background-image: url('../icon/h1_icon_nyitott pozicio.svg');
}

.h1_icon_search
{
    background-image: url('../icon/h1_icon_search.svg');
}

.h1_icon_settings
{
    background-image: url('../icon/h1_icon_settings.svg');
}

.h1_icon_share
{
    background-image: url('../icon/h1_icon_share.svg');
}

.h1_icon_star_rate
{
    background-image: url('../icon/h1_icon_star_rate.svg');
}

.h1_icon_strategia
{
    background-image: url('../icon/h1_icon_strategia.svg');
}

.h1_icon_success
{
    background-image: url('../icon/h1_icon_success.svg');
}

.h1_icon_szemelyreszabott
{
    background-image: url('../icon/h1_icon_szemelyreszabott.svg');
}

.h1_icon_upload
{
    background-image: url('../icon/h1_icon_upload.svg');
}

.h1_icon_visibility
{
    background-image: url('../icon/h1_icon_visibility.svg');
}

.h1_icon_visibility_off
{
    background-image: url('../icon/h1_icon_visibility_off.svg');
}

.h1_icon_visszajelzes
{
    background-image: url('../icon/h1_icon_visszajelzes.svg');
}

.h1_icon_work
{
    background-image: url('../icon/h1_icon_work.svg');
}

.h1_icon_youtube
{
    background-image: url('../icon/h1_icon_youtube.svg');
}

.h1_icon_video
{
    background-image: url('../icon/h1_icon_video.svg');
}


/*################################################### ZÁSZLÓK ########################################################*/
.h1_flag
{
    height: 40px;
    width: 40px;
    border-radius: 40px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.h1_flag_china
{
    background-image: url('../icon/h1_flag_china.svg');
}

.h1_flag_denmark
{
    background-image: url('../icon/h1_flag_denmark.svg');
}

.h1_flag_finland
{
    background-image: url('../icon/h1_flag_finland.svg');
}

.h1_flag_france
{
    background-image: url('../icon/h1_flag_france.svg');
}

.h1_flag_germany
{
    background-image: url('../icon/h1_flag_germany.svg');
}

.h1_flag_india
{
    background-image: url('../icon/h1_flag_india.svg');
}

.h1_flag_italy
{
    background-image: url('../icon/h1_flag_italy.svg');
}

.h1_flag_japan
{
    background-image: url('../icon/h1_flag_japan.svg');
}

.h1_flag_portugal
{
    background-image: url('../icon/h1_flag_portugal.svg');
}

.h1_flag_russia
{
    background-image: url('../icon/h1_flag_russia.svg');
}

.h1_flag_scotland
{
    background-image: url('../icon/h1_flag_scotland.svg');
}

.h1_flag_south_korea
{
    background-image: url('../icon/h1_flag_south_korea.svg');
}

.h1_flag_spain
{
    background-image: url('../icon/h1_flag_spain.svg');
}

.h1_flag_united_kingdom
{
    background-image: url('../icon/h1_flag_united_kingdom.svg');
}

.h1_flag_united_states
{
    background-image: url('../icon/h1_flag_united_states.svg');
}

/*############################################## ÁLTALÁNOS GRID OSZTÁLYOK ############################################*/

[data-aid="content"]
{
    background-color: var(--h1_color_white_100);
}
.h1_page_container
{

    /*Ez a maximum szélesség a reszponzivitás miatt.*/

}
/*Alap header beállítások*/


.h1_page_header_left
{
    grid-column-start: start;
    grid-column-end: c4-1s;
    grid-row-start: 1;
    grid-row-end: 2;

}
.h1_page_header_right
 {
     grid-column-start: c4-4e;
     grid-column-end: end;
     grid-row-start: 1;
     grid-row-end: 2;

 }

.h1_page_header_bg
{
    grid-column-start: start;
    grid-column-end: end;
    grid-row-start: 1;
    grid-row-end: 2;
    z-index: 0;
    backdrop-filter: blur(10px);
    background-color: #FFFFFFCC;
}

.h1_page_header
{
    /*A headerben lévő logó més menü miatt ez is grid*/
    display: grid;
    grid-auto-flow: column;
    font-size: 14px;
    font-weight: var(--h1_fw_medium);
    z-index: 1;
    grid-column-start: c4-1s;
    grid-column-end: c4-4e;
    grid-row-start: 1;
    grid-row-end: 2;


}

.h1_page_header a
{
    color: var(--h1_color_dark_blue_100);
}

.h1_page_header a[data-aid="menu_lang"]
{
    background-image: url('../icon/h1_icon_language_header.svg');
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 25px;
    background-size: contain;
    cursor: pointer;
}

/*Fejléc és menü*/

.h1_page_header .h1_header_logo
{
    width: 130px;
    height: 18px;
    background-image: url("../background/h1_logo.svg");
    background-repeat: no-repeat;
    background-position: left center;
    place-self: center left;

    /*Mivel a header egy grid, így azon belül jobbra kell tenni a gombot. */

}

.h1_page_header .h1_header_menu
{
    text-align: right;
    line-height: 80px;
    margin-right: 100px;
}

.h1_page_header .h1_header_menu a
{
    margin-right: 30px;
}




.h1_logged_in .h1_page_header .h1_header_button_user_monogram,
.h1_logged_in .h1_page_header .h1_header_button_user_menu
{
    display: inherit;
}

.h1_logged_in .h1_header_button_user_login
{
    display: none;
}

.h1_page_header .h1_header_button_user
{

    width: 64px;

    /*Mivel a header egy grid, így azon belül jobbra kell tenni a gombot. */
    place-self: center right;
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: 36px 28px auto;
    cursor: pointer;
}

.h1_page_header .h1_header_button_user_monogram
{
    display: none;
    width: 36px;
    height: 36px;
    border-radius: 18px;
    background-color: var(--h1_color_dark_blue_70);
    color: var(--h1_color_white_100);
    line-height: 37px;
    text-align: center;
}

.h1_page_header .h1_header_button_user_menu
{
    display: none;
    width: 28px;
    height: 28px;
    background-image: url("../icon/h1_arrow_downward.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 50%;
    place-self: center center;
}

.h1_header_menu_user
{
    display: none;
    background-color: var(--h1_color_white_100);
    border: 1px solid var(--h1_color_dark_blue_15);
    border-radius: var(--h1_radius_1);
    width: 275px;
    position: absolute;
    margin-top: 40px;
    margin-left: -200px;
    z-index: 1;
}

.h1_header_button_user.h1_menu_open .h1_header_menu_user
{
    display: grid;
    grid-auto-flow: row;
    grid-template-rows: auto 1fr;
}

.h1_header_button_user.h1_menu_open .h1_header_button_user_menu
{
    background-image: url("../icon/h1_arrow_upward.svg");
}

.h1_header_menu_user > div:nth-child(1)
{
    border-bottom: 1px solid var(--h1_color_dark_blue_15);
    padding-top: 20px;
    padding-bottom: 20px;
}

.h1_header_menu_user div *
{
    margin-left: 24px;
    margin-right: 24px;
}
.h1_header_menu_user div button
{
    margin-top: 10px;
    width: calc( 100% - 48px );
}

.h1_header_menu_user div[data-aid="button_logout"]
{
    padding: 24px;
    padding-left: 60px;
    background-image: url('../icon/h1_icon_logout.svg');
    background-size: 10%;
    background-position: 24px center;
    background-repeat: no-repeat;
}

.h1_header_menu_user div[data-aid="button_delete"]
{
    padding: 24px;
    padding-left: 35px;

}

.h1_page_header .h1_header_button_menu
{
    background-image: url('../icon/h1_icon_menu_button_closed.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    width: 28px;
    height: 28px;
    /*Mivel a header egy grid, így azon belül jobbra kell tenni a gombot. */
    place-self: center right;
    margin-left: 15px;
}
.h1_button_contact
{
    border-radius: 20px;
    width: 150px;
    height: 40px;
    place-self: center right;
    line-height: 40px;
    text-align: center;
    margin-left: 15px;
    cursor: pointer;
}

.h1_page_header .h1_button_contact
{
    border: 1px solid var(--h1_color_dark_blue_15);
    background-color: var( --h1_color_white_100);
}



.h1_page_header .h1_header_menu .h1_menu_social
{
    text-align: left;
    position: absolute;
    bottom: 0;
}

.h1_page_header .h1_header_menu .h1_menu_social a
{
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--h1_color_gray_30);
    height: 40px;
    width: 40px;
    border-radius: 24px;
    display: inline-block;
    margin-top: 10px;
    margin-right: 10px;
}

/*Body tartalmi részek, szekciók*/
.h1_cont_full
{
    grid-column-start: c4-1s;
    grid-column-end: c4-4e;
}

.h1_cont_wide
 {
     grid-column-start: start;
     grid-column-end: end;
 }

.h1_cont_4-12
{
    grid-column-start: c4-1s;
    grid-column-end: c4-2e;
}

.h1_cont_4-34
{
    grid-column-start: c4-3s;
    grid-column-end: c4-4e;
}
.h1_cont_4-34e
{
    grid-column-start: c4-3s;
    grid-column-end: end;
}

.h1_cont_4-123
{
    grid-column-start: c4-1s;
    grid-column-end: c4-3e;
}

.h1_cont_4-4
{
    grid-column-start: c4-4s;
    grid-column-end: c4-4e;
}

.h1_cont_mid
{
    grid-column-start: 5;
    grid-column-end: -5;
}

.h1_cont_mid_text
{
    grid-column-start: 6;
    grid-column-end: -6;
}

.h1_cont_3-1
{
    grid-column-start: c4-1s;
    grid-column-end: 9;
}

.h1_cont_3-23
{
    grid-column-start: 10;
    grid-column-end:  c4-4e
}

.h1_card
{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: var(--h1_radius_1);
    cursor: pointer;
}

.h1_card_content
{
    background-color: var(--h1_color_white_100);
    border-top-right-radius: var(--h1_radius_1);
    border-bottom-left-radius: var(--h1_radius_1);
    padding-top: 30px;
    display: grid;
    position: relative;
    top: 1px;
    left: -1px;
    width: 101%;
}


.h1_card_content button
{
    margin: 0;
    margin-top: 20px;
    justify-self: left;
}

.h1_card_content h5
{
    margin: 0;
    background-image: url("../icon/h1_icon_arrow_forward.svg");
    background-position: 98% center;
    background-size: 4%;
    background-repeat: no-repeat;
    display: block;
}




/*Lábléc és alsó linkek*/

.h1_page_footer
{
    grid-column-start: c4-1s;
    grid-column-end: c4-4e;

    background-color: var(--h1_color_dark_blue_100);
    color: var(--h1_color_dark_blue_50);

    display: grid;
    grid-row-gap: 40px;
    font-size: 14px;
}

.h1_page_footer .h1_footer_logo
{
    grid-area: logo;
    background-image: url('../background/h1_logo_inv.svg');
    background-size: 100%;
    width: 130px;
    height: 18px;
    background-repeat: no-repeat;

}


.h1_page_footer div *
{
    display: block;
    color: var(--h1_color_dark_blue_50);

}

.h1_page_footer div:first-of-type
{
    font-weight: bold;
    color: var(--h1_color_white_100);
}

.h1_page_footer .h1_footer_social
{
    grid-area: social;

    display: grid;
    grid-template-areas:
        'footer_lang footer_lang footer_lang'
        'footer_linkedin footer_facebook footer_youtube';
    grid-template-columns: 32px 32px 32px;
    grid-template-rows: 32px 32px;
    gap: 12px;

}
.h1_page_footer .h1_footer_social a
{
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
}
.h1_page_footer .h1_footer_social .h1_footer_lang
{
    grid-area: footer_lang;
    background-image: url('../icon/h1_icon_language_footer.svg');
    background-size: 32px 32px;
    background-position: left center;
    padding-left: 40px;
    line-height: 32px;
    cursor: pointer;
}

.h1_page_footer .h1_footer_social .h1_footer_linkedin
{
    grid-area: footer_linkedin;
    background-image: url('../icon/h1_icon_footer_linkedin.svg');
}
.h1_page_footer .h1_footer_social .h1_footer_facebook
{
    grid-area: footer_facebook;
    background-image: url('../icon/h1_icon_footer_facebook.svg');
}
.h1_page_footer .h1_footer_social .h1_footer_youtube
{
    grid-area: footer_youtube;
    background-image: url('../icon/h1_icon_footer_youtube.svg');
}


.h1_cert
{
    grid-area: cert;
    display: grid;
    grid-template-columns: 66px 170px auto;
    grid-template-rows: 60px;
    gap: 8px;
    align-items: center;
    font-weight: normal;
}
.h1_cert .h1_cert_img
{
    background-image: url('../background/h1_db_cert.png');
    background-repeat: no-repeat;
    background-position: center center;
    align-self: normal;
}


.h1_page_footer_left
{
    grid-column-start: start;
    grid-column-end: c4-1s;
    background-color: var(--h1_color_dark_blue_100);
}

.h1_page_footer_right
{
    grid-column-start: c4-4e;
    grid-column-end: end;
    background-color: var(--h1_color_dark_blue_100);
}


.h1_page_footer .h1_footer_employers
{
    grid-area: employers;
}

.h1_page_footer .h1_footer_employers *
{
    margin-bottom: 10px;
}

.h1_page_footer .h1_footer_employees
{
    grid-area: employees;
}

.h1_page_footer .h1_footer_employees *
{
    margin-bottom: 10px;
}

.h1_page_footer .h1_footer_hireone
{
    grid-area: hireone;
}

.h1_page_footer .h1_footer_hireone *
{
    margin-bottom: 10px;
}

.h1_page_footer .h1_footer_contact
{
    grid-area: contact;
}
.h1_page_footer .h1_footer_contact *
{
    margin-bottom: 10px;
}

.h1_page_footer .h1_button_contact
{
    color: var(--h1_color_white_100);
    background-color: var(--h1_color_dark_blue_90);
    place-self: center left;
    margin-left: 0px;
}

.h1_page_footer .h1_button_contact a
{
    color: var(--h1_color_white_100);
}

.h1_page_footer .h1_footer_footlinks
{
    grid-area: footlinks;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(min-content, max-content);
}

.h1_page_footer .h1_footer_footlinks a
{
    padding-left: 10px;
    padding-right: 10px;
    border-color: var(--h1_color_dark_blue_50);
}

.h1_page_footer .h1_footer_footlinks a:nth-child(1)
{
    grid-area: copyright;
    padding-right: 40px;

}

.h1_page_footer .h1_footer_footlinks a:nth-child(2)
{
    grid-area: gdpr;
}

.h1_page_footer .h1_footer_footlinks a:nth-child(3)
{
    grid-area: company;
}

.h1_page_footer .h1_footer_footlinks a:nth-child(4)
{
    grid-area: conditions;
}

.h1_page_footer .h1_footer_footlinks a:nth-child(5)
{
    grid-area: imrpessum;
}
/*############################################ ÁLTALÁNOSAN HASZNÁLT ELEMEK #############################################*/







/*############################################ ACCORDION #############################################*/
.h1_accordion
{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto ;
    grid-template-areas:
            'top'
            'middle'
            'bottom';
    border-radius: var(--h1_radius_1);
    padding: 40px;
}

.h1_accordion_cyan
{
    background-color: var(--h1_color_cyan_100);
    border: 1px solid var(--h1_color_gray_100);
}

.h1_accordion_gray
{
    background-color: var(--h1_color_gray_30);
    border: none;
}

.h1_accordion .h1_accordion_top
{
    grid-area: top;
}

.h1_accordion .h1_accordion_middle
{

    grid-area: middle;

}

.h1_accordion .h1_accordion_middle .h1_accordion_row
{
    display: grid;
    grid-template-areas:
        'title button'
        'content content';
    grid-template-columns: 1fr 40px;
    grid-template-rows: auto auto;
    border-bottom: 1px solid var(--h1_color_dark_blue_15);

}

.h1_accordion .h1_accordion_icon
{
    /*TODO: IKON*/
    background-repeat: no-repeat;
}
.h1_accordion .h1_accordion_tip
{

}
.h1_accordion .h1_accordion_title
{
    grid-area: title;
    padding-top: 30px;
    padding-bottom: 30px;
}

.h1_accordion.h1_accordion_gray .h1_accordion_button
{
    border-radius: 40px;
    height: 40px;
    width: 40px;
    background-color: #FFF;
}

.h1_accordion .h1_accordion_button
{
    cursor: pointer;
    grid-area: button;
    background-repeat: no-repeat;
    background-image: url('../icon/h1_icon_keyboard_arrow_down.svg');
    align-self: center;
}
.h1_accordion .h1_accordion_open .h1_accordion_button
{
    background-image: url('../icon/h1_icon_keyboard_arrow_up.svg');
}

.h1_accordion .h1_accordion_content
{
    grid-area: content;
    display: none;
    padding-top: var(--h1_padding_1);
    padding-bottom: var(--h1_padding_1);
}

.h1_accordion .h1_accordion_open .h1_accordion_content
{
    display: block;
}

/*######################################## ÁLTALÁNOS ŰRLAPELEMEK ######################################################*/
input[type="button"],
input[type="reset"],
input[type="submit"],
input[type="text"],
input[type="password"],
input[type="color"],
input[type="number"],
select,
textarea,
div.iui_textarea_autoheight
{

    border-radius: var(--h1_radius_1);
    background-color: var(--h1_color_gray_30);
    height: var(--h1_input_height);
    border: none;
    /*
    padding: var(--i_size_input_padding_tb) var(--i_size_input_padding_lr) ;
    height: var(--i_size_input_height);
    background-color: var(--color_bg_text);
    border: 1px var(--color_border) solid;
    color: var(--color_font_text);
    margin: 1px;
    font-size: var(--i_font_main_size);
    border-radius: 3px;
    box-shadow: 0px 0px 2px var(--color_shadow_ambient);*/
}
input[type="button"]:focus, input[type="reset"]:focus, input[type="submit"]:focus
{
    outline: 0;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="color"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus,
div.iui_textarea_autoheight:focus
{
    background-color: var(--h1_color_gray_30);
    border: none;
}

/*######################################## IUI_SELECT select option css beállításai ###################################*/
div.iui_select
{
    width: 100%;
}
div.iui_select.disabled
{
    /*Lásd disabled*/
}
div.iui_select [data-aid='node_widget']
{
    border: 0;
    padding-top: calc( var(--i_size_input_padding_tb) + 1px ) ;
    padding-bottom: calc( var(--i_size_input_padding_tb) + 1px ) ;
    padding-left: var(--i_size_input_padding_lr);
    padding-right: calc( var(--i_size_input_padding_lr) + 20px );

    margin: 1px;
    font-size: var(--i_font_main_size);

    border-radius: var(--h1_radius_1);
    background-color: var(--h1_color_gray_30);

    background-size: 12px 12px;
    background-position: calc(100% - 10px) center;
    background-repeat: no-repeat;
    padding-left: 18px;
}

div.iui_select.iui_select_button_list [data-aid='node_widget']
{
    background-image: url('../icon/h1_arrow_downward.svg');
}
div.iui_select.iui_select_button_context [data-aid='node_widget']
{
    background-image: url('../icon/iui_button_contextmenu_transparent.svg');
}
.iui_select.iui_select_button_click [data-aid='node_widget']
{
    background-image: url('../icon/iui_button_module.svg');
}

div.iui_select.iui_select_button_list.iui_select_open [data-aid='node_widget']
{
    background-image: url('../icon/h1_arrow_upward.svg');
}

div.iui_select.iui_select_button_list.iui_select_searchable [data-aid='node_widget']
{
    background-image: url('../icon/h1_search.svg');
    background-size: 20px 20px;

}


div.iui_select.iui_select_multi [data-aid='node_widget']
{
    min-height: var(--i_size_input_height);

}
div.iui_select.iui_select_single [data-aid='node_widget']
{
    height: var(--h1_input_height);
}



div.iui_select.iui_select_loading [data-aid='node_widget']
{
    background-image: url('../icon/iui_progress.svg');
    background-size: 10px 10px;
    background-color: inherit;
    background-position: calc(100% - 10px) center;

}
div.iui_select.iui_select_focus [data-aid='node_widget']
{
    border-color: var(--color_border_focus) !important;
}
div.iui_select [data-aid='node_list']
{
    margin-top: -2px;
    margin-left: 1px;
    max-height: 300px;
    background-color: var(--color_bg_work);
    border: 1px var(--color_border) solid;
    color: var(--color_font_text);
    font-size: var(--i_font_main_size);
    border-radius: var(--h1_radius_1);
    border: var(--h1_color_white_100) 10px solid;
    box-shadow: 0px 0px 0px 1px var(--h1_color_dark_blue_15);

    /* Scrollbar testreszabás */
    scrollbar-width: var(--h1_scrollbar_width_ff); /* Firefox */
    scrollbar-color: var(--h1_color_dark_blue_15) transparent; /* Firefox */
}

/* WebKit böngészők (Chrome, Safari, Edge) */
.dropdown-list::-webkit-scrollbar
{
    width: var(--h1_scrollbar_width); /* vékony scrollbar */
}

.dropdown-list::-webkit-scrollbar-track
{
    background: transparent; /* háttér átlátszó */
    border-radius: 12px;
}

.dropdown-list::-webkit-scrollbar-thumb {
    background: var(--h1_color_dark_blue_15); /* világos szürke */
    border-radius: 3px;
    border: none;
}

/*div.iui_select [data-aid='node_list'] div.iui_select_option .shell_icon
{

	width: 25px;
	height: 25px;
	margin-left: 5px;
}*/
div.iui_select.iui_select_open [data-aid='node_list'] div.iui_select_option .shell_icon
{
    width: 25px;
    height: 25px;
    margin-left: 5px;
}


div.iui_select.iui_select_open [data-aid='node_list']
{

}
div.iui_select [data-aid='node_list'],
div.iui_select.iui_select_open [data-aid='node_list']:empty
{

}


div.iui_select [data-aid='node_list'] div.iui_select_optgroup_open
{
    text-transform: uppercase;
    border-top: 1px solid #AAA;
    padding: calc( var(--i_size_input_padding_tb) + 6px ) var(--i_size_input_padding_lr) ;
    height: calc( var(--i_size_input_height) - 5px);
    font-weight: bold;
}
div.iui_select [data-aid='node_list'] div.iui_select_optgroup_close
{
    min-height: 0px;
    padding-top: 0px;
    height: 0px;
    border-bottom: 0px;
}
div.iui_select [data-aid='node_list'] div
{
    min-height: 36px;
    padding-top: 3px;
    padding-left: 12px;
    border-bottom: none;
    border-radius: 8px;
}
div.iui_select [data-aid='node_list'] div span
{
    padding-top: 5px;
    padding-left: 4px;
    padding-right: 4px;
    padding-bottom: 5px;

}
div.iui_select [data-aid='node_list'] div span.shell_icon
{
    border-radius: 3px;
    margin-top: 2px;
}

div.iui_select [data-aid='node_list'] div.iui_select_option
{
    cursor: pointer;

}
div.iui_select [data-aid='node_list'] div.iui_select_option.free
{
    color: red;
}

div.iui_select [data-aid='node_list'] div.iui_select_option:hover
{
    background-color: var(--color_bg_hover_sec);
}

div.iui_select [data-aid='node_list'] div.iui_select_option.iui_select_cached
{
    background-image: url('../icon/iui_select_cached.svg');
    background-size: 12px 12px;
    background-position: 7px center;
    color: var(--color_font_aux);

}

div.iui_select [data-aid='node_list'] div.iui_select_option.iui_selected_opt
{
    background-image: url('../icon/iui_select_selected.svg');
    background-size: 12px 12px;
    background-position: 7px center;
    color: inherit;
}


div.iui_select .iui_select_null
{
    color: var(--color_font_aux) !important;
}
div.iui_select [data-aid='node_list'] div.iui_select_option:hover,
div.iui_select [data-aid='node_list'] div.iui_select_option.designated
{
    background-color: var(--h1_color_gray_30);
    color: inherit;
}
div.iui_select span
{

}
div.iui_select span[data-aid='node_labels']
{

}
div.iui_select span[data-aid='node_labels'] span
{
    padding-right: 5px;
    text-decoration: none;
    line-height: 41px;/*TODO: ellenőrizni más eszközön, hogy jó-e.*/
}

div.iui_select.iui_select_multi span[data-aid='node_labels'] span
{

    padding-right: 15px;
    background-repeate: no-repeat;
    background-image: url('../icon/iui_select_remove.svg');
    background-size: 7px 7px;
    background-position: calc(100% - 6px) calc(50% + 1px);
}



div.iui_select span[data-aid='node_input']
{
    color:  var(--color_font_text);
    line-height: 41px;/*TODO: ellenőrizni más eszközön, hogy jó-e.*/
}



div.iui_select.iui_select_nosearch span[data-aid='node_input']
{
    color:  var(--color_bg_text);
}

div.iui_select.iui_select_single.iui_select_search span[data-aid='node_labels']
{
    display: none;
}

div.iui_select span[data-aid='node_input']:empty
{

}

div.iui_select span[data-aid='node_placeholder']
{
    color: var(--color_font_aux);
    /*height:  var(--i_size_input_height);*/
    line-height: 41px;/*TODO: ellenőrizni más eszközön, hogy jó-e.*/

}

div.iui_select span[data-aid='node_complete']
{
    background-color: var(--color_bg_select);
    color: var(--color_font_select);
    line-height: 41px;/*TODO: ellenőrizni más eszközön, hogy jó-e.*/
}

/*######################################## DATEPICKER css beállításai ###################################*/

/*A datepicker alap űrlapeleme*/
input[type=text].hasDatepicker
{
    width: 210px;
    padding-left: 50px;
    background-repeat: no-repeat;
    background-size: 24px 24px;
    background-position: 16px center;
    background-image: url('../icon/h1_icon_calendar_today.svg');

}

/*A datepicker lenyíló részre.*/
.ui-datepicker
{
    background-color: var(--h1_color_white_100);
    border: 1px var(--h1_color_dark_blue_15) solid;
    border-radius: var(--h1_radius_1);
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 16px;
    padding-bottom: 16px;
    width: unset;
}

.ui-datepicker .ui-datepicker-title
{
    font-size: 16px;
    line-height: 16px;
}
/*A datepicker lenyíló részre.*/
.ui-datepicker td
{

}

.ui-datepicker a.ui-state-default
{
    border: none;
    background-color: var(--h1_color_white_100);;
}

.ui-datepicker .ui-widget-header
{

    margin: 0;
    padding-left: 0px;
    padding-right: 0px;
    padding-bottom: 8px;
    padding-top: 8px;
    color: #222222;
}

.ui-datepicker .ui-datepicker-prev
{
    left: 0;
    top: 8px;
}

.ui-datepicker .ui-datepicker-next
{
    right: 0;
    top: 8px;
}


.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span
{
    background-repeate: no-repeat;
    background-size: cover;
    background-position: center;
    margin-left: -12px;
    top: 5px;
    width: 24px;
    height: 24px;
}

.ui-datepicker .ui-datepicker-prev span
{
    background-image: url('../icon/h1_icon_keyboard_arrow_left.svg');
}

.ui-datepicker .ui-datepicker-next span
{
    background-image: url('../icon/h1_icon_keyboard_arrow_right.svg');
}
.ui-datepicker table
{
    font-size: 16px;
}

.ui-datepicker table thead th
{
    font-size: 14px;
    color: var(--h1_color_dark_blue_50);
    font-weight: normal;
}
.ui-datepicker a.ui-state-highlight
{
    border: 1px solid var(--h1_color_orange_100);
    color: var(--h1_color_dark_blue_100);
    font-weight: normal;
}

.ui-datepicker a.ui-state-active
{
    color: var(--h1_color_white_100);
    background-color: var(--h1_color_orange_100);
    border-radius: var(--h1_radius_2);
}

.ui-datepicker td span,
.ui-datepicker td a
{
    text-align: center;
    width: 40px;
    height: 40px;
    line-height: 35px;
    border-radius: var(--h1_radius_2);
}

.h1_button_large_icon_right
{
    padding-right: 56px;
    background-position: calc( 100% - 24px ) center;
    background-repeat: no-repeat;
    gap: 12px;

}

div.h1_card
{
    display: grid;
    grid-template-rows: 5fr 1fr;
    grid-template-columns: 0.7fr;
}


/*############################################ ALOLDALAK ÁTALÁNOS #############################################*/

/* Kapcsolati szekció*/
.h1_cont_contact
{
    grid-column-start: c4-1s;
    grid-column-end: c4-4e;
    border-radius: var(--h1_radius_1);
    background-color: #EA6810; /* For browsers that do not support gradients */
    background-image: linear-gradient(to right, #EA6810 , #FFE8BBF6);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.h1_cont_contact .h1_cont_contact_text
{
    padding: 50px;
    color: #FFF;
}

.h1_cont_contact .h1_cont_contact_img
{
    height: 330px;
    background-image: url("../background/h1_cont_contact_img.png");
    background-size: cover;
    background-position: top center;
    border-top-right-radius: var(--h1_radius_1);
    border-bottom-right-radius: var(--h1_radius_1);
}


.h1_cms_hero_bg
{
    grid-column-start: start;
    grid-column-end: end;
    grid-row-start: 2;
    grid-row-end: 5;
}
.h1_cms_hero_bg.h1_cms_hero_bg_cyan
{
    background-color: var(--h1_color_cyan_100);
}

.h1_cms_hero_bg.h1_cms_hero_bg_orange
{
    background-color: var(--h1_color_orange_15);
}


.h1_cms_hero_text
{
    grid-row-start: 2;
    grid-row-end: 3;
    z-index: 0;
    display: grid;
    grid-template-rows: auto auto auto ;
}

.h1_cms_hero_text h2
{
    align-self: end;
}

.h1_cms_hero_img
{
    z-index: 0;
    height: 365px;
    grid-row-start: 2;
    grid-row-end: 3;
    background-position: center;
    background-size: cover;
    border-top-left-radius: var(--h1_radius_1);
    border-bottom-left-radius: var(--h1_radius_1);
}



ul.h1_ul_thick
{
    list-style: none;
    padding-left: 0;
}

ul.h1_ul_thick li {
    position: relative;
    padding-left: 30px; /* ikon szélességétől függően állítsd */
    margin-bottom: 15px;
}

ul.h1_ul_thick li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px; /* ikon mérete */
    height: 24px;
    background-image: url("../icon/h1_icon_ok.svg");
    background-size: contain;
    background-repeat: no-repeat;
}


/*############################################ FŐOLDAL #############################################*/

/*Hero kép és szövegek*/
#h1_hero_text p
{
    color: var(--h1_color_dark_blue_90);
}
#h1_hero_text a
{
    border-bottom: 2px solid var(--h1_color_orange_30);
    color: var(--h1_color_dark_blue_100);
}
#h1_hero_img
{
    background-image: url("../background/h1_hero.png");
    background-repeat: no-repeat;

}
/*Felső kártyák*/
#h1_cms_main_employers
{
    background-image: url("../background/h1_cms_main_employers.png");
}
#h1_cms_main_employees
{
    background-image: url("../background/h1_cms_main_employees.png");
}
[data-aid="main"] div.h1_card
{
    display: grid;
    grid-template-rows: 2fr 1fr;
    grid-template-columns: 0.7fr;
}
/*Hero Kék hátterű db cert rész*/
#h1_cms_main_cert
{
    background-color: var(--h1_color_cyan_100);
    border-radius: var(--h1_radius_1);
    display: grid;
    grid-template-areas: 'img text';
}
#h1_cms_main_cert #h1_cert_img
{
    grid-area: img;
    border-radius: var(--h1_radius_1);
    background-image: url("../background/h1_cms_main_cert.png");
    background-size: cover;
}
#h1_cms_main_cert #h1_cert_text
{
    grid-area: text;
}
#h1_cms_main_cert #h1_cert_text h3
{
    margin: 0;
    margin-top: 10px;
}
#h1_cms_main_cert #h1_cert_text p
{
    font-size: 18px;
}
#h1_cms_main_cert #h1_cert_text .h1_cert
{
    margin-bottom: 25px;
}
/*Cégünkről számokban*/
#h1_cms_main_number
{
    display: grid;
    grid-gap: 37px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
#h1_cms_main_number h4
{
    padding-left: 60px;
    margin: 0;
    background-position: left center;
    background-repeat: no-repeat;
}
#h1_cms_main_number h5
{
    margin: 0;
    margin-top: 10px;
}
#h1_cms_main_number #h1_cms_main_number_pos_fulfilled h4
{
    background-image: url('../icon/h1_icon_number_pos_filfilled.svg') ;
}
#h1_cms_main_number #h1_cms_main_number_customer h4
{
    background-image: url('../icon/h1_cms_main_number_customer.svg') ;
}
#h1_cms_main_number #h1_cms_main_number_pos_open h4
{
    background-image: url('../icon/h1_cms_main_number_pos_open.svg') ;
}
/*Szolgáltatások rész.*/
#h1_cms_main_services
{
    display: grid;
    grid-gap: 37px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
#h1_cms_main_services #h1_cms_main_serv_leader
{
    background-image: url("../background/h1_cms_main_serv_leader.png");
}
#h1_cms_main_services #h1_cms_main_serv_agency
{
    background-image: url("../background/h1_cms_main_serv_agency.png");
}
#h1_cms_main_services #h1_cms_main_serv_consult
{
    background-image: url("../background/h1_cms_main_serv_consult.png");
}
#h1_cms_main_expertise
{
    display: grid;
    grid-gap: 35px;
    grid-template-columns: 100px;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}
#h1_cms_main_expertise div
{
    display: grid;
    padding: 30px;
    place-items: center left;
    height: 100px;
    border-radius: var(--h1_radius_1);
    background-color: var(--h1_color_gray_30);
    background-image: url("../icon/h1_icon_arrow_forward.svg");
    background-position: 95% center;
    background-size: 5%;
}
#h1_cms_main_testimonials
{
    overflow-x: hidden;
    grid-column-start: c4-1s;
    grid-column-end: end;

}
#h1_cms_main_testimonials .h1_scrollable
{
    display: grid;
    grid-auto-flow: column;
    position: relative;
    width: max-content;
    transition: 0.5s;
    touch-action:none;
}

#h1_cms_main_testimonials .h1_scrollable div
{
    display: inline-block;
    border-radius: var(--h1_radius_1);
    border: 1px solid var(--h1_color_dark_blue_15);
    padding: 30px;
    padding-top: 80px;
    background-image: url("../icon/h1_icon_testimonials.svg");
    background-position: 30px 40px;
}

#h1_cms_main_testimonials_buttons_1
{
    display: grid;
}
#h1_cms_main_testimonials_buttons_2
{
    display: none;
}




/*############################################ SZOLGLTATÁSOK #############################################*/

#h1_cms_serv_1
{
    background-image: url("../background/h1_cms_serv_1.png");
}
#h1_cms_serv_2
{
    background-image: url("../background/h1_cms_serv_2.png");
}
#h1_cms_serv_3
{
    background-image: url("../background/h1_cms_serv_3.png");
}
#h1_cms_serv_4
{
    background-image: url("../background/h1_cms_serv_4.png");
}
/*############################################ SZOLGLTATÁSOK - VEZETŐKIVÁLASZTÁS #############################################*/



#h1_cms_serv_leader_hero_img
{
    background-image: url("../background/h1_cms_serv_1.png");
}

#h1_cms_serv_leader_1
{
    background-image: url("../background/h1_cms_serv_leader_1.png");
}

#h1_cms_serv_leader_2
{
    background-image: url("../background/h1_cms_serv_3.png");
}

/*############################################ MUNKAERŐ-KÖZVETÍTÉS #############################################*/
#h1_cms_serv_agent_hero_img
{
    background-image: url("../background/h1_cms_serv_2.png");
}

#h1_cms_serv_agent_1
{
    background-image: url("../background/h1_cms_serv_1.png");
}

#h1_cms_serv_agent_2
{
    background-image: url("../background/h1_cms_serv_3.png");
}
/*############################################ SZEMÉLYISÉGTESZTEK #############################################*/
#h1_cms_serv_personality_hero_img
{
    background-image: url("../background/h1_cms_serv_3.png");
}

#h1_cms_serv_personality_1
{
    background-image: url("../background/h1_cms_serv_1.png");
}

#h1_cms_serv_personality_2
{
    background-image: url("../background/h1_cms_serv_4.png");
}

/*############################################ HR-TANÁCSADÁS  #############################################*/
#h1_cms_serv_consult_hero_img
{
    background-image: url("../background/h1_cms_serv_4.png");
}

#h1_cms_serv_consult_1
{
    background-image: url("../background/h1_cms_serv_1.png");
}

#h1_cms_serv_consult_2
{
    background-image: url("../background/h1_cms_serv_2.png");
}

/*############################################ Karriertanácsok  #############################################*/

#h1_cms_career_1
{
    background-image: url("../background/h1_cms_career_1.png");
}
#h1_cms_career_2
{
    background-image: url("../background/h1_cms_career_2.png");
}
#h1_cms_career_3
{
    background-image: url("../background/h1_cms_career_3.png");
}
#h1_cms_career_4
{
    background-image: url("../background/h1_cms_career_4.png");
}

#h1_cms_career_signon
{
    border-radius: var(--h1_radius_1);
    background-color: var(--h1_color_gray_30); /* For browsers that do not support gradients */

    display: grid;
    grid-template-columns: 1fr 1fr;
}
#h1_cms_career_signon_img
{
    background-image: url("../background/h1_cms_creer_signon.png");
    background-size: 85%;
    padding: 48px;

}
#h1_cms_career_signon_text
{
    padding: 48px;
}
/*############################################ NEMZETKÖZI INTERJÚTIPPEK  #############################################*/
#h1_cms_career_international_hero_img
{
    background-image: url("../background/h1_cms_career_4.png");
}

#h1_cms_career_international_1
{
    background-image: url("../background/h1_cms_career_1.png");
}

#h1_cms_career_international_2
{
    background-image: url("../background/h1_cms_career_2.png");
}

.h1_cms_career_titles
{
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-gap: 20px;
    margin-bottom: 20px;
}
.h1_cms_career_titles h4
{
    margin: 0;
}

#h1_cms_career_international_links div
{

}

#h1_cms_career_international_links a
{
    display: inline-block;
    padding: 10px;
    padding-left: 12px;
    padding-right: 12px;
    margin-right: 20px;
    font-size: 14px;
    line-height: 20px;
    color: var(--h1_color_dark_blue_100);
}
#h1_cms_career_international_links a:hover
{
    background-color: var(--h1_color_gray_30);
    border-radius: var(--h1_radius_2);
}
/*############################################ SZEMÉLYES INTERJÚ TIPPEK  #############################################*/
#h1_cms_career_personal_hero_img
{
    background-image: url("../background/h1_cms_career_2.png");
}

#h1_cms_career_personal_1
{
    background-image: url("../background/h1_cms_career_3.png");
}

#h1_cms_career_personal_2
{
    background-image: url("../background/h1_cms_career_4.png");
}

/*############################################ ONLINE INTERJÚ TIPPEK  #############################################*/
#h1_cms_career_online_hero_img
{
    background-image: url("../background/h1_cms_career_3.png");
}

#h1_cms_career_online_1
{
    background-image: url("../background/h1_cms_career_2.png");
}

#h1_cms_career_online_2
{
    background-image: url("../background/h1_cms_career_4.png");
}
/*############################################ ÖNÉLETRJAZ, MOTIVÁCIÓS LEVÉL  #############################################*/
#h1_cms_career_cv_hero_img
{
    background-image: url("../background/h1_cms_career_1.png");
}

#h1_cms_career_cv_1
{
    background-image: url("../background/h1_cms_career_2.png");
}

#h1_cms_career_cv_2
{
    background-image: url("../background/h1_cms_career_4.png");
}

.h1_cms_main_services_link_container
{
    text-align: right;
    padding-top: 30px;
}

.h1_cms_main_services_link_container a
{
    font-size: 16px;
    border-bottom: 2px solid var(--h1_color_orange_30);
    color: var(--h1_color_dark_blue_100);

}

/*############################################ KAPCSOLAT #############################################*/
#h1_cms_contact_partners,
#h1_cms_contact_employees
{
    border: 1px solid var(--h1_color_dark_blue_15);
    border-radius: var(--h1_radius_1);
    padding: 20px;
    font-size: 16px;
    display: grid;
    grid-template-areas:
            'label label'
            'condition condition'
            'image name'
            'image position'
            'image email'
            'image phone'
            'image button';
    grid-template-columns: 140px 1fr;
    grid-template-rows: 0.3fr 0.3fr 0.5fr 0.5fr 0.5fr 0.2fr 2fr;
    align-items: center;
}
.h1_cms_contact_portrait
{
    width: 120px;
    height: 120px;
    border-radius: 120px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-color: var(--h1_color_gray_30);
    align-self: self-start;
}

#h1_cms_contact_partners .h1_cms_contact_portrait
{
    background-image: url("../background/h1_cms_contact_portrait_ng.png");
}
#h1_cms_contact_employees .h1_cms_contact_portrait
{
    background-image: url("../background/h1_cms_contact_portrait_kb.png");

}
#h1_cms_contact_partners h5,
#h1_cms_contact_employees h5
{
    margin: 0;
}
#h1_cms_contact_ad
{
    border-radius: var(--h1_radius_1);
    background-color: var(--h1_color_gray_30);
    padding: 40px;
    display: grid;
    grid-template-areas:
        'icon label button'
        'icon title button'
        'icon text button';
    grid-column-gap: 20px;
    grid-template-columns: 64px 3fr 1fr;
    align-items: center;
    font-size: var(--i_font_main_size);
}
#h1_cms_contact_ad #h1_cms_contact_ad_icon
{
    background-image: url("../icon/h1_icon_bell.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    height: 100%;
}


#h1_cms_contact_office_img
{
    background-image: url("../background/h1_cms_contact_office.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 300px;
    border-radius: var(--h1_radius_1);
}

#h1_cms_contact_office_text div.h1_cms_contact_office_text
{
    height: 150px;
    display: grid;
    grid-template-areas:
        'title link'
        'address placeholder';
    grid-template-columns: 2.5fr 1fr;
    grid-template-rows: 40px auto;
    font-size: var(--i_font_main_size);
    align-items: center;
}
#h1_cms_contact_office_text div.h1_cms_contact_office_text a
{
    border-bottom: 2px solid var(--h1_color_orange_30);
    color: var(--h1_color_dark_blue_100);

}
#h1_cms_contact_office_text div.h1_cms_contact_office_text div.h1_cms_contact_office_link_container
{
    background-image: url("../icon/h1_icon_arrow_link.svg");
    background-repeat: no-repeat;
    background-size: 10%;
    background-position: right center;

}
#h1_cms_contact_social h5
{
    display: inline-block;
    vertical-align: bottom;
    margin-right: 30px;
}
#h1_cms_contact_social a
{
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--h1_color_gray_30);
    height: 40px;
    width: 40px;
    border-radius: 24px;
    display: inline-block;
    margin-top: 10px;
    margin-right: 10px;
}
/*############################################ RÓLUNK #############################################*/
#h1_cms_about_hero_bg
{
    background-image: linear-gradient( to right, #F46200, #FFAE79);
    grid-row-start: 2;
    grid-row-end: 3;
}

#h1_cms_about_hero_text
{
    grid-row-start: 2;
    grid-row-end: 3;
    z-index: 0;
    margin-top: 50px;
    margin-bottom: 50px;
    color: var(--h1_color_white_100);

}

#h1_cms_about_hero_img
{
    grid-row-start: 2;
    grid-row-end: 3;
    grid-column-start: c4-3s;
    grid-column-end: c4-4e;
    z-index: 0;
    background-image: url("../background/h1_cms_about_header.svg");
    background-position: right calc(100% + 20px);
    background-size: 60%;
    background-repeat: no-repeat;

}

#h1_cms_about_more_img
{
    background-image: url("../background/h1_cms_about_more_img.jpg");
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: var(--h1_radius_1);
}

#h1_cms_about_expert_img
{
    background-image: url("../background/h1_cms_about_expert_img.png");
    background-position: left center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: var(--h1_radius_1);
    display: grid;
    align-items: center;
    justify-items: center;
    cursor: pointer;
}

#h1_cms_about_expert_img div.h1_icon_video
{
    width: 64px;
    height: 64px;
}
#h1_cms_about_cert
{
    background-color: var(--h1_color_cyan_100);
    border-radius: var(--h1_radius_1);
    padding: 40px;
    display: grid;
    grid-template-areas:
    'label image'
    'title image'
    'text image'
    'button image';
    grid-template-columns: 1fr 1fr;
}

#h1_cms_about_cert #h1_cms_about_cert_img
{
    background-image: url("../background/h1_db_cert_big.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 500px;
    width: 250px;
    height: 250px;
    align-self: center;
    justify-self: center;
}
#h1_cms_about_values
{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
}
#h1_cms_about_values > div
{
    padding: 40px;
    background-color: var(--h1_color_gray_30);
    border-radius: var(--h1_radius_1);
}
#h1_cms_about_values > div > div
{
    height: 60px;
    width: 60px;
}
#h1_cms_about_employees
{
    display: grid;
    grid-gap: 40px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-auto-rows: max-content;
}
#h1_cms_about_employees > div
{
    display: grid;
    grid-template-areas:
        'image'
        'title'
        'role'
        'email'
        'phone'
        'linkedin';
    grid-template-rows: 400px 2fr 2fr 0.75fr 0.75fr 3fr ;
    align-items: center;
}
#h1_cms_about_employees > div > *
{
    margin: 0;
}
#h1_cms_about_employees > div div[data-aid="pic"]
{
    background-size: cover;
    border-radius: var(--h1_radius_1);
    align-self: normal;
    margin-bottom: 20px;
}
#h1_cms_about_employees div a.h1_icon_linkedin_white
{
    background-color: var(--h1_color_orange_100);
    background-repeat: no-repeat;
    background-position: center;
    width: 32px;
    height: 32px;
    border-radius: 32px;

}