:root {
    --white: #fff;
    --lightGray: #f8f8f8;
    --mediumGray: #ccc;
    --darkGray: #2d2d2f;
    --black: rgb(0, 0, 0);
    --blue: rgb(0, 0, 255);
    --blue-bright: rgb(0, 150, 255);
    --blue-dark: rgb(0, 0, 139);
    --yellow: rgb(255, 255, 0);
    --yellow-bright: rgb(255, 234, 0);
    --yellow-dark: rgb(246, 190, 0);
    --red: rgb(218, 0, 0);
    --red-bright: rgb(238, 75, 43);
    --red-dark: rgb(139, 0, 0);
    --purle: rgb(128, 0, 128);
    --pink: rgb(255, 192, 203);
    --brown: rgb(165, 42, 42);
    --orange: rgb(255, 165, 0);
}


/* ############################################################### */


/* ############################################################### */


/* Sections */


/* main.main-start section.section-parallax,
main.main-start section.section-parallax-layer,
main.main-start section.standard,
main.main-start section.full {
    height: 100vh;
    min-height: auto;
} */

main.main-start section.full>div {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    position: relative;
}

main.main-start section.full>div::-webkit-scrollbar {
    display: none;
}

section.section.full.box-content {
    padding: 30px 0;
    width: 100%;
}

section.section-parallax,
section.section-parallax-layer {
    min-height: 700px;
    width: 100%;
    background-attachment: fixed !important;
    display: flex;
    align-items: center;
}

section.section-parallax-layer {
    position: relative;
}

section.section-parallax-layer::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

section.section-parallax-layer .box {
    z-index: 1;
}

section:first-of-type.section-parallax,
section:first-of-type.section-parallax-layer {
    height: auto;
    min-height: 75vh;
}

section.section-parallax>div,
section.section-parallax-layer>div {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

section.standard {
    width: 100%;
}

section.standard>div {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

section.full {
    width: 100%;
    margin: 0 auto;
}

section.full .box-100-text .box-content,
section.full .box-100-transparent .box-content,
section.full .box-100-title .box-content,
section.full .box-100-text-big-center .box-content {
    max-width: 100%;
}

section.full>div {
    width: 100%;
    display: flex;
    justify-content: space-around;
    justify-content: center;
    flex-wrap: wrap;
}

section.section-text {
    display: block;
    width: 100%;
    margin: 25px auto;
    padding: 0;
}

section.section-text>div {
    display: block;
    max-width: 1100px;
    padding: 25px 50px;
}

section.section-text>div .section-text-wrapper {
    display: block;
    width: calc(100% - 40px);
    margin: 20px;
    padding: 0;
}

section:first-of-type.section-header {
    min-height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.section-header>div .section-text-wrapper {
    display: block;
    padding: 0;
    width: 100%;
    margin: 0;
    border: none;
    box-shadow: none;
}

section.section-header>div .section-text-wrapper p,
section.section-header>div .section-text-wrapper a,
section.section-header>div .section-text-wrapper span,
section.section-header>div .section-text-wrapper li {
    font-size: 20px;
}

section.section-header>div .section-text-wrapper h1,
section.section-header>div .section-text-wrapper h1>span {
    font-size: 32px;
}

section.section-header>div .section-text-wrapper h2,
section.section-header>div .section-text-wrapper h2>span {
    font-size: 24px;
}

section.section-header {
    width: 100%;
    margin: 0 auto 0 auto;
}

section.section-header>div {
    width: 100%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 100px 25px;
    text-align: center;
    margin: 0 auto;
    flex-flow: column;
}

section:first-of-type.section-header>div {
    padding: 200px 25px;
}

section.full>div {
    margin: 0 auto;
}

section.full>div .section-text-wrapper {
    max-width: 1100px;
    padding: 25px 50px;
}

section.section-function>div {
    padding: 0;
}


/* End of sections */


/* ############################################################### */


/* ############################################################### */


/* General */

.item-action {
    margin-top: 20px;
}

#info,
.info {
    max-width: 1100px;
    width: 100%;
    margin: 50px auto;
    padding: 25px 50px;
}

#info ul,
.info ul,
.content ul,
.box-content ul,
.single-news ul,
.section-text ul,
#info ol,
.info ol,
.content ol,
.box-content ol,
.single-news ol,
.section-text ol {
    padding: 5px 20px;
}

.box-content {
    padding: 30px 0;
    width: 100%;
    max-width: 600px !important;
margin: 0 auto;
}

.pagebuilder .box-content p:first-of-type {
    margin-top: 0;
}

.box-content p:first-of-type {
    margin-top: 0;
}

.box-content p {
    margin-top: 1em;
}

.pagebuilder .box-content p {
    margin-top: 1em;
}


/* End of general */


/* ############################################################### */


/* ############################################################### */


/* Buttons */

.btn-white {
    background-color: var(--white);
    border: 3px solid var(--white);
    color: var(--blue);
}

.btn-yellow {
    background-color: var(--yellow);
    border: 3px solid var(--yellow);
    color: var(--white);
}

.btn-blue {
    background-color: var(--blue);
    border: 3px solid var(--blue);
    color: var(--white);
}

.btn-trans {
    background-color: transparent;
    color: var(--white) !important;
    border: 3px solid var(--white);
}

.btn-white,
.btn-yellow,
.btn-blue,
.btn-trans {
    padding: 12.5px 30px;
    border-radius: 4px;
    width: fit-content;
    display: inline-flex;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    position: relative;
    line-height: 100%;
    align-items: center;
}

.btn-white span,
.btn-yellow,
.btn-blue,
.btn-trans span {
    font-size: 16px;
}

.btn-white:hover {
    border: 3px solid var(--yellow);
    background-color: var(--yellow);
    color: var(--white) !important;
}

.btn-yellow:hover {
    border: 3px solid var(--yellow);
    background-color: var(--darkGrey);
    color: var(--yellow) !important;
}

.btn-blue:hover {
    border: 3px solid var(--yellow);
    background-color: var(--yellow);
    color: var(--blue) !important;
}

.btn-trans:hover {
    background-color: var(--white);
    color: var(--yellow) !important;
}


/* End of buttons */


/* ############################################################### */


/* ############################################################### */


/* Boxes */


/* Box spacer */

.box-spacer {
    height: 50px;
    width: 100%;
    background-color: transparent !important;
    background: transparent !important;
    background-image: none !important;
}

.box-spacer .box-image-container,
.box-spacer .box-content {
    display: none;
    background-color: transparent !important;
    background: transparent !important;
    background-image: none !important;
}

.pagebuilder .box-spacer .box-content {
    display: block;
    background-color: transparent !important;
    background: transparent !important;
    background-image: none !important;
}


/* End of box spacer */


/* Box 100-title */

.box-100-title {
    width: calc(100% - 30px);
    margin: 15px;
}


/* End of Box 100-title */


/* Box 100-text */

.box-100-text {
    width: calc(100%);
    display: flex;
    flex-flow: column;
    justify-content: center;
    /* position: absolute; */
    /* background-color: transparent !important; */
top: 0;
width: 50%;
z-index: 10;
text-align: center;
background-color: rgba(0,0,0,0.25);
/* width: 100%;
height: 100%; */
}
.box-100-text .box-content p{
    font-size: 24px;
}

.main-start .box-100-text .box-content p{
    text-shadow: 1px 2px 4px rgba(0, 0, 0, .7);
}


section.section-header .box-100-text .item-action a {
    margin: 0 auto;
}


/* End of box 100-text */


/* BOX 100 img left/right */

.box-100-img-right {
    flex-flow: row-reverse;
}

.box-100-img-right,
.box-100-img-left {
    width: 100%;
    /* width:calc(100% - 30px); */
    /* margin: 15px; */
    display: flex;
    justify-content: center;
}

.box-100-img-right .box-content,
.box-100-img-left .box-content {
    margin: auto;
    width: 50%;
    padding: 100px 30px;
}

.box-100-img-right .box-image-container,
.box-100-img-left .box-image-container {
    width: 50%;
    position: relative;
    display: flex;
    padding-top: 35%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


/* End of BOX 100 img left/right */


/* Box 100-text-big-center */

.box-100-text-big-center {
    display: flex;
    width: calc(100% - 30px);
    margin: 15px;
    justify-content: center;
}

.box-100-text-big-center .box-content {
    display: flex;
    align-items: center;
    flex-direction: column;
}


/* Box 100 transparent */



.box-100-transparent {
    width: calc(100% - 30px);
    margin: 15px;
    width: 100%;
    background-color: transparent !important;
    position: absolute;
top: 30%;
z-index: 10000;
}

.box-100-transparent .box-content {
    width: 100%;
    padding: 25px 0;
}
.box-100-transparent .box-content p{
    font-size: 22px;
}

.box-100-transparent .item-action {
    display: flex;
}

.box-100-transparent .item-action div,
.box-100-transparent .item-action a {
    margin-right: 25px;
    font-size: 20px;
}


/* End of box 100 transparent */


/* box 25 */

.box-25 {
    width: 25%;
    width: calc(25% - 30px);
    margin: 15px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}


/* Box 33/50 */

.box-33,
.box-50 {
    width: 33.33%;
    width: calc(33.33% - 30px);
    margin: 15px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.box-50 {
    width: 50%;
    width: calc(50% - 30px);
}

.box-25 .box-image-wrapper,
.box-33 .box-image-wrapper,
.box-50 .box-image-wrapper {
    position: relative;
    overflow: hidden;
}

.box-25:hover .box-image-container,
.box-33:hover .box-image-container,
.box-50:hover .box-image-container {
    transform: scale(1.1);
}

.box-25 .box-image-container,
.box-33 .box-image-container,
.box-50 .box-image-container {
    padding-top: 65%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.box-25 .box-content,
.box-33 .box-content,
.box-50 .box-content {
    padding: 30px;
}


/* End of box 33 */


/* Box-100-object-wide */
:not(.box-100-object-wide ~ .box-100-object-wide).box-100-object-wide::after{
content: '';
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0,0,0,0.35);
position: absolute;
}

.box-100-object-wide {
    width: 100%;
    position: relative;
    height: 100vh;
    min-height: auto;
    scroll-snap-align: start;
}

.box-100-object-wide .box-image-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*  END Box-100-object-wide */


/* End of boxes */


/* ############################################################### */


/* MEDIA */

@media all and (max-width: 1250px) {
    /* Sections */
    section:first-of-type.section-parallax,
    section:first-of-type.section-parallax-layer {
        min-height: calc(100vh - 80px);
        height: auto;
    }
    /* End of sections */
    /* ############################################################### */
    /* ############################################################### */
    .box-100-transparent .box-content h2 {
        font-size: 42px;
    }
    .box-100-transparent .box-content>div p,
    .box-100-transparent .box-content>div:not(.item-action) span {
        font-size: 22px;
    }
}

@media all and (max-width: 960px) {
    /* Sections */
    section.section-header>div {
        padding: 75px 25px;
    }
    section:first-of-type.section-header>div,
    section:first-of-type.section-header>div {
        padding: 150px 25px;
    }
    section.section-header>div .section-text-wrapper p,
    section.section-header>div .section-text-wrapper a,
    section.section-header>div .section-text-wrapper span,
    section.section-header>div .section-text-wrapper li {
        font-size: 16px;
    }
    section.section-header>div .section-text-wrapper h1,
    section.section-header>div .section-text-wrapper h1>span {
        font-size: 24px;
    }
    section.section-header>div .section-text-wrapper h2,
    section.section-header>div .section-text-wrapper h2>span {
        font-size: 20px;
    }
    section.section-parallax,
    section.section-parallax-layer {
        min-height: 500px;
    }
    section:first-of-type.section-parallax .box-100-transparent .box-content h2,
    section:first-of-type.section-parallax-layer .box-100-transparent .box-content h2 {
        font-size: 32px;
    }
    section:first-of-type.section-parallax .box-100-transparent .box-content>div,
    section:first-of-type.section-parallax .box-100-transparent .box-content p,
    section:first-of-type.section-parallax-layer .box-100-transparent .box-content>div,
    section:first-of-type.section-parallax-layer .box-100-transparent .box-content p {
        font-size: 18px;
        line-height: 150%;
    }
    /* End of sections */
    /* ############################################################### */
    /* ############################################################### */
    .content-full {
        margin: 50px 0;
        padding: 0;
    }
    #info,
    .info {
        padding: 20px;
        margin: 50px 0;
    }
    .box-100-transparent .box-content h2 {
        font-size: 34px;
    }
    .box-100-transparent .box-content>div p,
    .box-100-transparent .box-content>div:not(.item-action) span {
        font-size: 20px;
    }
}

@media all and (max-width: 768px) {
    /* ############################################################### */
    /* ############################################################### */
    /* Sections */
    section.standard>div {
        padding: 0;
    }
    section.section-text>div .section-text-wrapper {
        width: 100%;
        width: calc(100% - 40px);
        margin: 0 20px;
    }
    section.section-text>div {
        width: 100%;
        margin: 0;
        border: none;
    }
    section.section-parallax,
    section.section-parallax-layer {
        background-attachment: unset !important;
        min-height: 400px;
    }
    section.section-parallax>div,
    section.section-parallax-layer>div {
        padding: 75px 0;
    }
    /* End of sections */
    /* ############################################################### */
    /* ############################################################### */
    /* Blocks */
    /* Box 100 text */
    .box-100-text {
        width: 100%;
        margin: 1.5rem 0;
    }
    .box-100-text .box-content {
        padding: 4rem 2rem;
    }
    /* End of box 100 text */
    /* Box 100 img left/right */
    .box-100-img-left {
        flex-flow: column;
    }
    .box-100-img-right {
        flex-flow: column;
    }
    .box-100-img-left .box-image-container,
    .box-100-img-right .box-image-container {
        padding-top: 65%;
        width: 100%;
    }
    .box-100-img-left,
    .box-100-img-right {
        width: 100%;
        margin: 1.5rem 0;
    }
    .box-100-img-right .box-content,
    .box-100-img-left .box-content {
        width: 100%;
        padding: 4rem 2rem;
    }
    /* End of box 100 img left/right */
    /* Box 100 transparent */
    .box-100-transparent {
        width: 100%;
        margin: 1.5rem 0;
    }
    .box-100-transparent .item-action div,
    .box-100-transparent .item-action a {
        margin-right: 25px;
        font-size: 18px;
    }
    .box-100-transparent .box-content {
        padding: 4rem 2rem;
    }
    .box-100-transparent .box-content h2 {
        font-size: 28px;
    }
    .box-100-transparent .box-content>div p,
    .box-100-transparent .box-content>div:not(.item-action) span {
        font-size: 18px;
    }
    /* End of box 100 transparent */
    /* Box */
    .box-25,
    .box-33,
    .box-50 {
        width: 100%;
        margin: 1.5rem 0;
    }
    .box-25 .box-content,
    .box-33 .box-content,
    .box-50 .box-content,
    .box-33-news .box-content {
        padding: 4rem 2rem;
    }
    /* End of box 33 */
    /* Box spacer */
    .box-spacer {
        height: 25px;
    }
    /* End of box spacer */
    /* End of blocks */
    /* ############################################################### */
    /* ############################################################### */
}

@media all and (max-width: 550px) {
    /* ############################################################### */
    /* ############################################################### */
    /* Sections */
    section.section-header>div {
        padding: 50px 15px;
    }
    section:first-of-type.section-header>div {
        padding: 100px 25px;
    }
    section.section-header>div .section-text-wrapper h1,
    section.section-header>div .section-text-wrapper h1>span {
        font-size: 22px;
    }
    section.section-header>div .section-text-wrapper h2,
    section.section-header>div .section-text-wrapper h2>span {
        font-size: 18px;
    }
    section.section-parallax,
    section.section-parallax-layer {
        min-height: 300px;
    }
    /* End of sections */
    /* ############################################################### */
    /* ############################################################### */
    .box-100-transparent .box-content h2 {
        font-size: 24px;
    }
    .box-100-transparent .box-content>div p,
    .box-100-transparent .box-content>div:not(.item-action) span {
        font-size: 14px;
    }
    .box-25 .box-content h2,
    .box-33 .box-content h2 {
        font-size: 18px;
        padding: 0;
    }
}