:root {
    --body: #fff;
    --black: #000;
    --white: #fff;
    --theme: #81c784;
    --theme2: #4AAB3D;
    --header: #0D0D0E;
    --btn:#FFF176;
    --text: #585858;
    --text-2: #ffffffcc;
    --border: #E3E3E3;
    --border2: #242449;
    --border3: #5262FF;
    --bg: #F3F7FB;
    --bg2: #282832;
    --bg3: #ffffff33;
    --box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
    --box-shadow-2: 0px 4px 25px rgba(56, 75, 255, 0.1);
}

.theme-btn {
    background-color: var(--theme);
    color: var(--white);
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 24px 40px;
    border-radius: 0;
    text-transform: capitalize;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 1;
    line-height: 1;
}

.theme-btn::before {
    content: "";
    background-color: var(--header);
    width: 0;
    height: 50%;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.theme-btn::after {
    content: "";
    background-color: var(--header);
    width: 0;
    height: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: -1;
}

.theme-btn i {
    margin-left: 10px;
}

.theme-btn:hover {
    color: var(--white);
}

.theme-btn:hover::before,
.theme-btn:hover::after {
    width: 100%;
}

.theme-btn.hover-white::before,
.theme-btn.hover-white::after {
    background-color: var(--white);
}

.theme-btn.hover-white:hover {
    color: var(--header);
}

.theme-btn.bg-white {
    background-color: var(--white);
    color: var(--header);
}

.theme-btn.bg-white:hover {
    color: var(--white);
}

.theme-btn.border-white {
    border: 1px solid var(--white);
    background-color: transparent;
    padding: 22px 40px;
}

@media (max-width: 767px) {
    .theme-btn.border-white {
        padding: 18px 32px;
    }
}

@media (max-width: 575px) {
    .theme-btn.border-white {
        padding: 16px 30px;
    }
}

.theme-btn.border-white::before,
.theme-btn.border-white::after {
    background-color: var(--white);
}

.theme-btn.border-white:hover {
    color: var(--header) !important;
}

@media (max-width: 767px) {
    .theme-btn {
        padding: 20px 32px;
    }
}

@media (max-width: 575px) {
    .theme-btn {
        padding: 18px 30px;
        font-size: 14px;
    }
}

.theme-btn-2 {
    font-size: 16px;
    display: inline-block;
    font-weight: 600;
    color: var(--header);
    text-transform: capitalize;
}

.theme-btn-2 i {
    margin-left: 10px;
}

.theme-btn-2:hover {
    color: var(--theme);
}

/* --------------------------------------------
      Template Default Fonts & Fonts Styles
   ---------------------------------------------- */
body {
    font-family: "Kumbh Sans", sans-serif;
    font-size: 16px;
    font-weight: normal;
    line-height: 28px;
    color: var(--text);
    background-color: var(--white);
    padding: 0;
    margin: 0;
    overflow-x: hidden;
}

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

button {
    border: none;
    background-color: transparent;
    padding: 0;
}

input:focus {
    color: var(--white);
    outline: none;
}

input {
    color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Kumbh Sans", sans-serif;
    margin: 0px;
    padding: 0;
    color: var(--header);
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 112%;
}

h2 {
    font-size: 40px;
    line-height: 125%;
    font-weight: 700;
}

@media (max-width: 1199px) {
    h2 {
        font-size: 34px;
    }
}

@media (max-width: 767px) {
    h2 {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    h2 {
        font-size: 28px;
    }
}

h3 {
    font-size: 22px;
    font-weight: 600;
}

@media (max-width: 575px) {
    h3 {
        font-size: 20px;
    }
}

h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 130%;
}

h5 {
    font-size: 18px;
    font-weight: 500;
}

h6 {
    font-size: 16px;
    font-weight: 600;
    line-height: 145%;
}

a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    color: var(--header);
    transition: all 0.4s ease-in-out;
}

p {
    margin: 0px;
    transition: all 0.4s ease-in-out;
}

span {
    margin: 0px;
    transition: all 0.4s ease-in-out;
}

.fix {
    overflow: hidden;
}


.header-top-section {
    background-color: var(--header);
    padding: 10px 0;
    position: relative;
    z-index: 99;
}

@media (max-width: 991px) {
    .header-top-section {
        display: none;
    }
}

.header-top-section::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--theme);
    z-index: -1;
    left: 81%;
}

@media (max-width: 1899px) {
    .header-top-section::before {
        display: none;
    }
}

.header-top-section.top-style-2 {
    position: relative;
}

.header-top-section.top-style-2::before {
    display: none;
}

.header-top-section.top-style-2::after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color: var(--theme);
    width: 16%;
}

@media (max-width: 1899px) {
    .header-top-section.top-style-2::after {
        display: none;
    }
}

.header-top-section.top-style-3::before {
    display: none;
}

.header-top-section .container-fluid {
    padding: 0 130px;
}

@media (max-width: 1399px) {
    .header-top-section .container-fluid {
        padding: 0 50px;
    }
}

.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top-wrapper .contact-list {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-top-wrapper .contact-list li {
    font-size: 15px;
    color: var(--text-2);
}

.header-top-wrapper .contact-list li a {
    color: var(--text-2);
}

.header-top-wrapper .contact-list li i {
    color: var(--white);
    margin-right: 10px;
}

.header-top-wrapper .top-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header-top-wrapper .top-right .social-icon {
    gap: 15px;
}

.header-top-wrapper .top-right .social-icon span {
    color: var(--white);
    font-weight: 500;
}

.header-top-wrapper .top-right .social-icon a {
    color: var(--white);
}

.header-top-wrapper .top-right .flag-wrap {
    position: relative;
    width: 160px;
}

.header-top-wrapper .top-right .flag-wrap .nice-select {
    padding: 0 0 0 60px;
    background: transparent;
    border: none;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 999;
    border: none !important;
    padding-bottom: 0 !important;
}

.header-top-wrapper .top-right .flag-wrap .nice-select::after {
    right: 23px;
    border-bottom: 2px solid transparent;
    border-right: 2px solid transparent;
    width: 10px;
    height: 10px;
    top: 15px;
    border-bottom: 2px solid transparent;
    border-color: var(--theme);
    border-right: 2px solid theme-color;
}

.header-top-wrapper .top-right .flag-wrap .nice-select span {
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--white);
}

.header-top-wrapper .top-right .flag-wrap .flag {
    position: absolute;
    top: 0;
    left: 15px;
    z-index: 1;
}

@media (max-width: 767px) {
    .header-top-wrapper .top-right .flag-wrap .flag {
        display: none;
    }
}

.header-top-wrapper .top-right .flag-wrap .flag img {
    width: 100%;
    height: 100%;
    border: 4px solid var(--white);
    border-radius: 50%;
}

.header-top-wrapper.style-2 {
    margin-left: 250px;
}

@media (max-width: 1899px) {
    .header-top-wrapper.style-2 {
        margin-left: 0;
    }
}

.header-logo img {
    width: 191px;
    height: 39px;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.header-main .main-menu ul {
    margin-bottom: 0;
}

.header-main .main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-inline-end: 40px;
}

.header-main .main-menu ul li:last-child {
    margin-inline-end: 0;
}

.header-main .main-menu ul li a {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--header);
    padding: 20px 0;
    text-align: left;
    position: relative;
    text-transform: capitalize;
    transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a:hover {
    color: var(--theme) !important;
}

.header-main .main-menu ul li .submenu {
    position: absolute;
    top: 100%;
    inset-inline-start: 0;
    min-width: 280px;
    background: var(--white);
    z-index: 99999;
    visibility: hidden;
    opacity: 0;
    transform-origin: top center;
    color: var(--header);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    transform: translateY(10px);
    transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li .submenu li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
}

.header-main .main-menu ul li .submenu li a {
    position: relative;
    z-index: 11;
    font-size: 16px;
    font-weight: 600;
    color: var(--header);
    padding: 0 25px;
    padding-bottom: 11px;
    padding-top: 11px;
    width: 100%;
    border-bottom: 1px solid #eeeeee;
}

.header-main .main-menu ul li .submenu li:last-child a {
    border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
    inset-inline-start: 100%;
    top: 0;
    visibility: hidden;
    opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover>a {
    background: var(--theme2);
    color: var(--white) !important;
}

.header-main .main-menu ul li .submenu li:hover>a::after {
    color: var(--theme2);
}

.header-main .main-menu ul li .submenu li:hover>.submenu {
    -webkit-transform: translateY(1);
    -moz-transform: translateY(1);
    -ms-transform: translateY(1);
    -o-transform: translateY(1);
    transform: translateY(1);
    visibility: visible;
    opacity: 1;
}

.header-main .main-menu ul li .submenu li.has-dropdown>a::after {
    position: absolute;
    top: 50%;
    inset-inline-end: 25px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    color: var(--theme);
}

.header-main .main-menu ul li .has-homemenu {
    width: 1000px;
    padding: 30px 30px 10px 30px;
    opacity: 0;
    left: -250px;
    visibility: hidden;
    padding: 30px 30px 10px 30px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .header-main .main-menu ul li .has-homemenu .homemenu-items {
        flex-wrap: wrap;
    }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
    position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
    position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    margin-top: 20px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 14px 20px;
    color: var(--white) !important;
    width: initial;
    font-size: 14px;
    text-align: center;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    color: var(--white) !important;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(91, 155, 55, 0)), to(#5B9B37));
    background: linear-gradient(to bottom, rgba(91, 155, 55, 0) 0%, #5B9B37 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
    width: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 16px;
}

.header-main .main-menu ul li:hover>a {
    color: var(--theme2);
}

.header-main .main-menu ul li:hover>a::after {
    color: var(--theme);
}

.header-main .main-menu ul li:hover>.submenu {
    visibility: visible;
    opacity: 1;
    transform: translateY(0px);
}

.header-main .sidebar__toggle {
    cursor: pointer;
    font-size: 20px;
}

.header-1 {
    position: relative;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    z-index: 999;
}

.header-1::before {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 125px;
    content: "";
    background-color: var(--theme);
    z-index: -1;
}

@media (max-width: 1899px) {
    .header-1::before {
        display: none !important;
    }
}

.header-1 .container-fluid {
    padding: 0 130px;
}

@media (max-width: 1399px) {
    .header-1 .container-fluid {
        padding: 0 50px;
    }
}

@media (max-width: 991px) {
    .header-1 .container-fluid {
        padding: 0 40px;
    }
}

@media (max-width: 575px) {
    .header-1 .container-fluid {
        padding: 0 15px;
    }
}

@media screen and (max-width: 1025px) {
    .header-1 .header-main .main-menu ul li {
        margin-inline-end: 25px;
    }
}

.header-1 .header-main .main-menu ul li .has-homemenu {
    left: -400px;
}

@media (max-width: 1600px) {
    .header-1 .header-main .main-menu ul li .has-homemenu {
        left: -300px;
    }
}

.header-1 .header-main .header-right {
    gap: 50px;
}

@media (max-width: 991px) {
    .header-1 .header-main .header-right {
        gap: 25px;
    }
}

.header-1 .header-main .header-right .search-icon {
    color: var(--header);
}

.header-1 .header-main .header-right .header-button {
    margin-right: 50px;
}

.header-1 .header-main .header-right .header-button .theme-btn {
    padding: 22px 30px;
}

@media (max-width: 1899px) {
    .header-1 .header-main .header-right .header-button {
        margin-right: 0;
    }
}

@media (max-width: 1600px) {
    .header-1 .header-main .header-right .header-button {
        display: none;
    }
}

.header-1 .header-main .header-right .header__hamburger {
    margin-right: -70px;
}

@media (max-width: 1899px) {
    .header-1 .header-main .header-right .header__hamburger {
        margin-right: 0;
    }
}

.header-1 .header-main .header-right .header__hamburger .sidebar__toggle {
    font-size: 24px;
    color: var(--white);
}

@media (max-width: 1899px) {
    .header-1 .header-main .header-right .header__hamburger .sidebar__toggle {
        color: var(--theme);
    }
}

/*
  .header-2 .container-fluid {
    padding: 0 100px;
  }
  @media (max-width: 1899px) {
    .header-2 .container-fluid {
      padding: 0 50px;
    }
  }
  @media (max-width: 1399px) {
    .header-2 .container-fluid {
      padding: 0 40px;
    }
  }
  @media (max-width: 1199px) {
    .header-2 .container-fluid {
      padding: 0 30px;
    }
  }
  .header-2 .header-left {
    display: flex;
    align-items: center;
    gap: 50px;
  }
  .header-2 .header-right {
    gap: 40px;
  }
  .header-2 .header-right .icon-items {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  @media (max-width: 1399px) {
    .header-2 .header-right .icon-items {
      display: none;
    }
  }
  @media (max-width: 1199px) {
    .header-2 .header-right .header-button {
      display: none;
    }
  }*/

.sidebar__toggle {
    cursor: pointer;
}

.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 100;
    transition: all 0.9s;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
    z-index: 999;
}

.sticky.header-1::before {
    display: none;
}

.sticky.header-1 .header-main .header-right {
    gap: 50px;
}

@media (max-width: 991px) {
    .sticky.header-1 .header-main .header-right {
        gap: 25px;
    }
}

.sticky.header-1 .header-main .header-right .header-button {
    margin-right: 0;
}

.sticky.header-1 .header-main .header-right .header__hamburger {
    display: none !important;
}

@media (max-width: 991px) {
    .sticky.header-1 .header-main .header-right .header__hamburger {
        display: block !important;
    }
}



.offcanvas__info {
    background: var(--bg) none repeat scroll 0 0;
    border-left: 2px solid var(--theme2);
    position: fixed;
    right: 0;
    top: 0;
    width: 400px;
    height: 100%;
    -webkit-transform: translateX(calc(100% + 80px));
    -moz-transform: translateX(calc(100% + 80px));
    -ms-transform: translateX(calc(100% + 80px));
    -o-transform: translateX(calc(100% + 80px));
    transform: translateX(calc(100% + 80px));
    -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    z-index: 99999;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    scrollbar-width: none;
}

.offcanvas__info::-webkit-scrollbar {
    display: none;
}

.offcanvas__info.info-open {
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.offcanvas__logo a img {
    width: 150px;
}

.offcanvas__wrapper {
    position: relative;
    height: 100%;
    padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas__content .text {
    color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--theme);
    position: relative;
    z-index: 9;
    cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
    color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
    margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
    margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
    color: var(--text);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
    margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
    margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
    color: var(--theme);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
    text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
    width: 100%;
    padding: 16px 40px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon {
    margin-top: 30px;
    gap: 10px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 16px;
    display: block;
    background: transparent;
    color: var(--text);
    border-radius: 50%;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-align: center;
    border: 1px solid var(--border);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
}

.offcanvas__overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: #151515;
    z-index: 900;
    top: 0;
    opacity: 0;
    visibility: hidden;
    right: 0;
}

.offcanvas__overlay.overlay-open {
    opacity: 0.8;
    visibility: visible;
}

@media (max-width: 450px) {
    .offcanvas__info {
        width: 300px;
    }
}

@media (max-width: 575px) {
    .offcanvas__wrapper {
        padding: 20px;
    }
}


.search-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999;
    background-color: rgba(255, 255, 255, 0.9);
}

.search-wrap .search-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.search-wrap .search-cell {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.search-wrap .search-field-holder {
    width: 50%;
    margin: auto;
    position: relative;
    animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .search-wrap .search-field-holder {
        width: 70%;
    }
}

@media (max-width: 575px) {
    .search-wrap .search-field-holder {
        width: 80%;
    }
}

.search-wrap .main-search-input {
    width: 100%;
    height: 70px;
    border: 0;
    padding: 0 50px;
    text-transform: capitalize;
    background: transparent;
    font-size: 25px;
    color: var(--theme);
    border-bottom: 2px solid var(--theme);
    text-align: center;
    letter-spacing: 2px;
}

@media (max-width: 575px) {
    .search-wrap .main-search-input {
        height: 50px;
        padding: 0 0;
        line-height: 50px;
        font-size: 18px;
    }
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
    background-color: var(--theme);
}

input.main-search-input::placeholder {
    color: var(--theme);
    opacity: 1;
    font-size: 25px;
}

@media (max-width: 575px) {
    input.main-search-input::placeholder {
        font-size: 18px;
    }
}

.search-close {
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 30px;
    color: var(--theme);
    cursor: pointer;
}


.mean-container a.meanmenu-reveal {
    display: none;
}

.mean-container .mean-nav {
    background: none;
    margin-top: 0;
}

.mean-container .mean-bar {
    padding: 0;
    min-height: auto;
    background: none;
}

.mean-container .mean-nav>ul {
    padding: 0;
    margin: 0;
    width: 100%;
    list-style-type: none;
    display: block !important;
}

.mean-container .mean-nav>ul .homemenu-items {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

@media (max-width: 991px) {
    .mean-container .mean-nav>ul .homemenu-items {
        flex-wrap: wrap;
    }
}

.mean-container .mean-nav>ul .homemenu-items .homemenu {
    position: relative;
}

@media (max-width: 991px) {
    .mean-container .mean-nav>ul .homemenu-items .homemenu {
        max-width: 300px;
        text-align: center;
        margin: 0 auto;
        border: 1px solid var(--border);
        padding: 10px;
    }
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb {
    position: relative;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    gap: 10px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
    margin-top: 20px;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
    padding: 14px 20px;
    color: var(--white) !important;
    width: initial;
    font-size: 14px;
    text-align: center;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
    color: var(--white) !important;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb::before {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#5e5ef6));
    background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #5e5ef6 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    content: "";
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover::before {
    visibility: visible;
    opacity: 1;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
    opacity: 1;
    visibility: visible;
    bottom: 50%;
    transform: translateY(50%);
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-thumb img {
    width: 100%;
}

.mean-container .mean-nav>ul .homemenu-items .homemenu .homemenu-title {
    text-align: center;
    margin: 15px auto;
    display: inline-block;
    font-size: 16px;
}

.mean-container a.meanmenu-reveal {
    display: none !important;
}

.mean-container .mean-nav ul li a {
    width: 100%;
    padding: 10px 0;
    color: var(--header);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    text-transform: capitalize;
    border-bottom: 1px solid var(--border) !important;
    border: none;
}

.mean-container .mean-nav ul li a:hover {
    color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
    border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
    color: var(--theme2);
}

.mean-container .mean-nav ul li a.mean-expand {
    margin-top: 5px;
    padding: 0 !important;
}

.mean-container .mean-nav ul li>a>i {
    display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
    display: inline-block;
    font-size: 18px;
}

.mean-container .mean-nav>ul>li:first-child>a {
    border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
    height: 200px;
    width: 100%;
    padding: 0;
    border-top: 0;
    margin-bottom: 20px;
}




.footer-bg {
    background-color: var(--header);
}

.footer-section {
    position: relative;
}

.footer-section .shape-1 {
    position: absolute;
    bottom: 0;
    left: -5%;
}

.footer-section .shape-2 {
    position: absolute;
    bottom: 0;
    right: -3%;
}

.footer-section .footer-shape-4 {
    position: absolute;
    top: 0;
    left: -5%;
}

.contact-info-area {
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 1199px) {
    .contact-info-area {
        flex-wrap: wrap;
        gap: 40px;
        padding-top: 85px;
        justify-content: initial;
    }
}

@media (max-width: 575px) {
    .contact-info-area {
        gap: 30px;
    }
}

.contact-info-area .contact-info-items {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    position: relative;
    padding-bottom: 40px;
}

@media (max-width: 1199px) {
    .contact-info-area .contact-info-items {
        flex-wrap: wrap;
        padding-bottom: 80px;
    }
}

.contact-info-area .contact-info-items:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 100px;
    height: 110px;
}

@media (max-width: 1399px) {
    .contact-info-area .contact-info-items:not(:last-child) {
        border: none;
    }
}

@media (max-width: 1199px) {
    .contact-info-area .contact-info-items:not(:last-child) {
        border: none;
        height: initial;
        padding: 0;
    }
}

.contact-info-area .contact-info-items .icon {
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    position: relative;
}

.contact-info-area .contact-info-items .icon::before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../images/circle-2.png");
    animation: cir36 10s linear infinite;
}

.contact-info-area .contact-info-items .content p {
    color: var(--white);
    margin-bottom: 5px;
}

.contact-info-area .contact-info-items .content h3 {
    font-size: 24px;
    color: var(--white);
}

.contact-info-area .contact-info-items .content h3 a {
    color: var(--white);

}


@keyframes cir36 {
    100% {
        transform: rotate(360deg);
    }
}


.footer-widgets-wrapper {
    padding: 90px 0 120px;
    position: relative;
    z-index: 9;
}

.footer-widgets-wrapper .shape-1 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.footer-widgets-wrapper .shape-2 {
    position: absolute;
    top: 0;
    right: 0;
}

@media (max-width: 1199px) {
    .footer-widgets-wrapper {
        padding: 60px 0 90px;
    }
}

@media (max-width: 991px) {
    .footer-widgets-wrapper {
        padding: 50px 0 70px;
    }
}

.footer-widgets-wrapper .single-footer-widget {
    margin-top: 30px;
}

.footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 30px;
}
.footer-widgets-wrapper .single-footer-widget .widget-head img{
    width:100%;
    max-width:240px;
}

@media (max-width: 575px) {
    .footer-widgets-wrapper .single-footer-widget .widget-head {
        margin-bottom: 20px;
    }
}

.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
    font-weight: bold;
    color: var(--white);
    font-size: 24px;
    border-bottom: 1px solid var(--white);
    display: inline-block;
    padding-bottom: 20px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content p {
    color: var(--text-2);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
    margin-top: 40px;
    gap: 15px;
    position: relative;
    z-index: 9;
}

@media (max-width: 575px) {
    .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
        margin-top: 20px;
    }
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    font-size: 16px;
    display: block;
    color: var(--white);
    transition: all 0.4s ease-in-out;
    text-align: center;
    background-color: transparent;
    border: 1px solid rgba(227, 227, 227, 0.2);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
    background-color: var(--theme);
    color: var(--white);
    border: 1px solid transparent;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info {
    margin-top: 20px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li {
    color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li:not(:last-child) {
    margin-bottom: 20px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li i {
    font-size: 16px;
    color: var(--white);
    margin-right: 10px;
    font-size: 20px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li a {
    color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
    position: relative;
    margin-top: 40px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input {
    background: transparent;
    border: none;
    outline: none;
    padding: 18px 20px;
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::placeholder {
    color: var(--text-2);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 60px;
    height: 55px;
    line-height: 70px;
    border-radius: 4px;
    text-align: center;
    background-color: var(--theme);
    color: var(--white);
    bottom: 5px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn i {
    font-size: 32px;
}

.footer-widgets-wrapper .single-footer-widget .list-area li {
    transition: all 0.4s ease-in-out;
}

.footer-widgets-wrapper .single-footer-widget .list-area li:not(:last-child) {
    margin-bottom: 15px;
}

.footer-widgets-wrapper .single-footer-widget .list-area li a {
    color: var(--text-2);
}

.footer-widgets-wrapper .single-footer-widget .list-area li a i {
    margin-right: 5px;
}

.footer-widgets-wrapper .single-footer-widget .list-area li:hover {
    margin-left: 5px;
}

.footer-widgets-wrapper .single-footer-widget .list-area li:hover a {
    color: var(--theme);
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .thumb {
    width: 80px;
    height: 80px;
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .thumb img {
    width: 100%;
    /*height: 100%;*/
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content .post-date {
    margin-bottom: 10px;
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content .post-date li {
    color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 {
    font-size: 16px;
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 a {
    color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 a:hover {
    color: var(--theme);
}

.footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item {
    overflow: hidden;
}

.footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item .thumb {
    width: 80px;
    height: 80px;
    float: left;
    margin-right: 20px;
}

.footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item .post-content .post-date {
    color: var(--theme);
    margin-bottom: 10px;
}

.footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item .post-content .post-date i {
    margin-right: 10px;
}

.footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item .post-content h6 {
    font-size: 16px;
}

.footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item .post-content h6 a {
    color: var(--text);
}

.footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item .post-content h6 a:hover {
    color: var(--theme);
}

@media (min-width: 1200px) {
    .footer-widgets-wrapper .single-footer-widget.style-margin {
        margin-left: 70px;
    }
}

.footer-widgets-wrapper .footer-style-2 {
    background-color: rgba(122, 135, 255, 0.15);
    margin-top: 30px;
    padding: 20px 50px 50px 50px;
    position: relative;
    z-index: 9;
}

.footer-widgets-wrapper .footer-style-2 .single-footer-widget .footer-content .contact-info-area-2 {
    margin-top: 20px;
}

.footer-widgets-wrapper .footer-style-2 .single-footer-widget .footer-content .contact-info-area-2 .contact-info-item-2 {
    display: flex;
    gap: 16px;
}

.footer-widgets-wrapper .footer-style-2 .single-footer-widget .footer-content .contact-info-area-2 .contact-info-item-2 .icon {
    font-size: 24px;
    color: var(--white);
}

.footer-widgets-wrapper .footer-style-2 .single-footer-widget .footer-content .contact-info-area-2 .contact-info-item-2 .content h6 {
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.footer-widgets-wrapper .footer-style-2 .single-footer-widget .footer-content .contact-info-area-2 .contact-info-item-2 .content a {
    color: var(--text-2);
}

.footer-widgets-wrapper .footer-style-2 .single-footer-widget .footer-content .apps-image {
    gap: 16px;
    margin-top: 30px;
}

.footer-bottom {
    padding: 20px 0;
    position: relative;
    z-index: 9;
    background-color: var(--theme);
}

@media (max-width: 991px) {
    .footer-bottom .footer-wrapper {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center !important;
        margin-top: 30px;
    }
}

.footer-bottom .footer-wrapper p {
    color: var(--white);
}

.footer-bottom .footer-wrapper p a {
    color: var(--white);
}

.footer-bottom .footer-wrapper .footer-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-bottom .footer-wrapper .footer-menu li a {
    color: var(--white);
    background-image: linear-gradient(var(--white), var(--white));
    background-position: 0 95%;
    background-repeat: no-repeat;
    background-size: 0% 2px;
    display: inline-block;
    transition: all 0.4s ease-in-out;
}

.footer-bottom .footer-wrapper .footer-menu li a:hover {
    background-size: 100% 1px;
}

.footer-bottom .scroll-icon {
    position: absolute;
    left: 50%;
    top: -40px;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    line-height: 60px;
    background-color: var(--theme);
    border-radius: 50%;
    text-align: center;
    color: var(--white);
    border: 5px solid var(--white);
    display: inline-block;
    z-index: 99;
}

.footer-bottom.style-2 {
    background-color: rgba(122, 135, 255, 0.15);
}

.footer-bottom.style-2 .footer-wrapper p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom.style-2 .footer-wrapper p a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom.style-2 .footer-wrapper .footer-menu li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom.style-2 .scroll-icon {
    left: 93%;
}

@media (max-width: 1399px) {
    .footer-bottom.style-2 .scroll-icon {
        left: 50%;
    }
}

.footer-bottom.style-3 {
    background-color: initial;
    margin-top: -25px;
}

.footer-bottom.style-3 .footer-wrapper {
    background-color: rgba(122, 135, 255, 0.15);
    padding: 35px 30px;
}

@media (max-width: 991px) {
    .footer-bottom.style-3 .footer-wrapper {
        gap: 30px;
        justify-content: space-between !important;
    }
}

@media (max-width: 767px) {
    .footer-bottom.style-3 .footer-wrapper {
        justify-content: center !important;
    }
}

.footer-bottom.style-3 .footer-wrapper p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom.style-3 .footer-wrapper p a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom.style-3 .scroll-icon {
    top: 25%;
    left: 93%;
}

@media (max-width: 1399px) {
    .footer-bottom.style-3 .scroll-icon {
        left: 50%;
        top: 5%;
    }
}

@media (max-width: 767px) {
    .footer-bottom.style-3 .scroll-icon {
        left: 78%;
        top: 50%;
    }
}

@media (max-width: 575px) {
    .footer-bottom.style-3 .scroll-icon {
        left: 90%;
        top: 50%;
    }
}

.footer-bottom.style-4 {
    background-color: transparent;
    padding: 30px 0;
}