/*fonts*/

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-ExtraBoldItalic.woff2') format('woff2'),
    url('../fonts/OpenSans-ExtraBoldItalic.woff') format('woff'),
    url('../fonts/OpenSans-ExtraBoldItalic.ttf') format('truetype'),
    url('../fonts/OpenSans-ExtraBoldItalic.svg#OpenSans-ExtraBoldItalic') format('svg');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Italic.woff2') format('woff2'),
    url('../fonts/OpenSans-Italic.woff') format('woff'),
    url('../fonts/OpenSans-Italic.ttf') format('truetype'),
    url('../fonts/OpenSans-Italic.svg#OpenSans-Italic') format('svg');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-BoldItalic.woff2') format('woff2'),
    url('../fonts/OpenSans-BoldItalic.woff') format('woff'),
    url('../fonts/OpenSans-BoldItalic.ttf') format('truetype'),
    url('../fonts/OpenSans-BoldItalic.svg#OpenSans-BoldItalic') format('svg');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Light.woff2') format('woff2'),
    url('../fonts/OpenSans-Light.woff') format('woff'),
    url('../fonts/OpenSans-Light.ttf') format('truetype'),
    url('../fonts/OpenSans-Light.svg#OpenSans-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-LightItalic.woff2') format('woff2'),
    url('../fonts/OpenSans-LightItalic.woff') format('woff'),
    url('../fonts/OpenSans-LightItalic.ttf') format('truetype'),
    url('../fonts/OpenSans-LightItalic.svg#OpenSans-LightItalic') format('svg');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-ExtraBold.woff2') format('woff2'),
    url('../fonts/OpenSans-ExtraBold.woff') format('woff'),
    url('../fonts/OpenSans-ExtraBold.ttf') format('truetype'),
    url('../fonts/OpenSans-ExtraBold.svg#OpenSans-ExtraBold') format('svg');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.woff2') format('woff2'),
    url('../fonts/OpenSans-Regular.woff') format('woff'),
    url('../fonts/OpenSans-Regular.ttf') format('truetype'),
    url('../fonts/OpenSans-Regular.svg#OpenSans-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-SemiBoldItalic.woff2') format('woff2'),
    url('../fonts/OpenSans-SemiBoldItalic.woff') format('woff'),
    url('../fonts/OpenSans-SemiBoldItalic.ttf') format('truetype'),
    url('../fonts/OpenSans-SemiBoldItalic.svg#OpenSans-SemiBoldItalic') format('svg');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-SemiBold.woff2') format('woff2'),
    url('../fonts/OpenSans-SemiBold.woff') format('woff'),
    url('../fonts/OpenSans-SemiBold.ttf') format('truetype'),
    url('../fonts/OpenSans-SemiBold.svg#OpenSans-SemiBold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Bold.woff2') format('woff2'),
    url('../fonts/OpenSans-Bold.woff') format('woff'),
    url('../fonts/OpenSans-Bold.ttf') format('truetype'),
    url('../fonts/OpenSans-Bold.svg#OpenSans-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

/*variables*/

:root {
    --orange: #F37321;
    --lightorange: #F7943A;
    --black: #231F20;
    --white: #FFFFFF;
    --lightgrey: #F7F7F7;
    --lightgrey-2: #F0F0F0;
    --shadow: #00000029;
    --date: #707070;
    --placeholder: #DEDEDE;
}

/*Basic Styling*/

html, body {
    font-family: 'Open Sans', Arial, sans-serif;
    color: var(--black);
    background-color: var(--white);
}

body {
    background-image: url(../img/website/background.png);
    background-repeat: repeat-y;
    background-size: cover;
    background-position-y: 150px;
}

body.static, html.static {
    overflow-y: hidden;
    position: relative;
}

#wpforms-1895-field_1{
    width: 100% !important;
}
#wpforms-1895-field_1-container{
    width: 100% !important;
}
.page {
    overflow-x: hidden;
}

.bg-orange {
    background-color: var(--orange)!important;
}

.bg-black {
    background-color: var(--black)!important;
}

.bg-lightgrey {
    background-color: var(--lightgrey)!important;
}

.bg-lightorange {
    background-color: var(--lightorange)!important;
}

.bg-lightgrey-2 {
    background-color: var(--lightgrey-2)!important;
}

.bg-white {
    background-color: var(--white)!important;
}

.color-white {
    color: var(--white)!important;
}

.color-orange {
    color: var(--orange)!important;
}

.color-lightorange {
    color: var(--lightorange)!important;
}

.btn {
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    border-radius: 5px;
    border: 0;
    transition: all 250ms ease-in-out;
}


div.wpforms-container-full .wpforms-form input[type=submit], div.wpforms-container-full .wpforms-form button[type=submit], div.wpforms-container-full .wpforms-form .wpforms-page-button{
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    border-radius: 5px;
    border: 0;
    transition: all 250ms ease-in-out;
    background-color: var(--orange)!important;
color:#FFFFFF;

}
.btn-black {
    background-color: var(--black);
    color: var(--white);
}

.btn-xl{
    font-size: 22px;
    padding: 12px;
}

.btn-black:hover {
    background-color: var(--lightorange);
    color: var(--black);
}

.btn-black:focus {
    box-shadow: 0 0 0 0.2rem rgba(128,128,128,.5);
}

.btn-black:hover:focus {
    box-shadow: 0 0 0 0.2rem rgba(255,176,105,.5);
}

.btn-orange {
    background-color: var(--orange);
    color: var(--white);
}

.btn-orange:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-orange:focus {
    box-shadow: 0 0 0 0.2rem rgba(240,142,80,.5);
}

.btn-orange:hover:focus {
    box-shadow: 0 0 0 0.2rem rgba(128,128,128,.5);
}

h2.title-medium {
    font-weight: bold;
    font-size: 28px;
    line-height: 1;
}

@media only screen and (min-width: 768px) {
    h2.title-medium {
        font-size: 50px;
    }
}

h2.title-small {
    font-weight: bold;
    font-size: 24px;
}

@media only screen and (min-width: 768px) {
    h2.title-small {
        font-size: 40px;
    }
}

h2.title-smaller {
    font-weight: bold;
    font-size: 30px;
}

/*Bootstrap xxl-support*/

@media only screen and (min-width:1440px) {
    .container {
        max-width: 1400px;
    }

    .col-xxl-1 {
        max-width: 8.333333333333333%;
        flex: 0 0 8.333333333333333%;
        -ms-flex: 0 0 8.333333333333333%;
    }

    .col-xxl-2 {
        max-width: 16.66666666666667%;
        flex: 0 0 16.66666666666667%;
        -ms-flex: 0 0 16.66666666666667%;
    }

    .col-xxl-3 {
        max-width: 25%;
        flex: 0 0 25%;
        -ms-flex: 0 0 25%;
    }

    .col-xxl-4 {
        max-width: 33.33333333333333%;
        flex: 0 0 33.33333333333333%;
        -ms-flex: 0 0 33.33333333333333%;
    }

    .col-xxl-5 {
        max-width: 41.66666666666667%;
        flex: 0 0 41.66666666666667%;
        -ms-flex: 0 0 41.66666666666667%;
    }

    .col-xxl-6 {
        max-width: 50%;
        flex: 0 0 50%;
        -ms-flex: 0 0 50%;
    }

    .col-xxl-7 {
        max-width: 58.33333333333333%;
        flex: 0 0 58.33333333333333%;
        -ms-flex: 0 0 58.33333333333333%;
    }

    .col-xxl-8 {
        max-width: 66.66666666666667%;
        flex: 0 0 66.66666666666667%;
        -ms-flex: 0 0 66.66666666666667%;
    }

    .col-xxl-9 {
        max-width: 75%;
        flex: 0 0 75%;
        -ms-flex: 0 0 75%;
    }

    .col-xxl-10 {
        max-width: 83.33333333333333%;
        flex: 0 0 83.33333333333333%;
        -ms-flex: 0 0 83.33333333333333%;
    }

    .col-xxl-11 {
        max-width: 91.66666666666667%;
        flex: 0 0 91.66666666666667%;
        -ms-flex: 0 0 91.66666666666667%;
    }

    .col-xxl-12 {
        max-width: 100%;
        flex: 0 0 100%;
        -ms-flex: 0 0 100%;
    }

    .offset-xxl-0 {
        margin-left: 0;
    }

    .offset-xxl-1 {
        margin-left: 8.333333333333333%;
    }

    .offset-xxl-2 {
        margin-left: 16.66666666666667%;
    }

    .offset-xxl-3 {
        margin-left: 25%;
    }

    .offset-xxl-4 {
        margin-left: 33.33333333333333%;
    }

    .offset-xxl-5 {
        margin-left: 41.66666666666667%;
    }

    .offset-xxl-6 {
        margin-left: 50%;
    }

    .offset-xxl-7 {
        margin-left: 58.33333333333333%;
    }

    .offset-xxl-8 {
        margin-left: 66.66666666666667%;
    }

    .offset-xxl-9 {
        margin-left: 75%;
    }

    .offset-xxl-10 {
        margin-left: 83.33333333333333%;
    }

    .offset-xxl-11 {
        margin-left: 91.66666666666667%;
    }

    .offset-xxl-12 {
        margin-left: 100%;
    }
}

/*header*/

.header {
    height: 75px;
    background-color: var(--white);
    position: sticky;
    top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
    display: flex;
    align-items: center;
    box-shadow: 0 0 5px #00000026;
    z-index: 100;
}

@media only screen and (min-width: 768px) {
    .header {
        position: fixed;
        top: 30px;
        left: 50px;
        padding: 0;
        height: unset;
        background-color: transparent;
        box-shadow: none;
    }
}

.headerlogo {
    transition: transform 250ms ease, clip-path 150ms ease;
    clip-path: polygon(50% 0%, 100% 0, 100% 100%, 0 100%, 0 0);
}

@media only screen and (min-width: 768px) {

    .headerlogo.scroll-out {

        transform: translateX(calc(-100% + 30px));
        clip-path: polygon(67% 0, 100% 0, 100% 100%, 60% 100%, 67% 67%);
    }

    .headerlogo.scroll-out img{

        height: 70px !important;
    }

}

.headerlogo img {
    height: 120px;
}
.headerlogo.home img {
    height: 180px;
}

@media only screen and (max-width: 1200px) {

    .headerlogo img {
        height: 115px;
    }

    .headerlogo.home img {
        height: 115px;
    }
}


@media only screen and (max-width: 787px) {

    .headerlogo img {
        height: 85px;
    }

    .headerlogo.home img {
        height: 85px;
    }
}

@media only screen and (min-width: 768px) {

    .headerlogo img {
        max-height: unset;
    }
}

.support {
    position: absolute;
    right: 0;
    top: 100px;
    font-weight: bold;
    font-size: 18px;
    line-height: 24px;
    color: var(--white) !important;
    text-decoration: none!important;
    background-color: var(--orange);
    padding: 15px;
    height: 54px;
    transition: 250ms all ease;
    z-index: 100;
}

@media only screen and (max-width: 768px) {
    .support {
        top: 160px;
        font-size: 11px;
    }
}

.support:hover {
    /* background-color: var(--lightorange); */
}

.support::after {
    content: '';
    right: 100%;
    position: absolute;
    height: 54px;
    width: 38px;
    top: 0;
    background-image: url(../img/website/support_x.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.hamburger {
    display: flex;
    display: -webkit-flex;
    align-items: center;
    justify-content: center;
    height: 75px;
    width: 75px;
    z-index: 200;
    position: fixed;
    top: 0;
    right: 0;
    background-color: var(--black);
    transition: 150ms background ease;
    box-shadow: 0px 3px 6px #00000041;
    cursor: pointer;
}

@media only screen and (min-width: 768px) {
    .hamburger {
        top: 40%;
        left: 0;
        right: unset;
    }
}

.bar1 {
    margin: 8px auto;
    width: 44px;
    background-color: var(--lightorange);
}

.bar2 {
    opacity: 1;
    width: 32px;
    margin: 8px auto;
    background-color: var(--orange);
}

.bar1, .bar2 {
    height: 8px;
    -webkit-transition: transform .4s ease, opacity .4s ease, margin .2s ease, width .2s ease;
    -moz-transition: transform .4s ease, opacity .4s ease, margin .2s ease, width .2s ease;
    -o-transition: transform .4s ease, opacity .4s ease, margin .2s ease, width .2s ease;
    transition: transform .4s ease, opacity .4s ease, margin .2s ease, width .2s ease;
}

.active .bar1 {
    -webkit-transform: rotate(45deg) translate(7px, 7px);
    -moz-transform: rotate(45deg) translate(7px, 7px);
    -o-transform: rotate(45deg) translate(7px, 7px);
    transform: rotate(45deg) translate(7px, 7px);
    z-index: 1;
    position: relative;
}

.active .bar2 {
    width: 44px;
    -webkit-transform: rotate(-45deg) translate(5px, -4px);
    -moz-transform: rotate(-45deg) translate(5px, -4px);
    -o-transform: rotate(-45deg) translate(5px, -4px);
    transform: rotate(-45deg) translate(5px, -4px);
}

.hamburger.active {
    background-color: var(--white);
}

.menu {
    position: fixed;
    width: 100vw;
    bottom: 0;
    right: 100%;
    top: 0;
    z-index: 100;
    transition: 150ms right ease;
    overflow-y: scroll;
    background-color: #000000e8;
}

.menu.open {
    right: 0;
}

.menu-subtitle {
    font-weight: bold;
    font-size: 20px;
    line-height: 27px;
    color: var(--orange);
    text-decoration: none!important;
    transition: 200ms all ease;
    display: inline-block;
}

.menu-subtitle:hover {
    color: var(--white);
}

.menu-items a:not(.menu-subtitle) {
    font-size: 20px;
    line-height: 42px;
    color: var(--white);
    text-decoration: none!important;
    transition: 200ms all ease;
}

.menu-items a:not(.menu-subtitle):hover {
    color: var(--lightorange);
}

.menu-items, .menu-top, .menu-bottom {
    position: relative;
    z-index: 10;
}

.menu-items ul {
    list-style: none;
    padding-left: 0;
}

.menu input {
    border-radius: 0;
    border: 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2.1px;
    transition: 350ms all ease;
    width: 200px;
}

.menu input::placeholder {
    text-transform: uppercase;
    color: var(--placeholder);
    letter-spacing: 2.1px;
    font-size: 14px;
}

.menu .form-control:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(240,142,80,.5);
}

.menu button {
    background-color: var(--orange);
    color: var(--white);
    border: 0;
    font-size: 22px;
    padding-left: 8px;
    padding-right: 8px;
    transition: 350ms all ease;
    z-index: 10;
    overflow: hidden;
}

.menu button:hover {
    background-color: var(--lightorange);
}

.menu button:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(240,142,80,.5);
}

.menu-bottom a {
    font-weight: bold;
    font-size: 18px;
    line-height: 19px;
    letter-spacing: 2.1px;
    text-transform: uppercase;
    color: var(--white);
    transition: 200ms all ease;
    text-decoration: none!important;
    display: inline-block;
}

.menu-bottom a:hover {
    color: var(--lightorange);
}

.menu-bottom a::before {
    content: '';
    position: absolute;
    right: calc(100% + 10px);
    background: transparent;
    box-sizing: border-box;
    width: 0;
    height: 20px;
    border-color: transparent transparent transparent var(--white);
    transition: 200ms all ease;
    cursor: pointer;
    border-style: solid;
    border-width: 10px 0 10px 20px;
}

.menu-bottom a:hover:before {
    transform:rotateZ(90deg);
    border-color: var(--white); var(--white); var(--white); var(--white);
}


/*hero-home*/

.hero.home h1.hero-title {
    color: var(--white);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 45px;
    line-height: 50px;
    letter-spacing: 6px;
    z-index: 2;
}

.hero.home h1.hero-title span {
    font-weight: 600;
    position: absolute;
    left: 0;
    bottom: -100%;
    white-space: nowrap;
    font-size: 24px;
}

.hero-background-image {
    max-height: 700px;
    width: 100%;
    object-fit: cover;
    position: relative;
    min-height: 400px;
}
@media only screen and (max-width: 787px) {
    video.hero-background-image {
        min-height: inherit;
        max-height: inherit;
        height: 250px;
    }

}

.hero-background::before {
    content: '';
    position: absolute;
    mix-blend-mode: luminosity;
    opacity: 0.1;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
}

.hero-background::after {
/*content: url(../img/website/hero_grid.png);*/
 position: absolute;
 left: 0;
 top: 0;
 width: 100%;
 height: 100%;
 object-fit: cover;
}

@media only screen and (min-width: 768px) {
 .hero.home h1.hero-title span {
     left: 25%;
     white-space: nowrap;
     bottom: -75px;
     font-size: inherit;
 }



 .hero-background-image {
     width: calc(100% - 100px);
 }
}

@media only screen and (min-width: 992px) {
 .hero.home h1.hero-title {
     font-size: 60px;
     line-height: 70px;
     letter-spacing: 9px;
 }

 .hero-background {
    /*hclip-path: polygon(22% 0%, 100% 0, 100% 100%, calc(100vw / 4.50) 100%, 9% 50%);*/
     clip-path: polygon(22% 0%, 100% 0, 100% 100%, 379px 100%, 153px 50%);
  }
 }

 /*hero*/

.breadcrumb {
    background-color: transparent;
    padding: 0.75rem 0;
}

.breadcrumb-item, .breadcrumb-item a {
    color: var(--black)!important;
    font-size: 14px;
}

.breadcrumb-item.active {
    font-weight: bold;
}

.hero.alt h1.hero-title {
    color: var(--orange);
    font-weight: bold;
    font-size: 50px;
    line-height: 60px;
}
@media only screen and (max-width: 787px) {
    .hero.alt h1.hero-title {
        font-size: 30px;
        line-height: 35px;
    }
}
.hero.alt h2.hero-title {
    color: var(--white);
    font-weight: bold;
    font-size: 50px;
    line-height: 60px;
}

@media only screen and (max-width: 787px) {

    .hero.alt h2.hero-title {

        font-size: 30px;
        line-height: 35px;
    }
}

.hero.alt .hero-top p {
    font-size: 14px;
    line-height: 20px;
    color: var(--black);
}

.hero.alt .hero-background-alt img {
    max-height: 600px;
    width: 100%;
    object-fit: cover;
    position: relative;
    min-height: 540px;
}
@media only screen and (max-width: 787px) {

    .hero.alt .hero-background-alt img {
        max-height:  inherit;
        height: 250px;
        min-height:inherit;
    }
}

.hero.alt .hero-background-alt video {
    max-height: 600px;
    width: 100%;
    object-fit: cover;
    position: relative;
    min-height: 540px;
}

@media only screen and (min-width: 992px) {
    .hero.alt .hero-background-alt img {
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    }
    .hero.alt .hero-background-alt video {

        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    }
}

.hero.alt .hero-bottom p {
    font-size: 14px;
    line-height: 20px;
    color: var(--white);
}

.hero-links {
    list-style: none;
    padding-left: 0;
    position: relative;
    z-index: 20;
    top: 50px;
}

.hero-links li {
    margin-right: 15px;
    margin-bottom: 15px;
}

.hero-links-container {
    left: 0;
}

@media only screen and (min-width: 768px) {
    .hero-links {

    }

    .hero-links-container {
        right: 50px;
        left: unset;
    }
}

@media only screen and (min-width: 1200px) {

    .hero-links li {
        margin-right: 15px;
    }

    .hero-links .btn-orange {
        width: unset;
    }
}

.hero-links .btn-orange {
    font-size: 14px;
    width: 100%;
}

.hero-links .btn-orange:hover {
    background-color: var(--lightorange);
    color: var(--white);
}

.hero-links .btn-orange:hover:focus {
    box-shadow: 0 0 0 0.2rem rgba(240,142,80,.5);
}

/*footer*/

.footer-top {
    background-color: var(--white);
}

.footer-top-details ul {
    list-style: none;
    padding-left: 0;
}

.footer-top-details ul li:first-child {
    font-weight: bold;
    font-size: 14px;
    line-height: 20px;
}

.footer-top-details ul li {
    font-size: 14px;
    line-height: 19px;
    color: var(--black);
}

.footer-bottom {
    background-color: var(--lightgrey-2);
    overflow: hidden;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    width: 150px;
    left: 50%;
    top: -150px;
    bottom: -150px;
    background-color: var(--white);
    transform:rotateZ(30deg);
    z-index: 0;
}

.footer-bottom p {
    margin-bottom: 0;
}

.footer-bottom-details .contact-links i {
    font-size: 14px;
    line-height: 20px;
    color: var(--black);
}

.footer-bottom-details a {
    font-size: 14px;
    line-height: 20px;
    color: var(--orange);
}

.footer-bottom-details .socialmedia i {
    font-size: 24px;
    line-height: 28px;
    color: var(--black);
}

.footer-bottom-details .socialmedia a i {
    transition: 200ms all ease;
}

.footer-bottom-details .socialmedia a:hover i {
    color: var(--orange);
}

.footer-bottom .footer-navigation a {
    font-size: 14px;
    line-height: 17px;
    color: var(--lightorange);
}

.footer-bottom .footer-logo img {
    max-width: 100%;
}

.footer-bottom-links a, .footer-bottom-links span {
    font-size: 10px;
    letter-spacing: 1.5px;
    color: var(--black);
    text-transform: uppercase;
    white-space: nowrap;
}

/*categories*/

.categories .title {
    font-weight: bold;
    font-size: 40px;
    line-height: 45px;
}

@media only screen and (min-width: 992px) {
    .categories .title {
        font-size: 62px;
        line-height: 1.2;
    }
}

.category-banner-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    transition: 250ms all ease;
}

.category-banner-container:hover::before {
    left: 0;
}

.category-banner .arrow-link {
    color: var(--black);
    font-weight: bold;
    font-size: 21px;
    line-height: 20px;
    text-transform: lowercase;
    transition: 250ms all ease;
}

.category-banner .arrow-container {
    overflow: hidden;
}

.category-banner .arrow {
    transition: 500ms all ease;
}

.category-banner-container:hover .arrow {
    transform: translateX(54px);
}

.category-banner-container:hover .arrow-link {
    color: var(--white);
}

.category-box {
    height: 300px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-decoration: none!important;
}

.category-box::after {
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(180deg, #231F2000 0%, #000000 100%) 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
    opacity: 0.3;
    transition: 1.5s all ease;
}

.category-box:hover:after {
    background: transparent linear-gradient(180deg, #231F2000 0%, var(--orange) 100%) 0% 0% no-repeat padding-box;
    opacity: 1;
}

.category-box img {
    position:absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-content {
    position: relative;
    z-index: 10;
}

.category-content h3 {
    color: var(--white);
    font-weight: bold;
    font-size: 30px;
    line-height: 41px;
    letter-spacing: 4.5px;
}

.category-content p {
    color: var(--white);
    font-weight: bold;
    font-size: 12px;
    line-height: 20px;
    text-transform: lowercase;
}

.category-box .arrow-container {
    width: 26px;
    overflow: hidden;
}

.categories .arrow {
    display: inline-block;
    position: relative;
    font-size: 24px;
}

.category-box .arrow {
    transition: 1s all ease;
}

.category-box:hover .arrow {
    transform: translateX(54px);
}

.categories .arrow::after {
    content: '\f30b';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    color: var(--orange);
    z-index: 20;
    font-size: inherit;
    left: -27px;
}

.categories .arrow::before {
    content: '\f30b';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    color: var(--lightorange);
    z-index: 20;
    font-size: inherit;
    left: -54px;
}

.category-box .arrow::after {
    line-height: 1;
}

.category-box .arrow::before {
    line-height: 1;
}


.categories .white-x {
    top: 0;
    right: 80px;
    height: 100%;
    width: 200px;
    perspective: 1000px;
}

.categories .white-x .stripe-1 {
    position: absolute;
    top: -50px;
    width: 30px;
    height: 0;
    bottom: -50px;
    background-color: transparent;
    transform: rotateZ(-40deg) rotateX(30deg) rotateY(-32deg);
    clip-path: polygon(20% 0%, 80% 0%, 100% 100%, 0% 100%);
    transition: height 50ms ease 400ms;
}

.categories .white-x .stripe-2 {
    position: absolute;
    top: -50px;
    width: 30px;
    height: 0;
    bottom: -50px;
    background-color: transparent;
    transform: rotateZ(40deg) rotateX(-30deg) rotateY(150deg);
    clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
    transition: height 50ms ease 500ms;
}

.category-banner-container:hover .stripe-1, .category-banner-container:hover .stripe-2 {
    height: calc(100% + 100px);
}

@media only screen and (min-width:768px) {

    .categories .category-box-container:nth-child(1) .category-box {
        margin-right: -30px;
        clip-path: polygon(82% 0, 100% 50%, 82% 100%, 0 100%, 0 0);
        transition: 250ms all ease;
    }

    .categories .category-box-container:nth-child(2) .category-box {
        margin-left: -30px;
        margin-right: -30px;
        clip-path: polygon(4% 0, 96% 0, 80% 50%, 96% 100%, 4% 100%, 20% 50%);
        transition: 250ms all ease;
    }

    .categories .category-box-container:nth-child(3) .category-box {
        margin-left: -30px;
        clip-path: polygon(18% 0, 100% 0, 100% 100%, 18% 100%, 0 50%);
        transition: 250ms all ease;
    }

    .categories .category-box-container:nth-child(2):hover .category-box {
        clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    }

    .categories .category-box-container:nth-child(1).shift .category-box {
        clip-path: polygon(100% 0, 75% 50%, 100% 100%, 0 100%, 0 0);
    }

    .categories .category-box-container:nth-child(3).shift .category-box {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 25% 50%);
    }
}

/*quote-banner*/

.quote-banner {

}

.quote-banner blockquote {
    font-style: italic;
    font-size: 18px;
    line-height: 35px;
    color: var(--lightorange);
    letter-spacing: 0.9px;
}

.quote-banner .quote-name {
    font-style: italic;
    font-size: 24px;
    line-height:28px;
    color: var(--white);
    letter-spacing: 1.2px;
}

.quote-banner .quote-function {
    font-style: italic;
    font-size: 18px;
    line-height: 28px;
    color: var(--orange);
    letter-spacing: 0.9px;
}

.quote-photo::before {
    content:url("../img/website/parentheses.svg");
    position: absolute;
    left: 60px;
    top: -20px;
}

.quote-photo img {
    max-width: 100%;
    object-fit:cover;
}

@media only screen and (min-width:768px) {
    .quote-photo img {
        clip-path: polygon(29% 0, 100% 0, 100% 100%, 25% 100%, 4% 52%);
    }

    .quote-photo::before {
        left: 0;
        top: 5%
    }
}

.owl-quotes .owl-stage, .owl-timeline .owl-stage {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.owl-quotes .owl-item, .owl-timeline .owl-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: auto !important;
}

.owl-quotes .item, .owl-timeline .item {
    display: flex;
    flex: 1 0 100%;
    height: 100%;
    justify-content: space-between;
    flex-direction:column;
}

.owl-timeline .owl-nav{

    position: absolute;
    width: 100%;
    margin-top: -74px;
}
.owl-timeline .owl-nav .owl-prev{
    float:left;
}

.owl-timeline .owl-nav .owl-next{
    float:right;
}

.owl-timeline .disabled{
    display: none !important;
}

.owl-timeline .owl-nav .owl-next , .owl-timeline .owl-nav .owl-prev{
    background-color: black !important;
    width: 40px;
    color:#FFF;
    height: 40px;
}

.owl-timeline .owl-nav .owl-next span, .owl-timeline .owl-nav .owl-prev span{
    color:#FFF;

}

.quote-text-container {
    flex: 1 0 auto;
}

.quote-photo-container {
    flex: 0 0 auto;
}

@media only screen and (min-width: 768px) {

    .owl-quotes .item {
        flex-direction: row;
    }

}

.quote-banner .slider-tabs-container {
    position: absolute; /*Can be changed to position-relative. If the item should still fall within the content of the carousel, set the row to flex-nowrap, and translate this item left -100%. Remove the top, bottom and right properties. */
    z-index: 10;
    left: 0;
    top: 50%;
    bottom:0;
    pointer-events: none;
}

@media only screen and (min-width:768px) {
    .quote-banner .slider-tabs-container {
        left: unset;
        right:0;
        top:0;
        bottom:0;
    }
}

.image-slider-tabs.vertical {
    height: 100%;
}

.vertical .image-tab {
    width: 15px;
    min-height: calc(100% / 6);
    margin: 0;
    padding: 7.5px 0;
    display: flex;
    justify-content: center;
}

.image-tab {
    flex-grow: 0;
    flex-basis: auto;
}

.image-tab-content {
    background-color: var(--white);
    height: 5px;
}

.image-tab-content.alt {
    height: 100%;
    width: 5px;
}

.image-tab-content.alt .image-tab-inner-content {
    height: 0;
    width: 100%;
    max-height: 100%;
}

.fillheight {
    -webkit-animation-name: fillheight;
    animation-name: fillheight;
}

.fillwidth, .fillheight {
    -webkit-animation-duration: 7s;
    animation-duration: 7s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.image-tab-inner-content {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background-color: var(--orange);
    width: 0;
    max-width: 100%;
}

@keyframes fillheight {
    0% {
        height: 0;
    }
    100% {
        height: 100%;
    }
}

.full {
    height: 100%!important;
}

/*news*/

.news {

}

.news .article h3 {
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    color: var(--black);
    transition: 250ms all ease;
}

.news .article p {
    font-size: 14px;
    line-height: 20px;
    color: var(--black);
    margin-bottom: 0;
    transition: 250ms all ease;
}

.news .article .date {
    font-weight: 300;
    font-size: 10px;
    line-height: 14px;
    color: var(--date);
}

.news .article .arrow-link {
    font-weight: bold;
    font-size: 17px;
    line-height: 20px;
    color: var(--black);
    text-transform: lowercase;
    transition: 250ms all ease;
}

.news .article .arrow {
    position: relative;
    font-size: 24px;
    transition: 1s all ease;
}

.news .article .arrow-container {
    overflow: hidden;
}

.news .article .arrow::after {
    content: '\f30b';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    color: var(--orange);
    z-index: 20;
    font-size: inherit;
    left: -27px;
    line-height: 1;
}

.news .article .arrow::before {
    content: '\f30b';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    color: var(--lightorange);
    z-index: 20;
    font-size: inherit;
    left: -54px;
    line-height: 1;
}

.news .article-content-container:hover .arrow  {
    transform: translateX(54px);
}

.news .article-content-container {
    overflow: hidden;
}

.news .article-content-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    transition: 250ms all ease;
}

.news .article-content-container:hover::before {
    left: 0;
}

.news .article-content-container:hover h3 {
    color: var(--orange);
}

.news .article-content-container:hover p, .news .article-content-container:hover .arrow-link {
    color: var(--white);
}



/*events*/

.events {

}

.event-content-box {
    height: 360px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-decoration: none!important;
}

.event-content {
    position: relative;
}

.events h3 {
    font-size: 16px;
    line-height: 22px;
    color: var(--white);
    font-weight: bold;
}

.events p {
    font-size: 14px;
    line-height: 19px;
    letter-spacing: 2.1px;
    color: var(--orange);
    text-transform: uppercase;
}

.event-content-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(180deg, #231F2000 0%, #000000 100%) 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
    border-radius: 5px;
}

.event-content-box:hover:after {
    background: transparent linear-gradient(180deg, #231F2000 0%, var(--orange) 100%) 0% 0% no-repeat padding-box;
}

.event-content {
    position: relative;
    z-index: 10;
}

.events .arrow-link {
    font-weight: bold;
    font-size: 12px;
    line-height: 20px;
    color: var(--white);
    text-transform: lowercase;
    transition: 250ms all ease;
}

.events .arrow-container {
    overflow: hidden;
}

.events .arrow {
    position: relative;
    font-size: 24px;
    transition: 1s all ease;
    color: var(--white);
}

.events .arrow::before {
    content: '\f30b';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    color: var(--lightorange);
    z-index: 20;
    font-size: inherit;
    left: -54px;
    line-height: 1;
}

.events .arrow::after {
    content: '\f30b';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    color: var(--orange);
    z-index: 20;
    font-size: inherit;
    left: -27px;
    line-height: 1;
}

.events .event-content-container:hover .arrow {
    transform: translateX(54px);
}

/*x-banner*/

.x-banner {

}

.x-banner p {
    font-size: 16px;
    line-height: 24px;
    color: var(--white);
}

.black-x {
    position: absolute;
    height: calc(100% + 1px);
    width: auto;
    top: -1px;
    right: calc(100% - 1px);
}

@media only screen and (max-width: 767px) {

    .x-banner-text-container::before {
        content: '';
        position: absolute;
        left: -100%;
        height: 100%;
        top: 0;
        width: 100%;
        background-color: var(--black);
    }
}

.x-banner-text-container::after {
    content: '';
    position: absolute;
    right: -100%;
    height: 100%;
    top: 0;
    width: 100%;
    background-color: var(--black);
}

.x-banner-text-container .btn-orange, .advantages .btn-orange {
    position: absolute;
    bottom: -17px;
}
@media only screen and (max-width: 787px) {

    .x-banner-text-container .btn-orange, .advantages .btn-orange {
        position: relative;
        bottom: inherit;
    }
}

.x-banner-text-container .btn-orange:hover {
    background-color: var(--lightorange)!important;
}

.x-banner-text-container .btn-orange:hover:focus {
    box-shadow: 0 0 0 0.2rem rgba(240,142,80,.5);
}

/*customers*/

.customers {

}

.customers .title {
    color: var(--black);
    font-weight: bold;
    font-size: 30px;
    line-height: 41px;
}

@media only screen and (min-width: 576px) {

    .customers > .container .row {
        margin-bottom: -100px;
    }
}

.owl-customers-image {
    width: auto!important;
    height:100%;
    object-fit:contain;
    margin:0 auto;
    max-width:100%;
}

.certificeringen {
    background-color: var(--lightgrey);
    border-radius: 5px;
    position: relative;
    z-index: 10;
}

.certificeringen::after {
    content: '';
    position: absolute;
    left: -2px;
    width: 2px;
    height: 150px;
    background-color: var(--placeholder);
}

@media only screen and (min-width: 576px) {
    .certificeringen-container {
        margin-left: -50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media only screen and (min-width: 768px) {
    .certificeringen-container {
        margin-left: -33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media only screen and (min-width: 992px) {

    .certificeringen-container {
        margin-left: -25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media only screen and (min-width: 1200px) {

    .certificeringen-container {
        margin-left: -20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

.customers h3 {
    color: var(--black);
    font-weight: bold;
    font-size: 20px;
    line-height: 27px;
    text-transform: lowercase;
}

/*comic*/

.comic {

}

.comic-subtitle {
    color: var(--orange);
    font-size: 14px;
    line-height: 19px;
    text-transform: uppercase;
    letter-spacing: 2.1px;
    font-weight: normal;
    position: absolute;
    left: 0;
    bottom: -50px;
}

@media only screen and (min-width:992px) {
    .comic-subtitle {
        left: 80%;
        white-space: nowrap;
        bottom: -30px;
    }
}


.owl-comic .nav-dots-container {
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin: 15px auto;
}

.owl-comic .nav-dots-prev, .nav-dots-next {
    color: var(--black)!important;
    text-decoration: none!important;
    font-size: 42px;
    transition: 250ms all ease!important;
    border-radius: 3px;
}

.owl-comic .nav-dots-prev:focus, .nav-dots-next:focus {
    box-shadow: 0 0 0 0.2rem rgba(128,128,128,.5);
    border-color: var(--black)!important;
    outline:0;
}

.owl-comic .nav-dots-prev {
    margin-right: 5px;
}

.owl-comic .nav-dots-next {
    margin-left: 5px;
}

.owl-comic .owl-dots {
    display:inline-flex;
    justify-content:center;
    align-items:center;
    margin-top:0;
}

.owl-comic .owl-dot {
    transition: 250ms all ease!important;
    border-radius: 3px;
}

.owl-comic .owl-dot.active span {
    background-color: var(--orange)!important;
}

.owl-comic .owl-dot span {
    background-color: var(--black)!important;
}

.owl-comic .owl-dot:focus {
    box-shadow: 0 0 0 0.2rem rgba(240,142,80,.5);
    border-color: var(--orange)!important;
    outline: 0;
}

/*news-subscription*/

.news-subscription {
    position: relative;
    z-index: 10;
}

.news-subscription p {
    color: var(--lightorange);
    font-size: 14px;
    line-height: 19px;
    text-transform: uppercase;
    letter-spacing: 2.1px;
}

.news-subscription input {
    border-radius: 0;
    border: 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2.1px;
    min-width: 300px;
    transition: 350ms all ease;
}

.news-subscription input::placeholder {
    text-transform: uppercase;
    color: var(--placeholder);
    letter-spacing: 2.1px;
    font-size: 14px;
}

.news-subscription .form-control:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(240,142,80,.5);
}

.news-subscription button {
    background-color: var(--orange);
    color: var(--white);
    border: 0;
    font-size: 22px;
    padding-left: 8px;
    padding-right: 8px;
    transition: 350ms all ease;
    z-index: 10;
    overflow: hidden;
}

.news-subscription button:hover {
    background-color: var(--lightorange);
}

.news-subscription button:focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(240,142,80,.5);
}

.news-subscription .arrow {
    display: block;
    position: relative;
}

.news-subscription .arrow {
    transition: 1s all ease;
}

.news-subscription button:hover .arrow {
    transform: translateX(54px);
}

.news-subscription .arrow::after {
    content: '\f30b';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    color: var(--black);
    z-index: 20;
    font-size: inherit;
    left: -27px;
}

.news-subscription .arrow::before {
    content: '\f30b';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 0;
    color: var(--white);
    z-index: 20;
    font-size: inherit;
    left: -53px;
}












/*advantages*/

.advantages {

}

.advantages-center img {
    max-width: 100%;
    object-fit: cover;
    position: relative;
    z-index: 10;
}

.advantages-left .advantage-title, .advantages-right .advantage-title {
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
}

.advantages-left ul, .advantages-right ul {
    font-size: 14px;
    line-height: 20px;
    list-style-type: none;
    padding-left: 10px;
}

.advantages p {
    font-size: 14px;
    line-height: 20px;
    color: var(--black);
}

.advantages-left ul li::before, .advantages-right ul li::before {
    content: '';
    width: 5px;
    height: 5px;
    position: absolute;
    left: -10px;
    top: 7px;
    background-color: var(--orange);
    border-radius: 50%;
}

.advantages-left ul {
    color: var(--white);
}

.advantages-right ul {
    color: var(--black);
}

.advantages-left ul li {
    margin-bottom: 20px;
}

.advantages-left ul li, .advantages-right ul li {
    position: relative;
}

.advantages-right {
    box-shadow: 0px 3px 6px #00000029;
}

@media only screen and (min-width: 992px) {
    .advantages-right {
        box-shadow: none;
    }

    .advantages-center img {
        clip-path: polygon(0 0, 100% 0, 90% 50%, 100% 100%, 0 100%, 10% 50%);
    }
}

.advantages-center::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: var(--black);
}

.advantages-center::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-color: var(--lightgrey-2);
}

/*projects*/

.projects {

}

.play-button {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.play-button-content {
    border:4px solid;
    text-align:center;
    width:80px;
    height:80px;
    padding-top:16px;
    padding-left:8px;
    border-radius:50%;
    color:#fff !important;
    background-color: rgba(0,0,0,0.5);
    font-size:20px;
    font-weight:bold;
    transition:.3s all ease;
    position:relative;
    left:-50%;
    display:block;
}

.play-button-content:hover {
    background-color: rgba(0,0,0,0.8);
    box-shadow: 0 0 10px rgba(255,255,100,1);
    text-shadow: 0 0 10px rgba(255,255,100,1);
    cursor: pointer;
}

.project-background {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

@media only screen and (min-width: 992px) {
    .project-background {
        clip-path: polygon(100% 0, 80% 50%, 100% 100%, 0 100%, 0 0);
    }
}

.projects p {
    font-size: 14px;
    line-height: 20px;
    color: var(--white);
}

.projects .project-quote {
    font-style: italic;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 1.2px;
    color: var(--orange);
}

.owl-projects .item {
    display: flex;
    flex: 1 0 100%;
    height: 100%;
    justify-content: space-between;
    flex-direction: column;
}

@media only screen and (min-width: 992px) {
    .owl-projects .item {
        flex-direction: row;
    }
}

.owl-projects .owl-item {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: auto !important;
}

.owl-projects .owl-stage {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.projects .slider-tabs-container {
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    bottom: 572px;
}

@media only screen and (min-width: 992px) {
    .projects .slider-tabs-container {
        bottom: 0;
    }
}

.project-text-container {
    flex: 1 0 auto;
}

.project-background-container {
    flex: 0 0 auto;
}

/*team*/

.team {

}

.team-photo img {
    max-width: 100%;
}

.team-name {
    font-style: italic;
    font-size: 24px;
    line-height: 28px;
    letter-spacing: 1.2px;
    color: var(--black);
}

.team-functie {
    font-style: italic;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0.9px;
    color: var(--orange);
}

/*textarea-right*/

.textarea-right {

}

.textarea-left img, .textarea-right img {
    max-width: 100%;
    border-radius: 5px;
}

.textarea-left h2, .textarea-right h2 {
    font-weight: bold;
    font-size: 16px;
    line-height: 22px;
    color: var(--black);
}

.textarea-left p, .textarea-right p {
    font-size: 14px;
    line-height: 20px;
    color: var(--black);
}

.textarea-image {
    z-index: 10;
}

@media only screen and (min-width: 768px) {
    .textarea-right:not(.no-bg) .textarea-image::before {
        content: '';
        position: absolute;
        left: -100%;
        right: 15px;
        background-color: var(--orange);
        top: -15%;
        bottom: -15%;
        z-index: -1;
        clip-path: polygon(80% 0, 97% 50%, 80% 100%, 0 100%, 0 0);
    }
}

@media only screen and (min-width: 768px) {
    .textarea-left:not(.no-bg) .textarea-image::before {
        content: '';
        position: absolute;
        right: -100%;
        left: 15px;
        background-color: var(--orange);
        top: -15%;
        bottom: -15%;
        z-index: -1;
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 20% 100%, 3% 50%);
    }
    .textarea-left.alt .textarea-image::before {
        background-color: var(--black);
    }
}


/*text-left*/

.text-left {

}

/*cloud*/

.cloud {

}

.cloud .title {
    color: var(--orange);
    font-weight: bold;
    font-size: 50px;
    line-height: 68px;
}

/*timeline*/

.timeline {
    position: relative;
}

.timeline::after {
    content: '';
    position: absolute;
    bottom: 143px;
    height: 2px;
    width: 100%;
    background-color: var(--black);
}

.timeline p {
    font-size: 14px;
    color: var(--black);
}

.timeline .year {
    font-size: 16px;
    color: var(--black);
    font-weight: bold;
    text-transform: uppercase;
}

.timeline img {
    width: 50px!important;
    height: 50px;
}

.timeline .rounded-circle {
    position: relative;
    z-index: 10;
}

/*Articles and columns*/

.article {
    box-shadow: 0px 3px 6px #00000029;
    flex: 1 0 auto;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    position: relative;
}

.article-image-container {
    min-height: 200px;
    position: relative;
    display: flex;
    flex: 0 1 auto;
    overflow: hidden;
    padding: 0 !important;
}

.article-image {
    width: 100%;
    height: 100%;
    position: absolute;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: .3s ease;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-image-content {
    z-index:10;
    display: flex;
}

.article-title-container {
    flex: 0 0 auto;
    display:flex;
    flex-direction:column;
}

.article-title {
    display: flex;
    flex: 1 0 auto;
}

.article-content-container {
    display:flex;
    flex-direction:column;
    flex: 1 0 auto;
}

.article-content {
    flex: 1 0 auto;
}

.article-bottom-container {
    flex: 0 0 auto;
}

.article-bottom {
    display:flex;
    flex:0 0 auto;
}

.columns h3 {

    font-size: 16px;
    color: var(--black);
    font-weight: bold;
}

.columns p {
    font-size: 14px;
}

.columns .article-image {
    position: relative;
    width: unset;
    height: auto;
}

.columns .article-image img {
    object-fit: cover;
    width: auto;
    height: auto;
}

.columns .article-image-container {
    min-height: unset;
}

.columns .btn {
    font-size: 26px;
    line-height: 36px;
    padding: .5rem 1rem;
}
.bg-black , .bg-black p , .bg-black li {
    color:#FFF;
}




a, a *{
    color: var(--orange);
}

p{
    font-size:16px !important;
    line-height: 26px !important;;
}

section:not(.footer) table{
    background-color: #FFF;
    border-radius: 10px !important;
    padding: 15px;
}
section:not(.footer) td{
    padding: 20px !important;
    color:#000000!important;
}


section:not(.footer) table td *{
    color:#000000!important;
}


section:not(.footer) tr:nth-child(even) {background-color: #eeeeee;}













div.wpforms-container-full .wpforms-form input[type=submit], div.wpforms-container-full .wpforms-form button[type=submit], div.wpforms-container-full .wpforms-form .wpforms-page-button{
    color:#FFFFFF !important;
}

.clickicon{
    cursor: pointer;
}