@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;500;600;700;800&display=swap');

/* font-family: 'Nunito Sans', sans-serif */

@font-face {
    font-family: 'Font Awesome 5 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: block;
    src: url("../webfonts/fa-brands-400.eot");
    src: url("../webfonts/fa-brands-400.eot?#iefix") format("embedded-opentype"), url("../webfonts/fa-brands-400.woff2") format("woff2"), url("../webfonts/fa-brands-400.woff") format("woff"), url("../webfonts/fa-brands-400.ttf") format("truetype"), url("../webfonts/fa-brands-400.svg#fontawesome") format("svg");
}

.fal,
.fas,
.far {
    font-family: "Font Awesome 5 Pro";
}

.fab {
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Heebo", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #808B8D;
    background-color: #fff;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

a,
a:link,
a:visited,
a:active,
a:hover,
button,
input,
select,
textarea,
i {
    text-decoration: none;
    outline: none;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
    color: rgb(var(--purple));
}

input,
select,
textarea {
    width: 100%;
    outline: none;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
    box-shadow: none;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    -moz-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

h5 {
    line-height: 1.4;
}

:root {
    --primary: #94d18e;
    --secondary: #38c2cf;
    --light: #F5F5F5;
    --dark: #14141F;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.fw-bold {
    font-weight: 800 !important;
}


.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito", sans-serif;
    font-weight: 800;
    line-height: 1.2;
    color: #2C3E50;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 8px;
    color: #FFFFFF !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 8px;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }


    #navbarCollapse {
        gap: 20px;
    }
}

/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(20, 20, 31, .7), rgba(20, 20, 31, .7)), url(../assets/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.inner_banner_1 .hero-header {
    background: linear-gradient(rgba(20, 20, 31, .7), rgba(20, 20, 31, .7)), url(../assets/quote.jpg);
    background-size: cover;
}

.inner_banner_2 .hero-header {
    background: linear-gradient(rgba(20, 20, 31, .7), rgba(20, 20, 31, .7)), url(../assets/baanner_inner.jpg);
    background-size: cover;
}


.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}

.text-primary {
    color: #94d18e !important;

}

.TEXT_P {
    text-transform: capitalize !important;
    padding-left: 26px;
    position: relative;
}

.TEXT_P>i {
    position: relative;
    margin-left: -24px;
}

/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    max-width: calc(100% - 40px);
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 7px;
    left: 0px;
    background: var(--primary);
    z-index: -1;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
    text-align: center;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: #212529 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
    font-size: 20px;
    padding-top: 8px;
    border-radius: 50%;
}


#about {
    padding: 100px 0;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #14141F !important;
    box-shadow: none !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--light);
    border-color: var(--primary);
    color: var(--dark) !important;
}

.footer .btn-link {
    font-size: 18px;
    position: relative;
    padding: 6px 20px;
    box-shadow: none !important;
}

.text-gray {
    opacity: 0.6;
}

.logo-containe {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer .btn-link:hover,
.footer .btn-link:focus {
    color: var(--primary);
}

.footer .btn-link:hover::before,
.footer .btn-link.active::before {
    width: calc(100% - 2px);
    left: 1px;
}

.footer .btn-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: .5s;
}

@media screen and (max-width: 992px) {
    #about {
        padding: 0;
    }

    .section-title::before {
        width: calc(100% + 30px);
    }
}

@media screen and (max-width: 460px) {
    .footer .btn-link {
        width: 100%;
        text-align: left;
    }

    .navlinks {
        display: flex;
        flex-direction: column;
    }

    .logo-cont {
        padding-left: 24px;
    }
}


.inner_banner .hero-header {
    min-height: 500px;
}

.inner-ttiel {
    font-size: 40px;
    margin: auto;
}

.teramsandContdis a {
    color: var(--secondary);
}

.qoute_form {
    -webkit-box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
    padding: 30px 20px;
}

p.teramsandContdis {
    background: #f4f6f8;
    padding: 25px;
    font-size: 14px;
    margin-bottom: 0;
}

.form-control,
.form-select {
    border-radius: 0;
    box-shadow: none !important;
    padding: 12px 20px;
    background: #f4f4f4;
}

.form-control:focus,
.form-select:focus {
    border-color: #94d18e;
    background: #fff;
}

.form-control::placeholder {
    color: #aaafb4;
    opacity: 1;
}

.breadcrumb {
    justify-content: center;
}

.breadcrumb-item {
    font-size: 18px;
}

.breadcrumb-item a {
    color: #94d18e;
}

.breadcrumb-item.active {
    color: #cfcfcf;
}

.max_900 {
    max-width: 900px;
}

.service-item.other-contnee {
    background: #88dae2;
    color: #000;
}

.booking {
    background: linear-gradient(rgba(15, 23, 43, .8), rgba(15, 23, 43, .7)), url(../assets/bg-hero.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.border-primary {
    border-color: #94d18e !important;
}

.bg-primary {
    background-color: #94d18e !important;
}

.privacy_box {
    list-style: circle;
    padding-left: 25px;
}

a.service-item.d-block p {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}


.read-more_btn {
    margin: auto;
    margin-top: 25px;
    display: inline-block;
    font-weight: 900;
    font-size: 20px;
    color: var(--primary) !important;
}