﻿/* <--- General */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: clip;
}

h1 {
    text-align: center;
    color: var(--darkGray);
    padding-top: 4em !important;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
/* ---> */

/* <--- Fonts */
@font-face {
    font-family: 'Quicksand Medium';
    src: url(../_fonts/Quicksand-Medium.ttf);
}

@font-face {
    font-family: 'Quicksand Regular';
    src: url(../_fonts/Quicksand-Regular.ttf);
}

@font-face {
    font-family: 'Quicksand Light';
    src: url(../_fonts/Quicksand-Light.ttf);
}
/* ---> */

/* <--- Colors */
:root {
    --lightGray: #F5F5F5;
    --darkGray: #707070;
    --darkBlue: #4B687D;
    --white: #ffffff;
    --black: #000000;
}
/* ---> */

/* <--- Scrollbar */
::-webkit-scrollbar {
    width: 0.8em;
}

::-webkit-scrollbar-track {
    background-color: var(--lightGray);
}

::-webkit-scrollbar-thumb {
    background: var(--darkBlue);
    border-radius: 8px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #010111;
    }
/* ---> */

/* <--- Header */
.navbar {
    position: fixed !important;
    z-index: 1000;
    width: 100%;
    background-color: var(--lightGray);
    overflow: hidden;
    top: 0;
}

    .navbar.expand {
        height: 100%;
        overflow-y: scroll;
    }

    .navbar > div {
        justify-content: center !important;
        height: inherit;
        align-items: flex-start !important;
    }

.navbar-nav {
    height: 100%;
}

.navbar ul {
    align-items: flex-start !important;
}

.navbar ul li {
    list-style: none;
    margin: 2em 0;
}

.navbar li a {
    color: var(--darkGray);
    text-decoration: none;
}

.navbar .logo {
    display: none;
}

.navbar-nav {
    justify-content: space-around;
}
/* ---> */

/* <--- Title Block */
.block {
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.blockImgDiv {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blockImg {
    width: 100vw;
    z-index: -1;
    position: relative;
}

.block h1 {
    color: var(--white);
    position: absolute;
    padding: unset !important;
}

.blockBox {
    background-color: var(--lightGray);
    padding: 2em !important;
    color: var(--darkGray);
}

.contentBlockBtn {
    margin: 2em 0;
    display: flex;
    justify-content: center;
}

.blockButton {
    padding: 0.2em 0.5em;
    background-color: var(--darkBlue);
    border: 1px solid var(--darkBlue);
    border-radius: 5px;
    color: var(--white);
    text-decoration: none;
}

.blockButton:hover {
    background-color: var(--white);
    color: var(--darkBlue);
}

.contentCenter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 5em 0 5em 0;
}
/* ---> */
/* <--- List */
.list {
    display: flex;
}

.list.container {
    padding: unset;
}

.listText {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.listTextInnerDiv {
    margin: 5em 0;
    width: 90%;
}

.navigatorList {
    position: sticky;
    top: 30%;
    z-index: 90;
    width: fit-content;
    height: fit-content;
    margin-top: 5em;
    padding: 0.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid var(--darkBlue);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.navigatorOuterCircle, .navigatorInnerCircle {
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigatorOuterCircle {
    margin: 0.5em 0;
  /*  width: 50px;
    height: 50px;*/
    padding: 3px;
    background-color: var(--white);
    border: 2px solid var(--darkBlue);
    cursor: pointer;
}

    .navigatorOuterCircle:hover {
        background-color: var(--darkBlue);
    }

    .navigatorInnerCircle {
        width: 40px;
        height: 40px;
        background-color: var(--darkBlue);
    }

        /*.navigatorInnerCircle.active {
            background-color: var(--white);
        }

            .navigatorInnerCircle.active p {
                color: var(--darkBlue);
            }*/

        .navigatorInnerCircle:hover {
            background-color: var(--white);
        }

            .navigatorInnerCircle:hover p {
                color: var(--darkBlue);
            }

            .navigatorInnerCircle p {
                color: var(--white);
                text-decoration: none;
                margin: unset;
            }
/* ---> */
/* <--- Circulars */
.grid:after {
    content: '';
    display: block;
    clear: both;
}

.grid-item {
    margin: 2em 0;
    /*padding: unset !important;*/
}

.flag {
    width: fit-content;
    min-width: calc(100% * (1/8));
    max-width: calc(100% - 1em);
    padding: 0 0.5em;
    background-color: var(--darkBlue);
    position: absolute;
    z-index: 1;
    color: var(--white);
    margin-top: 1em
}

    .flag p {
        margin: 0;
    }

.circularImg {
    height: auto;
    width: 100%;
    position: relative;
    -webkit-box-shadow: 0px 2px 13px 1px rgba(0,0,0,0.55);
    -moz-box-shadow: 0px 2px 13px 1px rgba(0,0,0,0.55);
    box-shadow: 0px 2px 13px 1px rgba(0,0,0,0.55);
}

.overlay {
    opacity: 0;
    transition: .5s ease;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 2;
    width: 90%;
    height: 90%;
    position: absolute;
    top: 5%;
    left: 5%;
    right: 5%;
    bottom: 5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--darkBlue);
    padding: 2em;
}

    .overlay > div > div {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.overlayOpenText {
    margin: 0;
}

.overlay i {
    color: var(--darkBlue);
    padding: 1em;
}

.overlay hr {
    border: 1px solid var(--darkBlue);
    margin: 0;
}
/* ---> */

/* <--- Zirkular template */
.carouselContainer {
    text-align: center;
    margin-bottom: 5em;
}

.chooseBtnDiv {
    display: flex;
    justify-content: flex-end;
    margin: 5em 0;
}

.circularBtn {
    background-color: var(--darkBlue);
    color: var(--white);
    border-radius: 7px;
    border: 1px solid var(--darkBlue);
    padding: 0.2em 0.5em;
    text-decoration: none;
}

.carousel {
    display: flex;
    align-items: center;
}

.carousel-item {
    padding: 1.5em;
}

.carousel-item > div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.carousel-item img {
    -webkit-box-shadow: 0px 2px 13px 1px rgba(0,0,0,0.55);
    -moz-box-shadow: 0px 2px 13px 1px rgba(0,0,0,0.55);
    box-shadow: 0px 2px 13px 1px rgba(0,0,0,0.55);
}

.relativeImg, .circularSliderImg, .acknowledgeSliderImg {
    width: 100%;
}

.relativeImg {
    position: relative;
}

.absoluteImg {
    position: absolute;
    top: 55%;
    left: 20%;
    width: 80%;
}

.carouselCaption {
    color: var(--darkGray);
}

.carouselBtn {
    background-color: unset;
    border: none;
}

.arrowIcon i {
    color: var(--darkGray);
    font-size: 5em;
}

.circularFont {
    color: var(--darkBlue);
}

.fontCircular {
    display: flex !important;
    justify-content: center;
}
/* ---> */
/* <--- Text */
.contentBlock {
    margin-bottom: 8em;
}

    .contentBlock .innerContent {
        display: flex;
        flex-direction: column;
    }

.contentBlock p a {
    color: var(--darkBlue);
    text-decoration: none;
}

.contentTitle {
    text-align: center;
    padding: 5em 0 1em 0;
}

.contentBlock hr {
    width: 80%;
    height: 2px;
    opacity: unset;
    background-color: var(--darkBlue);
    border: none;
}

.contentTitle.no-distance {
    padding: unset;
}

.contentBlock .contentBlockImg {
    display: flex;
    justify-content: center;
}

.contentBlock img {
    height: auto;
    max-width: 80%;
}

.contentBlock img.hasShadow {
    -webkit-box-shadow: 0px 2px 13px 1px rgba(0,0,0,0.55);
    -moz-box-shadow: 0px 2px 13px 1px rgba(0,0,0,0.55);
    box-shadow: 0px 2px 13px 1px rgba(0,0,0,0.55);
}
/* ---> */

/* <--- Filter */
.filterBox {
    margin: 5em;
}

.filterBtn {
    background-color: var(--lightGray);
    border-radius: 8px;
    border: 1px solid var(--darkGray);
    margin: 0.5em;
    padding: 0.2em 0.5em;
    color: var(--black);
}

    .filterBtn.is-checked, .filterBtn.is-selected {
        background-color: var(--darkBlue);
        color: var(--white);
    }

/* ---> */

/* <--- Modal */
.modalContainer {
    margin: 0.5em 0;
    position: relative;
}

.modalImg {
    width: 100%;
    cursor: pointer;
}

.modalContentContainer {
    position: relative;
}

.modalOverlay {
    display: none;
    position: absolute;
    top: 0;
    width: inherit;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
}

.modalOverlay.visible {
    display: flex;
    width: calc(100% - 24px);
    height: 100%;
}


.selectBtnModal {
    background-color: var(--submitBtnFill) !important;
    border: 2px solid var(--submitBtnFill) !important;
    color: var(--submitBtnTxt) !important;
}
/* ---> */

/* <--- Step */
.stepImage {
    display: flex;
    justify-content: center;
    margin: 2em 0;
}

    .stepImage img {
        width: auto;
        height: 20em;
        -webkit-box-shadow: 0px 2px 13px 1px rgba(0,0,0,0.55);
        -moz-box-shadow: 0px 2px 13px 1px rgba(0,0,0,0.55);
        box-shadow: 0px 2px 13px 1px rgba(0,0,0,0.55);
    }
/* ---> */
/* <--- Footer */
footer {
    margin-top: auto;
    background-color: var(--lightGray);
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    padding: 0 5em;
}

.footerImg {
    height: 3em;
    margin: 1em 0 0 0;
}

.collum {
    display: flex;
    flex-direction: column;
    margin: 1em 0;
}

    .collum a, .collum p {
        color: var(--darkGray) !important;
        text-decoration: none;
    }

    .collum p {
        margin: unset;
    }
/* ---> */

/* <--- Summarized Fontfamily*/
header, .flag, .filterBtn, .block h1 {
    font-family: 'Quicksand Light';
}

h1, .overlayOpenText, .circularBtn, .block, .contentBlock p a {
    font-family: 'Quicksand Regular';
}

.overlayTitle {
    font-family: 'Quicksand Medium';
}
/* ---> */


/* <--- Summarized Fontsize */
.blockBox p:not(.blockSubtitle), .blockButton, .contentBlock p:not(.contentTitle) {
    font-size: 1em;
}

.circularBtn, .contentBlock p a, .filterBtn, .carouselCaption, .circularFont {
    font-size: 1.2em;
}

.listTitle, .blockSubtitle {
    font-size: 1.3em;
}

.navbar li a, .contentBlock p strong {
    font-size: 1.4em;
}

.flag, .overlayOpenText, .overlay i {
    font-size: 1.5em;
}

.block h1, .overlayTitle, .contentTitle {
    font-size: 2em;
}
/* ---> */

/* <--- Media */
@media screen and (min-width: 1200px) {
    /* <--- Zirkular template */
    .carousel-item img {
        width: 80%;
    }

    .absoluteImg {
        left: 37%;
    }
    /* ---> */
}

@media screen and (min-width: 1000px) {
    /* <--- Zirkular template */
    .carousel-item img {
        width: unset;
    }

    .absoluteImg {
        top: 50%;
    }
    /* ---> */

    /* <--- Title block */
    .block h1 {
        font-size: 4.5em !important;
    }

    .blockBox {
        padding: 2em 5em !important;
    }

    .blockSubtitle {
        font-size: 1.8em;
    }

    .blockBox p:not(.blockSubtitle) {
        font-size: 1.2em;
    }

    .contentBlockBtn {
        justify-content: flex-start;
    }

    .blockButton {
        font-size: 1.2em;
    }
    /* ---> */

    /* <--- List */
    .listTextInnerDiv {
        width: 70%;
    }
    /* ---> */

    /* <--- Text */
    .contentBlock:has(hr) {
        align-items: center;
    }

    .contentBlock:has(img) .innerContent {
        display: flex;
        flex-direction: row;
    }

        .contentBlock:has(img) .contentBlockText {
            width: 70%;
        }
    /* ---> */
}

@media screen and (min-width: 990px) {
    .grid-item:hover .overlay {
        opacity: 1;
    }

    .contentBlock .contentBlockImg {
        justify-content: flex-end;
    }
}

@media screen and (min-width: 768px) {
    /* <--- Header */
    header {
        -webkit-box-shadow: 0px 1px 18px 0px rgba(0,0,0,0.51);
        -moz-box-shadow: 0px 1px 18px 0px rgba(0,0,0,0.51);
        box-shadow: 0px 1px 18px 0px rgba(0,0,0,0.51);
    }

    .navbar {
        width: 100%;
        height: 4em;
        flex-direction: column;
        justify-content: center !important;
        position: fixed !important;
        z-index: 100;
    }

    .navbar, .collapse {
        background-color: var(--lightGray);
    }

        .navbar .collapse {
            display: flex !important;
            width: inherit;
        }

    .navbar-nav {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    .navbar > div {
        align-items: center !important;
    }

    .navbar ul {
        justify-content: space-around;
        align-items: center !important;
    }

        .navbar ul li {
            margin: 0;
        }

            .navbar ul li a {
                display: block;
                position: relative;
            }

    .navbar .container-fluid {
        display: none;
    }

    nav ul li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--darkGray);
        opacity: 0;
        transition: opacity 300ms, transform 300ms;
    }

    nav ul li a::after {
        opacity: 1;
        transform: scale(0);
        transform-origin: center;
    }

    nav ul li a:hover::after,
    nav ul li a:focus::after {
        transform: scale(1);
    }

    .navbar .logo {
        display: block;
        position: absolute;
        left: 2%;
    }

        .navbar .logo a:hover:after {
            transform: scale(0);
        }

        .navbar .logo a img {
            height: 2em;
        }
    /* ---> */
}

@media screen and (min-width: 600px) {
    h1 {
        padding-top: 5em !important;
    }

    /* <--- Title Block */
    .block {
        align-items: center;
    }

    .blockImgDiv {
        flex-direction: column;
    }

    .block h1 {
        font-size: 2.5em;
    }

    .blockBox {
        width: 100%;
        position: absolute;
    }
    /* ---> */

    /* <--- Circulars */
    .flag {
        min-width: calc(100% * (1/3));
    }
    /* ---> */

    /* <--- Zirkular template */
    .carousel {
        margin: 5em 0 2em 0;
    }

    .carousel-control-prev, .carousel-control-next {
        position: unset !important;
    }

    .carouselCaption {
        font-size: 1.5em
    }

    .arrowIcon i {
        font-size: 8em;
    }

    .circularBtn:hover {
        background-color: var(--white);
        color: var(--darkBlue);
    }
    /* ---> */

    .contentBlock img {
        max-height: 35em;
        width: auto;
    }

    /* <--- List */
    .navigatorList {
        border-radius: 10px;
    }
    /* ---> */

    /* <--- Filter */
    .filterBtn:hover {
        background-color: var(--darkBlue);
        color: var(--white);
    }
    /* ---> */

    /* <--- Modal */
    .selectBtnModal:hover {
        background-color: var(--submitBtnTxt) !important;
        border-color: var(--submitBtnFill) !important;
        color: var(--submitBtnFill) !important;
    }
    /* ---> */

    /* <--- footer */
    footer {
        height: 5em;
        flex-direction: row;
    }

    .footerImg {
        margin: unset;
    }

    .collum {
        margin: unset;
    }
    /* ---> */
}
/* ---> */