.hero{
    position: relative;
    height: 100dvh;
}

.hero--info{
    /* width: 100%; */
    height: 100%;
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(4px);
}

.hero--title{
    font-size: 6rem;
    font-weight: 100;
    padding: 2rem 4rem;
    border-radius: 20px;
    /* background-color: rgba(255,255,255,0.1); */
    width: fit-content;
    color: #fff;
    transform: translateY(100%);
    opacity: 0;
    transition: all .3s;
}

.hero.title-on .hero--title{
    transform: translateY(0);
    opacity: 1;    
}

.hero--moto{
    font-size: 2.5rem;
    text-align: center; 
    order: -1;
    font-weight: 100; 
    letter-spacing: 1px;
    color: #fff;
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    text-align: right;
    font-style: italic;
    opacity: 0;
    filter: blur(5px);
    transition: all .7s;
}

.hero.moto-on .hero--moto{
    opacity: 1;
    filter: blur(0);    
}

.hero--moto span.bl{
    display: block;
}
.hero--moto span:first-of-type{
    /* font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.25px; */
}

.hero--moto span.author{
    text-align: right;
    margin-top: .5rem;
    padding-top: .5rem;
    font-weight: 300;
    font-size: 1.5rem;
    border-top:1px solid #fff;
}

.hero-buttons{
    margin-top: 2rem;
    gap: 2rem;
}

@media screen and (max-width: 1520px) {
    .hero--title{
        font-size: 5rem;
    }
}
@media screen and (max-width: 1280px) {
    .hero--title{
        font-size: 4rem;
    }
    .hero--moto{
        font-size: 2rem;
    }
}
@media screen and (max-width: 1020px) {
    .hero--title{
        font-size: 3rem;
        padding-inline: 2rem;
    }
    .hero--moto{
        font-size: 1.5rem;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    .hero--moto span.author{
        font-size: 1.25rem;
    }
}
@media screen and (max-width: 820px) {
    .hero--title{
        font-size: 2.5rem;
    }
    .hero--moto{
        font-size: 1.25rem;
    }
    .hero--moto span.author{
        font-size: 1rem;
    }
}
@media screen and (max-width: 520px) {
    .hero--title{
        font-size: 2rem;
        padding-inline: 1rem;
    }
    .hero--moto{
        font-size: 1rem;
        bottom: 1rem;
        right: 1rem;
    }
    .hero--moto span.author{
        font-size: 0.875rem;
        margin-top: .25rem;
        padding-top: .25rem;
    }
}
@media screen and (max-width: 385px) {
    .hero--title{
        font-size: 1.75rem;
    }
    .hero--moto{
        font-size: .875em;
        bottom: .75rem;
        right: .75rem;
    }
    .hero--moto span.author{
        font-size: 0.75rem;
    }
}

/* questions section */

.question-list{
    padding-block: 4rem;
    position: relative;
}

.question-intro{
    max-width: 600px;
    font-size: 18px;
    margin-bottom: 2rem;
}

.question-intro > p:not(:last-of-type){
    margin-bottom: 1rem;
}

.question-list h3{
    font-size: 3rem;
    margin-bottom: 2rem;
    max-width: 750px;
    color: var(--colorGold);
}
.question-list ul li{
    padding-block: 1.5rem;
    font-size: 24px;
    max-width: 800px;
    text-wrap: pretty;
}

.question-list ul li:not(:first-of-type){
    border-top: 1px solid #D6CCC2;
}

.question-list .btn-wrapper{
    margin-left: auto;
    width: fit-content;
}

.question-list .side-img{
    position: absolute;
    /* top: 100px; */
    width: 200px;
    border-radius: 100px; 
    aspect-ratio: 0.4;
    overflow: hidden;   
}

.right-img{right: 2rem;bottom: 30%;}
.center-img{right: calc(2rem + (200px + 2rem)); bottom: -5%;}
.left-img{right: calc(2rem + 2 * (200px + 2rem)); bottom: 15%;}

@media screen and (max-width: 1120px) {
    .question-list .quote{
        margin-top: 5rem;
    }
    .question-list h3{
        font-size: 44px;
    }
}
@media screen and (max-width: 940px) {
    .question-list h3{
        font-size: 38px;
        max-width: 600px;
    }
}
@media screen and (max-width: 620px) {
    .question-list h3{
        font-size: 28px;
    }
    .question-list ul li{
        font-size: 20px;
    }
    .quote h4{
        font-size: 1.5rem;
    }
    .quote h5{
        font-size: 1rem;
    }
}

/* section contact */

.contact-section{
    height: 100dvh;
    background-color: rgba(0,0,0,0.3);
    mix-blend-mode: color-burn;
}

/* steps section */

.header-between{
    padding-inline: var(--padding);
    text-align: center;
    font-size: 45px;
    font-weight: 100;
    margin-block: 50px;
    color: var(--colorGold);
}

.steps-section{
    /* background-color: rgb(224, 238, 224); */
    padding-block: clamp(4rem, 6vw, 140px);  
    position: relative; 
}

.steps-section::before{
    content: "";
    width: 100%;
    height: 60%;
    position: absolute;
    left: 0; bottom: 0;
    z-index: -1;
    background-color: var(--colorAlt);
}
.steps-section > .bg-overlay{
    background-color: #EDEDE9;
    position: absolute;
    left:0;
    width: 100%;
    height: 100%;
    top: 0;
    z-index: 1;
    mix-blend-mode: screen;
}

.steps-section .bg-img{
    z-index: 0; 
    /* filter: grayscale(1); */
    /* opacity: .5; */
}

.steps-section  h2{
    text-align: center;
    font-size: 40px;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
    color: #000;
}

.steps-wrapper{
    justify-content: space-between;
}

.steps-section .step{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border:1px solid var(--colorGold);
    border-radius: 150px;
    padding: 1rem;
    flex-grow: 1;
    max-width: 250px;
    height: 450px;
    gap: 6rem;
    background-color: #D5BDAF;
    color: var(--colorGold);
    position: relative;
    z-index: 2;
    transition: all .3s;
}

.steps-section .step:hover{
    transform: scale(1.1);
}

.steps-section .step-icon{
    max-width: 150px;
    filter: var(--filterGold);
    border:1px solid var(--colorGold);
    border-radius: 50%;
    padding: 2rem;
    margin-top: 2rem;
}

.step-title{
    font-size: 24px;
    font-weight: 300;
}

.steps-section .btn-wrapper{
    margin:6rem auto 0;
    width: fit-content;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1380px) {
    .header-between{
        font-size: 40px;
        margin-block: 3rem;
    }
    .steps-wrapper{
        justify-content: center;
        gap: 3rem;
    }
}
@media screen and (max-width: 980px) {
    .header-between{
        font-size: 34px;
    }
    .steps-section .step{
        height: 400px;
        gap: 3rem;
        max-width: 200px;
    }
    .steps-section .step-icon{
        max-width: 120px;
    }
    .steps-wrapper{
        gap: 2rem;
    }
}
@media screen and (max-width: 740px) {
    .steps-section .step{
        height: auto;
        gap: 1rem;
        max-width: 160px;
    }
    .step-title{
        font-size: 20px;
        margin-bottom: 2rem;;
    }
    .steps-section .step-icon{
        max-width: 90px;
        padding: 1.25rem;
        margin-top: 2rem;
    }
}
@media screen and (max-width: 680px) {
    .steps-section{
        padding-top: 2rem;
    }
}
@media screen and (max-width: 580px) {
    .steps-wrapper{gap: 1rem;}
    .steps-section .step{
        gap: 1rem;
        max-width: 140px;
    }
    .step-title{
        font-size: 18px;
    }
    .steps-section .step-icon{
        max-width: 80px;
        padding: 1rem;
    }
}
@media screen and (max-width: 520px) {
    .header-between{
        font-size: 28px;
        margin-bottom: 1rem;;
    }
    .steps-wrapper{
        flex-direction: column;
        align-items: center;
    }
    .steps-section .step{
        width: 100%;
        max-width: 300px;
        flex-direction: row;
        align-items: center;
    }
    .steps-section .step-icon{
        margin-top:0;
        max-width: 50px;
        padding: .5rem;
    }
    .step-title{
        margin-bottom: 0;
        font-size: 16px;
    }
    .steps-section .btn-wrapper{
        margin-top: 2rem;
    }
    .steps-section .btn-wrapper .btn{
        background-color: #704516;
        color: #fff;
    }
}

@media screen and (max-width: 420px) {
    .steps-wrapper{
        gap: .5rem;
    }
    .steps-section .step{
        padding: .5rem;
    }
}

/* book section */

.book-section{
    position: relative;
    height: 90dvh;
    /* background: #2A7B9B; */
    /* background: linear-gradient(0deg, rgba(42, 123, 155, .5) 0%, rgba(87, 199, 133, .5) 50%, rgba(237, 221, 83, .5) 100%); */
}

.book-wrapper{
    padding-block: 10rem;
}

.book-wrapper > h3{
    font-size: 2rem;
    max-width: 1020px;
    margin-inline: auto;
    text-align: center;
    padding: 4rem 3rem;
}

.book-wrapper .buttons{
    margin-top: 3rem;
    gap: 3rem;
    justify-content: center;
}

@media screen and (max-width: 1320px) {
    .book-wrapper{padding-block: 8rem;}
    .book-wrapper > h3{
        font-size: 26px;
        max-width: 800px;
    }
}
@media screen and (max-width: 920px) {
    .book-wrapper{padding-block: 6rem;}
    .book-wrapper > h3{
        font-size: 22px;
        padding-bottom: 1rem;
    }
    .book-wrapper .buttons{gap: 2rem;}
}
@media screen and (max-width: 620px) {
    .book-wrapper > h3{
        font-size: 18px;
        padding: 2rem 2rem 0;
    }
    .book-wrapper .buttons{
        gap: 1rem;
        margin-top: 1.5rem;
    }
}
@media screen and (max-width: 440px) {
    .book-wrapper .buttons{
        flex-direction: column;
        align-items: center;
    }
}

/* team section */

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

}

/* page */

article{
    padding-block: 4rem;
    font-size: 18px;
}

article > h2{
    font-weight: 600;
    font-size: 22px;
    font-size: 1.22em;
    color: var(--colorGold);
}

article > *:not(:last-child){
    margin-bottom: 2rem;
}

article + .buttons{
    justify-content: center;
    gap: 3rem;
    margin-bottom: clamp(100px, 8vw, 3rem);
}

@media screen and (max-width: 920px) {
    article + .buttons{
        gap: 2rem;
    }    
}
@media screen and (max-width: 620px) {
    article{
        font-size: 16px;
        padding-block: 3rem;
    }
    article > *:not(:last-child){
        margin-bottom: 1.5rem;
    }
    article > h2{
        /* font-size: 20px; */
    }
    article + .buttons{
        gap: 1rem;
    }    
}
@media screen and (max-width: 540px) {
    article + .buttons{
        flex-direction: column;
        align-items: center;
    }    
}

/* specialties */

.specialties-list{
    position: relative;
    padding-block: clamp(2rem, 8vw, 100px);
}

.specialties-list > h2{
    font-size: 36px;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 100;
}
.specialty{
    padding-block: 1rem;
    border-bottom: 1px solid #D6CCC2;
    max-width: 600px;
    --radius: 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.specialty > h3{
    font-size: 24px;
    transition: transform .3s;
}

.specialty >  .icon{
    display: inline-block;
    width: 3rem;
    padding: .5rem;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid #D6CCC2;
}

.specialty-img{
    position: absolute;
    right: 2rem;
    bottom: 120px;
    display: none;
    border: 1px solid #D6CCC2;
}

 .specialty:hover .specialty-img{
    display: block;
    width: 250px;
    aspect-ratio: 0.6;
    border-radius: var(--radius);
    overflow: hidden;
} 
 .specialty:hover h3{
    transform: translateX(2ch);
} 

.specialty-img img{
    padding: 1rem;
    border-radius: var(--radius);
    filter: grayscale(1);
}

.specialties-btn{
    width: fit-content;
    margin: 0 auto 4rem;
}


@media screen and (max-width: 980px) {
    .specialty{
        margin-inline: auto;
    }
    .specialty:hover .specialty-img{
        display: none;
    } 
    .specialty > h3{
        font-size: 22px;
    }
}
@media screen and (max-width: 620px) {
    .specialties-list > h2{
        font-size: 28px;
    }
    .specialty > .icon{
        width: 2rem;
    }
}

/* page contact */

.page-contact-wrapper{
    gap: 0 4rem;
    margin-bottom: clamp(3rem, 7vw, 120px);
    min-height: 500px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto;
}


.page-contact-wrapper .info-text{
    margin-block: auto 2rem;
    font-size: 20px;
    padding-right: 20%;
    font-weight: 300;
}

.info-text,
.contact-options{
    align-self: end;
}
.contact-option{
    display: flex;
    align-items: center;
    gap:2rem;
    padding-block: 1.5rem;
    border-top: 1px solid #D6CCC2;
}
.contact-options > div:last-child{
    border-bottom: 1px solid #D6CCC2;
}
.contact-option h3{
    font-weight: 600;
}

.contact-form{
    padding: 4rem;
    background-color: var(--colorAlt);
    grid-row: 1 / 4;
    grid-column: 2 / 3;
}

#contactForm{
    padding: 2rem;
    border: 1px solid #fff;
}

.contact-form h3{
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--colorGold);
}
.contact-form-lead{
    font-size: 16px;
    max-width: 400px;
    margin-bottom: 2rem;
}

.form-input input,
.form-input textarea{
    width: 100%;
    background-color: transparent;
    border-bottom: 1px solid #fff;
    padding-block: 1rem;
    font-size: 16px;
    margin-bottom: 1rem;
    font-family: "Manrope", sans-serif;
    color: #000;
}

.form-input  > *{
    width: 100%;
} 
.form-input *::placeholder{
    color: #000;
}

#contactForm input[type="submit"]{
    background-color: var(--colorBg);
    border: 1px solid #fff;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 14px;
    font-weight: 300;
    margin-top: 2rem;
    margin-left: auto;
    width: fit-content;
    display: block;
    cursor: pointer;    
}

#contactForm > h4{
    font-size: 14px;
    font-weight: 100;
    text-align: right;
}

@media screen and (max-width: 1520px) {
    .page-contact-wrapper{gap: 0 3rem;}
    .contact-form{ padding: 3rem;}
}
@media screen and (max-width: 1320px) {
    .page-contact-wrapper{
        gap:0 2rem;
        grid-template-columns: 40% 1fr;
    }
    .contact-form{ padding: 2rem;}
    #contactForm { padding: 1rem;}
    .page-contact-wrapper .info-text{
        padding-right: 2rem;
    }
}
@media screen and (max-width: 1020px) {
    .page-contact-wrapper{
        gap: 2rem;
    }
    .page-contact-wrapper .page-title{grid-column: 1 / -1; grid-row: 1/2;}
    .page-contact-wrapper .info-text{grid-column: 1 / -1; grid-row: 2/3;}
    .page-contact-wrapper .contact-form{grid-column: 1 / -1; grid-row: 3/4;}
    .page-contact-wrapper .contact-options{grid-column: 1 / -1; grid-row: 4/5;}

    .page-contact-wrapper .info-text{
        max-width: 600px;
        margin-bottom: 0;
    }
    .contact-option{
        padding-inline: 2rem;
    }
}
@media screen and (max-width: 620px) {
    .page-contact-wrapper .contact-form{
        padding: 1rem;
    }
    #contactForm input[type="submit"]{
        margin-top: 1rem;
    }
    .contact-option{
        padding: 1rem;
    }
}


/* page bio */

.bio-wrapper{
    gap: 0 6rem;
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
}

.bio-image{
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    --radius: 250px;
    /* flex: 0 0 25%; */
    width: 25vw;
    padding: 2rem;
    border:1px solid #D6CCC2;
    border-radius: var(--radius);
    height: fit-content;
    position: sticky;
    top: 120px;
    min-width: 320px;
}

.bio-image img{
    border-radius: var(--radius);
}
.bio-info{
    padding: 2rem 0;
}

.bio-name{
    font-size:60px;
    font-weight: 100;
    color: var(--colorGold);
}

.bio-name span{
    /* display: block; */
}

.bio-text{
    max-width: 750px;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.4;
    padding-right: 1rem;
}
.bio-text > p:not(:last-of-type){
    margin-bottom: 2rem;
}

.bio-extras{
    margin-block: 3rem;
    max-width: 750px;
}

.bio-extra{
    padding-block: 1.5rem;
    border-top: 1px solid #D6CCC2;
    /* border-bottom: 1px solid #D6CCC2; */
    position: relative;
    cursor: pointer;
}

.bio-extras > div:last-of-type{
    border-bottom: 1px solid #D6CCC2;
}

.bio-extra h3{
    font-size: 24px;
    font-weight: 500;
}

.bio-extra-icon{
    position: absolute;
    width: 1rem;
    height: 1rem;
    top: 30px;
    right: 2rem;
    cursor: pointer;
    transition: all .3s;
}

.bio-extra.on .bio-extra-icon{
    transform: rotate(45deg);
}

.bio-extra-icon span{
    position: absolute;
    left:0;
    top: 50%;
    border-top: 1px solid #000;
    width:100%;
}
.bio-extra-icon span:last-of-type{
    transform: rotate(90deg);
}
.bio-extra-more{
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s;
}
.bio-extra-more > p:first-of-type{
    margin-top: 1rem;
}
.bio-extra-more > p{
    margin-bottom: 1rem;
}
.bio-extra.on .bio-extra-more{
    max-height: 1500px;
}

.bio-wrapper + .buttons{
    justify-content: center;
    gap: 4rem;
    margin-block: 0 6rem;
}

@media screen and (max-width: 1420px) {
    .bio-wrapper{
        gap: 0 4rem;
    }
    .bio-image{
        padding:1rem;
    }
    .bio-name{
        font-size: 52px;
    }
}
@media screen and (max-width: 1180px) {
    .bio-name{
        font-size: 42px;
    }
}
@media screen and (max-width: 1020px) {
    .bio-wrapper{
        gap: 2rem;
    }
    .bio-info{
        padding-top: 0;
    }
    .bio-text{
        font-size: 20px;
    }

}
@media screen and (max-width: 920px) {
    .bio-wrapper{
        gap: 2rem;
    }
    .bio-info{
        padding-top: 0;
    }
    .bio-image{
        width: 240px;
        padding: 0;
        min-width: unset;
    }
    .bio-extra h3{
        font-size: 22px;
    }
}

@media screen and (max-width: 820px) {
    .bio-name{
        font-size: 36px;
    }
}

@media screen and (max-width: 720px) {
    .bio-wrapper{
        gap: 1rem 2rem;
    }
    .bio-image{
        width: 180px;
    }
    .bio-text{
        font-size: 18px;
    }
}
@media screen and (max-width: 580px) {

    .bio-image{
        width: 120px;
        aspect-ratio: 1;
        grid-row: 1 / 2;
        position: relative;
        top: 0;
    }
    .bio-info{
        grid-column: 1 / -1;
    }
    .bio-text{
        padding-right: .5rem;
    }
    .bio-name{
        align-self: center;
    }
}

/* page about */

.about-text{
    margin-block: 4rem;
}

.about-text p{
    font-size: 20px;
    line-height: 1.4;
    max-width: 800px;
}
.about-text p:not(:last-of-type){
    margin-bottom: 2rem;
}

.about-team{
    /* background-color: rgba(87, 199, 133, .5); */
    padding-block: 6rem;
    margin-top: clamp(2rem, 10vw, 100px);
    position: relative;
}

.about-team::before{
    background-color: var(--colorAlt);
    content: "";
    position: absolute;
    left:0;
    bottom: 0;
    width: 100%;
    height: 60%;
    z-index: -1;
}

.team-persons{
    gap: 4rem;
    justify-content: center;
}


.person-image{
    --radius : 150px;
    padding: 1rem;
    border:1px solid #fff;
    border-radius: var(--radius);
    max-width: 250px;
    margin-inline: auto;
    
}

.person-image img{
    border-radius: var(--radius);
}

.person{
    flex: 1;
    max-width: 500px;
}

.person-name{
    margin-block: 1rem;
    text-align: center;
    font-size: 2rem;
    font-weight: 100;
    color: var(--colorGold);
}

.person .btn-wrapper{
    margin-inline: auto;
    width: fit-content;
    opacity: 0;
    transform: translateY(100px);
    transition: all .3s;
}
.person:hover .btn-wrapper{
    opacity: 1;
    transform: translateY(0);
}

@media screen and (max-width: 1320px) {
    .about-team{padding-block: 4rem;}
}
@media screen and (max-width: 1120px) {
    .about-text{
        margin-block: 3rem;
    }
    .team-persons{ gap: 3rem;}
}
@media screen and (max-width: 1020px) {
    .about-team{margin-top: 0;}
    .person .btn-wrapper{
        transform: translate(0);
        opacity: 1;
    }
}
@media screen and (max-width: 920px) {
    .person-image{
        max-width: 200px;
    }
    .person-name{
        font-size: 1.5rem;
    }
    .about-text p{
        font-size: 18px;
    }
    .about-text p:not(:last-of-type){
        margin-bottom: 1.5rem;
    }
}
@media screen and (max-width: 820px) {
    .about-text{
        margin-block: 2rem;
    }
    .team-persons{ gap: 2rem;}
}
@media screen and (max-width: 520px) {
    .about-team{padding-block: 2rem;}
    .team-persons{ gap: 1rem;}
    .person-image{
        max-width: 150px;
        padding: .5rem;
    }
    .person-name{
        font-size: 1.25rem;
        text-align: center;
        margin: .5rem auto;
        width: 65%;
    }
    .about-text p{
        font-size: 16px;
    }
    .about-text p:not(:last-of-type){
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 460px) {
    .team-persons{ gap: 0;}
}
@media screen and (max-width: 420px) {
    .person-name{
        font-size: 1.125rem;
        width: 70%;
    }
}
@media screen and (max-width: 360px) {
    .person-name{
        font-size: 1rem;
    }
    .person-image{
        max-width: 125px;
        padding: .375rem;
    }
}

/* page book */

.page-book-body{
    display: grid;
    grid-template-columns: 700px 1fr;
    margin-block: 2rem;
    gap: 0 100px;
    
}

.page-book-body .ea-bootstrap{
    grid-column: 1 / 2;
    grid-row: 1 / 22;
    background-color: var(--colorAlt);
    padding-block: 50px;
}

.page-book-body .ea-bootstrap > .ea-bootstrap{
    margin-inline: auto;
    border:1px solid #fff;
    padding: 2rem;
}

.page-book-body >*:not(.ea-bootstrap){
    grid-column: 2 / 3;
    max-width: 600px;
    font-size: 22px;
}
.page-book-body > *:first-child{
    margin-top: 3rem;
}

.ea-bootstrap .disabled .block{
    background-color: transparent!important;
}

.page-book-body ol{
    list-style: decimal;
    padding-left: 1rem;
}
.page-book-body ol li{
    padding-block: .5rem;
}

.ea-bootstrap .ui-datepicker .no-slots{
    background-color: var(--colorAlt)!important;
}

.ea-bootstrap .ui-datepicker .no-slots a{
    color: #fff!important;
}

.ea-bootstrap.ea-bootstrap .selected-time, 
.ea-bootstrap.ea-bootstrap .selected-time:hover,
.ui-datepicker .ui-datepicker-current-day{
    background-color: var(--colorBtn)!important;    
}

.ea-bootstrap a{
    color: var(--colorGold)!important;
}

.ui-datepicker{
    box-shadow: none!important;
    border-color: transparent!important;
}

.ea-bootstrap #booking-overview .ea-label,
.ea-bootstrap .final h3,
.ea-bootstrap .final label{
    font-family: "Manrope", sans-serif!important;
    color: var(--colorGold)!important;
    font-weight: 100!important;
}

.ea-bootstrap small, .ea-bootstrap .small{
    font-weight: 300!important;
    font-family: "Manrope", sans-serif!important;
    color: var(--colorGold)!important;
    font-size: 14px!important;
    margin-bottom: 1rem;
    display: block;
}

#booking-overview{
    margin-bottom: 1rem;
}

.ea-bootstrap #booking-overview .value{
    font-weight: 100!important;
    font-family: "Manrope", sans-serif!important;
}

.ea-bootstrap #booking-overview .ea-label{
    font-weight: 300!important;
}

.ea-bootstrap .form-control{
    background-color: transparent!important;
    border:none!important;
    border-bottom: 1px solid #fff!important;
    outline: none!important;
    border-radius: 0!important;
    box-shadow: none!important;
}

.ea-bootstrap .btn-primary{
    background-color: var(--colorGold)!important;
    border-color: transparent!important;
}

.ea-bootstrap .btn{
    border-radius: 20px!important;
}

@media screen and (max-width: 1520px) {
    .page-book-body{
        gap: 0 4rem;
    }
}
@media screen and (max-width: 1280px) {
    .page-book-body{
        grid-template-columns: 664px 1fr;
        gap: 0 2rem;
    }
    .page-book-body .ea-bootstrap{
        padding-block: 2rem;
    }
    .page-book-body >*:not(.ea-bootstrap){
        font-size: 20px;
    }
}
@media screen and (max-width: 1120px) {
    .page-book-body{
        display: block;
    }
    .page-book-body > .ea-bootstrap{
        margin-top: 3rem;
        max-width: 664px;
    }
    .page-book-body .ea-bootstrap > .ea-bootstrap{
        width: calc(100% - 4rem);
    }
}

@media screen and (max-width: 820px) {
    .page-book-body >*:not(.ea-bootstrap){
        font-size: 18px;
    }
    .page-book-body > .ea-bootstrap{
        margin-top: 2rem;
    }
    .page-book-body > ol {
        list-style-position: inside;
    }
}
@media screen and (max-width: 580px) {
    .page-book-body .ea-bootstrap > .ea-bootstrap{
        width: calc(100% - 2rem);
    }
    .page-book-body .ea-bootstrap{
        padding-block: 1rem;
    }
}
@media screen and (max-width: 520px) {
    .page-book-body .ea-bootstrap > .ea-bootstrap{
        padding: 1rem;
    }
}