/* GENERAL */

html {
    scroll-behavior: smooth;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 15px;
    line-height: 1.85;
    background: #0d0d0d;
    color: #cacaca;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Libre Baskerville', serif;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

h1 {
    font-size: 50px;
}

.grid-x {
    width: 90%;
    max-width: 1500px;
    margin: 0 auto;
}

.grid-x.full {
    width: 100%;
    max-width: none;
}

a {
    color: #b2a37d;
    transition: 0.5s;
}

a:hover {
    color: #a69569;
}

::selection {
    color: #000;
    background: #b2a37d;
}

.button:hover {
    background: #a69569;
    color: #fff;
}

.btn {
    font-family: 'Libre Baskerville', serif;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
    color: #cacaca;
    transition: 0.5s;
}

.btn:after {
    content: '';
    display: block;
    left: 0;
    bottom: 0;
    width: 35%;
    height: 1px;
    background: #b2a37d;
    transition: 0.5s;
}

.btn:hover {
    color: #cacaca;
    transition: 0.5s;
}

.btn:hover:after {
    width: 100%;
    transition: 0.5s;
}

.scroll {
    scroll-margin-top: 84px;
}

.cc-window {
    font-family: inherit;
}

.cc-banner .cc-message {
    font-size: 13px;
}

.cc-compliance .cc-dismiss {
    font-size: 13px;
}

/* HEADER */

.header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 15;
    padding: 25px;
    color: #dcdcdc;
    transition: 0.4s;
}

.logo {
    padding: 0;
    max-height: 125px;
    transition: 0.5s;
}

.header.scrolled {
    background: rgb(13 13 13 / 75%);
    padding: 10px 25px;
    transition: 0.5s;
}

.header.scrolled .logo {
    max-height: 75px;
    transition: 0.4s;
}

.nav-wrapper {
    text-align: right;
}

.menu-toggle {
    display: inline-block;
    color: #cacaca;
    font-size: 30px;
}

.menu-toggle:hover,
.menu-toggle:focus {
    color: #b2a37d;
}

.main-menu {
    position: absolute;
    height: 100%;
    top: 0;
    right: -60%;
    z-index: 999;
    display: block;
    width: 60%;
    padding: 10vw 5vw;
    margin: 0;
    background: #0d0d0d;
    transition: 0.3s;
    font-size: 20px;
}

.main-menu:target,
.main-menu[aria-expanded="true"] {
    right: 0;
}

.main-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.main-menu ul li {
    display: block;
    margin: 10px 0;
}

.main-menu ul li.seperator {
    border-top: 1px solid #cacaca;
    width: 100%;
    height: 1px;
    margin: 15px 0 7px;
}

.main-menu ul li.social-link {
    display: inline-block;
    margin-right: 10px;
}

.main-menu a {
    font-family: 'Libre Baskerville', serif;
    color: #fff;
    display: inline-block;
    padding: 5px;
    transition: 0.4s;
}

.main-menu a:hover,
.main-menu a:focus {
    color: #b2a37d;
}

.main-menu .menu-close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 30px;
    line-height: 1;
}

.main-menu:target .menu-close,
.main-menu[aria-expanded="true"] .menu-close {
    z-index: 1001;
}

.main-menu:target ul,
.main-menu[aria-expanded="true"] ul {
    position: relative;
    z-index: 1000;
}

.main-menu:target + .backdrop,
.main-menu[aria-expanded="true"] + .backdrop {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
    background: #000;
    background: rgba(0, 0, 0, .85);
    cursor: default;
}

@supports (position: fixed) {

    .main-menu,
    .main-menu:target + .backdrop,
    .main-menu[aria-expanded="true"] + .backdrop {
        position: fixed;
    }
}

@media (min-width: 768px) {

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

    .menu-toggle,
    .main-menu .menu-close {
        display: none;
    }

    .main-menu {
        position: relative;
        width: 100%;
        right: auto;
        top: auto;
        height: auto;
        display: block;
        padding: 0;
        background: none;
    }

    .main-menu ul {
        text-align: center;
    }

    .main-menu ul li {
        margin: 0;
        margin-left: 6px;
        margin-right: 6px;
        padding: 0;
        display: inline-block;
    }

    .main-menu ul li.social-link {
        margin-right: 0;
    }

    .main-menu ul li.seperator {
        display: inline-block;
        border-top: none;
        border-left: 1px solid #cacaca;
        width: auto;
        height: 25px;
        vertical-align: middle;
        margin: 0;
        margin-left: 10px;
    }
}

/* PAGE BANNER */

#pagebanner {
    position: relative;
    overflow: hidden;
}

.pagebanner__text {
    position: absolute;
    left: calc(10vw + 0.9375rem);
    bottom: 12.5vw;
    z-index: 2;
    margin: 0 auto;
    max-width: 60vw;
}

@media (max-width: 850px) {
    .pagebanner__text {
        right: calc(10vw + 0.9375rem);
        max-width: none;
        bottom: 15vw;
    }
}

@media (max-width: 650px) {
    .pagebanner__text {
        bottom: 25vw;
    }
}

.pagebanner__text h1 {
    color: #fff;
    margin: 0;
    font-size: 55px;
    line-height: 1.25;
}

@media (max-width: 1400px) {
    .pagebanner__text h1 {
        font-size: 48px;
    }
}

@media (max-width: 1200px) {
    .pagebanner__text h1 {
        font-size: 42px;
    }
}

@media (max-width: 1000px) {
    .pagebanner__text h1 {
        font-size: 38px;
    }
}

.pagebanner__image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    opacity: 0.75;
}

@media (max-width: 1023px) {
    .pagebanner__image img {
        height: 80vh;
    }
}

.pagebanner__scroll {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    font-size: 35px;
    color: #fff;
}

@media (max-width: 1150px) {
    .pagebanner__scroll {
        font-size: 30px;
    }
}

@media (max-width: 900px) {
    .pagebanner__scroll {
        font-size: 24px;
    }
}

@media (max-width: 550px) {
    .pagebanner__scroll {
        font-size: 19px;
    }
}

/* ABOUT */

#about {
    padding: 5vw 10vw;
}

/* KEY SKILLS */

#key-skills {
    padding: 2.5vw 10vw;
    background: #060606;
}

#key-skills h3 {
    margin: 0;
    font-size: 20px;
}

#key-skills .fas {
    color: #b2a37d;
    font-size: 45px;
}

#key-skills h4 {
    margin: 10px auto 0;
    font-size: 14px;
}

@media (max-width: 1200px) {
    #key-skills .fas {
        font-size: 36px;
    }

    #key-skills h4 {
        font-size: 12px;
    }
}

@media (max-width: 1000px) {
    #key-skills h4 {
        font-size: 14px;
    }
}

@media (max-width: 500px) {
    #key-skills .fas {
        font-size: 30px;
    }

    #key-skills h4 {
        font-size: 11px;
    }
}

/* SERVICES */

#services {
    padding: 2.5vw 0 5vw 10vw;
}

@media (max-width: 639px) {
    #services {
        padding: 2.5vw 10vw 5vw;
    }
}

#services h2 {
    font-size: 22px;
    margin-bottom: 7px;
}

#services p {
    margin-bottom: 0;
}

#services .services-swiper {
    padding-left: 0.9375rem;
    margin-top: 2vw;
}

@media (max-width: 639px) {
    #services .services-swiper {
        padding-left: 0;
    }
}

#services .service {
    position: relative;
    padding: 1px;
}

#services .service h3 {
    font-size: 18px;
    margin: 20px 0 5px;
}

#services .service p {
    margin: 0 0 10px;
    font-size: 14px;
    max-width: 75%;
}

#services .service .btn {
    font-size: 14px;
}

.swiper-button-wrapper .swiper-button {
    outline: none;
    display: inline-block;
    font-size: 35px;
    cursor: pointer;
    transition: 0.4s;
    margin-right: 25px;
}

.swiper-button-wrapper .swiper-button:hover {
    color: #b2a37d;
}

.blocker {
    z-index: 25 !important;
}

.jquery-modal .modal {
    z-index: 30 !important;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    background: #0d0d0d;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.jquery-modal .modal .popup-img img {
    width: 100%;
    height: 100%;
}

.jquery-modal .modal a.close-modal {
    top: 15px;
    right: 15px;
    background: none;
    text-indent: 0;
    font-size: 0;
    text-align: center;
}

.jquery-modal .modal a.close-modal:after {
    content: '\f057';
    font-family: 'Font Awesome 5 Free';
    color: #b2a37d;
    font-size: 25px;
    line-height: 1;
    font-weight: 600;
}

@media (max-width: 639px) {
    .jquery-modal .modal .popup-img img {
        height: 35vh;
    }
}

.jquery-modal .modal .popup-text {
    padding: 2.5vw;
}

/* TESTIMONIALS */

#testimonials {
    padding: 5vw 10vw;
}

#testimonials p {
    font-size: 22px;
    line-height: 1.8;
    font-family: 'Libre Baskerville', serif;
    margin: 0;
}

#testimonials h5 {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    color: #b2a37d;
    margin: 30px 0 100px;
}

#testimonials .testimonial-text {
    padding: 25px;
    box-sizing: border-box;
}

#testimonials .quote {
    position: relative;
}

#testimonials .quote::before {
    content: '“';
    position: absolute;
    top: 25px;
    left: -50px;
    display: inline-block;
    font-size: 100px;
    line-height: 0;
    font-family: 'Libre Baskerville', serif;
}

#testimonials .quote::after {
    content: '”';
    position: absolute;
    bottom: -25px;
    right: -25px;
    display: inline-block;
    font-size: 100px;
    font-family: 'Libre Baskerville', serif;
    line-height: 0;
}

@media (max-width: 1300px) {
    #testimonials p {
        font-size: 18px;
    }

    #testimonials h5 {
        font-size: 14px;
        margin-bottom: 0;
    }

    #testimonials .quote::before,
    #testimonials .quote::after {
        font-size: 80px;
    }
}

@media (max-width: 1000px) {
    #testimonials p {
        font-size: 17px;
    }

    #testimonials h5 {
        font-size: 13px;
    }

    #testimonials .quote::before,
    #testimonials .quote::after {
        font-size: 65px;
    }
}

@media (max-width: 639px) {
    #testimonials p {
        font-size: 15px;
    }

    #testimonials h5 {
        font-size: 12px;
    }

    #testimonials .quote::before,
    #testimonials .quote::after {
        font-size: 50px;
    }

    #testimonials .quote::before {
        top: 25px;
        left: -25px;
    }

    #testimonials .quote::after {
        bottom: -5px;
        right: -15px;
    }

    #testimonials .swiper-slide {
        padding: 1px;
    }
}

/* PARTNERS */

#partners {
    padding: 2.5vw 10vw;
    background: #060606;
}

#partners h3 {
    margin: 0 0 10px;
    font-size: 24px;
}

#partners img {
    width: auto;
    height: 50px;
}

@media (max-width: 768px) {
    #partners img {
        height: 35px;
        padding: 10px;
    }
}

.swiper-wrapper {
    align-items: center;
}

.swiper-dots {
    margin: 15px auto 0;
    width: 100%;
    text-align: center;
}

.swiper-dots .swiper-pagination-bullet {
    margin: 0 5px;
    background: #cacaca;
    transition: 0.4s;
    outline: none;
    opacity: 1;
}

.swiper-dots .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #b2a37d;
}

/* CONTACT */

#contact {
    padding: 2.5vw 10vw;
    background: #060606;
}

#contact h2 {
    margin-bottom: 5px;
}

#contact .details {
    margin-top: 40px;
}

#contact .details .social-link {
    margin-right: 12px;
    color: #cacaca;
    display: inline-block;
    vertical-align: middle;
}

#contact p strong {
    display: block;
    font-family: 'Libre Baskerville', serif;
    color: #b2a37d;
    font-size: 14px;
    font-weight: 400;
}

#contact p span {
    display: block;
}

#contact .wpcf7 {
    margin-top: 45px;
}

#contact label {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: 1;
    color: #cacaca;
    margin: 0 0 6px;
}

#contact .wpcf7-checkbox .wpcf7-list-item {
    margin-left: 25px;
}

#contact .wpcf7-checkbox .wpcf7-list-item.first {
    margin-left: 0;
}

#contact .wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label {
    vertical-align: middle;
}

#contact input {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    color: #cacaca;
    margin: 0 0 10px;
    padding: 0 8px;
    background: none;
    border: 1px solid #cacaca;
    border-radius: 0;
}

#contact .wpcf7-checkbox .wpcf7-list-item input {
    vertical-align: middle;
    margin-bottom: 0;
    margin-right: 4px;
    font-size: inherit;
}

#contact textarea {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.5;
    color: #cacaca;
    margin: 0 0 10px;
    padding: 8px;
    background: none;
    border: 1px solid #cacaca;
    border-radius: 0;
    height: 115px;
    resize: vertical;
}

#contact input[type=submit] {
    border-color: #b2a37d;
    padding: 10px 20px;
    font-family: 'Libre Baskerville', serif;
    cursor: pointer;
    transition: 0.5s;
}

#contact input[type=submit]:hover {
    background: #b2a37d;
}

#contact .form-grid {
    margin: 0 -10px;
}

#contact .form-grid .cell {
    padding: 10px;
}

/* INSTAGRAM FEED */

#instagram {
    background: #060606;
    padding-bottom: 15px;
}

#instagram .sb_instagram_header {
    display: none;
}

#sb_instagram #sbi_load .sbi_load_btn,
#sb_instagram .sbi_follow_btn a {
    border-radius: 0;
    box-shadow: none;
}

#sb_instagram .sbi_follow_btn a {
    background-color: #b2a37d;
    transition: 0.4s;
    box-shadow: none;
}

#sb_instagram .sbi_follow_btn a:hover {
    background-color: #a69569;
    box-shadow: none;
}

/* FOOTER */

.footer {
    padding: 0.5vw 10vw;
    background: #060606;
    border-top: 1px solid #0d0d0d;
}

.footer p {
    margin: 0;
    font-size: 14px;
}

.footer a {
    display: inline-block;
    vertical-align: middle;
}

.footer img {
    width: 195px;
    vertical-align: middle;
    margin-left: 7px;
}

.footer-left img {
    width: 100%;
    max-width: 200px;
    margin: 0 auto 15px;
    height: auto;
    display: block;
}

.footer-left a {
    color: #cacaca;
    font-size: 13px;
    text-decoration: underline;
}

.footer-social .social-link {
    margin: 0 7px;
    color: #cacaca;
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    margin-bottom: 20px;
}

.country-selector.weglot-dropdown .wgcurrent a,
.country-selector.weglot-dropdown .wgcurrent span {
    padding-right: 15px !important;
}

.country-selector.weglot-dropdown {
    background: none;
    border: none;
    margin-left: 15px;
}

.country-selector.weglot-dropdown .wgcurrent {
    border: none;
}

.country-selector.weglot-dropdown ul {
    border: none;
    background: #201d1d;
}

.country-selector.weglot-dropdown li {
    margin: 0;
}

.country-selector.weglot-dropdown .wgcurrent:after,
.country-selector.weglot-dropdown input:checked ~ .wgcurrent:after {
    filter: invert(0.9);
    image-rendering: auto;
}

.powered-by {
    background: #201d1d;
    padding: 8px 16px;
    font-size: 11px;
    border-radius: 8px;
    position: fixed;
    bottom: 0;
    right: 25px;
}

.powered-by img {
    height: 25px;
    margin-left: 3px;
}

/* Changes April 2025 */

.page-template-template-home-new {
    font-family: 'Montserrat', sans-serif;
}

.page-template-template-home-new h1,
.page-template-template-home-new h2,
.page-template-template-home-new h3,
.page-template-template-home-new h4 {
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.page-template-template-home-new p {
    line-height: 1.75;
}

.page-template-template-home-new .header,
.page-template-template-home-new #about {
    background-image: url("../images/bg_texture.png");
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
}

.page-template-template-home-new #about {
    position: relative;
}

.page-template-template-home-new #about:after {
    content: '';
    position: absolute;
    left: -5%;
    top: -5%;
    bottom: 0;
    width: 30%;
    background-image: url("../images/logo-bg.png");
    background-size: 100%;
    background-position: top left;
    background-repeat: no-repeat;
    opacity: 0.15;
}

@media (max-width: 850px) {
    .page-template-template-home-new #about:after {
        width: 75%;
    }
}

.page-template-template-home-new .header .logo {
    max-height: 90px;
}

.page-template-template-home-new .header.scrolled .logo {
    max-height: 70px;
}

.page-template-template-home-new .main-menu a {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    color: #c3b9aa;
}

.page-template-template-home-new .main-menu a:hover {
    color: #b2a37d;
}

.page-template-template-home-new .main-menu {
    font-size: 17px;
}

.page-template-template-home-new .main-menu .social-link {
    font-size: 22px;
}

.page-template-template-home-new .pagebanner__text {
    bottom: 8vw;
}

.page-template-template-home-new .pagebanner__text h1 {
    font-size: 44px;
}

.about-title h2 {
    font-size: 55px;
    line-height: 1;
    margin: 0 0 0.7em;
}

.about-title h2:after {
    content: '';
    width: 200%;
    margin: 15px 0;
    display: block;
    height: 1px;
    background: #b2a37d;
    margin-left: -100%;
}

.page-template-template-home-new #services h2 {
    font-size: 28px;
}

.page-template-template-home-new #key-skills h3 {
    font-size: 38px;
}

.page-template-template-home-new #key-skills h4 {
    font-size: 13px;
}

@media (max-width: 850px) {

    .page-template-template-home-new .pagebanner__text h1 {
        font-size: 30px;
    }

    .about-title h2 {
        font-size: 34px;
    }

    .page-template-template-home-new #services h2 {
        font-size: 24px;
    }

    .page-template-template-home-new #key-skills h3 {
        font-size: 30px;
    }

    .page-template-template-home-new #key-skills h4 {
        font-size: 12px;
    }
}

.page-template-template-home-new .btn {
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.page-template-template-home-new .btn:after {
    content: '';
    display: block;
    left: 0;
    bottom: 0;
    width: 40%;
    height: 1px;
    background: #b2a37d;
    transition: 0.5s;
    margin-top: 1px;
}

.page-template-template-home-new #services .service h3 {
    font-size: 20px;
}

@media (max-width: 850px) {
    .page-template-template-home-new #services .service h3 {
        font-size: 18px;
    }
}

.page-template-template-home-new #services .service .btn {
    font-size: 15px;
}

.page-template-template-home-new #contact h2 {
    margin-bottom: 0.5em;
    font-size: 40px;
    line-height: 1;
}

.page-template-template-home-new #contact .wpcf7 {
    margin-top: 0;
}

.page-template-template-home-new #contact .details {
    margin-top: 0;
}

.page-template-template-home-new #contact .details img {
    max-width: 200px;
    margin-bottom: 15px;
}

.page-template-template-home-new #contact .details p {
    text-transform: uppercase;
    font-size: 18px;
    margin: 5px 0;
}

.page-template-template-home-new #contact .details p span.fi {
    margin: 0 0 0 10px;
    height: 35px;
    display: inline-block;
    vertical-align: middle;
    width: 35px;
    border-radius: 50%;
    border: none;
    background-position: center center;
    background-size: 100%;
    line-height: 35px;
}

.page-template-template-home-new #contact .details p.social-link {
    margin-top: 20px;
    margin-bottom: 0;
}

.page-template-template-home-new #contact .details p a i {
    font-size: 24px;
    margin: 0;
    margin-right: 3px;
    line-height: 1;
    padding: 0;
    color: #b2a37d;
    vertical-align: middle;
}

.page-template-template-home-new #contact .details p a:hover {
    color: #b2a37d;
}

@media (max-width: 850px) {
    .page-template-template-home-new #contact .details p {
        font-size: 15px;
    }
}

.page-template-template-home-new #contact #contact .form-grid .cell {
    padding: 0 12px;
}

.page-template-template-home-new #contact input[type=submit] {
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.page-template-template-home-new #instagram {
    background: #B2A37D;
    background: linear-gradient(90deg, rgba(143, 126, 85, 1) 16.66666667%, rgba(133, 118, 79, 1) 33.33333%, rgba(143, 126, 85, 1) 50%, rgba(133, 118, 79, 1) 66.66666667%, rgba(143, 126, 85, 1) 83.33333333%);
    padding: 7.5vh 0;
}

.page-template-template-home-new #instagram p {
    font-size: 28px;
    margin: 0;
    color: #fff;
}

.page-template-template-home-new #instagram p a {
    color: #fff;
}

.page-template-template-home-new #instagram .social-link {
    font-size: 45px;
    display: inline-block;
    margin: 0 15px;
    color: #fff;
}

@media (max-width: 850px) {
    .page-template-template-home-new #instagram p {
        font-size: 20px;
    }

    .page-template-template-home-new #instagram .social-link {
        font-size: 30px;
    }
}

.post-password-form {
    padding: 30vh 20vw 50vh;
    text-align: left;
}