/* ------------------------------------------------
  Project:   Agruno - Fertilizer WordPress Theme
  Author:    Infoicon
------------------------------------------------ */

/* ------------------------
    Table of Contents

  1. General
  2. Typography
  3. Text color
  4. Background color
  5. Banner Slider
  6. List Icon
  7. Contact Form
  8. Extra
  9. Responsive Css
------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #6a9b16;
    --secondary-color: #1c451d;
    --text-color: #1c451d;
    --body-color: #1C1C1C;
    --white-color: #FFFFFF;
    --rgba-color: rgba(255, 255, 255, 0.9);
    --bg-dark-color: #000000;
    --bg-light-color: #F9F9F9;
    --border-light-color: #CFCFCF;
    --border-dark-color: #1C1C1C;
    --body-font-family: "Roboto Condensed", sans-serif;
    --secondary-font-family: "Roboto Condensed", sans-serif;
    --body-background: #fbfff5;
}

/* ------------------------
    Base Css
------------------------*/

/* ------------------------
    Table of Contents

  1. General
  2. Transition
  3. Pre Loader
  4. Scroll to Top
  5. Header
  6. Footer
  7. Page Title

 
/* ------------------------
    General
------------------------*/


body {
    scroll-behavior: smooth;
    font-family: var(--body-font-family);
    font-weight: normal;
    font-style: normal;
    font-size: 18px;
    line-height: 26px;
    color: var(--body-color);
    overflow-x: hidden;
    background-color: var(--body-background);
}

a,
a:focus {
    text-decoration: none !important;
}

a,
a:visited {
    text-decoration: none;
    color: var(--text-color);
}

a:focus,
a:hover {
    color: var(--text-color);
    text-decoration: none !important;
}

a,
button,
input {
    outline: medium none !important;
}

*::-moz-selection {
    background: var(--text-color);
    color: var(--white-color);
    text-shadow: none;
}

::-moz-selection {
    background: var(--text-color);
    color: var(--white-color);
    text-shadow: none;
}

::selection {
    background: var(--text-color);
    color: var(--white-color);
    text-shadow: none;
}


/* ------------------------
    Transition
------------------------*/
a,
.btn,
button,
img,
input,
.dropdown-item,
.main-nav>ul>li>a:before,
.social-icons li:hover a,
.themeht-btn,
.themeht-btn::before,
.rounded-button i,
.featured-item,
.featured-item .featured-icon i,
.featured-item.style-2:before,
.service-item,
.service-desc,
.service-item.style-3 .service-desc:after,
.service-item.style-3 .service-image:after,
.step-item,
.step-number,
.portfolio-item,
.portfolio-desc,
.portfolio-item.style-3:before,
.swiper-button-next,
.swiper-button-prev,
.service-widget li a:before,
.service-widget li a:after,
.portfolio-img-wrapper,
.portfolio-img-shape,
.portfolio-image {
    -webkit-transition: all 0.5s ease-in-out 0s;
    -moz-transition: all 0.5s ease-in-out 0s;
    -ms-transition: all 0.5s ease-in-out 0s;
    -o-transition: all 0.5s ease-in-out 0s;
    transition: all 0.5s ease-in-out 0s;
}

.box-shadow {
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
}

/* ------------------------
    Pre Loader
------------------------*/
#ht-preloader {
    background: var(--white-color);
    bottom: 0;
    height: 100%;
    left: 0;
    overflow: hidden !important;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    width: 100%;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    position: relative;
}

.loader span {
    -webkit-animation-name: shakeX;
    animation-name: shakeX;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    color: var(--text-color);
    font-size: var(--loader-font-size);
    position: relative;
    line-height: 1;
    display: inline-block;
    font-family: var(--secondary-font-family);
    font-weight: 400;
}

/* ------------------------
    Scroll to Top
------------------------*/
.scroll-top {
    position: fixed;
    right: 50px;
    bottom: 50px;
    height: 60px;
    width: 60px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.2);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    background: var(--white-color);
}

.scroll-top.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top::after {
    position: absolute;
    font-family: 'bootstrap-icons';
    content: '\F145';
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    color: var(--text-color);
    left: 0;
    top: 0;
    height: 60px;
    width: 60px;
    cursor: pointer;
    display: block;
    z-index: 1;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.scroll-top:hover::after {
    opacity: 0;
}

.scroll-top::before {
    position: absolute;
    font-family: 'bootstrap-icons';
    content: '\F145';
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    opacity: 0;
    background-image: linear-gradient(298deg, var(--text-color), var(--text-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 0;
    top: 0;
    height: 60px;
    width: 60px;
    cursor: pointer;
    display: block;
    z-index: 2;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

.scroll-top:hover::before {
    opacity: 1;
}

.scroll-top svg path {
    fill: none;
}

.scroll-top svg.scroll-circle path {
    stroke: var(--text-color);
    stroke-width: 2;
    box-sizing: border-box;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
}

/* ------------------------
  Header
------------------------*/

/*--Header top--*/
.topbar-link a,
.topbar-link {
    color: var(--white-color);
    font-weight: 600;
}

.topbar-link i {
    margin-right: 5px;
    color: #b8ff3f;
    font-size: 20px;
    vertical-align: middle;
}

.topbar-link a:hover {
    color: var(--primary-color)
}

.header-top {
    position: relative;
    background: var(--secondary-color);
    padding: 10px 50px;
    border-radius: 50px 50px 0 50px;
    display: none;
}

@media screen {}

.header-top ul {
    margin: 0;
}

.header-top .topbar-link li {
    display: inline-block;
    margin: 0;
    padding: 0 10px;
    font-size: 15px;
    font-weight: 300;
}

.header-top .topbar-link li a {
    font-weight: 300;
    font-size: 15px;
}

@media (max-width: 1680px) {
    .header-top .topbar-link li {
        font-size: 13px;
    }

    .header-top .topbar-link li a {
        font-size: 13px;
    }
}

.header-top .topbar-link li:first-child {
    padding-left: 0;
}

.header-top .topbar-link li:last-child {
    padding-right: 0;
}

.header .social-icons li {
    margin: 0 10px;
}

.header .social-icons li a {
    color: var(--white-color);
    font-size: 14px;
    width: auto;
    height: auto;
    line-height: 1;
}

.header .social-icons li a:hover {
    color: var(--primary-color);
}

.header-number {
    display: flex;
    align-items: center;
}

.header-number select,
.header-number select:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--bs-border-color);
}

.header-number select option:hover {
    background: var(--primary-color);
}

.header-number span {
    display: block;
    color: var(--white-color);
}

.header-number i {
    font-size: 34px;
    color: var(--white-color);
    display: inline-block;
    line-height: 1;
    margin-right: 10px;
}

.fixed-header .header-number span,
.fixed-header .header-app span,
.fixed-header .header-number i {
    color: var(--primary-color);
}

.header-number a {
    color: var(--primary-color);
}

.header-number a:hover {
    color: var(--secondary-color);
    text-decoration: underline !important;
}

.main-header-inner {
    padding-left: 100px;
}

@media (max-width: 1680px) {
    .main-header-inner {
        padding-left: 30px;
    }
}

.header .themeht-btn {
    padding: 30px 50px;
}

@media (max-width: 1440px) {
    .header .themeht-btn {
        display: none;
    }
}

#header-wrap {
    position: relative;
    z-index: 999;
    /* box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07); */
    padding-left: 30px;
}

.admin-bar .header,
.admin-bar #header-wrap.fixed-header {
    top: 30px;
}

#header-wrap.fixed-header {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    background-color: var(--white-color);
    -ms-animation-name: smoothScroll;
    -moz-animation-name: smoothScroll;
    -op-animation-name: smoothScroll;
    -webkit-animation-name: smoothScroll;
    animation-name: smoothScroll;
    -ms-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    -op-animation-duration: 500ms;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -ms-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -op-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -ms-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -op-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
}

/* ------------------------
    Header
------------------------*/
.logo {
    margin-right: 70px;
    flex-shrink: 0;
}

#header-wrap.fixed-header a.navbar-brand.logo.d-inline-block.d-lg-none {
    display: block !important;
}

@media (max-width: 1680px) {
    .logo {
        margin-right: 0;
    }
}

.logo img {
    height: 91px;
}

.navbar {
    padding: 0;
}

.navbar-nav .nav-item.dropdown .dropdown-menu {
    padding: 20px 0;
    background: var(--bg-dark-color);
    top: 100%;
    border: none;
    border-top: 2px solid var(--primary-color);
    border-radius: 0;
    margin-top: 0;
    left: 0;
    width: 290px;
}

.navbar-nav .dropdown-menu .dropdown-submenu .dropdown-menu {
    background: var(--bg-dark-color);
    border-top: none;
    border-left: 2px solid var(--primary-color);
    left: 100%;
    margin: 0;
    right: auto;
    top: 0;
}

.navbar-nav .dropdown-submenu {
    display: block;
    position: relative;
}

.navbar-nav .nav-item {
    margin: 0 20px;
    padding: 35px 0;
}

@media (max-width: 1680px) {
    .navbar-nav .nav-item {
        margin: 0 10px;
    }
}

@media (max-width: 1024px) {
    .navbar-nav .nav-item {
        padding: 0;
    }
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--white-color);
    font-size: 16px;
    line-height: 1;
    border-radius: 0;
    position: relative;
    padding: 0 !important;
    display: block;
    text-transform: uppercase;
}

.fixed-header .navbar-nav .nav-link {
    color: var(--secondary-color);
}

@media (max-width: 1680px) {
    .navbar-nav .nav-link {
        font-size: 14px;
    }
}

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

.nav-item.dropdown .dropdown-menu li {
    margin: 10px 0px;
}

.nav-item.dropdown .dropdown-menu a {
    font-weight: 400;
    font-size: 15px;
    background-color: inherit;
    background-repeat: no-repeat;
    background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
    transition: .9s cubic-bezier(.32, .32, .15, 1.17);
    background-size: 0 100%;
    display: inline;
    padding: 0;
    color: var(--white-color);
    position: static;
    /* text-transform: uppercase; */
}

.nav-item.dropdown .dropdown-menu a:hover {
    color: var(--primary-color);
    background-size: 100% 100%;
}

.navbar-nav .dropdown-menu .dropdown-submenu .dropdown-toggle.show,
.navbar-nav .dropdown-menu .dropdown-submenu .dropdown-toggle:focus {
    color: var(--primary-color);
    padding-left: 10px;
}

.nav-link.dropdown-toggle::after,
.navbar-nav .dropdown-submenu .dropdown-toggle::after {
    border: none;
    font-family: bootstrap-icons !important;
    content: "\F282";
    border: none;
    margin-left: 0.3em;
    font-size: 14px;
    line-height: 1;
    vertical-align: -0.125em;
    display: inline-block;
}

.navbar-nav .dropdown-submenu .dropdown-toggle::after {
    font-size: 12px;
    position: absolute;
    right: 0;
    top: 8px;
    content: "\F285";
}

@media (min-width:992px) {
    .navbar-nav .dropdown-menu {
        min-width: 14em !important;
        max-width: 20em !important;
    }

    .navbar-nav .dropdown>.dropdown-menu {
        opacity: 0;
        position: absolute;
        display: block;
        pointer-events: none;
        background: var(--white-color);
    }

    .navbar-nav .dropdown:hover>.dropdown-menu {
        display: block;
        opacity: 1;
        pointer-events: auto;
        visibility: visible;
        -webkit-transition: all 0.5s ease-in-out 0s;
        -moz-transition: all 0.5s ease-in-out 0s;
        -ms-transition: all 0.5s ease-in-out 0s;
        -o-transition: all 0.5s ease-in-out 0s;
        transition: all 0.5s ease-in-out 0s;
    }

    .navbar-nav .dropdown-submenu:hover .dropdown-menu {
        top: 0;
    }

    .navbar-nav.ms-auto .nav-item.dropdown .dropdown-menu {
        right: 0;
    }

    .navbar-nav.ms-auto .dropdown-menu .dropdown-submenu .dropdown-menu {
        left: auto;
        right: 100%;
    }
}

@media (max-width:991.98px) {
    .navbar-nav .dropdown-submenu .dropdown-menu {
        padding: 0;
        top: 0;
    }
}


.search-icon a {
    font-size: 18px;
    color: var(--white-color);
    line-height: 1;
}

.search-input {
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 999;
    text-align: center;
    background: var(--white-color);
    border-bottom: 1px solid var(--primary-color);
    z-index: 9999;
    top: 0;
    display: none;
    padding: 80px 0;
}

.search-inner {
    padding: 15px 0;
    position: relative;
}

.search-input label {
    width: 100%;
}

.search-input .search-field {
    width: 100%;
    height: 100%;
    padding-right: 60px;
}

.search-input .search-form button[type="submit"] {
    width: 0;
    height: 0;
    padding: 0;
    border: 0;
    font-size: 20px;
    right: 50px;
    color: var(--body-color);
    position: absolute;
    top: 25px;
}

.search-input .search-submit:hover {
    color: var(--text-color);
}

.right-nav {
    position: relative;
    margin-left: 30px;
}

.close-search {
    position: absolute;
    bottom: -40px;
    right: 0;
    cursor: pointer;
    font-size: 30px;
    color: var(--body-color);
}

.close-search:hover {
    color: var(--secondary-color);
}


/* ------------------------
    Footer
------------------------*/
.footer {
    background-color: #000000;
    /* background-image: url(../images/footer-bg.png); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.primary-footer {
    position: relative;
    z-index: 9;
    padding-top: 35px;
}

.secondary-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    color: var(--white-color);
}

.footer h5 {
    position: relative;
    color: var(--white-color);
    margin-bottom: 30px;
}

.primary-footer p {
    color: var(--rgba-color);
    font-size: 17px;
}

.media-icon.list-inline li {
    display: inline-block;
}

.media-icon li {
    margin-bottom: 25px !important;
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: flex-start;
}

.media-icon li:last-child {
    margin-bottom: 0 !important;
}

.media-icon li i {
    font-size: 30px;
    color: var(--primary-color);
    vertical-align: middle;
    line-height: 20px;
    margin-right: 15px;
}

.media-icon li a,
.media-icon li p {
    color: var(--rgba-color);
}

.media-icon li a:hover {
    color: var(--primary-color);
}

.footer-menu li {
    margin-bottom: 15px;
    text-transform: capitalize;
}

.footer-menu li:last-child {
    margin-bottom: 0;
}

.footer-menu li a {
    color: var(--rgba-color);
    position: relative;
    padding-left: 0 !important;
    font-size: 18px !important;
    font-weight: 400;
}

.footer-menu li a:hover {
    color: var(--primary-color);
}

.footer-menu li a:before {
    display: none;
}

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

.social-icons.footer-social li a {
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 18px;
    color: var(--white-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons.footer-social li a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: var(--primary-color);
}

.subscribe-form {
    position: relative;
    margin-bottom: 10px;
}

.subscribe-form input {
    padding: 16px 210px 16px 24px;
    width: 100%;
}

@media (max-width: 768px) {
    .subscribe-form input {
        padding: 10px 15px;
    }
}

.subscribe-form button {
    position: absolute;
    right: 8px;
    top: 8px;
    height: auto;
}

.subscribe-form button i {
    margin-left: 10px
}

.footer-menu1 ul {
    display: flex;
    flex-wrap: wrap;
}

.footer-menu1 ul li {
    width: 100%;
}

.primary-footer-btm {
    margin-top: 30px;
}

.primary-footer-btm>[class*='col-'] {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 19px;
    padding-bottom: 5px;
}

.primary-footer-btm>[class*='col-']:first-child {
    padding-left: 0;
}

.primary-footer-btm>[class*='col-']:last-child {
    padding-right: 0;
    border-right: none;
}


/* ------------------------
    Page Title
------------------------*/
.page-title {
    background-color: var(--bg-dark-color);
    background-image: url(../images/page-title-bg.png);
    background-size: cover;
    background-position: bottom left;
    background-repeat: no-repeat;
    padding: 140px 0 50px;
    position: relative;
}

.page-title .container {
    position: relative;
}

.page-title:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    background-image: linear-gradient(to bottom, #000, transparent);
}

.breadcrumb {
    background: none;
    display: inline-block;
    margin: 0;
    text-transform: capitalize;
    margin-top: 20px;
}

.breadcrumb-item {
    display: inline-block;
    font-weight: 600;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: var(--white-color)
}

.breadcrumb-item.active,
.breadcrumb-item a:hover {
    color: var(--primary-color);
}

.breadcrumb-item+.breadcrumb-item:before {
    color: var(--primary-color);
}

.page-title h1 {
    color: var(--white-color);
    font-size: 50px;
    line-height: 60px;
    word-break: break-word;
    margin-bottom: 0;
}

/* ------------------------------------------------
  Shortcodes css
------------------------------------------------ */

/* ------------------------
    Table of Contents

  1. Section Title
  2. Button
  3. Marquee Text
  4. Accordion
  5. Social Icons
  6. Team
  7. Tab
  8. Counter
  9. Blog - Post
  10. Featured Box
  11. Testimonials
  12. Service Box
  13. Price Table   
  14. Progress Bar
  15. Portfolio Item
  16. Swiper Arrow
  17. Swiper Dot Pagination
  18. Awards
  19. Timeline
  20. Splitting Text
  21. Image Reavel Animation
  22. Split Slider
  23. Video
  24. Keyframes Animation


/* ------------------------
    Section Title
------------------------*/
.theme-title {
    margin-bottom: 50px
}

.theme-title h6 {
    position: relative;
    padding-left: 25px;
    font-family: var(--body-font-family);
    margin-bottom: 10px;
    text-transform: uppercase;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    line-height: 1;
}

.theme-title p {
    font-size: 18px;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 1.5;
}

.dark-bg h2 {
    color: var(--white-color)
}

.theme-title h2 {
    margin-bottom: 0;
}

.theme-title h6:after,
.theme-title h6:before {
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    background: var(--secondary-color);
    left: 0;
    border-radius: 50%;
}

.theme-title h6:after {
    left: 9px;
    background: var(--primary-color);
}

.dark-bg .theme-title h6,
.secondary-bg .theme-title h6 {
    color: var(--primary-color);
}

.dark-bg .theme-title h6:before,
.secondary-bg .theme-title h6:before {
    background: var(--white-color);
}


/* ------------------------
    Button
------------------------*/
.themeht-btn {
    padding: 10px 30px;
    position: relative;
    border: 0;
    z-index: 8;
    display: inline-block;
    cursor: pointer;
    outline: none;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
}

.white-btn,
a.white-btn {
    background: var(--white-color);
    color: var(--text-color);
}

.white-btn:hover,
a.white-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.primary-btn,
a.primary-btn {
    background: var(--primary-color);
    color: var(--white-color);
}

.primary-btn:hover,
a.primary-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.dark-btn,
a.dark-btn {
    background: var(--primary-color);
    color: var(--white-color);
    background-image: linear-gradient(to right, var(--secondary-color), var(--primary-color));
    text-shadow: 1px 1px 1px #000;
}

.dark-btn:hover,
a.dark-btn:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.primary-bg .dark-btn:hover,
.primary-bg a.dark-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.themeht-btn.outline-btn {
    border: 1px solid var(--secondary-color);
    color: var(--text-color);
}

.themeht-btn.outline-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}

.themeht-btn svg {
    margin-left: 10px;
}

.themeht-btn svg line {
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--text-color);
}

.themeht-btn.dark-btn svg line {
    stroke: var(--white-color);
}

.themeht-btn.primary-btn svg line {
    stroke: var(--white-color);
}

.themeht-btn:hover svg line {
    stroke-dasharray: 20px;
    stroke-dashoffset: 40px;
    transition: stroke-dashoffset .6s cubic-bezier(.61, 1, .88, 1) .3s;
    stroke: var(--white-color);
}

.themeht-btn.primary-btn:hover svg line,
.primary-bg .dark-btn:hover svg line {
    stroke: var(--white-color);
}

.themeht-btn span {
    -webkit-transition: all 0s ease-in-out 0s;
    -moz-transition: all 0s ease-in-out 0s;
    -ms-transition: all 0s ease-in-out 0s;
    -o-transition: all 0s ease-in-out 0s;
    transition: all 0s ease-in-out 0s;
}

.read-button {
    padding: 15px;
    position: relative;
    display: inline-block;
}

.arrow-btn,
.arrow-btn-text,
.arrow-btn-circle {
    position: absolute;
}

.arrow-btn {
    top: 0;
    left: 0;
    height: 100%;
    border-radius: 100%;
    width: 100%;
    box-shadow: 0 0 1px 1px var(--secondary-color);
    transition: 0.3s linear;
}

.arrow-btn-circle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 40px;
    height: 40px;
    border-radius: 100%;
    background: var(--primary-color);
    display: flex;
    transition: 0.3s ease-in-out;
}

.arrow-btn-circle svg {
    width: 24px;
    height: 24px;
    margin: auto;
}

.arrow-btn-circle svg path {}

a.read-button:hover .arrow-btn-circle svg {
    fill: var(--white-color);
}

.arrow-btn-text {
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    z-index: 2;
    transition: 0.3s linear;
    background: transparent;
    color: var(--secondary-color);
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
}

.read-button:hover .arrow-btn {
    transform: scale(0);
}

.read-button:hover .arrow-btn-circle {
    transform: translate(-50%, -50%) scale(1);
}

.read-button:hover .arrow-btn-text {
    transform: translate(30px, -50%);
}


/* ------------------------
 Marquee Text
------------------------*/
.marquee-section {
    padding: 15px 0;
    background-color: var(--white-color);
    -webkit-transform: rotate(-0.8deg);
    -ms-transform: rotate(-0.8deg);
    transform: rotate(-0.8deg);
}

.marquee-wrap {
    animation: colorchange 20s infinite alternate;
    -webkit-animation: colorchange 20s infinite alternate;
    width: 100%;
    position: relative;
    white-space: nowrap;
}

@media (max-width:992px) {
    .marquee-wrap {
        animation: marquee 20s infinite alternate;
    }
}

.marquee-wrap,
.marquee-title {
    display: flex;
    justify-content: center;
}

.marquee-text {
    font-family: var(--secondary-font-family);
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    white-space: nowrap;
    line-height: 1;
    font-weight: 500;
    /* color: var(--text-color); */
    text-transform: capitalize;
}

.marquee-text i {
    margin: 0 40px;
    font-size: 21px;
    line-height: 1;
}

.marquee-img-swiper>.swiper-wrapper,
.marquee-swiper>.swiper-wrapper {
    transition-timing-function: linear;
}

.popup-img {
    /* position: absolute; */
    /* top: 50%; */
    /* left: 50%; */
    /* transform: translate(-50%, -50%); */
    font-size: 40px;
    background: var(--white-color);
    /* width: 80px; */
    /* height: 80px; */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: var(--text-color);
    /* opacity: 0; */
}

.marquee-img-box:hover .popup-img {
    opacity: 1;
}

.marquee-section.style3 {
    padding: 0;
    background-color: inherit;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
}

.marquee-section.style3 .marquee-text {
    font-size: 100px;
    font-weight: 800;
}

.marquee-section.style3 .marquee-text i {
    font-size: 40px;
    animation: rotate 10s linear infinite;
}

.header-marquee .marquee-section {
    padding: 15px 0;
    background-color: var(--primary-color);
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
}

.header-marquee .marquee-wrap {
    animation: marquee 100s linear infinite;
}

.header-marquee .marquee-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--white-color);
    text-transform: capitalize;
}

.header-marquee .marquee-text i {
    margin: 0 30px;
    font-size: 18px;
    line-height: 1;
    color: #ffffff;
}


/* ------------------------
    Accordion
------------------------*/
.accordion-item {
    border: none;
    border-radius: 0 !important;
    border-bottom: 1px solid var(--border-light-color);
    padding-bottom: 20px;
    background: none;
}

.accordion-header {
    line-height: 0;
}

.accordion .accordion-button {
    border: none;
    padding: 0;
    padding-right: 50px;
    border-radius: 0 !important;
    background: none;
    font-weight: 500;
    font-size: 20px;
    line-height: 26px;
    color: var(--text-color);
    text-transform: capitalize;
    display: inline-block;
    width: 100%;
}

.accordion-button:hover,
.accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    box-shadow: none;
}

.accordion .accordion-body {
    padding: 20px 0 0;
    color: var(--body-color);
}

.accordion .accordion-button:before,
.accordion .accordion-button:after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: var(--text-color);
    top: 50%;
    right: 0;
    -webkit-transform: translate(-50%);
    transform: translate(-50%)
}

.accordion .accordion-button:before {
    -webkit-transform: translate(-50%) rotate(90deg);
    transform: translate(-50%) rotate(90deg)
}

.accordion .accordion-button[aria-expanded="true"]:before,
.accordion-button:hover:before {
    -webkit-transform: translate(-50%) rotate(0deg);
    transform: translate(-50%) rotate(0deg)
}

.accordion .accordion-button[aria-expanded="true"]:after,
.accordion .accordion-button[aria-expanded="true"]:before,
.accordion-button:hover:after,
.accordion-button:hover:before {
    background: var(--secondary-color) !important;
}

.accordion-button:focus {
    box-shadow: none;
}


/* ------------------------
    Social Icons
------------------------*/
.social-icons ul {
    padding: 0;
    margin: 0;
    line-height: 0;
}

.social-icons li {
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0 8px 0 0;
}

.social-icons li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center;
    margin: 0;
    border: 0;
    background: transparent;
    color: var(--text-color);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}


/* ------------------------
    Team
------------------------*/
.team-member {
    margin: 1px;
}

.team-images {
    position: relative;
    overflow: hidden;
}

.team-member .team-desc {
    padding: 20px;
    border-left: 1px solid var(--border-light-color);
    border-right: 1px solid var(--border-light-color);
}

.team-member .team-desc h4 {
    margin-bottom: 5px;
}

@media (max-width: 1680px) {
    .team-member .team-desc h4 {
        font-size: 20px;
    }
}

.team-member .team-desc h4 a {
    color: var(--text-color);
    display: inline;
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
    transition: .9s cubic-bezier(.32, .32, .15, 1.17);
    background-size: 0 100%;
}

.team-member .team-desc a:hover {
    color: var(--secondary-color);
    background-size: 100% 100%;
}

.team-member .team-desc span {
    color: var(--body-color);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
}

.team-member img {
    width: 100%;
}

.team-footer {
    display: flex;
    justify-content: space-between;
    border: 1px solid var(--border-light-color);
}

.team-footer .team-footer-cntnt i {
    width: 50px;
    height: 50px;
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    line-height: 50px;
    text-align: center;
    font-size: 20px;
    margin-right: 20px;
}

ul.team-social-icon.list-inline.mb-0 {
    display: flex;
}

@media (max-width: 1680px) {
    .team-footer .team-footer-cntnt i {
        margin-right: 0;
    }

    .team-footer-cntnt a {
        display: none;
    }
}

.team-social-icon li {
    display: inline-block;
    margin: 0;
}

.team-social-icon li a {
    height: 50px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--border-light-color);
}

.team-social-icon li a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.team-contact {
    padding-top: 30px;
}

.team-meta li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.team-meta li i {
    font-size: 20px;
    color: var(--text-color);
    vertical-align: middle;
    margin-right: 15px;
}

.team-meta li span {
    margin-right: 10px;
    font-weight: 500;
    color: var(--text-color);
}

.team-contact .team-social-icon {
    position: inherit;
    bottom: inherit;
    right: inherit;
    -webkit-transform: inherit;
    -ms-transform: inherit;
    transform: inherit;
    display: inline-block;
    border: 1px solid var(--border-light-color);
}


/* ------------------------
    Tab
------------------------*/
.tab-list ul {
    padding: 0;
    margin: 0;
    margin-bottom: 30px;
}

.tab-list li {
    position: relative;
    list-style-type: none;
    padding-left: 30px;
    margin-bottom: 10px;
}

@media (max-width: 1680px) {
    .tab-list li {
        margin-bottom: 0;
    }
}

.tab-list li:last-child {
    margin-bottom: 0;
}

.tab-list li:before {
    position: absolute;
    left: 0;
    top: 3px;
    font-family: 'bootstrap-icons';
    content: "\f272";
    color: var(--white-color);
    font-size: 16px;
    line-height: 1;
    background: var(--primary-color);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}


/* ------------------------
    Tab
------------------------*/
.tab .nav-tabs {
    border: none;
    padding: 20px;
    background: var(--bg-light-color);
}

.tab .nav-tabs .nav-link {
    background: var(--white-color);
    border-radius: 0;
    font-size: 18px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    border: none;
    padding: 10px 40px;
}

.tab .nav-tabs .nav-link:last-child {
    margin-right: 0;
}

.tab .nav-tabs .nav-link.active,
.tab .nav-tabs .nav-link:hover,
.tab .nav-tabs.active>a:focus,
.tab .nav-tabs>a:hover {
    background: var(--secondary-color);
    color: var(--white-color);
}

.tab .tab-content {
    padding: 30px;
}


/* ------------------------
    Counter
------------------------*/
.counter {
    position: relative;
    z-index: 8;
}

.counter .counter-desc span {
    font-size: 60px;
    line-height: 1;
    color: var(--secondary-color);
    display: inline-block;
    vertical-align: middle;
    font-weight: 700;
}

.counter .counter-desc .count-number+span {
    position: relative;
}

.counter h6 {
    font-size: 18px;
    font-family: var(--body-font-family);
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 0;
    /* text-transform: uppercase; */
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 1680px) {
    .counter h6 {
        font-size: 16px;
        font-weight: 500;
    }
}

.counter-icon i {
    font-size: 50px;
    line-height: 1;
    display: inline-block;
    color: var(--text-color);
    margin-bottom: 20px;
}

.counter-text {
    display: flex;
    align-items: flex-end;
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 10px;
    margin-bottom: 10px;
    gap: 20px;
}

.counter-text.border-none {
    border: none;
}

.counter.style-2 .counter-desc span {
    font-size: 60px;
}

@media (max-width: 1680px) {
    .counter.style-2 .counter-desc span {
        font-size: 50px;
    }
}

.counter.style-2 h6 {
    margin-top: 0;
}

.counter.style-2 .counter-text span {
    font-size: 16px;
}

.counter.style-3 .counter-desc span {
    font-size: 100px;
    color: var(--primary-color);
    font-weight: 700;
}

.counter.style-3 h6 {
    color: var(--white-color);
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    margin: 0;
    transform: translateY(-50%);
}


/* ------------------------
    Blog - Post
------------------------*/
.post-card {
    position: relative;
    display: inline-block;
    width: 100%;
    border: 1px solid var(--border-light-color);
}

.post-single-page .post-card {
    border: none;
}

.post-card .post-image {
    position: relative;
}

.post-card .post-image img {
    width: 100%;
}

.post-card .post-title h4 {
    text-transform: capitalize;
    word-break: break-word;
}

.post-card .post-title h4 a {
    color: var(--text-color);
    display: inline;
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
    transition: .9s cubic-bezier(.32, .32, .15, 1.17);
    background-size: 0 100%;
}

.post-card .post-title h4 a:hover {
    background-size: 100% 100%;
}

.post-card .post-bottom li {
    color: var(--text-color);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    position: relative;
}

.post-card .post-bottom li+li:before {
    display: inline-block;
    padding-right: 0.3rem;
    color: var(--body-color);
    font-family: 'bootstrap-icons';
    content: "\F309";
    padding-left: 0.2rem;
    font-size: 24px;
    vertical-align: middle;
}

.post-card .post-bottom .list-inline-item:not(:last-child) {
    margin-right: 0;
}

.post-bottom li i {
    font-size: 16px;
    color: var(--text-color);
    margin-right: 5px;
    vertical-align: middle;
}

.post-card .post-bottom li span {
    display: inline;
}

.post-single-page .post-desc h1,
.portfolio-single h1 {
    line-height: 70px;
    font-size: 60px;
    margin-bottom: 20px;
    word-break: break-all;
}

.post-card.style-1 .post-desc,
.post-card.post-classic .post-desc {
    padding: 30px;
    background: #fff;
}

.post-card.post-classic .post-desc {
    box-shadow: 0 25px 70px rgb(0 0 0 / 10%);
}

.post-card.style-1 {
    margin-top: 0;
    margin-left: 1px;
}

.post-card.style-1 .post-image {
    position: relative;
    padding-right: 0;
    margin-top: 0;
}

.post-card.style-1 .post-date {
    position: absolute;
    top: 5px;
    right: 5px;
    /* transform: rotate(-90deg); */
    color: var(--secondary-color);
    padding: 4px 10px;
    /* text-transform: uppercase; */
    font-weight: 600;
    font-family: var(--secondary-font-family);
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 14px;
}

.post-card.style-1 .post-date i {
    margin-right: 8px;
    font-size: 18px;
}

.post-card.style-1 .post-date a {
    color: var(--secondary-color);
}

.post-single-page .post-card {
    border: none;
}

.post-single-page .post-card .post-desc {
    padding-top: 30px;
}

.themeht-blogs .post-card {
    margin-bottom: 30px;
}

.pagination {
    display: inline-block;
}

.pagination>li {
    margin: 0 3px;
    display: inline-block;
}

.pagination>li>a,
.pagination>li>span {
    font-size: 18px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    padding: 0;
    text-align: center;
    color: var(--text-color);
    font-weight: 500;
    border-radius: 0 !important;
    border-color: var(--border-light-color)
}

.pagination>li.active .page-link,
.page-link:hover,
.page-link:focus {
    box-shadow: none;
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color)
}


/* ---- Sidebar Widget ----*/
.themeht-sidebar {
    padding: 30px;
    margin-left: 50px;
    background: var(--white-color);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
}

.themeht-sidebar.left-side {
    margin-left: 0;
    margin-right: 50px;
}

/*Widget-Title*/
.widget {
    margin-bottom: 50px
}

.widget:last-child {
    margin-bottom: 0
}

.widget-title {
    position: relative;
    color: var(--text-color);
    font-size: 24px;
    line-height: 34px;
    display: block;
    margin-bottom: 20px;
    font-weight: 500;
    border-bottom: 1px solid var(--border-light-color);
    padding-bottom: 15px !important;
}

.widget-title:before {
    content: "";
    height: 3px;
    width: 100px;
    background-color: var(--secondary-color);
    position: absolute;
    transition: all 0.6s;
    bottom: -2px;
    left: 0;
}

/*Widget-Search*/
.widget-searchbox {
    position: relative;
    width: 100%;
}

.widget-searchbox .search-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 20px;
    outline: medium none;
    overflow: hidden;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.widget-searchbox .search-btn:hover {
    color: var(--primary-color)
}


/*Recent Post*/
.recent-post li {
    display: flex;
    align-items: center;
}

.widget .recent-post-thumb {
    width: 100px;
    overflow: hidden;
    flex-shrink: 0;
}

.widget .recent-post-desc {
    padding-left: 15px;
}

.widget .recent-post-desc a {
    font-weight: 500;
    color: var(--text-color);
    font-size: 16px;
    line-height: 26px;
    display: inline;
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
    transition: .9s cubic-bezier(.32, .32, .15, 1.17);
    background-size: 0 100%;
}

.widget .recent-post-desc a:hover {
    color: var(--secondary-color);
    background-size: 100% 100%;
}

.widget .recent-post-desc .post-date {
    font-size: 15px;
}

/*widget-Categories*/
.widget .widget-categories li {
    display: block;
    padding: 15px 0;
    border-bottom: 1px dashed var(--border-light-color);
    position: relative;
}

.widget .widget-categories li:first-child {
    padding-top: 0;
}

.widget .widget-categories li:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.widget .widget-categories li a {
    text-transform: capitalize;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    color: var(--text-color);
    display: flex;
    justify-content: space-between;
}

.widget .widget-categories li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.widget-categories li i {
    position: absolute;
    right: 0;
}

/*widget-tags*/
.widget .widget-tags li {
    display: inline-block;
    margin: 5px 5px 15px 0;
}

.widget .widget-tags li a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
    background: var(--bg-light-color);
    color: var(--text-color);
    padding: 5px 15px;
    display: inline-block;
    text-align: center;
}

.widget .widget-tags li a:hover {
    background: var(--primary-color);
    color: var(secondary);
}

/*post-tags*/
.post-tags li {
    display: inline-block;
    margin: 5px 5px 15px 0;
}

.post-tags li a {
    background: var(--bg-light-color);
    border-radius: 30px;
    color: var(--text-color);
    padding: 5px 15px;
    display: inline-block;
    text-align: center;
    font-weight: normal;
}

.post-tags li a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

blockquote {
    text-align: center;
    color: var(--secondary-color);
    background-color: var(--primary-color);
    padding: 40px;
    font-size: 24px;
    line-height: 30px;
    position: relative;
}

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

blockquote span {
    color: var(--white-color);
    margin-top: 10px;
    display: block;
    text-decoration: underline;
    font-family: var(--secondary-font-family);
    font-size: 18px;
    font-weight: 600;
}

blockquote i {
    font-size: 60px;
    color: var(--white-color);
    line-height: 1;
    margin-bottom: 20px;
    display: inline-block;
}

.post-comment .comments-title,
.post-comment .comment-reply-title {
    font-size: 34px;
    line-height: 44px;
    margin-bottom: 30px;
}

.post-comment li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    border-bottom: 1px solid var(--border-light-color);
    padding-bottom: 50px;
    position: relative;
}

.post-comment li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.author-img {
    flex-shrink: 0;
    width: 100px;
    margin-right: 30px;
}

.comment-date {
    color: var(--secondary-color);
}

.comments-body p {
    margin: 15px 0 0;
}

.comment-reply-link,
.comment-reply-link:focus,
.comment-reply-link:visited,
.comment-reply-link:active {
    font-size: 18px;
    border: 1px solid transparent;
    position: relative;
    text-transform: capitalize;
    padding: 5px 20px 5px 40px;
    background: var(--secondary-color);
    color: var(--white-color);
    display: inline-block;
}

.comment-reply-link:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.comment-reply-link:before {
    content: '\f520';
    font-family: 'bootstrap-icons';
    font-size: 20px;
    position: absolute;
    left: 14px;
    top: 5px;
}

/* ------------------------
    Featured Box
------------------------*/
.featured-item.style-1 {
    position: relative;
    padding: 40px 16px;
    border: 1px solid var(--border-light-color);
    background: var(--white-color);
}

.featured-item.style-1:hover {
    border-color: var(--secondary-color);
}

.featured-item.style-1 .featured-icon {
    display: inline-block;
    margin-bottom: 10px;
    overflow: hidden;
}

.featured-item.style-1 .featured-icon i {
    font-size: 70px;
    line-height: 70px;
    color: var(--text-color);
    display: inline-block;
}

.featured-item.style-1:hover .featured-icon i {
    transform: rotate(360deg);
}

.featured-item.style-1 .featured-title h5 {
    margin-bottom: 10px;
}

.featured-item p {
    margin-bottom: 0;
}

.featured-icon svg {
    width: 70px;
    height: 70px;
}

.light-bg .featured-item.style-1 {
    padding: 40px;
    background: var(--white-color);
    border-color: var(--white-color);
}

.featured-item.style-2 {
    position: relative;
    display: flex;
    align-items: flex-start;
    z-index: 0;
}

.featured-item.style-2 .featured-icon {
    margin-right: 20px;
    font-size: 80px;
    line-height: 1;
    color: var(--text-color);
    display: inline-block;
}

.featured-item.style-2 .featured-icon img {
    width: 80px;
}

.featured-item.style-2 .featured-title h5 {
    margin-bottom: 10px;
}

.featured-item.style-3 {
    padding: 40px;
    position: relative;
}

.featured-item.style-3 .featured-icon {
    margin-right: 20px;
    font-size: 80px;
    line-height: 1;
    color: var(--text-color);
    display: inline-block;
}

.featured-item.style-3:hover {
    box-shadow: 0 20px 60px rgba(92, 107, 149, .15);
}

.featured-item.style-3 .featured-top {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.featured-item.style-3 h5 {
    margin-bottom: 0;
}

.light-bg .featured-item.style-3 {
    background: var(--white-color);
}


/* ------------------------
    Testimonials
------------------------*/
.testimonial-marquee .swiper-slide {
    transform: scale(0.75);
    transition: 0.3s;
}

.testimonial-marquee .swiper-slide.swiper-slide-active {
    animation-name: elastic1;
    animation-duration: 0.9s;
    animation-fill-mode: forwards;
    animation-timing-function: ease-in-out;
}

.testimonial-marquee .swiper-slide.swiper-slide-active {
    animation-name: elastic1_sp;
}

.testimonial-marquee .swiper-slide:nth-child(even) .testimonial {
    transform: rotate(-5deg);
}

.testimonial-marquee .swiper-slide:nth-child(odd) .testimonial {
    transform: rotate(5deg);
}

.testimonial.style-1 {
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .07);
    background: var(--white-color);
    margin: 0;
    padding: 50px;
    margin-bottom: 80px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.4;
    margin: 20px 0;
    color: var(--body-color);
    margin-top: 0;
}

.testimonial-caption {
    position: relative;
    display: inline-block;
}

.testimonial .testimonial-caption span {
    color: var(--body-color);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    display: block;
    line-height: 1;
}

.testimonial .testimonial-caption h4 {
    display: inline-block;
    margin-bottom: 0;
    color: var(--text-color);
    font-size: 22px;
    line-height: 1;
}

.testimonial-img img {
    width: 50px;
    border-radius: 100% !important;
    height: 50px;
}

.testimonial-img {
    position: relative;
    margin-right: 25px;
    margin-top: 25px;
    display: inline-block;
}

.testimonial .testimonial-quote {
    font-size: 30px;
    line-height: 1;
    color: var(--white-color);
    top: 0;
    position: absolute;
    right: -25px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
}

.testimonial.style-2 .testimonial-quote {
    top: inherit;
    position: inherit;
    right: inherit;
    width: 50px;
    height: 50px;
    display: none;
}

.testimonial.style-2 {
    position: relative;
    background: var(--white-color);
    padding: 15px;
    /* box-shadow: 0 25px 70px rgba(0, 0, 0, .07); */
    /* margin-bottom: 50px; */
    border: 1px solid #dff3be;
}

.testimonial.style-2 .testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial.style-2 .testimonial-img {
    margin-right: 15px;
    margin-top: 0;
}

.swiper-slide-active .testimonial.style-2 {
    background: var(--secondary-color);
}

.swiper-slide-active .testimonial.style-2 .testimonial-content p,
.swiper-slide-active .testimonial.style-2 .testimonial-caption h4,
.swiper-slide-active .testimonial.style-2 .testimonial-caption span {
    color: var(--white-color);
}


/* ------------------------
    Service Box
------------------------*/
.service-title h4 {
    text-transform: capitalize;
    margin-bottom: 0;
    color: var(--white-color);
}

.service-item .service-title h4 a {
    color: var(--secondary-color);
    display: inline;
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
    transition: .9s cubic-bezier(.32, .32, .15, 1.17);
    background-size: 0 100%;
}

.service-item .service-title h4 a:hover {
    color: var(--secondary-color);
    background-size: 100% 100%;
}

.arrow-button {
    font-size: 70px;
    color: transparent;
    -webkit-text-stroke: 1px black;
    transform: rotate(-45deg);
    line-height: 1;
}

.service-item.style-1 {
    background: var(--white-color);
    box-shadow: 0 25px 70px rgb(0 0 0 / 10%);
    padding: 80px 35px 40px;
    position: relative;
    transform-style: preserve-3d;
    overflow: hidden;
    background-size: cover;
    border: 1px solid #d7e7ba;
    border-radius: 12px;
}

.service-item.style-1:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white-color);
    opacity: 0.9;
}

.service-item.style-1:hover {
    transform: scale(1.08) translateZ(0);
}

.service-item.style-1 .service-desc {
    position: relative;
    z-index: 9;
}

.service-item.style-1 .service-num {
    color: var(--white-color);
    font-family: var(--secondary-font-family);
    font-size: 18px;
    line-height: 1;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    background: var(--secondary-color);
    padding: 12px;
    z-index: 9;
    opacity: 0;
}

.service-item.style-1 .service-desc p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    overflow: hidden;
    -webkit-box-orient: vertical;
    /* color: var(--white-color); */
}

.service-item.style-1 .service-image {
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
    transform-style: preserve-3d;
    transform: translate3d(0px, 0px, 0px) scale3d(0, 0, 0) rotateX(0deg) rotateY(0deg) rotateZ(-45deg) skew(0deg);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.service-item.style-1:hover .service-image {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg);
}

.service-item.style-1 .service-icon {
    font-size: 80px;
    line-height: 1;
    color: var(--text-color);
    z-index: 9;
    position: relative;
}

.service-item.style-1 .service-icon img {
    width: 80px;
}

.service-item.style-1:hover .service-icon img.main_img {
    opacity: 0;
}

.service-item.style-1:hover .service-icon .main_img_hover {
    opacity: 1;
}

.service-item.style-1 .service-icon img.main_img_hover {
    position: absolute;
    left: 0;
    top: 6px;
    opacity: 0;
}

.service-item.style-1 .service-title {
    margin-top: 30px;
}

.service-item.style-1 .service-title h4 {
    margin-bottom: 20px;
}

.service-item.style-1:after {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    content: '';
    opacity: 0;
    transform-style: preserve-3d;
    transform: translate3d(0px, 0px, 0px) scale3d(0, 0, 0) rotateX(0deg) rotateY(0deg) rotateZ(45deg) skew(0deg);
    -webkit-transition: all 0.8s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

.service-item.style-1:hover:after {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0) skew(0deg);
    opacity: 1;
}

.service-item.style-1:hover .service-title h4 a,
.service-item.style-1:hover p {
    color: var(--white-color);
    -webkit-transition: all 10s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

.service-item.style-1:hover .service-icon {
    color: var(--primary-color);
    -webkit-transition: all 10s ease-in-out;
    -moz-transition: all 0.8s ease-in-out;
    -ms-transition: all 0.8s ease-in-out;
    -o-transition: all 0.8s ease-in-out;
    transition: all 0.8s ease-in-out;
}

.service-item.style-1 .service-title h4 a:hover {
    color: var(--primary-color);
}

.service-item.style-1:hover .arrow-btn {
    box-shadow: 0 0 1px 1px var(--white-color);
}

.service-item.style-1:hover .arrow-btn-text {
    background: transparent;
    color: var(--white-color);
}

.service-item.style-1:hover .service-num {
    background: var(--primary-color);
    top: 15px;
    right: 15px;
    color: var(--white-color);
}

.service-item.style-2 {
    border-bottom: 1px solid var(--secondary-color);
    border-right: 1px solid var(--secondary-color);
}

@media (max-width: 768px) {
    .service-item.style-2 {
        background-color: var(--secondary-color);
    }

    .service-item .service-title h4 a {
        color: var(--white-color);
    }
}

.service-item.style-2:last-child {
    border-bottom: none;
}

.service-list {
    position: relative;
    overflow: hidden;
    padding-right: 50%;
    border: 1px solid var(--secondary-color);
}

.service-list .service-item.style-2 .service-image {
    position: absolute;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    transition: .6s cubic-bezier(1, 0, .25, .995);
    opacity: 0;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
}

.service-list .service-item.style-2 .service-image .service-img-inner {
    width: 100%;
    height: 100%;
}

.service-list .service-item.style-2.active .service-image {
    z-index: 1;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    transition-duration: 1s;
    -webkit-transition-duration: 1s;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1);
    -webkit-transition-timing-function: cubic-bezier(.19, 1, .22, 1);
    opacity: 1;
}

.service-item.style-2 .service-desc {
    display: flex;
    justify-content: space-between;
}

.service-item.style-2 .service-title h4 {
    font-size: 28px;
    line-height: 38px;
    padding: 15px 30px;
}

.service-item.style-2 .service-icon {
    color: var(--text-color);
    font-size: 50px;
    line-height: 1;
    width: 100px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: center;
    font-weight: 700;
    border-right: 1px solid var(--border-light-color);
}

.service-list .service-item.style-2.active .service-icon {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.service-list .service-item.style-2.active .service-title h4 a {
    color: var(--white-color);
}

.service-list .service-item.style-2.active {
    background: var(--secondary-color)
}

.service-item.style-3 .service-image {
    overflow: hidden;
    position: relative;
}

.service-item.style-3 .service-icon {
    background: var(--secondary-color);
    padding: 10px;
    font-size: 50px;
    line-height: 1;
    display: inline-block;
    margin-right: 20px;
    color: var(--primary-color);
}

.service-item.style-3 .service-title h4 {
    margin-bottom: 0;
}

.service-item.style-3 .service-desc {
    overflow: hidden;
    background-color: var(--white-color);
    box-shadow: 0 20px 60px rgba(92, 107, 149, .15);
    padding: 30px;
    position: relative;
    z-index: 9;
    display: flex;
    align-items: flex-start;
    width: 90%;
    margin: -62px auto 0;
}

.service-item.style-3 .service-image:after {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: -100%;
    left: 0%;
    content: '';
    opacity: 0;
}

.service-item.style-3:hover .service-image:after {
    opacity: 1;
    top: 0%;
}

.service-item.style-3 .service-desc:after {
    z-index: -1;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    position: absolute;
    top: -100%;
    left: 0%;
    content: '';
    opacity: 0;
}

.service-item.style-3:hover .service-desc:after {
    opacity: 1;
    top: 0%;
}

/*Service Sidebar*/
.service-page-sidebar {
    margin-right: 30px;
}

@media (max-width: 768px) {
    .service-page-sidebar {
        margin-right: 0;
    }
}

.service-widget {
    margin-bottom: 30px;
    background-color: var(--white-color);
    background: var(--white-color);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.07);
    padding: 20px;
}

.service-widget:last-child {
    margin-bottom: 0;
}

.service-widget ul {
    padding-left: 0;
}

.service-widget li {
    list-style-type: none;
}

.service-widget li:last-child {
    margin-bottom: 0;
}

.service-widget .service-menu li a {
    color: var(--text-color);
    display: block;
    font-size: 18px;
    padding: 15px 20px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-light-color);
    padding-left: 0;
}

.service-widget .service-menu li a.active,
.service-widget .service-menu li a:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding-left: 30px;
}

.service-widget .service-menu li a:before,
.service-widget .service-menu li a:after {
    position: absolute;
    top: 0;
    left: -50px;
    font-family: 'bootstrap-icons';
    content: "\F135";
    font-size: 18px;
    display: flex;
    z-index: 9;
    height: 100%;
    color: var(--text-color);
    justify-content: center;
    align-items: center;
}

.service-widget .service-menu li a:after {
    left: auto;
    right: 0;
}

.service-widget .service-menu li a:hover:before,
.service-widget .service-menu li a.active:before {
    opacity: 1;
    left: 10px;
    color: var(--white-color);
}

.service-widget .service-menu li a:hover:after,
.service-widget .service-menu li a.active:after {
    opacity: 1;
    right: -50px;
}

.service-contact h3,
.service-contact p {
    color: var(--white-color);
}

.contact-widget {
    padding: 50px 30px;
    position: relative;
    z-index: 9;
}

.contact-widget:after {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    z-index: -9;
}

.contact-widget h5,
.contact-widget p {
    color: var(--white-color);
}


/* ------------------------
    Price Table
------------------------*/
.price-table {
    padding: 50px;
    position: relative;
    z-index: 9;
    box-shadow: 0 20px 60px rgba(92, 107, 149, .15);
}

.light-bg .price-table {
    background: var(--white-color);
}

.price-top p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 18px;
    color: var(--text-color);
}

.price-value {
    border-top: 1px solid var(--secondary-color);
    padding-top: 30px;
    margin-bottom: 40px;
}

.price-value h2 {
    font-size: 70px;
    line-height: 1;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    color: var(--text-color);
    font-weight: 600;
}

.price-value span {
    font-size: 18px;
    line-height: 18px;
}

.price-list {
    margin: 30px 0;
}

.price-list ul li {
    position: relative;
    padding: 10px 0;
}

.price-list li i {
    color: var(--text-color);
    font-size: 16px;
    position: relative;
    display: inline-block;
    line-height: 1;
    margin-right: 5px;
}

.price-table .themeht-btn {
    display: block;
    text-align: center;
}


/* ------------------------
    Progress Bar
------------------------*/
.ht-progress-bar {
    margin-bottom: 20px;
}

.ht-progress-bar:last-child {
    margin-bottom: 0;
}

.ht-progress-bar h4 {
    font-size: 16px;
    margin-bottom: 5px
}

.ht-progress-bar .progress {
    height: 7px;
    background: var(--secondary-color);
    overflow: visible;
    border-radius: 0;
    padding: 1px;
}

.ht-progress-bar .progress .progress-bar {
    background-color: var(--primary-color);
    position: relative;
    overflow: visible;
    border-radius: 0;
}

.ht-progress-bar .progress-parcent {
    position: absolute;
    top: -37px;
    right: 0;
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 600
}


/* ------------------------
    Portfolio Item
------------------------*/
.portfolio-item {
    position: relative;
}

.portfolio-item .portfolio-cat a {
    color: var(--body-color);
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    font-family: var(--secondary-font-family);
    margin-bottom: 10px;
}

.portfolio-item .portfolio-cat a:hover {
    color: var(--text-color);
}

.portfolio-desc {
    padding-top: 20px;
}

.portfolio-item h4 {
    margin-bottom: 0;
}

.portfolio-item .portfolio-title a {
    color: var(--text-color);
    display: inline;
    position: relative;
    width: 100%;
    background-repeat: no-repeat;
    background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
    transition: .9s cubic-bezier(.32, .32, .15, 1.17);
    background-size: 0 100%;
}

.portfolio-item .portfolio-title a:hover {
    background-size: 100% 100%;
}

.portfolio-item.style-1 h4 {
    line-height: 50px;
    font-size: 34px;
}

.portfolio-item.style-1 {
    border-bottom: 1px solid var(--border-light-color);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.portfolio-list {
    position: relative;
}

.portfolio-img-wrapper {
    width: 424px;
    opacity: 0;
    position: absolute;
    top: 0%;
    left: auto;
    right: 0%;
    transform-style: preserve-3d;
    z-index: 9;
}

.portfolio-img-shape {
    width: 290px;
    height: 285px;
    background-color: var(--primary-color);
    position: absolute;
    top: -15px;
    bottom: auto;
    left: auto;
    right: 0;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(-45deg) skew(0deg);
    transform-style: preserve-3d;
    z-index: -9;
}

.portfolio-list .portfolio-item.style-1.active .portfolio-img-wrapper {
    opacity: 1;
}

.portfolio-item.style-1 .portfolio-desc {
    position: relative;
    display: flex;
    align-items: center;
}

.portfolio-name {
    width: 550px;
    margin-right: 0;
}

.portfolio-item.style-1 .portfolio-image {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(45deg) skew(0deg);
    transform-style: preserve-3d;
    margin-right: 15px;
}

.portfolio-list .portfolio-item.style-1.active .portfolio-image {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg);
}

.portfolio-list .portfolio-item.style-1.active .portfolio-img-shape {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg);
}

.dark-bg .portfolio-item .portfolio-title a {
    color: rgba(255, 255, 255, .8);
}

.dark-bg .portfolio-item .portfolio-title a:hover {
    color: var(--primary-color);
}

.dark-bg .portfolio-item .portfolio-cat a {
    color: var(--primary-color);
}

.dark-bg .portfolio-item.style-1 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.dark-bg .portfolio-item.style-1:last-child {
    margin-bottom: 0;
}

.dark-bg .portfolio-item.style-1 .arrow-btn {
    box-shadow: 0 0 1px 1px rgba(255, 255, 255, 0.2);
}

.dark-bg .portfolio-item.style-1 .arrow-btn-text {
    background: transparent;
    color: var(--white-color);
}


.portfolio-item.style-2 {
    overflow: hidden;
    margin-bottom: 30px;
}

.portfolio-item.style-2 .portfolio-desc {
    background: var(--white-color);
    padding: 20px 30px;
    position: absolute;
    bottom: 50px;
    left: -100%;
    width: 80%;
    opacity: 0;
    z-index: 9;
}

.portfolio-item.style-2:hover .portfolio-desc {
    left: 0%;
    opacity: 1;
}

.portfolio-button {
    background: var(--secondary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: inline-block;
    position: absolute;
    right: -25px;
    top: 50%;
    margin-top: -25px;
    font-size: 28px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
}

.portfolio-button {
    color: var(--white-color) !important;
}

.portfolio-item.style-2:after {
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.6); */
    position: absolute;
    top: 0%;
    left: 0%;
    right: 0%;
    /* content: ''; */
    opacity: 0;
    transform-style: preserve-3d;
    transform: translate3d(0px, 0px, 0px) scale3d(0, 0, 0) rotateX(0deg) rotateY(0deg) rotateZ(45deg) skew(0deg);
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
    -ms-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
}

.portfolio-item.style-2:hover:after {
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0) skew(0deg);
    opacity: 1;
}

/*portfolio Meta*/
.portfolio-meta-info ul {
    margin: 0;
    padding: 40px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.portfolio-meta-info ul li {
    list-style-type: none;
    width: 50%;
    display: inline-block;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-light-color);
    padding-bottom: 30px;
    vertical-align: top;
}

.portfolio-meta-info ul li:nth-last-child(-n + 2) {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
}

.portfolio-meta-info ul li span.sub-title {
    font-family: var(--secondary-font-family);
    font-weight: 300;
    color: var(--text-color);
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}

.portfolio-meta-info ul li span.title {
    color: var(--secondary-color);
    font-weight: 700;
}

.portfolio-meta-info {
    position: absolute;
    bottom: 0;
    right: 0;
    overflow: hidden;
    background-color: var(--white-color);
    border: 1px solid var(--border-light-color);
    border-top: 0;
    border-left: 0;
    width: 450px;
}

.portfolio-meta-info h4 {
    color: var(--white-color);
    background-color: var(--primary-color);
    padding: 20px 30px;
    margin-bottom: 0;
}

/* ------------------------
  Swiper Arrow 
------------------------*/
.swiper .swiper-button-prev {
    left: 0;
}

.swiper .swiper-button-next {
    right: 0;
}

.swiper .swiper-button-prev,
.swiper .swiper-button-next {
    width: 60px;
    height: 60px;
    line-height: 60px;
    border: 1px solid var(--border-dark-color);
    display: inline-block;
    text-align: center;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    border-radius: 50%;
    background: var(--white-color);
}

.swiper .swiper-button-prev:hover,
.swiper .swiper-button-next:hover {
    background: var(--bg-dark-color);
    border-color: var(--bg-dark-color);
}

.swiper .swiper-button-prev:after {
    content: '\F12F';
    font-family: bootstrap-icons !important;
}

.swiper .swiper-button-next:after {
    content: '\F138';
    font-family: bootstrap-icons !important;
}

.swiper .swiper-button-next:after,
.swiper .swiper-button-prev:after {
    color: var(--text-color);
    font-size: 30px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    line-height: 60px !important;
}

.swiper .swiper-button-prev:hover:after,
.swiper .swiper-button-next:hover:after {
    color: var(--white-color);
}

.swiper-nav-white .swiper-button-prev,
.swiper-nav-white .swiper-button-next,
.swiper-nav-bottom-white .swiper-button-prev,
.swiper-nav-bottom-white .swiper-button-next {
    border: 1px solid var(--border-light-color);
    background: var(--bg-dark-color);
}

.swiper-nav-white .swiper-button-prev:hover,
.swiper-nav-white .swiper-button-next:hover,
.swiper-nav-bottom-white .swiper-button-prev:hover,
.swiper-nav-bottom-white .swiper-button-next:hover {
    background: var(--white-color);
    border-color: var(--white-color);
}

.swiper-nav-white .swiper-button-next:after,
.swiper-nav-white .swiper-button-prev:after,
.swiper-nav-bottom-white .swiper-button-next:after,
.swiper-nav-bottom-white .swiper-button-prev:after {
    color: var(--white-color);
}

.swiper-nav-white .swiper-button-prev:hover:after,
.swiper-nav-white .swiper-button-next:hover:after,
.swiper-nav-bottom-white .swiper-button-prev:hover:after,
.swiper-nav-bottom-white .swiper-button-next:hover:after {
    color: var(--text-color);
}

.swiper-nav-bottom-white .swiper-button-next,
.swiper-nav-bottom-white .swiper-button-prev,
.swiper-nav-bottom .swiper-button-next,
.swiper-nav-bottom .swiper-button-prev {
    top: inherit;
    bottom: 0;
}

.swiper-nav-bottom-white .swiper-button-prev,
.swiper-nav-bottom .swiper-button-prev {
    left: 50% !important;
    margin-left: -80px;
}

.swiper-nav-bottom-white .swiper-button-next,
.swiper-nav-bottom .swiper-button-next {
    right: 50% !important;
    margin-right: -80px;
}

.swiper-nav-bottom,
.swiper-nav-bottom-white {
    margin-top: 120px;
}


/* ------------------------
  Swiper Dot Pagination
------------------------*/
.swiper-pagination {
    position: inherit !important;
    text-align: center;
    -webkit-transition: 300ms opacity;
    -o-transition: 300ms opacity;
    transition: 300ms opacity;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
    margin-top: 60px;
}

.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal>.swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
    background-color: var(--bg-dark-color);
    border-radius: 50%;
    width: 5px;
    height: 5px;
    opacity: 1;
    display: inline-block;
    vertical-align: middle;
}

.swiper-pagination-clickable .swiper-pagination-bullet-active {
    opacity: 1;
    width: 10px;
    height: 10px;
}

.swiper-dots-white .swiper-pagination-clickable .swiper-pagination-bullet {
    background-color: var(--white-color);
}

.swiper-nav-none .swiper-button-prev,
.swiper-nav-none .swiper-button-next,
.swiper-nav-none .swiper-pagination {
    display: none;
}

.swiper-nav-dots .swiper-button-prev,
.swiper-nav-dots .swiper-button-next,
.swiper-dots-white .swiper-button-prev,
.swiper-dots-white .swiper-button-next {
    display: none;
}

.swiper-nav-arrow .swiper-pagination,
.swiper-nav-bottom .swiper-pagination,
.swiper-nav-white .swiper-pagination,
.swiper-nav-bottom-white .swiper-pagination {
    display: none;
}


/* ------------------------
    Awards
------------------------*/
.award-items {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 0;
    border-bottom: 1px solid var(--secondary-color);
    transition: all .3s ease-in-out;
}

.award-items .award-img {
    position: absolute;
    top: 20px;
    right: 12%;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transform: translateY(40px);
    transform-origin: top center;
    border-radius: 100%;
    overflow: hidden;
    display: block;
    width: 200px;
    height: 200px;
    opacity: 1;
    transition: .35s cubic-bezier(.25, .46, .45, .94);
    -webkit-clip-path: circle(0 at 50% 50%);
    clip-path: circle(0 at 50% 50%);
}

.award-items .award-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.award-items:hover .award-img {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transform: translateY(0) skewY(0) scaleZ(1);
    visibility: visible;
    transition-duration: .7s;
    z-index: 5;
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
}

.award-title span {
    position: absolute;
    bottom: 0;
    font-size: 100px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--secondary-color);
}

.award-items:hover .award-title span {
    color: var(--primary-color);
}

.award-title {
    width: 35%;
}

.award-desc {
    width: 45%;
    font-size: 20px;
}

.award-desc p {
    margin-bottom: 0;
}

.award-arrow {
    font-size: 100px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--text-color);
    transform: rotate(-45deg);
}


/* ------------------------
    Timeline
------------------------*/
.main-timeline:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: var(--border-light-color);
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
}

.timeline-item {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    padding-top: 10px;
}

.timeline-item:nth-child(2n+2) .date-content {
    order: 3;
}

.timeline-item:nth-child(2n+2) .timeline-icon {
    order: 2;
    left: 30px;
}

.timeline-order-3 {
    order: 1;
}

.main-timeline .timeline-icon {
    animation: rotate 10s linear infinite;
    width: 60px;
    height: 60px;
    position: relative;
    right: 30px;
    font-size: 30px;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    border-radius: 50%;
    z-index: 9;
}

.main-timeline .date-content {
    width: 50%;
    position: relative;
}

.main-timeline .date-content:before {
    content: "";
    width: 50%;
    height: 1px;
    background: var(--border-light-color);
    margin: auto 0;
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
}

.timeline-item:nth-child(2n+2) .date-content:before {
    content: "";
    width: 50%;
    height: 1px;
    background: var(--border-light-color);
    position: absolute;
    padding-right: 30px;
    margin-right: 50% !important;
}

.main-timeline .date {
    font-family: var(--secondary-font-family);
    display: flex;
    line-height: 1;
    font-weight: 700;
    font-size: 20px;
    color: var(--text-color);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    align-items: center;
    justify-content: center;
    background: var(--white-color);
    box-shadow: 0 20px 60px rgba(92, 107, 149, .15);
    z-index: 1;
    text-align: center;
    padding: 20px;
}

.main-timeline .timeline-content {
    padding: 20px 20px;
}

@media (max-width:767px) {
    .timeline {
        flex-direction: column !important;
    }

    .main-timeline:before {
        margin-left: 1px;
    }

    .main-timeline .timeline-icon {
        margin: auto 2px;
        order: 1;
        left: -1em;
    }

    .main-timeline .timeline-content {
        padding: 40px 30px;
        order: 3;
    }

    .timeline-item:nth-child(2n+2) .date-content {
        order: 2;
    }

    .timeline-item:nth-child(2n+2) .timeline-icon {
        order: 1;
        left: -1em;
    }

    .timeline-item:nth-child(2n+2) .date-content:before {
        width: 100%;
    }

    .timeline-item .date-content:before {
        width: 100%;
    }

    .timeline-item .date-content:before {
        content: "";
        width: 100%;
        height: 2px;
        background: var(--border-light-color);
        position: absolute;
        top: 0;
        padding-right: 30px;
        bottom: 0;
        margin-right: 50% !important;
    }

    .main-timeline .date {
        width: 80px;
        height: 80px;
        font-size: 20px;
    }

    .main-timeline .date-content {
        order: 2;
    }
}

@media (max-width:350px) {
    .timeline-icon {
        visibility: hidden;
    }

    .main-timeline .date-content:before {
        visibility: hidden;
    }

    .date-content {
        left: -15px;
    }
}



/* ------------------------
  Splitting Text
------------------------*/
.splitting {
    --word-center: calc((var(--word-total) - 1) / 2);
    --char-center: calc((var(--char-total) - 1) / 2);
    --line-center: calc((var(--line-total) - 1) / 2);
}

.splitting .word {
    --word-percent: calc(var(--word-index) / var(--word-total));
    --line-percent: calc(var(--line-index) / var(--line-total));
}

.splitting .char {
    --char-percent: calc(var(--char-index) / var(--char-total));
    --char-offset: calc(var(--char-index) - var(--char-center));
    --distance: calc((var(--char-offset) * var(--char-offset)) / var(--char-center));
    --distance-sine: calc(var(--char-offset) / var(--char-center));
    --distance-percent: calc((var(--distance) / var(--char-center)));
}

.splitting.ht-text-animated .char {
    animation-fill-mode: both;
    animation-duration: 1000ms;
    animation-delay: calc(200ms + calc(15ms * var(--char-index)));
}

.splitting.ht-text-animated .char {
    animation-name: uicoreFadeInUp, uicoreFadeIn !important;
    animation-timing-function: cubic-bezier(.22, 1, .36, 1), cubic-bezier(0, 0, .2, 1);
}


@keyframes uicoreFadeInUp {
    0% {
        transform: translate3d(0, 40px, 0);
    }

    100% {
        transform: translateZ(0);
    }
}

@keyframes uicoreFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes weight {
    from {
        font-weight: 100;
    }

    50% {
        font-weight: 600;
    }

    to {
        font-weight: 500;
    }
}


/* ------------------------
  Image Reavel Animation
------------------------*/
.ht-img-animation .elementor-widget-container,
.ht-img-effect .ht-img-effect-image {
    visibility: hidden;
    position: relative;
    overflow: hidden;
}

.ht-img-animation .elementor-widget-container img,
.ht-img-effect .ht-img-effect-image img {
    transform-origin: left;
}


/* ------------------------
  Split Slider
------------------------*/
.ht-img-split-scroller {
    display: flex;
}

.split_images {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100vh;
    background-color: #c4dcd3;
}

.split_images .split-img-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
}

.split_images .split-img-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split_images .split-img-block:first-child {
    opacity: 1;
}

.split_texts {
    position: relative;
    width: 50%;
    margin-left: auto;
}

.split_texts .split-text-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-height: 100vh;
    padding: 6rem 4rem;
    box-sizing: border-box;
}

.split-mobile-img {
    display: none;
}

.split-number {
    font-size: 150px;
    -webkit-text-stroke: 1px var(--text-color);
    color: transparent;
    line-height: 1;
    margin-bottom: 20px;
    font-family: var(--secondary-font-family);
    font-weight: 800;
}

.split-content .counter h6 {
    margin-top: 0;
}

.split-content-counter {
    margin: 50px 0;
}

@media (max-width: 1680px) {
    .split-content-counter {
        margin: 30px 0;
    }
}

.sticky-panel-content {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
}

.sticky-panel {
    height: 100vh;
    flex: 1 0 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.sticky-panel-img {
    width: 50%;
    height: 100%;
}

.sticky-panel-text {
    background: white;
    width: 50%;
    padding: 5rem;
}

@media (max-width: 1680px) {
    .sticky-panel-text {
        padding: 3rem;
    }
}

@media (min-width:1600px) {

    .split_texts .split-text-block,
    .sticky-panel-text {
        padding-right: 15rem;
    }
}


/* ------------------------
  Video
------------------------*/
a.video-popup {
    position: relative;
    display: inline-block;
    text-align: center;
    font-size: 80px;
    line-height: 200px;
    width: 100%;
    height: 100%;
}

.center .video-box {
    width: 100%;
    height: 100vh;
}

.bg-overlay::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(rgba(14, 43, 47, .8), rgba(14, 43, 47, .8));
}

.form-sec:before {
    content: "";
    position: absolute;
    right: -10%;
    bottom: 0;
    height: 100%;
    width: 50% !important;
    background: var(--primary-color);
    transform: skewX(-20deg);
}


/* ------------------------
  Keyframes Animation
------------------------*/

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translatex(-100%);
    }
}

@-webkit-keyframes colorchange {
    0% {

        color: #1c451d;
    }

    10% {

        color: #2d5a2e;
    }

    20% {

        color: #3e6f3f;
    }

    30% {

        color: #4f8450;
    }

    40% {

        color: #5a8f5b;
    }

    50% {

        color: #6a9b16;
    }

    60% {

        color: #5a8f5b;
    }

    70% {

        color: #4f8450;
    }

    80% {

        color: #3e6f3f;
    }

    90% {

        color: #2d5a2e;
    }

    100% {

        color: #1c451d;
    }
}

@keyframes colorchange {
    0% {

        color: #1c451d;
    }

    10% {

        color: #2d5a2e;
    }

    20% {

        color: #3e6f3f;
    }

    30% {

        color: #4f8450;
    }

    40% {

        color: #5a8f5b;
    }

    50% {

        color: #6a9b16;
    }

    60% {

        color: #5a8f5b;
    }

    70% {

        color: #4f8450;
    }

    80% {

        color: #3e6f3f;
    }

    90% {

        color: #2d5a2e;
    }

    100% {

        color: #1c451d;
    }
}

@-webkit-keyframes smoothScroll {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@keyframes smoothScroll {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes elastic1 {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.4);
    }

    55% {
        transform: scale(1.27);
    }

    70% {
        transform: scale(1.36);
    }

    85% {
        transform: scale(1.31);
    }

    100% {
        transform: scale(1.33);
    }
}

@keyframes elastic1_sp {
    0% {
        transform: scale(0.75);
    }

    40% {
        transform: scale(1.05);
    }

    55% {
        transform: scale(0.95);
    }

    70% {
        transform: scale(1.02);
    }

    85% {
        transform: scale(0.98);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes rotate {
    100% {
        transform: rotate(1turn);
    }
}



/* ------------------------
Shop Page
------------------------*/
.product-link a i {
    display: inline-block;
    color: var(--text-color);
    font-size: 18px;
    vertical-align: middle;
}

.product-link a {
    background: var(--bg-light-color);
    padding: 5px 20px;
    font-weight: 500;
    display: inline-block;
    overflow: hidden;
    color: var(--text-color);
    position: relative;
    text-align: center;
}

.product-link a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.product-link a:hover i {
    color: var(--secondary-color);
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.widget-color [type="radio"]:checked,
.widget-color [type="radio"]:not(:checked) {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.widget-color .form-check-label {
    width: 26px;
    height: 26px !important;
    padding: 0 !important;
    margin-bottom: 0;
}

.widget-color .form-check-input[type="radio"]:checked+label,
.widget-color .form-check-input[type="radio"]:not(:checked)+label,
label.btn input[type="radio"]:checked+label,
label.btn input[type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    display: inline-block;
    height: 1.5625rem;
    line-height: 1.5625rem;
    transition: .28s ease;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.widget-color .form-check-input[type="radio"]+label::after,
.widget-color .form-check-input[type="radio"]+label::before,
label.btn input[type="radio"]+label::after,
label.btn input[type="radio"]+label::before {
    content: '';
    position: absolute;
    left: -2px;
    top: -2px;
    width: 30px;
    height: 30px;
    z-index: 0;
    transition: .28s ease;
    z-index: -1;
    border-radius: 0.25rem;
}

.widget-color .form-check-input[type="radio"]:checked+label::after,
label.btn input[type="radio"]:checked+label::after {
    transform: scale(1.02);
}

.widget-color .form-check-input[type="radio"]:checked+label::after {
    background-color: var(--primary-color);
}

.widget-size input[type="radio"] {
    visibility: hidden;
    position: absolute;
}

.widget-size label {
    background: var(--bg-light-color);
    margin-bottom: 0;
    display: inline-block;
    height: 40px;
    min-width: 40px;
    text-align: center;
    font-size: 14px;
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    line-height: 40px;
}

.widget-size input[type="radio"]:checked+label {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.widget-color li {
    list-style-type: none;
    display: inline-block;
    margin-right: 1%;
    margin-bottom: 20px;
    width: 22%;
    text-align: center;
}

.widget-color li:nth-child(4n+4) {
    margin-right: 0;
}

.widget-size li {
    list-style-type: none;
    display: inline-block;
    width: 20%;
    text-align: center;
    float: left;
}

.widget-size li:nth-child(4n+4) {
    margin-right: 0;
}

input.form-product {
    -moz-appearance: textfield;
    height: 40px !important;
    border: none;
    background: var(--white-color);
    text-align: center;
    width: 150px;
    border-top: 1px solid var(--border-light-color) !important;
    border-bottom: 1px solid var(--border-light-color) !important;
    color: var(--text-color);
    vertical-align: middle;
}

.btn-product {
    background: none;
    color: var(--text-color);
    border: 1px solid var(--border-light-color);
    height: 40px;
    width: auto;
    padding: 0 10px;
    font-size: 13px;
    cursor: pointer;
}

.cart-table td {
    padding: 20px;
    text-align: center;
    vertical-align: middle;
    color: var(--text-color);
}

/* ------------------------
    General
------------------------*/


.page-wrapper {
    overflow-x: hidden;
}

/* ------------------------
    Typography
------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    margin-top: 0px;
    margin-bottom: 20px;
    color: var(--text-color);
    font-family: var(--secondary-font-family);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    color: inherit;
}

h1 {
    font-size: 70px;
    font-style: normal;
    line-height: 80px;
    font-weight: 500;
}

h2 {
    font-size: 54px;
    font-style: normal;
    line-height: 64px;
    font-weight: 500;
    position: relative;
}

h3 {
    font-size: 36px;
    font-style: normal;
    line-height: 46px;
    font-weight: 600;
}

h4 {
    font-size: 26px;
    font-style: normal;
    line-height: 36px;
    font-weight: 600;
}

h5 {
    font-size: 24px;
    font-style: normal;
    line-height: 34px;
    font-weight: 600;
}

h6 {
    font-size: 20px;
    font-style: normal;
    line-height: 30px;
    font-weight: 600;
}

ul {
    margin-left: 0;
}

.z-index-0 {
    z-index: 0;
    position: relative;
}

.z-index-1 {
    z-index: 1;
    position: relative;
}

section {
    padding: 50px 0;
    position: relative;
}

section.green-bg {
    background: #c4e193;
}

section.team-section.image-bg {
    background-attachment: fixed;
    padding: 70px 0;
}

section.team-section.image-bg .theme-title {
    position: relative;
}

section.team-section.image-bg .theme-title h2 {
    margin-bottom: 16px;
}

section.team-section.image-bg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: var(--secondary-color);
    opacity: 0.9;
    z-index: 0;
}

label {
    display: inline-block;
    font-weight: 500;
    color: var(--text-color);
    font-size: 14px;
}

/* ------------------------
    Text color
------------------------*/
.text-theme {
    color: var(--primary-color) !important;
}

.text-black {
    color: var(--text-color) !important;
}

.text-grey {
    color: var(--body-color);
}


/* ------------------------
    Background color
------------------------*/
.white-bg {
    background-color: var(--white-color);
}

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

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

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

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

.border-light {
    border-color: var(--border-light-color) !important;
}

/* ------------------------
    Cursor
------------------------*/
#magic-cursor {
    position: absolute;
    display: none;
    pointer-events: none;
    z-index: 99999;
    opacity: 0;
}

body.tt-magic-cursor #magic-cursor {
    display: block
}

#ball {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-color);
    pointer-events: none;
    border-style: solid;
    border-radius: 50%;
    border-color: var(--white-color);
    background: var(--bg-dark-color);
}

#ball.ball-view {
    background-color: var(--bg-dark-color);
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-color);
    line-height: 24px;
    text-align: center;
    width: 150px !important;
    height: 150px !important;
    padding-top: 50px;
}

#ball.ball-view::before {
    content: "\f11a";
    position: absolute;
    top: 15px;
    font-size: 50px;
    line-height: 1;
    font-family: flaticon_mycollection !important;
    display: inline-block;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -webkit-text-stroke: 1px var(--primary-color);
    color: transparent;
}

#ball .ball-view-inner {
    padding: 0 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(0);
}

#ball.ball-drag-slider {
    background-color: var(--bg-dark-color);
    font-size: 18px;
    color: var(--white-color);
    line-height: 1;
    width: 70px !important;
    height: 70px !important;
}

#ball.ball-drag-slider::before {
    content: "\F284";
    position: absolute;
    top: 50%;
    left: 15px;
    font-family: bootstrap-icons !important;
    display: inline-block;
    transform: translateY(-50%);
}

#ball.ball-drag-slider::after {
    content: "\F285";
    position: absolute;
    top: 50%;
    right: 15px;
    font-family: bootstrap-icons !important;
    display: inline-block;
    transform: translateY(-50%);
}

#ball.ball-close-enabled {
    opacity: 1 !important
}

#ball .ball-close {
    position: absolute;
    padding: 0 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1;
    text-align: center
}

#ball.magnetic-active {
    opacity: 0;
}

.magnetic-wrap {
    display: inline-block;
}

#ball.ball-view.video-play {
    text-transform: uppercase;
    background-color: var(--white-color);
    font-family: var(--secondary-font-family);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 24px;
    text-align: center;
    width: 120px !important;
    height: 120px !important;
}

#ball.ball-view.video-play::before {
    content: "\f106";
    top: 25px;
    font-size: 34px;
    font-weight: normal;
    color: var(--text-color);
    -webkit-text-stroke: inherit;
}


/* ------------------------
    Banner Slider
------------------------*/
[data-bg-img] {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.banner-slider {
    background-color: var(--bg-dark-color);
}

.banner-slider .slider-img {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
}

.banner-slider .slider-video {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.banner-slider .slider-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.banner-slider .slider-video::before {
    position: absolute;
    content: '';
    background-color: var(--bg-dark-color);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    z-index: 9;
}

.banner-slider .slider-video .slider-img-fallback {
    display: none;
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-content {
    padding: 200px 0;
    position: relative;
    z-index: 9;
    height: 100vh;
    display: flex;
    align-items: center;
}

.slider-img::before {
    position: absolute;
    content: '';
    background-color: var(--bg-dark-color);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
    z-index: 9;
}

.banner-slider .swiper-button-next,
.banner-slider .swiper-button-prev {
    transform: scale(0);
    width: 60px;
    height: 60px;
    background-image: none !important;
    border-radius: 100%;
    line-height: inherit;
    background: var(--primary-color);
    border: none;
}

.banner-slider .swiper-button-next:hover,
.banner-slider .swiper-button-prev:hover {
    background: var(--bg-dark-color);
}

.banner-slider .swiper-button-next:after,
.banner-slider .swiper-button-prev:after {
    font-size: 24px;
    color: var(--white-color);
    line-height: 60px !important;
}

.banner-slider .swiper-button-next:hover:after,
.banner-slider .swiper-button-prev:hover:after {
    color: var(--white-color);
}

.banner-slider:hover .swiper-button-next,
.banner-slider:hover .swiper-button-prev {
    transform: scale(1);
}

.banner-slider.swiper:hover .swiper-button-prev {
    left: 10px;
}

.banner-slider.swiper:hover .swiper-button-next {
    right: 10px;
}

#banner-pagination {
    position: absolute !important;
    right: 150px;
    left: inherit;
    margin: 0;
    text-align: right;
    width: auto;
    bottom: 50px;
    font-size: 18px;
    color: var(--white-color);
}

.banner-slider .themeht-btn+.themeht-btn {
    margin-left: 20px;
}

.banner-slider .swiper-slide-active h1 {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: zoomIn;
    animation-delay: 1s;
}

.banner-slider .swiper-slide-active .banner-btn {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: zoomIn;
    animation-delay: 1s;
}

.banner-slider .swiper-slide-active p {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 1s;
}

.banner-slider .swiper-slide-active .dark-btn {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInLeft;
    animation-delay: 1s;
}

.banner-slider .swiper-slide-active .white-btn {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: fadeInUp;
    animation-delay: 1s;
}

.banner-content h1 {
    color: var(--white-color);
    font-size: 85px;
    line-height: 95px;
    font-weight: 700;
    margin-bottom: 0 !important;
}

@media (max-width: 1680px) {
    .banner-content h1 {
        font-size: 70px;
        line-height: 80px;
    }
}

.banner-content h1 span {
    display: block;
    color: var(--primary-color);
}

.banner-content p {
    font-size: 20px;
    line-height: 30px;
    font-weight: 400;
    color: var(--white-color);
    margin-bottom: 0;
}

@media (max-width: 1680px) {
    .banner-content p {
        font-size: 18px;
        line-height: 28px;
    }
}

.banner-text-inner {
    display: flex;
    align-items: center;
}

.banner-content .banner-btn {
    flex-shrink: 0;
    margin-right: 40px;
    position: relative;
    display: inline-block;
}

.banner-btn-bg svg {
    fill: var(--white-color);
    stroke: var(--white-color);
    transition: .5s;
}

.banner-btn:hover .banner-btn-bg svg {
    animation: rotate 10s linear infinite;
}

.banner-btn-text svg {
    fill: var(--secondary-color);
    margin-bottom: 15px;
    transition: .5s;
    width: 20px;
    height: 20px;
}

.banner-btn-text {
    transition: .5s;
    color: var(--text-color);
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.banner-btn-text span {
    display: block;
}

.hero-title h1 {
    font-size: 130px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 0;
}

.hero-title i {
    font-size: 80px;
    line-height: 1;
    margin-left: 30px;
    color: var(--text-color);
    animation: rotate 10s linear infinite;
}

.hero-title1 {
    display: flex;
    align-items: center;
}

.hero-title2 h1 {
    color: transparent;
    -webkit-text-stroke: 2px var(--text-color);
    text-align: center;
}

.hero-title3 {
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-title3 i {
    margin-left: 0;
    margin-right: 30px;
}

.banner-slider-two .slider-img::before {
    background-color: var(--primary-color);
    width: 70%;
    height: 100%;
    left: -10%;
    opacity: 0.8;
    transform: skew(15deg);
}

.banner-slider-two .banner-content h1 {
    color: var(--secondary-color);
    font-size: 100px;
    line-height: 110px;
    font-weight: 800;
}


/* ------------------------
    List Icon
------------------------*/
.list-icon li {
    position: relative;
    color: var(--text-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.list-icon li:last-child {
    margin-bottom: 0;
}

.list-icon li i {
    flex-shrink: 0;
    color: var(--white-color);
    font-size: 12px;
    position: relative;
    display: inline-block;
    line-height: 1;
    margin-right: 10px;
    background: var(--primary-color);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.secondary-bg .list-icon li {
    color: var(--white-color);
}



/* ------------------------
    Countdown
------------------------*/
.countdown {
    margin: 50px 0;
    padding: 50px 0;
    display: table;
    width: 100%;
    border-top: 2px dashed var(--border-light-color);
    border-bottom: 2px dashed var(--border-light-color);
}

.countdown>li {
    font-family: var(--secondary-font-family);
    font-weight: 700;
    text-align: center;
    list-style-type: none;
    display: table-cell;
    width: auto;
}

.countdown>li span {
    font-size: 70px;
    font-weight: 700;
    line-height: 60px;
    display: inline-block;
}

.countdown>li p {
    font-size: 20px;
    display: inline-block;
    line-height: 30px;
    margin-bottom: 0;
    color: var(--text-color);
}

.coming-soon .subscribe-form {
    margin: 0 auto;
}

/* ------------------------
    Error
------------------------*/
.error-text {
    display: flex;
    position: relative;
    justify-content: center;
    align-items: center;
}

.error-text h1 {
    font-size: 200px;
    color: var(--primary-color);
    position: relative;
    line-height: 1;
}

.circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 10px solid var(--secondary-color);
    border-left-color: transparent;
    position: relative;
    animation: 1s infinite cir;
    margin-top: 30px;
    margin-left: 20px;
    margin-right: 20px;
}

.cir2 {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
    border-right-color: transparent;
    position: absolute;
    top: 5px;
    left: 5px;
    animation: 2s infinite cir2;
    bottom: 5px;
    right: 5px;
}


/* ------------------------
    Round Text
------------------------*/
.center .round-text {
    margin-left: auto;
    margin-right: auto;
}

.right .round-text {
    margin-left: auto;
}

.round-text {
    position: relative;
    width: 180px;
    overflow: hidden;
    height: 180px;
    display: inline-block;
}

.round-text text {
    font-family: var(--secondary-font-family);
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 2px;
    font-weight: 400;
    fill: var(--text-color);
}

.round-text svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-animation-name: rotate;
    -moz-animation-name: rotate;
    -ms-animation-name: rotate;
    -o-animation-name: rotate;
    animation-name: rotate;
    -webkit-animation-duration: 10s;
    -moz-animation-duration: 20s;
    -ms-animation-duration: 20s;
    -o-animation-duration: 20s;
    animation-duration: 20s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -ms-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -ms-animation-timing-function: linear;
    -o-animation-timing-function: linear;
    animation-timing-function: linear;
}

.text-btn-icon {
    font-size: 60px;
    color: var(--text-color) !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}



/* ------------------------
    Contact
------------------------*/
.contact-media {
    background: var(--white-color);
    padding: 40px 25px;
    border: 1px solid var(--border-light-color);
}

.contact-media i {
    line-height: 100px;
    font-size: 70px;
    background: var(--primary-color);
    color: var(--white-color);
    margin-bottom: 30px;
    display: inline-block;
    width: 100px;
    height: 100px;
    text-align: center;
}

.contact-media span {
    font-size: 20px;
    color: var(--secondary-color);
    font-family: var(--secondary-font-family);
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.contact-media p {
    margin-bottom: 0;
    line-height: 24px;
}

.contact-media p,
.contact-media a {
    color: var(--text-color);
    font-size: 18px;
    min-height: 72px;
    display: block;
}

.contact-media a:hover {
    color: var(--secondary-color);
}

.quote-media .contact-media {
    background: none;
    padding: 0;
    border: none;
}

.quote-media .contact-media li {
    display: flex;
    align-items: center;
}

.quote-media .contact-media i {
    line-height: 1;
    background: none;
    margin-bottom: 0;
    width: auto;
    height: auto;
    margin-right: 20px;
    color: var(--primary-color);
}

.quote-media .contact-media span {
    font-size: 20px;
    margin-bottom: 0;
}

.quote-media .contact-media a {
    font-weight: 700;
    color: var(--primary-color);
}

.quote-media p {
    color: var(--text-color);
    font-size: 17px;
    font-weight: 500;
}

.contact-img {
    margin-top: -110px
}

@media (max-width: 768px) {
    .contact-img {
        display: none;
    }
}


.form-group {
    margin-bottom: 20px;
    position: relative;
}

label {
    font-size: 14px;
    line-height: 1;
    color: var(--text-color)
}

.form-control {
    padding: 16px 24px;
    height: 55px;
    border-radius: 0;
    font-size: 13px;
    color: var(--body-color);
    background-color: var(--white-color);
    border: 1px solid var(--border-light-color);
}

textarea.form-control {
    height: 150px;
    border-radius: 0;
}

.form-control:focus {
    box-shadow: none;
    background: none;
    border-color: var(--primary-color);
}

select.form-control {
    height: 55px !important;
    color: var(--body-color);
}

iframe {
    width: 100%;
    border: none;
    pointer-events: auto;
}

.iframe-h {
    height: 300px !important;
}

.iframe-h-2 {
    height: 600px !important;
}

.map iframe {
    border: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.help-block.with-errors {
    position: absolute;
    color: red;
    right: 15px;
    font-size: 10px;
    line-height: 14px;
}

.form-control::-webkit-input-placeholder {
    color: var(--body-color);
}

.form-control::-moz-placeholder {
    color: var(--body-color);
}

.form-control:-ms-input-placeholder {
    color: var(--body-color);
}

.form-control:-moz-placeholder {
    color: var(--body-color);
}


p {
    margin: 0 0 25px;
    line-height: 1.6;
}


/* ------------------------
    Responsive Css
------------------------*/
@media (max-width:992px) {
    .navbar-toggler {
        background: var(--primary-color);
        height: 50px;
        width: 50px;
        padding: 0;
        border-radius: 0;
        border: none;
        margin-left: auto;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .ht-toggler svg {
        width: 40px;
        height: 40px;
        display: inline-block;
    }

    .ht-toggler .line {
        fill: none;
        stroke: var(--white-color);
        stroke-width: 6;
        transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
    }

    .ht-toggler .line1 {
        stroke-dasharray: 60 207;
        stroke-width: 3;
    }

    .ht-toggler .line2 {
        stroke-dasharray: 60 60;
        stroke-width: 3;
    }

    .ht-toggler .line3 {
        stroke-dasharray: 60 207;
        stroke-width: 3;
    }

    .ht-toggler[aria-expanded="true"] .line1 {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
        stroke-width: 3;
    }

    .ht-toggler[aria-expanded="true"] .line2 {
        stroke-dasharray: 1 60;
        stroke-dashoffset: -30;
        stroke-width: 3;
    }

    .ht-toggler[aria-expanded="true"] .line3 {
        stroke-dasharray: 90 207;
        stroke-dashoffset: -134;
        stroke-width: 3;
    }

    .navbar-collapse {
        background: var(--bg-dark-color);
        max-height: 400px;
        left: 0;
        padding: 20px;
        position: absolute;
        z-index: 99;
        top: 100%;
        width: 100%;
        overflow: auto;
        box-shadow: 0px 10px 35px 0px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav .dropdown-toggle::after {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }

    .navbar-nav .dropdown-submenu .dropdown-toggle::after {
        top: 18px;
    }

    .navbar-nav .nav-item {
        margin: 0;
    }

    .navbar-nav .nav-link {
        padding: 20px 0 !important;
        color: var(--white-color);
        box-shadow: none;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-nav .nav-item .nav-link.active,
    .navbar-nav .nav-item .nav-link:focus,
    .navbar-nav .nav-link.show {
        box-shadow: none;
        color: var(--primary-color);
    }

    .navbar-nav .dropdown-menu .dropdown-item {
        color: var(--text-color);
        display: block;
    }

    /*Banner*/
    .logo img {
        max-height: 70px;
    }

    .themeht-sidebar {
        margin-top: 80px;
    }

    .post-card .post-bottom li {
        font-size: 14px;
    }

    .slider-img::before {
        width: 100%;
        left: 0;
    }

    .banner-content {
        padding: 200px 0;
    }

    .banner-slider p {
        max-width: inherit;
    }

    .footer-logo {
        font-size: 100px;
        top: 70px;
        transform: inherit;
        width: 50%;
        position: relative;
    }

    .bg-img-sec {
        min-height: 300px !important;
    }

    .step-content {
        padding: 50px;
    }

    .header-number {
        display: none;
    }

    .header-top .topbar-link li {
        font-size: 13px;
    }

    .ht-bg-move-effect {
        clip-path: inherit !important;
    }

    #header-wrap {
        padding: 10px 20px;
    }

    .main-header-inner {
        padding-left: 0;
    }

    .header-top {
        padding: 10px 15px;
        border-radius: 0;
    }

    .social-icons {
        margin-bottom: 1rem;
        display: none;
    }

    .header .themeht-btn {
        padding: 12px 20px;
    }

    .primary-footer-btm>[class*='col-']:nth-child(2) {
        padding-right: 0;
        border-right: none;
    }

    .primary-footer-btm>[class*='col-']:nth-child(3) {
        padding-left: 0;
    }

    .ht-img-split-scroller {
        display: block;
    }

    .pin-spacer-ht-img-split-scroller,
    .split_texts {
        width: 100% !important;
    }

    .split_images {
        display: none;
    }

    .split-mobile-img {
        display: block;
        margin-bottom: 30px;
    }

    .split_texts {
        padding: 0 3rem 3rem 3rem;
    }

    .split_texts .split-text-block {
        min-height: auto;
        padding: 0;
        margin-bottom: 30px;
    }

    .sticky-panel-content {
        display: block;
        height: auto;
        overflow: inherit;
    }

    .sticky-panel {
        height: auto;
        display: block;
    }

    .sticky-panel-img {
        width: 100%;
        height: 400px;
    }

    .sticky-panel-text {
        width: 100%;
        padding: 3rem;
    }

    .hero-title h1 {
        font-size: 80px;
    }

    .service-item.style-2 .service-title h4 {
        font-size: 20px;
        line-height: 30px;
        padding: 10px 10px;
    }

    .service-item.style-2 .service-icon {
        font-size: 30px;
    }

    .award-title span {
        font-size: 70px;
    }

    .award-desc {
        font-size: 15px;
    }

    .award-items {
        display: block;
    }

    .award-title,
    .award-desc {
        width: 100%;
    }

    .ht-tab .tab-menu {
        display: block;
    }

    .ht-tab-content .counter {
        margin-bottom: 20px;
    }

    .banner-slider-two .slider-img::before {
        width: 100%;
        left: 0;
        opacity: 0.6;
        transform: inherit;
    }

    .contact-img {
        margin-top: 40px;
    }

    .counter.style-2 .counter-desc span {
        font-size: 50px;
    }

    .counter.style-2 .counter-desc span {
        font-size: 40px;
    }

    .post-card.style-1 .post-desc,
    .post-card.post-classic .post-desc {
        padding: 30px 20px;
    }
}

@media (max-width:767px) {
    h1 {
        font-size: 60px !important;
        line-height: 70px !important;
    }

    .theme-title h2 {
        font-size: 42px !important;
        line-height: 52px !important;
    }

    .theme-title p {
        font-size: 16px;
    }

    .page-title h1 {
        font-size: 50px;
        line-height: 60px;
    }

    .header-top {
        /* display: none; */
    }

    .counter.style-2 .counter-desc span {
        font-size: 50px;
    }

    .counter.style-3 .counter-desc span {
        font-size: 70px;
    }

    .banner-content {
        padding: 120px 0 30px;
    }

    .banner-text-inner {
        display: block;
    }

    .banner-text-inner .banner-btn-bg {
        margin-bottom: 20px;
    }

    .portfolio-meta-info {
        position: relative;
        bottom: inherit;
        right: inherit;
        width: auto;
    }

    .footer-logo {
        top: inherit;
        position: inherit;
        margin-bottom: 50px;
        width: 100%;
    }

    .featured-item.style-3 .featured-icon {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .featured-item.style-3 .featured-top {
        display: block;
    }

    .primary-footer-btm>[class*='col-'] {
        border-right: none;
        padding-left: 0;
        padding-right: 0;
    }

    .portfolio-item.style-1 .portfolio-desc {
        display: block;
    }

    .portfolio-name {
        width: auto;
        margin-right: 0;
        margin-bottom: 30px;
    }

    .portfolio-item.style-1 h4 {
        line-height: 40px;
        font-size: 30px;
    }

    .split_texts {
        padding: 0;
    }

    .split-number {
        font-size: 60px;
    }

    .split_texts .split-text-block {
        padding: 2rem 1rem;
    }

    .split-content-counter .counter {
        margin-bottom: 30px;
    }

    .hero-title h1 {
        font-size: 42px !important;
    }

    .hero-title i {
        font-size: 30px;
    }

    .service-list {
        padding-right: 0;
    }

    .service-list .service-item.style-2 .service-image {
        top: 10%;
        right: 0;
        width: 50%;
        height: 20%;
        position: static;
        width: 100%;
        height: 350px;
        opacity: 1;
        transform: none;
    }

    .service-item.style-2 .service-desc {
        justify-content: flex-start;
    }

    .service-item.style-2 .service-title h4 {
        font-size: 26px;
        line-height: 36px;
        padding: 30px;
    }

    .subscribe-form button {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
    }

    .tab .nav-tabs .nav-link {
        width: 100%;
    }
}

@media (max-width:576px) {

    h1,
    .h1 {
        font-size: 50px !important;
        line-height: 60px !important;
    }

    .theme-title h2 {
        font-size: 37px !important;
        line-height: 47px !important;
    }

    /*Other*/
    .social-icons.footer-social li a {
        height: 45px;
        width: 45px;
        line-height: 45px;
        font-size: 26px;
    }
}

a.footer-logo img {
    /* background: #fff;
    border-radius: 100px;
    padding: 10px 40px;
    height: auto;
    border: 3px solid var(--primary-color); */
    height: 150px;
}

@media (max-width: 1680px) {

    .sticky-panel-text h3 {
        font-size: 28px;
        margin-bottom: 0;
    }

    .sticky-panel-text p {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .sticky-panel-text ul li {
        font-size: 16px;
    }
}

.light-green-bg {
    background: #f5ffe4;
}

@media (max-width: 576px) {
    .mobile-view-none {
        display: none !important;
    }
}

header#site-header {
    position: absolute;
    z-index: 99;
    width: 100%;
    /* background: rgb(0 0 0 / 50%); */
}

.download-app ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 60px;
    margin-top: 30px;
}

.tab-list .download-app ul {
    justify-content: start;
    margin-top: 0;
}

.download-app ul li {
    padding: 0;
    margin: 0;
}

.download-app ul li:before {
    content: none;
}

.download-app ul li img {
    height: 192px;
    width: 100%;
}

.android-ios-app {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
}

.header-app {
    display: flex;
    flex-direction: column;
    color: #fff;
    margin-right: 25px;
}

@media (max-width: 1440px) {
    .header-app {
        display: none;
    }
}

.android-ios-app a {
    color: var(--white-color);
    background: #000000;
    padding: 2px 9px;
    border-radius: 20px;
    font-size: 14px;
    background-image: linear-gradient(to right, var(--primary-color), #3d6100);
    text-shadow: 1px 1px 1px #000;
    transition: .5s;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.android-ios-app a:hover {
    background-image: linear-gradient(to right, var(--secondary-color), #3d6100);
}

.android-ios-app a i {
    font-size: 16px;
}

a.without-style svg {
    stroke: var(--secondary-color);
    margin-left: 10px;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.cta_buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 25px;
    text-align: center;
}

.pl-10p {
    padding-left: 10%;
}

@media (max-width: 768px) {
    .pl-10p {
        padding-left: 15px;
    }
}

/* ------------------------
    Careers Page Styles
------------------------*/
.job-card {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.job-card .badge {
    background-color: var(--primary-color) !important;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.job-card ul li {
    font-size: 15px;
    line-height: 1.8;
}

.job-card .text-primary {
    color: var(--primary-color) !important;
}

.job-card .themeht-btn {
    margin-top: 10px;
}

.info_down {
    background: #e2edd4;
    padding: 15px;
    margin-bottom: 15px;
}

.info_down {}

.info_down .product_btn {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
}

/*24-11-25*/
.service-widget .service-menu li ul li a {
    font-size: 15px;
    background: #f9ffeb;
    padding: 9px 15px;
}
.service-widget .service-menu li a.parents:before,.service-widget .service-menu li a.parents:after {
    rotate: 90deg;
}

.service-widget li:last-child a {
    border: none;
}

.active>.page-link, .page-link.active {
    z-index: 3;
    color: var(--bs-pagination-active-color);
    background-color: var(--primary-color);
    border-color: #fff !important;
}