/*www.cdnjs.com/libraries/font-awesome*/
/*https://fontawesome.com/search?o=r&s=solid&f=classic*/

/*==================================================================*/
/*==================================================================*/
/*                              FONTS                               */
/*==================================================================*/
/*==================================================================*/
@font-face {
    font-family: 'ralewaybold';
    src: url('../font/raleway-bold-webfont.woff2') format('woff2'),
         url('../font/raleway-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ralewaybold_italic';
    src: url('../font/raleway-bolditalic-webfont.woff2') format('woff2'),
         url('../font/raleway-bolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ralewayextrabold';
    src: url('../font/raleway-extrabold-webfont.woff2') format('woff2'),
         url('../font/raleway-extrabold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ralewayextrabold_italic';
    src: url('../font/raleway-extrabolditalic-webfont.woff2') format('woff2'),
         url('../font/raleway-extrabolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'raleway_lightregular';
    src: url('../font/raleway-light-webfont.woff2') format('woff2'),
         url('../font/raleway-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'raleway_lightitalic';
    src: url('../font/raleway-lightitalic-webfont.woff2') format('woff2'),
         url('../font/raleway-lightitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ralewaymedium';
    src: url('../font/raleway-medium-webfont.woff2') format('woff2'),
         url('../font/raleway-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'raleway_mediumitalic';
    src: url('../font/raleway-mediumitalic-webfont.woff2') format('woff2'),
         url('../font/raleway-mediumitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'raleway_regular';
    src: url('../font/raleway-regular-webfont.woff2') format('woff2'),
         url('../font/raleway-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'raleway_regularitalic';
    src: url('../font/raleway-regularitalic-webfont.woff2') format('woff2'),
         url('../font/raleway-regularitalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ralewaysemibold';
    src: url('../font/raleway-semibold-webfont.woff2') format('woff2'),
         url('../font/raleway-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ralewaysemibold_italic';
    src: url('../font/raleway-semibolditalic-webfont.woff2') format('woff2'),
         url('../font/raleway-semibolditalic-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
/*==================================================================*/
/*==================================================================*/
/*                           COLOR SCHEMES                          */
/*==================================================================*/
/*==================================================================*/
:root{
    --background-color: #ffffff;    
    --background-variant: #f8f8f8;
    --text-color: #000000;       
    --secondary-text: #777777;
    --primary-color: #444444;
    --small-contrast-color: #cccccc;
    --tiny-contrast-color: #e5e5e5;
    --accent-color: #C69E35;
    --accent-highlight: #FFD04B;
    --check-color: #5fd25f;
    --box-shadow: rgba(0, 0, 0, 0.5);
}

.darkmode{
    --background-color: #000000;    
    --background-variant: #070707;
    --text-color: #ffffff;       
    --secondary-text: #888888;
    --primary-color: #aaaaaa;
    --small-contrast-color: #333333;
    --tiny-contrast-color: #222222;
    --accent-color: #C69E35;
    --accent-highlight: #FFD04B;
    --check-color: #5fd25f;
    --box-shadow: rgba(1, 1, 1, 0.5);
}


a {
  text-decoration: none;
}


/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*                MOBILE VERSION / HAMBURGER MENU                   */
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
@media (max-width: 100vw) {


    html, body { 
      /*  -moz-user-select: none; 
        -webkit-user-select: none; 
        -ms-user-select:none; 
        user-select:none;
        -o-user-select:none; */
        text-align: center; 
        background-color: var(--background-color);
        margin: auto;
        height: 100%;
    }


    section {
        background-color: var(--background-color);
        width: 100%;
    }


    #theme-switch{
        height: 10.2vw;
        width: 10.2vw;
        padding: 0;
        border-radius: 50%;
        border: solid 0 var(--background-color);
        background-color: var(--background-color);
        display:flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 2.86vw;
        right: 2.86vw;
    }


    #theme-switch svg:last-child{
        display: none;
    }


    .darkmode #theme-switch svg:first-child{
        display: none;
    }


    .darkmode #theme-switch svg:last-child{
        display: block;
    }


    #theme-switch svg{
        fill: var(--text-color);
    }


    #cog-heart svg{
        fill: var(--text-color);
    }


    #main-menu svg{
        fill: var(--text-color);
    }


    #close-menu svg{
        fill: var(--text-color);
    }


    #cog-heart{
        height: 10.2vw;
        width: 10.2vw;
        padding: 0;
        border-radius: 50%;
        border: solid 0 var(--background-color);
        background-color: var(--background-color);
        display:flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 2.86vw;
        right: 14.08vw;
    }


    #main-menu{
        height: 10.2vw;
        width: 10.2vw;
        padding: 0;
        border-radius: 50%;
        border: solid 0px var(--background-color);
        background-color: var(--background-color);
        display:flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 2.86vw;
        left: 2.86vw;
    }


    #religion{
        height: 6.12vw;
        width: 6.12vw;
        padding: 0;
        border-radius: 50%;
        border: solid 0px var(--background-color);
        background-color: var(--background-color);
        display:flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 4.9vw;
        left: 21.22vw;
        opacity: 0.5;
    }


    #continent{
        height: 6.12vw;
        width: 6.12vw;
        padding: 0;
        border-radius: 50%;
        border: solid 0px var(--background-color);
        background-color: var(--background-color);
        display:flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 4.9vw;
        left: 31.43vw;
        opacity: 0.5;
    }



    .centerContainer { 
        width: 100%; 
        text-align: center; 
        margin: 0vw auto;
        background-color: var(--background-color);
        color: var(--text-color);
    }


    .centerContainer2 { 
        width: 100%; 
        text-align: left; 
        margin: 0vw auto;
        background-color: var(--background-color);
        color: var(--text-color);
    }



    .splash-logo {
        -moz-user-select: none; 
        -webkit-user-select: none; 
        -ms-user-select:none; 
        user-select:none;
        -o-user-select:none;
        width: 14.28vw;
        height: 14.28vw;
        margin-left: auto;
        margin-right: auto;
        background-image: url(../img/WOA_Logo.gif);
        background-repeat: no-repeat;
        background-size: cover;
    }



    .splash-title1 {
        font-family: ralewayextrabold_italic, sans-serif;
        font-size: 7.14vw;
        color: var(--text-color);
    }


    .splash-title2 {
        font-family: ralewayextrabold_italic, sans-serif;
        font-size: 5.1vw;
        color: var(--text-color);
    }


    .title-table {
        width: 100%;
        border: 0px solid;
    }


    .number-box {
        width: 3.06vw;
        border: 0px solid;
        padding-left: 1.02vw;
        font-family: raleway_lightitalic, sans-serif;
        font-size: 10.2vw;
        color: var(--accent-color);
    }


    .single-title-box {
        border: 0px solid;
        padding-top: 2.04vw;
    }


    .title-box {
        border: 0px solid;
        line-height: 85%;
    }


    .title {
        font-family: ralewaybold, sans-serif;
        font-size: 5.1vw;
        color: var(--text-color);
        padding-left: 2.04vw;
        padding-right: 2.04vw;
        text-transform: capitalize;
    }


    .list-title {
        font-family: ralewaybold, sans-serif;
        font-size: 4.08vw;
        color: var(--text-color);
        padding-left: 15.3vw;
        padding-right: 2.04vw;
        margin-top: 2.04vw;
        text-transform: capitalize;
    }


    .paragraph {
        font-family: raleway_lightregular, sans-serif;
        font-size: 4.08vw;
        color: var(--text-color);
        padding-left: 8.16vw;
        padding-right: 1.02vw;
    }


    .paragraph-topspace {
        font-family: raleway_lightregular, sans-serif;
        font-size: 4.08vw;
        color: var(--text-color);
        padding-left: 8.16vw;
        padding-right: 1.02vw;
        margin-top: 2.04vw;
    }


    .quote {
        font-family: raleway_lightregular, sans-serif;
        font-size: 3.06vw;
        color: var(--text-color);
    }


    .bold-quote {
        font-family: ralewaybold, sans-serif;
        font-size: 3.06vw;
        color: var(--text-color);
        text-transform: capitalize;
   }


    .unordered-list {
        font-size: 4.08vw;
        list-style-position: outside;
        list-style-type: disc; /* Default bullet type */
        margin-left: 15.3vw;
        padding-inline-start: 4.08vw; /* Default left padding (for LTR) */        
    }


    .list-item {
        font-size: 4.08vw;
    }



    .reli {
        padding-top: 2.04vw;
    }


    .back-button {
        border: none;
        outline: none;
        border-radius: 8.16vw;
        background-color: var(--accent-color);
        font-family: ralewayextrabold, sans-serif;
        font-size: 4.49vw;
        color: var(--text-color);
        width: 61.22vw;
        height: 16.33vw;
        align-items: center;
        padding: 0.61vw;
        justify-content: center;
        cursor: pointer;
    }

    .back-button:hover:enabled {
      background-color:var(--accent-highlight) !important;
    }



    .wide-image {
        width: 100%;
        height: auto;
        z-index: 0;
    }


    .norm-image {
        width: 100vw;
        height: 56.12vw;
    }


    .close {
        background: none;
        border: none;
        background-color: var(--small-contrast-color);
        color: var(--text-color);
        float: left;
        margin: 2.04vw;
        cursor: pointer;
        svg {
            width: 10.2vw;
            height: 10.2vw;
        }
    }


    .nav-menu {
        width: 50%;
        right: auto;
        bottom: auto;
        font-size: 5.1vw;
        background-color: var(--small-contrast-color);
        color: var(--text-color);
        border: none;
        height: 81.63vw;
    }


    .nav-menu[open] {
        -webkit-animation-name: nav-menu;
        -webkit-animation-duration: .5s;
        -webkit-animation-iteration-count: 1;
        animation-name: nav-menu;
        animation-duration: .5s;
        animation-iteration-count: 1;
    }


    @keyframes nav-menu {
        0%{
            transform: translateX(-100%);
        }
    }


    @-webkit-keyframes nav-menu {
        0%{
            transform: translateX(100%);
        }
    }


    .menu-text {
        font-family: ralewaybold, sans-serif;
        font-size: 5.1vw;
        color: var(--text-color);
        text-decoration: none;
    }


    .menu-text:hover {
        font-family: ralewaybold, sans-serif;
        font-size: 5.1vw;
        color: var(--secondary-text);
        text-decoration: none;
    }



    .menu-text-disabled {
        font-family: ralewaybold, sans-serif;
        font-size: 5.1vw;
        color: var(--accent-color);
    }


    .errormessage {
        background-color: var(--background-color);
        color: red;
        font-family: ralewayextrabold, sans-serif;
        font-size: 4.48vw;
    }


    .mail-button {
        border: none;
        outline: none;
        border-radius: 8.16vw;
        background-color: var(--accent-color);
        font-family: ralewayextrabold, sans-serif;
        color: var(--text-color);
        width: 61.22vw;
        height: 16.33vw;
        font-size: 4.49vw;
        align-items: center;
        margin-left: 18.37vw;
        display: flex;
        padding: 0.31vw;
        justify-content: center;
        cursor: pointer;
    }


    .mail-button:hover:enabled {
      background-color: var(--accent-highlight) !important;
    }


    .iconclass {
        width: 7.14vw; 
        height: 7.14vw;
    }


    .news {
        font-family: ralewayextrabold, sans-serif;
        font-size: 4.49vw;
    }


    *,
    *::after,
    *::before {
      margin: 0vw;
      padding: 0vw;
      box-sizing: inherit;
      font-size: 6.12vw;
    }

}

/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/

/*==================================================================*/
/*==================================================================*/
/*                DESKTOP VERSION / HAMBURGER MENU                  */
/*==================================================================*/
/*==================================================================*/
/*==================================================================*/
@media (min-width: 980px) {


    html, body { 
      /*  -moz-user-select: none; 
        -webkit-user-select: none; 
        -ms-user-select:none; 
        user-select:none;
        -o-user-select:none; */
        /*text-align: center; */
        background-color: var(--background-color);
        margin: auto;
        height: 100%;
    }

    section {
        background-color: var(--background-color);
        width: 100%;
    }


    #theme-switch{
        height: 100px;
        width: 100px;
        padding: 0;
        border-radius: 50%;
        border: solid 0px var(--background-color);
        background-color: var(--background-color);
        display:flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 28px;
        right: 28px;
    }


    #theme-switch svg:last-child{
        display: none;
    }


    .darkmode #theme-switch svg:first-child{
        display: none;
    }


    .darkmode #theme-switch svg:last-child{
        display: block;
    }


    #theme-switch svg{
        fill: var(--text-color);
    }


    #cog-heart svg{
        fill: var(--text-color);
    }


    #main-menu svg{
        fill: var(--text-color);
    }


    #close-menu svg{
        fill: var(--text-color);
    }



    #cog-heart{
        height: 100px;
        width: 100px;
        padding: 0;
        border-radius: 50%;
        border: solid 0px var(--background-color);
        background-color: var(--background-color);
        display:flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 28px;
        right: 138px;
    }


    #main-menu{
        height: 100px;
        width: 100px;
        padding: 0;
        border-radius: 50%;
        border: solid 0px var(--background-color);
        background-color: var(--background-color);
        display:flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 28px;
        left: 28px;
    }


    #religion{
        height: 60px;
        width: 60px;
        padding: 0;
        border-radius: 50%;
        border: solid 0px var(--background-color);
        background-color: var(--background-color);
        display:flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 48px;
        left: 208px;
        opacity: 0.5;
    }


    #continent{
        height: 60px;
        width: 60px;
        padding: 0;
        border-radius: 50%;
        border: solid 0px var(--background-color);
        background-color: var(--background-color);
        display:flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 48px;
        left: 308px;
        opacity: 0.5;
    }



    .centerContainer { 
        width: 980px;
        text-align: center; 
        margin: 0px auto;
        background-color: var(--background-color);
        color: var(--text-color);
    }


    .centerContainer2 { 
        width: 980px;
        text-align: left; 
        margin: 0px auto;
        background-color: var(--background-color);
        color: var(--text-color);
    }


   .splash-logo {
        -moz-user-select: none; 
        -webkit-user-select: none; 
        -ms-user-select:none; 
        user-select:none;
        -o-user-select:none;
        width: 140px;
        height: 140px;
        margin-left: auto;
        margin-right: auto;
        background-image: url(../img/WOA_Logo.gif);
        background-repeat: no-repeat;
        background-size: cover;
    }


    .splash-title1 {
        font-family: ralewayextrabold_italic, sans-serif;
        font-size: 70px;
        color: var(--text-color);
    }


    .splash-title2 {
        font-family: ralewayextrabold_italic, sans-serif;
        font-size: 50px;
        color: var(--text-color);
    }


    .title-table {
        width: 100%;
        border: 0px solid;
    }


    .number-box {
        width: 30pxvw;
        border: 0px solid;
        padding-left: 10px;
        font-family: raleway_lightitalic, sans-serif;
        font-size: 100px;
        color: var(--accent-color);
    }


    .single-title-box {
        border: 0px solid;
        padding-top: 20px;
    }


    .title-box {
        border: 0px solid;
    }


    .title {
        font-family: ralewaybold, sans-serif;
        font-size: 50px;
        color: var(--text-color);
        padding-left: 20px;
        padding-right: 20px;
        text-transform: capitalize;
    }


    .list-title {
        font-family: ralewaybold, sans-serif;
        font-size: 40px;
        color: var(--text-color);
        padding-left: 150px;
        padding-right: 20px;
        margin-top: 20px;
        text-transform: capitalize;
    }


    .paragraph {
        font-family: raleway_lightregular, sans-serif;
        font-size: 40px;
        color: var(--text-color);
        padding-left: 80px;
        padding-right: 10px;
    }


    .paragraph-topspace {
        font-family: raleway_lightregular, sans-serif;
        font-size: 40px;
        color: var(--text-color);
        padding-left: 80px;
        padding-right: 10px;
        margin-top: 20px;
    }


    .reli {
        padding-top: 20px;
    }


    .paragraph-topspace {
        font-family: raleway_lightregular, sans-serif;
        font-size: 40px;
        color: var(--text-color);
        padding-left: 80px;
        padding-right: 10px;
        margin-top: 20px;
    }


    .quote {
        font-family: raleway_lightregular, sans-serif;
        font-size: 30px;
        color: var(--text-color);
    }


    .bold-quote {
        font-family: ralewaybold, sans-serif;
        font-size: 30px;
        color: var(--text-color);
        text-transform: capitalize;
}


    .unordered-list {
        font-size: 40px;
        list-style-position: outside;
        list-style-type: disc; /* Default bullet type */
        margin-left: 150px;
        padding-inline-start: 40px; /* Default left padding (for LTR) */        
    }


    .list-item {
        font-size: 40px;
    }


    .back-button {
        border: none;
        outline: none;
        border-radius: 80px;
        background-color: var(--accent-color);
        font-family: ralewayextrabold, sans-serif;
        font-size: 44px;
        color: var(--text-color);
        width: 600px;
        height: 160px;
        align-items: center;
        padding: 6px;
        justify-content: center;
        cursor: pointer;
    }

    .back-button:hover:enabled {
      background-color:var(--accent-highlight) !important;
    }


    .wide-image {
        width: 100%;
        height: auto;
        z-index: 0;
    }   


    .norm-image {
        width: 980px;
        height: 550px;
    }


    .close {
        background: none;
        border: none;
        background-color: var(--small-contrast-color);
        color: var(--text-color);
        float: left;
        margin: 20px;
        cursor: pointer;
        svg {
            width: 100px;
            height: 100px;
        }
    }


    .nav-menu {
        width: 490px;
        right: auto;
        bottom: auto;
        font-size: 50px;
        background-color: var(--small-contrast-color);
        color: var(--text-color);
        border: none;
        height: 800px;
    }



    .nav-menu[open] {
        -webkit-animation-name: nav-menu;
        -webkit-animation-duration: .5s;
        -webkit-animation-iteration-count: 1;
        animation-name: nav-menu;
        animation-duration: .5s;
        animation-iteration-count: 1;
    }


    @keyframes nav-menu {
        0%{
            transform: translateX(-100%);
        }
    }


    @-webkit-keyframes nav-menu {
        0%{
            transform: translateX(100%);
        }
    }



    .menu-text {
        font-family: ralewaybold, sans-serif;
        font-size: 50px;
        color: var(--text-color);
        text-decoration: none;
    }


    .menu-text:hover {
        font-family: ralewaybold, sans-serif;
        font-size: 50px;
        color: var(--secondary-text);
        text-decoration: none;
    }



    .menu-text-disabled {
        font-family: ralewaybold, sans-serif;
        font-size: 50px;
        color: var(--accent-color);
    }



    .errormessage {
        background-color: var(--background-color);
        color: #ff0000;
        font-family: ralewayextrabold, sans-serif;
        font-size: 44px;
    }


    .mail-button {
        border: none;
        outline: none;
        border-radius: 80px;
        background-color: var(--accent-color);
        font-family: ralewayextrabold, sans-serif;
        color: var(--text-color);
        width: 600px;
        height: 160px;
        font-size: 44px;
        align-items: center;
        margin-left: 180px;
        display: flex;
        padding: 3px;
        justify-content: center;
        cursor: pointer;
    }


    .mail-button:hover:enabled {
      background-color: var(--accent-highlight) !important;
    }


    .iconclass {
        width: 70px; 
        height: 70px;
    }


    .news {
        font-family: ralewayextrabold, sans-serif;
        font-size: 44px;
    }


    *,
    *::after,
    *::before {
      margin: 0px;
      padding: 0px;
      box-sizing: inherit;
      font-size:  60pt;
    }

  
}