/*
Theme Name: erfolginderschule
Author: seaio.interactive
Author URI: https://www.seaio.ch
Description: Individual template created for WordPress
Version: 1.0
*/


html{
    overflow-x: hidden;
    scroll-behavior: smooth;

    --white: #FFF;
    --black: #000;
    --black50:  rgba(0,0,0,0.5);
    --black20:  rgba(0,0,0,0.2);
    --black10:  rgba(0,0,0,0.1);
    --black05:  rgba(0,0,0,0.05);
    --yellow: #E3B930;
    --yello29: rgba(227,185,48,0.29);
    --yello10: rgba(227,185,48,0.1);

    --green:  #436D6F;
    
    --bggradient: linear-gradient(180deg, #000000 0%, #ffffff 100%);
    --transition: all ease 0.4s;
    --hoveropacity: 0.8;

    --font:  'Jost';
}
body{
    background: var(--white);
    font-size: 16px;
    line-height: 24px;
    color: var(--black);
    font-family: var(--font), Arial,sans-serif;
    font-weight: 400;
}

h1 {
    font-family: var(--font);
    color: var(--black);
    margin-top: 0;
    font-size: 48px;
    line-height: 55px;
    font-weight: 600;
    text-transform: uppercase;
}
h2 {
    font-family: var(--font);
    color: var(--black);
    margin-top: 0;
    font-size: 48px;
    line-height: 55px;
    font-weight: 600;
    text-transform: uppercase;
}
h3 {
    font-family: var(--font);
    color: var(--black);
    margin-top: 0;
    font-size: 36px;
    line-height: 36px;
    font-weight: 600;
}
h4 {
    font-family: var(--font);
    color: var(--black);
    margin-top: 0;
    font-size: 28px;
    line-height: 28px;
    font-weight: 600;
}
h5 {
    font-family: var(--font);
    color: var(--black);
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}
h6 {
    font-family: var(--font);
    color: var(--black);
    margin-top: 0;
    font-size: 16px;
    line-height: 16px;
    font-style: italic;
    font-weight: 300;
}
a{
    transition:var(--transition);
    position: relative;
    color: var(--black);
}
a:hover{
    text-decoration: none;
    position: relative;
    color: var(--black);
}
.textwidget a {
    text-decoration: none;
    position: relative;
}
.textwidget a:hover {
    color: var(--black);
    text-decoration: none;
}
.textwidget a:after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 100%;
    height: 0;
    border-top: 1px solid var(--black);
    transform: translateX(-50%);
    transition: var(--transition);
}
.textwidget a:hover:after {
    width: 0%;
    transition: var(--transition);
    opacity: var(--hoveropacity);
}


.textwidget h1 a,
.textwidget h2 a,
.textwidget h3 a,
.textwidget h4 a,
.textwidget h5 a,
.textwidget h6 a {
    text-decoration: none;
}
p{
    margin-top: 0;
}
a, :focus {
    outline: none;
}
em {
    color: inherit;
}
b, strong {
    font-weight: 700;
}


@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 959px) {
    h1 {
        font-size: 40px;
        line-height: 50px;
    }
    h2 {
        font-size: 40px;
        line-height: 50px;
    }
    h3 {
        font-size: 30px;
        line-height: 30px;
    }
    h4 {
        font-size: 24px;
        line-height: 24px;
    }
}
@media screen and (max-width: 639px) {
    h1 {
        font-size: 35px;
        line-height: 45px;
    }
    h2 {
        font-size: 35px;
        line-height: 45px;
    }
    h3 {
        font-size: 25px;
        line-height: 25px;
    }
    h4 {
        font-size: 20px;
        line-height: 20px;
    }
}
@media screen and (max-width: 480px) {
    h1 {
        font-size: 28px;
        line-height: 38px;
    }
    h2 {
        font-size: 28px;
        line-height: 38px;
    }
    h3 {
        font-size: 22px;
        line-height: 22px;
    }
    h4 {
        font-size: 18px;
        line-height: 18px;
    }
}

/* header */
header {
    box-shadow: 0 0 20px 0 var(--black20);
    background: var(--white);
}
.header_logo img {
    width: 226px;
    height: auto;
}


/*Navigation*/
.header_nav {
    margin-top: 40px;
}
.header_menu_item {
    font-weight: 700;
    line-height: 1.45;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: calc(-1 * 16px / 100 * 5 );
}
.header_menu_subnav {
    position: absolute; 
    top:57px; 
    right: 0;
    margin-left: 40px; 
    padding: 20px; 
    background: var(--white); 
    display: none; 
    border-radius: 8px;
    box-shadow: 0 0 20px 0 var(--black20);

}
.header_menu_subnav .header_menu_item_sub {
    position: relative;
    font-weight: 500;
    color: var(--black);
    font-family: var(--font);
    text-transform: none;
    padding-bottom: 10px;
    margin-bottom: 10px;
    white-space: nowrap;
}
.header_menu_subnav .header_menu_item_sub:hover {
    color: var(--black);
}
.mobile_nav_outer{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: rgba(0,0,0,0.85);
    pointer-events: auto;
}
.mobile_nav_closer{
}
.mobile_nav{
    background: var(--white);
    color: var(--black);
    padding: 180px 0 100px 0;
}

/* page container */
.uk-container-large{
    max-width: 1600px;
}

.pageContent{
    min-height: 50vh;
    padding-left: 150px;
    padding-right: 150px;
}
@media screen and (max-width: 1600px) {
    .pageContent{
        padding-left: 7vw;
        padding-right: 7vw;
    }
    .headerContainer.uk-padding-large {
        padding-left: 0px;
        padding-right: 0px;
    }
}
@media screen and (max-width: 960px) {
    .pageContent{
        padding-left: 30px;
        padding-right: 30px;
    }
}


/* footer */
footer {
    background-color: var(--green);
    color: var(--white);
}
footer .footer_title {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 20px;
    line-height: 20px;
}
footer .footer_text {
    font-weight: 600;
    font-size: 20px;
    line-height: 35px;
}
footer .footer_text a {
    color: var(--white);
    position: relative;
    transition: var(--transition);
}
footer .footer_text a:hover {
    opacity: var(--hoveropacity);
    transition: var(--transition);
}
footer .footer_text a:after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 100%;
    height: 0;
    border-top: 1px solid var(--white);
    transform: translateX(-50%);
    transition: var(--transition);
}
footer .footer_text a:hover:after {
    width: 0%;
    transition: var(--transition);
    opacity: 0.9;
}
/*Searchpage*/
.searchpage input[type=text] {
    color: var(--black);
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    border: 1px solid var(--black);
    border-radius: 6px;
    padding: 8px 15px;
    background: none;
    width: 120px;
}
.searchpage .searchresult ul li a {
    display: block;
}
/*
 * print styles
 */
@media print{
    .uk-grid {
        display: inline !important;
    }
}
