body {
    font-size: 16px;
    color: #333;
    font-family: "Urbanist", sans-serif;
}


/* default css */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Livvic", sans-serif;
}

.scrollup {
    position: fixed;
    right: 12px;
    bottom: 50px;
    width: 40px;
    height: 40px;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-weight: 900;
    font-size: 20px;
    z-index: 99999999 !important;
    display: none;
    border-radius: 12px;
    background-color: #000;
    transition: 400ms;
    box-shadow: 0px 3px 7px rgb(30 85 165 / 20%);
}

.scrollup:hover {
    color: #FFF;
    background-color: #111;
}

.wrapper {
    position: relative;
    padding: 100px 0px;
    z-index: 100;
}

.wrapper-big {
    position: relative;
    padding: 250px 0px;
}

.overflow {
    overflow: hidden;
}

img {
    width: 100%;
}

ul {
    padding: 0;
    margin: 0;
}

ul li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.btn {
    font-size: 16px;
    font-weight: 600;
    padding: 15px 35px;
    text-transform: uppercase;
    transition: 400ms;
    border-radius: 4px;
}

.btn-default-1 {
    color: #FFF;
    background-color: #009688;
    border-color: #009688;
}

.btn-default-1:hover {
    color: #FFF;
    background-color: #009688;
    border-color: #009688;
}

.overlay {
    background: url(../images/wave-1.svg) no-repeat bottom center;
    background-size: cover;
}

.bg-slider {
    position: relative;
    background: rgb(240, 255, 232);
    background: linear-gradient(150deg, #00968771 0%, rgb(255, 255, 255) 45%);
}

.bg-green {
    background-color: #009688;
}

.bg-green-light {
    background-color: #95d6dc;
}

.bg-blue-1 {
    background-color: #b4f4fa;
}

.bg-darken {
    background-color: #070707;
}

.z-index-1 {
    z-index: 1;
}

.z-index-2 {
    z-index: 2;
}

.text-green {
    color: #009688;
}

.script {
    font-family: "Meow Script", cursive;
    font-size: 120px !important;
    font-weight: 300 !important;
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 80%;
    }
}

@media screen and (max-width: 992px) {
    .wrapper {
        position: relative;
        padding: 50px 0px;
    }
    .btn {
        font-size: 14px;
        font-weight: 600;
        padding: 7px 12px;
        text-transform: uppercase;
        transition: 400ms;
    }
    .script {
        font-family: "Meow Script", cursive;
        font-size: 60px !important;
        line-height: 30px;
        font-weight: 300 !important;
    }
    .bg-blue-1 {
        background: rgb(240, 255, 232);
        background: linear-gradient(142deg, rgba(240, 255, 232, 1) 0%, rgb(217, 255, 237) 54%) no-repeat;
        background-size: 100% 82%;
    }
    .overlay {
        background: url(../images/wave-1.svg) no-repeat bottom center;
        background-size: 100%;
    }
}


/* end default css*/


/* Start Header CSS */

.booknow {
    position: relative;
    background-color: #b4f4fa;
    padding: 10px 0px;
}

.bookcard {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bookcard p {
    margin: 0 10px 0 0;
    padding: 0;
}

.bookcard a {
    display: block;
    padding: 5px 10px;
    border-radius: 10px;
    background-color: #b2d8d8;
    color: #005e5e;
    text-decoration: none;
    transition: 400ms;
}

.bookcard a:hover {
    background-color: #66b2b2;
}

.header-wrapper {
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    background: #b4f4fa7d;
    backdrop-filter: blur(10px);
    align-items: center;
}

.navbar-expand-lg .navbar-collapse {
    align-items: center !important;
}

.navbar-brand {
    color: #009688 !important;
    font-weight: 700;
    font-size: 30px;
}

.navbar-brand span {
    font-family: "Meow Script", cursive;
    font-size: 34px;
}

.nav-item {
    margin: 0px 20px;
}

.nav-link {
    font-weight: 600;
    text-transform: uppercase;
    color: #333 !important;
}

.nav-link:hover {
    color: #009688 !important;
}

.nav-link.active {
    color: #009688 !important;
}

.top-d-flex {
    display: flex;
    align-items: center;
    justify-content: end;
}

.social-icons ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons ul li {
    display: flex;
    margin: 0px 0px 0px 10px;
    list-style: none;
    line-height: normal;
}

.social-icons ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    color: #009688;
    line-height: normal;
    transition: 400ms;
}

.social-icons ul li a:hover {
    background-color: #FFF;
    color: #009688;
    border-radius: 4px;
    box-shadow: none;
    box-shadow: 0px 3px 15px #6a993446;
}

.ms3-3 {
    margin-left: 30px;
}

@media screen and (max-width: 992px) {
    .navbar-nav {
        text-align: center;
        margin-top: 30px;
    }
    .nav-item {
        margin: 0px 0px 20px 0px;
    }
    .navbar-toggler {
        box-shadow: none !important;
    }
    .navbar-brand img {
        width: 200px;
    }
    .top-d-flex {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .ms3-3 {
        margin-left: 0px;
    }
    .bookcard a {
        width: 150px;
    }
}


/* End Header CSS */


/* Start Slider */

.slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0px;
    overflow: hidden !important;
}

.slider-content {
    display: block;
    color: #FFF;
    text-align: center;
    padding: 60vh 0px 70px 0px;
    background: rgb(0, 128, 128);
    background: linear-gradient(180deg, rgba(0, 128, 128, 0) 80%, #009688 95%);
}

.slider-content h1 {
    font-size: 60px;
    line-height: 60px;
}

.slider-content p {
    font-size: 18px;
    line-height: 30px;
}

.slider-image {
    position: relative;
    width: 100%;
    padding: 0px;
    overflow: hidden !important;
    overflow: hidden;
}

.slider-image video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

@media screen and (max-width: 992px) {
    .slider-content {
        display: block;
        color: #FFF;
        text-align: center;
        padding: 38vh 20px 40px 20px;
    }
    .slider-content h1 {
        font-size: 30px;
        line-height: 30px;
    }
    .slider-content p {
        font-size: 14px;
        line-height: 22px;
    }
}


/* End Slider */


/* Start Main Content */

.margin-card {
    background-color: #009688;
    margin-top: -150px;
    padding: 30px;
    border-radius: 4px;
}

.default-content-1 {
    display: block;
}

.default-content-1 h2 {
    display: block;
    font-size: 30px;
    font-weight: 600;
}

.default-content-1 h5 {
    display: block;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
}

.default-content-1 p {
    display: block;
    font-size: 17px;
    line-height: 28px;
}

.default-content-1 ul {
    display: block;
}

.default-content-1 ul li {
    display: block;
    font-size: 16px;
    line-height: 40px;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    font-weight: 600;
    background: rgbA(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0px 3px 15px #1e54a525;
}

.icon-1 {
    display: block;
    margin-bottom: 15px;
}

.icon-1 svg {
    font-size: 48px;
    color: #009688;
}

.images-card {
    display: block;
}

.images-card {
    width: 100%;
}

.gallery-grid {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.gallery-grid div {
    display: block;
    width: 400px;
    height: 400px;
    margin: 0px 30px 30px 0px;
}

.gallery-grid div img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

@media screen and (max-width: 992px) {
    .default-content-1 {
        display: block;
        margin-bottom: 30px;
    }
    .default-content-1 p {
        display: block;
        font-size: 16px !important;
        line-height: 24px;
    }
    .gallery-grid {
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
    .gallery-grid div {
        display: block;
        width: 120px;
        height: 120px;
        margin: 0px 20px 30px;
    }
    .gallery-grid div img {
        width: 120px;
        height: 120px;
        object-fit: cover;
        border-radius: 10px;
    }
}


/* End Main Content */


/* Start footer css*/

.footer-wrapper {
    position: relative;
    background: #009688;
    padding: 80px 0px 60px;
}

.footer {
    display: block;
    color: #FFF;
    margin-bottom: 30px;
}

.footer h5 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer ul li {
    display: block;
    color: #FFF;
    line-height: 44px;
    font-size: 15px;
}

.footer ul li a {
    display: inline-block;
    color: #FFF;
    text-decoration: none;
}

.footer p {
    font-size: 14px;
    line-height: 30px;
}

.footer a {
    color: #FFF !important;
}

.social-icons-footer ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icons-footer ul li {
    display: flex;
    margin: 0px 15px 0px 0px;
    list-style: none;
    line-height: normal;
}

.social-icons-footer ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 5px;
    color: #009688;
    line-height: normal;
    transition: 400ms;
    background-color: #FFF;
}

.social-icons-footer ul li a:hover {
    background-color: #009688;
    color: #FFF;
    box-shadow: 0px 0px 0px rgba(30, 84, 165, 0.349);
}

.copyrights-wrapper {
    padding: 15px 0px 30px 0px;
    background: #111;
}

.copyrights {
    color: #FFF;
}

.copyrights p {
    margin: 0px;
    padding: 0px;
    font-size: 14px;
}

.copyrights a {
    text-decoration: none;
}

.text-end-1 {
    text-align: end;
}

.mobilebtnbook {
    display: none;
}

@media screen and (max-width: 992px) {
    .mobilebtnbook {
        display: block;
        background-color: #00221f8c;
        color: #FFF;
        position: fixed;
        width: 100%;
        bottom: 0px;
        z-index: 999;
        padding: 10px 0px;
        backdrop-filter: blur(10px);
    }
    .mobilebtnbook a {
        width: 50vh;
    }
    .copyrights-wrapper {
        padding: 30px 0px 80px 0px;
        background: #111;
    }
    .footer {
        margin-bottom: 30px;
    }
    .social-icons-footer {
        margin-top: 10px;
    }
    .text-end-1 {
        text-align: center;
    }
    .copyrights p {
        text-align: center;
    }
}


/* end footer css*/