@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --grey: #414042;
    --white: #fff;
    --offwhite: #f1f1f1;
    --lightgrey: #888286;
    --dot: #ddd;
    --dotactive: #717171;
    --headergrey: #58595b;
    --headergreen: #d6df22;
}

html, body {
    font-family: 'Raleway', sans-serif;
    font-size: 18px;
    color: var(--grey);
}

html {
    background-color: var(--offwhite);
    overflow-x: hidden;

    scroll-behavior: smooth;
}

a {
    color: var(--lightgrey)
}

button {
    padding: 10px;
    background-color: var(--grey);
    color: var(--offwhite);

    font-size: 18px;

    border: none;
    border-radius: 5px;
}

button:hover {
    background-color: #888286;

    transition: .5s ease;
}

button:active {
    background-color: var(--offwhite);
    color: var(--grey);

    border-inline: 2px var(--grey) solid;

    transition: .1s ease;
}

/* BASIC SETUP END */

/* NAV SETUP START */

.header-button {
    text-decoration: none;
    color: var(--headergreen);
    padding: 10px;
    border-radius: 5px;

    padding-top: 180px;

    user-select: none;
}

.header-button:hover {
    color: var(--lightgrey);

    transition: .2s ease;
}

.contact-button {
    text-decoration: none;
    color: var(--headergreen);
    padding: 10px;

    float: right;
    margin-top: 18%;
    margin-right: 2%;

    user-select: none;
}

.contact-button:hover {
    color: var(--lightgrey);

    transition: .2s ease;
}

/* NAV SETUP END */

/* IMAGE HANDLING START */

.landing-logo {
    max-height: 50px;
    border-radius: 50px;
}

.sumine-marx {
    max-width: 50vw;
    border-radius: 25px;
}

.header-img {
    max-width: 200px;
}

/* IMAGE HANDLING END */

/* PORTFOLIO SCROLLER HANDLING START */

.slideshow-container {
    max-width: 80vw;
    position: relative;

    margin: 0 auto;
}

.mySlides {
    display: none;
}

.image-handling {
    display: block;
    width: 100%;
    height: auto;

    padding-bottom: 45px;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: var(--grey);
    font-weight: bold;
    font-size: 30px;
    transition: .6s ease;
    border-radius: 0 3px 3px 0;

    user-select: none;
}

.next {
    right: -50px;
    border-radius: 5px;
}

.prev {
    left: -50px;
    border-radius: 5px;
}

.prev:hover,
.next:hover {
    color: var(--offwhite);
    background-color: var(--grey);
}

.text {
    color: var(--offwhite);
    font-size: 18px;
    padding-top: 12px;
    padding-bottom: 12px;
    position: absolute;
    top: -12px;
    width: 100%;
    text-align: center;
    background-color: var(--headergrey);
}

.numbertext {
    color: var(--offwhite);
    font-size: 18px;
    padding: 8px 12px;
    position: absolute;
    bottom: 0;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: var(--dot);
    border-radius: 50%;
    display: inline-block;
    transition: background-color .6s ease;

    user-select: none;
}

.active,
.dot:hover {
    background-color: var(--dotactive);
}

/* PORTFOLIO SCROLLER HANDLING END */

/* SECTION HANDLING START */
.header {
    background-image: url("../img/header.jpg");
    background-repeat: no-repeat;
    background-size: 100vw;
    max-width: 1920px;
    height: 409px;
    margin: 0 auto;
}

.section-landing {
    max-width: 90vw;
    margin: 0 auto;

    text-align: left;
}

.first-section {
    padding-top: 30px;
}

.headers {
    width: 100%;
    text-align: center;
    color: var(--offwhite);

    background-image: linear-gradient( var(--headergrey) 40px, var(--headergreen) 10px);
    padding-top: 10px;
    padding-bottom: 15px;
}

.section {
    max-width: 70vw;
    margin: 0 auto;

    text-align: left;
}

.text-block {
    margin: 0 auto;
    max-width: 60vw;
}

.footer {
    background-color: var(--grey);
    color: var(--offwhite);
}

.section-footer {
    padding-block: 5px;
    padding-inline: 10px;

    font-size: 10px;
    text-align: center;
}

.move-down {
    padding-top: 50px;
}

/* SECTION HANDLING END */

/* GRID HANDLING START */

.grid-header {
    display: grid;
    grid-template-columns: 430px 50vw 1fr;
    max-width: 100vw;
    gap: 30px;

    background-image: url("../img/header_blank.jpg");
    background-repeat: no-repeat;
    background-size: cover;
}

.box-header {
    grid-column: span 1;

    color: var(--offwhite);
    padding: 10px;
}

.mobile-only {
    display: none;
}

/* GRID HANDLING END */

/* MEDIA QUERY HANDLING START */

@media screen and (min-width: 1920px) {
    .slideshow-container {
        max-width: 45vw;
    }

    .first-section {
        padding-top: 30px;
    }
}

@media screen and (max-width: 1250px) {
    .box-header {
        grid-column: span 3;
    }

    .header-img {
        max-width: 180px;
    }
}

@media screen and (max-width: 800px) {
    .mobile-only {
        display: block;
    }

    .contact-button {
        margin-top: 15%;
    }

    .header-img {
        max-width: 120px;
    }

    .text {
        top: -55px;
    }
}

/* MEDIA QUERY HANDLING END */