:root {
    --gold: #C2AA75;
    --gray: #414042;
}

html {
    scroll-behavior: smooth;
    display: flex;
    flex-direction: column;
    width: 100vw;
    overflow-x: hidden;
    align-items: center;
}

body {
    margin: 0 auto;
    padding: 0;
    font-weight: 300;
    opacity: 0;
    transition: opacity 0.5s;
    overflow-x: hidden;
    background: rgb(65, 64, 66);
    color: white;
    width: 100vw;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Raleway', sans-serif;
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-variant-numeric: lining-nums;
}

.container {
    padding: 0;
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

strong {
    font-weight: 600;
}

h1 {
    font-size: 64px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
}

h2 {
    font-size: 46px;
    line-height: 56px;
    margin-bottom: 30px;
    margin-top: 0;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark-gray);
}

h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
    margin-top: 0;
    text-transform: uppercase;
}

h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
    margin-top: 0;
}

section {
    margin: 100px 0;
    padding: 0 20px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.primary-link,
.primary-link:visited,
.primary-link:focus,
.btn-primary,
.btn-primary:visited,
.btn-primary:focus,
a.primary-link:not([href]) {
    padding: 13px 28px 11px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
    border-radius: 99px;
    display: block;
    width: fit-content;
    background-color: var(--gold);
    border: 1px solid var(--gold);
    color: var(--gray);
    text-transform: uppercase;
    outline: none;
    font-family: 'Raleway', sans-serif;
}

a.primary-link:not([href]):hover,
a.primary-link:not([href]):active,
.primary-link:hover,
.primary-link:active,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:not(:disabled):not(.disabled):active {
    border: 1px solid var(--gold);
    background-color: white !important;
    color: var(--gold);
    box-shadow: 0 0 10px rgba(167, 144, 196, 0.5);
}

::selection {
    background: var(--gold);
    color: white;
}

::-moz-selection {
    background: var(--gold);
    color: white;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: none;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
    transition: all 0.45s;
    z-index: 996;
}

.overlay.active {
    opacity: 1;
}

.cookiealert {
    opacity: 0;
    transition: all 0.5s;
    background: rgba(110, 110, 110, 0.5) !important;
}

.cookiealert.active {
    opacity: 1;
}

.cookiealert p {
    font-size: 14px;
}

.acceptcookies {
    border-radius: 3px;
}

.rccookie-container .btn-primary {
    width: 100%;
    color: white;
}

.rccookie-container p {
    font-size: 14px;
    line-height: 1.5;
}

.rccookie-modal .modal-body {
    padding: 20px;
    padding-top: 0;
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: var(--gold);
}

.custom-control-input:checked ~ .custom-control-label::before {
    border-color: var(--gold);
}

.custom-control-input:checked ~ .custom-control-label::before {
    background-color: var(--gold);
}

.modal {
    z-index: 999;
}

.modal-backdrop {
    display: none !important;
}

.modal .close {
    padding: 0 !important;
    background: transparent !important;
    margin: 0 !important;
    color: #fff;
    font-size: 30px;
    line-height: 30px;
    font-weight: 300;
}

.modal .card-header {
    display: none;
}

.modal-content {
    background: var(--gray);
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.slidercaptcha.card {
    background: var(--gray);
    border-radius: 10px;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    height: auto !important;
}

.modal .modal-header {
    padding: 20px;
}

.slider:hover {
    background: var(--gold);
    border: 2px solid var(--gold) !important;
}

.sliderMask {
    border-color: var(--gold) !important;
    background-color: var(--gold) !important;
}

.submitButton,
.btn-warning {
    background-color: var(--gold);
    border: 2px solid var(--gold);
    color: white;
    font-weight: 500;
}

.submitButton:hover,
.btn-warning:hover {
    background-color: white;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.submitButton:focus,
.btn-warning:focus {
    background-color: white;
    color: var(--gold);
    border: 2px solid var(--gold);
    outline: none !important;
}

a {
    transition: color 0.3s;
    text-decoration: none;
    cursor: pointer;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
    color: var(--gold);
}

button {
    transition: background-color 0.3s, color 0.3s;
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
}

button:focus {
    outline: none !important;
}

.vbox-close {
    padding: 20px !important;
    top: 10px !important;
    right: 20px !important;
}

.vbox-next {
    right: 40px !important;
}

.vbox-prev {
    left: 40px !important;
}

.vbox-title {
    display: none !important;
}

/* DESKTOP NAVBAR */

.desktop-navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.7s;
}

.desktop-navbar.active {
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.desktop-navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1320px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 0;
}

.desktop-navbar .logo {
    width: 180px;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
}

.desktop-navbar .logo img {
    width: 100%;
    height: auto;
    transition: filter 0.3s;
}

.desktop-navbar.active .logo img {
    filter: invert(0.7);
}

.desktop-navbar .links {
    display: flex;
    align-items: center;
    gap: 50px;
}

.desktop-navbar .links a {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    position: relative;
    font-family: 'Playfair Display', sans-serif;
    text-transform: uppercase;
    color: white;
}

#hero {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    margin: 0;
    padding: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(65, 64, 66, 1) 20%, rgba(21, 21, 21, 1) 100%);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

#hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
}

.bg-shape, .logo, .desc, .hero-h1 {
    user-select: none;
    -webkit-user-select: none;
}

#hero .bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

#hero .bg-shape img {
    position: absolute;
    top: -400px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
}

#hero .logo {
    margin: 0 auto;
    width: 244px;
    height: 57px;
    overflow: hidden;
    position: relative;
}

#hero .logo img {
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

#hero .desc {
    overflow: hidden;
    position: relative;
    height: 60px;
    width: 100%;
}

#hero .desc p {
    font-size: 22px;
    line-height: 33px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 0;
    width: 100%;
}

h1 {
    color: #EBD99B;
}

/* Webkit browsers */
h1 {
    background: rgb(175,147,95);
    background: -webkit-linear-gradient(90deg, rgba(175,147,95,1) 0%, rgba(194,170,117,1) 25%, rgba(246,230,169,1) 50%, rgba(194,170,117,1) 75%, rgba(175,147,95,1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Other browsers */
h1 {
    background: -moz-linear-gradient(90deg, rgba(175,147,95,1) 0%, rgba(194,170,117,1) 25%, rgba(246,230,169,1) 50%, rgba(194,170,117,1) 75%, rgba(175,147,95,1) 100%);
    background: -o-linear-gradient(90deg, rgba(175,147,95,1) 0%, rgba(194,170,117,1) 25%, rgba(246,230,169,1) 50%, rgba(194,170,117,1) 75%, rgba(175,147,95,1) 100%);
    background: linear-gradient(90deg, rgba(175,147,95,1) 0%, rgba(194,170,117,1) 25%, rgba(246,230,169,1) 50%, rgba(194,170,117,1) 75%, rgba(175,147,95,1) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

#hero .hero-h1 {
    overflow: hidden;
    margin: 20px auto;
    height: 58px;
    width: 100%;
    position: relative;
}

#hero .hero-h1 img:first-of-type,
#hero .hero-h1 img:last-of-type {
    height: 100%;
    width: auto;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

#hero .hero-h1 img:last-of-type {
    display: none;
}

#hero .contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 1140px;
    gap: 140px;
    position: relative;
    margin: 0 auto;
    background-color: var(--gray);
    padding: 30px 60px;
    border-radius: 25px;
}

#hero .message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.25);
    z-index: 99;
    border-radius: 25px;
}

#hero .message.active {
    display: flex;
}

#hero .message p {
    font-size: 36px;
    line-height: 50px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 0;
    max-width: 500px;
}

#hero .contact .left,
#hero .contact form {
    width: 38%;
}

#hero .contact .left .main {
    font-size: 28px;
    line-height: 40px;
}

#hero .contact .left p {
    font-size: 18px;
    line-height: 28px;
}

#hero .contact .left p a {
    color: var(--gold);
    text-decoration: underline;
    font-weight: 600;
    font-variant-numeric: lining-nums;
}

#hero .contact .left .line {
    width: 100%;
    border-top: 1px solid #888;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0 20px;
}

#hero .contact .left .line span {
    background-color: var(--gray);
    margin-top: -25px;
    padding: 10px 20px;
}

#hero .contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#hero .contact .arrow-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    z-index: 98;
}

form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

form input,
form select,
form textarea {
    padding: 12px 0;
    border: none;
    border-bottom: 1.5px solid var(--gold);
    outline: none;
    background-color: transparent;
    font-size: 16px;
    font-weight: 300;
    width: 100%;
    resize: none;
    color: white;
    font-family: 'Raleway', sans-serif;
}

form input.invalid,
form select.invalid,
form textarea.invalid {
    border-bottom: 1.5px solid rgb(161, 21, 21);
}

form select option {
    color: #000;
}

.form-check {
    margin-left: 36px;
    padding-left: 0 !important;
}

.form-check:first-of-type {
    margin-top: 20px;
}

.form-check-input {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.form-check-input+label {
    position: relative;
    line-height: 1.5;
    font-size: 14px;
    color: white;
    margin-bottom: 0;
}

.form-check-input+label::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    margin-left: -36px;
    width: 24px;
    height: 24px;
    background-color: transparent;
    border-radius: 5px;
    border: 1.5px solid var(--gold);
    transition: 0.3s ease;
}

.form-check-input.invalid+label::before {
    border: 1.5px solid rgb(161, 21, 21);
}

.form-check-input:checked+label::before {
    background-color: var(--gold);
    border: 1.5px solid var(--gold);
}

.form-check-input+label::after {
    content: " ";
    background-repeat: no-repeat;
    background-size: 14px 14px;
    background-position: center center;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -35px;
    left: -1px;
    top: -10px;
    text-align: center;
    background-color: transparent;
    font-size: 10px;
    height: 24px;
    width: 24px;
    transition: 0.3s ease;
    opacity: 0;
}

.form-check-input:checked+label::after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBmaWxsPSIjZmZmZmZmIiBkPSJNMTczLjg5OCA0MzkuNDA0bC0xNjYuNC0xNjYuNGMtOS45OTctOS45OTctOS45OTctMjYuMjA2IDAtMzYuMjA0bDM2LjIwMy0zNi4yMDRjOS45OTctOS45OTggMjYuMjA3LTkuOTk4IDM2LjIwNCAwTDE5MiAzMTIuNjkgNDMyLjA5NSA3Mi41OTZjOS45OTctOS45OTcgMjYuMjA3LTkuOTk3IDM2LjIwNCAwbDM2LjIwMyAzNi4yMDRjOS45OTcgOS45OTcgOS45OTcgMjYuMjA2IDAgMzYuMjA0bC0yOTQuNCAyOTQuNDAxYy05Ljk5OCA5Ljk5Ny0yNi4yMDcgOS45OTctMzYuMjA0LS4wMDF6Ii8+PC9zdmc+");
    opacity: 1;
    top: 0;
}

label a {
    cursor: pointer;
    color: white;
}

form .primary-link {
    margin-top: 10px;
}

.document-modal {
    position: fixed;
    top: calc(50% - 40px);
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--gray);
    padding: 30px;
    border-radius: 30px;
    width: calc(100vw - 40px);
    max-width: 800px;
    overflow-y: auto;
    max-height: 80%;
    z-index: 999;
    display: none;
    opacity: 0;
    transition: all 0.5s;
    scrollbar-width: thin;
    -ms-overflow-style: none;
}

.document-modal.active {
    top: 50%;
    opacity: 1;
}

.modal-header,
.modal-body {
    padding: 0;
}

.modal-body {
    padding-top: 30px;
}

.document-modal .cancel img {
    filter: invert(1);
    width: 25px;
    height: 25px;
}

.open-modal,
.open-modal:hover {
    text-decoration: underline;
}

.g-recaptcha {
    filter: invert(0.8);
}

@media (max-width: 1079px) {

    #hero .container {
        padding: 40px 20px;
        gap: 30px;
    }

    #hero .bg-shape img {
        top: 0;
        width: 200vw;
    }

    .g-recaptcha {
        transform: scale(0.9);
        margin: 0 auto;
        transform-origin: 0 0;
    }

    h1 {
        font-size: 42px;
    }

    #hero .hero-h1 {
        height: 80px;
    }

    #hero .hero-h1 img:first-of-type {
        display: none;
    }

    #hero .hero-h1 img:last-of-type {
        display: block;
    }

    #hero .desc br {
        display: none;
    }

    #hero .desc p {
        font-size: 18px;
        line-height: 28px;
    }

    #hero .contact {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        width: 100%;
        border-radius: 15px;
    }

    #hero .message p {
        font-size: 32px;
        line-height: 44px;
        padding: 40px;
    }

    #hero .contact .left,
    #hero .contact form {
        width: 100%;
    }

    #hero .contact .left p {
        font-size: 16px;
        line-height: 26px;
        text-align: center;
    }

    #hero .contact .arrow-btn {
        position: static;
        margin: 0 auto;
        transform: rotate(90deg);
    }

    #hero .contact form {
        gap: 20px;
    }

    form .primary-link {
        margin: 0 auto;
    }

    .rccookie-container {
        width: calc(100vw - 40px) !important;
        margin: 0 !important;
        bottom: 20px !important;
        right: 20px !important;
        background-color: var(--gray) !important;
        border-radius: 15px !important;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2) !important;
    }

    .rccookie-container p {
        font-size: 12px;
    }
}