html, body {

}
body {
    font-family: "azo-sans-web", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #132945;
    font-size: 16px;
    line-height: 32px;
    overflow-x: hidden;
}
a {
    color: inherit;
    cursor: pointer;
}
a:hover {
    color: #BEA378;
}

/* Headings */

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: "azo-sans-web", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}
h1 span, .h1 span, h2 span, .h2 span, h3 span, .h3 span, h4 span, .h4 span, h5 span, .h5 span, h6 span, .h6 span {
    color: #BEA378;
} 
h1, .h1 {
    font-size: 40px;
}
h2, .h2 {
    font-size: 34px;
}
h3, .h3 {
    font-size: 32px;
}
h4, .h4 {
    font-size: 28px;
}
h5, .h5 {
    font-size: 24px;
}
.prefix {
    font-size: 16px;
    text-transform: uppercase;
    color: #BEA378;
    font-weight: 400;
}

/* Buttons */

.btn {
    border-radius: 0px;
    padding: 12px 24px;
    font-weight: 400;
    font-size: 18px;
    color: inherit;
    text-decoration: none;
}
.btn-primary {
    color: #161615;
    background-color: #BEA378;
    border-color: #BEA378;
}
.btn-primary:hover {
    color: #161615;
    background-color: #998461;
    border-color: #998461;
}
.btn-secondary {
    color: #FFF;
    background-color: #1b395b;
    border-color: #1b395b;
}
.btn-secondary:hover {
    color: #FFF;
    background-color: #132945;
    border-color: #132945;
}
.btn-dark {
    color: #FFF;
    background-color: #132945;
    border-color: #132945;
}
.btn-dark:hover {
    background-color: #1b395b;
    border-color: #1b395b;
}
.btn-icon {
    gap: 16px;
    display: flex;
    align-items: center;
}
.btn-arrow-right {
    gap: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}
.btn-arrow-right::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Pro';
}
.btn-arrow-left {
    gap: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
}
.btn-arrow-left::before {
    content: '\f060';
    font-family: 'Font Awesome 6 Pro';
}

/* Page share */

.page-share {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 50px;
}
.page-share .title {
    font-family: "libertad", sans-serif;
    font-weight: 700;
}
.page-share .page-share-list {
    list-style: none;
    margin: 0px;
    padding: 0px;
    display: flex;
    gap: 10px;
}
.page-share .page-share-list li button {
    text-decoration: none;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #BEA378;
    border: 1px solid #BEA378;
    color: #FFF;
}

/* Header default */

header.header-default {
    background-color: #132945;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 5000;
    transition: all ease .3s;
    border-bottom: 1px solid #1b3658;
}
header.header-default .logo {
    padding: 0px 20px;
}
header.header-default .logo a img {
    width: 100%;
    max-height: 42px;
}
header.header-default .mobile-navigation {
    position: relative;
    background-color: #BEA378;
    height: 100%;
    padding: 30px 20px;
    width: 100%;
    max-width: 150px;
}
header.header-default .mobile-navigation .hamburger {
    width: 44px;
    height: 44px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: transparent;
    border-radius: 50%;
    padding: 10px;
}
header.header-default .mobile-navigation .hamburger::before {
    content: 'Menu';
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 700;
    color: #FFF;
}
header.header-default .mobile-navigation .hamburger span {
    height: 2px;
    left: 10px;
    right: 10px;
    border-radius: 20px;
    background: #FFF;
    display: block;
    position: absolute;
    transition: all 250ms ease-in-out
}
header.header-default .mobile-navigation .hamburger span:first-child {
    top: 12px;
}
header.header-default .mobile-navigation .hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    right: 10px;
}
header.header-default .mobile-navigation .hamburger span:last-child {
    bottom: 12px;
}
header.header-default .mobile-navigation .hamburger.open span:nth-child(2) {
    width: 0px;
    opacity: 0
}
header.header-default .mobile-navigation .hamburger.open span:first-child {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    right: auto;
    left: auto;
    width: 20px;
}
header.header-default .mobile-navigation .hamburger.open span:last-child {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 20px;
    right: auto;
    left: auto;
}
header.header-default .hamburger.open {
    display: flex;
    align-items: center;
    justify-content: center;
}
header.header-default .desktop-navigation nav ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 40px;
    margin-right: 60px;
}
header.header-default .desktop-navigation nav ul li {
    position: relative;
}
header.header-default .desktop-navigation nav ul li a {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700; 
    text-decoration: none;
    color: #FFF;
}
header.header-default .desktop-navigation nav ul li.dropdown::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Pro';
    color: #BEA378;
    margin-left: 5px;
}
header.header-default .desktop-navigation nav ul li.dropdown:hover ul.dropdown-nav {
    display: flex;
}
header.header-default .desktop-navigation nav ul li ul.dropdown-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    left: -20px;
    top: 100%;
    background-color: #132945;
    list-style: none;
    line-height: 2.5em;
    margin: 0px;
    padding: 20px;
    gap: 0px;
    min-width: 200px;
}
header.header-default .desktop-navigation nav ul li ul.dropdown-nav li a {
    font-weight: 400;
    color: #FFF;
}
header.header-default .header-cta {
    background-color: #BEA378;
    padding: 0px 44px;
}
header.header-default .header-cta a {
    text-decoration: none;
    font-size: 20px;
}
header.header-default .header-cta a:hover {
    color: #111111;
}
header.header-default .header-cta a span {
    color: #FFF;
    margin-left: 10px;
}

/* Menu overlay */

.menu-overlay {
    display: none;
    visibility: hidden;
    position: fixed;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    background: #132945;
    opacity: 0;
    transition: opacity .60s,visibility .60s,height .60s;
    z-index: 999;
    overflow-x: hidden;
    overflow-y: scroll;
}
.menu-overlay.open {
    display: block;
    opacity: 1;
    visibility: visible;
    height: 100%;
}
.menu-overlay .menu-overlay-navigation {
    padding-top: 120px;
}
.menu-overlay .menu-overlay-navigation nav ul {
    display: flex;
    flex-direction: column;
}
.menu-overlay .menu-overlay-navigation nav ul li {
    padding: 10px 30px 10px 20px;
}
.menu-overlay .menu-overlay-navigation nav ul li a {
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 700;
    color: #FFF;
}
.menu-overlay .menu-overlay-navigation nav ul li a::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Pro';
    color: #BEA378;
    margin-left: .5em;
}
.menu-overlay .menu-overlay-navigation nav ul li ul.dropdown-nav {
    display: none;
}

/* Page / layout */

#page {
    margin-top: 60px;
    overflow: hidden;
}

section {
    padding: 60px 0px;
}

.not-found-page {
    background: #EDF6FC;
}

/* Hero Home */

.hero.hero-home {
    padding: 0px;
    background-color: #132945;
}
.hero.hero-home .hero-images {
    position: relative;
}
.hero.hero-home .hero-images .image {
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero.hero-home .hero-images .image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.hero.hero-home .hero-images .slick-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 46px;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #BEA378;
    color: #FFF;
    border: none;
    z-index: 99;
}
.hero.hero-home .hero-images .slick-arrow.slick-prev {
    right: 46px;
}
.hero.hero-home .hero-content-wrapper {
    height: 100%;
}
.hero.hero-home .hero-content-wrapper .hero-content {
    position: relative;
    background-color: #1b395b;
    color: #FFF;
    padding: 20px;
    transform: translateY(0%);
}
.hero.hero-home .hero-content-wrapper .hero-content:before {
    content: '';
    background: #1b395b;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-100%);
}
.hero.hero-home .hero-content-wrapper .hero-content .btn {
    margin-top: 10px;
}

/* Hero Information */

.hero.hero-information {
    padding: 0px;
}
.hero.hero-information .hero-images {
    position: relative;
}
.hero.hero-information .hero-images .image {
    max-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero.hero-information .hero-images .image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.hero.hero-information .hero-images .slick-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 46px;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #BEA378;
    color: #FFF;
    border: none;
    z-index: 99;
}
.hero.hero-information .hero-images .slick-arrow.slick-prev {
    right: 46px;
}
.hero.hero-information .hero-content-wrapper {
    height: 100%;
}
.hero.hero-information .hero-content-wrapper .hero-content {
    position: relative;
    background-color: #1b395b;
    color: #FFF;
    padding: 20px;
    transform: translateY(0%);
}
.hero.hero-information .hero-content-wrapper .hero-content:before {
    content: '';
    background: #1b395b;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-100%);
}

/* Hero Landingpage */

.hero.hero-landingpage {
    padding: 0px;
}
.hero.hero-landingpage .hero-images {
    position: relative;
}
.hero.hero-landingpage .hero-images .image {
    max-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero.hero-landingpage .hero-images .image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.hero.hero-landingpage .hero-images .slick-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 46px;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #BEA378;
    color: #FFF;
    border: none;
    z-index: 99;
}
.hero.hero-landingpage .hero-images .slick-arrow.slick-prev {
    right: 46px;
}
/* Hero Services */

.hero.hero-services-detail {
    padding: 0px;
    background-color: #132945;
}
.hero.hero-services-detail .hero-images {
    position: relative;
}
.hero.hero-services-detail .hero-images .image {
    max-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero.hero-services-detail .hero-images .image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.hero.hero-services-detail .hero-images .slick-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 46px;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #BEA378;
    color: #FFF;
    border: none;
    z-index: 99;
}
.hero.hero-services-detail .hero-images .slick-arrow.slick-prev {
    right: 46px;
}
.hero.hero-services-detail .hero-content-wrapper {
    height: 100%;
}
.hero.hero-services-detail .hero-content-wrapper .hero-content {
    position: relative;
    background-color: #1b395b;
    color: #FFF;
    padding: 20px;
    transform: translateY(0%);
}
.hero.hero-services-detail .hero-content-wrapper .hero-content:before {
    content: '';
    background: #1b395b;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-100%);
}
.hero.hero-services-detail .hero-content-wrapper .hero-content .btn {
    margin-top: 10px;
}

/* Hero Jobs overview */

.hero.hero-jobs-overview {   
    background-color: #132945;
    color: #FFF;
}
.hero.hero-jobs-overview h1 {
    margin-bottom: 25px;
    color: #BEA378;
}

/* Hero Jobs Detail */

.hero.hero-jobs-detail {   
    background-color: #EDF6FC;
}
.hero.hero-jobs-detail h1 {
    margin-bottom: 25px;
}
.hero.hero-jobs-detail .details ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 20px;
}
.hero.hero-jobs-detail .details ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero.hero-jobs-detail .details ul li .icon i {
    color: #BEA378;
}

/* Hero Rent Detail */

.hero.hero-rent-detail {   
    background-color: #1b395b;
    color: #FFF;
    padding-bottom: 60px;
}
.hero.hero-rent-detail h1 {
    margin-bottom: 25px;
}
.hero.hero-rent-detail .details ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 20px;
}
.hero.hero-rent-detail .details ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hero.hero-rent-detail .details ul li .icon i {
    color: #BEA378;
}

/* Hero Projects overview */

.hero.hero-projects-overview {   
    background-color: #132945;
    color: #FFF;
}
.hero.hero-projects-overview h1 {
    margin-bottom: 25px;
    color: #BEA378;
}

/* Hero Projects detail */

.hero.hero-projects-detail {   
    background-color: #132945;
    color: #FFF;
    padding-bottom: 60px;
}
.hero.hero-projects-detail h1 {
    margin-bottom: 25px;
}
.hero.hero-projects-detail .feature-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 30px 0px;
}
.hero.hero-projects-detail .feature-cards .feature-card {
    display: flex;
    gap: 20px;
}
.hero.hero-projects-detail .feature-cards .feature-card .icon {
    width: 70px;
}
.hero.hero-projects-detail .feature-cards .feature-card .icon i {
    font-size: 50px;
}
.hero.hero-projects-detail .feature-cards .feature-card .content {
    display: flex;
    flex-direction: column;
}
.hero.hero-projects-detail .feature-cards .feature-card .content .prefix {
    color:#FFF;
    font-size: 18px;
}
.hero.hero-projects-detail .feature-cards .feature-card .content .title {
    font-weight: 700;
    color: #BEA378;
    font-size: 24px;
    text-transform: uppercase;
}


/* Hero Contact */

.hero.hero-contact {
    padding: 0px;
    position: relative;
    background-color: #132945;
}
.hero.hero-contact .hero-images {
    position: relative;
}
.hero.hero-contact .hero-images .image {
    max-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero.hero-contact .hero-images .image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.hero.hero-contact .hero-images .slick-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 46px;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #BEA378;
    color: #FFF;
    border: none;
    z-index: 99;
}
.hero.hero-contact .hero-images .slick-arrow.slick-prev {
    right: 46px;
}
.hero.hero-contact .hero-content-wrapper {
    height: 100%;
}
.hero.hero-contact  .hero-content-wrapper .hero-content {
    position: relative;
    background-color: #1b395b;
    color: #FFF;
    padding: 20px;
    transform: translateY(0%);
}
.hero.hero-contact .hero-content-wrapper .hero-content:before {
    content: '';
    background: #1b395b;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-100%);
}
.hero.hero-contact  .hero-content-wrapper .hero-content ul.contact-list {
    margin: 30px 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.hero.hero-contact  .hero-content-wrapper .hero-content ul.contact-list li a {
    text-decoration: none;
    font-size: 20px;
    color: #fff;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;    
}
.hero.hero-contact  .hero-content-wrapper .hero-content ul.contact-list li a i {
    color: #BEA378;
    width: 30px;
}
.hero.hero-contact  .hero-content-wrapper .hero-content ul.contact-list li a span {
    font-weight: 700;
}


/* Information Intro */

.information-intro {
    background-color: #132945;
    color: #FFF;
}

/* Information Content Image */

.information-content-image .image {
    margin: 30px 0px;
}

/* Landingpage Intro */

.landingpage-intro {
    background-color: #FFF;
}
.landingpage-intro h1 {
    color: #132945;
    margin-bottom: 50px;
}

/* Landingpage Content */

.landingpage-content {
    padding: 60px 0px;
}
.landingpage-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
}
.landingpage-content h3 {
    font-size: 26px;
    margin-top: 35px;
    margin-bottom: 20px;
}
.landingpage-content h4 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}
.landingpage-content h5 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Landingpage Project Carousel */

.landingpage-project-carousel {
    background-color: #132945;
    color: #FFF;
    padding: 60px 0px;
}

/* Landingpage Footer */

.landingpage-footer {
    padding-top: 0px;
}

/* Personal CTA block */

.personal-cta-block {
    background-color: #132945;
    color: #FFF;
    padding: 0px;
}
.personal-cta-block .content {
    padding: 80px 50px 80px 0px;
}
.personal-cta-block .content h2 {
    color: #BEA378
}
.personal-cta-block .content p {
    color: #FFF;
}
.personal-cta-block .image {
    position: relative; 
}
.personal-cta-block .image::after {
    content: '';
    position: absolute;
    background-color: #00a9e8;
    mix-blend-mode: multiply;
    background-blend-mode: multiply;
    opacity: .2;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}
.personal-cta-block .image .cta-block {
    position: absolute;
    background-color: #998461;
    color: #FFF;
    padding: 20px 30px;
    display: flex;
    flex-direction: column;
    left: 0;
    bottom: 0;
    z-index: 2;
}
.personal-cta-block .image .cta-block span {
    font-weight: bold;
}
.personal-cta-block .image .cta-block a {
    font-weight: normal;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.personal-cta-block .image .cta-block a i {
    color: #1b395b;
}
.personal-cta-block .image .cta-block a span {
    font-weight: normal;
}

/* FAQ Content */

.faq-content .accordion .accordion-item .accordion-header .accordion-button {
    padding: 20px 0px;
    font-weight: bold;
    font-size: 18px;
}
.faq-content .accordion .accordion-item .accordion-header .accordion-button::after {
    content: '\2b';
    font-family: 'Font Awesome 6 Pro';
    font-weight: 400;
    background: none;
    color: #BEA378;
}
.faq-content .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed), .faq-content .accordion .accordion-item .accordion-header .accordion-button:focus {
    color: #BEA378;
    background-color: transparent;
    box-shadow: none;
}
.faq-content .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
    content: '\f068';
    transform: none;
}
.faq-content .accordion .accordion-item .accordion-body {
    padding: 0px 0px 15px 0px;
}

/* Services overview */

.services-overview {
    background-color: #132945;
}
.services-overview h2 {
    margin-bottom: 30px;
    color: #FFF;
}
.services-overview .services-overview-card {
    background-color: #1b395b;
    margin: 15px 0px;
}
.services-overview .services-overview-card a {
    text-decoration: none;
}
.services-overview .services-overview-card a .image img {
    width: 100%;
}
.services-overview .services-overview-card a .content {
    padding: 20px 30px;
}
.services-overview .services-overview-card a .content span {
    font-weight: 700;
    color: #FFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
}
.services-overview .services-overview-card a .content span::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Pro';
    color: #BEA378;
}

/* Project impression carousel */

.project-impression-carousel {
    padding: 0px;
}

/* Project impression grid */

.project-impression-grid {
    padding: 0px;
}
.project-impression-grid .project-impression-grid-items {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 15px 0px;
    grid-template-areas:
            "image-01" "image-02"
            "image-03" "image-03"
            "image-04" "image-05";
    }
}
.project-impression-grid .project-impression-grid-items  .project-impression-grid-item {
    overflow: hidden;
}
.project-impression-grid .project-impression-grid-items  .project-impression-grid-item.image-01 {
    grid-area: image-01;
}
.project-impression-grid .project-impression-grid-items  .project-impression-grid-item.image-02 {
    grid-area: image-02;
}
.project-impression-grid .project-impression-grid-items  .project-impression-grid-item.image-03 {
    grid-area: image-03;
}
.project-impression-grid .project-impression-grid-items  .project-impression-grid-item.image-04 {
    grid-area: image-04;
}
.project-impression-grid .project-impression-grid-items  .project-impression-grid-item.image-05 {
    grid-area: image-05;
}
.project-impression-grid .project-impression-grid-items  .project-impression-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (min-width: 768px) {
    .project-impression-grid .project-impression-grid-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        gap: 15px 15px;
        grid-template-areas:
            "image-01 image-02"
            "image-03 image-03"
            "image-04 image-05";
    }
}
@media screen and (min-width: 992px) {
    .project-impression-grid .project-impression-grid-items {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 15px 15px;
        grid-template-areas:
            "image-01 image-01 image-03 image-03 image-04"
            "image-02 image-02 image-03 image-03 image-05";
    }
}
@media screen and (min-width: 1200px) {
    .project-impression-grid .project-impression-grid-items {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        gap: 15px 15px;
        grid-template-areas:
            "image-01 image-01 image-03 image-03 image-04"
            "image-02 image-02 image-03 image-03 image-05";
    }
}

/* Project carousel */

.project-carousel .project-carousel-heading {
    margin-bottom: 25px;
}
.project-carousel .project-carousel-wrapper .project-carousel-items .project-carousel-item .image img {
    width: 100%;
}
.project-carousel .project-carousel-wrapper .project-carousel-items .project-carousel-item .content {
    padding: 20px;
}
.project-carousel .project-carousel-wrapper .project-carousel-items .project-carousel-item .content .title {
    font-weight: 700;
    font-size: 26px;
    text-transform: uppercase;
}
.project-carousel .project-carousel-wrapper .project-carousel-items {
    position: relative;
}
.project-carousel .project-carousel-wrapper .project-carousel-items .slick-arrow {
    position: absolute;
    right: 0;
    top: 0;
    height: 46px;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #BEA378;
    color: #FFF;
    border: none;
    z-index: 9;
}
.project-carousel .project-carousel-wrapper .project-carousel-items .slick-arrow.slick-prev {
    transform: translateX(-46px);
}

/* Projects overview */

.projects-overview {
    padding-top: 60px;
}
.projects-overview .projects-overview-filter ul.filters {
    position: relative;
    display: flex;
    gap: 10px;
    overflow: scroll;
    margin: 10px 0px 60px 0px;
}
.projects-overview .projects-overview-filter ul.filters::after { 
    content: '';
    width: 30px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient();
}
.projects-overview .projects-overview-filter ul.filters::-webkit-scrollbar {
    display: none;
}
.projects-overview .projects-overview-filter ul.filters li.filter button {
    margin-top: 0px;
}
.projects-overview .projects-overview-filter ul.filters li.filter button:active, .projects-overview .projects-overview-filter ul.filters li.filter button:focus, .projects-overview .projects-overview-filter ul.filters li.filter button.mixitup-control-active {
    background-color: #BEA378;
    border-color: #BEA378;
}
.projects-overview .projects-overview-items {
    display: grid;
    gap: 30px
}
.projects-overview .projects-overview-items .projects-overview-item a {
    text-decoration: none;
}
.projects-overview .projects-overview-items .projects-overview-item a:hover {
    color: inherit;
}
.projects-overview .projects-overview-items .projects-overview-item a .image img {
    width: 100%;
}
.projects-overview .projects-overview-items .projects-overview-item a .content {
    padding: 20px 0px;
}
.projects-overview .projects-overview-items .projects-overview-item a .title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
}

/* Projects Detail Main Image */

.projects-detail-main-image {
    padding: 0px;
    margin-bottom: 30px;
    background: linear-gradient(#132945 0%, #132945 50%, #FFF 50%);
}
.projects-detail-main-image .image img {
    width: 100%;
}

/* Projects Detail Quote */

.projects-detail-quote .projects-detail-quote-heading h2 {
    color: #BEA378;
}
.projects-detail-quote .projects-detail-quote-content p {
    font-style: italic;
}
.projects-detail-quote .projects-detail-quote-content .author {
    display: grid;
    grid-template-columns: 80px auto;
    gap: 25px;
    margin-top: 25px;
    align-items: center;
}
.projects-detail-quote .projects-detail-quote-content .author .image img {
    width: 100%;
    border-radius: 50%;
}
.projects-detail-quote .projects-detail-quote-content .author .content {
    display: flex;
    flex-direction: column;
    font-weight: 700;
}

/* Projects Detail Images */

.projects-detail-images {
    padding: 0px;
}
.projects-detail-images .image {
    margin-bottom: 30px;
}
.projects-detail-images .image img {
    width: 100%;
}

/* Projects Detail CTA */

.projects-detail-cta {
    padding-top: 0px;
}
.projects-detail-cta .projects-detail-cta-content-wrapper .projects-detail-cta-content {
    background-color: #1b395b;
    color: #FFF;
    padding: 20px;
}
.projects-detail-cta .projects-detail-cta-content-wrapper .projects-detail-cta-content:before {
    content: '';
    background: #1b395b;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: translateX(-100%);
}
.projects-detail-cta .projects-detail-cta-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-top: 40px;
}
.projects-detail-cta .projects-detail-cta-social .title {
    font-size: 20px;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 10px;
}
.projects-detail-cta .projects-detail-cta-social ul.social-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
    margin: 10px 0px;
}
.projects-detail-cta .projects-detail-cta-social ul.social-list li a {
    text-decoration: none;
    width: 44px;
    height: 44px;
    background-color: #BEA378;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Rent overview */

.rent-overview .rent-overview-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.rent-overview .rent-overview-items .rent-overview-item a {
    text-decoration: none;
}
.rent-overview .rent-overview-items .rent-overview-item a:hover {
    color: inherit;
}
.rent-overview .rent-overview-items .rent-overview-item a .image img {
    width: 100%;
}
.rent-overview .rent-overview-items .rent-overview-item a .content {
    padding: 20px 0px;
}
.rent-overview .rent-overview-items .rent-overview-item a .title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
}

/* Rent Detail Content */

.rent-detail-content {
    padding: 50px 0px 30px 0px;
}
.rent-detail-content .rent-detail-images-slider {
    position: relative;
    margin-bottom: 10px;
}
.rent-detail-content .rent-detail-images-slider .slick-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 46px;
    width: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #BEA378;
    color: #FFF;
    border: none;
    z-index: 99;
}
.rent-detail-content .rent-detail-images-slider .slick-arrow.slick-prev {
    right: 46px;
}
.rent-detail-content .rent-detail-images-slider-navigation {
    overflow: hidden;
    margin-bottom: 50px;
}
.rent-detail-content .rent-detail-images-slider-navigation .slick-list {
    margin: 0 -5px;
}
.rent-detail-content .rent-detail-images-slider-navigation .slick-slide {
    margin: 0 5px;
}
.rent-detail-content .sidebar {
    border: 1px solid #edf6fc;
    padding: 30px;
}
.rent-detail-content .sidebar .content .title {
    margin-bottom: 15px;
}
.rent-detail-content .sidebar .content ul.contact-list {
    margin: 20px 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.rent-detail-content .sidebar .content ul.contact-list li a {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;    
}
.rent-detail-content .sidebar .content ul.contact-list li a i {
    color: #161615;
    width: 20px;
}
.rent-detail-content .sidebar .content ul.contact-list li a span {
    font-weight: 700;
}

/* Rent Detail Footer */

.rent-detail-footer {
    padding-bottom: 80px;
}

/* Jobs overview */

.jobs-overview .jobs-overview-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.jobs-overview .jobs-overview-items .jobs-overview-item {
    background-color: #EDF6FC;
    padding: 30px;
}
.jobs-overview .jobs-overview-items .jobs-overview-item a {
    text-decoration: none;
}
.jobs-overview .jobs-overview-items .jobs-overview-item a:hover {
    color: inherit;
}
.jobs-overview .jobs-overview-items .jobs-overview-item a .content .title {
    font-style: italic;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px;
}
.jobs-overview .jobs-overview-items .jobs-overview-item a .content .details ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
    margin-top: 20px;
}
.jobs-overview .jobs-overview-items .jobs-overview-item a .content .details ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}
.jobs-overview .jobs-overview-items .jobs-overview-item a .content .details ul li .icon i {
    color: #BEA378;
}

/* Jobs detail content */
.jobs-detail-content {
    padding: 50px 0px 30px 0px;
}
.jobs-detail-content h2, .jobs-detail-content h3, .jobs-detail-content h4 {
    margin-top: 30px;
}
.jobs-detail-content .sidebar {
    border: 1px solid #edf6fc;
    padding: 30px;
}
.jobs-detail-content .sidebar .content .title {
    margin-bottom: 15px;
}
.jobs-detail-content .sidebar .content ul.contact-list {
    margin: 20px 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.jobs-detail-content .sidebar .content ul.contact-list li a {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;    
}
.jobs-detail-content .sidebar .content ul.contact-list li a i {
    color: #161615;
    width: 20px;
}
.jobs-detail-content .sidebar .content ul.contact-list li a span {
    font-weight: 700;
}

.jobs-detail-content .apply-content {
    border: 1px solid #edf6fc;
    background: #EDF6FC;
    padding: 40px;
    width: 100%;
    margin-top: 40px;
}
.jobs-detail-content .apply-content .title {
    margin-bottom: 15px;
}
.jobs-detail-content .apply-content ul.contact-list {
    margin: 20px 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.jobs-detail-content .apply-content ul.contact-list li a {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;    
}
.jobs-detail-content .apply-content ul.contact-list li a i {
    color: #161615;
    width: 20px;
}
.jobs-detail-content .apply-content ul.contact-list li a span {
    font-weight: 700;
}

/* Jobs Detail Footer */

.jobs-detail-footer {
    padding-bottom: 80px;
}


/* Partner block logos */

.partner-block .partner-block-content h2 {
    margin-bottom: 25px;
}
.partner-block .partner-block-logos .partner-block-logos-items {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px 20px;
}
.partner-block .partner-block-logos .partner-block-logos-items .partner-block-logos-item {
    display: flex;
    align-items: center;
    justify-content: center;
}
.partner-block .partner-block-logos .partner-block-logos-items .partner-block-logos-item img {
    max-width: 100%;
    max-height: 150px;
}

/* Services detail usp items */

.services-detail-usp-items {
    background-color: #132945;
    color: #FFF;
}
.services-detail-usp-items .services-detail-usp-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 25px 0px;
}
.services-detail-usp-items .services-detail-usp-item .icon i {
    color: #BEA378;
}
.services-detail-usp-items .services-detail-usp-item .text {
    padding-right: 50px;
}

/* Section Contact */

.section-contact  {
    padding-top: 30px;
    padding-bottom: 0px;
}
.section-contact .contact-content h2 {
    margin-bottom: 30px;
}
.section-contact .contact-content ul.contact-list {
    margin: 30px 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.section-contact .contact-content ul.contact-list li a {
    text-decoration: none;
    font-size: 20px;
    color: #BEA378;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;    
}
.section-contact .contact-content ul.contact-list li a i {
    color: #161615;
    width: 30px;
}
.section-contact .contact-content ul.contact-list li a span {
    font-weight: 700;
}
.section-contact .contact-image {
    position: relative;
}
.section-contact .contact-image::after {
    content: '';
    background: #1b395b;
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(100%);
}
.section-contact .contact-image .image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


/* Footer default */

footer {
    overflow: hidden;
}
body.cms-page-wie-we-zijn footer.footer-default .footer-top {
    display: none;
}
footer.footer-default .footer-top {
    padding-top: 30px;
}
footer.footer-default .footer-top .footer-contact h2 {
    margin-bottom: 30px;
}
footer.footer-default .footer-top .footer-contact ul.contact-list {
    margin: 30px 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
footer.footer-default .footer-top .footer-contact ul.contact-list li a {
    text-decoration: none;
    font-size: 20px;
    color: #BEA378;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;    
}
footer.footer-default .footer-top .footer-contact ul.contact-list li a i {
    color: #161615;
    width: 30px;
}
footer.footer-default .footer-top .footer-contact ul.contact-list li a span {
    font-weight: 700;
}
footer.footer-default .footer-top .footer-image {
    position: relative;
}
footer.footer-default .footer-top .footer-image::after {
    content: '';
    background: #1b395b;
    height: 100%;
    width: 100%;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(100%);
}
footer.footer-default .footer-top .footer-image .image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
footer.footer-default .footer-center {
    background-color: #132945;
    color: #FFF;
    padding: 40px 0px;
}
footer.footer-default .footer-center .footer-column {
    padding: 20px 0px;
}
footer.footer-default .footer-center .footer-column .footer-title {
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 20px;
}
footer.footer-default .footer-center .footer-column .footer-navigation ul {
    line-height: 2.5em;
    list-style: none;
    margin: 0;
    padding: 0;
}
footer.footer-default .footer-center .footer-column .footer-navigation ul li a {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}
footer.footer-default .footer-center .footer-column .footer-navigation ul li a::before {
    content: '\f061';
    font-family: 'Font Awesome 6 Pro';
}
footer.footer-default .footer-center .footer-column .footer-social ul.social-list {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 8px;
    margin: 10px 0px;
}
footer.footer-default .footer-center .footer-column .footer-social ul.social-list li a {
    text-decoration: none;
    width: 44px;
    height: 44px;
    background-color: #BEA378;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer.footer-default .footer-bottom {
    background-color: #132945;
    color: #fff;
    padding: 20px 0px 40px;
}
footer.footer-default .footer-bottom .footer-copyright {
    padding: 10px 0px;
    opacity: .3;
}
footer.footer-default .footer-bottom .footer-bottom-links ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    gap: 20px;
    padding: 10px 0px;
}
footer.footer-default .footer-bottom .footer-bottom-links ul li a {
    opacity: .3;
}

/* Whatsapp Button */

.whatsapp-button {
    position: fixed;
    right: 12px;
    bottom: 12px;
    z-index: 95;
}
.whatsapp-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #25D366;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: #FFF;
    font-size: 24px;
}




@media screen and (min-width: 576px) {

}

@media screen and (min-width: 768px) {

}
@media screen and (min-width: 992px) {
    .hero.hero-home .hero-content-wrapper .hero-content {
        padding: 60px 60px 60px 0px;
        transform: translateY(-20%);
    }
    .hero.hero-information .hero-content-wrapper .hero-content {
        padding: 60px 60px 60px 0px;
        transform: translateY(-50%);
    }
    .hero.hero-services-detail .hero-content-wrapper .hero-content {
        padding: 60px 60px 60px 0px;
        transform: translateY(-20%);
    }
    .hero.hero-projects-detail .feature-cards { 
        grid-template-columns: 1fr 1fr 1fr;
    }
    .hero.hero-contact .hero-images {
        padding-left: 25%;
    }
    .hero.hero-contact .hero-images .image {
        max-height: 90vh;
    }
    .hero.hero-contact .hero-content-wrapper {
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        z-index: 9;
    }
    .hero.hero-contact .hero-content-wrapper .hero-content {
        padding: 200px 60px 100px 0px;
    }
    .hero.hero-contact .hero-content-wrapper .hero-content h1 {
        margin-bottom: 25px;
    }
    .project-carousel .project-carousel-wrapper .project-carousel-items .project-carousel-item {
        display: grid;
        align-items: center;
        grid-template-columns: 50% 25%;
        gap: 100px;

    }
    .project-carousel .project-carousel-wrapper .project-carousel-items .project-carousel-item .image img {
        width: 100%;
    }
    .project-carousel .project-carousel-wrapper .project-carousel-items .project-carousel-item .content .title {
        font-size: 50px;
        line-height: 55px;
        margin-bottom: 20px;
    }
    .project-carousel .project-carousel-wrapper .project-carousel-items .project-carousel-item .content .btn {
        margin-top: 20px;
    }
    .project-carousel .project-carousel-wrapper .project-carousel-items {
        position: relative;
    }
    .project-carousel .project-carousel-wrapper .project-carousel-items .slick-arrow {
        position: absolute;
        right: 50%;
        bottom: 0;
        top: auto;
        height: 46px;
        width: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #BEA378;
        color: #FFF;
        border: none;
        z-index: 9;
    }
    .project-carousel .project-carousel-wrapper .project-carousel-items .slick-arrow.slick-prev {
        transform: translateX(-46px);
    }
    .projects-overview .projects-overview-items {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    .projects-detail-cta .projects-detail-cta-content-wrapper {
        height: 0px;
    }
    .projects-detail-cta .projects-detail-cta-content-wrapper .projects-detail-cta-content {
        padding: 60px 60px 60px 0px;
        transform: translateY(-50%);
    }
    .jobs-overview .jobs-overview-items {    
        grid-template-columns: 1fr 1fr;
    }
    .rent-overview .rent-overview-items {    
        grid-template-columns: 1fr 1fr;
    }
    
    

}
@media screen and (min-width: 1200px) {

    body {
        font-size: 18px;
    }
    
    h1, .h1 {
        font-size: 50px;
    }
    h2, .h2 {
        font-size: 40px;
        margin-bottom: 25px;
    }

    .btn {
        margin-top: 25px;
    }
    
    header.header-default .logo {
        padding: 16px 44px;
    }
    header.header-default .logo a img {
        max-height: 72px;
    }

    #page {
        margin-top: 100px;
    }
    section {
        padding: 120px 0px;
    }

    .hero.hero-information .hero-content-wrapper {
        height: 0px;
    }
    .hero.hero-projects-overview {   
        padding-top: 160px;
    }
    .hero.hero-projects-detail {   
        padding-top: 160px;
    }
    .projects-detail-cta {
       padding-top: 60px;
    }
    .information-intro {
        padding: 200px 0px 80px 0px;
    }
    .information-intro p {
        font-size: 22px;
        line-height: 38px;
    }
    .information-content-image .content {
        padding-right: 50px;
    }
    .information-content-image .content .btn {
        margin-top: 15px;
    }
    .services-overview {
        padding-top: 50px;
    }
    .services-overview .services-overview-card a .content span {
        font-size: 24px;
    }
    .section-contact .contact-content {
        padding-right: 50px;
    }
    .section-contact .contact-content ul.contact-list li a {
        font-size: 24px;
    }
    footer.footer-default .footer-top .footer-contact {
        padding-right: 50px;
    }
    footer.footer-default .footer-top .footer-contact ul.contact-list li a {
        font-size: 24px;
    }
    footer.footer-default .footer-center .footer-column .footer-social ul.social-list {
        justify-content: flex-end;
    }

}
@media screen and (min-width: 1400px) {
}