/*
Theme Name: Jan Bergrath 2023
Theme URI: 
Description: A theme for Jan Bergrath
Author: Zehnpixel Webdesign
Author URI: https://zehnpixel.de/
Version: 1.0.0 September 2023
Template: qi
*/


/* archivo-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 400;
    src: url('../qithemeChild/fonts/archivo-v18-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* archivo-italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Archivo';
    font-style: italic;
    font-weight: 400;
    src: url('../qithemeChild/fonts/archivo-v18-latin-italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* archivo-500 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 500;
    src: url('../qithemeChild/fonts/archivo-v18-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* archivo-500italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Archivo';
    font-style: italic;
    font-weight: 500;
    src: url('../qithemeChild/fonts/archivo-v18-latin-500italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* archivo-600 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 600;
    src: url('../qithemeChild/fonts/archivo-v18-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* archivo-600italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Archivo';
    font-style: italic;
    font-weight: 600;
    src: url('../qithemeChild/fonts/archivo-v18-latin-600italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* archivo-800 - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Archivo';
    font-style: normal;
    font-weight: 800;
    src: url('../qithemeChild/fonts/archivo-v18-latin-800.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }
  /* archivo-800italic - latin */
  @font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Archivo';
    font-style: italic;
    font-weight: 800;
    src: url('../qithemeChild/fonts/archivo-v18-latin-800italic.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
  }



/***CONTENT---------
    
    00. Variables
    01. Allgemeine Styles
    02. Header + Logo
    03. Footer
    04. Aktuelles/Blog
    05. Kontaktformular


    09. Media Queries

*******------*/


/*Variables*/
:root {
    --Blue: #008ad6;
    --BlueBright: #8bd0ff;
    --Grey: #303030;
    --Black: #474747;
}




/* 01. ALLGEMEINE STYLES*/

    body, p, h1, h2, h3, h4, h5, h6, ul, ol {

        -webkit-hyphens: auto;
        -webkit-hyphenate-limit-before: 3;
        -webkit-hyphenate-limit-after: 3;
        -webkit-hyphenate-limit-chars: 6 3 3;
        -webkit-hyphenate-limit-lines: 2;
        -webkit-hyphenate-limit-last: always;
        -webkit-hyphenate-limit-zone: 8%;
        -moz-hyphens: auto;
        -moz-hyphenate-limit-chars: 6 3 3;
        -moz-hyphenate-limit-lines: 2;
        -moz-hyphenate-limit-last: always;
        -moz-hyphenate-limit-zone: 8%;
        -ms-hyphens: auto;
        -ms-hyphenate-limit-chars: 6 3 3;
        -ms-hyphenate-limit-lines: 2;
        -ms-hyphenate-limit-last: always;
        -ms-hyphenate-limit-zone: 8%;
        hyphens: auto;

        hyphenate-limit-chars: 6 3 3;
        hyphenate-limit-lines: 2;
        hyphenate-limit-last: always;
        hyphenate-limit-zone: 8%;
        line-height: 1.6em;
    }

   /* h1, h2, h3, h4, h5 {
        font-family: var(--HeaderFont)!important;
       }*/

   /* h1, h2 {
        text-transform: uppercase!important;
    }*/

    b, strong {
        font-weight: 600!important;
    }

    ul,ol {
        list-style-position: outside!important;
        margin-left: 20px!important;
    }

    .reportagen ol {
    margin-left: 40px!important;
    }

    ol li {
        padding-bottom: 5px;
    }

    .white, .white h1, .white h2, .white h3, .white h4, .white h5, .white h6, .white p, .white li, .white a {
        color: #ffffff;
    } 

    .no-show {
        display: none;
    }

    .text {
        padding: 50px;
    }

    .center {
        text-align: center;
    }

    .bg-black {
        background-color: var(--Black);
    }

    .bg-grey {
        background-color: var(--Grey);
    }

    #qodef-page-inner {
        padding: 0px 0px 0px 0px!important;
    }

    .pad-25 {
        padding: 25px!important;
    }

    ul.wp-block-social-links {
        margin-left: 0px!important;
    }

    .reportagen ul {
        list-style-type: none;
    }

    /*Section Text*/
    .qodef-qi-section-title>.qodef-m-text {
        margin-top: 20px;
    }

    /*Section Button*/
    
    .qodef-qi-button.qodef-layout--filled {
        background-color:var(--Blue);
        margin-top: 15px;
        font-size: 0.9em;
        padding: 10px 25px;
        color: #ffffff;
    }

    .qodef-qi-button.qodef-layout--filled:hover {
        background-color: var(--BlueBright);
        color: var(--Grey);
    }

    .qodef-qi-button.qodef-layout--textual:hover {
        color: #ffffff;
    }



     /*************************/


    /*02. LOGO*/
    #qodef-page-header .qodef-header-logo-link {
        width: 10%;
    }

    #qodef-page-header .qodef-header-logo-link:focus, #qodef-page-mobile-header .qodef-header-logo-link:focus, #qodef-page-mobile-header .qodef-mobile-header-logo-link:focus {
        outline: 0px!important;
    }

   #qodef-page-mobile-header .qodef-header-logo-link, #qodef-page-mobile-header .qodef-mobile-header-logo-link {
        width: 130px;
    }

    #qodef-page-mobile-header .qodef-mobile-header-logo-link img {
        margin: 0px!important;
    }

    /*03. FOOTER*/

    #qodef-page-footer .widget {
        margin: 0 0 0 0!important;
    }
    /* 04. BLOG */ 

    .qodef-blog.qodef--single .qodef-blog-item .qodef-e-content {
        padding-top: 0px!important;
        padding-bottom: 0px!important;
        margin-bottom: 0px!important;
        border-bottom: 0px!important;
    }

    /* 05. ROMANE */

    .qodef-addons-blog-list .qodef-blog-item .qodef-e-content, .qodef-addons-blog-list .qodef-blog-item .qodef-e-inner, .qodef-addons-blog-list .qodef-blog-item .qodef-e-media {
        background-color: var(--Black);
    }



/*MEDIA QUERIES*/

@media only screen and (max-width: 1024px) {
    
    }


@media only screen and (min-width: 768px) {
     
    }

@media only screen and (max-width:767px) {
    
    }


@media only screen and (max-width:600px) { 
    
    }