.top-nav {
    background: var(--color-primary);
    color: var(--color-white);
}

.social-link a {
    margin-left: 10px;
}

a.logo-content {
    display: block;
    max-width: 300px;
}

h1 strong { font-style: italic; }
h2::first-letter { border-bottom: 4px solid var(--color-primary); }


/* Content */
.sub-page .content { position: relative; padding-bottom: 50px; }
.sub-page .content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
    bottom: -1px;
    left: 0;
    background: var(--color-primary);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    pointer-events: none;
    z-index: 1;
}

.box-border {
    display: block;
    border: 1px solid var(--color-light-hover);
    border-radius: var(--border-radius-base);
    box-shadow: -1px 1px 20px -7px rgba(0,0,0,0.25);
    -webkit-box-shadow: -1px 1px 20px -7px rgba(0,0,0,0.25);
    -moz-box-shadow: -1px 1px 20px -7px rgba(0,0,0,0.25);
}

.box-price {
    transform: translateY(0);
    transition: .3s all ease;
}
.box-price:hover {
    transform: translateY(-10px);
    transition: .3s all ease;
}
.box-price.fx {
    opacity: .8;
}
.box-price .title {
    position: relative;
    top: -15px;
    background: var(--color-primary);
    color: var(--color-white);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-xl);
    border-radius: 0 var( --border-radius-min) var( --border-radius-base) var( --border-radius-base);
}
.box-price .title::before {
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    left: -15px;
    background: var(--color-primary-hover);
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.box-price .number-days {
    font-weight: var(--font-weight-xl);
}
.box-price .price {
    color: var(--color-primary);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-xl);
}

/* Service */
.service-content {
    position: relative;
    background: var(--color-light);
}
#style-1 .service-content {
    padding-top: 50px;
}
#style-1 .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
    top: -1px;
    left: 0;
    background: var(--color-white);
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    pointer-events: none;
}
.service-content .icon {
    position: relative;
}

.service-content .icon img {
    position: relative;
    z-index: 2;
}

/* Aside */
.aside-content {
    background-position:  center !important;
    background-size: cover !important;
    position: relative;
}
#style-1 .aside-content {
    padding: 50px 0;
}
.aside-content .filter {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(3, 60, 86, 1) 0%, rgba(20, 107, 145, 1) 100%);
    opacity: .7;
}
#style-1 .aside-content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
    top: -1px;
    left: 0;
    background: var(--color-light);
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    pointer-events: none;
    z-index: 1;
}
#style-1 .aside-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
    bottom: -1px;
    left: 0;
    background: var(--color-white);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    pointer-events: none;
    z-index: 1;
}

/* Step */
.step-content .inner {
    border-radius: 20px;
    overflow: hidden;
    margin-top: 40px;
}
.step-content .row { padding: 0 1rem; }
.step-content .step {
    background: var(--color-light);
    transition: .3s all ease;
    overflow: hidden;
}
.step-content .step.active {
    color: var(--color-white);
}
.step-content .step .icon {
    position: relative;
    background: var(--color-primary);
    flex: none;
    display: inline-flex;
    padding: 10px;
    border-radius: 50%;
    margin-bottom: 15px;
}
.step-content .step .icon::after {
    content: "";
    position: absolute;
    z-index: 0;
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    background: var(--color-primary);
    border-radius: 50%;
    transform: scale(1.0);
    transition: .2s all ease;
}
.step-content .step.active .icon::after {
    transform: scale(100.0);
    transition: 1s all ease;
}
.step-content .step .icon img {
    position: relative;
    z-index: 2;
}
.step-content .step .txt {
    position: relative;
    z-index: 1;
}
.step-content .step .txt hr { border-color: var(--color-primary); margin-bottom: 15px; }
.step-content .step.active .txt hr { border-color: var(--color-white); }

/* Aside */
.brand-content {
    background-position:  center !important;
    background-size: cover !important;
    position: relative;
}
#style-1 .brand-content {
    padding: 50px 0;
}
.brand-content .filter {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    top: 0;
    left: 0;
    background: linear-gradient(0deg, rgba(3, 60, 86, 1) 0%, rgba(20, 107, 145, 1) 100%);
    opacity: .7;
}
#style-1 .brand-content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
    top: -1px;
    left: 0;
    background: var(--color-white);
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    pointer-events: none;
    z-index: 1;
}
#style-1 .brand-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
    bottom: -1px;
    left: 0;
    background: var(--color-light);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    pointer-events: none;
    z-index: 1;
}
.brand-content img {
    width: 220px;
}

/* Testimonial */
.testimonial-content { background: var(--color-light); }
.testimonial-content .swiper-slide .inner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--color-white);
    border: 1px solid var(--color-light-hover);
    border-radius: var(--border-radius-base);
    box-shadow: -1px 1px 20px -7px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: -1px 1px 20px -7px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: -1px 1px 20px -7px rgba(0,0,0,0.25);
    padding: var(--padding-box);
    margin-top: 20px;
    column-gap: 0;
}
.testimonial-content .swiper-slide .inner p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}
.testimonial-content .swiper-slide .inner .quote-icon {
    position: absolute;
    top: -20px;
    left: 28px;
}
.testimonial-content .swiper-slide .inner .profil { color: var(--color-primary); font-weight: 600; }
.swiper-pagination-bullet-active { background: var(--color-primary) !important; }

/* Map content */
.map-content { position: relative; background: var(--color-primary); line-height: 0; }
#style-1 .map-content::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
    top: -1px;
    left: 0;
    background: var(--color-light);
    clip-path: polygon(0 0, 0% 100%, 100% 0);
    pointer-events: none;
    z-index: 1;
}
#style-1 .map-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
    bottom: -1px;
    left: 0;
    background: var(--color-primary);
    clip-path: polygon(0 0, 0% 100%, 100% 100%);
    pointer-events: none;
    z-index: 1;
}
.map-content iframe {
    filter: grayscale(1);
    opacity: .8;
}

/* Prefooter */
.prefooter-content {
    background: var(--color-primary);
}
.prefooter-content h3 { position: relative; padding-bottom: 15px; }
.prefooter-content h3::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 3px;
    left: 0;
    bottom: -1px;
    background: var(--color-white);
}
.prefooter-content h3.text-center::after {
    left: calc(50% - 25px);
}
.prefooter-content a {
    color: var(--color-white);
}
.prefooter-content a:hover {
    color: var(--color-dark);
}
.prefooter-content i { margin-right: 4px; color: var(--color-white); }

footer { background: var(--color-dark); }
footer a { color: var(--color-primary); }
footer a:hover { color: var(--color-secondary); }

a.top-scroll {
    position: fixed;
    right: -100px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    background: var(--color-secondary);
    color: var(--color-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    z-index: 99;
}
a.top-scroll:hover {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
}
a.top-scroll i {
    line-height: 1 !important;
}

.booking-form h4 { color: var(--color-primary); }
table.table-price {
    border: 1px solid #ddd;
    border-collapse: collapse;
}
table.table-price td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}
table.table-price td:first-child { padding-right: 0; }
table.table-price td:last-child { padding-left: 0; }
table.table-price tr.total-price {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 22px;
}
table.table-price tr.total-price .price {
    font-weight: 600;
    white-space: nowrap;
}
.booking-form .info {
    font-size: 14px;
}
.booking-form .info a { color: var(--color-primary); }
.booking-form .info i { color: var(--color-primary); }
.booking-form .info-alert {
    background: var(--color-light);
    width: 100%;
    padding: 5px 10px;
}
.booking-form .legend-content {
    float: inline-end;
    line-height: 0;
    cursor: pointer;
    position: relative;
}
.booking-form .legend-content:hover i {
    color: var(--color-primary);
}
.booking-form .legend-content legend {
    display: none;
    position: absolute;
}
.booking-form .legend-content:hover legend {
    display: block;
    position: absolute;
    line-height: 1.3;
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 14px;
    padding: 15px;
    width: 250px;
    bottom: 100%;
    left: calc(50% - 125px);
    border-radius: 8px;
    box-shadow: -1px 1px 20px -7px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: -1px 1px 20px -7px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: -1px 1px 20px -7px rgba(0,0,0,0.25);
    cursor: default;
}

.list-price .row {
    margin: 0;
    border-radius: var(--border-radius-base);
    overflow: hidden;
    background: var(--color-light);
}
.list-price .col-3 {
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
}
.list-price .col-3 strong {
    display: block;
    font-size: 20px;
    letter-spacing: 1px;
    border-top: 1px solid #ccc;
    padding-top: 10px;
    color: var(--color-primary);
}
.list-price .col-3:nth-child(even) {
    background: var(--color-light);
}
.list-price .col-3:nth-child(odd) {
    background: var(--color-light-hover);
}
.list-subscription .inner {
    background: var(--color-light-hover);
    border-radius: var(--border-radius-base);
    overflow: hidden;
    text-align: center;
}
.list-subscription .inner strong {
    display: block;
    padding: 30px 5px;
    padding-bottom: 5px;
    font-size: 24px;
    letter-spacing: 1px;
}
.list-subscription .inner .price {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 15px 5px;
    font-size: 20px;
    letter-spacing: 1px;
    margin-top: 25px;
}
.list-subscription .inner .price span {
    font-size: 14px;
    text-decoration: line-through;
    font-style: italic;
}
@media only screen and (max-width: 1600px) { /* ------------------------ */
    /* start */

    ul.bt-splite {
        margin-right: 0 !important;
    }

    /* end 1600 */ }

@media only screen and (max-width: 1400px) { /* ------------------------ */
    /* start */


    /* end 1400 */ }

@media only screen and (max-width: 1360px) { /* ------------------------ */
    /* start */



    /* end 1360 */ }

@media only screen and (max-width: 1200px) { /* xl --------------------- */
    /* start */

    body {
        font-size: 15px;
        font-weight: 400;
    }

    /* end 1200 */ }

@media only screen and (max-width: 1100px) { /* ------------------------ */
    /* start */




    /* end 1100 */ }

@media only screen and (max-width: 1024px) { /* ------------------------ */
    /* start */



    /* end 1024 */ }

@media only screen and (max-width: 992px) { /* lg ---------------------- */
    /* start */

    .form-booking .form-content form .col-12:nth-child(-n+2) {
        padding-right: 1rem;
    }

    /* end 992 */ }

@media only screen and (max-width: 991px) { /* ------------------------- */
    /* start */



    /* end 991 */ }

@media only screen and (max-width: 767px) { /* md ---------------------- */
    /* start */

    .form-booking .form-content form::before {
        content: none;
    }

    /* end 767 */ }

@media only screen and (max-width: 680px) { /* ------------------------- */
    /* start */



    /* end 680 */ }

@media only screen and (max-width: 576px) { /* sm ---------------------- */
    /* start */


    /* end 576 */ }

@media only screen and (max-width: 480px) { /* ------------------------- */
    /* start */



    /* end 480 */ }

@media only screen and (max-width: 320px) { /* ------------------------- */
    /* start */



    /* end 320 */ }
