@import "variables.css?v=2";
@import "parts.css?v=6";
@import "header.css?v=5";
@import "footer.css?v=3";
@import "caseStudy.css?v=3";

* {
    box-sizing: border-box;
    font-family: var(--primary-font);
}

body {
    margin: 0;
    padding: 0;
    top: 0;
    height: 100%;
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 16px;
    background-color: white;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

/*----------------------------*/

.box {
    width: 100%;
}

.box-content {
    width: 95%;
    max-width: 1250px;
    margin: 0 auto;
}

/*------------------------------------------*/

a, a:hover, a:visited {
    color: var(--text);
    text-decoration: none;
    transition: 0.3s;
}

/*----------------------------------------*/

/*--------------------------------------*/

#cookies {
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 700px;
    border-radius: 10px;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    background-color: rgb(220,220,220);
    font-size: 14px;
    gap: 20px;
    z-index: 10000;
}

#cookies h3 {
    font-size: 20px;
    margin-top: 0;
    font-weight: bold;
    margin-bottom: 15px;
}

#cookies p {
    margin: 0;
    line-height: 1.3;
}

#cookies a, #cookies a:visited, #cookies a:hover {
    color: black;
}

#cookies a, #cookies a:visited {
    text-decoration: underline;
}

#cookies a:hover {
    text-decoration: none;
}

#cookies div:last-of-type {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

#cookies button {
    padding: 7px 17px;
    min-height: 37px;
    width: 100%;
    font-size: 14px;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid black;
    cursor: pointer;
}

#cookies button:first-of-type {
    color: white;
    background-color: black;
}

#cookies button:last-of-type {
    background-color: white !important;
}

@media screen and (max-width: 600px) {
    #cookies {
        flex-direction: column;
    }
}
