* {
    padding: 0;
    margin: 0;
}

@font-face {
    font-family: "bg_regular";
    src: url(../font/Bricolage_Grotesque/static/BricolageGrotesque-Regular.ttf);
}

@font-face {
    font-family: "bg_medium";
    src: url(../font/Bricolage_Grotesque/static/BricolageGrotesque-Medium.ttf);
}

@font-face {
    font-family: "bg_semibold";
    src: url(../font/Bricolage_Grotesque/static/BricolageGrotesque-SemiBold.ttf);
}

@font-face {
    font-family: "bg_bold";
    src: url(../font/Bricolage_Grotesque/static/BricolageGrotesque-bold.ttf);
}

@font-face {
    font-family: "inter_regular";
    src: url(../font/Inter/static/Inter_18pt-Regular.ttf);
}

@font-face {
    font-family: "inter_medium";
    src: url(../font/Inter/static/Inter_18pt-Medium.ttf);
}

@font-face {
    font-family: "inter_semibold";
    src: url(../font/Inter/static/Inter_18pt-SemiBold.ttf);
}

@font-face {
    font-family: "inter_bold";
    src: url(../font/Inter/static/Inter_18pt-Bold.ttf);
}

:root {

    --bg_regular: "bg_regular";
    --bg_medium: "bg_medium";
    --bg_semibold: "bg_semibold";
    --bg_bold: "bg_bold";
    --inter_regular: "inter_regular";
    --inter_medium: "inter_medium";
    --inter_semibold: "inter_semibold";
    --inter_bold: "inter_bold";

    --fs_12: 12px;
    --fs_14: 14px;
    --fs_16: 16px;
    --fs_18: 18px;
    --fs_20: 20px;
    --fs_22: 22px;
    --fs_24: 24px;
    --fs_26: 26px;
    --fs_32: 32px;
    --fs_40: 40px;
    --fs_50: 50px;

    --bg_color_1: #000000;
    --bg_color_2: #FFFFFF;
    --bg_color_3: #FFC460;
    --bg_color_4: #101920;
    --bg_color_5: #1997FF;

    --text_color_1: #000000;
    --text_color_2: #FFFFFF;
    --text_color_3: #FFC460;
    --text_color_4: #101920;
    --text_color_5: #1997FF;
    --text_color_6: #808080;
    --text_color_7: #B3B3B3;
    --text_color_8: #404040;

}

body {
    /* overflow-x: hidden; */
}

p,
span,
input,
select.form-select {
    font-family: var(--bg_regular);
}

.navbar .container {
    width: 100%;
}

.navbar {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0px 1px 8px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    z-index: 10;
    width: 68%;
    padding: 5px 0;
}

.navbar .slander_logo {
    height: 45px;
    padding-left: 10px;
}

.navbar-nav .nav-link {
    margin-right: 15px;
    color: var(--text_color_4);
    font-family: var(--bg_medium);
    font-size: var(--fs_16);
    white-space: nowrap;
}

.navbar .book_ferry_btn_part .book_ferry_btn {
    background-color: var(--bg_color_3);
    color: var(--text_color_4);
    text-decoration: none;
    font-family: var(--bg_medium);
    font-size: var(--fs_18);
    padding: 13px 20px;
    border-radius: 15px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar .book_ferry_btn_part .book_ferry_btn:hover {
    background-color: #feb63a;
}

/* .hero-section {
    height: 85vh;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8) 93.21%),
        url(../images/main_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: var(--text_color_2);
    padding: 0 15px;
} */

/* .hero-section .hero-section-content {
    margin-bottom: 150px;
    width: 100%;
} */

.hero-section {
    position: relative;
    height: 85vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 0 15px;
    color: var(--text_color_2);
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-section-content {
    position: relative;
    z-index: 2;
    margin-bottom: 150px;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.8) 93.21%);
    z-index: 1;
}

.hero-section .hero-section-content .title_text {
    font-family: var(--bg_regular);
    font-size: var(--fs_50);
    color: var(--text_color_2);
}

.hero-section .hero-section-content .lead_text {
    font-family: var(--inter_regular);
    font-size: var(--fs_20);
    color: var(--text_color_2);
}

@media (max-width: 1440px) {
    .navbar {
        width: 85%;
    }
}

@media (max-width: 1275px) {
    .navbar {
        top: 10px;
        padding: 10px;
        border-radius: 15px;
        width: 90%;
    }
}

@media (max-width: 992px) {
    .navbar {
        top: 10px;
        padding: 10px;
        border-radius: 15px;
        width: 80%;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-link {
        margin: 0 0;
    }

    .book_ferry_btn_part {
        margin: 0;
        text-align: center;
    }

    .hero-section .hero-section-content {
        margin-bottom: 120px;
    }

    .hero-section .hero-section-content .title_text {
        font-size: 28px;
    }

    .hero-section .hero-section-content .lead_text {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .navbar {
        top: 10px;
        border-radius: 15px;
        width: 90%;
    }
}

@media (max-width: 576px) {

    .navbar {
        top: 10px;
        border-radius: 15px;
        width: 95%;
    }

    .navbar .book_ferry_btn_part .book_ferry_btn {
        font-size: 16px;
        padding: 10px 14px;
    }

    .hero-section {
        height: 60vh;
        padding-top: 80px;
        padding-bottom: 40px;
        position: relative;
        overflow: hidden;
    }

    .hero-section .hero-section-content {
        margin-bottom: 40px;
    }

    .hero-section .hero-section-content .title_text {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-section .hero-section-content .lead_text {
        font-size: 14px;
    }
    /* .hero-section .hero-section-content .offer_text_part .offer_text{
        font-size:22px!important;
    }
    .hero-section .hero-section-content .offer_text_part .offer_text img{
        height:55px!important;
    } */
}

.booking_form {
    margin-top: -110px;
    position: relative;
    z-index: 1;
}

.booking_form .form_part {
    background-color: var(--bg_color_2);
    color: var(--text_color_4);
    padding: 20px 40px 55px 40px;
    border-radius: 20px;
    border: 1px solid #C4C4C4;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.07);
    position: relative;
}

.booking_form .form_part .fields_part {
    display: flex;
    justify-content: space-between;
}

.booking_form .form_part .booking-field-duo {
    display: flex;
    align-items: center;
    background-color: var(--bg_color_2);
    border: 1px solid #ccc;
    border-radius: 12px;
    height: 56px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.booking_form .form_part .booking-half {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 45px;
    font-family: var(--inter_regular);
}

.booking_form .form_part .booking-half .input-icon {
    position: absolute;
    left: 15px;
    width: 20px;
    height: 20px;
}

.booking_form .form_part .divider {
    width: 1px;
    height: 45px;
    background: #ccc;
}

.booking_form .form_part .custom-date-wrapper {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    font-family: var(--inter_regular);
    width: 100%;
}

.booking_form .form_part .date-label {
    font-size: 13px;
    color: #333;
    margin-bottom: 2px;
}

.booking_form .form_part .optional {
    font-size: 13px;
    color: #999;
}

.booking_form .form_part .dropdown-icon {
    font-size: 10px;
    margin-left: 4px;
}

.booking_form .form_part .styled-date {
    border: none;
    background: transparent;
    font-size: 14px;
    color: #007BFF;
    font-family: var(--inter_medium);
    cursor: pointer;
    padding: 0;
    height: 20px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.booking_form .form_part .styled-date::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.booking_form .form_part .styled-date::-moz-calendar-picker-indicator {
    display: none;
}

.booking_form .form_part .booking-field-trio {
    display: flex;
    align-items: center;
    background-color: var(--bg_color_2);
    border: 1px solid #ccc;
    border-radius: 12px;
    height: 56px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.booking_form .form_part .booking-third {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 45px;
}

.booking_form .form_part .booking-third .input-icon {
    position: absolute;
    left: 15px;
    width: 20px;
    height: 20px;
}

.booking_form .form_part .booking-third .ferry-input {
    border: none !important;
    outline: none !important;
    background: transparent;
    width: 100%;
    height: 100%;
    padding: 0 15px;
    font-size: 16px;
    font-family: var(--inter_regular);
}

.booking_form .form_part .form-control {
    box-shadow: none;
    border: none;
    outline: none;
}

.booking_form .form_part .form-control:focus {
    box-shadow: none;
    border: none;
    outline: none;
}

.booking_form .form_part .search-btn-wrapper {
    position: absolute;
    bottom: -28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.booking_form .form_part .search-ferries-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 30px;
    background-color: var(--bg_color_3);
    color: var(--text_color_1);
    font-size: var(--fs_22);
    font-weight: 500;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    font-family: var(--bg_regular);
    height: 56px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.booking_form .form_part .search-ferries-btn img {
    width: 25px;
    height: 25px;
}

.booking_form .form_part .search-ferries-btn:hover {
    background-color: #feb63a;
}

@media (max-width: 1200px) {
    .booking_form .form_part {
        padding: 20px 25px 55px 25px;
    }

    .booking_form .form_part .search-btn-wrapper {
        bottom: -25px;
    }
}

@media (max-width: 991.98px) {

    .booking_form .form_part .fields_part {
        flex-direction: column;
        gap: 20px;
    }

}

@media (max-width: 992px) {
    .booking_form {
        margin-top: -80px;
    }

    .booking_form .form_part {
        padding: 20px 20px 55px 20px;
    }

    .booking_form .form_part .booking-field-duo {
        flex-direction: row;
        height: 100%;
    }

    .booking_form .form_part .booking-field-trio {
        flex-direction: column;
        height: 100%;
    }

    .booking_form .form_part .booking-half,
    .booking_form .form_part .booking-third {
        width: 100%;
        padding: 12px 15px 12px 45px;
    }

    .booking_form .form_part .booking-field-trio .divider {
        display: none;
    }

    .booking_form .form_part .search-btn-wrapper {
        bottom: -30px;
    }
}

@media (max-width: 768px) {
    .booking_form {
        margin-top: -60px;
    }

    .booking_form .form_part .booking-field-duo,
    .booking_form .form_part .booking-field-trio {
        flex-direction: column;
        height: 100%;
    }

    .booking_form .form_part .divider {
        display: none;
    }

    .booking_form .form_part {
        padding: 20px 15px 55px 15px;
    }

    .booking_form .form_part .search-ferries-btn {
        width: 100%;
        justify-content: center;
        font-size: 18px;
    }

    .booking_form .form_part .search-ferries-btn img {
        width: 20px;
        height: 20px;
    }

    .why_choose_section {
        margin: 40px 0 0 0 !important;
    }
}

@media (max-width: 576px) {
    .booking_form {
        margin-top: -40px;
    }

    .booking_form .form_part {
        padding: 20px 10px 60px 10px;
    }

    .booking_form .form_part .booking-half,
    .booking_form .form_part .booking-third {
        padding-left: 40px;
    }

    .booking_form .form_part .search-ferries-btn {
        padding: 10px 20px;
        height: 50px;
        font-size: 16px;
        border-radius: 14px;
    }

    .booking_form .form_part .search-btn-wrapper {
        bottom: -25px;
    }

    .booking_form .form_part .search-btn-wrapper span {
        text-wrap-mode: nowrap;
    }

    .why_choose_section .card {
        max-height: 300px !important;
    }
}

.aboutus_section {
    position: relative;
    padding: 0px 0 150px 0;
}

.aboutus_section .container {
    padding-top: 250px;
}

.aboutus_section .left_side_star {
    position: absolute;
    bottom: 25px;
}

.aboutus_section .right_side_star {
    position: absolute;
    right: 0;
    top: 65px;
}

.aboutus_section .left_side_part {
    padding-right: 35px;
}

.aboutus_section .left_side_part .meet_ferry {
    color: var(--text_color_5);
    font-family: var(--bg_regular);
    font-size: var(--fs_20);
    border: 1px solid #C4C4C4;
    width: fit-content;
    padding: 3px 12px;
    border-radius: 100px;
}

.aboutus_section .left_side_part .comfort {
    color: var(--text_color_4);
    font-family: var(--inter_medium);
    font-size: var(--fs_50);
}

.aboutus_section .left_side_part .experience {
    color: var(--text_color_4);
    font-family: var(--inter_medium);
    font-size: var(--fs_24);
    margin: 15px 0 0 0;
}

.aboutus_section .left_side_part p {
    color: var(--text_color_4);
    font-family: var(--inter_medium);
    font-size: var(--fs_24);
    margin: 15px 0 0 0;
}

.aboutus_section .left_side_part .row .modern_part,
.aboutus_section .left_side_part .row .assigned_part,
.aboutus_section .left_side_part .row .panaromic_part,
.aboutus_section .left_side_part .row .jacket_part {
    display: flex;
    align-items: center;
    border: 1px solid #C4C4C4;
    width: fit-content;
    padding: 5px 12px;
    border-radius: 100px;
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    color: var(--text_color_4);
}

.aboutus_section .left_side_part .row .modern_part p,
.aboutus_section .left_side_part .row .assigned_part p,
.aboutus_section .left_side_part .row .panaromic_part p,
.aboutus_section .left_side_part .row .jacket_part p {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    color: var(--text_color_4);
}

.aboutus_section .left_side_part .row .modern_part img,
.aboutus_section .left_side_part .row .assigned_part img,
.aboutus_section .left_side_part .row .panaromic_part img,
.aboutus_section .left_side_part .row .jacket_part img {
    height: 22px;
    width: 22px;
}

.aboutus_section .left_side_part .row .modern_part p,
.aboutus_section .left_side_part .row .assigned_part p,
.aboutus_section .left_side_part .row .panaromic_part p,
.aboutus_section .left_side_part .row .jacket_part p {
    margin: 0 0 0 10px;
}

.aboutus_section .left_side_part .view_schedule_btn_part {
    margin: 35px 0 0 0;
}

.aboutus_section .left_side_part .view_schedule_btn_part .view_schedule_btn button {
    color: var(--text_color_1);
    background-color: var(--bg_color_3);
    font-family: var(--bg_regular);
    font-size: var(--fs_24);
    border: none;
    outline: none;
    padding: 12px 30px;
    border-radius: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.aboutus_section .left_side_part .view_schedule_btn_part .view_schedule_btn button:hover {
    background-color: #feb63a;
}

.aboutus_section .right_side_part .rating_main_part img {
    height: 50px;
    width: 50px;
    margin-right: 10px;
}

.aboutus_section .right_side_part .rating_main_part .rating_part p:nth-of-type(1) {
    font-family: var(--inter_medium);
    margin: 0;
}

.aboutus_section .right_side_part .rating_main_part .rating_part p:nth-of-type(2) {
    font-family: var(--inter_medium);
    color: #939393;
    margin: 0;
}

.aboutus_section .right_side_part .image_wrapper {
    position: relative;
    width: 100%;
}

.aboutus_section .right_side_part .about_boat {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 4px 9px 14px rgba(0, 39, 20, 0.15);
}

.aboutus_section .right_side_part .rating_main_part {
    position: absolute;
    top: 55px;
    left: -100px;
    background: #FFFFFD;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    padding: 8px 25px 8px 8px;
    display: flex;
    align-items: center;
    z-index: 2;
}

.aboutus_section .right_side_part .rating_main_part img {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    margin-right: 10px;
}

.aboutus_section .right_side_part .rating_main_part .rating_part p {
    margin: 0;
    font-size: var(--fs_16);
    font-family: var(--inter_medium);
}

.aboutus_section .right_side_part .rating_main_part .rating_part p:nth-of-type(2) {
    color: #939393;
    font-size: var(--fs_16);
}

.aboutus_section .right_side_part .smooth_ride_tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: #ffffff;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    font-size: var(--fs_14);
    font-family: var(--inter_regular);
    z-index: 2;
    right: -60px;
    bottom: 80px;
}

.aboutus_section .right_side_part .smooth_ride_tag img {
    height: 20px;
    width: 20px;
    margin-right: 8px;
}

.aboutus_section .right_side_part .smooth_ride_tag span {
    font-family: var(--inter_medium);
    font-size: var(--fs_14);
    color: var(--text_color_1);
}

@media (max-width: 1200px) {
    .aboutus_section .container {
        padding-top: 180px;
    }

    .aboutus_section .left_side_part .comfort {
        font-size: 38px;
    }

    .aboutus_section .left_side_part .experience {
        font-size: 20px;
    }

    .aboutus_section .left_side_part .view_schedule_btn_part .view_schedule_btn button {
        font-size: 20px;
        padding: 10px 25px;
    }

    .aboutus_section .right_side_part .rating_main_part {
        left: -60px;
    }

    .aboutus_section .right_side_part .smooth_ride_tag {
        right: -40px;
        bottom: 60px;
    }
}

@media (max-width: 992px) {
    .aboutus_section {
        padding-bottom: 100px;
    }

    .aboutus_section .container {
        padding-top: 120px;
    }

    .aboutus_section .right_side_star,
    .aboutus_section .left_side_star {
        display: none;
    }

    .aboutus_section .left_side_part .comfort {
        font-size: 32px;
    }

    .aboutus_section .left_side_part .experience {
        font-size: 18px;
    }

    .aboutus_section .left_side_part .row .modern_part,
    .aboutus_section .left_side_part .row .assigned_part,
    .aboutus_section .left_side_part .row .panaromic_part,
    .aboutus_section .left_side_part .row .jacket_part {
        font-size: 14px;
        padding: 6px 10px;
    }

    .aboutus_section .right_side_part {
        margin-top: 40px;
    }

    .aboutus_section .right_side_part .rating_main_part {
        position: absolute;
        top: 20px;
        left: 10px;
        transform: scale(0.9);
    }

    .aboutus_section .right_side_part .smooth_ride_tag {
        position: absolute;
        right: 10px;
        bottom: 20px;
        transform: scale(0.9);
    }

    .aboutus_section .left_side_part .view_schedule_btn_part .view_schedule_btn button {
        font-size: 18px;
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .aboutus_section .container {
        padding-top: 80px;
    }

    .aboutus_section .left_side_part {
        padding: 0 20px;
    }

    .aboutus_section .left_side_part .meet_ferry {
        font-size: 14px;
    }

    .aboutus_section .left_side_part .comfort {
        font-size: 24px;
        line-height: 1.3;
    }

    .aboutus_section .left_side_part .experience {
        font-size: 16px;
    }

    .aboutus_section .left_side_part .row .modern_part,
    .aboutus_section .left_side_part .row .assigned_part,
    .aboutus_section .left_side_part .row .panaromic_part,
    .aboutus_section .left_side_part .row .jacket_part {
        font-size: 13px;
    }

    .aboutus_section .left_side_part .view_schedule_btn_part .view_schedule_btn button {
        font-size: 16px;
        padding: 8px 18px;/
    }

    .aboutus_section .right_side_part .smooth_ride_tag {
        font-size: 12px;
    }
}

.our_route_section {
    padding: 0 0 60px 0px;
    background-image: url(../images/our_route_bg.png);
}

.our_route_section .container {
    height: 650px;
    border-radius: 0;
}

.our_route_section .container .left_side_part {
    padding: 75px 0 0 0;
}

.our_route_section .container .left_side_part .left_content_part {
    position: sticky;
    top: 20px;
    align-self: flex-start;
}

.our_route_section .container .left_side_part .heading_text_part {
    padding: 5px 20px 10px 20px;
    width: fit-content;
}

.our_route_section .container .left_side_part .heading_text_part p {
    font-family: var(--bg_medium);
    font-size: var(--fs_50);
    margin: 0;
    line-height: 1.2;
    color: var(--text_color_4);
}

.our_route_section .container .left_side_part .ferry-stepper {
    position: relative;
    margin: 50px 0 0 0;
}

.our_route_section .container .left_side_part .floating-boat {
    position: absolute;
    left: 12px;
    transition: top 3.5s ease;
    z-index: 2;
}

.our_route_section .container .left_side_part .floating-boat img {
    height: 40px;
}

.our_route_section .container .left_side_part .step {
    display: flex;
    align-items: flex-start;
}

.our_route_section .container .left_side_part .step .step-content .route {
    cursor: pointer;
}

.our_route_section .container .left_side_part .step-left {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 40px;
    min-height: 60px;
}

.our_route_section .container .left_side_part .boat-icon img {
    height: 50px;
    margin-top: -14px;
}

.our_route_section .container .left_side_part .dot {
    width: 12px;
    height: 12px;
    background-color: orange;
    border-radius: 50%;
}

.our_route_section .container .left_side_part .line {
    flex-grow: 1;
    width: 2.5px;
    background-color: #ACACAC;
    min-height: 100px;
}

.our_route_section .container .left_side_part .step-content {
    padding-left: 10px;
    margin-top: -10px;
}

.our_route_section .container .left_side_part .route {
    font-size: var(--fs_24);
    font-family: var(--bg_medium);
    margin: 0;
    color: #ACACAC;
}

.our_route_section .container .left_side_part .route.active {
    color: var(--text_color_4);
}

.our_route_section .container .left_side_part .duration {
    color: #1997FF;
    border: 1px solid #C4C4C4;
    font-family: var(--inter_regular);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 20px;
    padding: 5px 14px;
    font-size: var(--fs_16);
    margin-top: 5px;
}

.our_route_section .container .left_side_part .duration img {
    width: 20px;
    height: 20px;
}

.our_route_section .rightside_slider_part {
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0 0 0;
    box-sizing: border-box;
    width: 100%;
}

.map-stage.like-mock {
    position: relative;
    width: 100%;
    max-width: 960px;
    height: 550px;
    background-image: url(../images/sea.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.island {
    position: absolute;
    display: block;
    pointer-events: none;
}

.island--mahe {
    width: 180px;
    left: 10px;
    bottom: 10px;
}

.island--praslin {
    width: 260px;
    left: 340px;
    top: 10px;
}

.island--ladigue {
    width: 100px;
    right: 0;
    top: 110px;
}

.route-svg {
    position: absolute;
    inset: 0;
}

.route-path {
    fill: none;
    stroke: #000;
    stroke-width: 3;
    stroke-dasharray: 10 10;
    stroke-linecap: round;
    opacity: .95;
}

.boat-static {
    position: absolute;
    width: 20px;
    left: 132px;
    top: 360px;
    transform: translate(0%, 0%) rotate(280deg);
}

@media (max-width: 991px) {
    .our_route_section {
        padding: 40px 0;
    }

    .our_route_section .container {
        height: auto;
    }

    .our_route_section .left_side_part {
        padding: 40px 0 0 0;
        text-align: center;
    }

    .our_route_section .left_side_part .heading_text_part p {
        font-size: 36px;
        line-height: 1.1;
    }

    .our_route_section .ferry-stepper {
        margin: 40px auto 0;
        width: fit-content;
    }

    .our_route_section .rightside_slider_part {
        padding: 20px 0 0 0;
    }

    .map-stage.like-mock {
        /* height: 420px; */
        max-width: 100%;
        border-radius: 8px;
        margin: 0 auto;
    }

    .island--mahe {
        width: 140px;
        left: 15px;
        bottom: 10px;
    }

    .island--praslin {
        width: 180px;
        left: 200px;
        top: 30px;
    }

    .island--ladigue {
        width: 80px;
        right: 10px;
        top: 100px;
    }

    .boat-static {
        width: 18px;
    }
}

@media (max-width: 575px) {
    .our_route_section .container {
        padding: 0 15px;
    }

    .our_route_section .left_side_part .heading_text_part p {
        font-size: 28px;
    }

    .our_route_section .ferry-stepper {
        margin-top: 30px;
    }

    .our_route_section .ferry-stepper .step {
        align-items: center;
    }

    .our_route_section .ferry-stepper .step-content {
        text-align: left;
    }

    .map-stage.like-mock {
        height: 350px;
    }

    .island--mahe {
        width: 110px;
        left: 10px;
        bottom: 10px;
    }

    .island--praslin {
        width: 140px;
        left: 150px;
        top: 30px;
    }

    .island--ladigue {
        width: 70px;
        right: 10px;
        top: 100px;
    }

    .boat-static {
        width: 16px;
    }
}

.map-stage.like-mock {
    /* position: relative; */
    /* width: 100%; */
    /* max-width: 960px; */
    /* height: auto; */
    aspect-ratio: 960/550;
    overflow: hidden;
}

.route-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.route-path {
    fill: none;
    stroke: #000;
    stroke-width: 2;
    stroke-dasharray: 10 10;
    stroke-linecap: round;
    opacity: .95;
}

.boat-static {
    position: absolute;
    width: 20px;
    left: 132px;
    top: 360px;
    transform: translate(0, 0) rotate(280deg);
}

@media (max-width:991px) {
    .map-stage.like-mock {
        max-width: 100%;
    }

    .boat-static {
        width: 18px;
    }
}

@media (max-width:575px) {
    .boat-static {
        width: 16px;
    }
}

/* .our_route_section .container .rightside_slider_part {
    display: flex;
    flex-direction: column;
    align-items: end;
    padding: 30px 0;
}

.our_route_section .right_side_part .slider-wrapper {
    position: relative;
    height: 650px;
}

.our_route_section .container .right_side_part .slider {
    position: relative;
    height: 650px;
    overflow-y: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.our_route_section .container .right_side_part .slider .slides {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.our_route_section .container .right_side_part .slider .slides .slide {
    flex: 0 0 auto;
}

.our_route_section .container .right_side_part .slider::-webkit-scrollbar {
    display: none;
}

.our_route_section .container .right_side_part .slider .slides .slide .card {
    background-color: rgba(255, 255, 255, 0.5);
    padding: 40px;
    width: 520px;
    border: none;
    text-align: center;
    position: relative;
}

.our_route_section .container .right_side_part .slider .slides .slide .card .card-content {
    position: relative;
}

.our_route_section .container .right_side_part .slider .slides .slide .card .card-content img {
    height: 250px;
}

.our_route_section .container .right_side_part .slide-map-container {
    position: relative;
    display: flex;
    flex-direction: column;
}

.our_route_section .container .right_side_part .overlay-container {
    position: absolute;
    top: calc(40px + 120px);
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - (40px + 150px * 2));
    pointer-events: none;
    z-index: 1;
}

.our_route_section .container .right_side_part .connector-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 20px;
    z-index: 1;
    pointer-events: none;
}

.our_route_section .container .right_side_part .moving-boat {
    position: absolute;
    top: calc(40px + 120px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    z-index: 5;
    transition: top 2.5s linear;
    pointer-events: none;
}

@media (max-width: 1200px) {
    .our_route_section .slider-wrapper {
        height: auto;
    }

    .our_route_section .slider {
        height: auto;
        max-height: 600px;
        overflow-y: auto;
    }

    .our_route_section .slider .slide .card {
        width: 100% !important;
        padding: 20px;
    }

    .our_route_section .slider .card-content img {
        width: 100%;
        height: auto;
    }

    .our_route_section .overlay-container {
        top: 100px;
        height: 100%;
    }

    .our_route_section .moving-boat {
        top: 100px;
        width: 18px;
    }
}

@media (min-width: 992px) {
    .our_route_section .container .left_side_part .heading_text_part p span {
        display: block;
    }
}

@media (max-width: 991.98px) {


    .our_route_section .container {
        height: auto !important;
        padding: 40px 15px 30px;
    }

    .our_route_section .row {
        flex-direction: column;
    }

    .our_route_section .left_side_part,
    .our_route_section .right_side_part {
        width: 100%;
    }

    .our_route_section .container .left_side_part .heading_text_part p {
        font-size: 32px;
    }

    .our_route_section .container .left_side_part .heading_text_part p span {
        display: inline;
        margin-right: 5px;
    }

    .our_route_section .rightside_slider_part {
        width: 100%;
        margin-top: 20px;
        padding: 0;
        display: flex;
        justify-content: center;
    }

    .our_route_section .slider-wrapper,
    .our_route_section .slider {
        width: 100%;
        max-height: 600px;
        overflow-y: auto;
        position: relative;
    }

    .our_route_section .slider .slides {
        width: 100%;
    }

    .our_route_section .slide .card {
        width: 100%;
        padding: 15px;
    }

    .our_route_section .card-content img {
        width: 100%;
        height: auto;
        object-fit: contain;
    }

    .our_route_section .overlay-container {
        display: block !important;
        position: absolute;
        top: 100px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: calc(100% - 100px);
        z-index: 1;
    }

    .our_route_section .connector-line {
        width: 20px;
        height: 100%;
    }

    .our_route_section .moving-boat {
        display: block;
        top: 100px;
        width: 20px;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: top 2s linear;
    }
}

@media (max-width: 576px) {
    .our_route_section .slider-wrapper {
        padding: 0 10px;
    }

    .our_route_section .slide .card {
        padding: 12px;
    }

    .our_route_section .overlay-container {
        top: 80px;
    }

    .our_route_section .moving-boat {
        top: 80px;
        width: 16px;
    }
}*/


.why_choose_section {
    margin: 140px 0 0 0;
    padding: 150px 0;
    background-image: url(../images/why_choose_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.why_choose_section .heading_part h3 {
    font-family: var(--bg_medium);
    font-size: var(--fs_50);
    color: var(--text_color_4);
    text-align: center;
    margin-bottom: 65px;
}

.why_choose_section .card {
    /* background-color: green; */
    background: linear-gradient(180deg, #F6FFFF 0%, #FFFAE2 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 16px;
    border: none;
    padding: 20px 50px 20px 25px;
    height: 350px;
}

.why_choose_section .card .card-body-part {
    margin-bottom: 20px;
}

.why_choose_section .card .image_wrapper {
    background-color: var(--bg_color_3);
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why_choose_section .card .card-title {
    font-family: var(--bg_regular);
    font-size: var(--fs_32);
    color: var(--text_color_1);
}

.why_choose_section .card .card-text {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    color: var(--text_color_1);
}

.why_choose_section .card p {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    color: var(--text_color_1);
}

@media screen and (max-width: 992px) {
    .why_choose_section .heading_part h3 {
        font-size: 32px;
    }

    .why_choose_section .card .card-title {
        font-size: 24px;
    }

    .why_choose_section .card .card-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 576px) {
    .why_choose_section {
        padding: 150px 0px 50px;
    }
}

.ferry_book_section {
    padding: 50px 0 80px 0;
    background-image: url(../images/book_ferry_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.ferry_book_section .heading_part h3 {
    font-family: var(--bg_medium);
    font-size: var(--fs_50);
    color: var(--text_color_4);
    text-align: center;
    margin-bottom: 65px;
}

.ferry_book_section .left_side_part .booking-steps .step {
    position: relative;
    display: flex;
    margin-bottom: 45px;
    z-index: 1;
}

.ferry_book_section .left_side_part .booking-steps .step-number {
    text-align: center;
    border-radius: 16px;
    background-color: var(--bg_color_2);
    color: var(--text_color_6);
    font-family: var(--bg_regular);
    font-size: var(--fs_40);
    border: 1px solid #C4C4C4;
    min-height: 60px;
    min-width: 65px;
    height: 60px;
    width: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ferry_book_section .left_side_part .booking-steps .step.active .step-number {
    background-color: var(--bg_color_3);
    color: var(--text_color_1);
    font-family: var(--bg_regular);
    font-size: var(--fs_40);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ferry_book_section .left_side_part .booking-steps .step-content {
    padding-left: 30px;
}

.ferry_book_section .left_side_part .booking-steps .step-content h4 {
    margin: 0 0 5px;
    font-size: var(--fs_18);
    font-family: var(--bg_medium);
}

.ferry_book_section .left_side_part .booking-steps .step-content p {
    margin: 0;
    font-size: var(--fs_16);
    color: var(--text_color_6);
    font-family: var(--bg_regular);
}

.ferry_book_section .right_side_part {
    display: flex;
    justify-content: end;
}

.ferry_book_section .right_side_part .image_wrapper {
    position: relative;
}

.ferry_book_section .right_side_part .book_img_1 {
    width: auto;
    height: auto;
    border-radius: 20px;
    object-fit: contain;
    box-shadow: 4px 9px 14px rgba(0, 39, 20, 0.15);
}

.ferry_book_section .right_side_part .book_img_2 {
    position: absolute;
    left: -22%;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    border-radius: 20px;
    border: 5px solid #FFFFFD;
}

.ferry_book_section .left_side_part .booking-steps {
    position: relative;
    padding-left: 40px;
}

.ferry_book_section .left_side_part .booking-steps::before {
    content: "";
    position: absolute;
    top: 0;
    left: 70px;
    width: 2.5px;
    height: 95%;
    background-color: #C4C4C4;
    z-index: 0;
}

@media (max-width: 1200px) {
    .ferry_book_section .heading_part h3 {
        font-size: 38px;
        margin-bottom: 50px;
    }

    .ferry_book_section .left_side_part {
        padding: 0 30px 0 15px;
    }

    .ferry_book_section .left_side_part .booking-steps::before {
        left: 55px;
        height: 85%;
        top: 2%;
    }

    .ferry_book_section .left_side_part .booking-steps {
        padding-left: 30px;
    }

    .ferry_book_section .left_side_part .booking-steps .step-number {
        font-size: 32px;
        min-width: 55px;
        min-height: 55px;
    }

    .ferry_book_section .left_side_part .booking-steps .step-content h4 {
        font-size: 18px;
    }

    .ferry_book_section .left_side_part .booking-steps .step-content p {
        font-size: 14px;
    }

    .ferry_book_section .right_side_part .book_img_1 {
        width: 100%;
        height: auto;
    }

    .ferry_book_section .right_side_part .book_img_2 {
        width: 35%;
        left: -18%;
    }
}

@media (max-width: 992px) {

    .ferry_book_section .left_side_part .booking-steps::before {
        content: "";
        position: absolute;
        top: 0px;
        left: 42px !important;
        width: 2.5px;
        height: 90%;
        background-color: #C4C4C4;
        z-index: 0;
    }

    .ferry_book_section .row {
        flex-direction: column;
    }

    .ferry_book_section .left_side_part,
    .ferry_book_section .right_side_part {
        width: 100%;
    }

    .ferry_book_section .left_side_part {
        padding: 0 15px;
    }

    .ferry_book_section .right_side_part {
        justify-content: center;
        margin-top: 40px;
        padding: 0 15px;
    }

    .ferry_book_section .heading_part h3 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .ferry_book_section .left_side_part .booking-steps::before {
        left: 45px;
    }

    .ferry_book_section .left_side_part .booking-steps {
        padding-left: 20px;
    }

    .ferry_book_section .left_side_part .booking-steps .step.active .step-number {
        font-size: 28px;
        min-width: 42px;
        min-height: 42px;
        height: 45px;
        width: 45px;
    }

    .ferry_book_section .left_side_part .booking-steps .step-content {
        padding-left: 15px;
    }

    .ferry_book_section .left_side_part .booking-steps .step-number {
        font-size: 24px;
        min-width: 42px;
        min-height: 42px;
        width: 45px;
        height: 45px;
    }

    .ferry_book_section .right_side_part .book_img_1 {
        width: 100%;
        height: auto;
    }

    .ferry_book_section .right_side_part .book_img_2 {
        width: 40%;
        left: -18%;
        top: 50%;
        transform: translateY(-50%);
        max-width: 160px;
        border-width: 4px;
    }
}

@media (max-width: 576px) {
    .ferry_book_section {
        padding: 40px 0 60px;
    }

    .ferry_book_section .heading_part h3 {
        font-size: 24px;
        /* line-height: 1.3; */
        /* margin-bottom: 30px; */
    }

    .ferry_book_section .left_side_part .booking-steps {
        padding-left: 15px;
    }

    .ferry_book_section .left_side_part .booking-steps::before {
        top: 5px;
        left: 35px !important;
        height: 80%;
    }

    .ferry_book_section .left_side_part .booking-steps .step {
        /* flex-direction: column; */
        /* align-items: flex-start; */
        gap: 10px;
    }

    .ferry_book_section .left_side_part .booking-steps .step.active .step-number {
        font-size: 28px;
        min-width: 42px;
        min-height: 42px;
        height: 45px;
        width: 45px;
    }

    .ferry_book_section .left_side_part .booking-steps .step-number {
        font-size: 24px;
        min-width: 42px;
        min-height: 42px;
        width: 45px;
        height: 45px;
    }

    .ferry_book_section .left_side_part .booking-steps .step-content h4 {
        font-size: 16px;
    }

    .ferry_book_section .left_side_part .booking-steps .step-content p {
        font-size: 13px;
    }

    .ferry_book_section .right_side_part .image_wrapper {
        flex-direction: column;
        align-items: center;
        position: relative;
    }

    .ferry_book_section .right_side_part .book_img_1 {
        width: 100%;
        height: auto;
    }

    .ferry_book_section .right_side_part .book_img_2 {
        position: absolute;
        left: 0%;
        top: 50%;
        width: 40%;
        max-width: 120px;
        border-width: 3px;
    }

}

.ready_sail_section {
    padding: 70px 0 100px 0;
}

.ready_sail_section .row {
    position: relative;
    text-align: center;
}

.ready_sail_section .row .sail-image {
    width: 100%;
    height: 400px;
    display: block;
    box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.14);
    border-radius: 16px;
    padding: 0;
}

.ready_sail_section .row .sail-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 255px;
}

.ready_sail_section .row .sail-overlay .sail-text {
    font-size: var(--fs_50);
    font-family: var(--bg_regular);
    color: var(--text_color_1);
    margin-bottom: 30px;
    line-height: 1.3;
}

.ready_sail_section .row .sail-overlay .sail-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #242424;
    color: var(--text_color_2);
    font-size: var(--fs_24);
    font-family: var(--bg_regular);
    border-radius: 16px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.ready_sail_section .row .sail-overlay .sail-btn:hover {
    background-color: #181818;
}

@media (max-width: 1200px) {
    .ready_sail_section .row .sail-overlay {
        padding: 0 150px;
    }

    .ready_sail_section .row .sail-overlay .sail-text {
        font-size: 38px;
    }

    .ready_sail_section .row .sail-overlay .sail-btn {
        font-size: 18px;
        padding: 12px 24px;
    }
}

@media (max-width: 992px) {
    .ready_sail_section {
        padding: 50px 0 80px 0;
    }

    .ready_sail_section .row .sail-overlay {
        padding: 0 80px;
    }

    .ready_sail_section .row .sail-overlay .sail-text {
        font-size: 32px;
    }

    .ready_sail_section .row .sail-overlay .sail-btn {
        font-size: 16px;
        padding: 10px 22px;
    }
}

@media (max-width: 768px) {
    .ready_sail_section .row .sail-overlay {
        padding: 0 40px;
    }

    .ready_sail_section .row .sail-overlay .sail-text {
        font-size: 24px;
        margin-bottom: 5px;
    }

    .ready_sail_section .row .sail-overlay .sail-btn {
        font-size: 15px;
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .ready_sail_section {
        padding: 0 0 15px 0;
    }

    .ready_sail_section .row {
        margin: 0;
    }

    .ready_sail_section .row .sail-image {
        height: 20vh;
    }
}

@media (max-width: 480px) {
    .ready_sail_section .row .sail-overlay {
        padding: 0 20px;
    }

    .ready_sail_section .row .sail-overlay .sail-text {
        font-size: 18px;
    }

    .ready_sail_section .row .sail-overlay .sail-btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}

.where_will_section {
    padding: 50px 0 150px 0;
}

.where_will_section .card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: none;
    cursor: pointer;
}

.where_will_section .card .where_img1 {
    width: 100%;
    display: block;
    border-radius: 15px;
}

.where_will_section .card .content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    box-sizing: border-box;
    color: var(--text_color_2);
    display: flex;
    flex-direction: column;
    border-radius: 0 0 15px 15px;
    max-height: 130px;
    overflow: hidden;
    transition: max-height 0.8s ease;
}

.where_will_section .card .content-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 60px;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 1;
    transition: opacity 1s ease;
    pointer-events: none;
}

.where_will_section .card:hover .content-overlay {
    max-height: 250px;
}

.where_will_section .card:hover .content-overlay::after {
    opacity: 0;
}

.where_will_section .card .default-content {
    z-index: 1;
}

.where_will_section .card .default-content h5 {
    font-family: var(--bg_semibold);
    font-size: var(--fs_24);
    color: var(--text_color_2);
}

.where_will_section .card .default-content p {
    font-family: var(--inter_medium);
    font-size: var(--fs_16);
    color: var(--text_color_2);
}

.where_will_section .card .explore_part {
    display: flex;
    align-items: center;
    margin: 15px 0 5px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.where_will_section .card:hover .explore_part {
    opacity: 1;
    transform: translateY(0);
}

.where_will_section .card .explore_part p {
    color: var(--text_color_3);
    font-size: var(--fs_16);
    margin: 0 10px 0 0;
    font-family: var(--bg_regular);
}

@media (max-width: 992px) {
    .where_will_section {
        padding: 50px 0;
    }

    .where_will_section .card-title {
        font-size: 20px;
    }

    .where_will_section .card-text {
        font-size: 13px;
    }

    .where_will_section .explore_part {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .where_will_section {
        padding: 40px 0;
    }

    .where_will_section .card {
        margin-bottom: 20px;
    }

    .where_will_section .card-title {
        font-size: 18px;
    }

    .where_will_section .card-text {
        font-size: 12px;
    }

    .where_will_section .explore_part {
        font-size: 12px;
    }
}

.ready_sail_cta_section {
    padding: 0;
    position: relative;
}

.ready_sail_cta_section .cta_bg_wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.ready_sail_cta_section .cta_bg {
    width: 100%;
    min-height: 30vh;
    height: auto;
    display: block;
}

.ready_sail_cta_section .sail_cta_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
    box-sizing: border-box;
}

.ready_sail_cta_section .sail_cta_text {
    font-size: var(--fs_50);
    font-family: var(--bg_regular);
    color: var(--text_color_2);
    margin-bottom: 15px;
    line-height: 1.3;
}

.ready_sail_cta_section .sail_cta_sub_text {
    font-size: var(--fs_32);
    font-family: var(--bg_regular);
    color: var(--text_color_2);
    margin-bottom: 30px;
}

.ready_sail_cta_section .sail_cta_btn {
    color: var(--text_color_1);
    background-color: var(--bg_color_3);
    font-family: var(--bg_regular);
    font-size: var(--fs_24);
    border: none;
    outline: none;
    padding: 12px 30px;
    border-radius: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.ready_sail_cta_section .sail_cta_btn:hover {
    background-color: #feb63a;
}

@media (max-width: 1200px) {
    .ready_sail_cta_section .sail_cta_text {
        font-size: 38px;
    }

    .ready_sail_cta_section .sail_cta_sub_text {
        font-size: 24px;
    }

    .ready_sail_cta_section .sail_cta_btn {
        font-size: 18px;
        padding: 10px 26px;
    }
}

@media (max-width: 992px) {
    .ready_sail_cta_section .sail_cta_text {
        font-size: 32px;
    }

    .ready_sail_cta_section .sail_cta_sub_text {
        font-size: 20px;
        line-height: 1.4;
    }

    .ready_sail_cta_section .sail_cta_btn {
        font-size: 16px;
        padding: 10px 24px;
    }
}

@media (max-width: 768px) {
    .ready_sail_cta_section .sail_cta_text {
        font-size: 26px;
    }

    .ready_sail_cta_section .sail_cta_sub_text {
        font-size: 18px;
    }

    .ready_sail_cta_section .sail_cta_btn {
        font-size: 15px;
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .ready_sail_cta_section .sail_cta_overlay {
        padding: 30px 15px;
    }

    .ready_sail_cta_section .sail_cta_text {
        font-size: 22px;
    }

    .ready_sail_cta_section .sail_cta_sub_text {
        font-size: 16px;
    }

    .ready_sail_cta_section .sail_cta_btn {
        font-size: 14px;
        padding: 8px 18px;
    }

    .ready_sail_cta_section .cta_bg {
        width: 100%;
        height: 30vh;
    }
}

/* footer {
    background-color: #FBF8F0;
    padding: 60px 0 50px 0;
}

footer .first_part .desc_part {
    font-family: var(--bg_regular);
    font-size: var(--fs_16);
    color: var(--text_color_1);
    margin: 20px 0 10px 0;
}

footer .first_part .more_part {
    display: flex;
    align-items: center;
}

footer .first_part .more_part p {
    margin: 0 10px 0 0;
    font-family: var(--bg_semibold);
    font-size: var(--fs_16);
    color: var(--text_color_1);
}

footer .first_part .social_media_part {
    margin: 10px 0 0 0;
    display: flex;
}

footer .first_part .social_media_part .wrapper {
    border: 1px solid var(--text_color_3);
    border-radius: 100px;
    width: fit-content;
    padding: 10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
}

footer .third_part h4 {
    font-family: var(--bg_semibold);
    font-size: var(--fs_18);
    color: var(--text_color_1);
    margin-bottom: 20px;
}

footer .third_part ul {
    padding-left: 0;
}

footer .third_part ul li {
    list-style-type: none;
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    color: var(--text_color_1);
    margin-bottom: 12px;
}

footer .fourth_part h4 {
    font-family: var(--bg_semibold);
    font-size: var(--fs_18);
    color: var(--text_color_1);
    margin-bottom: 20px;
}

footer .fourth_part .detail {
    display: flex;
    align-items: center;
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    color: var(--text_color_1);
    margin-bottom: 12px;
}

footer .fourth_part .detail p {
    margin: 0 0 0 14px;
}

@media (max-width: 576px) {

    footer {
        padding: 60px 0 0 0;
    }
} */

footer {
    background-image: url(../images/footer_bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 375px;
}

footer .container {
    min-height: 375px;
    display: flex;
    flex-direction: column;
    position: relative;
}

footer .footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 40px;
}

/* footer .footer-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-top: 30px;
} */

footer .footer-nav p {
    font-family: var(--bg_semibold);
    font-size: var(--fs_24);
    color: var(--text_color_2);
    position: relative;
}

footer .footer-nav p:not(:last-child)::after {
    content: "⎸";
    margin-left: 20px;
    color: var(--text_color_2);
    opacity: 0.5;
}

footer .footer-nav p a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

footer .footer-nav p a:hover {
    color: var(--text_color_7);
}

footer .second_row {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 12px;
    margin: 0;
}

footer .second_row .left_part {
    /* width: 450px; */
    width: 100%;
    max-width: 450px;
}

footer .second_row .left_part p {
    font-family: var(--bg_regular);
    font-size: var(--fs_16);
    color: var(--text_color_2);
}

footer .second_row .right_part .social_media {
    display: flex;
    justify-content: end;
}

footer .second_row .right_part .social_media .social {
    display: flex;
    color: var(--text_color_2);
    font-family: var(--bg_semibold);
    margin-bottom: 0;
    margin-left: 20px;
}

footer .second_row .right_part p {
    font-family: var(--bg_regular);
    font-size: var(--fs_16);
    color: var(--text_color_2);
    display: flex;
    justify-content: end;
}

@media screen and (max-width: 992px) {
    footer .second_row .right_part {
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    footer .second_row .right_part .social_media .social {
        margin-left: 0;
        margin-right: 20px;
    }
}

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

    footer .footer-nav {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    footer .footer-nav p:not(:last-child)::after {
        display: none;
    }

    footer .container {
        min-height: auto;
        padding-bottom: 16px;
    }

    footer .second_row {
        position: static;
        margin-top: 16px;
    }

    footer .second_row .right_part .social_media {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 12px;
    }

    footer .second_row .right_part .social_media .social {
        margin: 0;
    }
}

.destination_first_section {
    height: 85vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 0 15px;
    color: var(--text_color_2);
    background-color: var(--bg_color_4);
    border-radius: 0 0 20px 20px;
}

.destination_first_section .container {
    position: relative;
    margin-bottom: 5%;
}

.destination_first_section .hero-bg-img {
    position: relative;
}

.destination_first_section .hero-bg-img img {
    display: block;
    width: 100%;
    height: 525px;
    border-radius: 20px;
    object-fit: cover;
}

.destination_first_section .hero-bg-img::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58.91%, rgba(0, 0, 0, 0.8) 100%);
}

.destination_first_section .destination_first_section_content {
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 100%;
    color: var(--text_color_2);
}

.destination_first_section .destination_first_section_content .title_text {
    font-family: var(--bg_semibold);
    font-size: var(--fs_50);
    color: var(--text_color_2);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 95%;
    margin: 0 0;
    line-height: 1.4;
}

/* .destination_first_section .destination_first_section_content .lead_text {
    font-family: var(--inter_semibold);
    font-size: var(--fs_24);
    color: var(--text_color_2);
} */

.destination_first_section .destination_first_section_content .lead_text {
    font-family: var(--inter_semibold);
    font-size: var(--fs_24);
    color: var(--text_color_2);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    margin: 0 0;
    line-height: 1.4;
}


@media (max-width: 992px) {

    .destination_first_section .destination_first_section_content {
        margin-bottom: 120px;
    }

    .destination_first_section .destination_first_section_content .title_text {
        font-size: 28px;
    }

    .destination_first_section .destination_first_section_content .lead_text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {

    .destination_first_section {
        height: 45vh;
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .destination_first_section .destination_first_section_content {
        margin-bottom: 10px;
    }

    .destination_first_section .destination_first_section_content .title_text {
        font-size: 24px;
        line-height: 1.3;
    }

    .destination_first_section .destination_first_section_content .lead_text {
        font-size: 14px;
    }

}

@media (max-width: 576px) {

    .destination_first_section {
        height: 45vh;
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .destination_first_section .destination_first_section_content {
        margin-bottom: 10px;
    }

    .destination_first_section .destination_first_section_content .title_text {
        font-size: 24px;
        line-height: 1.3;
    }

    .destination_first_section .destination_first_section_content .lead_text {
        font-size: 14px;
    }

}

/* @media (max-width: 576px) {

    .destination_first_section {
        height: 60vh;
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .destination_first_section .destination_first_section_content {
        margin-bottom: 40px;
    }

    .destination_first_section .destination_first_section_content .title_text {
        font-size: 24px;
        line-height: 1.3;
    }

    .destination_first_section .destination_first_section_content .lead_text {
        font-size: 14px;
    }

} */

.destiantion_second_section {
    padding: 100px 0 0 0;
}

.destiantion_second_section .container .row:nth-of-type(2),
.destiantion_second_section .container .row:nth-of-type(3) {
    margin-top: 70px;
}

.destiantion_second_section .container .content_part .num {
    font-size: 150px;
    font-family: var(--bg_regular);
    line-height: 0.8;
}

.destiantion_second_section .container .content_part .title {
    font-size: 34px;
    font-family: var(--bg_medium);
    margin-bottom: 0;
}

.destiantion_second_section .container .content_part .desc {
    font-size: 24px;
    font-family: var(--bg_medium);
    color: var(--text_color_7);
}

.destiantion_second_section .container .content_part .list_part ul {
    padding: 0;
}

.destiantion_second_section .container .content_part .list_part ul li {
    list-style-type: none;
    font-family: var(--inter_medium);
    font-size: 18px;
    color: var(--text_color_8);
    margin-bottom: 5px;
}

.destiantion_second_section .container .content_part .list_part ul li img {
    margin-right: 15px;
}

@media screen and (max-width: 992px) {
    .destiantion_second_section .container .col-lg-7 {
        order: 1;
    }

    .destiantion_second_section .container .col-lg-5 {
        order: 2;
    }

    .destiantion_second_section .container .content_part .num {
        font-size: 120px;
    }

    .destiantion_second_section .container .row:nth-of-type(2),
    .destiantion_second_section .container .row:nth-of-type(3) {
        margin-top: 0;
    }
}

@media screen and (max-width: 768px) {
    .destiantion_second_section .container .content_part .num {
        font-size: 100px;
    }

    .destiantion_second_section .container .content_part .title {
        font-size: 32px;
    }

    .destiantion_second_section .container .content_part .desc {
        font-size: 22px;
    }
}

@media screen and (max-width: 576px) {
    .destiantion_second_section .container .content_part .num {
        font-size: 80px;
    }

    .destiantion_second_section .container .content_part .title {
        font-size: 30px;
    }

    .destiantion_second_section .container .content_part .desc {
        font-size: 20px;
    }
}

.destiantion_third_section {
    margin: 140px 0 0 0;
    padding: 150px 0;
    background-image: url(../images/why_choose_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.destiantion_third_section .heading_part h3 {
    font-family: var(--bg_medium);
    font-size: var(--fs_50);
    color: var(--text_color_4);
    text-align: center;
    margin-bottom: 65px;
}

.destiantion_third_section .card {
    background: linear-gradient(180deg, #F6FFFF 0%, #FFFAE2 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 16px;
    border: none;
    padding: 20px 50px 20px 25px;
    height: 350px;
}

.destiantion_third_section .card .card-body-part {
    margin-bottom: 20px;
}

.destiantion_third_section .card .image_wrapper {
    background-color: var(--bg_color_3);
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.destiantion_third_section .card .card-title {
    font-family: var(--bg_regular);
    font-size: var(--fs_32);
    color: var(--text_color_1);
}

.destiantion_third_section .card .card-text {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    color: var(--text_color_1);
}

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

    .destiantion_third_section {
        margin: 40px 0 0 0 !important;
        padding: 150px 0px 50px 0;
    }

}

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

    .destiantion_third_section .card {
        max-height: 300px !important;
    }
}


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

    .destiantion_third_section .heading_part h3 {
        font-size: 32px;
    }

    .destiantion_third_section .card .card-title {
        font-size: 24px;
    }

    .destiantion_third_section .card .card-text {
        font-size: 16px;
    }

}

.destiantion_fourth_section {
    background-image: url(../images/found_your_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.destiantion_fourth_section .container .content-part {
    display: flex;
    justify-content: center;
}

.destiantion_fourth_section .container .row {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 30px 18px 30px 18px;
    border-radius: 20px;
    width: 100%;
    margin: 80px 0;
}

.destiantion_fourth_section .col-sm-12 .left-text-part {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: start;
    height: 100%;
}

.destiantion_fourth_section .col-sm-12 .left-text-part h2 {
    font-size: 50px;
    font-family: var(--bg_medium);
    color: var(--text_color_1);
    margin-bottom: 0;
}

.destiantion_fourth_section .col-sm-12 .left-text-part p {
    font-size: 24px;
    color: var(--text_color_6);
    font-family: var(--inter_regular);
    padding: 10px 0 0 0;
}

.destiantion_fourth_section .col-sm-12 .left-text-part button {
    background-color: var(--bg_color_3);
    color: var(--text_color_4);
    text-decoration: none;
    font-family: var(--bg_medium);
    font-size: var(--fs_18);
    padding: 13px 20px;
    border-radius: 15px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.destiantion_fourth_section .right-img-part {
    position: relative;
    width: 100%;
    height: 290px;
}

.destiantion_fourth_section .slide-img {
    position: absolute;
    width: 100%;
    height: 290px;
    object-fit: cover;
    opacity: 0;
    border-radius: 20px;
}

.destiantion_fourth_section .slide-img.active {
    opacity: 1;
}

@media screen and (max-width: 768px) {
    .destiantion_fourth_section .col-sm-12 .left-text-part h2 {
        font-size: var(--fs_40);
    }

    .destiantion_fourth_section .col-sm-12 .left-text-part p {
        font-size: var(--fs_20);
    }

    .destiantion_fourth_section .col-sm-12 .left-text-part button {
        margin-top: 0;
    }
}

@media screen and (max-width: 576px) {
    .destiantion_fourth_section .col-sm-12 .left-text-part p {
        font-size: var(--fs_18);
    }

    .destiantion_fourth_section .col-sm-12 .left-text-part p br {
        display: none;
    }
}

.booknow_first_section {
    height: 85vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 0 15px;
    color: var(--text_color_2);
    background-color: var(--bg_color_4);
    border-radius: 0 0 20px 20px;
}

.booknow_first_section .container {
    position: relative;
    margin-bottom: 5%;
}

.booknow_first_section .hero-bg-img {
    position: relative;
}

.booknow_first_section .hero-bg-img img {
    display: block;
    width: 100%;
    height: 525px;
    border-radius: 20px;
    object-fit: cover;
}

.booknow_first_section .hero-bg-img::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58.91%, rgba(0, 0, 0, 0.8) 100%);
}

.booknow_first_section .booknow_first_section_content {
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 100%;
    color: var(--text_color_2);
}

.booknow_first_section .booknow_first_section_content .title_text {
    font-family: var(--bg_semibold);
    font-size: var(--fs_50);
    color: var(--text_color_2);
}

/* .booknow_first_section .booknow_first_section_content .lead_text {
    font-family: var(--inter_semibold);
    font-size: var(--fs_24);
    color: var(--text_color_2);
} */

.booknow_first_section .booknow_first_section_content .lead_text {
    font-family: var(--inter_semibold);
    font-size: var(--fs_24);
    color: var(--text_color_2);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    margin: 0 0;
    line-height: 1.4;
}

@media (max-width: 992px) {

    .booknow_first_section .booknow_first_section_content {
        margin-bottom: 10px;
    }

    .booknow_first_section .booknow_first_section_content .title_text {
        font-size: 28px;
    }

    .booknow_first_section .booknow_first_section_content .lead_text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .booknow_first_section {
        height: 45vh;
        padding-top: 80px;
        padding-bottom: 20px;
    }
}

@media (max-width: 576px) {

    .booknow_first_section {
        height: 45vh;
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .booknow_first_section .booknow_first_section_content {
        margin-bottom: 40px;
    }

    .booknow_first_section .booknow_first_section_content .title_text {
        font-size: 24px;
        line-height: 1.3;
    }

    .booknow_first_section .booknow_first_section_content .lead_text {
        font-size: 14px;
    }

}

.booknow_second_section {
    padding: 100px 0;
}

.booknow_second_section .heading_part h3 {
    font-family: var(--bg_medium);
    font-size: var(--fs_50);
    color: var(--text_color_4);
    text-align: center;
    margin-bottom: 65px;
}

.booknow_second_section .form_part {
    /* background-color: #3dffa5; */
    padding: 30px 30px 30px 30px;
    border-radius: 20px;
    border: 1px solid #C4C4C4;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.07);
    background-color: var(--bg_color_2);
}

.booknow_second_section .row .booking_first_step .title_part {
    display: flex;
    justify-content: space-between;
}

.booknow_second_section .row .booking_first_step .title_part .left_main_parts {
    display: flex;
}

.booknow_second_section .row .booking_first_step .title_part .left_main_parts .book-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
}

.booknow_second_section .row .booking_first_step .title_part .left_main_parts .book-btn {
    margin-bottom: 0;
    background: rgba(255, 0, 0, 0.1);
    font-family: var(--bg_regular);
    font-size: var(--fs_16);
    color: red;
    padding: 8px 14px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booknow_second_section .row .booking_first_step .title_part .left_part {
    display: flex;
    align-items: center;
    color: var(--text_color_5);
    border: 1px solid #C4C4C4;
    width: fit-content;
    padding: 3px 12px;
    border-radius: 100px;
}

.booknow_second_section .row .booking_first_step .title_part .left_part p {
    color: var(--text_color_5);
    font-family: var(--bg_regular);
    font-size: var(--fs_20);
    margin-bottom: 0;
}

.booknow_second_section .row .booking_first_step .step_number_part .step_number {
    margin-bottom: 0;
    background: #EEF7FF;
    font-family: var(--bg_regular);
    font-size: var(--fs_16);
    color: var(--text_color_5);
    padding: 4px 14px;
    border-radius: 100px;
}

.booknow_second_section .form_part .form_part_one {
    font-family: var(--inter_regular);
    margin-top: 30px;
}

.booknow_second_section .form_part .form_part_one .label_title {
    margin-bottom: 7px;
    color: var(--text_color_1);
}

.booknow_second_section .form_part .form_part_one select {
    margin-bottom: 20px;
    border: 1px solid #ccc;
    padding: 12px;
    border-radius: 12px;
}

.booknow_second_section .form_part .form_part_one .form-select:focus {
    border: 1px solid #ccc;
    outline: none;
    box-shadow: none;
}

.booknow_second_section .form_part .form_part_one .input-with-icon {
    position: relative;
    margin-bottom: 20px;
}

.booknow_second_section .form_part .form_part_one .input-with-icon .form-select,
.booknow_second_section .form_part .form_part_one .input-with-icon .form-control {
    padding-left: 48px;
    border-radius: 12px;
}

.booknow_second_section .form_part .form_part_one .input-with-icon .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    pointer-events: none;
    opacity: 0.9;
}

.booknow_second_section .form_part .form_part_one input {
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 12px;
}

.booknow_second_section .form_part .form_part_one .form-control:focus {
    border: 1px solid #ccc;
    outline: none;
    box-shadow: none;
}

.booknow_second_section .form_part .form_part_one .input-group-text {
    margin-bottom: 20px;
    border: 1px solid #ccc;
    background-color: rgb(237, 237, 237);
    padding: 5px 10px;
    border-radius: 12px;
}

.booknow_second_section .form_part .form_part_one .input-with-icon .input-icon {
    pointer-events: none;
}

.booknow_second_section .form_part .form_part_one input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    display: none;
}

.booknow_second_section .form_part .form_part_one input[type="date"]::-webkit-inner-spin-button,
.booknow_second_section .form_part .form_part_one input[type="date"]::-webkit-clear-button {
    display: none;
}

.booknow_second_section .form_part .form_part_one input[type="date"] {
    cursor: pointer;
}

.booknow_second_section .form_part .form_part_one .passenger-input {
    width: 100%;
    max-width: 360px;
    margin-bottom: 20px;
    border-radius: 12px;
}

.booknow_second_section .form_part .form_part_one .passenger-input .input-group-text {
    margin-bottom: 0;
    border-color: #ccc;
    border-radius: 0;
}

.booknow_second_section .form_part .form_part_one .passenger-input .icon-addon {
    background: #fff;
    border-right: 0;
    padding: 8px 12px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    margin-bottom: 20px;
}

.booknow_second_section .form_part .form_part_one .passenger-input .pi-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.booknow_second_section .form_part .form_part_one .passenger-input .form-control {
    padding: 12px 12px;
    border-color: #ccc;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
}

.booknow_second_section .form_part .form_part_one .passenger-input .suffix {
    background: #ededed;
    border-left: 0;
    padding: 8px 12px;
    font-family: var(--inter_medium);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    margin-bottom: 20px;
}

.booknow_second_section .form_part .form_part_one .passenger-input input[type="number"]::-webkit-outer-spin-button,
.booknow_second_section .form_part .form_part_one .passenger-input input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.booknow_second_section .form_part .form_part_one .passenger-input input[type="number"] {
    -moz-appearance: textfield;
}

.booknow_second_section .form_part .search-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0px;
}

.booknow_second_section .form_part .search-ferries-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 10px 25px;
    background-color: var(--bg_color_3);
    color: var(--text_color_1);
    font-size: var(--fs_22);
    font-weight: 500;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    font-family: var(--bg_regular);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.booknow_second_section .form_part .search-ferries-btn img {
    width: 25px;
    height: 25px;
}

.booknow_second_section .form_part .search-ferries-btn:hover {
    background-color: #feb63a;
}

@media screen and (max-width: 1200px) {
    .booknow_second_section .heading_part h3 {
        font-size: 38px;
    }

    .booknow_second_section .form_part .form_part_one .d-flex {
        display: flex;
        flex-direction: column;
    }

    .booknow_second_section .form_part .form_part_one .passenger-input {
        margin-bottom: 10px;
    }

    .booknow_second_section .form_part .form_part_one .passenger-input .icon-addon,
    .booknow_second_section .form_part .form_part_one input,
    .booknow_second_section .form_part .form_part_one .passenger-input .suffix {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 992px) {
    .booknow_second_section .heading_part h3 {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

.booknow_third_section {
    padding: 0 0 60px 0;
}

.booknow_third_section .search_order {
    font-family: var(--bg_regular);
    font-size: var(--fs_18);
    color: var(--text_color_4);
    height: 100%;
}

.booknow_third_section .form-control {
    box-shadow: none;
}

.booknow_third_section .search_btn {
    background-color: var(--bg_color_3);
    color: var(--text_color_4);
    text-decoration: none;
    font-family: var(--bg_medium);
    font-size: var(--fs_18);
    padding: 13px 20px;
    border-radius: 15px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.booknow_third_section .search_btn:hover {
    background-color: #feb63a;
}

.booknow_third_section .heading_part {
    margin-bottom: 30px;
}

.booknow_third_section .heading_part h3 {
    font-family: var(--bg_medium);
    font-size: var(--fs_50);
    color: var(--text_color_4);
    text-align: center;
    margin-bottom: 65px;
}

.booknow_third_section .form_part {
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #C4C4C4;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.07);
    background-color: var(--bg_color_2);
}

.booknow_third_section .form_part .noorders {
    font-family: var(--bg_regular);
    font-size: var(--fs_18);
    color: var(--text_color_4);
}

.booknow_third_section .heading_part .title_part {
    display: flex;
    justify-content: space-between;
}

.booknow_third_section .heading_part .title_part .left_part {
    display: flex;
    align-items: center;
    color: var(--text_color_5);
    border: 1px solid #C4C4C4;
    width: fit-content;
    padding: 3px 12px;
    border-radius: 100px;
}

.booknow_third_section .heading_part .title_part .left_part p {
    color: var(--text_color_5);
    font-family: var(--bg_regular);
    font-size: var(--fs_20);
    margin-bottom: 0;
}

.booknow_third_section .heading_part .step_number_part .step_number {
    margin-bottom: 0;
    background: #EEF7FF;
    font-family: var(--bg_regular);
    font-size: var(--fs_16);
    color: var(--text_color_5);
    padding: 4px 14px;
    border-radius: 100px;
}

.booknow_third_section .form_part .boat_info_part .card {
    border-radius: 20px;
    border: 1px solid #C4C4C4;
    padding: 15px 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    cursor: pointer;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease, background-color .25s ease;
    will-change: transform, box-shadow, border-color;
    margin-bottom: 10px;
}

.booknow_third_section .form_part .boat_info_part .card:nth-last-child(1) {
    margin-bottom: 0;
}

.booknow_third_section .form_part .boat_info_part .card:hover,
.booknow_third_section .form_part .boat_info_part .card:focus-within {
    border-color: var(--bg_color_3);
    box-shadow: 0 6px 18px rgba(16, 25, 32, .10);
    background-color: #fff;
}

.booknow_third_section .form_part .boat_info_part .card.selected {
    border-color: var(--bg_color_3);
    box-shadow: 0 6px 18px rgba(16, 25, 32, .10);
    background-color: #fff;
}

.booknow_third_section .form_part .boat_info_part .card .image_wrapper {
    display: flex;
}

.booknow_third_section .form_part .boat_info_part .card .image_wrapper .checkbox_boat_select {
    margin-right: 15px;
    accent-color: var(--bg_color_3);
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 18px;
    cursor: pointer;
}

.booknow_third_section .form_part .boat_info_part .card .image_wrapper img {
    height: 50px;
    width: 50px;
    border-radius: 100%;
    margin-right: 15px;
}

.booknow_third_section .form_part .boat_info_part .card .boat_info_first,
.booknow_third_section .form_part .boat_info_part .card .time_part,
.booknow_third_section .form_part .boat_info_part .card .price_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booknow_third_section .form_part .boat_info_part .card .boat_info_first h3 {
    font-family: var(--inter_medium);
    margin-bottom: 0;
    font-size: var(--fs_18);
}

.booknow_third_section .form_part .boat_info_part .card .boat_info_first p {
    font-family: var(--inter_regular);
    margin-bottom: 0;
    color: var(--text_color_6);
    font-size: var(--fs_16);
}

.booknow_third_section .form_part .boat_info_part .card .time_part h3 {
    font-family: var(--inter_medium);
    margin-bottom: 0;
    font-size: var(--fs_18);
}

.booknow_third_section .form_part .boat_info_part .card .time_part p {
    font-family: var(--inter_regular);
    margin-bottom: 0;
    color: var(--text_color_6);
}

.booknow_third_section .form_part .boat_info_part .card .price_part h3 {
    font-family: var(--inter_medium);
    margin-bottom: 0;
    font-size: var(--fs_18);
}

.booknow_third_section .form_part .boat_info_part .card .price_part p {
    font-family: var(--inter_regular);
    margin-bottom: 0;
    color: var(--text_color_6);
    font-size: var(--fs_16);
}

.booknow_third_section .form_part .boat_info_part .card .select_button_part {
    display: flex;
    align-items: center;
}

.booknow_third_section .form_part .boat_info_part .card .select_button_part button {
    color: var(--text_color_1);
    background-color: var(--bg_color_3);
    font-family: var(--bg_regular);
    font-size: var(--fs_18);
    border: none;
    outline: none;
    padding: 5px 15px;
    border-radius: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.booknow_third_section .form_part .boat_info_part .card .select_button_part button:hover {
    background-color: #feb63a;
}

.booknow_third_section .form_part .boat_info_part .card .select_button_part button a {
    text-decoration: none;
    color: var(--text_color_1);
}

.booknow_fourth_section {
    padding: 0 0 60px 0;
}

.booknow_fourth_section .form_part {
    padding: 30px 30px 30px 30px;
    border-radius: 20px;
    border: 1px solid #C4C4C4;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.07);
    background-color: var(--bg_color_2);
}

.booknow_fourth_section .row .booking_first_step .title_part {
    display: flex;
    justify-content: space-between;
}

.booknow_fourth_section .row .booking_first_step .title_part .left_part {
    display: flex;
    align-items: center;
    color: var(--text_color_5);
    border: 1px solid #C4C4C4;
    width: fit-content;
    padding: 3px 12px;
    border-radius: 100px;
}

.booknow_fourth_section .row .booking_first_step .title_part .left_part p {
    color: var(--text_color_5);
    font-family: var(--bg_regular);
    font-size: var(--fs_20);
    margin-bottom: 0;
}

.booknow_fourth_section .row .booking_first_step .step_number_part .step_number {
    margin-bottom: 0;
    background: #EEF7FF;
    font-family: var(--bg_regular);
    font-size: var(--fs_16);
    color: var(--text_color_5);
    padding: 4px 14px;
    border-radius: 100px;
}

.booknow_fourth_section .form_part .first_field_part {
    font-family: var(--inter_regular);
    margin-top: 30px;
    border: 1px solid #C4C4C4;
    padding: 18px 18px 0 18px;
    border-radius: 20px;
}

.booknow_fourth_section .form_part .first_field_part .label_title {
    margin-bottom: 7px;
    color: var(--text_color_1);
}

.booknow_fourth_section .form_part .first_field_part select {
    margin-bottom: 20px;
    border: 1px solid #ccc;
    padding: 12px;
    border-radius: 12px;
}

.booknow_fourth_section .form_part .first_field_part .form-select:focus {
    border: 1px solid #ccc;
    outline: none;
    box-shadow: none;
}

.booknow_fourth_section .form_part .first_field_part .input-with-icon {
    position: relative;
    margin-bottom: 20px;
}

.booknow_fourth_section .form_part .first_field_part .input-with-icon .form-select,
.booknow_fourth_section .form_part .first_field_part .input-with-icon .form-control {
    padding-left: 48px;
    border-radius: 12px;
}

.booknow_fourth_section .form_part .first_field_part .input-with-icon .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    pointer-events: none;
    opacity: 0.9;
}

.booknow_fourth_section .form_part .first_field_part input {
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 12px;
}

.booknow_fourth_section .form_part .first_field_part .form-control:focus {
    border: 1px solid #ccc;
    outline: none;
    box-shadow: none;
}

.booknow_fourth_section .form_part .first_field_part .input-group-text {
    margin-bottom: 20px;
    border: 1px solid #ccc;
    background-color: rgb(237, 237, 237);
    padding: 5px 10px;
    border-radius: 12px;
}

.booknow_fourth_section .form_part .first_field_part .input-with-icon .input-icon {
    pointer-events: none;
}

.booknow_fourth_section .form_part .first_field_part .country_dd {
    display: flex;
    align-items: center;
}

.booknow_fourth_section .form_part .form_part_one {
    font-family: var(--inter_regular);
    margin-top: 30px;
    border: 1px solid #C4C4C4;
    padding: 18px 18px 0 18px;
    border-radius: 20px;
}

.booknow_fourth_section .form_part .form_part_one .label_title {
    margin-bottom: 7px;
    color: var(--text_color_1);
}

.booknow_fourth_section .form_part .form_part_one select {
    margin-bottom: 20px;
    border: 1px solid #ccc;
    padding: 12px;
    border-radius: 12px;
}

.booknow_fourth_section .form_part .form_part_one .form-select:focus {
    border: 1px solid #ccc;
    outline: none;
    box-shadow: none;
}

.booknow_fourth_section .form_part .form_part_one .input-with-icon {
    position: relative;
    margin-bottom: 20px;
}

.booknow_fourth_section .form_part .form_part_one .input-with-icon .form-select,
.booknow_fourth_section .form_part .form_part_one .input-with-icon .form-control {
    padding-left: 48px;
    border-radius: 12px;
}

.booknow_fourth_section .form_part .form_part_one .input-with-icon .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    pointer-events: none;
    opacity: 0.9;
}

.booknow_fourth_section .form_part .form_part_one input {
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 12px;
}

.booknow_fourth_section .form_part .form_part_one .form-control:focus {
    border: 1px solid #ccc;
    outline: none;
    box-shadow: none;
}

.booknow_fourth_section .form_part .form_part_one .input-group-text {
    margin-bottom: 20px;
    border: 1px solid #ccc;
    background-color: rgb(237, 237, 237);
    padding: 5px 10px;
    border-radius: 12px;
}

.booknow_fourth_section .form_part .form_part_one .input-with-icon .input-icon {
    pointer-events: none;
}

.booknow_fourth_section .form_part .form_part_one input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    display: none;
}

.booknow_fourth_section .form_part .form_part_one input[type="date"]::-webkit-inner-spin-button,
.booknow_fourth_section .form_part .form_part_one input[type="date"]::-webkit-clear-button {
    display: none;
}

.booknow_fourth_section .form_part .form_part_one input[type="date"] {
    cursor: pointer;
}

.booknow_fourth_section .form_part .form_part_one .passenger-input {
    width: 100%;
    max-width: 360px;
    margin-bottom: 20px;
    border-radius: 12px;
}

.booknow_fourth_section .form_part .form_part_one .passenger-input .input-group-text {
    margin-bottom: 0;
    border-color: #ccc;
    border-radius: 0;
}

.booknow_fourth_section .form_part .form_part_one .passenger-input .icon-addon {
    background: #fff;
    border-right: 0;
    padding: 8px 12px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    margin-bottom: 20px;
}

.booknow_fourth_section .form_part .form_part_one .passenger-input .pi-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.booknow_fourth_section .form_part .form_part_one .passenger-input .form-control {
    padding: 12px 12px;
    border-color: #ccc;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
}

.booknow_fourth_section .form_part .form_part_one .passenger-input .suffix {
    background: #ededed;
    border-left: 0;
    padding: 8px 12px;
    font-family: var(--inter_medium);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    margin-bottom: 20px;
}

.booknow_fourth_section .form_part .form_part_one .passenger-input input[type="number"]::-webkit-outer-spin-button,
.booknow_fourth_section .form_part .form_part_one .passenger-input input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.booknow_fourth_section .form_part .form_part_one .passenger-input input[type="number"] {
    -moz-appearance: textfield;
}

.booknow_fourth_section .form_part .button_part {
    margin-top: 20px;
}

.booknow_fourth_section .form_part .search-btn-wrapper {
    display: flex;
    justify-content: end;
    align-items: center;
    margin-top: 0px;
}

.booknow_fourth_section .form_part .search-ferries-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 10px 25px;
    background-color: var(--bg_color_3);
    color: var(--text_color_1);
    font-size: var(--fs_22);
    font-weight: 500;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    font-family: var(--bg_regular);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.booknow_fourth_section .form_part .search-ferries-btn img {
    width: 25px;
    height: 25px;
}

.booknow_fourth_section .form_part .search-ferries-btn:hover {
    background-color: #feb63a;
}

.booknow_fourth_section .form_part .add-passanger-btn-wrapper {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 0px;
}

.booknow_fourth_section .form_part .add-passanger-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    /* background-color: var(--bg_color_3); */
    background-color: var(--bg_color_2);
    color: var(--text_color_1);
    font-size: var(--fs_18);
    font-weight: 500;
    border: 2px dashed #feb63a;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
    font-family: var(--bg_regular);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.booknow_fourth_section .form_part .add-passanger-btn img {
    width: 18px;
    height: 18px;
}

.booknow_fourth_section .form_part .add-passanger-btn:hover {
    background-color: #feb63a;
}

.booknow_fifth_section {
    padding: 0 0 60px 0;
}

.booknow_fifth_section .form_part {
    padding: 30px 30px 30px 30px;
    border-radius: 20px;
    border: 1px solid #C4C4C4;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.07);
    background-color: var(--bg_color_2);
}

.booknow_fifth_section .row .booking_first_step .title_part {
    display: flex;
    justify-content: space-between;
}

.booknow_fifth_section .row .booking_first_step .title_part .left_part {
    display: flex;
    align-items: center;
    color: var(--text_color_5);
    border: 1px solid #C4C4C4;
    width: fit-content;
    padding: 3px 12px;
    border-radius: 100px;
}

.booknow_fifth_section .row .booking_first_step .title_part .left_part p {
    color: var(--text_color_5);
    font-family: var(--bg_regular);
    font-size: var(--fs_20);
    margin-bottom: 0;
}

.booknow_fifth_section .row .booking_first_step .step_number_part .step_number {
    margin-bottom: 0;
    background: #EEF7FF;
    font-family: var(--bg_regular);
    font-size: var(--fs_16);
    color: var(--text_color_5);
    padding: 4px 14px;
    border-radius: 100px;
}

.booknow_fifth_section .form_part .form_part_one {
    font-family: var(--inter_regular);
    margin-top: 30px;
}

.booknow_fifth_section .form_part .form_part_one .label_title {
    margin-bottom: 7px;
    color: var(--text_color_1);
}

.booknow_fifth_section .form_part .form_part_one select {
    margin-bottom: 20px;
    border: 1px solid #ccc;
    padding: 12px;
    border-radius: 12px;
}

.booknow_fifth_section .form_part .form_part_one .form-select:focus {
    border: 1px solid #ccc;
    outline: none;
    box-shadow: none;
}

.booknow_fifth_section .form_part .form_part_one .input-with-icon {
    position: relative;
    margin-bottom: 20px;
}

.booknow_fifth_section .form_part .form_part_one .input-with-icon .form-select,
.booknow_fifth_section .form_part .form_part_one .input-with-icon .form-control {
    padding-left: 48px;
    border-radius: 12px;
}

.booknow_fifth_section .form_part .form_part_one .input-with-icon .input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    pointer-events: none;
    opacity: 0.9;
}

.booknow_fifth_section .form_part .form_part_one input {
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 12px;
}

.booknow_fifth_section .form_part .form_part_one .form-control:focus {
    border: 1px solid #ccc;
    outline: none;
    box-shadow: none;
}

.booknow_fifth_section .form_part .form_part_one .input-group-text {
    margin-bottom: 20px;
    border: 1px solid #ccc;
    background-color: rgb(237, 237, 237);
    padding: 5px 10px;
    border-radius: 12px;
}

.booknow_fifth_section .form_part .form_part_one .input-with-icon .input-icon {
    pointer-events: none;
}

.booknow_fifth_section .form_part .form_part_one input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    display: none;
}

.booknow_fifth_section .form_part .form_part_one input[type="date"]::-webkit-inner-spin-button,
.booknow_fifth_section .form_part .form_part_one input[type="date"]::-webkit-clear-button {
    display: none;
}

.booknow_fifth_section .form_part .form_part_one input[type="date"] {
    cursor: pointer;
}

.booknow_fifth_section .form_part .form_part_one .passenger-input {
    width: 100%;
    max-width: 360px;
    margin-bottom: 20px;
    border-radius: 12px;
}

.booknow_fifth_section .form_part .form_part_one .passenger-input .input-group-text {
    margin-bottom: 0;
    border-color: #ccc;
    border-radius: 0;
}

.booknow_fifth_section .form_part .form_part_one .passenger-input .icon-addon {
    background: #fff;
    border-right: 0;
    padding: 8px 12px;
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    margin-bottom: 20px;
}

.booknow_fifth_section .form_part .form_part_one .passenger-input .pi-icon {
    width: 20px;
    height: 20px;
    display: block;
}

.booknow_fifth_section .form_part .form_part_one .passenger-input .form-control {
    padding: 12px 12px;
    border-color: #ccc;
    border-left: 0;
    border-right: 0;
    border-radius: 0;
    box-shadow: none;
}

.booknow_fifth_section .form_part .form_part_one .passenger-input .suffix {
    background: #ededed;
    border-left: 0;
    padding: 8px 12px;
    font-family: var(--inter_medium);
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    margin-bottom: 20px;
}

.booknow_fifth_section .form_part .form_part_one .passenger-input input[type="number"]::-webkit-outer-spin-button,
.booknow_fifth_section .form_part .form_part_one .passenger-input input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.booknow_fifth_section .form_part .form_part_one .passenger-input input[type="number"] {
    -moz-appearance: textfield;
}

.booknow_fifth_section .form_part .button_part {
    margin-top: 20px;
}

.booknow_fifth_section .form_part .paynow-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.booknow_fifth_section .form_part .paynow-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 10px 25px;
    background-color: var(--bg_color_3);
    color: var(--text_color_1);
    font-size: var(--fs_22);
    font-weight: 500;
    border: none;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    font-family: var(--bg_regular);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.booknow_fifth_section .form_part .paynow-btn img {
    width: 25px;
    height: 25px;
}

.booknow_fifth_section .form_part .paynow-btn:hover {
    background-color: #feb63a;
}

.booknow_sixth_section {
    padding: 0 0 100px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.booknow_sixth_section .ticket_confirm_part {
    /* padding: 30px 30px 30px 30px; */
    border-radius: 20px;
    border: 1px solid #C4C4C4;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.07);
    background-color: var(--bg_color_2);
    width: 80%;
    margin: 0 auto;
}

.booknow_sixth_section .ticket_confirm_part .booking_confirmed_part {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    border-bottom: 2px dashed var(--text_color_7);
    padding: 30px 30px 20px 30px;
}

.booknow_sixth_section .ticket_confirm_part .booking_confirmed_part img {
    height: 35px;
    width: 35px;
}

.booknow_sixth_section .ticket_confirm_part .booking_confirmed_part h3 {
    font-family: var(--bg_semibold);
    font-size: 38px;
    margin-bottom: 0;
    margin-left: 10px;
}

.booknow_sixth_section .ticket_confirm_part .ticket_detail_part {
    padding: 30px 30px 20px 30px;
}

.booknow_sixth_section .ticket_confirm_part .ticket_detail_part .first p {
    margin-bottom: 8px;
    font-family: var(--inter_regular);
}

.booknow_sixth_section .ticket_confirm_part .ticket_detail_part .second p {
    margin-bottom: 8px;
    font-family: var(--inter_semibold);
    font-size: var(--fs_18);
    text-align: start;
}

.is-hidden {
    display: none !important;
}

.faq_first_section {
    padding: 100px 0;
}

.faq_first_section .row .title_part h3 {
    font-family: var(--bg_semibold);
    font-size: var(--fs_50);
    color: var(--text_color_4);
    margin-bottom: 60px;
}

.faq_first_section .accordion-item {
    background-color: #fff;
    color: #111;
    margin: 1rem 0;
    border-radius: 0.5rem;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
}

.faq_first_section .lastac .accordion-item {
    margin: 0;
}

.faq_first_section .accordion-item-header {
    padding: 10px 20px;
    min-height: 70px;
    line-height: 1;
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
    font-family: var(--inter_medium);
    font-size: var(--fs_18);
}

.faq_first_section .accordion-item-header::after {
    content: "\002B";
    font-size: 35px;
    position: absolute;
    right: 20px;
    top: 15px;
}

.faq_first_section .accordion-item-header.active::after {
    content: "\2212";
}

.faq_first_section .accordion-item-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    height: 100%;
}

.faq_first_section .accordion-item-body-content {
    padding: 1rem;
    line-height: 1.5rem;
    border-top: 1px solid;
    border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
    font-family: var(--inter_regular);
    font-size: var(--fs_18);
}

@media screen and (max-width: 1200px) {
    .faq_first_section .row .title_part h3 {
        font-size: 38px;
    }
}

@media screen and (max-width: 992px) {
    .faq_first_section .row .title_part h3 {
        font-size: 32px;
        margin-bottom: 30px;
    }
}

.contactus_first_section {
    /* height: 85vh; */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 160px 0 80px 0;
    color: var(--text_color_2);
    background-color: var(--bg_color_4);
    border-radius: 0;
}

.contactus_first_section .container {
    position: relative;
    margin-bottom: 0;
}

.contactus_first_section .contactus_first_section_content {
    bottom: 20px;
    text-align: center;
    width: 100%;
    color: var(--text_color_2);
}

.contactus_first_section .contactus_first_section_content .title_text {
    font-family: var(--bg_semibold);
    font-size: var(--fs_50);
    color: var(--text_color_2);
}

@media (max-width: 992px) {

    .contactus_first_section .contactus_first_section_content {
        margin-bottom: 120px;
    }

    .contactus_first_section .contactus_first_section_content .title_text {
        font-size: 28px;
    }

}

@media (max-width: 768px) {
    .contactus_first_section {
        height: 45vh;
        padding-top: 80px;
        padding-bottom: 20px;
    }
}

@media (max-width: 576px) {

    /* .contactus_first_section {
        height: 60vh;
        padding-top: 80px;
        padding-bottom: 40px;
    } */

    .contactus_first_section .contactus_first_section_content {
        margin-bottom: 40px;
    }

    .contactus_first_section .contactus_first_section_content .title_text {
        font-size: 24px;
        line-height: 1.3;
    }

}

.contactus_second_section {
    padding: 100px 0;
}

.contactus_second_section .left_side_part {
    background-color: #FFC460;
    padding: 60px 30px 60px 30px;
    border-radius: 20px;
}

.contactus_second_section .left_side_part .title_part {
    display: flex;
    align-items: center;
    color: var(--text_color_6);
    border: 1px solid #083d60;
    width: fit-content;
    padding: 3px 12px;
    border-radius: 100px;
}

.contactus_second_section .left_side_part .title_part p {
    color: #083d60;
    font-family: var(--bg_regular);
    font-size: var(--fs_20);
    margin-bottom: 0;
}

.contactus_second_section .left_side_part .desc_part .first {
    margin-bottom: 0;
    font-family: var(--inter_regular);
    font-size: var(--fs_32);
    margin: 20px 0 15px 0;
}

.contactus_second_section .left_side_part .desc_part .second {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    margin: 0 0 15px 0;
    color: var(--text_color_8);
}

.contactus_second_section .left_side_part .desc_part .third {
    margin-bottom: 0;
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    text-align: start;
    color: #083d60;
    border-top: 1px solid var(--text_color_6);
    padding: 14px 0 0 0;
}

.contactus_second_section .right_side_part .title_part p {
    font-family: var(--inter_bold);
    font-size: var(--fs_22);
    margin: 0 0 25px 0;
}

.contactus_second_section .right_side_part .form_part .label_title {
    font-family: var(--inter_regular);
    font-size: var(--fs_16);
    color: var(--text_color_1);
    margin-bottom: 7px;
}

.contactus_second_section .right_side_part .form_part .form-control {
    padding: 11px 12px;
    border: 1px solid #ccc;
    box-shadow: none;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: var(--fs_14);
    font-family: var(--inter_regular);
}

.contactus_second_section .right_side_part .form_part .form-control:focus {
    border: 1px solid #ccc;
    outline: none;
    box-shadow: none;
}

.contactus_second_section .right_side_part .form_part .submit_button_part a {
    text-decoration: none;
}

.contactus_second_section .right_side_part .form_part .submit_button_part button {
    color: var(--text_color_1);
    background-color: var(--bg_color_3);
    font-family: var(--bg_regular);
    font-size: var(--fs_24);
    border: none;
    outline: none;
    padding: 10px 25px;
    border-radius: 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 25px;
}

.contactus_second_section .right_side_part .form_part .submit_button_part button:hover {
    background-color: #feb63a;
}

.contactus_second_section .right_side_part .form_part .form-select {
    padding: 11px 12px;
    border: 1px solid #ccc;
    box-shadow: none;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: var(--fs_14);
    font-family: var(--inter_regular);
}

.contactus_second_section .right_side_part .form_part .form-select:focus {
    border: 1px solid #ccc;
    outline: none;
    box-shadow: none;
}

.contactus_second_section .right_side_part .form_part .country_dd {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 576px) {
    .contactus_second_section .right_side_part .form_part .submit_button_part button {
        font-size: var(--fs_20);
        margin-top: 10px;
    }
}


.contactus_third_section {
    padding: 0 0 100px 0;
}

.contactus_third_section .card {
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

.contactus_third_section .card .img_wrapper,
.contactus_third_section .card .card_desc {
    position: relative;
    z-index: 2;
}

.contactus_third_section .card .img_wrapper svg {
    height: 40px;
    width: 40px;
    fill: var(--bg_color_1);
    transition: fill .3s ease;
}

.contactus_third_section .card .card_desc h3 {
    font-family: var(--inter_regular);
    color: var(--text_color_1);
    font-size: var(--fs_22);
    margin: 30px 0 15px 0;
    transition: color .3s ease;
}

.contactus_third_section .card .card_desc p {
    font-family: var(--inter_regular);
    color: var(--text_color_8);
    font-size: var(--fs_18);
    margin-bottom: 0;
    transition: color .3s ease;
}

.contactus_third_section .card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: bottom;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity .35s ease, transform .6s ease;
    z-index: 0;
}

.contactus_third_section .card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

.contactus_third_section .card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65);
    opacity: 0;
    transition: opacity .35s ease;
    z-index: 1;
}

.contactus_third_section .card:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

.contactus_third_section .card:hover::after {
    opacity: 1;
}

.contactus_third_section .card:hover .card_desc h3,
.contactus_third_section .card:hover .card_desc p {
    color: #fff;
}

.contactus_third_section .card:hover .img_wrapper svg {
    fill: #fff;
}

.card-mail::before {
    background-image: url("../images/boat_card_1.jpg");
    background-position: center !important;
}

.card-location::before {
    background-image: url("../images/boat_card_2.jpg");
}

.card-call::before {
    background-image: url("../images/boat_card_4.jpg");
    background-position: center !important;
}

.payment_success_message_section {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 15px;
    color: var(--text_color_2);
    border-radius: 0 0 20px 20px;
}

/* ----------------------------------------------------- */

.booknow_seventh_section {
    padding: 0 0 60px 0;
}

.booknow_seventh_section .heading_part h3 {
    font-family: var(--bg_medium);
    font-size: var(--fs_50);
    color: var(--text_color_4);
    text-align: center;
    margin-bottom: 65px;
}

.booknow_seventh_section .form_part {
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #C4C4C4;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.07);
    background-color: var(--bg_color_2);
}

.booknow_seventh_section .heading_part .title_part {
    display: flex;
    justify-content: space-between;
}

.booknow_seventh_section .heading_part .title_part .left_part {
    display: flex;
    align-items: center;
    color: var(--text_color_5);
    /* border: 1px solid #C4C4C4; */
    width: fit-content;
    padding: 3px 12px;
    border-radius: 100px;
}

.booknow_seventh_section .heading_part .title_part .left_part p {
    color: var(--text_color_5);
    font-family: var(--bg_regular);
    font-size: var(--fs_20);
    margin-bottom: 0;
}

.booknow_seventh_section .heading_part .step_number_part .step_number {
    margin-bottom: 0;
    background: #EEF7FF;
    font-family: var(--bg_regular);
    font-size: var(--fs_16);
    color: var(--text_color_5);
    padding: 4px 14px;
    border-radius: 100px;
}

.booknow_seventh_section .form_part .boat_info_part .card {
    border-radius: 20px;
    border: 1px solid #C4C4C4;
    padding: 15px 15px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    cursor: pointer;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease, background-color .25s ease;
    will-change: transform, box-shadow, border-color;
    margin-bottom: 10px;
}

.booknow_seventh_section .form_part .boat_info_part .card:nth-last-child(1) {
    margin-bottom: 0;
}

.booknow_seventh_section .form_part .boat_info_part .card:hover,
.booknow_seventh_section .form_part .boat_info_part .card:focus-within {
    border-color: var(--bg_color_3);
    box-shadow: 0 6px 18px rgba(16, 25, 32, .10);
    background-color: #fff;
}

.booknow_seventh_section .form_part .boat_info_part .card.selected {
    border-color: var(--bg_color_3);
    box-shadow: 0 6px 18px rgba(16, 25, 32, .10);
    background-color: #fff;
}

.booknow_seventh_section .form_part .boat_info_part .card .image_wrapper {
    display: flex;
}

.booknow_seventh_section .form_part .boat_info_part .card .image_wrapper .checkbox_boat_select {
    margin-right: 15px;
    accent-color: var(--bg_color_3);
    height: 20px;
    width: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 18px;
    cursor: pointer;
}

.booknow_seventh_section .form_part .boat_info_part .card .image_wrapper img {
    height: 50px;
    width: 50px;
    border-radius: 100%;
    margin-right: 15px;
}

.booknow_seventh_section .form_part .boat_info_part .card .boat_info_first,
.booknow_seventh_section .form_part .boat_info_part .card .time_part,
.booknow_seventh_section .form_part .boat_info_part .card .price_part {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booknow_seventh_section .form_part .boat_info_part .card .boat_info_first h3 {
    font-family: var(--inter_medium);
    margin-bottom: 0;
    font-size: var(--fs_18);
}

.booknow_seventh_section .form_part .boat_info_part .card .boat_info_first p {
    font-family: var(--inter_regular);
    margin-bottom: 0;
    color: var(--text_color_6);
    font-size: var(--fs_16);
}

.booknow_seventh_section .form_part .boat_info_part .card .time_part h3 {
    font-family: var(--inter_medium);
    margin-bottom: 0;
    font-size: var(--fs_18);
}

.booknow_seventh_section .form_part .boat_info_part .card .time_part p {
    font-family: var(--inter_regular);
    margin-bottom: 0;
    color: var(--text_color_6);
}

.booknow_seventh_section .form_part .boat_info_part .card .price_part h3 {
    font-family: var(--inter_medium);
    margin-bottom: 0;
    font-size: var(--fs_18);
}

.booknow_seventh_section .form_part .boat_info_part .card .price_part p {
    font-family: var(--inter_regular);
    margin-bottom: 0;
    color: var(--text_color_6);
    font-size: var(--fs_16);
}

.booknow_seventh_section .form_part .boat_info_part .card .select_button_part {
    display: flex;
    align-items: center;
}

.booknow_seventh_section .form_part .boat_info_part .card .select_button_part button {
    color: var(--text_color_1);
    background-color: var(--bg_color_3);
    font-family: var(--bg_regular);
    font-size: var(--fs_18);
    border: none;
    outline: none;
    padding: 5px 15px;
    border-radius: 10px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.booknow_seventh_section .form_part .boat_info_part .card .select_button_part button:hover {
    background-color: #feb63a;
}

.booknow_seventh_section .form_part .boat_info_part .card .select_button_part button a {
    text-decoration: none;
    color: var(--text_color_1);
}

.exploration_first_section {
    height: 85vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 0 15px;
    color: var(--text_color_2);
    background-color: var(--bg_color_4);
    border-radius: 0 0 20px 20px;
}

.exploration_first_section .container {
    position: relative;
    margin-bottom: 5%;
}

.exploration_first_section .hero-bg-img {
    position: relative;
}

.exploration_first_section .hero-bg-img img {
    display: block;
    width: 100%;
    height: 525px;
    border-radius: 20px;
}

.exploration_first_section .hero-bg-img::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 58.91%, rgba(0, 0, 0, 0.8) 100%);
}

.exploration_first_section .exploration_first_section_content {
    position: absolute;
    bottom: 20px;
    text-align: center;
    width: 100%;
    color: var(--text_color_2);
}

.exploration_first_section .exploration_first_section_content .title_text {
    font-family: var(--bg_semibold);
    font-size: var(--fs_50);
    color: var(--text_color_2);
}

.exploration_first_section .exploration_first_section_content .lead_text {
    font-family: var(--inter_semibold);
    font-size: var(--fs_24);
    color: var(--text_color_2);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    margin: 0 0;
    line-height: 1.4;
}

.exploration_second_section {
    padding: 100px 0;
}

.exploration_second_section .left_side_part {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 50px;
    align-self: end;
    height: fit-content;
}

.exploration_second_section .left_side_part h3 {
    font-family: var(--bg_regular);
    font-size: var(--fs_24);
    color: var(--text_color_1);
    margin-bottom: 15px;
}

.exploration_second_section .left_side_part .main {
    padding-left: 0;
}

.exploration_second_section .left_side_part .main .main_list {
    font-family: var(--bg_regular);
    font-size: var(--fs_16);
    color: var(--text_color_6);
    list-style-type: none;
    padding-bottom: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.exploration_second_section .left_side_part .sub {
    padding-left: 15px;
}

.exploration_second_section .left_side_part .sub .sub_list:nth-of-type(1) {
    padding-top: 10px;
}

.exploration_second_section .left_side_part .sub .sub_list {
    font-family: var(--bg_regular);
    font-size: var(--fs_16);
    color: var(--text_color_6);
    list-style-type: none;
    padding-bottom: 10px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.exploration_second_section .left_side_part .main_list.active,
.exploration_second_section .left_side_part .sub_list.active {
    color: #000000;
}

.exploration_second_section .right_side_part .first_main_part .title_part h4 {
    font-size: var(--fs_32);
    font-family: var(--bg_regular);
    color: var(--text_color_5);
    margin-bottom: 15px;
}

.exploration_second_section .right_side_part .first_main_part .title_part .first_image {
    height: 290px;
    width: 100%;
    object-fit: cover;
}

.exploration_second_section .right_side_part .first_main_part .title_part .desc {
    font-family: var(--bg_regular);
    font-size: var(--fs_16);
    color: var(--text_color_4);
    margin-top: 20px;
}

.exploration_second_section .right_side_part .first_main_part .title_part p {
    font-family: var(--bg_regular);
    font-size: var(--fs_16);
    color: var(--text_color_4);
    margin-top: 20px;
}

.exploration_second_section .right_side_part .first_row .left_image_part .second_image {
    height: 565px;
    width: 100%;
    object-fit: cover;
}

.exploration_second_section .right_side_part .first_row .right_side_image_part .third_image {
    height: 290px;
    width: 100%;
    object-fit: cover;
}

.exploration_second_section .right_side_part .first_row .right_side_image_part .desc {
    font-family: var(--bg_regular);
    font-size: var(--fs_16);
    color: var(--text_color_4);
    line-height: 1.4;
    margin-top: 14px;
}

.exploration_second_section .right_side_part .second_main_part .title_part {
    position: relative;
    display: inline-block;
    width: 100%;
    overflow: hidden;
}

.exploration_second_section .right_side_part .second_main_part .title_part h4 {
    font-size: var(--fs_32);
    font-family: var(--bg_regular);
    color: var(--text_color_5);
    margin-bottom: 15px;
    margin-top: 50px;
}

.exploration_second_section .right_side_part .second_main_part .title_part .first_image {
    height: 487px;
    width: 100%;
    object-fit: cover;
    display: block;
}

.exploration_second_section .right_side_part .second_main_part .title_part::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 85.32%, rgba(0, 0, 0, 0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

.exploration_second_section .right_side_part .second_main_part .title_part .desc {
    position: absolute;
    left: 15px;
    bottom: 15px;
    color: var(--text_color_2);
    font-family: var(--bg_regular);
    font-size: var(--fs_16);
    margin: 0;
    z-index: 2;
}

.exploration_second_section .right_side_part .second_row .left_image_part .fourth_image {
    height: 365px;
    width: 100%;
    object-fit: cover;
    margin-top: 15px;
}

.exploration_second_section .right_side_part .second_row .left_image_part .title {
    font-family: var(--bg_regular);
    font-size: var(--fs_24);
    color: var(--text_color_5);
    margin-top: 20px;
}

.exploration_second_section .right_side_part .second_row .left_image_part .desc {
    font-family: var(--bg_regular);
    color: #7F7F7F;
    font-size: 16px;
    margin-bottom: 0;
}

.exploration_second_section .right_side_part .second_row .left_image_part p {
    font-family: var(--bg_regular);
    color: #7F7F7F;
    font-size: 16px;
    margin-bottom: 0;
}

.exploration_second_section .right_side_part .second_row .right_image_part {
    padding-top: 190px;
}

.exploration_second_section .right_side_part .second_row .right_image_part .fifth_image {
    height: 375px;
    width: 100%;
    object-fit: cover;
    margin-top: 15px;
}

.exploration_second_section .right_side_part .second_row .right_image_part .title {
    font-family: var(--bg_regular);
    font-size: var(--fs_24);
    color: var(--text_color_5);
    margin-top: 20px;
}

.exploration_second_section .right_side_part .second_row .right_image_part .desc {
    font-family: var(--bg_regular);
    color: #7F7F7F;
    font-size: 16px;
    margin-bottom: 0;
}

.exploration_second_section .right_side_part .third_row .title_part h4 {
    font-family: var(--bg_regular);
    color: var(--text_color_5);
    font-size: var(--fs_24);
    margin-top: 30px;
}

.exploration_second_section .right_side_part .third_row .title_part .desc {
    font-family: var(--bg_regular);
    font-size: var(--fs_16);
    color: #7F7F7F;
}

.exploration_second_section .right_side_part .third_row .title_part {
    position: relative;
    width: 100%;
}

.exploration_second_section .right_side_part .third_row .title_part .img_wrap {
    position: relative;
    overflow: hidden;
}

.exploration_second_section .right_side_part .third_row .title_part .sixth_image {
    width: 100%;
    height: 393px;
    object-fit: cover;
    display: block;
}

.exploration_second_section .right_side_part .third_row .title_part .img_wrap:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 89.69%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    pointer-events: none;
}

.exploration_second_section .right_side_part .third_row .title_part .desc1 {
    position: absolute;
    bottom: 15px;
    left: 30px;
    color: #fff;
    font-family: var(--bg_regular);
    font-size: var(--fs_16);
    margin: 0;
    z-index: 2;
}

.exploration_second_section .right_side_part .third_row .title_part .seventh_image {
    height: 393px;
    width: 100%;
    object-fit: cover;
}

.exploration_second_section .right_side_part .third_row .title_part .eight_image {
    height: 855px;
    width: 100%;
    object-fit: cover;
}

.exploration_second_section .right_side_part .third_row .title_part .eight_image_desc {
    font-family: var(--bg_regular);
    color: #7F7F7F;
    font-size: var(--fs_16);
    margin-top: 20px;
}

.exploration_second_section .right_side_part .third_row .title_part .nine_image {
    height: 620px;
    width: 100%;
    object-fit: cover;
}

.exploration_second_section .right_side_part .third_row .title_part .ten_image {
    height: 620px;
    width: 100%;
    object-fit: cover;
}

.exploration_second_section .right_side_part .third_row .title_part .eleven_image {
    height: 523px;
    width: 100%;
    object-fit: cover;
}

.exploration_second_section .right_side_part .third_main_part .title_part {
    margin-top: 50px;
    margin-bottom: 15px;
}

.exploration_second_section .right_side_part .third_main_part .title_part h4 {
    font-family: var(--bg_regular);
    color: var(--text_color_5);
    font-size: var(--fs_32);
}

.exploration_second_section .right_side_part .third_main_part .card_part .card {
    border: none;
    height: 100%;
}

.exploration_second_section .right_side_part .third_main_part .card_part .card img {
    height: 353px;
    width: 100%;
    object-fit: cover;
}

.exploration_second_section .right_side_part .third_main_part .card_part .card .card-body {
    padding-left: 0;
}

.exploration_second_section .right_side_part .third_main_part .card_part .card .card-body .card-title {
    font-family: var(--bg_regular);
    font-size: var(--fs_20);
    color: var(--text_color_1);
}

.exploration_second_section .right_side_part .third_main_part .card_part .card .card-body .card-text {
    font-family: var(--bg_regular);
    color: #7F7F7F;
    font-size: var(--fs_16);
    line-height: 1.3;
}

.exploration_second_section .right_side_part .fourth_main_part {
    margin-top: 40px;
}

.exploration_second_section .right_side_part .fourth_main_part .twelve_image {
    height: 628px;
    width: 100%;
    object-fit: cover;
}

.exploration_second_section .right_side_part .fourth_main_part .right_part .title_part h4 {
    font-family: var(--bg_regular);
    font-size: var(--fs_32);
    color: var(--text_color_5);
}

.exploration_second_section .right_side_part .fourth_main_part .right_part .title_part .thirteen_image {
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.exploration_second_section .right_side_part .fourth_main_part .right_part .title_part p {
    font-family: var(--bg_regular);
    color: #7F7F7F;
    font-size: var(--fs_16);
}

.exploration_second_section .right_side_part .fourth_main_part .right_part .title_part p span {
    font-family: var(--bg_semibold);
    font-size: var(--fs_26);
    color: var(--text_color_1);
    font-style: italic;
}


@media (max-width: 992px) {

    .exploration_second_section .right_side_part .fourth_main_part .right_part .title_part h4 {
        margin-top: 25px;
    }

    .exploration_second_section .right_side_part .second_row .left_image_part .title br {
        display: none;
    }

    .exploration_second_section .right_side_part .second_row .right_image_part .title br {
        display: none;
    }

    .exploration_second_section .right_side_part .second_row .right_image_part {
        padding-top: 0;
    }

    .exploration_first_section .exploration_first_section_content {
        margin-bottom: 120px;
    }

    .exploration_first_section .exploration_first_section_content .title_text {
        font-size: 28px;
    }

    .exploration_first_section .exploration_first_section_content .lead_text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {

    .exploration_first_section {
        height: 45vh;
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .exploration_first_section .exploration_first_section_content {
        margin-bottom: 10px;
    }

    .exploration_first_section .exploration_first_section_content .title_text {
        font-size: 24px;
        line-height: 1.3;
    }

    .exploration_first_section .exploration_first_section_content .lead_text {
        font-size: 14px;
    }

}

@media (max-width: 576px) {

    .exploration_first_section {
        height: 45vh;
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .exploration_first_section .exploration_first_section_content {
        margin-bottom: 10px;
    }

    .exploration_first_section .exploration_first_section_content .title_text {
        font-size: 24px;
        line-height: 1.3;
    }

    .exploration_first_section .exploration_first_section_content .lead_text {
        font-size: 14px;
    }

}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    color: #dbdbdb !important;
}

.flatpickr-day.today {
    border-color: green !important;
}

.flatpickr-day.today:hover {
    background-color: green !important;
    color: var(--text_color_2) !important;
}

.flatpickr-day.selected {
    color: var(--text_color_2) !important;
    background-color: green !important;
}

.flatpickr-day:hover {
    background-color: green !important;
    color: var(--text_color_2) !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
    background-color: #ffffff !important;
    color: #b3b3b3 !important;
}

.flatpickr-day {
    color: green !important;
    font-family: var(--bg_regular) !important;
}

span.flatpickr-weekday {
    font-family: var(--bg_regular) !important;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-family: var(--bg_regular) !important;
}

.flatpickr-current-month input.cur-year {
    font-family: var(--bg_regular) !important;
}

.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
    width: 16px !important;
    height: 16px !important;
    margin-top: -10px !important;
}

/* .hero-section .hero-section-content .offer_text_part {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
} */

.hero-section .hero-section-content .offer_text_part .offer_text {
    /* background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px); */
    /* background: #17a6ff;
    background: radial-gradient(circle, rgba(23, 166, 255, 1) 0%, rgba(0, 91, 148, 1) 100%); */
    /* background-color: var(--bg_color_5); */
    /* color: var(--text_color_2);
    border-radius: 20px;
    padding: 20px 40px;
    font-family: var(--bg_regular);
    font-size: var(--fs_32);
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content; */
}

/* .hero-section .hero-section-content .offer_text_part .offer_text img {
    height: 75px;
    width: auto;
    margin-right: 10px;
}

.hero-section .hero-section-content .offer_text_part .offer_text span {
    color: var(--text_color_3);
    margin-left: 10px;
} */

.hero-section .hero-section-content {
    position: relative;
}

.hero-section .hero-section-content .offer_text_part {
    position: absolute;
    top: -320px;
    left: -260px;
    z-index: 5;
    transform: rotate(-18deg);
}
.hero-section .hero-section-content .offer_text {
    width: 250px;
    height: 250px;
    border-radius: 50%;

    /* background: radial-gradient(circle at top left,
        #3ec5ff 0%,
        #0b79c1 55%,
        #055a9c 100%
    ); */

    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    font-family: var(--bg_regular);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.35),
        inset 0 0 15px rgba(255, 255, 255, 0.0);
}
.hero-section .hero-section-content .offer_text {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.1;
}

.hero-section .hero-section-content .offer_text span {
    display: block;
    font-size: 30px;
    font-weight: 500;
    margin-top: 10px;
    color: var(--text_color_3);
}
.hero-section .hero-section-content .offer_text_part .offer_text span {
    color: var(--text_color_3);
    margin-left: 10px;
}
@media (max-width: 1400px) {
    .hero-section .hero-section-content .offer_text_part {
        top: -250px;        /* bring inside */
        left: -40px;       /* visible on left */
        transform: rotate(-15deg) scale(0.75);
    }
}
@media (max-width: 1600px) {
    .hero-section .hero-section-content .offer_text_part {
        top: -250px;        /* bring inside */
        left: -40px;       /* visible on left */
        transform: rotate(-15deg) scale(0.75);
    }
}
@media (max-width: 1200px) {
    .hero-section .hero-section-content .offer_text_part {
        top: -250px;        /* bring inside */
        left: -40px;       /* visible on left */
        transform: rotate(-15deg) scale(0.75);
    }
}
@media (max-width: 992px) {
    .hero-section .hero-section-content .offer_text_part {
        top: -160px;
        left: -30px;
        transform: rotate(-15deg) scale(0.85);
    }

    .hero-section .hero-section-content .offer_text {
        width: 150px;
        height: 150px;
        font-size: 35px;
    }

    .hero-section .hero-section-content .offer_text span {
        font-size: 18px;
    }
} 
@media (max-width: 768px) {
    .hero-section .hero-section-content .offer_text_part {
        top: -320px;
        left: -40px;
        transform: rotate(-12deg) scale(0.7);
    }

    .hero-section .hero-section-content .offer_text {
        width: 190px;
        height: 190px;
        font-size: 48px;
    }

    .hero-section .hero-section-content .offer_text span {
        font-size: 26px;
    }
}
@media (max-width: 576px) {
    .hero-section .hero-section-content .offer_text_part {
        top: -180px;
        left: -40px;
        transform: rotate(-10deg) scale(0.55);
    }

    .hero-section .hero-section-content .offer_text {
        width: 190px;
        height: 190px;
        font-size: 50px;
    }

    .hero-section .hero-section-content .offer_text span {
        font-size: 30px;
        margin-top: 6px;
    }
}

 
