/* HTML */

*,
*:after,
*:before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Rubik', sans-serif;
    font-weight: 300;
    color: #231F20;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-weight: 700;
}

h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
}



/* Layout */

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 70rem;
}



/* Header */

.header {
    z-index: 3;
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    box-shadow: 0 0 1rem -0.25rem rgba(0, 0, 0, 0.25);
    background-color: #FFF;
}

.header__logo {
    display: block;
    width: 100%;
    max-width: 14rem;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 2rem;
    color: #231F20;
}

.header__logo img {
    display: block;
    width: 100%;
    height: auto;
}

@media (min-width: 576px) {
    .header__logo {
        max-width: 20rem;
    }
}

@media (min-width: 768px) {
    .header {
        padding: 2rem;
    }
}

@media (min-width: 1200px) {
    .header {
        padding: 1rem 2rem;
    }

    .header__logo {
        max-width: 25rem;
    }
}



/* Navigation */

.nav {
    z-index: 4;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    width: 100%;
    height: 100%;
    background-color: #231F20;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.5s ease-in-out;
    user-select: none;
}

.nav.active {
    transform: translateY(0%);
}

.nav .toggle {
    position: fixed;
    top: 1rem;
    right: 1rem;
}

.nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav ul li {
    margin-top: 1rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 1.25rem;
}

.nav ul li:first-child {
    margin-top: 0;
}

.nav ul li span {
    display: block;
    padding: 1rem 0;
    color: #777;
    cursor: pointer;
}

.nav ul li a {
    display: block;
    text-decoration: none;
    color: #FFF;
}

.nav ul li ul {
    margin-bottom: 2rem;
    padding: 1rem 0;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
}

.nav ul li ul li {
    font-size: 1rem;
}

@media (min-width: 576px) {
    .nav ul li {
        margin-top: 0.5rem;
        font-size: 0.875rem;
    }

    .nav ul li span {
        padding: 0.5rem 0;
    }

    .nav ul li ul {
        margin-bottom: 1rem;
        padding: 0.5rem 0;
    }

    .nav ul li ul li {
        font-size: 0.875rem;
    }
}

@media (min-width: 768px) {
    .nav {
        padding: 2rem;
    }

    .nav .toggle {
        top: 2rem;
        right: 2rem;
    }

    .nav ul li {
        margin-top: 1rem;
        font-size: 1.5rem;
    }

    .nav ul li span {
        padding: 1rem 0;
    }

    .nav ul li ul {
        margin-bottom: 2rem;
        padding: 1rem 0;
    }

    .nav ul li ul li {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .nav {
        position: relative;
        flex-direction: row;
        justify-content: flex-end;
        padding: 0;
        width: auto;
        height: auto;
        background-color: transparent;
        transform: none;
        transition: none;
        overflow-y: unset;
    }

    .nav ul li {
        position: relative;
        margin-top: 0;
        text-align: left;
        font-weight: 500;
        font-size: 1rem;
    }

    .nav ul li span {
        padding: 0;
        color: #231F20;
    }
    
    .nav ul li a {
        color: #231F20;
    }

    .nav ul li ul {
        position: absolute;
        left: -1rem;
        top: 100%;
        display: none;
        margin: 0;
        padding: 0.5rem 0 0 0;
        border: none;
        border-radius: 0.5rem;
        transition: opacity 0.5s ease-in-out;
    }

    .nav ul li ul:before {
        content: '';
        display: block;
        margin-left: 1rem;
        padding-top: 0.5rem;
        width: 1rem;
        height: 0.5rem;
        clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
        background-color: #231F20;
    }

    .nav ul li:hover ul {
        display: block;
    }

    .nav ul li ul li {
        padding: 0.5rem 1rem;
        text-transform: none;
        font-weight: 400;
        white-space: nowrap;
        background-color: #231F20;
    }

    .nav ul li ul li:first-child {
        padding: 1rem 1rem 0.5rem 1rem;
        border-radius: 0.5rem 0.5rem 0 0;
    }

    .nav ul li ul li:last-child {
        padding: 0.5rem 1rem 1rem 1rem;
        border-radius: 0 0 0.5rem 0.5rem;
    }

    .nav ul li ul li a {
        color: #FFF;
    }

    .nav ul li ul li:nth-of-type(1) a:hover {
        color: #FFEF03;
    }

    .nav ul li ul li:nth-of-type(2) a:hover {
        color: #EC008C;
    }

    .nav ul li ul li:nth-of-type(3) a:hover {
        color: #079AE1;
    }

    .nav > ul {
        display: flex;
        flex-direction: row;
    }

    .nav > ul > li {
        margin-left: 2rem;
    }

    .nav > ul > li:first-child {
        margin-left: 0;
    }

    .nav > ul > li > * {
        border-bottom-width: 2px;
        border-bottom-style: solid;
        border-bottom-color: transparent;
    }
    
    .nav > ul > li:nth-of-type(1):hover > *,
    .nav > ul > li:nth-of-type(4):hover > *,
    .nav > ul > li:nth-of-type(7):hover > * {
        border-bottom-color: #FFEF03;
    }

    .nav > ul > li:nth-of-type(2):hover > *,
    .nav > ul > li:nth-of-type(5):hover > *,
    .nav > ul > li:nth-of-type(8):hover > * {
        border-bottom-color: #EC008C;
    }

    .nav > ul > li:nth-of-type(3):hover > *,
    .nav > ul > li:nth-of-type(6):hover > *,
    .nav > ul > li:nth-of-type(9):hover > * {
        border-bottom-color: #079AE1;
    }

}



/* Toggle (Navigation) */

.toggle {
    text-decoration: none;
}

.toggle span {
    display: none;
}

.toggle--header svg path {
    fill: #231F20;
}

.toggle--nav svg path {
    fill: #FFF;
}

@media (min-width: 576px) {
    .toggle {
        display: flex;
        align-items: center;
    }

    .toggle--header span {
        display: block;
        margin-right: 0.5rem;
        font-weight: 500;
        font-size: 1rem;
        color: #231F20;
    }
}

@media (min-width: 1200px) {
    .toggle {
        display: none;
    }
}



/* Picture */

.image {
    width: 100%;
    height: 40vh;
}

.image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 576px) {
    .image {
        height: 50vh;
    }
}

@media (min-width: 768px) {
    .image {
        height: 30vh;
    }
}

@media (min-width: 992px) {
    .image {
        height: 40vh;
    }
}

@media (min-width: 1200px) {
    .image {
        height: 45vh;
    }
}



/* Main */

.main {
    padding: 0 1rem 2rem 1rem;
    line-height: 1.6;
    font-size: 1rem;
}

.main h1,
.main .h1 {
    display: inline-block;
    margin-top: -4rem;
    margin-bottom: 2rem;
    margin-left: -1rem;
    padding: 1rem;
    line-height: 1;
    font-weight: 500;
    font-size: 1.75rem;
    color: #FFF;
    background-color: #231F20;
}

.main h1::first-letter,
.main .h1::first-letter {
    border-bottom: 0.25rem solid #FFF;
}

.main .h1--yellow,
.main .h1--magenta {
    color: #231F20;
}

.main .h1--yellow {
    background-color: #FFEF03;
}

.main .h1--magenta {
    background-color: #EC008C;
}

.main .h1--cyan {
    background-color: #079AE1;
}

.main .h1--yellow::first-letter,
.main .h1--magenta::first-letter {
    border-bottom: 0.25rem solid #231F20;
}

.main h2 {
    font-weight: 500;
}

.main h3 {
    font-weight: 400;
    color: #777;
}

.main p strong,
.main li strong,
.main dt {
    font-weight: 400;
}

.main a {
    color: #231F20;
}

.main a:hover {
    color: #EC008C;
}

.main > .container > *:last-child {
    margin-bottom: 0;
}

@media (min-width: 576px) {
    .main h1,
    .main .h1 {
        font-size: 2rem;
    } 
}

@media (min-width: 768px) {
    .main {
        padding: 0 2rem 4rem 2rem;
        font-size: 1.125rem;
    }

    .main h1,
    .main .h1 {
        margin-top: -8rem;
        margin-bottom: 4rem;
        margin-left: -2rem;
        padding: 2rem;
        font-size: 3rem;
    }
}



/* Footer */

.footer {
    padding: 2rem 1rem;
    line-height: 1.4;
    font-size: 0.875rem;
    color: #FFF;
    background-color: #231F20;
}

.footer__corporation *[itemprop="name"] {
    margin: 0;
    font-weight: 500;
    font-size: 1.125rem;
}

.footer__corporation *[itemprop="description"] {
    margin-top: 0.5rem;
    margin-bottom: 0;
    font-weight: 500;
    color: #FFEF03;
}

.footer__corporation *[itemprop="address"] {
    margin-top: 1rem;
}

.footer__corporation *[itemprop="address"] h3 {
	margin: 0;
	font-weight: 400;
}

.footer__corporation a {
    text-decoration: none;
    color: #FFF;
    transition: color 0.25s ease-in-out;
}

.footer__corporation a:hover {
    color: #EC008C;
}

.footer__corporation abbr {
    text-decoration: none;
    border-bottom: none;
    cursor: inherit;
}

.footer__corporation ul {
    margin: 1rem 0 0 0;
    padding: 0;
    list-style: none;
}

.footer__corporation ul li {
    margin-top: 0.5rem;
}

.footer__corporation ul li:first-child {
    margin-top: 0;
}

.footer__corporation ul li a {
    text-decoration: none;
}

.footer__legal ul {
    margin: 1rem 0 0 0;
    padding: 0;
    list-style: none;
}

.footer__legal ul li {
    margin-top: 0.5rem;
    font-weight: 500;
}

.footer__legal ul li:first-child {
    margin-top: 0;
}

.footer__legal ul li a {
    text-decoration: none;
    color: #FFF;
    transition: color 0.25s ease-in-out;
}

.footer__legal ul li:nth-of-type(1) a:hover {
    color: #FFEF03;
}

.footer__legal ul li:nth-of-type(2) a:hover {
    color: #EC008C;
}

.footer__legal ul li:nth-of-type(3) a:hover {
    color: #079AE1;
}

.footer__copyright,
.footer__credits {
    margin-bottom: 0;
    font-size: 0.75rem;
}

.footer__copyright {
    margin-top: 1rem;
}

.footer__credits {
    margin-top: 0.5rem;
}

.footer__credits a {
    text-decoration: none;
    font-weight: 500;
    color: #079AE1;
}

@media (min-width: 576px) {
    .footer__columns {
        display: flex;
        align-items: flex-end;
    }
	
	.footer__corporation *[itemprop="address"] {
		margin-right: 1rem;
	}

    .footer__corporation ul {
        margin: 0;
    }

    .footer__corporation ul li {
        margin-top: 0;
    }

    .footer__legal {
        margin-left: 2rem;
    }

    .footer__legal ul {
        margin: 0;
    }

    .footer__legal ul li {
        margin-top: 0;
    }
}

@media (min-width: 768px) {
    .footer {
        padding: 4rem 2rem;
        font-size: 0.875rem;
    }
    
    .footer__corporation *[itemprop="name"] {
        font-size: 1.25rem;
    }

    .footer__legal {
        margin-left: auto;
    }

    .footer__copyright,
    .footer__credits {
        font-size: 0.875rem;
    }

    .footer__copyright {
        margin-top: 2rem;
    }
}

@media (min-width: 1200px) {
	.footer {
        font-size: 1.125rem;
    }
	
    .footer__corporation *[itemprop="name"] {
        font-size: 1.5rem;
    }
	
	.footer__corporation *[itemprop="address"] {
		margin-right: 2rem;
	}
}



/* Claim */

.claim {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    text-transform: uppercase;
    line-height: 1;
    font-size: 1.25rem;
    font-weight: 300;
    color: #EC008C;
}

.claim p {
    display: block;
    margin: 0;
}

.claim::before,
.claim::after {
    display: block;
}

.claim::before {
    content: '«';
}

.claim::after {
    content: '»';
    align-self: flex-end;
}

.claim p strong {
    font-weight: 500;
}

@media (min-width: 768px) {
    .claim {
        margin-top: 4rem;
        font-size: 2rem;
    }
}



/* Map */

.map {
    width: 100%;
    height: 60vh;
}

.map iframe {
    width: 100%;
    height: 100%;
}

@media (min-width: 576px) {
    .map {
        width: 100%;
        height: 75vh;
    }
}

@media (min-width: 768px) {
    .map {
        width: 100%;
        height: 50vh;
    }
}

@media (min-width: 1200px) {
    .map {
        width: 100%;
        height: 40vh;
    }
}



/* Forms */

.form-field {
    margin-top: 0.5rem;
}

.form-field label {
    font-weight: 500;
}

.form-field--text label {
    display: block;
    margin-bottom: 0.125rem;
}

.form-field--text input,
.form-field--text textarea {
    display: block;
    padding: 0.5rem;
    width: 100%;
    font-family: 'Rubik', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    border-width: 1px;
    border-style: solid;
    border-color: #DDD;
    transition: border-color 0.25s ease-in-out;
}

.form-field--text input:hover,
.form-field--text textarea:hover {
    border-color: #231F20;
}


.form-field__options .form-field__options-item label {
    font-weight: 300;
}

.form-legal {
    margin-top: 0.5rem;
    line-height: 1.2;
    font-size: 0.75rem;
}

.form-legal p {
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.form-legal p:first-child {
    margin-top: 0;
}

.form-actions {
    margin-top: 0.5rem;
}

.form-actions button[type="submit"] {
    display: block;
    padding: 0.5rem 1rem;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #FFF;
    border: none;
    background-color: #231F20;
    cursor: pointer;
    transition: background-color 0.25s ease-in-out;
}

.form-actions button[type="submit"]:hover {
    background-color: #079AE1;
}

@media (min-width: 576px) {
    .form-field__options {
        display: flex;
    }
    
    .form-field__options .form-field__options-item + .form-field__options-item {
        margin-left: 1rem;
    }

    .form-cols {
        display: flex;
        margin-right: -0.5rem;
        margin-left: -0.5rem;
    }
    
    .form-cols .form-field {
        width: 50%;
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
}

@media (min-width: 768px) {
    .form-field {
        margin-top: 1rem;
    }

    .form-field--text input,
    .form-field--text textarea {
        font-size: 1.125rem;
    }

    .form-legal {
        margin-top: 1rem;
        font-size: 0.875rem;
    }

    .form-cols {
        margin-right: -1rem;
        margin-left: -1rem;
    }
    
    .form-cols .form-field {
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .form-actions {
        margin-top: 1rem;
    }

    .form-actions button[type="submit"] {
        font-size: 1.125rem;
    }
}



/* Home */

.home {
    padding: 1rem;
}

.home--key {
    background-color: #231F20;
}

.home--yellow {
    background-color: #FFEF03;
}

.home--magenta {
    background-color: #EC008C;
}

.home--cyan {
    background-color: #079AE1;
}

.home__layout {
    display: flex;
    flex-direction: column-reverse;
}

.home__layout-content {
    margin-top: 2rem;
}

.home__layout-content h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.home__layout-content p {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.home__layout-content ul {
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.home__layout-content ul li {
    display: block;
    margin-top: 0.25rem;
    width: 100%;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.875rem;
}

.home__layout-content ul li:first-child {
    margin-top: 0;
}

.home__layout-content ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

.home__layout-content ul li a:after {
    position: relative;
    left: 0;
    content: '';
    display: block;
    margin-left: 0.5rem;
    width: 0.675rem;
    height: 0.675rem;
    clip-path: polygon(0 35%, 50% 35%, 50% 0, 100% 50%, 50% 100%, 50% 65%, 0 65%);
    transition: left 0.25s ease-in-out;
}

.home__layout-content ul li a:hover:after {
    left: 0.25rem;
}

.home__layout-animation {
    position: relative;
}

.home__layout-animation:before,
.home__layout-animation:after {
    position: absolute;
    content: '';
    display: block;
    border-width: 0.125rem;
    border-style: solid;
}

.home__layout-animation:before {
    top: 1rem;
    left: 0;
    width: 100%;
    height: calc(100% - 2rem);
    border-right: none;
    border-left: none;
}

.home__layout-animation:after {
    top: 0;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 100%;
    border-top: none;
    border-bottom: none;
}

.home__layout-animation img,
.home__layout-animation video {
    display: block;
    padding: 1rem;
    width: 100%;
    height: auto;
}

.home--key .home__layout-content,
.home--key .home__layout-content a,
.home--cyan .home__layout-content,
.home--cyan .home__layout-content a {
    color: #FFF;
}

.home--key h2::first-letter,
.home--cyan h2::first-letter {
    border-bottom: 0.25rem solid #FFF;
}

.home--key .home__layout-content ul li a:after,
.home--cyan .home__layout-content ul li a:after {
    background-color: #FFF;
} 

.home--yellow .home__layout-content,
.home--yellow .home__layout-content a,
.home--magenta .home__layout-content,
.home--magenta .home__layout-content a {
    color: #231F20;
}

.home--yellow h2::first-letter,
.home--magenta h2::first-letter {
    border-bottom: 0.25rem solid #231F20;
}

.home--yellow .home__layout-content ul li a:after,
.home--magenta .home__layout-content ul li a:after {
    background-color: #231F20;
} 

.home--key .home__layout-animation:before,
.home--cyan .home__layout-animation:before,
.home--key .home__layout-animation:after,
.home--cyan .home__layout-animation:after {
    border-color: #FFF;
} 

.home--yellow .home__layout-animation:before,
.home--magenta .home__layout-animation:before,
.home--yellow .home__layout-animation:after,
.home--magenta .home__layout-animation:after {
    border-color: #231F20;
}

@media (min-width: 576px) {
    .home {
        padding: 2rem;
    }

    .home__layout {
        display: flex;
        flex-direction: row;
        align-items: center;
        margin: -1rem;
    }

    .home__layout--reverse {
        flex-direction: row-reverse;
    }

    .home__layout-content,
    .home__layout-animation {
        padding: 1rem;
    }

    .home__layout-content {
        margin-top: 0;
        width: 60%;
    }

    .home__layout-animation {
        width: 40%;
    }

    .home__layout-animation img,
	.home__layout-animation video {
        padding: 0;
    }
}

@media (min-width: 768px) {
    .home__layout-content,
    .home__layout-animation {
        width: 50%;
    }

    .home__layout-content h2 {
        font-size: 2rem;
    }

    .home__layout-content p {
        font-size: 1rem;
    }

    .home__layout-animation:before,
    .home__layout-animation:after {
        border-width: 0.25rem;
    }
}

@media (min-width: 1200px) {
    .home {
        padding: 4rem 0;
    }
	
    .home__layout-content h2 {
        font-size: 2.5rem;
    }

    .home__layout-content ul li {
        font-size: 1rem;
    }
}



/* Color Dots */

.color-dots {
    position: relative;
    width: 5rem;
    height: 5rem;
}

.color-dots > span {
    position: absolute;
    display: block;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    border: 2px solid #FFF;
}

.color-dots > span:nth-of-type(1),
.color-dots > span:nth-of-type(4) {
    top: 0;
    left: 0;
}

.color-dots > span:nth-of-type(2),
.color-dots > span:nth-of-type(5) {
    top: 0;
    left: 40%;
}

.color-dots > span:nth-of-type(3),
.color-dots > span:nth-of-type(6) {
    top: 40%;
    left: 20%;
}

.color-dots > span:nth-of-type(1),
.color-dots > span:nth-of-type(2),
.color-dots > span:nth-of-type(3) {
    z-index: 1;
    background-color: #FFF;
}

.color-dots > span:nth-of-type(4),
.color-dots > span:nth-of-type(5),
.color-dots > span:nth-of-type(6) {
    z-index: 2;
    mix-blend-mode: multiply;
}

.color-dots > span:nth-of-type(4) {
    background-color: #079AE1;
}

.color-dots > span:nth-of-type(5) {
    background-color: #EC008C;
}

.color-dots > span:nth-of-type(6) {
    background-color: #FFEF03;
}



/* Printers Image */

.printers-image {
    display: block;
    margin: 0 auto;
    width: 100%;
    max-width: 50rem;
    height: auto;
}