/* ---------------Fonts---------------- */




@font-face {
    font-family: 'HelveticaNeue';
    src: url('../fonts/HelveticaNeueBold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


/* ---------------- Basic css ------------------ */
*,
*::after,
*::before{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
	/* 1rem = 10px */
	/* font-size: 0.69vw; */
    font-size: 0.40vw;

}

:root {
	scroll-behavior: unset;

	/* color */
	--white-color: #FFF;
	--black-color: #303030;
    --bg-color: #96BFE8;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
	margin: 0;
	padding: 0;
}
    body, html {
      min-height: 100vh;
    }
    .page-wrapper{
        display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
    main {
          flex: 1; /* duwt de footer naar onder als er ruimte is */
    }

ol,
ul {
	list-style: none;
}

a {
	text-decoration: none;
	transition: 300ms;
	color: inherit;
	display: inline-block;
}

li {
	list-style: none;
}

button:focus,
a:focus,
input:focus,
textarea:focus {
	outline: none;
}

/* body */
body {
	background: var(--white-color);
}


/* -------------header section-------------- */

.header_section .container{
    text-align: center;
    padding: 0.2rem 0;
}

.header-logo {
    width: 18.3rem;
}


/* -------------hero section-------------- */

.hero_section{
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 22rem 0 38rem;
    text-align: center;
    margin-bottom: 11rem;
}

.bgSlider {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.bgSlider * > {
    width: 100%;
    height: 100%;
}

.bgSlider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.title_box {
    max-width: 80.8rem;
    margin-left: auto;
    margin-right: auto;
}

.title_box .title,
.title_box .sub_title{
    color: var(--white-color);
    font-weight: 700;
    line-height: 4rem;
    letter-spacing: 0.5px;
    font-family: 'Helvetica';
}

.title_box .title{
    font-size: 7rem;
    margin-bottom: 5rem;
}

.title_box .sub_title{
    font-size: 3rem;
    line-height: 4.5rem;
}

.button_box{
    display: flex;
    align-items: center;
    gap: 6rem;
    position: absolute;
    bottom: -2.9rem;
    left: 50%;
    transform: translateX(-50%);
}

.button_box a{
    color: var(--white-color);
    font-size: 2.6rem;
    font-weight: 600;
    border-radius: 10rem;
    background: var(--bg-color);
    padding: 1.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: max-content;
    position: relative;
}

.button_box a:hover{
    background: var(--black-color);
}

.button_box a img {
    width: 2rem;
}

/* -------------footer section---------------- */
.footer_section{
    padding: 2.1rem;
   
}

.footer_section .container{
    display: flex;
    align-items: center;
}

.copy_right{
    color: var(--black-color);
    font-family: 'Helvetica';
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2.6rem;
}

.footer_list ul{
    display: flex;
    align-items: center;
    gap: 4.4rem;
    margin-left: 5.2rem;
}

.footer_list li {
    color: var(--black-color);
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.6rem;
    position: relative;
}

.footer_list a {
    position: relative;
    display: inline-block;
    color: inherit;
}

.footer_list a::before{
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 0;
    height: 0.2rem;
    background: var(--black-color);
    transition: 300ms;
}

.footer_list a:hover::before{
    width: 100%;
}


/* lang dropdown */

.lang_dropdown {
    position: relative;
}

.lang_dropdown .trigger {
    display: flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
    gap: 0.8rem;
}

.lang_dropdown .trigger img {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    object-fit: cover;
}


.lang_dropdown_list {
    position: absolute;
    left: 0;
    bottom: 100%;
    width: 13rem;
    list-style: none;
    margin: 0;
    padding: 0;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0 0.5rem rgb(0, 0, 0, 0.2);
    padding: 0.5rem 0;
    display: block;
    margin-bottom: 0.5rem;
    transition: 300ms;
    display: none;
}

.lang_dropdown.open .lang_dropdown_list {
    display: block;
}

.lang_dropdown_list .item {
    display: flex;
    align-items: center;
    user-select: none;
    cursor: pointer;
    gap: 0.8rem;
    color: var(--black-color);
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    line-height: 2.6rem;
    padding: 0.3rem 1rem;
}

.lang_dropdown_list .item:hover {
    background: #f0f0f0;
}

.lang_dropdown_list .item img {
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    object-fit: cover;
}

#default {
    line-height: 4rem;
}
#default h2 {
    font-size: 3rem;
    font-weight: 700;
}

#default h3 {
    font-size: 2rem;
    font-weight: 700;
}

#default p {
    font-size: 1.8rem;
}