:root {
    --primary-color: #519da1;
    --primary-color-light: color-mix(in srgb, var(--primary-color) 70%, white);
    --primary-color-dark: color-mix(in srgb, var(--primary-color) 70%, black);
    --background-color: #FAFAFA;
    --text-color: #5f5f5f;
    --title-color: #3d3d3d;
    --cta-background : #1b1b1b;
    --cta-background-hover : var(--primary-color);
}

* {
  box-sizing: border-box;
  /* outline: 1px solid red; */
}


/* ====== GENERAL STYLE ====== */
/* html {
    scroll-behavior: smooth;
} */

::selection {
  background-color: var(--primary-color);
  color: white;      
}


body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Urbanist Thin', sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-size: 18px;
	line-height: 1.5;
    letter-spacing: 1.2px;
    color: var(--text-color);
    background-color:var(--background-color);
}

h1, 
h2, 
h3{
    font-family: 'Urbanist Thin', sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
	color:var(--title-color);
	line-height: 1.2;
}

h1{
    font-weight: 900;
}

@media (orientation: portrait) or (max-width:900px) {
    h1{    
        font-size:17vw;
    }

}

@media (orientation: landscape) and (min-width:900px) {
    h1{    
        font-size:12vw;
    }

}


@media (orientation: portrait) or (max-width:900px) {
    h2{    
        font-size:7vw;
    }

}

@media (orientation: landscape) and (min-width:900px) {
    h2{    
        font-size:3vw;
    }

}


h3{
    font-size:1.5vw;
}


/* ====== SECTIONS ====== */
.section {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    opacity: 1;
    transition: opacity 1s ease-in-out;
    margin: 0;
}

.content {
    width: 70%;
    margin: 150px 0px 0px 0px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.content h2
{
    margin: 0;
}


.noscroll {
  overflow: hidden;
}

.cta-button{
    background-color: var(--cta-background);
    border: 1px solid var(--cta-background);
    border-radius: 60px;
    font-size: 20px;
}

.cta-button:not(:hover) span{
    color: white;
}

.cta-button.fill-button::before{
    background-color: var(--cta-background-hover)
}

.cta-button span{
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 15px;
    padding-bottom: 15px;
    color: white;
}


.cookie-banner{
    display: flex;
    flex-direction: row;
    align-items: center;
    position: fixed;
    bottom:20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    background-color: white;
    width: 400px;
    border-radius: 60px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 15px;
    gap:10px;
    border: 1px solid var(--primary-color);
    color:black;
}

.cookie-banner.disabled{
    transform: scale(0);
}

.cookie-banner .cta-button.fill-button.magnet span{
    padding-left: 15px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    font-size: 15px;
}