:root {
    
}

@font-face {
    font-family: "font-body";
    src: url("./assets/fonts/OpenSans/OpenSans-Regular.ttf");
    /* font-weight: normal; */
}
@font-face {
    font-family: "font-body-bold";
    src: url("./assets/fonts/OpenSans/OpenSans-Bold.ttf");
    /* font-weight: bold; */
}
@font-face {
    font-family: "font-body-italic";
    src: url("./assets/fonts/OpenSans/OpenSans-Italic.ttf");
    /* font-weight: bold; */
}
@font-face {
    font-family: "font-title";
    src: url("./assets/fonts/Roboto/Roboto-Black.ttf");
    /* font-weight: normal; */
}

@keyframes fadeInOpacity {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

body {
    padding: 0;
    margin: 0;
    left: 0;
    min-width: 280px;
}

.page {
    width: 100%;
    margin: auto;
}

.backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    margin: auto;
}

.title {
    /* font-family: "font-body-bold"; */
    font-family: "font-title";
    /* font-size: calc(0.75vw + 20px); */
    font-size: calc(2vw + 30px);
    text-align: center;
    /* color: white; */
    /* background-color: #bee0f0; */
    padding: calc(0.5vw + 10px) 10px;

    color: rgb(255, 255, 255);
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 1), 0px 0px 3px rgba(0, 0, 0, 0.8), 0px 0px 10px rgba(0, 0, 0, 0.4), 0px 0px 20px rgba(0, 0, 0, 0.1);
    /* text-shadow: 2px 4px 4px rgba(0,0,0,0.2), 0px -5px 10px rgba(255,255,255,0.15); */
}

.subtitle {
    /* font-family: "font-body-bold"; */
    font-family: "font-title";
    /* font-size: calc(0.75vw + 10px); */
    font-size: calc(1vw + 20px);
    text-align: center;
    /* color: white; */
    /* background-color: #bee0f0; */

    color: rgba(255, 255, 255, 1);
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 1), 0px 0px 3px rgba(0, 0, 0, 0.8), 0px 0px 10px rgba(0, 0, 0, 0.4), 0px 0px 20px rgba(0, 0, 0, 0.1);
    /* text-shadow: 2px 4px 4px rgba(0,0,0,0.2), 0px -5px 10px rgba(255,255,255,0.15); */
}

/* .content {
    font-family: "font-body";
    width: 100%;
    height: 100%;
    margin: auto;
    text-align: center;
    background-color: #e0e0e0;

    padding: 10px 0;
}

.content-header {
    font-family: "font-body-bold";
} */

.spacer-small {
    height: 5%;
}
.spacer-large {
    height: 15%;
}

.list-container {
    margin: auto;
    /* width: 50%; */
    text-align: left;
    list-style-position: outside;
    display: inline-block;
}

.nav-title-container {
    float: left;
    top: 0px;
    padding-top: calc(0.5vw + 5px);
    /* padding-left: calc(0.5vw + 5px); */
    padding-left: calc(4vw - 8px);
}

.nav-title-image {
    height: calc(1.5vw + 14px);
    float: left;
}

.nav-title-text {
    margin-left: calc(0.5vw + 2px);
    float: left;
    font-size: calc(1vw + 10px);
    font-family: "font-body-bold";
    color: rgb(0, 0, 0);
}

.nav-button {
    float: right;
    top: 0px;
    padding: calc(0.5% + 5px) 3%;
    background: rgb(49, 101, 178, 0.75);
    font-size: calc(0.8vw + 10px);
    font-family: "font-body-bold";
    color: rgb(255, 255, 255);
    cursor: default;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 1);

    -webkit-transition: padding 200ms ease;
    -moz-transition:    padding 200ms ease;
    -ms-transition:     padding 200ms ease;
    -o-transition:      padding 200ms ease;
    transition:         padding 200ms ease;
}
.nav-button:hover {
    padding: calc(0.5% + 2px) 3%;
    /* font-size: 25px; */
    background: rgb(49, 101, 178, 0.5);
    cursor: pointer;
}

.product-list-container {
    margin: auto;
    width: 100%;
    text-align: center;
}
.product-list-title {
    margin: auto;
    padding: 0px 5px;
    font-family: "font-body-bold";
    /* font-size: 40px; */
    /* font-size: calc(2vw + 20px); */
    font-size: calc(2vw + 20px);
    margin-bottom: 10px;
    color: rgb(22, 54, 104);
    text-decoration-line: underline;
}
.product-list-item {
    margin: auto;
    padding: 5px 5px;
    font-family: "font-body-bold";
    /* font-size: 20px; */
    font-size: calc(1vw + 10px);
    color: rgb(22, 54, 104);
}

.content {
    font-family: "font-body";
    width: 100%;
    height: 100%;
    margin: auto;
    padding: 10px 0;
}











.c-banner-image {
    background-repeat: no-repeat;
    background-attachment: fixed;  
    background-size: cover;
    background-position: center;
    background-attachment: scroll;

    width: 100%;
    margin: auto;

    position: relative;
}
.c-banner-image-small {
    height: 200px;
}
.c-banner-image-large {
    height: 400px;
}

.c-banner-inner {
    margin: auto;
    text-align: center;
}

.c-banner-text {
    text-align: center;
    margin: auto;
    position: absolute;
    padding: 20px calc(5% + 5px);
    
    font-family: "font-body";
    color: white;
    background-color: rgb(0, 0, 0, 0.5);

    top: 50%;
    transform:     translateY(-50%);
    -ms-transform: translateY(-50%);
}
.c-banner-text-small {
    font-size: 20px;
}
.c-banner-text-large {
    font-size: 40px;
}











.paragraph-container-desk {
    overflow: hidden;
}
.paragraph-image-desk {
    float: left;
    /* width: calc(49%); */
    border-style: solid;
    border-width: 1px;
    border-color: rgb(213, 213, 213);
    padding-bottom: 1000px;
    margin-bottom: -1000px;
}
.paragraph-text-container-desk {
    float: right;
    /* width: calc(49%); */
    font-size: calc(0.5vw + 15px);
    padding-bottom: 1000px;
    margin-bottom: -1000px;
}
.paragraph-container-mobl {}
.paragraph-image-mobl {
    width: 100%;
    margin-bottom: 5px;
    border-style: solid;
    border-width: 1px;
    border-color: rgb(213, 213, 213);
}
.paragraph-text-container-mobl {
    width: 100%;
    font-size: calc(0.5vw + 15px);
}
.paragraph-text-container-noimage {
    /* background-color: rgb(245, 247, 249); */
    padding: 20px max(5%, 20px);
    font-size: calc(0.3vw + 15px);
}
.paragraph-text {
    font-family: "font-body";
    color: rgb(60, 60, 60);
    text-align: justify;
    text-justify: inter-word;
    /* hyphens: auto; */

    line-height: 150%;
}


.c-table-row {
    /* margin-top: 25px; */
    position: relative;
    width: 100%;
}
.c-table-row-cell-container {
    clear: none;
    float: left;
}
.c-table-row-cell {
    margin: auto;
}

.hyperlink {
    all: unset;
    color: rgb(34, 50, 109);

    text-decoration: underline;

    transition: color 0.2s ease-in;
}
.hyperlink:hover {
    color: #ababab;
    cursor: pointer;
}

.spacer-line-small {
    height: 5%;
    border-width: 0.8px;
    border-style: solid;
    border-color: rgb(200, 200, 200);
}

.spacer-line-medium {
    height: 5%;
    border-width: 1px;
    border-style: solid;
    border-color: rgb(200, 200, 200);
}

