@font-face {
    font-family: 'unit';
    src: url('../Fonts/unit/UnitOT-Bold.otf');
    font-weight: bold;
    font-style: normal;
    font-display: block;
}

* {
    --color_green: #01604a;
    --color_orange: #F39100;
    --color_orange-light: #F39100A6;

    --font-size_extra-large: 60px;
    --font-size_large: 40px;
    --font-size_medium: 25px;
}

@media (max-width: 767px) {
    *{
        --font-size_extra-large: 45px;
        --font-size_large: 30px;
        --font-size_medium: 25px;
    }
}

.align-center {
    text-align: center;
}

a.btn:hover {
    color: white;
    background-color: var(--color_orange);
}

#content .ce-div + .grid {
    padding: 1rem 0 3rem 0;
    margin-top: 0;
}

@media only screen and (min-width: 1367px) and (orientation: landscape) {
    #content .grid + .grid {
        padding: 0 0 5rem 0;
        margin-top: -1.55rem;
    }
}

hr {
    height: 20px;
}


section#hero-image {
    padding: 0;
    width: 100%;
    height: 100svh;
    position: relative;
}

section#hero-image:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 50vh;
    top: 0;
    opacity: 1;
    transition: 2s all ease-in;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.76) 0%, rgba(255, 255, 255, 0.76) 50%, rgba(255, 255, 255, 0) 100%);
}

section#hero-image #disturber {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 99;
    background-color: var(--color_orange);
    transform: translateY(-50%);
    width: 70px;
    overflow: hidden;
    display: flex;
    justify-content: end;
    transition: .5s all ease;
    box-shadow: 0px 2px 10px #252424;
}

section#hero-image #disturber:hover {
    width: 300px;
}

section#hero-image #disturber a {
    display: flex;
    align-items: center;
    padding: .5rem 1rem;
}

section#hero-image #disturber a img {
    height: 45px;
    width: auto;
    max-width: unset;
}

section#hero-image #disturber span {
    color: white;
    padding-right: .5rem;
    white-space: nowrap;
    font-weight: lighter;
}

section#hero-image img.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section#hero-image .hero-content {
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    width: 100%;
}

section#hero-image .hero-content div.title {
    padding-bottom: 3rem;
}

section#hero-image .hero-content div.title h1.headline,
section#hero-image .hero-content div.title h1.headline + span {
    display: block;
    color: var(--color_green);
    background-color: white;
    margin-left: -25%;
    padding-left: 25%;
    padding-right: 1rem;
    margin-bottom: 1rem;
    width: fit-content;
    font-size: var(--font-size_extra-large);
    line-height: 1.25;
    font-weight: bold;
}
section#hero-image .hero-content div.title p.headline {
    margin-bottom: 1rem;
}

section#hero-image .hero-content .img-responsive {
    height: 100px;
    width: auto;
    padding: 1rem;
    background-color: white;
}

section#hero-image .hero-content .img-responsive:first-of-type{
    margin-left: -25%;
    padding-left: 25%;
}


@media only screen and (min-width: 1367px) and (orientation: landscape) {
    #content {
         margin-top: 0;
    }
}

section#content h2.headline ,
section#content h2.headline span,
section#content h3.headline ,
section#content h3.headline span{
    color: var(--color_green);
    font-size: var(--font-size_extra-large);
    line-height: 1.1;
    margin: 0;
}

section#content h3.headline {
    margin: 0 0 1.5rem 0;
}

section#content h2.headline span,
section#content h3.headline span {
    display: inline-block;
    color: var(--color_orange);
}

section#content h3.headline + span {
    color: var(--color_orange);
    font-size: var(--font-size_large);
    font-weight: 300;
    margin-top: 3rem;
    display: block;
    line-height: 1.3;
}

section#content h4 {
    font-size: var(--font-size_large) !important;
    font-weight: 300!important;
}

section#content ul {
    margin: 0;
}

section#content p,
section#content ul li {
    font-size: var(--font-size_medium);
    color: var(--color_green);
}


section#content div.bg-orange {
    background-color: var(--color_orange);
    padding: 2rem 1rem;
    height: 100%;
}

section#content div.bg-orange > * {
    color: white;
    font-weight: 300;
    line-height: 1.1;
}

section#content div.bg-orange > *:last-child {
    margin-bottom: 0;
}

section#content .bullets-orange-dark p.headline {
    border: 1px solid var(--color_orange);
    color: var(--color_orange);
    text-align: center;
    padding: .5rem 0;
    margin-bottom: 2.5rem;
}

section#content .bullets-orange-dark ul li {
    color: white!important;
    background-color: var(--color_orange);
    text-align: center;
    list-style-type: none;
    margin: 1rem 0;
    font-weight: 300;
}

section#content .bullets-orange-light p.headline {
    border: 1px solid var(--color_orange-light);
    color: var(--color_orange-light);
    text-align: center;
    padding: .5rem 0;
    margin-bottom: 2.5rem;
}

section#content .bullets-orange-light ul li {
    color: white!important;
    background-color: var(--color_orange-light);
    text-align: center;
    list-style-type: none;
    margin: 1rem 0;
    font-weight: 300;
}


section#content .img-responsive{
    width: 100%;
}

.slider {
    position: relative;
    margin-bottom: 5rem;
}

.slider .swiper-slide img {
    display: block;
    margin: auto;
    border: 1px solid #707070;
}

.slider .swiper-pagination {
    bottom: -3rem;
}

.slider .swiper-pagination-bullet {
    background-color: white;
    border: 1px solid var(--color_orange);
    width: 18px;
    height: 18px;
    opacity: 1;
}

.slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: var(--color_orange);
}


.slider .swiper-button-next,
.slider .swiper-button-prev {
    color: var(--color_orange);
    border: 2px solid var(--color_orange);
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.slider .swiper-button-next:after,
.slider .swiper-button-prev:after {
    font-size: var(--font-size_medium);;
}



/*MARQUEE*/
.marquee {
    position: relative;
    width: 100%;
    margin: 0rem 0 2rem 0;
}

@media only screen and (min-width: 1367px) and (orientation: landscape) {
    .marquee {
        position: relative;
        width: 100%;
        margin: -3rem 0 2rem 0;
    }
}

.marquee > div {
    display: flex;
    overflow: hidden;
    grid-column-gap: 0rem;
}

.marquee figure {
    min-width: 100%;
    grid-column-gap: 0rem;
    flex: none;
    justify-content: space-around;
    display: flex;
    animation: marquee 80s linear infinite;
}

.marquee figure .marquee-img {
    -webkit-transform: translateZ(0);
    max-height: 3rem;
    display: flex;
    align-items: center;
}

.marquee figure .marquee-img img {
    height: 100%;
    width: auto;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-100% - 1rem));
    }
}

