/* Fonts */
:root {
    --default-font: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Montserrat", sans-serif;
    --nav-font: "Lato", sans-serif;
}

/* Global Colors */
:root {
    --background-color: #ffffff;
    --background-color-rgb: 255, 255, 255;
    --default-color: #212529;
    --default-color-rgb: 33, 37, 41;
    --accent-color: #e84545;
    --accent-color-rgb: 232, 69, 69;
    --heading-color: #32353a;
    --heading-color-rgb: 50, 53, 58;
    --contrast-color: #ffffff;
    --contrast-color-rgb: 255, 255, 255;
}

/* Nav Menu Colors */
:root {
    --nav-color: #3a3939;
    --nav-hover-color: #e84545;
    --nav-dropdown-color: #3a3939;
    --nav-dropdown-hover-color: #e84545;
    --nav-dropdown-background-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/* CSS reset */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* table {
	border-collapse:collapse;
	border-spacing:0;
} */
fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
th,
var {
    font-style: normal;
    font-weight: normal;
}

ol,
ul {
    /* list-style: none; */
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

q:before,
q:after {
    content: '';
}

abbr,
acronym {
    border: 0;
}

section,
header {
    display: block;
}

/* General Demo Style */
body {
    font-family: Cambria, Palatino, "Palatino Linotype", "Palatino LT STD", Georgia, serif;
    /* background:url(images/bgnoise_lg.png); */
    font-weight: 400;
    font-size: 15px;
    color: #3a2127;
    overflow-y: scroll;
}

a {
    color: #333;
    text-decoration: none;
}

.container {
    width: 100%;
    height: 100%;
    position: relative;
}

.clr {
    clear: both;
}

/*--------------------------------------------------------------
  # Global Header
  --------------------------------------------------------------*/
.header {
    background-color: #fff;
    /* --background-color: #ffffff; */
    color: var(--default-color);
    /* background-color: var(--background-color); */
    /* padding: 15px 0; */
    transition: all 0.5s;
    z-index: 997;
}

.header .container-fluid {
    /* width: 960px; */
}


.header .logo img {
    width: 45%;
    max-height: 45%;
    margin-right: 6px;
}


.header .logo span {
    color: var(--accent-color);
    font-size: 24px;
    font-weight: 600;
    padding-left: 3px;
}

.header .navmenu {
    color: #000000;
    /* margin-left: 15vw; */
    position: inherit;
    align-items: center;
    justify-content: center;
}

.header .navmenu a {
    color: #000000;
    font-size: 16px;
    text-decoration: none;
}

.header .navmenu a:hover {
    color: #95a0ae;
}

@media (min-width: 1200px) {
    .header .navmenu {
        margin-left: 15vw;
    }
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }

    .header .navmenu {
        order: 3;
    }
}

@media (max-width: 900px) {
    .header .logo img {
        width: 40%;
        max-height: 40%;
        margin-right: 6px;
    }
}

/* Global Header on page scroll
    ------------------------------*/
.scrolled .header {
    --background-color: #ffffff;
    --heading-color: #444444;
    --nav-color: #444444;
    --nav-hover-color: #e84545;
    box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
}

/* Global Scroll Margin Top
    ------------------------------*/
section {
    scroll-margin-top: 90px;
}

@media (max-width: 1199px) {
    section {
        scroll-margin-top: 66px;
    }
}

/* Home Page Custom Header
    ------------------------------*/
.index-page .header {
    --background-color: rgba(255, 255, 255, 0);
    --heading-color: #ffffff;
    --nav-color: rgba(255, 255, 255, 0.515);
    --nav-hover-color: #ffffff;
}

/* Home Page Custom Header on page scroll
    ------------------------------*/
.index-page.scrolled .header {
    --background-color: #ffffff;
    --heading-color: #444444;
    --nav-color: #444444;
    --nav-hover-color: #d83535;
}

/*--------------------------------------------------------------
    # Navigation Menu
    --------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        /* color: var(--nav-color); */
        padding: 18px 15px;
        font-size: 16px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: #7a7676;
        /* color: var(--nav-hover-color); */
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background-color: #07A546;
        /* background: var(--nav-dropdown-background-color); */
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
        /* width: 500px; */
    }

    .navmenu .dropdown-divider {
        color: #000000;
        font-weight: 700;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 13px;
        text-transform: none;
        color: #fff;
        /* color: var(--nav-dropdown-color); */
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        background-color: #0a7936;
        font-weight: 600;
        /* transition: 0.3s; */
        color: #fff;
        /* color: var(--nav-dropdown-hover-color); */
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }

    .navmenu .megamenu {
        position: static;
    }

    .navmenu .megamenu ul {
        margin: 0;
        padding: 10px;
        background: var(--nav-dropdown-background-color);
        box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
        display: block;
        position: absolute;
        top: 130%;
        left: 0;
        right: 0;
        visibility: hidden;
        opacity: 0;
        display: flex;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
    }

    .navmenu .megamenu ul li {
        flex: 1;
    }

    .navmenu .megamenu ul li a,
    .navmenu .megamenu ul li:hover>a {
        padding: 10px 20px;
        font-size: 15px;
        color: var(--nav-dropdown-color);
    }

    .navmenu .megamenu ul li a:hover,
    .navmenu .megamenu ul li .active,
    .navmenu .megamenu ul li .active:hover {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .megamenu:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dd-box-shadow {
        box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.15);
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        /* color: var(--nav-color); */
        color: #000000;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-dropdown-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(var(--default-color-rgb), 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: rgba(var(--accent-color-rgb), 0.1);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul,
    .navmenu .megamenu ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul,
    .navmenu .megamenu ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active,
    .navmenu .megamenu>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
  # Scroll Top Button
  --------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: #ffffff;
    line-height: 0;
}

.scroll-top:hover {
    background-color: rgba(var(--accent-color-rgb), 0.8);
    color: #ffffff;
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

.breadcrumb {
    width: 100%;
}

.breadcrumb .row {
    margin-left: 3%;
}

.breadcrumb a {
    text-decoration: none;
    color: #07A546;
}

.breadcrumb a:hover {
    color: #4a4c4b;
}


.hm-gradient {
    background-image: linear-gradient(to top, #f3e7e9 0%, #e3eeff 99%, #e3eeff 100%);
}

.darken-grey-text {
    color: #2E2E2E;
}

.bc-icons .breadcrumb-item+.breadcrumb-item::before {
    content: none;
}

.bc-icons .breadcrumb-item.active {
    color: #eeeeee;
}

.bc-icons-2 .breadcrumb-item+.breadcrumb-item::before {
    content: none;
}

.bc-icons-2 .breadcrumb-item.active {
    color: #455a64;
}


.light-font .breadcrumb-item+.breadcrumb-item::before {
    color: #fff;
}

.light-font .breadcrumb-item.active {
    color: #cfd8dc;
}

.dark-font .breadcrumb-item+.breadcrumb-item::before {
    color: #000;
}

.dark-font .breadcrumb-item.active {
    color: #455a64;
}

footer {
    background-color: #222023;
    background-image: -webkit-linear-gradient(top, #222023, #1e2c47);
    background-image: -moz-linear-gradient(top, #222023, #1e2c47);
    background-image: -o-linear-gradient(top, #222023, #1e2c47);
    background-image: linear-gradient(to bottom, #222023, #1e2c47);
    color: #fff;
    padding: 50px 20px;
    font-size: 17px;
}

footer h3 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
}

footer h4 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 2px;
}

.about-footer li i {
    position: absolute;
    left: 0;
}

.about-footer li {
    padding-left: 40px;
    position: relative;
    margin-bottom: 40px;
}

.about-footer ul {
    margin-top: 40px;
}

.content .row {
    width: 90%;
    margin: 0 0 0 4%;
}

.content .left-menu {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    text-decoration: none;
    border: 1px solid #000000;
    border-radius: 1%;
}

.content .left-menu-row1 {
    border-bottom: 1px solid;
    /* border: none; */
    width: 100%;
    padding-left: 5%;
    padding-top: 2%;
    padding-bottom: 2%;
}

.content .left-menu-row2 {
    border-bottom: 1px solid;
    width: 100%;
    padding-left: 5%;
    padding-top: 2%;
    padding-bottom: 2%;
}

.content .left-menu-row3 {
    border-bottom: 1px solid;
    width: 100%;
    padding-left: 5%;
    padding-top: 2%;
    padding-bottom: 2%;
}

.content .left-menu-row4 {
    border-bottom: 1px solid;
    padding-left: 5%;
    padding-top: 2%;
    padding-bottom: 2%;
}

.content .left-menu-row5 {
    padding-left: 5%;
    padding-top: 2%;
    padding-bottom: 2%;
}

.content .left-menu-row1 a {
    padding-left: 5%;
}

.content .left-menu {
    padding: 0 0 0 0;
}

.content .left-menu-row a:not(.active) {
    color: #141414;
    font: 500 18px Raleway, sans-serif;
    text-decoration: none;
    -webkit-text-stroke: #151414;
    position: relative;
    display: block;
    padding: 4px 0;
    -webkit-background-clip: text;
    background-clip: text;
}

.content .left-menu-row a.active {
    color: #ffffff;
    font: 500 18px Raleway, sans-serif;
    text-decoration: none;
    -webkit-text-stroke: #f3e7e9;
    position: relative;
    display: block;
    padding: 4px 0;
    -webkit-background-clip: text;
    background-clip: text;
    transition: 0.5s linear;
}

.content .left-menu-row a:hover:not(.active) {
    color: #07A546;
}

.content .left-menu-row a.active {
    background-size: 100%;
}

.content .left-menu-row.menu-active {
    background-color: #07A546;
    /* border-radius: 5%; */
}

.content .left-menu-row:not(.active):not(.menu-active):hover:not(a.active) {
    background-color: #d7d3d3;
}


.content-menu {
    text-align: justify;
}


.content-menu p {
    color: #5a5858;
}

.content-menu ul li {
    color: #5a5858;
}

.content-menu a {
    text-decoration: none;
    color: #07A546;
    font-weight: 500;
}

.content-menu a:hover {
    text-decoration: none;
    color: #676c69;
    font-weight: 500;
}

.content-menu ul {
    margin: 3% 0 0 0;
    padding: 0 0 0 3%;
}

.content-menu ul li span {
    color: #777;
}

.content-row {
    margin-left: 5%;
}

.content-menu i:hover {
    color: #07A546;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #07A546;
}

.footer-title {
    border-bottom: 2px solid #a61f2d;
    padding-bottom: 25px;
    margin-bottom: 35px;
}

.footer-top ul {
    list-style-type: none;
}

ul.footer-social {
    float: right;
}

ul.footer-social li {
    display: inline;
    margin-right: 16px;
}

ul.footer-social i {
    width: 30px;
    height: 30px;
    background: #fff;
    color: #222025;
    text-align: center;
    line-height: 30px;
    border-radius: 30px;
    font-size: 16px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    font-weight: 800;
}

ul.footer-social li:last-child {
    margin-right: 0px;
}

ul.footer-social i:hover {
    background: #07A546;
    color: #fff;
}

.page-more-info a {
    border-bottom: 1px dotted;
}

.page-more-info li {
    margin-bottom: 31px;
}

footer .table td:first-child {
    font-weight: 600;
    padding-left: 33px;
}

footer .table td:last-child {
    text-align: right;
}

footer .table td {
    padding: 0px;
    border: 0;
}

footer .table tr {}

footer .table td i {
    position: absolute;
    left: 0px;
    font-size: 21px;
    top: 6px;
}

footer .table td {
    position: relative;
    padding: 4px 0;
}

.footer-logo td {
    padding-right: 4px !important;
}

.footer-logo td:last-child {
    padding-right: 0px !important;
}

footer hr {
    border-color: #9294a0;
}

.footer-bottom p {
    text-align: right;
}

.footer-bottom {
    margin-top: 30px;
}

.open-hours hr {
    margin: 30px 0;
}