:root {
    --font-roboto: 'Roboto';
    --font-josefin-sans: 'Josefin Sans';

    --color-primary: #C8B76A;
    --color-para: #181818;
    --color-white: #FFF;
    --color-white-05: rgba(255,255,255, 0.5);
    --color-bg: #303030;
    --color-nav-mobil: black;
    --color-golf-section: #F1EEE7;

    --linear-text: linear-gradient(135deg,#c8b76b 0%,#a8953e 25%,#a8953e 50%,#c8b76b 75%,#8e7e35 100%);
    --pad-section: 0 20px;
    --transition:  400ms cubic-bezier(.15,.75,.5,1);
}

/* HEADER SECTION */
.header {
    background-color: transparent;
    position: absolute;
    left: 0px;
    top: 0;
    width: 100%;
    transition: var(--transition);
    z-index: 10;
}
.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--pad-section);
    transition: var(--transition);
}
header img {
    height: 4.5rem;
}
.header__mobil {
    display: none;
    padding: 1rem .1rem;
    z-index: 20;
    transition: var(--transition);
}
.header__nav ul a{
    color: var(--color-white);
    text-decoration: none;
    font-family: var(--font-josefin-sans);
}
.header__nav ul{
    display: flex;
    gap: 2.4rem;
}
.header__nav ul li{
    display: flex;
    align-items: center;
    column-gap: .3rem;
}
header a, header svg{
    position: relative;
    transition: var(--transition);
}
.header__nav-list--before a:before {
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: -12px;
    background: var(--linear-text);
    -webkit-box-shadow: 0 0 0 2px ff0000 inset;
    box-shadow: 0 0 0 2px ff0000 inset;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    -moz-transform-origin: left;
    -ms-transform-origin: left;
    transform-origin: left;
    -webkit-transition: var(--transition);
    -moz-transition: var(--transition);
    transition: var(--transition);
}
.header__nav-list--before a:hover::before{
    transform: scaleX(1);
}
.header__nav-list--phone:hover a,
.header__nav-list--phone:hover svg path {
    color: var(--color-primary);
    fill: var(--color-primary);
}
.header__nav-list:last-child a{
    color: white !important;
}
.active-burger::before {
    transform: rotate(45deg);
    bottom: 0;
}
.active-burger::after {
    transform: rotate(-45deg);
    top: 0px;
}
.schedule-appointment{
    border: none;
    outline: none;
    padding: 1rem 1.5rem;
    background: var(--linear-text);
    background-size: 200%;
    background-position: left;
    transition: all var(--transition);
}
.schedule-appointment:hover{
    background-position: right;
    transform: translateY(-3px);
}
@media screen and (max-width:1200px) {

    .header__container{
        justify-content: flex-start;
    }
    .header__container img,
    .header__mobil img{
        cursor: pointer;
    }
    .header__nav{
        background-color: var(--color-para);
        height: 100vh;
        position: absolute;
        left: -320px;
        top: 0;
        width: 320px;
        transition: var(--transition);
    }
    .header__nav ul{
        flex-direction: column;
        align-items: center;
    }
    .header__nav-list--before a:before {
        display: none;
    }
    .header__mobil{
        display: flex;
        cursor: pointer;
    }
    .showBtn:hover .burger-menu {
        background-color: transparent !important;
    }

    .header__mobil:hover .burger-menu,
    .header__mobil:hover .burger-menu::after,
    .header__mobil:hover .burger-menu::before{
        background-color: var(--color-primary);
    }
    .burger-menu{
        position: relative;
    }
    .burger-menu,
    .burger-menu::after,
    .burger-menu::before{
        height: 2px;
        width: 26px;
        background-color: var(--color-white);
    }
    .burger-menu::after,
    .burger-menu::before{
        position: absolute;
        content: "";
        left: 0;
        transition: var(--transition);
    }
    .burger-menu::after{
        top: 8px;
    }
    .burger-menu::before{
        bottom: 8px;
    }
}
.showNavmenu {
    left: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
}
.showBtn {
    transform: translateX(330px);
    z-index: 1;
    position: fixed;
    width: 256px;
    top: 1rem;
    left: 0;
}
.section-move {
    transform: translateX(320px);
    transition: var(--transition);
}
.active-burger::before {
    transform: rotate(45deg);
    bottom: 0;
}
.active-burger::after {
    transform: rotate(-45deg);
    top: 0px;
}
.header__mobil:hover .active-burger::after{
    bottom: 8px;
}
.active-burger {
    background-color: transparent;
}
.sticky {
    position: sticky;
    background-color: var(--color-white);
    width: 100vw;
}
/* HERO SECTION */
.hero,
.hero2{
    background-position: 100% 64%;
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--color-primary);
    transition: var(--transition);
    width: 100%;
    height: 100vh;
}
.hero{
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../assets/header-1.jpg");
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../assets/header-1.jpg");
}
.hero2 {
    background-image:  url("../assets/header-2.png");
}
.swiper-slide-active .hero__title-cerrado{
    animation: fadeInRight 1s;
}
.swiper-slide-active .hero__title-unique {
    animation: fadeInLeft 1s;
}
.heroMobil{
   transform: translateX(256px);
}
.hero__title {
    padding: 0 20px;
    font-family: var(--font-josefin-sans);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 2rem;
}
.hero__title-cerrado, .hero__title-unique {
    font-size: 4.5rem;
    background: var(--linear-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero__title-cerrado{
    font-family: var(--font-roboto);
}
.hero__title-unique{
    font-family: var(--font-josefin-sans);
    font-weight: 500;
    position: relative;
}
.hero__title-unique:before {
    content: "|";
    position: absolute;
    left: -1rem;
    top: -.5rem;
    height: 115%;
    width: 1px;
    background-color: var(--color-primary);
}

/* PHYLOSOPHY SECTION */
.philosophy {
    background-color: var(--color-bg);
    border-top: 5px solid var(--color-primary);
}
.philosophy__main{
    display: flex;
    align-items: center;
    gap: 0rem;
    padding: 12rem 0 6rem;
}
.philosophy__main-content, .philosophy__main-images {
    flex-basis: 50%;
    flex-grow: 1;
}
.philosophy__main-content{
    display: flex;
    flex-direction: column;
    row-gap: 1.7rem;
}
.philosophy__main-content--text{
    margin-left: 85px;
    position: relative;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: .1rem;
    font-family: var(--font-josefin-sans);
}
.philosophy__main-content--text:before {
    content: "";
    position: absolute;
    bottom: 0.3rem;
    color: var(--color-white);
    left: -80px;
    width: 65px;
    height: 1px;
    background-color: var(--color-white);
}
.philosophy__main-images{
    position: relative;
    z-index: 1;
    margin-left: 3rem;
}
.room{
    position: absolute;
    top: -70px;
    left: 70px;
    width: 530px;
    z-index: -1;
}

.philosophy__list{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-content: space-between;
    row-gap: 1rem;
    padding-bottom: 8.5rem;
}
.philosophy__list li{
    flex-basis: 30%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    row-gap: .5rem;
    color: var(--color-white);
    text-transform: uppercase;
    font-size: .9rem;
    font-family: var(--font-josefin-sans);
}
.philosophy__list span {
    color: var(--color-primary);
    font-size: 4rem;
    font-family: var(--font-josefin-sans);
}

/* MATERIALS */
.materials{
    display: flex;
    justify-content: flex-start;
}
.materials__image {
    flex: 0 1 100%;
    height: 56vw;
    max-height: 1000px;
    max-width: 56vw;
    width: 150%;
    background-image: url("../assets/materials.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.materials__main{
    display: flex;
    align-items: center;
    gap: 0rem;
}
.materials__main-content{
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    flex: 1;
}
.materials__main-content--txt {
    max-width: 413px;
    padding-left: 2rem;
    padding-right: 2rem;
}
.materials__main-content--para{
    color: var(--color-para);
    font-size: .92rem;
    line-height: 1.7;
    font-family: var(--font-roboto);
}

/* SURROUNDING */
.surrounding{
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.surrounding__image {
    height: calc(37vw + 50px);
    min-height: 470px;
    width: 60%;
    min-width: 60%;
    background-image: url("../assets/surrounding.jpeg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
 .surrounding__main-content {
    max-width: 413px;
    padding-left: 2rem;
    padding-right: 1.5rem;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}

/* ACTIVITIES */
.activities{
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    background-color: var(--color-bg);
    width: 100%;
    position: relative;
    overflow: hidden;
}
.parallax-section{
    background: url("../assets/paralax-activities.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% ;
    background-attachment: fixed;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
}
.activities__article-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    column-gap: 2.3rem;
}
.activities__name{
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: .1rem;
    font-family: var(--font-josefin-sans);
}
.activities__article{
    display: flex;
    flex-direction: column;
    row-gap: 1rem;
    margin-top: 3rem;
    flex-basis: 33%;
}
.activities__article-text{
    color: var(--color-white);
    font-size: .92rem;
    line-height: 1.7;
    font-family: var(--font-roboto);
}
/* GOLF */
.section__container,
.get-in-touch__container,
.contact__container,
.footer__container,
.copyright {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--pad-section);
}
.golf{
    padding: 3.5rem 0 0;
    position: relative;
    overflow: hidden;
}
.golf-overflox {
    overflow: hidden;
}
.parallax-section-golf{
    background: url("../assets/paralax-golf.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% ;
    background-attachment: fixed;
    position: absolute;
    transform: scale(1.2);
    bottom: 0;
    right: 0;
    left: 0;
    height: 100%;
    z-index: -1;
}
.golf__header{
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
    z-index: 3;
}
.grid{
    display: grid;
    gap: 2rem;
    padding: 5rem 0;
}
.golf__grid-item--distance {
    font-family: var(--font-roboto);
}
.golf__grid-item--title{
    color: var(--color-primary);
    font-size: 1.5rem;
    font-weight: 300;
    font-family: var(--font-josefin-sans);
}
.golf__grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}
.golf__grid-item:nth-child(even) .golf__grid-item--distance,
.grid-odd .golf__grid-item:nth-child(odd) .golf__grid-item--distance{
    color: var(--color-white);
}
.golf__grid-item svg{
    padding-bottom: 2rem;
    align-self: flex-end;
}
.grid-even .golf__grid-item:nth-child(even),
.grid-odd .golf__grid-item:nth-child(odd){
    background-color: var(--color-bg);
}
.grid-even .golf__grid-item:nth-child(odd),
.grid-odd .golf__grid-item:nth-child(even){
    background-color: var(--color-golf-section);
}
.grid-odd .golf__grid-item:nth-child(even) .golf__grid-item--distance{
    color: var(--color-bg);
}

.golf__grid-item{
    padding: 2rem;
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
}
/* DISCOVER */
.discover{
    padding: 3.5rem 0 0 0;
}
.discover__title {
    font-size: 3rem !important;
    padding: 3rem 2rem 1rem;
}
.discover__container {
    max-width: 1160px;
    margin: 0 auto;
    padding: var(--pad-section);
    background-color: var(--color-bg);
}
.discover__content{
    padding: 3rem 2rem;
    display: flex;
    column-gap: 3rem;
}
.discover__content img {
    height: 888px;
    max-width: 936px;
    width: 66vw;
}
.discover__content ul{
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    min-width: 271px;
}
.discover__content ul li span{
    margin-right: 1rem;
}
.discover__content ul li:first-child{
    padding-top: 2.5rem;
    border-top: 1px solid var(--color-white-05);
}
.discover__content ul li{
    font-size: 1.1rem;
    color: var(--color-white);
    text-transform: uppercase;
    font-family: var(--font-josefin-sans);
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-white-05);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.plus, .pool, .upper, .lower{
    flex-grow: 1;
    align-self: end;
    display: flex;
    justify-content: end;
    cursor: pointer;
}
.pool:hover svg path,
.upper:hover svg path,
.lower:hover svg path,
.plus:hover svg path{
    transition: var(--transition);
}
.pool:hover svg path,
.upper:hover svg path,
.lower:hover svg path,
.plus:hover svg path{
    fill: var(--color-primary);
}
/* CONTACT */

.contact__container{
    display: flex;
    padding: 8rem 20px;
    column-gap: 2rem;
}
.contact__main-content{
    display: flex;
    flex-direction: column;
    row-gap: 2rem;
    flex: 1;
}
.contact__main-content--para{
    color: var(--color-para);
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.9;
    font-family: var(--font-josefin-sans);
}
.contact__main-content--links{
    display: flex;
    flex-direction: column;
    row-gap: .2rem;
}
.contact__main-content--links svg path{
    transition: var(--transition);
}
.contact__main-content--links a:hover svg path{
    fill: var(--color-para);
}
.contact__main-content--links a{
    text-decoration: none;
    color: var(--color-primary);
    cursor: pointer;
    transition: all ease .3s;
    font-family: var(--font-roboto);
    display: flex;
    align-items: center;
    column-gap: .3rem;
    font-size: .95rem;
}
.contact__main-content--links a:hover{
    color: var(--color-para);
}
.contact__form {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-row: repeat(minmax(min-content , 1fr));
    gap: 1rem;
}
.contact__form-success {
    font-weight: bold;
    color: white;
    font-family: var(--font-roboto);
    text-align: center;
    background-color: #379D00;
    width: 100%;
    padding: 1rem 0;
    grid-column: span 2;
}
.contact__form input,
.contact__form textarea {
    background-color: var(--color-golf-section);
    outline: none;
    border: none;
    padding: 1rem;
    font-family: var(--font-roboto);
}
/* .contact__form input, */
.contact__form input:nth-child(1) {
    grid-column: span 1;
}
.contact__form input:nth-child(2) {
    grid-column: span 1;
}
.contact__form input:nth-child(3) {
    grid-column: span 2;
}
.contact__form textarea{
    opacity: .8;
    grid-column: span 2;
}
.contact__form button {
    outline: none;
    border: none;
    color: var(--color-white);
    text-transform: uppercase;
    padding: 2rem;
    font-family: var(--font-roboto);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: .1rem;
    grid-column: span 2;
    background: var(--linear-text);
    background-size: 200%;
    background-position: left;
    transition: background-position 1s linear;
    cursor: pointer;
}

.contact__form button:hover{
    background-position: right;
}
/* GALLERY */
.swiper2 {
    width: 100%;
    max-height: 270px;
    height: 17vw;
    min-height: 240px;
    overflow: hidden;
}
.swiper2 .swiper-slide {
    display: flex;
    transition: var(--transition);
    cursor: pointer;
}
.swiper2 .swiper-slide img {
    display: flex;
    object-fit: cover;
    object-position: center;
    position: relative;
    flex-grow: 1;
}
.swiper2 .swiper-slide::before {
    position: absolute;
    content: "";
    opacity: 0;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
.swiper-slide:hover .swiper-slide::before {
    opacity: 1;
}
/* GET IN TOUCH */

.get-in-touch {
    background-color: var(--color-primary);
}
.get-in-touch__container {
    color: var(--color-white);
    font-family: var(--font-josefin-sans);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 4.5rem 2rem;
}

.get-in-touch h2 {
    font-size: 2.8rem;
    flex-grow: 5;
}
.get-in-touch__right{
    display: flex;
    align-items: center;
    flex-grow: 2;
    column-gap: 1.5rem;
    cursor: pointer;
}
.get-in-touch__right svg path{
    transition: var(--transition);
}
.get-in-touch__right a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 1.5rem;
    position: relative;
    padding: .2rem 0;
    transition: var(--transition);
}
.get-in-touch__right a:before {
    content: "";
    position: absolute;
    left: -.5em;
    top: 0;
    bottom: 0;
    height: 100%;
    width: .5px;
    background-color: var(--color-white);
    transition: var(--transition);
}
.get-in-touch__right a:hover {
    color: var(--color-para);
}
.get-in-touch__right:hover a:before{
    background-color: var(--color-para);
}
.get-in-touch__right:hover a{
    color: var(--color-para);
}
.get-in-touch__right:hover svg path{
    fill: var(--color-para);
}
/* FOOTER */

.footer {
    background-color: var(--color-bg);
    padding: 7rem 0;
}
.footer__container {
    display: flex;
    justify-content: space-between;
    column-gap: 1rem;
}
.footer__info{
    display: flex;
    flex-direction: column;
    row-gap: 1.8rem;
}
.footer__info img{
    width: 400px;
}
.mail-footer{
    display: flex;
    align-items: center;
    gap: .2rem;
}
.mail-footer svg path{
    transition: var(--transition);
}
.mail-footer:hover svg path{
    fill: var(--color-white);
}
.mail-footer:hover span{
    transition: var(--transition);
}
.mail-footer:hover span{
    color: var(--color-primary );
}
.footer__info-mail svg{
    padding-bottom: 10px;
}
.footer__info a{
    position: relative;
    text-decoration: none;
    color: var(--color-white);
    font-family: var(--font-roboto);
    font-size: .9rem;
}
.footer__info-social-links{
    display: flex;
    align-items: center;
}
.footer__info-social svg path {
    transition: var(--transition);
}
.footer__info-social a:hover svg path{
    fill: var(--color-white);
}
.footer__info-social{
    color: var(--color-white);
}
.footer__info-social a svg:first-child{
    margin-right: .2rem;
}
.footer__info-social p{
    font-size: .9rem;
    margin-bottom: 1rem;
    font-family: var(--font-roboto);
}
.footer__links,
.footer__contact{
    font-family: var(--font-josefin-sans);
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    row-gap: 4rem;
    width: 33%;
}
.footer__contact {
    padding-left: 1.1rem;
}
.footer__links-nav ul{
    display: flex;
    flex-direction: column;
    row-gap: 1.4rem;
    width: 100%;
}
.footer__nav-list a {
    display: inline-block;
    color: var(--color-white);
    text-decoration: none;
    font-size: .85rem;
    width: 100%;
    padding-bottom: .6rem;
    border-bottom: 1px solid var(--color-white-05);
}

.footer__contact-phone {
    display: flex;
    align-items: center;
    column-gap: .3rem;
    cursor: pointer;
}
.footer__contact-phone:hover a:before{
    background-color: var(--color-white);
}
.footer__contact-phone svg path {
    transition: var(--transition);
}
.footer__contact-phone:hover a{
    color: var(--color-white);
}
.footer__contact-phone:hover svg path{
    fill: var(--color-white);
}
.footer__contact-phone a {
    transition: var(--transition);
    color: var(--color-primary);
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    margin-left: 1rem;
}
.footer__contact-phone a:before {
    position: absolute;
    top: 0;
    left: -1rem;
    width: 1px;
    height: 100%;
    content: "";
    background-color: var(--color-primary);
}
.footer__contact-para {
    line-height: 1.7;
    font-size: .8rem;
    font-weight: 300;
    font-family: var(--font-roboto);
}
.cerrado-hills,
.villas {
    font-weight: 600;
    font-size: .88rem;
}
/* COPYRIGHT */
.copyright{

    padding: .5rem 20px;
    font-size: .8rem;
    font-family: var(--font-roboto);
}
.infocasa{
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
    color: var(--color-para);
}
.infocasa:hover{
    color: var(--color-primary);
}

/* RESPONSIVE */
@media screen and (max-width:1400px) {
    .materials__image{
        height: 60vw;
        max-height: 61vw;
        max-width: 64vw;
    }
}
@media screen and (max-width:1300px) {
    .room{
        width: 41vw;
        left: 55px;
    }
}
@media screen and (max-width:1240px) {
    .discover__content img {
        width: 62vw;
        max-width: unset;
        height: unset;
    }
    .img__container{
        width: unset;
    }
}
@media screen and (max-width:1200px) {
    .hero__title span{
        font-size: 3.4rem;
    }
    .section__subtitle{
        font-size: .9rem;
        margin-left: 35px !important;
    }
    .section__title{
        font-size: 2.8rem !important;
    }
    .num{
        font-size: 3.6rem !important;
    }
    .section__subtitle:before {
        left: -35px !important;
        width: 25px !important;
    }
    .discover__content {
        flex-direction: column-reverse;
        row-gap: 4rem;
    }
    .discover__content img {
        width: 100%;
    }
}
@media screen and (max-width:992px) {
    .hero, .hero2{
        height: 41vh;
        width: 100%;
        justify-content: space-between;
        display: flex;
    }
    .hero__title {
        flex-direction: column;
        justify-content: space-between;
        height: 33%;
        margin: auto;
        width: inherit;
    }
    .hero__title-unique:before {
        display: none;
    }
    .hero__title span:nth-child(1){
        align-self: flex-end;
    }
    .hero__title span:nth-child(2){
        align-self: flex-start;
    }
    .hero__title span{
        font-size: 2.8rem;
    }
    .swiper-slide-active .hero__title-cerrado{
        animation: fadeInRight 1s;
    }
    .swiper-slide-active .hero__title-unique {
        animation: fadeInLeft 1s;
    }
    .activities__article-container{
        flex-direction: column;
        row-gap: 2rem;
    }
    .discover__title{
        text-align: center;
    }
    .golf__grid{
        grid-template-columns: repeat(2, 1fr);
    }
    .philosophy__list{
        grid-template-columns: repeat(2, 1fr);
    }
    .philosophy__main-images{
        margin-left: unset;
        padding: 0 4rem;
    }
    .room{
        display: none;
    }
    .wine{
        height: 100vw;
    }

    .contact__form input:nth-child(1) {
        grid-column: span 2;
    }
    .contact__form input:nth-child(2) {
        grid-column: span 2;
    }
    .materials {
        height: 120vw;
    }
    .materials__image{
        height: unset;
        max-height: unset;
        width: unset;
        max-width: unset;
    }
    .philosophy__main,
    .materials,
    .surrounding{
        flex-direction: column !important;
        padding: 4rem 0;
        row-gap: 4rem;
    }
    .surrounding__image{
        height: 59vw ;
        width: 100% ;
        min-height: unset ;
        min-width: unset ;
    }
    .materials__main-content,
    .surrounding__main,
    .surrounding__main-content{
        max-width: unset;
    }
    .surrounding__main-content{
        padding-right: 20px;
    }
    .contact__container{
        flex-direction: column !important;
        row-gap: 4rem;
        padding: 4rem 20px;
    }
    .contact__form input, .contact__form textarea {
        padding: .8rem;
    }
    .contact__form button {
        padding-bottom: 2.4rem;
    }
    .contact__main-content--links a {
        font-size: .85rem;
    }
    .contact__main-content--links{
        flex-direction: row;
        column-gap: 1rem;
    }
    .contact__main-content--para {
        font-size: 1.1rem;
    }
    .get-in-touch__container{
        flex-direction: column;
        row-gap: 2rem;
    }
    .footer{
        padding: 7rem 0 3rem 0;
    }
    .footer__container{
        flex-direction: column;
    }
    .footer__info img {
        width: unset;
    }
    .footer__contact{
        width: 100%;
        padding-left: unset;
        row-gap: 3rem;
    }
    .footer__links{
        width: 100%;
        margin: 3rem 0;
    }
    .footer__contact-para{
        width: 100%;
    }
}

@media screen and (max-width:800px) {

    .philosophy__list li{
        font-size: .85rem !important;
    }
    .philosophy__list{
        row-gap: 2.5rem;
    }
    .wine{
        height: 108vw;
    }
}
@media screen and (max-width:650px) {
    .materials {
        height: 143vw;
    }
}
@media screen and (max-width:500px) {
    .materials {
        height: 171vw;
    }
}
@media screen and (max-width:480px) {
    .golf__grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .get-in-touch-title{
        line-height: 1.4 !important;
    }
    .philosophy__list{
        grid-template-columns: repeat(1, 1fr);
    }
}
@media screen and (max-width:415px) {
    .materials {
        height: 208vw;
    }
}
@media screen and (max-width:429px) {
    .materials {
        height: 215vw;
    }
}
@media screen and (max-width:370px) {
    .materials {
        height: 225vw;
    }
}
@media screen and (max-width:360px) {
    .golf__grid{
        grid-template-columns: repeat(1, 1fr);
    }
    .get-in-touch-title{
        font-size: 2.1rem !important;
        line-height: 1.2 !important;
    }
}
/* utilities */
.hidden{
    display: none !important;
}
.fixed {
    position: fixed;
}
.mb{
    margin-bottom: 2.5rem;
}
.section__title {
    font-family: var(--font-josefin-sans);
    font-size: 4rem;
    line-height: 1.2;
    background: var(--linear-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--color-para);
}
.section__subtitle {
    margin-left: 85px;
    position: relative;
    color: var(--color-para);
    text-transform: uppercase;
    letter-spacing: .1rem;
    font-family: var(--font-josefin-sans);
    color: var(--color-para);
}
.section__subtitle:before {
    content: "";
    position: absolute;
    bottom: 0.3rem;
    color: var(--color-para);
    left: -80px;
    width: 65px;
    height: 1px;
    background-color: var(--color-para);
}
.section__para {
    color: var(--color-para);
    font-size: .95rem;
    line-height: 1.7;
    font-family: var(--font-roboto);
}
.txt-white::before{
    background-color: var(--color-white);
}
.ff-josephine-sans {
    font-family: var(--font-josefin-sans);
}
.ff-roboto {
    font-family: var(--font-roboto);
}
.flex-row{
    display: flex;
}

/* header scroll */
.header-on-scroll{
    background-color: var(--color-white);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}
.text-black{
    color: var(--color-para) !important;
}
.text-white{
    color: var(--color-white);
}
.text-white::before{
    background-color: var(--color-white) !important;
}
.bg-black{
    background-color: var(--color-para);
}
.bg-white{
    background-color: var(--color-white);
}
.overflow-hidden {
  overflow: hidden;
}
.h-primary:hover{
    color: var(--color-primary) !important;
}
.in-view {
    transform: translateY(-30px);
    transition: var(--transition);
}
.move-up{
    transform: translateY(0);
    opacity: 1;
}
.opacity-null {
    opacity: 0;
}
.opacity-invisible {
    opacity: 0;
    visibility: hidden;
}
.opacity-visible {
    opacity: 1;
    visibility: visible;
}
.max-w{
    max-width: 600px;
    width: 100%;
}
.none{
    background-color: transparent;
}


/* test before after  */

.bblack::before{
    background-color: var(--color-para);
}
.ablack::after{
    background-color: var(--color-para);
}

.black-b::before{
    background-color: var(--color-para);
}
.black-a::after{
    background-color: var(--color-para);
}

/* CSS FOR MODAL  */
#myModal {
    display: none;
}
.mySwiper3 {
    margin: 0 auto;
    z-index: 50;
    background-color: rgba(0, 0, 0, 0.8);
}
.modal-container-swiper{
    position: fixed;
    top: 0%;
    left: 0%;
    right: 0%;
    bottom: 0%;
    display: flex;
}
.close {
    position: fixed;
    top: 25px;
    right: 25px;
    z-index: 60;
    cursor: pointer;
}
.swiper-wrapper3  img{
    margin: 0 auto;
    width: 65%;
    max-height: 90%;
}
.swiper-wrapper3 .swiper-slide {
    display: flex;
    align-items: center;
}
.swiper-button-lock {
   display: flex !important;
}
.swiper-button-prev:after, .swiper-button-next:after {
    color: var(--color-primary);
}
.swiper-button-prev, .swiper-button-next {
    transform: scale(.5);
}

/* slider view */

.view-slider, .pool-slider, .upper-slider, .lower-slider {
    display: flex !important;
/*     max-width: 1250px !important;
    width: calc(80% - 50px) !important; */
    overflow: hidden !important;
    height: 100vh !important;
    position: fixed !important;
    top: 5% !important;
    right: 10px !important;
    left: 10px !important;
    bottom: 5% !important;
    transition: var(--transition) !important;
    z-index: 60 !important;
    margin: auto
}
/*
@media screen and (max-width: 1281px) {
    .view-slider {
        width: calc(80% - 50px);
    }
    .view-slider-slice img{
        max-height: 550px;
        width: 76vw;
    }
} */
.view-slider-slice{
    width: 100%;
    align-self: center;
    display: flex !important;
    justify-content: center;
}
.view-slider-slice img{
    height: 46vw;
    object-position: center;
    object-fit: cover;
    width: 80vw;
}
@media screen and (max-width: 1281px) {
/*     .view-slider {
        width: calc(80% - 50px);
    } */
    .view-slider-slice img{
        max-height: 550px;
        width: 76vw;
    }
}

.overlay{
    background-color: rgba(0,0,0,0.6);
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 0 2rem;
    z-index: 60;
    transition: var(--transition);
}
.view-btn, .pool-btn, .upper-btn, .lower-btn{
    position: fixed;
    top: 2%;
    right: 2%;
    transform: rotate(45deg);
    cursor: pointer;
    z-index: 10;
}
.lower-btn:hover svg path,
.upper-btn:hover svg path,
.pool-btn:hover svg path,
.view-btn:hover svg path{
    transition: var(--transition);
}
.lower-btn:hover svg path,
.upper-btn:hover svg path,
.pool-btn:hover svg path,
.view-btn:hover svg path{
    fill: var(--color-primary)
}
.swiper-slide{
    height: unset !important;
}
