@font-face {
    font-family: 'HelveticaNeueLTStd Roman';
    font-style: normal;
    font-display: swap;
    src: local('HelveticaNeueLTStd Roman'),
    url('../fonts/HelveticaNeueLTStd Roman.otf') format('opentype');
}

@font-face {
    font-family: 'DalaFloda-Roman-Web';
    font-style: normal;
    font-display: swap;
    src: local('DalaFloda-Roman-Web'),
    url('../fonts/DalaFloda-Roman-Web.woff2') format('woff2'),
    url('../fonts/DalaFloda-Roman-Web.woff') format('woff');
}
@font-face {
    font-family: 'DalaFloda-Italic-Web';
    font-style: normal;
    font-display: swap;
    src: local('DalaFloda-Italic-Web'),
    url('../fonts/DalaFloda-Italic-Web.woff2') format('woff2'),
    url('../fonts/DalaFloda-Italic-Web.woff') format('woff');
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital@0;1&display=swap');

:root {
    --beige1:#D9D0BD;
    --beige2: #E6E1D6;
    --beige3: #F4F0E9;
    --brown: #9D948B;
    --black:#1A1818;
    --font-helveticaneue: 'HelveticaNeueLTStd Roman', serif;
    --font-carina: 'Cormorant Garamond', serif;
    --font-title:'DalaFloda-Roman-Web', serif;
    --font-garamond: 'Cormorant Garamond', serif;
}

/* general */
body {
    background-color: var(--beige2);
}
section {
    position: relative;
    padding: 200px 0;
}
.title {
    font-family: var(--font-title);
    font-weight: 400;
    color: var(--black);
}
p {
    font-size: 18px;
    line-height: 32px;
    font-family: var(--font-helveticaneue);
    color: var(--brown);

    font-size: 21px;
    font-family: var(--font-garamond);
}
.img-div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
div.text-22 p {
    font-size: 22px;
    line-height: 38px;
}

.btn-arrow {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    font-family: var(--font-carina);
    font-weight: 400;
    font-size: 21px;
    color: var(--black);
    text-decoration: none;
    position: relative;
}
.btn-arrow:hover {
    color: var(--black);
}
.btn-arrow:before {
    content: '';
    height: 1px;
    width: 0%;
    position: absolute;
    bottom: -10px;
    background-color: var(--beige1);
    transform: translate(0, -50%);
    left: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.btn-arrow:hover:before {
    width: 100%;
    background-color: var(--black);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.btn-border {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    font-family: var(--font-carina);
    font-weight: 400;
    font-size: 21px;
    color: var(--black);
    text-decoration: none;
    position: relative;
}
.btn-border:hover {
    color: var(--black);
}
.btn-border:before {
    content: '';
    height: 1px;
    width: 65%;
    position: absolute;
    top: -10px;
    background-color: #c1b8a5;
    transform: translate(-50%, -50%);
    left: 50%;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.btn-border:after {
    content: '';
    height: 1px;
    width: 65%;
    position: absolute;
    bottom: -10px;
    background-color: #c1b8a5;
    transform: translate(-50%, -50%);
    left: 50%;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.btn-border:hover:before {
    width: 100%;
    background-color: #48453e;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.btn-border:hover:after {
    width: 100%;
    background-color: #48453e;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.basic p a {
    color: inherit;
    text-decoration: underline;
}

@media screen and (max-width: 991px) {
    section {
        padding: 100px 0;
    }
    div.text-22 p {
        font-size: 18px;
        line-height: 32px;
    }
    p {
        font-size: 16px;
        line-height: 30px;
    }
}

/* header */
.menu-toggle {
    width: 40px;
    height: 30px;
    position: fixed;
    top: 60px;
    right: 85px;
    cursor: pointer;
    z-index: 51;
}
.one, .two, .three {
    width: 100%;
    height: 1px;
    background: var(--black);
    margin: 10px auto;
    backface-visibility: hidden;
    -moz-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.menu-toggle.on .one {
    -moz-transform: rotate(45deg) translate(7px, 2px);
    -ms-transform: rotate(45deg) translate(7px, 2px);
    -webkit-transform: rotate(45deg) translate(7px, 2px);
    transform: rotate(45deg) translate(7px, 2px);
}
.menu-toggle.on .two {
    opacity: 0;
}
.menu-toggle.on .three {
    -moz-transform: rotate(-45deg) translate(15px, -9px);
    -ms-transform: rotate(-45deg) translate(15px, -9px);
    -webkit-transform: rotate(-45deg) translate(15px, -9px);
    transform: rotate(-45deg) translate(15px, -9px);
}
.site-nav__menu {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    width: 100vw;
    height: 100vh;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
    background-color: var(--beige1);
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    opacity: 0;
    overflow: auto;
}
.site-nav__menu.open {
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-transform: matrix(1,0,0,1,0,0);
    transform: matrix(1,0,0,1,0,0);
    z-index: 50;
    opacity: 1;
}
.site-nav__menu-inner, .site-nav__main, .site-nav__main .container, .site-nav__main .row {
    height: 100%;
}
.site-nav__menu .col-12 > div {
    transform: translate(-50%, -50%);
    position: absolute;
    left: 50%;
    top: 50%;
}
.site-nav__menu .list-inline-item,
.site-nav__menu .list-inline-item a {
    display: inline-block;
    width: 100%;
    text-align: center;

    font-size: 16px;
    line-height: 50px;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-helveticaneue);
    color: var(--brown);
    text-decoration: none;
}
@media screen and (max-width: 1200px) {
    .menu-toggle {
        width: 34px;
        top: 30px;
        right: 32px;
    }
    .one, .two, .three {
        margin: 8px auto;
    }
    .menu-toggle.on .three {
        -moz-transform: rotate(-45deg) translate(12px, -7px);
        -ms-transform: rotate(-45deg) translate(12px, -7px);
        -webkit-transform: rotate(-45deg) translate(12px, -7px);
        transform: rotate(-45deg) translate(12px, -7px);
    }
}
header .navbar-top {
    padding: 0;
}
header .menu {
    position: absolute;
    top: 100px;
    left: 40%;
    z-index: 1;

    position: absolute;
    top: 52px;
    left: 50%;
    z-index: 1;
    transform: translate(-50%,0);
}
.altoventana header .menu {
    top: 20px;
}
header .menu li {
    margin: 0 30px;
}


@media screen and (max-width: 1353px){
    header .menu li {
        margin: 0 15px;
    }
}


@media screen and (max-width: 991px){
    header .menu li {
        margin: 0 4px;
    }
    header .menu li a {
        font-size: 10px;
    }
}
header .menu li a {
    font-size: 11px;
    line-height: 20px;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: var(--font-helveticaneue);
    color: var(--brown);
    position: relative;
}
.d-info-slider .b-slider .b-links-tabs .nav-pills .nav-link {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0;
    margin-top: 15px;
}
.d-info-slider .b-slider .b-links-tabs .nav-pills .nav-link:before,
header .menu li a:before {
    content: '';
    height: 1px;
    width: 0%;
    background: var(--brown);
    position: absolute;
    bottom: -5px;
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.d-info-slider .b-slider .b-links-tabs .nav-pills .nav-link:hover:before,
header .menu li a:hover:before {
    width: 100%;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

header .logo {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 55px;
    top: 45px;
    z-index: 51;
    left: 50px;
    opacity: 1;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.altoventana header .logo {
    top: 20px;
}
header .logo .img-1 {
    margin-bottom: 50px;
}
.active-2 header .logo .img-1,
.active-2.active-3.active-4 header .logo .img-1 {
    filter: invert(1);
}
.active-2.active-3 header .logo .img-1,
.active-2.active-3.active-4.active-5 header .logo .img-1 {
    filter: invert(0);
}
@media screen and (min-width: 768px){
    header .logo .img-1 {
        width: 145px;
        width: 116px;
        height: auto;
        margin-bottom: 0;
        margin-top: 0;
    }
}
header .social-langs {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: fixed;
    bottom: 55px;
    bottom: 122px;
    z-index: 51;
    left: 50px;
}
header .social-langs .social a {
    display: block;
    margin: 10px 0;
    opacity: 1;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
header .social-langs .social a .img-2 {
    margin-bottom: 30px;
}
header .social-langs .social {
    margin-bottom: 15px;
}
header .social-langs .langs a {
    font-size: 13px;
    text-transform: uppercase;
    font-family: var(--font-helveticaneue);
    color: var(--brown);
    margin-top: 7px;
    display: block;
    text-decoration: none;
    opacity: 1;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
header .logo:hover,
header .social-langs .social a:hover,
header .social-langs .langs a:hover,
.book-advantages > div.advantages p.adv:hover {
    opacity: 0.5;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.book-advantages {
    display: flex;
    align-items: center;
    flex-direction: column;
    position: fixed;
    top: 55px;
    z-index: 3;
    right: 50px;
}

.altoventana .book-advantages {
    top: 20px;
}

.book-advantages a > div.book {
    height: 155px;
    width: 155px;
    background-color: var(--beige1);
    border:1px solid var(--beige2);
    position: relative;
    cursor: pointer;
}
.altoventana .book-advantages a > div.book {
    height: 100px;
}
.active-0 .book-advantages a > div.book,
.active-0 .list-advantages {
    background-color: var(--beige3);
}
.active-0.active-1 .book-advantages a > div.book,
.active-0.active-1 .list-advantages {
    background-color: var(--beige1);
}
.book-advantages a > div.book p {
    font-family: var(--font-title);
    font-size: 28px;
    line-height: 26px;
    color: var(--black);
    margin: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.book-advantages a > div.book:hover p:nth-child(1) {
    margin-left: -9px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.book-advantages a > div.book:hover p:nth-child(2) {
    margin-left: 10px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.book-advantages a > div.book > div {
    position: absolute;
    bottom: 19px;
    left: 20px;
}
.book-advantages > div.advantages {
    text-align: center;
}
.book-advantages > div.advantages p.adv {
    text-transform: uppercase;
    font-size: 10px;
    max-width: 155px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 0;
    line-height: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    opacity: 1;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    position: relative;
    z-index: 2;
}
.list-advantages {
    max-width: 155px;
    text-align: center;
    padding-top: 106px;
    margin-top: -70px;
    padding-left: 10px;
    padding-right: 10px;
    background-color: var(--beige1);
    border:1px solid var(--beige2);
    opacity: 0;
    display: none;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.altoventana .list-advantages {
    padding-top: 85px;
}
.list-advantages.active {
    opacity: 1;
    display: block;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.list-advantages .title {
    font-size: 16px;
    line-height: 18px;
    margin-bottom: 5px;
    font-family: var(--font-carina);
}
.altoventana .list-advantages .title {
    font-size: 14px;
    line-height: 16px;
}
.list-advantages li {
    margin-bottom: 15px;
}
.altoventana .list-advantages li {
    margin-bottom: 11px;
}
.list-advantages li p {
    font-size: 11px;
    line-height: 14px;
    margin: 0;
}
.list-advantages .close-adv {
    cursor: pointer;
}



/* Advantages */

.b-advantages {
    display: flex;
    align-items: center;
    flex-direction: row;
    position: fixed;
    bottom: 70px;
    z-index: 3;
    right: 0px;
    justify-content: end;
}

@media screen and (max-width: 1260px) {
    .b-advantages {
        max-width: 250px;
        flex-direction: column-reverse;
    }
}


.b-advantages > div.advantages p.adv {
    text-transform: uppercase;
    font-family: var(--font-garamond);
    font-size: 13px;
    max-width: 250px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    /*margin-top: 40px;*/
    margin-bottom: 0;
    line-height: 12px;
    letter-spacing: 0.06em;
    cursor: pointer;
    opacity: 1;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    position: relative;
    z-index: 2;
    background-color: var(--beige1);
    color: var(--black);
    padding: 14px 38px;
}


.b-advantages > div.advantages p.adv.active,
.b-advantages > div.advantages p.adv:hover {
    background-color: #3E3D3C;
    color: white;
}

.b-advantages .list-advantages {
    position: relative;
    text-align: center;
    max-width: initial;
    width: 75%;
    margin-top: 0;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 30px;
    padding-right: 45px;
    opacity: 0;
    display: none;
    border: none;
    background-color: var(--beige1);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    transition: 0.5s;
}

@media screen and (max-width: 1260px) {
    .b-advantages .list-advantages {
        width: 100%;
        padding-left: 20px;
    }
}

.b-advantages .list-advantages.active {
    opacity: 1;
    display: flex;
    flex-direction: row;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.b-advantages .list-advantages .title {
    font-size: 11px;
    line-height: 12px;
    margin-bottom: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-base);
    text-align: left;
}

.b-advantages .list-advantages li > div {
    position: relative;
    top: 2px;
    display: flex;
    flex-direction: column;
}

.b-advantages .list-advantages li > div span {
    font-size: 9px;
    line-height: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: .6;
}

.b-advantages .list-advantages ul{
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
}

@media screen and (max-width: 1365px) {
    .b-advantages .list-advantages ul {
        gap: 20px;
    }
}

@media screen and (max-width: 1260px) {
    .b-advantages .list-advantages ul {
        flex-direction: column;
    }
}

.b-advantages .list-advantages li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.b-advantages .list-advantages li p {
    font-size: 11px;
    line-height: 14px;
    margin: 0;
}
.b-advantages .list-advantages .close-adv {
    position: absolute;
    cursor: pointer;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background-color: transparent;
    border: none;
}

@media screen and (max-width: 1260px) {
    .b-advantages .list-advantages .close-adv {
        top: 20px;
    }
}



@media screen and (max-width: 1500px){
    header .logo,
    header .social-langs {
        left: 20px;
    }
    header .logo {
        left: 50px;
    }
    .book-advantages {
        right: 20px;
    }
}
@media screen and (max-width: 1200px){
    .d-hero .title {
        left: 50%;
    }
    header .logo {
        left: 20px;
    }
    header .menu {
        left: 50%;
        top: 72px;
        transform: translate(-50%, -50%);
        width: -moz-max-content;
        width: max-content;
    }
    .book-advantages a > div.book {
        height: 120px;
        width: 120px;
    }
    .list-advantages {
        max-width: 120px;
    }
    header .social-langs .social a .img-2 {
        margin-bottom: 10px;
    }
    header .social-langs .social {
        margin-bottom: 9px;
    }
}
@media screen and (max-width: 768px){
    header {
        background-color: var(--beige2);
        height: 85px;
        position: fixed;
        z-index: 51;
        width: 100%;
    }
    header.open {
        background-color: transparent;
    }
    .list-advantages {
        padding-top: 83px;
    }
}

/* cabecera */
.d-hero {
    height: 100vh;
    width: 100%;
    padding: 0;
}
.d-hero .container,
.d-hero .row,
.d-hero .b-block-2 {
    height: 100%;
}
.d-hero .b-block-2 .img-div {
    height: 100%;
    padding: 55px 0;
    width: 409px;
}
.d-hero .title {
    font-size: 95px;
    line-height: 115px;
    color: var(--black);
    width: 680px;
    width: 751px;
    position: absolute;
    top: 37vh;
    left: 290px;
    left: 40%;
    margin-left: 30px;

    font-size: 60px;
    line-height: 64px;
    width: 488px;
}
.d-hero .b-block-2 .title {
    color: #F4F0E9;
    display: none;
}
.d-hero .col-12.position-relative {
    padding-left: 0;
    position: initial !important;
}

.b-scroll p {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 2px;
    max-width: 175px;
    text-transform: uppercase;
    margin: 0;
}
.b-scroll > div {
    display: flex;
    align-items: center;
    position: absolute;
    transform: translate(-50%,-50%);
    left: 50%;
    bottom: 15px;
}
.b-scroll > div a {
    display: block;
    height: 49px;
    width: 49px;
}
.b-scroll > div a img {
    margin-top: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.b-scroll > div a:hover img {
    margin-top: 20px;
    height: 32px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

@media screen and (min-width: 768px){
    .b-scroll > div {
        transform: translate(0,-50%);
        left: 40%;
        margin-left: 30px;
    }
}
@media screen and (min-width: 768px){
    .d-hero .b-block-2 .img-div {
        height: 100vh;
        padding-top: 23vh;
    }
}

@media screen and (max-width: 1200px){
    .d-hero .b-block-2 .img-div {
        width: 36%;
    }
}

@media screen and (max-width: 991px){
    .d-hero .title {
        font-size: 58px;
        line-height: 63px;
        width: 408px;
        top: 42vh;
        /*left: 290px;*/
    }
    .d-hero .b-block-2 .img-div {
        width: 36%;
    }
}
@media screen and (max-width: 768px){
    .b-scroll p {
        font-size: 10px;
        line-height: 14px;
    }
    .b-scroll > div {
        bottom: 55px;
    }
    header .menu {
        display: none;
    }
    .d-hero .b-block-2 .img-div {
        width: 290px;
        height: auto;
        height: 580px;
        padding-bottom: 0;
        padding-top: 95px;
    }
    .d-hero .b-block-2 .title {
        display: block;
    }
    .d-hero .title {
        font-size: 43px;
        line-height: 51px;
        width: 295px;
        top: 45vh;
        left: 56px;
        text-align: right;
        margin-left: 0;
    }
    header .logo {
        flex-direction: row;
        top: 31px;
        left: 20px;
    }
    header .logo .img-1 {
        margin-bottom: 0;
        margin-right: 17px;
        max-width: 116px;
        height: auto;
    }
    .book-advantages a > div.book {
        height: 105px;
        width: 105px;
    }
    .list-advantages {
        max-width: 105px;
    }
    .list-advantages .title {
        font-size: 12px;
        line-height: 14px;
    }
    .list-advantages li {
        margin-bottom: 11px;
    }
    .book-advantages > div.advantages p.adv {
        max-width: 95px;
        margin-top: 15px;
        font-size: 8px;
        line-height: 11px;
        letter-spacing: 1px;
    }
    .book-advantages a > div.book p {
        font-size: 24px;
        line-height: 20px;
        transform: translateX(-10px);
    }
    .book-advantages a > div.book > div {
        bottom: 14px;
        left: 15px;
    }
    .book-advantages {
        right: 0;
        top: 95px;
    }
    header .social-langs {
        bottom: 20px;
        bottom: 87px;
    }
    header .social-langs .social a {
        margin-bottom: 0;
    }
    .d-hero .b-block-2 .img-div:before {
        content: '';
        background-color: rgb(0 0 0 / 25%);
        top: 95px;
        left: 0;
        right: 0;
        bottom: 0;
        position: absolute;
    }
}
@media screen and (max-width: 360px) {

    .d-hero .title {
        left: 18px;
    }
}

    /* intro */
.d-intro {
    padding-top: 0;
}
.d-intro .b-text .text {
    max-width: 555px;
}
.d-intro .b-text .text p {
    font-size: 31px;
    line-height: 52px;
    font-family: var(--font-carina);
    color: var(--black);

    font-size: 27px;
    line-height: 47px;
}
.d-intro .b-img-1 .img-div {
    height: 1066px;
    width: 100%;
}
.d-intro .b-img-2 .img-div {
    height: 523px;
    width: 100%;
    margin-bottom: 115px;
}
.d-intro .b-text-2 .text {
    margin-bottom: 55px;
}
@media screen and (min-width: 991px) {
    .d-intro .b-text .text {
        margin-top: 100px;
        margin-left: auto;
        text-align: right;
    }
    .d-intro .b-text {
        padding-left: 0;
    }
    .d-intro .b-img-1 .img-div {
        width: 507px;
        margin-top: -100px;
    }
    .d-intro .b-img-2 .img-div {
        margin-top: -215px;
    }
}
@media screen and (max-width: 991px) {
    .d-intro .b-text .text {
        margin-bottom: 40px;
        margin-top: 80px;
    }
    .d-intro .b-img-1 .img-div {
        height: 850px;
    }
    .d-intro .b-img-2 .img-div {
        height: 300px;
        margin-bottom: 40px;
        margin-top: 40px;
    }
}
@media screen and (max-width: 600px) {
    .d-intro .b-img-1 .img-div {
        height: 600px;
    }
}

/* bloque info + slider */
.swiper-button-next2,
.swiper-button-next22,
.swiper-button-next3,
.swiper-button-next4,
.swiper-button-next5 {
    position: absolute;
    top: 50%;
    width: calc(var(--swiper-navigation-size)/ 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--swiper-navigation-color,var(--swiper-theme-color));
}
.swiper-pagination2,
.swiper-pagination22,
.swiper-pagination3,
.swiper-pagination4,
.swiper-pagination5 {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10;
}
.d-info-slider + .d-img-text-two-col {
    padding-top: 0;
}
.d-info-slider {
    background-color: var(--beige1);
    overflow: hidden;
}
.d-info-slider .b-title .title {
    font-size: 82px;
    line-height: 130px;
    margin-bottom: 55px;

    font-size: 60px;
    line-height: 100px;
}
.d-info-slider .b-text > div {
    max-width: 704px;
    margin-bottom: 90px;
    margin-left: 25px;
}
.d-info-slider .b-btn a {
    margin-top: 90px;
    margin-top: 256px;
    margin-top: 285px;
    margin-left: calc(27vw + 6vw);
}
.d-info-slider .b-slider .swiper {
    width: 100%;
    overflow: visible;
    margin-left: 6vw;
}
.d-info-slider .b-slider .swiper .swiper-slide {
    height: 100%;
    width: 1105px;
    width: 63vw;
    margin-right: 25px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.d-info-slider .b-slider .swiper .swiper-slide.swiper-slide-active {
    opacity: 1 !important;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.d-info-slider .b-slider .swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.d-info-slider .b-slider .swiper .text {
    max-width: 663px;
    margin-top: 67px;
    margin-left: 27vw;
}
@media screen and (max-width: 1520px) {
    .d-info-slider .b-slider .swiper .text {
        max-width: 512px;
    }
}
@media screen and (max-width: 1200px) {
    .d-info-slider .b-slider .swiper .text {
        max-width: 393px;
    }
}
.d-info-slider .b-slider,
.d-info-slider .b-slider .b-links-tabs,
.d-info-slider .b-slider .swiper {
    height: 642px;
}
.d-info-slider .b-slider .b-links-tabs {
    width: 23vw;
    background-color: var(--beige1);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}
.d-info-slider .b-slider .b-links-tabs .flex-column {
    position: absolute;
    bottom: 0;
    right: 25px;
}
.d-info-slider .b-slider .b-links-tabs .nav-pills .nav-link {
    text-align: right;
    font-size: 13px;
    line-height: 32px;
    font-family: var(--font-helveticaneue);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--black);
    opacity: .2;
}
.d-info-slider .b-slider .b-links-tabs .nav-pills .nav-link.active,
.d-info-slider .b-slider .b-links-tabs .nav-pills .show>.nav-link {
    opacity: 1;
    background-color: transparent;
}
.d-info-slider .swiper-pagination-fraction {
    bottom: -93px;
    left: auto;
    width: fit-content;
    right: 21vw;
}
.d-info-slider .swiper-pagination-fraction {
    font-size: 3px;
}
.d-info-slider .swiper-pagination-fraction span {
    font-size: 13px;
    font-family: var(--font-helveticaneue);
    color: var(--black);
    opacity: .2;
    margin: 0 12px;
}
.d-info-slider .swiper-pagination-fraction span.swiper-pagination-current {
    opacity: 1;
}

.d-info-slider .swiper-button-next,
.d-info-slider .swiper-button-next2,
.d-info-slider .swiper-button-next22,
.d-info-slider .swiper-button-next3,
.d-info-slider .swiper-button-next4,
.d-info-slider .swiper-button-next5,
.d-info-slider .swiper-rtl .swiper-button-prev {
    right: 268px;
    right: 15vw;
    left: auto;
    top: auto;
    bottom: 50px;
    width: 107px;
    height: 44px;
}
.d-info-slider .swiper-button-next img,
.d-info-slider .swiper-button-next2 img,
.d-info-slider .swiper-button-next22 img,
.d-info-slider .swiper-button-next3 img,
.d-info-slider .swiper-button-next4 img,
.d-info-slider .swiper-button-next5 img {
    width: 107px;
    margin-left: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.d-info-slider .swiper-button-next:hover img,
.d-info-slider .swiper-button-next2:hover img,
.d-info-slider .swiper-button-next22:hover img,
.d-info-slider .swiper-button-next3:hover img,
.d-info-slider .swiper-button-next4:hover img,
.d-info-slider .swiper-button-next5:hover img {
    width: 80px;
    margin-left: 30px;
    filter: invert(1);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.d-info-slider .swiper-button-prev,
.d-info-slider .swiper-rtl .swiper-button-next {
    top: 50px;
    left: 20vw;
    width: 107px;
    height: 44px;
}
.d-info-slider .swiper-button-prev img {
    width: 107px;
    margin-right: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.d-info-slider .swiper-button-prev:hover img {
    width: 80px;
    margin-right: 30px;
    filter: invert(1);
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
.d-info-slider .swiper-button-next:after,
.d-info-slider .swiper-button-next2:after,
.d-info-slider .swiper-button-next22:after,
.d-info-slider .swiper-button-next3:after,
.d-info-slider .swiper-button-next4:after,
.d-info-slider .swiper-button-next5:after,
.d-info-slider .swiper-rtl .swiper-button-prev:after,
.d-info-slider .swiper-button-prev:after,
.d-info-slider .swiper-rtl .swiper-button-next:after {
    display: none;
}

/* animation slider entrada */
.d-info-slider .b-slider.aos-animate .swiper-wrapper .swiper-slide {
    opacity: .29;
    transform: translateX(0);
    transition-duration: .8s;
}
.d-info-slider .b-slider .swiper-wrapper .swiper-slide {
    opacity: 0;
    transform: translateX(90%);
    -webkit-transition: all 0s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -moz-transition: all 0s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -ms-transition: all 0s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -o-transition: all 0s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: all 0s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: 0s;
}
.d-info-slider .b-slider.aos-animate .swiper-wrapper .swiper-slide:nth-child(2) {
    transition-delay: 0.2s;
}
.d-info-slider .b-slider.aos-animate .swiper-wrapper .swiper-slide:nth-child(3) {
    transition-delay: 0.4s;
}
.d-info-slider .b-slider.aos-animate .swiper-wrapper .swiper-slide:nth-child(4) {
    transition-delay: 0.6s;
}

@media screen and (max-width: 991px) {
    .d-info-slider .b-title .title {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 40px;
    }
    .d-info-slider .b-text > div {
        margin-bottom: 40px;
        margin-left: 0;
    }

    .d-info-slider .b-slider,
    .d-info-slider .b-slider .b-links-tabs,
    .d-info-slider .b-slider .swiper {
        height: 400px;
    }
    .d-info-slider .b-slider .swiper {
        margin-left: -15px;
    }
    .d-info-slider .b-slider .swiper .swiper-slide {
        width: 78vw;
        margin-right: 20px;
    }
    .d-info-slider .b-slider .b-links-tabs {
        width: 100%;
        background-color: var(--beige1);
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
        height: 205px;
    }
    .d-info-slider .b-slider .b-links-tabs .nav-pills .nav-link {
        line-height: 20px;
    }
    .d-info-slider .b-slider .tab-content {
        margin-top: 234px;
    }
    .d-info-slider .swiper-button-prev, .d-info-slider .swiper-rtl .swiper-button-next {
        top: auto;
        left: 6vw;
        bottom: -75px;
    }
    .d-info-slider .swiper-button-next, .d-info-slider .swiper-rtl .swiper-button-prev,
    .d-info-slider .swiper-button-next2,
    .d-info-slider .swiper-button-next22,
    .d-info-slider .swiper-button-next3,
    .d-info-slider .swiper-button-next4,
    .d-info-slider .swiper-button-next5 {
        right: 0vw;
        bottom: 0px;
    }
    .d-info-slider .swiper-pagination-fraction {
        bottom: -37px;
        left: auto;
        right: 10vw;
    }
    .d-info-slider .b-slider .swiper .text {
        margin-top: 58px;
        margin-left: 11vw;
    }
    .d-info-slider .b-btn a {
        margin-top: 490px;
        margin-top: 555px;
        margin-left: calc(0vw + 6vw);
    }
}
@media screen and (max-width: 600px) {
    .d-info-slider .b-slider,
    .d-info-slider .b-slider .b-links-tabs,
    .d-info-slider .b-slider .swiper {
        height: 200px;
    }
    .d-info-slider .b-btn a {
        margin-top: 565px;
        margin-top: 585px;
        margin-left: calc(0vw + 6vw);
    }
}

/* bloque gastronomia */
.d-gastronomy .b-title .title {
    font-size: 82px;
    line-height: 74px;
    margin-bottom: 50px;

    font-size: 60px;
    line-height: 62px;
}
.d-gastronomy .b-block .title {
    font-size: 30px;
    line-height: 37px;
    margin-bottom: 30px;
}
.d-gastronomy .b-text > div {
    max-width: 564px;
}
.d-gastronomy .b-text-2 > div {
    max-width: 678px;
    margin-bottom: 176px;
}
.d-gastronomy .container-fluid .img-div {
    margin: 150px 0;
    height: 933px;
    width: 100%;
}
.d-gastronomy .b-block > div {
    padding: 0 92px;
    padding: 0 4.8vw;
    text-align: right;
}
.d-gastronomy .b-block > div .img-div {
    height: 675px;
    margin-bottom: 50px;
}
.d-gastronomy .b-block .btn-arrow {
    margin-left: auto;
}
.d-gastronomy .b-block .fake-link {
    margin-left: auto;
}
.fake-link {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    font-family: var(--font-carina);
    font-weight: 400;
    font-size: 21px;
    color: var(--black);
    text-decoration: none;
    position: relative;
}
.fake-link:before {
    content: '';
    height: 1px;
    width: 0%;
    position: absolute;
    bottom: -10px;
    background-color: var(--beige1);
    transform: translate(0, -50%);
    left: 0;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

.d-gastronomy .b-col-2 .img-div {
    margin-top: 13vw;

    margin-top: 0;
}
.d-gastronomy p a {
    color: inherit;
    text-decoration: none;
}
.d-gastronomy p a:hover {
    opacity: 0.5;
}

@media screen and (max-width: 991px) {
    .d-gastronomy .b-title .title {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 40px;
    }
    .d-gastronomy .container-fluid .img-div {
        margin: 40px 0;
        height: auto;
    }
    .d-gastronomy .b-text-2 > div {
        margin-bottom: 40px;
    }
    .d-gastronomy .b-block > div .img-div {
        height: 300px;
        margin-bottom: 35px;
    }
    .d-gastronomy .b-block > div {
        padding: 0;
    }
}

/* bloque 2 columnas imagen + texto */
.d-img-text-two-col {
    background-color: var(--beige1);
}
.d-img-text-two-col .b-img .img-div {
    height: 841px;
    max-width: 566px;
    width: 100%;

    height: 536px;
    max-width: 800px;
}
.d-img-text-two-col .b-text .text {
    max-width: 355px;
    margin-bottom: 80px;
}
.d-img-text-two-col.style-2 .b-text .btn-border:last-child,
.d-img-text-two-col.style-2 .b-text .btn-arrow {
    margin-top: 50px;
}
@media screen and (min-width: 991px) {
    .d-img-text-two-col .b-text {
        text-align: right;
        padding-right: 5vw;
    }
    .d-img-text-two-col .b-text .text {
        margin-left: auto;
        margin-top: 440px;
        margin-top: 200px;
    }
    .d-img-text-two-col.style-2 .b-text .text {
        margin-top: 75px;
        margin-bottom: 70px;
    }
    .d-img-text-two-col .b-text .btn-border {
        margin-left: auto;
    }
    .d-img-text-two-col.style-2 .b-text .btn-border:last-child,
    .d-img-text-two-col.style-2 .b-text .btn-arrow {
        margin-left: auto;
    }
}
@media screen and (max-width: 991px) {
    .d-img-text-two-col .b-img .img-div {
        height: 500px;
        margin-bottom: 40px;

        height: 350px;
    }
}

/* bloque imagen + texto */
.d-gastronomy + .d-img-text {
    padding-top: 0;
}
.d-img-text .img-div {
    height: 710px;
    width: 100%;
    margin-bottom: 150px;
}
.d-img-text .title {
    max-width: 550px;
    margin-bottom: 70px;
    font-size: 82px;
    line-height: 64px;

    font-size: 60px;
    line-height: 60px;
}
.d-img-text .text {
    max-width: 406px;
}
.d-img-text .btn-arrow {
    margin-top: 60px;
}
@media screen and (max-width: 991px) {
    .d-img-text .img-div {
        height: auto;
        margin-bottom: 40px;
    }
    .d-img-text .title {
        margin-bottom: 40px;
        font-size: 40px;
        line-height: 48px;
    }
}

/* bloque titulo + imagen + texto */
.d-img-text + .d-title-img-text {
    padding-top: 0;
}
.d-title-img-text:before {
    content: '';
    z-index: -1;
    position: absolute;
    top: 26vw;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--beige3);

    top: 21vw;
}
.d-title-img-text .b-text {
    position: relative;
}
.d-title-img-text .title {
    font-size: 243px;
    font-size: 12.5vw;
    position: absolute;
    top: 280px;
    left: 40px;

    font-size: 60px;
    top: 482px;
    top: 24vw;
    left: 0;
}
.d-title-img-text .img-div .title {
    color: white;
    opacity: .75;

    display: none;
}
.d-title-img-text .b-text .title {
    z-index: -1;
    left: 272px;

    left: calc(var(--bs-gutter-x) * .5);
}
.d-title-img-text .img-div {
    height: 876px;
    width: 100%;
}
.d-title-img-text .b-text .text {
    max-width: 408px;
    margin-bottom: 100px;
    margin-top: 620px;
    margin-top: 32vw;
}

@media screen and (max-width: 1400px) {
    .d-title-img-text .title {
        left: 73px;
        top: 203px;
    }
}
@media screen and (max-width: 1300px) {
    .d-title-img-text .img-div {
        height: 685px;
    }
}
@media screen and (max-width: 1200px) {
    .d-title-img-text .title {
        left: 98px;
        top: 177px;
    }
}
@media screen and (max-width: 991px) {
    .d-title-img-text .img-div .title {
        display: none;
    }
    .d-title-img-text .b-text .title {
        position: initial;
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 40px;
    }
    .d-title-img-text .b-text .text {
        margin-bottom: 50px;
        margin-top: 0;
    }
    .d-title-img-text .img-div {
        margin-bottom: 40px;
    }
    .d-title-img-text:before {
        top: 60vw;
    }
}
@media screen and (max-width: 600px) {
    .d-title-img-text .img-div {
        height: 450px;
    }
}

/* bloque tres columnas + texto */
.d-title-img-text + .d-three-col-text {
    padding-top: 0;
}
.d-three-col-text {
    background-color: var(--beige3);
}
.d-three-col-text .b-col-1 .img-div,
.d-three-col-text .b-col-3 .img-div {
    height: 650px;
    height: 628px;
    width: 100%;
}
.d-three-col-text .b-col-2 .img-div {
    height: 1015px;
    height: 710px;
    width: 100%;
}
.d-three-col-text .b-col-1 .img-div {
    margin-top: 13vw;
    margin-top: 2vw;
}
.d-three-col-text .b-col-3 .img-div {
    margin-top: 7vw;
    margin-top: 2vw;
}
.d-three-col-text .b-col-2 .logo {
    position: absolute;
    z-index: 1;
    width: 100px;
    height: auto;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}
.d-three-col-text .b-info {
    margin-top: 150px;
}
.d-three-col-text .b-info .title {
    font-size: 82px;
    line-height: 90px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;

    font-size: 60px;
    line-height: 62px;
}
.d-three-col-text .b-info .text {
    margin-left: auto;
    margin-right: auto;
    max-width: 910px;
    margin-bottom: 80px;
}
.d-three-col-text .b-info .btn-border {
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1400px) {
    .d-three-col-text .b-col-1 .img-div,
    .d-three-col-text .b-col-3 .img-div {
        height: 559px;
    }
    .d-three-col-text .b-col-2 .img-div {
        height: 614px;
    }
}
@media screen and (max-width: 991px) {
    .d-three-col-text .b-col-3 .img-div {
        margin-top: 20px;
    }
    .d-three-col-text .b-col-1 .img-div {
        margin-top: 0;
        margin-bottom: 20px;
    }
    .d-three-col-text .b-col-1 .img-div, .d-three-col-text .b-col-3 .img-div {
        height: 440px;
        width: 100%;
    }
    .d-three-col-text .b-col-2 .img-div {
        height: 520px;
    }
    .d-three-col-text .b-info .title {
        font-size: 45px;
        line-height: 48px;
        margin-bottom: 40px;
    }
    .d-three-col-text .b-info {
        margin-top: 55px;
    }
}

/* imagen pantalla completa */
.d-full-img {
    padding: 0;
}
.d-full-img .img-div {
    width: 100%;
    height: 898px;
}
@media screen and (max-width: 991px) {
    .d-full-img .img-div {
        height: auto;
    }
}

/* footer */
footer {
    padding-top: 200px;
    padding-bottom: 55px;
}
footer address {
    font-size: 20px;
    line-height: 32px;
    font-family: var(--font-helveticaneue);
    margin-bottom: 40px;
    color: var(--black);
}
footer .link-map {
    font-family: var(--font-helveticaneue);
    font-size: 11px;
    line-height: 20px;
    color: var(--brown);
    text-decoration: none;
    letter-spacing: 2px;
    margin-bottom: 80px;
    display: block;
    text-transform: uppercase;
}
footer ul li,
footer ul li a {
    color: var(--brown);
    font-size: 16px;
    line-height: 32px;
    text-decoration: none;
}
footer ul {
    margin-bottom: 0px;
    font-family: var(--font-helveticaneue);
    font-size: 12px;
    line-height: 20px;
    color: var(--brown);
}
footer p,
footer p a {
    font-family: var(--font-helveticaneue);
    font-size: 12px;
    line-height: 20px;
    color: var(--brown);
    text-decoration: none;
}
footer .link-map:hover {
    color: black;
    opacity: 1;
}
footer a:hover,
footer p a:hover {
    opacity: 0.5;
    color: inherit;
}

footer .footer-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 50px;
}

footer .footer-logos a {
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

footer .footer-logos img {
    width: auto;
    height: 80px;
    transform: translateY(0px);

    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}

footer .footer-logos img:hover {
    transform: translateY(-3px);
}
@media screen and (max-width: 1500px) {
    footer .footer-logos {
        display: inline-block;
    }
    footer .footer-logos a {
        margin-right: 20px;
    }
    footer .footer-logos a:last-child {
        margin-right: 0;
    }
}

@media screen and (max-width: 991px) {
    footer address {
        font-size: 18px;
        line-height: 30px;
    }
    footer {
        padding-top: 140px;
        padding-bottom: 75px;

        padding-bottom: 168px;
    }
    footer .footer-logos {
        display: flow-root;
    }
}

.basic .accordion .accordion-button {
    padding-left: 0;
    background-color: transparent;
    font-family: var(--font-carina);
    font-weight: 400;
    color: var(--black);
    font-size: 25px;
}
.basic .accordion .accordion-item {
    background-color: transparent;
    border: 0;
    margin-top: 18px;
}
.basic .accordion .accordion-body {
    padding-left: 0;
    padding-top: 0;
}
.basic .accordion-button:not(.collapsed) {
    box-shadow: none;
}
.basic .accordion-button::after {
    filter: grayscale(1);
}
.basic  .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}
.basic .accordion p,
.basic .accordion li,
.basic .accordion a {
    font-size: 16px;
    line-height: 30px;
    font-family: var(--font-helveticaneue);
    color: var(--black);
}

@media screen and (min-width: 768px) {
    .basic .accordion .accordion-item {
        padding-right: 160px;
    }
}

@media screen and (max-width: 600px) {
    .basic .accordion {
        margin-top: 153px;
    }
}

.icon-kgs {
    width: -moz-max-content;
    width: max-content;
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1;
    cursor: pointer;
}
.modal-kgs .modal-dialog {
    max-width: 960px;
}
.modal-kgs .modal-content .btn-close {
    position: absolute;
    right: 5px;
    top: 5px;
    opacity: 1;
}
.modal-kgs .modal-content {
    border-radius: 0;
    border: 0;
    padding: 45px;
    background-color: #E6E1D6;
}
.modal-kgs .modal-content .b-logos {
    position: absolute;
    right: 45px;
    top: 40px;
}
.modal-kgs .modal-content .b-logos img {
    width: 125px;
    height: auto;
}
.modal-kgs .modal-content .title {
    font-family: var(--font-title);
    letter-spacing: 3px;
    font-size: 37px;
    line-height: 60px;
    color: #000;
    margin-bottom: 52px;
    font-weight: 600;
    max-width: 569px;
}
.modal-kgs .modal-content .title span {
    font-size: 78px;
    font-weight: 400;
    letter-spacing: 0;
}
.modal-kgs .modal-content .text {
    max-width: 794px;
}
.modal-kgs .modal-content .text p {
    font-size: 30px;
    line-height: 40px;
    color: #000;
    margin-bottom: 0;
    font-family: var(--font-garamond);
}
.modal-kgs .modal-content .text p a {
    text-decoration: underline;
    color: #000;
}
@media (max-width: 991px) {
    .modal-kgs .modal-content .b-logos {
        position: initial;
        text-align: center;
    }
    .modal-kgs .modal-content .title {
        font-size: 30px;
        line-height: 38px;
        margin-bottom: 30px;
        letter-spacing: 1px;
        margin-top: 30px;
        text-align: center;
    }
    .modal-kgs .modal-content .title span {
        font-size: 35px;
        font-weight: 400;
        letter-spacing: 0;
    }
    .modal-kgs .modal-content .text {
        text-align: center;
    }
    .modal-kgs .modal-content .text p {
        font-size: 22px;
        line-height: 29px;
    }
    .modal-kgs .modal-content {
        padding: 30px;
        padding-bottom: 40px;
    }
}
@media (max-width: 578px) {
    .icon-kgs {
        z-index: 2;
    }
    .icon-kgs {
        bottom: 13px;
        left: 13px;
    }
}
header .btn-fixed a {
    display: block;
    background-color: #3E3D3C;
    color: white;
    position: fixed;
    top: 235px;
    z-index: 3;
    right: 50px;
    text-align: center;
    text-decoration: none;
    font-family: var(--font-garamond);
    font-size: 13px;
    text-transform: uppercase;
    padding: 15px 19px;
    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}
header .btn-fixed a:hover {
    color: #3E3D3C;
    background-color: #d0c4ad;
}