:root {
    --primary: #002b8f;
    --secondary: #2b46ff;
    --grey: hsl(215, 16%, 47%);
    --light: #fff;
    --dark: #0c1036;
}

.hidden {
    display: none;
}

.font-serif {
    font-family: "Aleo", serif;
}

.font-sansserif {
    font-family: "Inter", sans-serif;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    width: 50px !important;
    height: 50px !important;
}

.svg-container-overlay {
    top: 20px;
    position: absolute;
    width: 100%;
    mix-blend-mode: multiply;
    max-width: 100%;
    max-height: 100%;
    opacity: 70%;
}

.svg-container {
    position: absolute;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    transition: 0.5s;
}

.btn.btn-primary {
    color: var(--light);
}

.btn.btn-secondary {
    color: var(--primary);
}

.btn.btn-white {
    z-index: 1000;
    color: white;
}

.btn.btn-white:hover {
    color: var(--grey);
}

.btn-sm-square,
.btn-sm-circle {
    width: 34px;
    height: 34px;
}

.btn-square,
.btn-circle {
    width: 38px;
    height: 38px;
}

.btn-lg-square,
.btn-lg-circle {
    width: 42px;
    height: 42px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}

.btn-circle,
.btn-sm-circle,
.btn-lg-circle {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 100px;
}

/*** Icons ***/

/* .blue-stroke {
    background-color: var(--primary);
  -webkit-mask: url(icons/Arrow-right.svg) no-repeat center;
    mask: url(icons/Arrow-right.svg) no-repeat center;
} */

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: "Inter", sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 50px 15px;
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 400;
    outline: none;
    transition: 0.5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 25px 15px;
    color: var(--dark) !important;
}

.sticky-top.navbar-light .navbar-nav .nav-link.active,
.sticky-top.navbar-light .navbar-nav .nav-link:hover {
    color: var(--secondary) !important;
}

.navbar-light .navbar-nav .nav-link.active {
    color: var(--light) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: 0.5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 55px;
}

.navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    z-index: 999;
}

@media (min-width: 1700px) {
    .svg-container-overlay {
        display: none;
    }

    .svg-container {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .desktop {
        display: none;
    }

    .navbar-light .navbar-nav .nav-link.active {
        color: var(--secondary) !important;
    }

    div.video {
        position: fixed !important;
        width: 400px !important;
        height: 285px !important;
        vertical-align: middle;
    }

    .frame {
        display: block !important;
        width: 400px !important;
        height: 225px !important;
    }

    .height-slider-mobile {
        height: 1280px;
    }

    .sticky-top.navbar-light {
        background: #ffffff;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #dddddd;
    }

    .navbar-light {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, 0.1);
        z-index: 999;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 60px;
    }

    .desktop {
        display: none;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, 0.1);
        z-index: 999;
    }

    .mobile {
        display: none;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #ffffff;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--light);
        transition: 0.5s;
    }

    .sticky-top.navbar-light .navbar-nav .nav-link::before {
        background: var(--secondary);
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Hero Header ***/
.hero-home {
    background-image: linear-gradient(
        rgba(20, 20, 31, 0.086),
        rgba(20 29 58 / 66%)
    );
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
    width: 100%;
}

.video-docker::after {
    content: "";
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    background-image: linear-gradient(
        rgba(20, 20, 31, 75%),
        rgba(20 29 58 / 22%)
    );
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
}

.video-docker {
    width: 100% !important;
}

.hero-expertise {
    background-image: linear-gradient(
            rgba(20, 20, 31, 75%),
            rgba(20 29 58 / 50%)
        ),
        url(../img/hero-expertise.jpg);
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
}

.hero-over-ARA {
    background-image: linear-gradient(
            rgba(20, 20, 31, 75%),
            rgba(20 29 58 / 44%)
        ),
        url(../img/hero-over-ara.jpg);
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
}

.hero-werken-bij-ARA {
    background-image: linear-gradient(
            rgba(20, 20, 31, 75%),
            rgba(20 29 58 / 44%)
        ),
        url(../img/hero-werken-bij-ara.jpg);
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
}

.hero-contact {
    background-image: linear-gradient(
            rgba(20, 20, 31, 65%),
            rgba(20 29 58 / 44%)
        ),
        url(../img/hero-contact.jpg);
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
}

.hero-nieuws {
    background-image: linear-gradient(
            rgba(20, 20, 31, 75%),
            rgba(20 29 58 / 44%)
        ),
        url(../img/section-nieuws.jpg);
    background-position: right center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 80vh;
}

.hero {
    background-image: linear-gradient(
        rgba(20, 20, 31, 0.45),
        rgba(20 29 58 / 66%)
    );
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 70vh;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

#fxd-bg-image-home {
    background: linear-gradient(
            90deg,
            rgba(20 29 58 / 66%),
            rgba(20, 20, 31, 0.14)
        ),
        url(../img/hero-products.jpg) no-repeat center center;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: 10;
    content: "";
    display: block;
    left: 0;
    top: 0;
}

#fxd-bg-image-vacancy {
    background: linear-gradient(
            -90deg,
            rgba(20 29 58 / 66%),
            rgba(20, 20, 31, 0.14)
        ),
        url(../img/section-vacature.jpg) no-repeat center center;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: 10;
    content: "";
    display: block;
    left: 0;
    top: 0;
}

#fxd-bg-image-expertise {
    background: linear-gradient(
            -90deg,
            rgba(20 29 58 / 66%),
            rgba(20, 20, 31, 0.14)
        ),
        url(../img/section-portfolio.jpg) no-repeat center center;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: 10;
    content: "";
    display: block;
    left: 0;
    top: 0;
}

#fxd-bg-image-statistieken {
    background: linear-gradient(
            -90deg,
            rgba(20 29 58 / 66%),
            rgba(20, 20, 31, 0.14)
        ),
        url(../img/section-statistieken.jpg) no-repeat center center;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: 10;
    content: "";
    display: block;
    left: 0;
    top: 0;
}

#fxd-bg-image-mission {
    background: linear-gradient(
            -90deg,
            rgba(20 29 58 / 66%),
            rgba(20, 20, 31, 0.14)
        ),
        url(../img/section-missie.jpg) no-repeat center center;
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    z-index: 10;
    content: "";
    display: block;
    left: 0;
    top: 0;
}

.fxd-image,
.content {
    text-align: center;
    position: relative;
    width: 100%;
    object-fit: cover;
}

.inner {
    height: max-content;
    position: relative;
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}

/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
    transition: 0.5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: 0.5s;
}

.service-item:hover * {
    color: var(--light) !important;
}

/*** News ***/

.news,
.related-news {
    background: var(--section-bg-color);
}

.large-news-image {
    height: 400px;
    object-fit: cover;
}

.small-news-image {
    height: 193px !important;
    object-fit: cover;
}

.news-thumb {
    position: relative;
}

.news-category {
    background: var(--white-color);
    position: absolute;
    z-index: 9;
    top: 0;
    left: 0;
    padding: 4px 12px;
    display: inline-block;
}

.news-text-info {
    margin: 0 20px;
}

.news-title {
    margin-top: 15px;
    margin-bottom: 15px;
}

.news-title-link {
    color: var(--title-color);
    display: inline-block;
}

.news-title-link:hover {
    color: var(--dark-color);
}

.news-image {
    display: block;
    transition: transform 0.6s ease-out;
}

.news-image-hover {
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    padding-bottom: 4px;
    height: 100%;
}

.news-image-hover::after {
    content: "";
    width: 0;
    height: 4px;
    bottom: 0;
    position: absolute;
    left: auto;
    right: 0;
    z-index: -1;
    transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
    background: var(--primary);
}

.news-image-hover-warning::after {
    background: var(--secondary);
}

.news-image-hover-primary::after {
    background: var(--primary);
}

.news-image-hover-success::after {
    background: var(--secondary);
}

.news-image-hover:hover::after {
    width: 100%;
    left: 0;
    right: auto;
    z-index: 9;
}

.image-popup:hover .portfolio-image,
.news-image-hover:hover .news-image {
    transform: scale(1.02);
}

.image-popup:hover .portfolio-image,
.news-image-hover:hover .news-image {
    transform: scale(1.02);
}

.news-two-column {
    min-height: 150px;
    margin-bottom: 16px;
    max-height: 195px;
}

.news-two-column .news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h-0 {
    height: fit-content !important;
}

@media screen and (max-width: 991px) {
    #fxd-bg-image-home {
        background: linear-gradient(
                rgba(20 29 58 / 66%),
                rgba(20, 20, 31, 0.54)
            ),
            url(../img/hero-products.jpg) no-repeat center center;
    }

    #fxd-bg-image-vacancy {
        background: linear-gradient(
                rgba(20 29 58 / 66%),
                rgba(20, 20, 31, 0.54)
            ),
            url(../img/section-vacature.jpg) no-repeat center center;
    }

    #fxd-bg-image-expertise {
        background: linear-gradient(
                rgba(20 29 58 / 66%),
                rgba(20, 20, 31, 0.54)
            ),
            url(../img/section-portfolio.jpg) no-repeat center center;
    }

    #fxd-bg-image-statistieken {
        background: linear-gradient(
                rgba(20 29 58 / 66%),
                rgba(20, 20, 31, 0.54)
            ),
            url(../img/section-statistieken.jpg) no-repeat center center;
    }

    #fxd-bg-image-mission {
        background: linear-gradient(
                rgba(20 29 58 / 66%),
                rgba(20, 20, 31, 0.54)
            ),
            url(../img/section-missie.jpg) no-repeat center center;
    }

    .news-two-column {
        min-height: 199px;
        margin-bottom: 16px;
    }

    .large-news-image {
        height: -webkit-fill-available !important;
    }

    .news-thumb {
        flex-direction: row !important;
    }

    .news-two-column .news-image {
        width: 100%;
        height: 100% !important;
        object-fit: cover;
    }

    .news-title-mobile {
        margin-top: 0px;
    }

    .news-two-column {
        height: auto !important;
        min-height: inherit;
    }

    .news .col-12 .news-two-column:first-child {
        margin-bottom: 38px;
    }

    .news-two-column {
        height: auto !important;
        min-height: inherit;
    }

    .news .col-12 .news-two-column:first-child {
        margin-bottom: 38px;
    }
}

/*** Destination ***/
.destination img {
    transition: 0.5s;
}

.destination a:hover img {
    transform: scale(1.1);
}

/*** Package ***/
.package-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.package-item img {
    transition: 0.5s;
}

.package-item:hover img {
    transform: scale(1.1);
}

/*** Booking ***/
.booking {
    background: linear-gradient(rgba(15, 23, 43, 0.7), rgba(15, 23, 43, 0.7)),
        url(../img/booking.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.08);
}

.team-item img {
    transition: 0.5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .btn {
    background: #ffffff;
    color: var(--primary);
    border-radius: 20px;
    border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
    background: var(--primary);
    color: #ffffff;
}

/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    /* background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%); */
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    /* background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%); */
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--white) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #002b8f !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #cccccc;
    border-radius: 15px;
    transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #ffffff;
    border-radius: 35px;
    transition: 0.3s;
}

.footer .btn.btn-social:hover {
    color: var(--dark);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #ffffff;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: 0.3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/*** Pop-up Video ***/

div.video {
    position: fixed !important;
}

.frame {
    display: block !important;
    width: 880px;
    height: 495px;
}

div.video-wrapper {
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}
