:root {
    --gold: #807451;
    --darkgray: #302e2b;
}

body {
    margin: 0;
    color: var(--darkgray);
    font-family: 'Montserrat', sans-serif;
}

nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    /* height: 40px; */
    box-shadow: 0 0 13px 0px rgb(0 0 0 / 30%);
    background-color: var(--gold);
    /* #302e2b;*/
    z-index: 4;
    color: white;
    text-align: center;
}

nav a {
    color: white;
    text-decoration: none;
}

nav .lang {
    font-size: 12px;
}

nav .lang a {
    padding: 0 5px;
}

nav ul {
    margin: 0;
    padding: 0;
}

nav li {
    display: inline-block;
    padding: 15px 20px;
}

a {
    color: var(--gold);
}

p {
    line-height: 26px;
    margin: 0;
    font-size: 16px;
}

#intro {
    height: 95vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

#intro:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #807451;
    opacity: 0.8;
    z-index: 1;
}

#intro img {
    height: 40vh;
    width: auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

#intro>div {
    width: 100%;
    height: 100%;
    position: absolute;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: all 1s linear;
}

#intro>.bg-video {
    opacity: 1;
    height: 100%;
    width: 100%;
}

#intro>.video-wrapper {
    opacity: 1;
    padding-bottom: 56.25%;
    /* 16:9 */
    position: relative;
}

#intro>.video-wrapper iframe {
    position: absolute;
    top: -50vh;
    left: 0;
    width: 100vw;
    height: 100vw;
}

/* #intro div.active {
    opacity: 1;
} */

section div {
    display: inline-flex;
}

section.center {
    text-align: center;
}

section.center h2 {
    padding: 1% 0 1% 0;
}

section.center h2:before {
    width: 20vw;
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

section.center h3 {
    margin: 2.5% 0 1.5% 0;
}

.table-cell {
    display: table-cell;
    width: 50%;
    padding: 5%;
}

.bgimage {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bggold {
    padding: 4%;
    background-color: var(--gold);
    color: white;
}

.bggold h3 {
    color: var(--darkgray);
    font-size: 25px;
}

.bggold table {
    width: 100%;
}

.bggold table td {
    width: 33.33%;
    text-align: center;
}

.bggold a {
    color: white;
}

.bggold a:hover {
    color: var(--darkgray);
}

.logos {
    margin: auto;
    position: relative;
    display: inline-block;
}

.logos img {
    height: 170px;
    margin: 0 30px;
}

.logos>div {
    display: inline-block;
}

h2 {
    display: inline-block;
    margin: 0;
    position: relative;
    padding: 2% 2% 2% 0;
    color: white;
    font-weight: 300;
    font-size: 30px;
}

h2:before {
    content: "";
    display: inline-block;
    background-color: var(--gold);
    width: 20vw;
    height: 100%;
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
}

h3 {
    font-weight: 700;
    margin: 5% 0 3% 0;
    color: var(--gold);
}

.btn {
    display: inline-block;
    border: 0;
    background-color: var(--gold);
    color: white;
    padding: 8px 16px;
    margin-top: 25px;
    text-decoration: none;
}

.btn:hover {
    background-color: var(--darkgray);
}

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

.text-left {
    text-align: left;
}

#contacts label {
    width: 100px;
    text-align: right;
    padding: 5px 10px;
}

#contacts>div {
    display: block;
    width: auto;
}
#contacts form div {
    padding: 5px 10px;
}


#contacts input, #contacts textarea {
    width: 300px;
    border: 1px solid var(--gold);
    outline: none;
    background-color: #80745122;
    line-height: 20px;
}

#contacts input {
    line-height: 20px;
}

#contacts textarea {
    line-height: 16px;
}

#contacts .btn {
    font-size: inherit;
    margin-right: 204px;
}

#contacts .has-error {
    color: rgb(197, 13, 0);
}

#contacts .has-error input {
    border-color: rgb(197, 13, 0);
}

#contacts .has-error textarea {
    border-color: rgb(197, 13, 0);
}

#contacts .form-response {
    display: block;
}

#contacts .form-response b {
    display: block;
    margin-top: 30px;
}

footer {
    margin: 2% 0 2% 0;
    text-align: center;
    font-size: 12px;
}

.grecaptcha-badge {
    display: none;
}
.gv {
    font-size: 150%;
    color: var(--gold);
}

.bggold .gv {
    color: white;
}