/* base styles
================================================== */
* {
    margin: 0;
    padding: 0;
    outline: 0;
}

.mx-datepicker-main {
    position: absolute !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
}

#datepicker-container {
    position: relative;
}

#datepicker-container .mx-datepicker-main {
    top: 100% !important; /* Ensure it appears below the input */
    left: 0 !important;
}

.mx-datepicker {
    display: none !important;
}

body,
html {
    height: 100%;
}

body {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
}

:focus {
    outline: 0
}

img {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
    border: none;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px white inset;
}

/* typography
================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Serif Text', sans-serif;
    font-weight: 400;
    font-optical-sizing: auto;
    color: #000000;
    margin: 0 0 10px 0;
}

h1 {
    font-size: 96px;
    line-height: 84px;
}

h2 {
    font-size: 58px;
    line-height: 68px;
}

h3 {
    font-size: 32px;
    line-height: 46px;
}

h4 {
    font-size: 20px;
    line-height: 46px;
    font-weight: normal;
}

h5 {
    font-size: 28px;
    line-height: 34px;
    font-weight: normal;
}

h6 {
    font-size: 28px;
    line-height: 34px;
    font-weight: normal;
}

strong {
    font-weight: 700;
}

a {
    color: #000000;
    text-decoration: none;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

a:hover,
a:active,
a:focus {
    color: #000000;
    outline: 0;
    text-decoration: none;
}

p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
}

.form-group {
    margin: 0 0 20px 0;
}

.btn {
    font-size: 16px;
    line-height: 50px;
    height: 50px;
    padding: 0 25px;
    text-transform: uppercase;
    border-radius: 0;
}

.btn-primary {
    color: #fff;
    background-color: #ED1C24;
    border-color: transparent;
    box-shadow: 0 14px 38px -8px rgba(237, 28, 36, 0.47);
}

.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled):active,
.show > .btn-primary.dropdown-toggle,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
    color: #fff;
    background-color: #C00000;
    border-color: transparent;
    outline: none;
}


.btn-outline-primary {
    color: #fff;
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.31);
}

.btn-outline-primary:not(:disabled):not(.disabled).active,
.btn-outline-primary:not(:disabled):not(.disabled):active,
.show > .btn-outline-primary.dropdown-toggle,
.btn-outline-primary:active,
.btn-outline-primary:focus,
.btn-outline-primary:hover {
    color: #000000;
    background-color: #ffffff;
    border-color: #ffffff;
    outline: none;
}


.btn-outline-dark {
    color: #000000;
    background-color: transparent;
    border-color: #000000;
}

.btn-outline-dark:not(:disabled):not(.disabled).active,
.btn-outline-dark:not(:disabled):not(.disabled):active,
.show > .btn-outline-dark.dropdown-toggle,
.btn-outline-dark:active,
.btn-outline-dark:focus,
.btn-outline-dark:hover {
    color: #ffffff;
    background-color: #000000;
    border-color: #000000;
    outline: none;
}

.space {
    padding: 70px 0;
}


header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);

    -webkit-transition: all .2s;
    transition: all .2s;

    z-index: 125;
}

header.fixed {
    border-bottom-color: transparent;
    background-color: rgba(0, 0, 0, 0.6);
}

header.fixed .top {
    padding: 5px 0;
}

header.fixed .logo img {
    height: 45px;
}

header .btn {
    line-height: 40px;
    height: 40px;
}

header .logo {
    display: block;
}

header .logo img {
    height: 50px;

    -webkit-transition: all .2s;
    transition: all .2s;
}

header .top {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);

    -webkit-transition: all .2s;
    transition: all .2s;
}

header .top .general-nav ul {
    text-align: right;
}

header .top .general-nav ul li {
    display: inline-block;
    margin: 0 15px;
}

header .top .general-nav ul li a {
    color: #fff;
    font-size: 14px;
    line-height: 14px;
    display: block;
    opacity: .6;
}

header .top .general-nav ul li a:hover {
    opacity: 1;
}

header .sub-menu {
    display: none;
}

header nav ul {
    text-align: right;
    margin-right: 60px;
}

header nav ul li {
    display: inline-block;
    margin: 0 15px;
}

header nav ul li a {
    color: #ffffff;
    font-family: 'DM Serif Text', sans-serif;
    font-size: 18px;
    line-height: 24px;
    display: block;
    padding: 25px 0;
    position: relative;
    opacity: .6;
}

header nav ul li a:before {
    content: "";
    height: 2px;
    width: 100%;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    bottom: -3px;
    display: block;
    opacity: 0;

    transition: all 0.4s;
}

header nav ul li a:hover:before {
    opacity: 1;
}

header nav ul li a:hover {
    color: #ffffff;
    opacity: 1;
}

header .langs ul {
    margin-right: 20px;
}

header .langs ul li {
    display: inline-block;
    position: relative;
}

header .langs ul li:after {
    content: "";
    height: 100%;
    width: 1px;
    border-right: 1px solid rgba(255, 255, 255, 0.4);
    position: absolute;
    top: 0;
    right: -3px;
}

header .langs ul li:last-of-type:after {
    display: none;
}

header .langs ul li a {
    color: #ffffff;
    text-transform: uppercase;
    display: block;
    padding: 0 20px;
    opacity: .6;
}

header .langs ul li a:hover,
header .langs ul li.active a {
    opacity: 1;
}


.intro {
    text-align: center;
    padding: 250px 0 200px 0;
}

.intro .heading-lab {
    margin: 0 0 20px 0;
}

.intro-villa {
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
/ / background: transparent url("../images/villa-intro-bgr.jpg") center bottom no-repeat;
}

.intro h1 {
    color: #ffffff;
    margin: 0 0 30px 0;
}

.intro-logo {
    margin: 0 0 20px 0;
}

.intro h1 span {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    line-height: 24px;
    font-weight: normal;
    display: block;
    margin: 0 0 15px 0;
}

.intro p {
    color: #ffffff;
}

.intro .intro-nav {
    margin: 40px 0 0 0;
}

.intro .intro-nav ul li {
    display: inline-block;
    margin: 0 25px;
    border-bottom: 1px solid #ffffff;
}

.intro .intro-nav ul li a {
    color: #ffffff;
    font-family: 'DM Serif Text', sans-serif;
    font-size: 26px;
    line-height: 26px;
    display: block;
    padding: 20px 0;
    opacity: .6;
}

.intro .intro-nav ul li a:hover {
    opacity: 1;
}

.story {
    background-color: #28412D;
}

.story h2,
.story p {
    color: #ffffff;
}


.villa {
    background-color: #DCCDBE;
}

.villa .villa-content {
    padding-right: 50px;
}


.surroundings {
    position: relative;
    padding: 100px 0 400px;
    background: url("../images/surroundings-bgr-01.jpg") center bottom no-repeat;
    background-size: cover;
}

.surroundings.villa-surroundings {
/ / background: url("../images/surroundings-bgr-02.jpg") center center no-repeat;
    background-size: cover;
}

.surroundings h2,
.surroundings h3,
.surroundings p {
    color: #ffffff;
}

.surroundings-feature-pr {
    padding-right: 50px;
}

.surroundings-feature-pl {
    padding-left: 50px;
}


.panoramic-view {
    position: relative;
    margin: 50px 0 -500px 0;
}

.panoramic-view-text {
    width: 75%;
    padding: 80px;
    position: absolute;
    left: 0;
    bottom: 0;
}


.culinary-journey {
    padding: 70px 0 300px 0;
    text-align: center;
    background: transparent url("../images/best-wine-bgr.jpg") center bottom no-repeat;
    background-size: cover;
}

.culinary-journey h2,
.culinary-journey h3,
.culinary-journey p {
    color: #ffffff;
}


.unique-location {
    position: relative;
    margin: 50px 0 0 0;
}

.unique-location-text {
    width: 50%;
    padding: 80px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.villa-info,
.villa-info h2,
.villa-info h3,
.villa-info p {
    color: #ffffff;
}

.villa-info {
    background-color: #28412D;
}


.villa-rooms {
    background-color: #DCCDBE;
    padding-top: 520px;
}


.floor-features {
    padding: 0 40px 0 40px;
}

.floor-features ul {
    margin: 15px 0 0 0;
}

.floor-features ul li {
    position: relative;
    padding: 0 0 0 45px;
    margin: 0 0 10px 0;
    line-height: 24px;
}

.floor-features ul li:last-of-type {
    margin: 0;
}

.floor-features ul li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    display: block;
    background-color: #000000;
    border-radius: 100%;
}


.services {
    background-color: #28412D;
}

.intro-services {
    position: relative;
    margin: 0 0 70px 0;
}

.intro-services-text {
    width: 75%;
    padding: 80px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.services,
.services h2,
.services h3,
.services p {
    color: #ffffff;
}


.convenience {
    margin: 0 0 60px 0;
}

.convenience-hint {
    color: #FF8888;
}

.imp-symbol {
    color: #FF8888;
}

.convenience ul li {
    position: relative;
    padding: 0 0 0 45px;
    margin: 0 0 10px 0;
    line-height: 24px;
}

.convenience ul li:last-of-type {
    margin: 0;
}

.convenience ul li:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 15px;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    display: block;
    background-color: #ffffff;
    border-radius: 100%;
}


.intro-wine {
/ / background: transparent url("../images/wine-intro-bgr.jpg") center top no-repeat;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.wine-bottle {
    padding: 450px 0;
}

.wine-bottle h2,
.wine-bottle h3,
.wine-bottle p {
    color: #ffffff;
}

.bottle-01 {
/ / background: transparent url("../images/wine-bottle-01-bgr.jpg") center top no-repeat;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bottle-02 {
/ / background: transparent url("../images/wine-bottle-02-bgr.jpg") center top no-repeat;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.wine-info {
    background-color: #DCCDBE;
}

.wine-info-stage {
    margin: 0 0 150px 0;
    padding: 0 0 0 50px;
}

.wine-info-stage img,
.wine-info-bottom-stage img {
    max-height: 63px;
    margin: 0 0 10px 0;
}

.wine-info-stage:last-of-type {
    margin: 0;
}

.wine-info-bottom-stage {
    margin: 80px 0 0 0;
}

.wine-info-bottom-stage p:last-of-type {
    margin: 0;
}

.best-wine {
    color: #ffffff;
    background-color: #28412D;
}

.best-wine .wine-best-map {
    margin: -110px 0 -200px;
    position: relative;
    z-index: 2;
}

.best-wine h2,
.best-wine h3,
.best-wine p {
    color: #ffffff;
}

.best-wine-features {
    margin: 50px 0 0 0;
}

.best-wine-features p:last-of-type {
    margin: 0;
}


.new-start {
    background-color: #28412D;
}

.new-start h2,
.new-start h3,
.new-start p {
    color: #ffffff;
}

.unique-terroir {
    position: relative;
    margin: 50px 0 50px 0;
}

.heading-lab {
    color: #fff;
    font-size: 20px;
    line-height: 26px;
}

.unique-terroir-text {
    width: 50%;
    padding: 80px;
    position: absolute;
    left: 0;
    top: 0;
}

.countries {
    margin: -150px 0 -170px 0;
    position: relative;
    z-index: 2;
}


.intro-spirit-of-the-place {
    background: transparent url("../images/spirit-of-the-place-bgr.jpg") center top no-repeat;
    background-size: cover;
}

.inspiration-features {
    padding: 0 0 0 50px;
}

.inspiration-feature {
    margin: 0 0 50px 0;
}

.inspiration-feature img {
    max-height: 63px;
}

.ecosystem {
    background: url("../images/ecosystem-bgr.jpg") center center no-repeat;
    background-size: cover;
}

.heading-lab,
.ecosystem h2,
.ecosystem p {
    color: #ffffff;
}


.domain-story {
    background-color: #DCCDBE;
}

.domain-story p:last-of-type {
    margin: 0;
}


.testimonials {
    padding: 100px 0 300px 0;
    background: url("../images/testimonials-bgr.jpg") center center no-repeat;
    background-size: cover;
}

.testimonials h2,
.testimonials p {
    color: #ffffff;
}

.testimonials .testimonial {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 25px 25px;
    margin: 70px 0 0 0;
    min-height: 305px;
}

.testimonials .testimonial .author-avatar {
    margin: -80px 0 15px 0;
    border-radius: 100%;
    max-height: 100px;
}

.testimonials .testimonial .author-name {
    font-size: 20px;
    line-height: 26px;
    margin: 0 0 10px 0;
}


.intro-farming-and-gardens {
    background: transparent url("../images/farming-and-garden-bgr.jpg") center top no-repeat;
    background-size: cover;
}

.intro-qq {
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0.41);
    position: relative;
    padding: 30px;
    text-align: left;
    margin: 20px 0 0 0;
}

.intro-qq .qq-author {
    font-weight: bold;
    margin: 20px 0 0 0;
}

.intro-qq:before {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    top: -30px;
    left: -20px;
    display: block;
    background: url("../images/icons/qq.svg") center center no-repeat;
    background-size: 50px;
}


.tradition {
    background-color: #28412D;
}

.tradition h2,
.tradition p {
    color: #ffffff;
}

.tradition p:last-of-type {
    margin: 0;
}


.principles {
    background-color: #DCCDBE;
}

.principles h2 {
    text-align: center;
}

.principles hr {
    background-color: #000000;
    margin: 40px 0 50px;
}

.principle {
    margin: 0 0 50px 0;
    padding: 0 50px 0 0;
}

.principle img {
    margin: 0 0 15px 0;
    max-height: 63px;
}

.biodynamic-farming {
    background-color: #4B624B;
    padding: 50px;
}

.biodynamic-farming img {
    margin-right: 20px;
}

.biodynamic-farming h3,
.biodynamic-farming p {
    color: #ffffff;
}

.biodynamic-farming p:last-of-type {
    margin: 0;
}


.activities {
    background-color: #28412D;
}

.activities h2,
.activities p {
    color: #ffffff;
}

.activities ul li {
    color: #ffffff;
    position: relative;
    padding: 0 0 0 45px;
    margin: 30px 0 0 0;
}

.activities ul li:last-of-type {
    margin: 0;
}

.activities ul li:before {
    content: "";
    position: absolute;
    top: 10px;
    left: 15px;
    width: 10px;
    height: 10px;
    display: block;
    background-color: #ffffff;
    border-radius: 100%;
}

.activities-text {
    padding: 0 50px 0 0;
}


.our-products {
    position: relative;
    margin: 50px 0 -500px 0;
}

.our-products-text {
    text-align: center;
    width: 80%;
    padding: 80px;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
}


.we-support.principles {
    padding: 500px 0 30px 0;
}


.intro-vineyard {
    background: transparent url("../images/intro-vineyard-bgr.jpg") center top no-repeat;
    background-size: cover;
}

.vineyard-info {
    background-color: #28412D;
}

.vineyard-info h2,
.vineyard-info p {
    color: #ffffff;
}

.vineyard-info-map {
    margin: -110px 0 -200px;
    position: relative;
    z-index: 2;
}

.vineyard-info .our-products {
    margin: 0;
}

.vineyard-info .our-products-text p {
    text-align: center;
    width: 75%;
    margin: 0 auto 30px;
    display: table;
}

.vineyard-info .best-wine-features h3 {
    color: #ffffff;
}


.intro-essentials {
    background: transparent url("../images/intro-essentials-bgr.jpg") center bottom no-repeat;
    background-size: cover;
    padding: 250px 0 500px 0;
}


.headings {
    text-align: center;
}

.headings .heading-avatar {
    font-family: 'DM Serif Text', sans-serif;
    font-size: 120px;
    line-height: 140px;
    font-weight: 400;
    color: rgba(75, 98, 75, 0.35);
}


.experiences-info {
    background-color: #28412D;
}

.experiences-info h2,
.experiences-info h3,
.experiences-info p {
    color: #ffffff;
}

.experiences-info .headings {
    margin: 0 0 70px 0;
}

.experiences-info hr {
    margin: 100px 0 30px 0;
}

.experiences-info .box-spacing {
    margin-bottom: 100px;
}


.discover-our-events {
    background: transparent url("../images/discover-our-events-bgr.jpg") center center no-repeat;
    background-size: cover;
    padding-bottom: 300px;
}

.discover-our-events h2,
.discover-our-events h3,
.discover-our-events p {
    color: #ffffff;
}

.discover-our-events .headings {
    margin: 0 0 50px 0;
}

.discover-feature img {
    max-height: 63px;
}


footer {
    position: relative;
    padding: 50px 0 0 0;
    background-color: #1A1A1A;
}

footer:before {
    content: "";
    background: url("../images/footer-top.svg") bottom center no-repeat;
    background-size: 100%;
    height: 270px;
    width: 100%;
    position: absolute;
    top: -270px;
}

footer h4 {
    color: #ffffff;
}

footer .footer-nav li {
    display: block;
    margin: 5px 0;
}

footer .footer-nav li a {
    color: #9C9C9C;
    display: block;
}

footer .footer-nav li a:hover {
    color: #ffffff;
}

footer .copyright {
    padding: 10px 0;
    margin: 50px 0 0 0;
    background-color: #131313;
}

footer .copyright-text {
    color: #9C9C9C;
}

footer .footer-logo {
    display: block;
    margin: 90px 15px 0 0;
}

footer .footer-about {
    color: #9C9C9C;
    padding: 55px 50px 0 0;
}

footer .footer-contacts {
    color: #9C9C9C;
}

footer .footer-general-nav {
    text-align: right;
}

footer .footer-general-nav li {
    display: inline-block;
    margin: 0 20px;
}

footer .footer-general-nav li a {
    color: #9C9C9C;
}

footer .footer-general-nav li a:hover {
    color: #ffffff;
}

footer .footer-social li {
    display: inline-block;
    margin: 0 10px;
}

footer .footer-social li:last-of-type {
    margin-right: 0;
}

footer .footer-social li a {
    color: #9C9C9C;
}

footer .footer-social li a svg path {

    transition: all 0.4s;
}

footer .footer-social li a:hover svg path {
    fill: #ffffff;
}

footer .footer-phone {
    color: #9C9C9C;
    font-weight: bold;
    background-color: #131313;
    padding: 10px 15px;
    margin: 10px 0 0 0;
    display: block;
    text-align: center;
}

footer .footer-phone:hover {
    color: #ffffff;
}

.container {
    z-index: 2;
    position: relative;
}

.bg-secondary {
    background-color: #D8C8B6 !important;
}

.breadcrumbs {
    display: none;
}

hr {
    background-color: #fff;
}


.intro-gallery {
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    background: transparent url("../images/gallery-bgr.jpg") center top no-repeat;
    padding: 250px 0 400px 0;
}

.gallery {
    background-color: #28412D;
}

.gallery .gallery-nav {
    margin: -300px 0 0 0;
    padding: 0 30px;
}

.gallery .gallery-nav ul li {
    display: inline-block;
    margin: 0 25px;
}

.gallery .gallery-nav ul li button {
    color: #ffffff;
    font-family: 'DM Serif Text', sans-serif;
    font-size: 32px;
    line-height: 32px;
    position: relative;
    display: block;
    padding: 20px 0;
    opacity: .6;

    border: 0;
    box-shadow: none;
    background: none;
    outline: none;
}

.gallery .gallery-nav ul li button.active {
    opacity: 1;
}

.gallery .gallery-nav ul li button.active:before {
    content: "";
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    bottom: -3px;
    display: block;

    transition: all 0.4s;
}

.gallery .gallery-nav ul li button:hover {
    opacity: 1;
}

.gallery .gallery-collection {
    background-color: #191919;
    padding: 20px;
}


.villa-features {
    padding: 70px 0 400px 0;
    background: transparent url("../images/villa-features-bgr.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.villa-features h2,
.villa-features h3,
.villa-features p {
    color: #ffffff;
}

.villa-features img {
    max-height: 52px;
    margin: 0 0 10px 0;
}

.villa-features .feature {
    margin: 25px 0 0 0;
    text-align: center;
}


.best-wine-features .feature img {
    margin: 0 0 15px 0;
}


.grid-item {
    margin-bottom: 25px;
}

.grid-item a {
    display: block;
    position: relative;
}

.grid-item a:after {
    content: "";
    background-color: #000000;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    opacity: 0;

    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.grid-item a:hover:after {
    opacity: .5;
}

.grid-item a:before {
    content: "";
    background: url("../images/icons/fullscreen.svg");
    background-size: 50px;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    z-index: 3;

    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;

    transform: translate(-50%, -50%);
}

.grid-item a:hover:before {
    opacity: 1;
}

