html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

body {
    line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

nav ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* change colours to suit your needs */
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

/* change colours to suit your needs */
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}

/* - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
   - - - - - - - - - - - - - MIJN ZOOI BEGINT HIER - - - - - - - - - - - - - -
   - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */

:root {
    --text: #0f0f0f;
    /*
    --background: #fbfbfb;
    --background2: #f5f5f5;
    --background3: #13213d;
    --gray: #e3e3e3;
    --primary: #d12539;
    --accent: #96094A;
    --white_but_not: #f6f4f4;
    */
    --background: #171824;
    --background2: #232439; 
    /*--background3: #13213d;*/
    --gray: #e3e3e3;
    --primary: #C72336;
    --accent: #930B4D;
    --white_but_not: #f6f4f4;
}

@font-face {
    font-family: Gilroy;
    font-weight: 300;
    src: url('resources/Gilroy-Regular.ttf');
}

@font-face {
    font-family: Gilroy;
    font-weight: 600;
    src: url('resources/Gilroy-Bold.ttf');
}

@font-face {
    font-family: Gilroy;
    font-weight: 200;
    src: url('resources/Gilroy-UltraLight.ttf');
}

* {
    box-sizing: border-box
}

body {
    font-family: 'Open Sans', sans-serif;

    transition: background-color 0.2s;

}

.wrapper {
    margin: 0px auto;
    padding: 0px 10px;
    width: 1250px;
}

.header {
    background: linear-gradient(0deg, var(--primary) 0%, var(--accent) 100%);
    padding: 30px;
    text-align: center;
    height: 100vh;
}

#logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    /* padding-top: 28vh; */
    padding-top: -webkit-calc(50vh - 180px);
    padding-top: -moz-calc(50vh - 180px);
    padding-top: calc(50vh - 180px);
    /*animation-name: fadein;
    animation-duration: 4s; */
}

h1.name {
    font-family: 'Gilroy', sans-serif;
    color: white;
    padding: 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 39px;
    font-weight: 200;
    opacity: 0;
    animation-name: fadein;
    animation-duration: 2s;
    animation-delay: 1.8s;
    animation-fill-mode: forwards;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.navlogo {
    float: left;
    height: 0;
    padding: 0;
    margin: 0;
    border: 0;
}

#logoklein {
    transform: translate(-3px, -5px);
    display: block;
    padding: 0;
    margin: 0;
    border: 0;
    cursor: pointer;
    transition: fill 0.2s;
}

.logorood {
    fill: var(--primary);
}

.logowit {
    fill: white;
}

.stickylogo {
    fill: white;
}

.fotoik {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 280px;
    height: 280px;
    margin-top: 35px;
    border-radius: 50%;
}

#navbar {
    width: 100%;
    overflow: hidden;
    z-index: 10;
    transition: background-color 0.2s;

}

.nonsticky {
    background-color: var(--primary);

}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    /*background-color: #c7bebe9b; */
    background-color: #00000054;
    /*background-color: #ffa193b1; */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.sticky+.content {
    margin-top: 55px;
}

.nonstickymenu {
    color: white;
    font-weight: 300;
}

.stickymenu {
    color: var(--text);
    color: white;
    font-weight: 300;
}

/*
.nonstickylogo {
    fill: white;
}

.stickylogo {
    fill: var(--primary);
}
*/

/* Navigation links */
#navbar a {
    font-family: 'Gilroy', sans-serif;
    float: left;
    padding: 20px;
    /* color: white; */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 18px;
    margin: 0px 12px;
    width: -webkit-calc(25% - 24px);
    width: -moz-calc(25% - 24px);
    width: calc(25% - 24px);
    text-align: center;
    /* If you want the text to be centered */
    transition: background-color 0.2s;
}

/* Add a background color on mouse-over */

#menu1,
#menu2,
#menu3,
#menu4 {
    padding-left: 20px;
}

#menu1.active,
#menu2.active,
#menu3.active,
#menu4.active {
    background-color: var(--primary);
    color: white;
    font-weight: 300;
    /* border-radius: 0 0 15px 15px; */
}

#menu1:hover,
#menu2:hover,
#menu3:hover,
#menu4:hover {
    background-color: var(--accent);
    color: white;
    font-weight: 600;
    /* border-radius: 0 0 15px 15px; */
}

.padding {
    padding-top: 80px;
    padding-bottom: 80px;
    overflow: auto;
}

.left {
    width: 50%;
    padding: 0 12px;
    float: left;
}

.right {
    width: 50%;
    padding: 0 12px;
    float: right;
}

.center {
    width: 50%;
    margin: auto;
    padding: 0 12px;
}

.centerwide {
    width: 100%;
    margin: auto;
    padding: 0 12px;
}

.white {
    color: white;
    /*font-weight: 300;*/
}

.black {
    /*color: black;*/
    color: var(--text);
    /*font-weight: 400;*/
}

.textbox {
    background-color: var(--background2);
    /* background-color: #f0f0f0; */
    /* background: linear-gradient(180deg, #ffa19350 0%, #d44f8d50 100%); */
    padding: 40px;
    border-radius: 10px;
    /*color: var(--text);*/
    color: white;
}

.textbox.grad1 {
    background: linear-gradient(180deg, #ffa19325 0%, #d44f8d25 100%);

}

.textbox.grad2 {
    background: linear-gradient(0deg, #ffa19325 0%, #d44f8d25 100%);
}

.newline {
    clear: both;
}

.card {
    background-color: var(--white_but_not);
    border-radius: 10px;
    margin-top: 20px;
    transition: transform background-color box-shadow;
    transition-duration: 0.2s;
    overflow: hidden;
}

.cardimg {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: transform 0.2s;
}

.card:hover {
    transform: translate(0px, -10px);
    background-color: white;
    box-shadow: 0px 10px 12px #33333355;
    /* #fff9f932 */
}

.card:hover .cardimg {
    transform: scale(1.05);
}

.cardicon {
    width: 50px;
    float: right;
    transform: translate(0px, -4px);
    margin-left: 10px;
}

.cardcolumn {
    width: 50%;
    padding: 0 12px;
    float: left;
    /*display: none;*/
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.5s, max-height 0.3s;
}

.cardtextbox {
    padding: 20px;
}

.card h3 {
    float: left;
    margin-bottom: 20px;
}

.show {
    display: block;
    max-height: 500px;
    opacity: 1;
}

a.noline {
    color: var(--text);
    text-decoration: none;
}

.btn {
    border: none;
    outline: none;
    padding: 12px 16px;
    margin-right: 5px;
    margin-bottom: 10px;
    background-color: var(--gray);
    color: var(--text);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: background-color, transform, color, box-shadow;
    transition-duration: 0.2s;
}

.btn:hover:not(.active) {
    background-color: white;
    transform: translate(0px, -4px);
    box-shadow: 0px 4px 10px #33333355;

}

.btn.active {
    background-color: var(--accent);
    color: white;

}

.downloadbtn {
    border: none;
    outline: none;
    padding: 12px 18px 8px;
    margin-right: 5px;
    margin-bottom: 10px;
    background-color: var(--primary);
    color: white;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: background-color, transform, color, box-shadow;
    transition-duration: 0.2s;
    overflow: hidden;
}

.downloadbtn:hover {
    transform: translate(0px, -4px);
    background-color: var(--accent);
    box-shadow: 0px 2px 6px #00000080;
}

.downloadicon {
    transform: translate(-2px, -2px);
    stroke: var(--background);
    float: left;
    margin-right: 8px;

}

.backbtn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    left: 40px;
    background-color: var(--primary);
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0px 2px 4px #00000080;
    transition: transform box-shadow background-color;
    transition-duration: 0.2s;
}

.backbtn:hover {
    transform: translate(0px, -4px);
    background-color: var(--accent);
    box-shadow: 0px 6px 8px #00000080;
    color: #FFF;
}

.backicon {
    transform: translate(0px, 5px);
    stroke: white;
    stroke-width: 6px;
}

.backbtn:hover .backicon {
    /*stroke: var(--primary);*/
    stroke: white;
    stroke-width: 9px;
}

.ytvideo {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
}

.projectimg {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s;
}

.projectimg:hover {
    transform: scale(1.01);
}

/* style for svg icons in buttons, don't change name */
.st0 {
    fill: none;
    stroke: #fff;
    stroke-width: 6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* button {
    background-color: #1F0F38;
    border: none;
    outline: none;
    padding: 20px;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 300;
    width: 50%;
    text-align: center;
    margin-left: 25%;
    cursor: pointer;
} */

h2 {
    font-family: 'Gilroy', sans-serif;
    font-size: 32px;
    font-weight: 600;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

h3 {
    font-family: 'Gilroy', sans-serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.4;
    /*text-transform: uppercase;*/
    letter-spacing: 2px;
}

h4 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-align: justify;
    letter-spacing: 2px;
    text-transform: uppercase;
}

p {
    font-size: 16px;
    line-height: 1.5;
    text-align: justify;
}

p a {
    color: #f35771;
    text-decoration: none;
}

p a:hover {
    text-decoration: underline;
}

.infotext {
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    width: 50%;
    margin-bottom: 6px;
    margin-top: 6px;
}

.infotext.info1 {
    font-weight: 600;
    font-size: 16px;
    float: left;
    clear: both;
}

.infotext.info2 {
    font-weight: 300;
    font-size: 16px;
    float: right;
}

.contacttext {
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    padding-left: 30px;
    float: left;
}

.projectpadding {
    padding-top: 10px;
}

.projectbg {
    background-color: var(--background);
    /*color: var(--text);*/
    color: white;
}

.textpadding {
    padding-top: 20px;

}

.footer {
    padding-top: 30px;
    border-top: 1px solid white;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    font-weight: 300;
    font-size: 16px;
    width: 100%;
    position: absolute;
    bottom: 60px;
}

.ca {
    background-color: #e87b33;
    color: var(--text);
    font-weight: 400;
    padding: 0px 4px;
    border-radius: 4px;
}

.tr {
    background-color: #ebd80b;
    color: var(--text);
    padding: 0px 4px;
    font-weight: 400;
    padding: 0px 4px;
    border-radius: 4px;
}

.us {
    background-color: #21d84f;
    color: var(--text);
    font-weight: 400;
    padding: 0px 4px;
    border-radius: 4px;
}

.be {
    background-color: #26adde;
    color: var(--text);
    font-weight: 400;
    padding: 0px 4px;
    border-radius: 4px;
}

.mdc {
    background-color: #ad53f6;
    color: var(--text);
    font-weight: 400;
    padding: 0px 4px;
    border-radius: 4px;
}

.drp {
    background-color: var(--gray);
    color: var(--text);
    font-weight: 400;
    padding: 0px 4px;
    border-radius: 4px;
}

#about {
    background-color: var(--primary);
    padding-bottom: 150px;
    /*padding-top: 100px */
}

#vision {
    background-color: var(--background);
}

#identity {
    background-color: var(--background2);
}

#projects {
    background: linear-gradient(180deg, var(--primary) 10%, var(--accent) 100%);
}

#development {
    background-color: var(--background);
}

#contact {
    background-color: var(--background);

}

a[href^="tel"] {
    color: inherit;
    /* Inherit text color of parent element. */
}

@media screen and (max-width: 1420px) {
    .wrapper {
        width: 1100px;
    }
}

@media screen and (max-width: 1270px) {
    #logoklein {
        display: none;
    }
}

@media screen and (max-width: 1100px) {
    .wrapper {
        width: auto;
    }
}

@media screen and (max-width: 800px) {
    #navbar a {
        float: none;
        display: block;
        width: 100%;
        text-align: center;
        /* If you want the text to be left-aligned on small screens */
        padding: 8px;
        margin: 0px;
    }

    .sticky+.content {
        margin-top: 110px;
    }

    .wrapper {
        width: 100%;
        padding-left: 0px;
        padding-right: 0px;
    }

    .textbox {
        padding: 20px;
    }

    #logo {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 200px;
        /*padding-top: 200px;*/
    }


    h1.name {
        padding: 25px;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 5px;
        font-size: 24px;
        font-weight: 300;
        color: white;
    }

    .left {
        width: 100%;
        padding: 10px 24px;
    }

    .right {
        width: 100%;
        padding: 10px 24px;
    }

    .center {
        width: 100%;
        padding: 10px 24px;
    }

    .centerwide {
        width: 100%;
        padding: 10px 24px;
    }

    .cardcolumn {
        width: 100%;
        padding: 0 24px;
    }

    .projectpadding {
        padding-top: 100px;
    }
}