@charset "UTF-8";

/*
	GLOBAL
* ----------------------------------------------------------------------------
*/

:root {
    --bg-color:             rgba(255,255,255,1);

	--primary-color: 		rgba(142,199,62,1);
    --primary-color-hov:	rgba(142,167,52,1);
	--secondary-color: 		rgba(245,250,229,1);
	--tertiary-color: 		rgba(38,45,51,1);
    --tertiary-color-hov: 	rgba(21,25,28,1);
	--quaternary-color: 	rgba(106,116,122,1);
	--quinary-color: 		rgba(248,251,252,1);



	--senary-color: 		rgba(0,0,0,1.00);
	--septenary-color: 		rgba(241,241,241,1);
	--octonary-color: 		rgba(207,207,207,1);
	--nonary-color: 		rgba(236,215,196,1);
	--denary-color:         rgba(245,235,226,1);
    --error-red-1:          rgba(255,0,4,1.00);
    --error-red-2:          rgba(170,26,26,1);


    --breakpoints-xs:       320px;
    --breakpoints-s:        375px;
    --breakpoints-m:        768px;
    --breakpoints-m:        992px;
    --breakpoints-l:        1280px;
    --breakpoints-xl:       1600px;
}

body {
	position: 				relative;
	background-color: 		var(--bg-color);
	color: 					var(--tertiary-color);
}
::selection {color: var(--bg-color); background: var(--primary-color);}
::-moz-selection {color: var(--bg-color); background: var(--primary-color);}

body, div, h1, h2, h3, h4, h5, h6, a, p, span, ul, ol, li, dl, dt, dd,
img, form, fieldset, input, button, textarea, blockquote, * {
	margin: 				0;
	padding: 				0;
	border: 				0;
	outline: 				0;
	-webkit-font-smoothing: antialiased;
    font-variant-ligatures: none;
	box-sizing: 			border-box;
}
body {
    font-family: 			"Poppins";
	font-size: 				18px;
	line-height: 			1.4;
	font-weight: 			400;
}



/*
	CONTAINER
* ----------------------------------------------------------------------------
*/
.container {
    width: 100%;
    height: auto;
    padding-right: 1rem;
    padding-left: 1rem;
    margin-right: auto;
    margin-left: auto;
    padding-right: 2rem;
    padding-left: 2rem;
    border: solid 0px red;;
}
    .container.wide {max-width: 100%;}

@media only screen and (min-width: 426px) {
}
@media only screen and (min-width: 992px) {
}
@media only screen and (min-width: 1200px) {
  .container {
		max-width: 1200px;
        padding-right: 2rem;
        padding-left: 2rem;
	}
}

/*
	HEADER + NAVIGATION
* ----------------------------------------------------------------------------
*/
header {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-color);
    border-bottom: solid 1px #eee;
    transition: all 0.6s ease;
}
    header.shrink               {box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.15);}
    header.shrink .container    {height: 80px;}
    header.shrink .logo         {width: 120px;}

    header div.container {
        display: flex;
        align-items: center;
        align-content: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        height: 80px;
        transition: all 0.6s ease;
    }
    @media only screen and (min-width: 992px) {
        header div.container {height: 120px;}
    }
        header .logo {
            width: 120px;
            height: auto;
            transition: all 0.6s ease;
        }
        @media only screen and (min-width: 992px) {
            header .logo {width: 170px;}
        }
        header .logo .turnip {
                fill: rgba(142,199,62,1);
                isolation: isolate;
            }
            header .logo .type {
                fill: rgba(38,45,51,1);
                fill-rule: evenodd;
            }
        header nav {
            display: none;
            margin-left: auto;
            white-space: nowrap;
        }
        @media only screen and (min-width: 992px) {
            header nav {display: block;}
         }
            nav ul {list-style: none;}
            nav li {display: inline;}
            nav a, #nav-mobile a {
                display: inline-block;
                padding: 0 16px;
                font-size: .9em;
                font-family: "Poppins", sans-serif;
                font-weight: 600;
                text-transform: uppercase;
                text-decoration: none;
                color: var(--quaternary-color);
                transition: 0.6s ease;
            }
            nav a:hover, #nav-mobile a:hover {
                color: var(--tertiary-color);
            }
            nav a:after, #nav-mobile a:after {
                content: "";
                display: block;
                margin: 0 auto;
                width: 0%;
                padding-top: 4px;
                border-bottom: 2px solid var(--primary-color);
                transition: 0.6s ease;
            }
            nav a.selected:after, nav a:hover:after, #nav-mobile a:hover:after {
                width: 75%;
            }
            nav a.highlight {
                font-size: 0.85em;
                color: rgba(255,255,255,1);
                background: var(--primary-color);
                border-radius: 99px;
                padding: 12px 22px 6px 22px;
                transition: all 0.6s ease;
            }
            nav a.highlight:after {
                border-bottom: none;
            }
            nav a.highlight:hover {
                color: rgba(255,255,255,0.9);
                transform: scale(1.05);
                background: var(--primary-color-hov);
            }

        #nav-toggle {
            display: inline-block;
            width: 28px;
            height: 30px;
            background: none;
            cursor: pointer;
        }
        @media only screen and (min-width: 992px) {
            #nav-toggle {display: none;}
        }
            #nav-toggle span:after,
            #nav-toggle span:before {
                content: "";
                position: absolute;
                left: 0;
                top: -9px;
            }
            #nav-toggle span:after {top: 9px;}
            #nav-toggle span {
                position: relative;
                display: block;
            }
            #nav-toggle span,
            #nav-toggle span:after,
            #nav-toggle span:before {
                width: 100%;
                height: 5px;
                background-color: var(--tertiary-color);
                transition: all 0.3s;
                backface-visibility: hidden;
                border-radius: 2px;
            }
            #nav-toggle[aria-expanded=true] span {background-color: transparent;}
            #nav-toggle[aria-expanded=true] span:before {transform: rotate(45deg) translate(5px, 5px);}
            #nav-toggle[aria-expanded=true] span:after {transform: rotate(-45deg) translate(7px, -8px);}
            #nav-toggle[aria-expanded=true] + #nav-mobile {
                opacity: 1;
                visibility: visible;
            }

        #nav-mobile {
            position: fixed;
            z-index: 999;
            top: 80px;
            left: 0;
            right: 0;
            overflow: hidden;
            background: var(--bg-color);
            height: 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.6s ease;
            text-align: center;
        }
        @media only screen and (min-width: 992px) {
            #nav-mobile {display: none;}
        }
            #nav-mobile ul{
                margin: 30px;
                list-style: none;
            }
                #nav-mobile li      {margin: 5px 0 15px 0;}
                #nav-mobile a       {font-size: 1.2em;}
                #nav-mobile a:after {border-bottom: 3px solid var(--primary-color);}
                
    
/*
	MAIN + SECTION + GLOBALS
* ----------------------------------------------------------------------------
*/
/*main {padding-top: 80px;}
@media only screen and (min-width: 992px) {
    main {padding-top: 100px;}
}*/


    a.button {
        display: inline-block;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        padding: 10px 30px;
        border-radius: 99px;
        transition: all 0.6s ease;
    }
    a.button.primary            {background: var(--primary-color);}
    a.button.primary:hover      {background: var(--primary-color-hov);}
    a.button.secondary          {background: var(--tertiary-color);}
    a.button.secondary:hover    {background: var(--tertiary-color-hov);}

    p {
        font-size: 1em;
        margin: 0.1rem 0;
    }

/*
	DRIVER + MALWINA
* ----------------------------------------------------------------------------
*/
section#driver {
    padding-top: 100px;
    padding-bottom: 80px;
    background: var(--secondary-color);
}
section#malwina {
    padding-top: 40px;
    padding-bottom: 80px;
    background: var(--bg-color);
}
@media only screen and (min-width: 992px) {
    section#driver {
        padding-top: 100px;
        padding-bottom: 40px;
    }
    section#malwina {
        padding-top: 40px;
        padding-bottom: 40px;
    }
}
    #driver .container,
    #malwina .container {
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        align-content: flex-start;
        justify-content: space-between;
    }
    @media only screen and (min-width: 992px) {
        #driver .container,
        #malwina .container  {
            display: flex;
            align-items: center;
            align-content: center;
            justify-content: space-between;
            height: 600px;
        }
        #driver .container {flex-direction: row;}
        #malwina .container {flex-direction: row-reverse;}
    }
    #driver .info,
    #malwina .info  {
        width: 100%;
        max-inline-size: 100%;
        text-wrap: pretty;
        text-align: center;
    }
    @media only screen and (min-width: 992px) {
        #driver .info,
        #malwina .info {
            width: 50%;
            max-inline-size: 50%;
            text-align: left;
        }
        #malwina .info {padding-left: 40px;}
    }
    #driver .gfx {
        padding: 20px 0;
        background: url(../gfx/driver.png) no-repeat;
    }
    #malwina .gfx {
        padding: 10px 0;
        background: url(../gfx/malwina.png) no-repeat;
    }
    #driver .gfx,
    #malwina .gfx {
        width: 100%;
        height: 100%;
        min-height: 300px;
        background-size: contain;
        background-position: center center;
        background-origin: content-box;
    }
    @media only screen and (min-width: 992px) {
        #driver .gfx, #malwina .gfx {width: 50%;}
        #driver .gfx {background-position: right center;}
        #malwina .gfx {background-position: left center;}
    }
        #driver h1,
        #malwina h1 {
            font-family: "Prata";
            font-size: 2.5em;
            line-height: 1.1em;
            font-weight: 400;
            color: var(--tertiary-color);
            margin-bottom: 16px;
        }
        #driver h1:before,
        #malwina h1:before {
            content: "";
            display: block;
            width: 10%;
            margin: 0 auto;
            padding-top: 18px;
            border-top: 6px solid var(--primary-color);
        }
        @media only screen and (min-width: 992px) {
            #driver h1:before,
            #malwina h1:before {margin: 0;}
        }
            #driver h1 span,
            #malwina h1 span {
                color: var(--primary-color);
            }
            #driver p {font-size: 1.1em;}
            #malwina p {font-size: 1em;}
            #driver p,
            #malwina p {
                color: var(--quaternary-color);
                margin-bottom: 6px;
            }
                #driver p span,
                #malwina p span {font-weight: 600;}
            #driver .buttons,
            #malwina .buttons {
                height: auto;
                font-size: 0.9em;
                margin-top: 22px;
            }
                #driver .buttons a {margin: 6px auto;}
            @media only screen and (min-width: 490px) {
                #driver .buttons a.secondary,
                #malwina .buttons a.secondary {margin-left: 26px;}
                
            }


/*
	HELP + CONTACT
* ----------------------------------------------------------------------------
*/
section#help,
section#contact {
    padding-top: 60px;
    padding-bottom: 80px;
    background: var(--quinary-color);
}
@media only screen and (min-width: 992px) {
    section#help,
    section#contact {
        padding-top: 60px;
        padding-bottom: 40px;
    }
}

#help h1,
#contact h1 {
    font-family: "Prata";
    font-size: 2.5em;
    line-height: 1.1em;
    font-weight: 400;
    color: var(--tertiary-color);
    margin-bottom: 16px;
    text-align: center;
}
#help h1:before,
#contact h1:before {
    content: "";
    display: block;
    width: 10%;
    margin: 0 auto;
    padding-top: 18px;
    border-top: 6px solid var(--primary-color);
}
    #help h1 span,
    #contact h1 span {
        color: var(--primary-color);
    }
    #help p,
    #contact p,
    #help li {
        font-size: 1em;
        color: var(--quaternary-color);
        margin-bottom: 6px;
    }
        #help p span {font-weight: 600;}

    #help .flex {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        align-content: center;
        gap: 0.2em 2em;
    }
        #help .flex div {
            flex-basis: 100%;
            width: 100%;
        }
    @media only screen and (min-width: 992px) {
        #help .flex {
            flex-direction: row;
        }
            #help .flex div {
                flex-basis: 36%;
            }
    }
        #help p {
            margin-top: 40px;
            font-weight: 600;
        }
        #help ul {
            margin-top: 6px;
            padding: 20px;
            list-style-image: url(../gfx/bullet.svg);
        }
            #help li {
                padding-left: 8px;
            }

         #contact p {
            margin-top: 40px;
            text-align: center;
        }
        #contact a {
            font-size: 1em;
            color: var(--quaternary-color);
            font-weight: 700;
            text-decoration: none;
        }
        #contact img {
            margin-top: 0.4em;
            margin-bottom: 80px;
            height: 1.6em;
            vertical-align: -0.65em;
            display: inline-block;
        }
   