@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Cormorant:ital,wght@0,300..700;1,300..700&family=Jost:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


:root {
    --primary-color: #FFFF66;
    --highlight-color: #222222;
    --s_backgound-color: rgb(247, 247, 247);
    --secondary-color: #ffffff;
    --text-color: #202020;
    --p-color: #696969;
    font-family: "Cormorant", serif;
    font-family: "Jost", serif;
    font-family: "Playfair Display", serif;
    font-family: "Abril Fatface", serif;
}


p {
    font-size: 15px;
}


#top_bar {
    width: 100%;
    height: auto;
    padding: 16px 0;
    background: var(--primary-color);
    z-index: 999 !important;
}

.top_phone_mail {
    padding: 0;
    margin: 0;
}

.top_phone_mail li {
    display: inline-block;
    color: var(--secondary-color);
    padding-right: 50px;
    font-family: "Jost", serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: all 0.3s ease-in;
}

.top_phone_mail li a i {
    color: var(--secondary-color);
    padding-right: 6px;
    transition: all 0.3s ease-in;
}

.top_phone_mail li:hover {
    transition: all 0.3s ease-in;
    color: var(--secondary-color);
}

.mobile_icon {
    transform: rotate(-30deg);
}

.top_social {
    padding: 0;
    margin: 0;
}

.top_social li {
    display: inline-block;
    color: var(--secondary-color);
    padding: 0px 12px;
    transition: all 0.3s ease-in;
}

.top_social li :hover {
    color: var(--primary-color);
    transition: all 0.3s ease-in;
}

/* navbar  */

#header {
    position: absolute;
    top: 0;
    z-index: 999 !important;
    width: 100%;
}

.navbar-brand {
    padding: 5px 15px;
}

#logo {
    height: 80px;
}

.navbar {
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    margin: 0 !important;
    /* box-shadow: 0px 3px 6px 0px rgba(5, 37, 95, 0.2); */
}

.navbar_scroll {
    position: fixed;
    background: var(--secondary-color);
    box-shadow: 0px 3px 6px 0px rgba(5, 37, 95, 0.2);
}

.logo {
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    padding-top: 7px !important;
    font-size: 32px;
}

.navbar .navbar-nav>li>a {
    padding: 15px 12.5px;
    color: var(--text-color);
    font-size: 17px;
    letter-spacing: 0px;
    font-weight: 500;
    margin: 20px 2.5px;
    font-family: "Jost", serif;
    transition: all 0.3s ease;
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color) !important;
    background: none !important;
    transition: all 0.3s ease;
}

.nav_links_book_btn{
    background-color: var(--primary-color);
    padding: 10px 25px;
    color: var(--text-color);
    font-family: "Jost", serif;
    font-weight: 500;
    border: 1px solid var(--text-color);
    margin-top: 25px;
    margin-left: 15px;
}


/* end navbar  */


#banner_video{
    width: 100%;
    height: 100%;
}

#banner {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.banner_content_box {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0);
    text-align: center;
}

.bcb_p {
    padding-top: 5.5% !important;
    font-family: "Jost", serif;
    color: var(--secondary-color);
    font-size: 24px;
    letter-spacing: 3px;
    font-weight: 400;
    color: #06402b;
}

.bcb_h {
    display: block;
    /* font-family: "Playfair Display", serif;
    font-family: "Cormorant", serif; */
    font-family: "Jost", serif;
    font-size: 52px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #06402b;
    line-height: inherit;
    padding-top: 5px !important;
}

.banner_btn {
    padding: 10px 30px;
    font-family: "Jost", serif;
    font-size: 18px;
    margin-top: 30px;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    letter-spacing: 0.35px;
    transition: all 0.3s ease;
}

.banner_btn:hover {
    background: var(--secondary-color);
    color: var(--text-color);
    transition: all 0.3s ease;
}

/* .banner_img {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
} */

#banner_img {
    object-fit: cover;
    animation: masked-animation 1.5s 1 linear forwards;
    transform: scale(1.25);
    filter: blur(10px);
    opacity: 0.65;
    transition: all 2s ease;
}

@keyframes masked-animation {
    to {
        opacity: 1;
        filter: blur(0px);
        transform: scale(1);
        transition: all 2s ease;
    }
}

.banner_content_box .bcb_p,
.banner_content_box .bcb_h,
.banner_content_box .banner_btn {
    transform: translateY(100px);
    filter: blur(10px);
    opacity: 0;
    animation: showContent 0.5s 1 linear forwards;
}

@keyframes showContent {
    to {
        opacity: 1;
        filter: blur(0);
        transform: translateY(0);
    }
}

.banner_content_box .bcb_p {
    animation-delay: 1.6s;
}

.banner_content_box .bcb_h {
    animation-delay: 2.1s;
}

.banner_content_box .banner_btn {
    animation-delay: 2.6s;
}


#about {
    width: 100%;
    height: auto;
    padding: 100px 0;
}

.booknow_desktop{
    position: absolute;
    right: 15px;
    top: -90px;
}

.abt_sh {
    font-family: "Jost", serif;
    color: var(--text-color);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.35px;
}

.abt_h {
    /* font-family: "Playfair Display", serif; */
    font-family: "Jost", serif;
    font-weight: 400;
    font-size: 42px;
    line-height: inherit;
}

#responsive_logo{
    display: none;
}

.abt_p {
    font-family: "Jost", serif;
    color: var(--p-color);
    font-size: 17px;
    font-weight: inherit;
    letter-spacing: 0.15px;
    padding-top: 10px !important;
    line-height: 30px;
}

.abt_p strong {
    color: var(--text-color);
    font-family: "Playfair Display", serif;
    font-size: 28px;
    padding: 10px 0 !important;
}

#abt_img {
    margin-top: 20px;
}

.abt_btn {
    display: block;
    margin-top: 20px;
    font-family: "Jost", serif;
    font-size: 18px;
    letter-spacing: 0.35px;
    font-weight: 400;
    padding: 10px !important;
    background: var(--primary-color);
    margin-top: 20px !important;
    border: none;
}

.journey_btn i {
    padding-right: 5px;
}

.ser_box{
    margin-top: 40px;
    text-align: center;
}
#ser_h_img{
    width: 125px;
    height: 125px;
    border-radius: 50%;
}
.ser_box i{
    width: 110px;
    height: 110px;
    background: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    font-size: 36px;
    padding-top: 35px;
    color: var(--text-color);
}
.ser_box i img{
    margin: auto;
    width: 45px;
}
.sb_h{
    font-family: "Jost", serif;
    font-size: 19px;
    padding-top: 20px !important;
}

#packages{
    width: 100%;
    height: auto;
    padding: 100px 0;
    background-image: url(../../images/bg.png);
    background-repeat: repeat;
    background-position: center top 40px;
    background-size: 100% auto;
    background-color: var(--s_backgound-color);
}


#packages_box {
    padding: 20px;
    background: var(--secondary-color);
    border-radius: 5px;
    box-shadow: 0px 4px 15px rgb(10 29 53 / 8%);
    transition: all 0.5s ease;
    margin-top: 40px;
    overflow: hidden;
}

.p_c {
    padding: 0 5px;
    padding-top: 15px;
}

.pc_h {
    color: var(--text-color);
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.35px;
    padding-top: 10px !important;
    font-family: "Jost", serif;
}

.pc_hr {
    border: 1px dashed #bababa;
    margin: 20px 0 !important;
}

.pc_btn {
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    font-family: "Jost", serif;
    color: var(--highlight-color);
    font-size: 16px;
    letter-spacing: 0.35px;
    font-weight: 500;
    line-height: 0;
    text-transform: uppercase;
}

#p_img {
    transform: scale(1);
    transition: all 0.3s ease;
    overflow: hidden !important;
    position: relative;
}
#p_img img{
    transform: scale(1);
    transition: all 0.3s ease;
}

#packages_box:hover>#p_img img {
    transform: scale(1.1);
    transition: all 0.3s ease;
}


.packages_li {
    padding: 0;
    margin: 0;
}

.packages_li li {
    display: table-cell;
    padding-bottom: 20px !important;
}

.packages_li li:nth-child(1) {
    padding-right: 10px;
    width: 135px;
}

.pac_q {
    font-family: "Jost", serif;
    letter-spacing: 0.15px;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-color);
}

.pac_a {
    font-family: "Jost", serif;
    font-size: 16px !important;
    letter-spacing: 0.15px;
}

.pc_p {
    font-family: 'Playfair Display', serif;
    padding-top: 10px !important;
    color: var(--highlight-color);
    font-size: 24px;
    font-weight: 700;
}

.pc_p_btn {
    background: var(--text-color);
    padding: 11px 40px;
    color: var(--secondary-color);
    border: none;
    margin-top: 5px;
    margin-bottom: 10px;
    font-family: "Jost", serif;
    font-size: 18px;
    letter-spacing: 0.65px;
}

#design {
    width: 100%;
    height: auto;
    padding: 100px 0;
    background-image: url(../../images/bg.png);
    background-repeat: repeat;
    background-position: center top 40px;
    background-size: 100% auto;
    background-color: var(--s_backgound-color);
}

.da_h {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    line-height: inherit;
}

#activities{
    width: 100%;
    height: auto;
    padding: 100px 0;
}

.activity_c_box{
    padding: 40px 20px;
}
.activity_p{
    font-family: "Jost", serif;
    color: var(--p-color);
    font-size: 16px;
    font-weight: inherit;
    letter-spacing: 0px;
    padding-top: 10px !important;
    line-height: 30px;
}
.activity_p strong{
    color: var(--text-color);
    font-size: 17px;
}
.activity_p span{
    font-size: 15px;
}
.activity_p i{
    color: #000000;
    padding-right: 5px;
}


#bredcum{
    width: 100%;
    height: auto;
    padding: 125px 0;
    padding-top: 150px;
    background: url(../../images/bredcum.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.bredcum_h{
    font-family: "Playfair Display", serif;
    color: var(--secondary-color);
    font-size: 60px;
}
.bredcum_li{
    padding: 0;
    margin: 0;
}
.bredcum_li li{
    font-family: "Jost", serif;
    color: var(--secondary-color);
    display: inline-block;
    padding-top: 20px;
    padding-right: 6px;
    letter-spacing: 0.35px;
    font-size: 16px;
}
.bredcum_li li i{
    font-size: 13px;
}

.nav_l_w>li{
    color: var(--secondary-color);
}
.nav_l_w_li_a_scroll{
    color: var(--text-color) !important;
}

#video{
    width: 100%;
    height: auto;
    padding: 200px 0;
    background: url(../../images/video_bg.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
#video img{
    width: 100px;
    margin: auto;
}


#contact {
    width: 100%;
    height: auto;
    padding: 100px 0;
    background: var(--secondary-color);
    padding-bottom: 60px;
}

#contact_box {
    width: 100%;
    height: auto;
    padding: 40px 20px;
    background: var(--secondary-color);
    box-shadow: 0px 4px 15px rgb(0 0 0 / 10%);
    margin-top: 40px;
}

.contact_li {
    padding: 0;
    margin: 0;
    margin-top: 25px !important;
}

.contact_li li {
    display: block;
    padding-right: 20px;
    font-family: "Jost", serif;
    font-size: 18px;
    line-height: 33px;
}

#map{
    margin-top: 40px;
}


#footer {
    width: 100%;
    height: auto;
    padding: 60px 0;
    background: var(--text-color);
    padding-bottom: 40px;
}

.footer_h {
    font-family: 'Playfair Display', serif;
    color: var(--secondary-color);
    letter-spacing: 0.65px;
    padding-bottom: 22px !important;
    position: relative;
}

.footer_h:after {
    content: "";
    position: absolute;
    width: 100px;
    height: 2px;
    background: var(--highlight-color);
    bottom: 8px;
    left: 0;
}

.footer_p {
    color: var(--secondary-color);
    letter-spacing: 0.35px;
    line-height: 30px;
    font-size: 16px;
    font-family: "Jost", serif;
    font-weight: initial;
}

.footer_li {
    padding: 0;
    margin: 0;
}

.footer_li li {
    font-family: "Jost", serif;
    list-style: none;
    color: var(--secondary-color);
    padding-bottom: 10px;
    line-height: 30px;
    font-weight: initial;
    letter-spacing: 0.5px;
}

.footer_icon {
    padding-right: 5px;
    color: var(--highlight-color);
}

#copyrights {
    width: 100%;
    height: auto;
    padding: 15px 0;
    background: #000000;
}

#copyrights p {
    font-family: "Jost", serif;
    color: var(--secondary-color);
    text-align: center;
    letter-spacing: 0.35px;
    font-size: 18px;
}

.c_r strong span{
    color: #ff0000 !important;
    font-family: "Playfair Display", serif;
}

.ngo_btn{
    padding: 10px 30px;
    font-family: "Jost", serif;
    font-size: 18px;
    margin-top: 30px;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--text-color);
    letter-spacing: 0.35px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ngo_p strong{
    color: var(--text-color);
    font-family: "Playfair Display", serif;
    font-size: 24px;
}
.ngo_p{
    padding-top: 40px !important;
}

.modal{
    top: 15%;
}
.modal-body{
    padding: 10px;
    line-height: 0;
}

.desktop_none{
    display: none;
}