* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: "Nunito", sans-serif;
    color: #2E293C;
}

body a {
    text-decoration: none;
    display: inline-block;
}

body img {
    max-width: 100%;
}

.btnTheme {
    padding: 15px 30px;
    font-size: 18px;
    line-height: 25px;
    color: #fff;
    font-weight: 400;
    border: solid 2px transparent;
    text-transform: capitalize;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.btnThemeBg {
    background-color: #4AB53E;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.btnThemeBg:hover {
    border-color: #4AB53E;
    background-color: transparent;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    color: #4AB53E;
}

.padding50 {
    padding: 15px 50px;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6 {
    font-family: "Gelasio", serif;
}

body h1 {
    font-size: 60px;
    line-height: 78px;
    font-weight: 700;
}

body h2 {
    font-size: 40px;
    line-height: 50px;
    font-weight: 700;
}

body h2 strong {
    font-weight: 500;
}

body h3 {
    font-size: 30px;
    line-height: 34px;
    font-weight: 700;
}

body p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: #7A7A7A;
}

body ul,
body ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.siteContainer {
    max-width: 1230px;
    margin: 0 auto;
}

header.siteHeader {
    padding: 20px 0;
    background-color: #fff;
}

body.headerSticky header.siteHeader {
    -webkit-box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 5px 14px 0px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 99;
}

.headerRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.siteLogo {
    width: 18%;
}

.siteNavigation {
    width: 82%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.siteNavigation a.btnTheme {
    margin-left: 80px;
}

.siteNavigation ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    list-style: none;
    -webkit-column-gap: 40px;
    -moz-column-gap: 40px;
    column-gap: 40px;
}

.siteNavigation ul li {
    position: relative;
}

.siteNavigation ul li a {
    text-decoration: none;
    font-size: 18px;
    line-height: 25px;
    color: #000000;
    text-transform: capitalize;
    position: relative;
    font-weight: 600;
    display: flex;
    align-items: center;
    column-gap: 5px;
    cursor: pointer;
}

.siteNavigation ul li a::after {
    position: absolute;
    content: '';
    width: 0;
    left: 0;
    background-color: #000;
    height: 2px;
    bottom: -2px;
    transition: width ease 0.5s;
    -webkit-transition: width ease 0.5s;
    -moz-transition: width ease 0.5s;
    -ms-transition: width ease 0.5s;
    -o-transition: width ease 0.5s;
}

.siteNavigation ul li a:hover:after {
    width: 100%;
    transition: width ease 0.5s;
    -webkit-transition: width ease 0.5s;
    -moz-transition: width ease 0.5s;
    -ms-transition: width ease 0.5s;
    -o-transition: width ease 0.5s;
}

.siteNavigation ul li ul.sub-menu {
    position: absolute;
    width: 260px;
    padding: 30px;
    background-color: #fff;
    flex-direction: column;
    box-shadow: 0 8px 10px 0 rgba(0, 0, 0, 0.1);
    row-gap: 10px;
    align-items: flex-start;
    left: 0;
    opacity: 0;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.siteNavigation ul li:hover ul.sub-menu {
    opacity: 1;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.siteNavigation ul li:hover a img{
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}
/*----------------------------------------------- ----------------- Mobile Menu Css Start --------------- -----------------------------------------------*/
.mobileMenuToggle {
    display: none;
}

.mobileDropDown {
    display: none;
}

a.hamburger {
    width: 40px;
}

span.burgerLine {
    width: 100%;
    height: 2px;
    display: block;
    margin-bottom: 5px;
    background-color: var(--Green, #04B08C);
}

span.burgerLine:last-child {
    margin: 0;
}

span.burgerLine:nth-child(2) {
    width: 85%;
    margin-left: auto;
}

.mobileMenuHeader {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: solid 1px #c5c6c62e;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.siteMobileMenu .mobileMenuToggle {
    width: 35px;
}

.siteMobileMenu .mobileMenuToggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--whiteColor);
    margin-bottom: 4px;
}

.siteMobileMenu .mobileMenuToggle span:last-child {
    margin: 0;
}

.siteMobileMenu {
    display: none;
}

.mobileMenuActive {
    overflow: hidden;
}

.sideBar-container .sideBarOverlay {
    z-index: -1;
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    background-color: transparent;
    visibility: hidden;
}

.mobileMenuActive .sideBar-container .sideBarOverlay {
    opacity: 1;
    z-index: 9;
    cursor: pointer;
    pointer-events: visible;
    visibility: visible;
}

.sideBar-container .mobileSideBarMenu {
    position: fixed;
    max-width: 450px;
    width: 90%;
    height: 100%;
    right: 0;
    z-index: -1;
    top: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-shadow: 0 0 20px #00000030;
    box-shadow: 0 0 20px #00000030;
    overflow-y: scroll;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(-00%);
    -o-transform: translateX(100%);
    background-color: #fff;
    visibility: hidden;
    padding: 40px 30px;
}

.mobileMenuActive .sideBar-container .mobileSideBarMenu {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    opacity: 1;
    pointer-events: visible;
    transform: translateX(0%);
    z-index: 999;
    visibility: visible;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
}

.siteNavigation .siteBarMenu ul {
    display: block;
    /* max-width: 80%; */
    margin-left: auto;
}

.siteNavigation .siteBarMenu ul ul {
    max-width: 100%;
    margin: 0 10px;
    /* border-right: solid 1px #dddd; */
}

.mobileSideBarMenu ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.mobileSideBarMenu ul li {
    display: block;
    text-align: right;
    margin: 0;
    padding: 15px 0;
    border-bottom: solid 1px #ddd;
    position: relative;
}

.mobileSideBarMenu ul li.menu-item-has-children::before {
    position: absolute;
    content: '';
    width: 24px;
    height: 24px;
    left: 0;
    top: 10px;
    background-image: url(/wp-content/uploads/2023/06/mingcute_down-line-min.svg);
    opacity: 0.7;
}

.mobileSideBarMenu ul li.menu-item-has-children.subMenuActive::before {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

a.sideBarMenuToggle {
    position: absolute;
    left: 20px;
    top: 30px;
    z-index: 9;
}

.mobileSideBarMenu ul li a {
    position: relative;
    text-transform: capitalize;
}

a.sideBarMenuToggle {
    font-size: 30px;
    line-height: 0;
    font-weight: 400;
    color: var(--darkGray);
}

.mobileSideBarMenu ul li.newTagMenu::after {
    height: 16px;
}

/*----------------------------------------------- ----------------- Footer Css Start--------------- -----------------------------------------------*/
footer.siteFooter {
    background-color: #105184;
    padding-top: 70px;
}

.footerRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.footerDesciption {
    width: 31.4%;
}

.footerMenu {
    width: 47.1%;
    padding: 0 80px 0 110px;
}

.footerAddress {
    width: 21.5%;
}

.footerDesciption p {
    color: #B9C6D1;
    font-size: 16px;
    line-height: 22px;
    font-weight: 300;
    margin: 30px 0 0;
}

.footeCol h5 {
    font-size: 20px;
    line-height: 27px;
    text-transform: capitalize;
    color: #fff;
    font-weight: 600;
    margin: 0 0 30px;
    font-family: 'Nunito';
}

.footerMenu ul {
    list-style: none;
}

.footeMenuRow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-column-gap: 65px;
    -moz-column-gap: 65px;
    column-gap: 65px;
}

.footeCol ul li:last-child {
    margin: 0;
}

.footeCol ul li {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 22px;
    color: #B9C6D1;
    font-weight: 300;
}

.footeCol ul li a {
    text-decoration: none;
    font-size: 16px;
    line-height: 22px;
    color: #B9C6D1;
    font-weight: 300;
    position: relative;
}

.footerAddress ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 15px;
}


.footeCol.footerAddress ul li {
    background-repeat: no-repeat;
    line-height: 22px;
    color: #B9C6D1;
    padding-left: 32px;
    background-position: center left;
    margin: 0;
}

.footeCol ul li a::after {
    position: absolute;
    content: '';
    width: 0;
    left: 0;
    background-color: #fff;
    height: 2px;
    bottom: 0;
    transition: width ease 0.5s;
    -webkit-transition: width ease 0.5s;
    -moz-transition: width ease 0.5s;
    -ms-transition: width ease 0.5s;
    -o-transition: width ease 0.5s;
}

.footeCol ul li a:hover:after {
    width: 100%;
    transition: width ease 0.5s;
    -webkit-transition: width ease 0.5s;
    -moz-transition: width ease 0.5s;
    -ms-transition: width ease 0.5s;
    -o-transition: width ease 0.5s;
}

.copyRight {
    padding: 24px 0;
    border-top: solid 2px rgba(255, 255, 255, 0.1);
    text-align: center;
    margin-top: 50px;
}

.copyRight p {
    font-size: 12px;
    line-height: 16px;
    color: #B9C6D1;
    font-weight: 300;
}