:root{

    --Blue:#1B1F3B;
    --DarkBlue:#181C33;
    --White:#EAEAF0;
    --White:#EAEAF0;
    --CTA:#FF5E57;

    --Font:'Poppins', sans-serif;

    --Transition: all 0.3s ease-in-out;

}

html{
    font-size: 62.5%;
}

body{
    background: var(--Blue);
    color:#EAEAF0;
    overflow-x: hidden;
    font-size: 1.6rem;
    font-family: var(--Font);
    
}

.container{
    padding: 0 20px;
}

ul{
    list-style: none;
    padding: 0;
}

a{
    color: #EAEAF0;
    text-decoration: none;
}

main{
    min-height: 100vh;
}

/*** HEADER ***/

.gv-header__wrapper {
    height: 40px;
}

.gv-logo {
    margin: auto;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    width: fit-content;
    display: none;
}

.gv-logo svg{
    width: 6.0rem;
    height: 6.0rem;
}

/*** NAV ***/

/*** HERO ***/

.gv-hero {
    position: relative;
    height: 240px;
    margin-bottom: 120px;
}

.gv-hero__image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gv-hero__image{
    width: 35rem;
    height: 23rem;
    position: absolute;
    right: -2rem;
    top: 0;
    z-index: 0;
}

.gv-hero__image::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: auto;
    height: auto;
    background: rgba(27, 31, 59, 0.5);
}

.gv-hero__content{
    z-index: 1;
    position: relative;
    top: 50%;
}

.gv-hero__subtitle{
    font-size: 1.6rem;
    font-weight: 200;
}

.gv-hero__title{
    font-size:4.2rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    padding: 0;
}

.gv-hero__txt{
    font-size:1.6rem;
    font-weight: 200;
    margin: 0 0 20px 0;
    line-height: 1.8;
}

.gv-hero__btn {
    font-size: 1.6rem;
    font-weight: 200;
    background: var(--CTA);
    color: var(--White);
    border: none;
    border-radius: 100px;
    padding: 11px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}


/*** ABOUT ***/

.gv-about {
    padding: 80px 0 0 0;
}

.gv-about__slider{
    padding: 0 0 80px 0;
}

.gv-about h2{
    font-size: 3.2rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    padding:0;
}

.gv-about p{
    font-size: 1.6rem;
    font-weight: 200;
    margin: 0 0 30px 0;
    line-height:1.8;
}

.gv-about__btn{
    font-size: 1.6rem;
    font-weight: 200;
    background: none;
    color: var(--White);
    border: solid 1px var(--White);
    border-radius: 100px;
    padding: 11px 20px;
    margin:0 0 30px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
}

.gv-about-slider__wrapper{
    overflow: hidden;
    position: relative;
    width: auto;
}

.gv-about-slider__viewport{
    width: 100%;
}

.gv-about-slider__container{
    display: flex;
    gap:2rem;
    padding-left:2rem;
}

.gv-about-slider__slide{
    flex: 0 0 80%;
    min-width: 0;
}

.gv-about-slider__slide img{
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

@media (min-width:768px){

    .gv-about-slider__wrapper {
        overflow: visible;
        margin:0;
        width: 100%;
    }

    .gv-about-slider__slide{
        flex: 0 0 auto;
        min-width: 0;
        width: calc(100% / 5);
    }

    
}

/*** VAARDIGHEDEN ***/

.gv-skills__bg{
    padding:80px 0;
    background: var(--DarkBlue);
}

.gv-skills h2{
    font-size: 3.2rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    padding:0;
}

.gv-skills p{
    font-size: 1.6rem;
    font-weight: 200;
    margin: 0 0 40px 0;
    line-height:1.8;
}

.gv-skills__ratings {
    display: grid;
    gap: 20px;
}

.gv-skills__item {
    display: grid;
    grid-template-columns: 50% 50%;
}

.gv-skills__item-title{
    font-size: 2.4rem;
}

.gv-skills__rating {
    display: flex;
    gap: 5px;
}

.gv-skills__dot-outline {
    width: 2.5rem;
    height: 2.5rem;
    background: #2E2F45;
    border-radius: 100px;
    font-size: 0;
}

.gv-skills__dot-filled {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--CTA);
    border-radius: 100px;
    font-size: 0;
}


/*** VAARDIGHEDEN ***/

footer{
    padding: 10px 20px;
    font-size: 1.2rem;
    text-align: center;
}
