              @use "sass:math";

             :root {
                 --theme-color: #137cf5;
                 --theme-color2: #F93E5E;
                 --title-color: #1F1F1F;
                 --body-color: #5C6574;
                 --smoke-color: #E0E0E0;
                 --smoke-color2: #F8F8F8;
                 --smoke-color3: #EBEEFF;
                 --smoke-color4: #F9F8FF;
                 --black-color: #000000;
                 --black-color2: #0A0A0A;
                 --gray-color: #bdbdbd;
                 --white-color: #ffffff;
                 --light-color: #72849B;
                 --yellow-color: #FFB539;
                 --success-color: #28a745;
                 --error-color: #dc3545;
                 --th-border-color: #E0E0E0;
                 --title-font: "Poppins", sans-serif;
                 --body-font: "DM Sans", sans-serif;
                 --icon-font: "Font Awesome 6 Pro";
                 --main-container: 1320px;
                 --container-gutters: 24px;
                 --section-space: 120px;
                 --section-space-mobile: 80px;
                 --section-title-space: 60px;
                 --ripple-ani-duration: 5s
             }

             html,
             body {
                 scroll-behavior: auto !important
             }

             body {
                 font-family: var(--body-font);
                 font-size: 16px;
                 font-weight: 400;
                 color: var(--body-color);
                 line-height: 26px;
                 overflow-x: hidden;
                 -webkit-font-smoothing: antialiased
             }

             body.theme-blue {
                 --theme-color: #137cf5;
             }

             body.theme-bright-red {
                 --theme-color: #F93E5E
             }

             body.theme-lima {
                 --theme-color: #70D715;
                 background-color: #F5F8F3
             }

             body.theme-lima2 {
                 --theme-color: #70D715
             }

             body.theme-green-grey {
                 --theme-color: #7E9E7E
             }

             body.theme-blue2 {
                 --theme-color: #4661FF
             }

             iframe {
                 border: none;
                 width: 100%
             }

             .slick-slide:focus,
             button:focus,
             a:focus,
             a:active,
             a.nice-select.open,
             input,
             input:hover,
             input:focus,
             input:active,
             input.nice-select.open,
             textarea,
             textarea:hover,
             textarea:focus,
             textarea:active,
             textarea.nice-select.open {
                 outline: none
             }

             input:focus {
                 outline: none;
                 box-shadow: none
             }

             img:not([draggable]),
             embed,
             object,
             video {
                 max-width: 100%;
                 height: auto
             }

             ul {
                 list-style-type: disc
             }

             ol {
                 list-style-type: decimal
             }

             table {
                 margin: 0 0 1.5em;
                 width: 100%;
                 border-collapse: collapse;
                 border-spacing: 0;
                 border: 1px solid var(--th-border-color)
             }

             th {
                 font-weight: 700;
                 color: var(--title-color)
             }

             td,
             th {
                 border: 1px solid var(--th-border-color);
                 padding: 9px 12px
             }

             a {
                 color: var(--theme-color);
                 text-decoration: none;
                 outline: 0;
                 -webkit-transition: all ease 0.4s;
                 transition: all ease 0.4s
             }

             a:hover {
                 color: var(--title-color)
             }

             a:active,
             a.nice-select.open,
             a:focus,
             a:hover,
             a:visited {
                 text-decoration: none;
                 outline: 0
             }

             button {
                 -webkit-transition: all ease 0.4s;
                 transition: all ease 0.4s
             }

             img {
                 border: none;
                 max-width: 100%
             }

             ins {
                 text-decoration: none
             }

             pre {
                 font-family: var(--body-font);
                 background: #f5f5f5;
                 color: #666;
                 font-size: 14px;
                 margin: 20px 0;
                 overflow: auto;
                 padding: 20px;
                 white-space: pre-wrap;
                 word-wrap: break-word
             }

             span.ajax-loader:empty,
             p:empty {
                 display: none
             }

             p {
                 font-family: var(--body-font);
                 margin: 0 0 18px 0;
                 color: var(--body-color);
                 line-height: 1.75
             }

             h1 a,
             h2 a,
             h3 a,
             h4 a,
             h5 a,
             h6 a,
             p a,
             span a {
                 font-size: inherit;
                 font-family: inherit;
                 font-weight: inherit;
                 line-height: inherit
             }

             .h1,
             h1,
             .h2,
             h2,
             .h3,
             h3,
             .h4,
             h4,
             .h5,
             h5,
             .h6,
             h6 {
                 font-family: var(--title-font);
                 color: var(--title-color);
                 text-transform: none;
                 font-weight: 700;
                 line-height: 1.4;
                 margin: 0 0 15px 0
             }

             .h1,
             h1 {
                 font-size: 64px;
                 line-height: 1.208
             }

             .h2,
             h2 {
                 font-size: 44px;
                 line-height: 1.25;
                 font-weight: 600
             }

             .h3,
             h3 {
                 font-size: 30px;
                 line-height: 1.278
             }

             .h4,
             h4 {
                 font-size: 30px;
                 line-height: 1.333
             }

             .h5,
             h5 {
                 font-size: 24px;
                 line-height: 1.417
             }

             .h6,
             h6 {
                 font-size: 20px;
                 line-height: 1.5
             }

             @media (max-width: 1199px) {

                 .h1,
                 h1 {
                     font-size: 44px;
                     line-height: 1.3
                 }

                 .h2,
                 h2 {
                     font-size: 36px;
                     line-height: 1.3
                 }

                 .h3,
                 h3 {
                     font-size: 30px
                 }

                 .h4,
                 h4 {
                     font-size: 24px
                 }

                 .h5,
                 h5 {
                     font-size: 20px
                 }

                 .h6,
                 h6 {
                     font-size: 16px
                 }
             }

             @media (max-width: 767px) {

                 .h1,
                 h1 {
                     font-size: 40px
                 }

                 .h2,
                 h2 {
                     font-size: 34px;
                     line-height: 1.3
                 }

                 .h3,
                 h3 {
                     font-size: 26px
                 }

                 .h4,
                 h4 {
                     font-size: 22px
                 }

                 .h5,
                 h5 {
                     font-size: 18px
                 }

                 .h6,
                 h6 {
                     font-size: 16px
                 }
             }

             @media (max-width: 575px) {

                 .h1,
                 h1 {
                     font-size: 34px;
                     line-height: 1.35
                 }

                 .h2,
                 h2 {
                     font-size: 28px
                 }
             }

             @media (max-width: 375px) {

                 .h1,
                 h1 {
                     font-size: 32px
                 }
             }

             p.has-drop-cap {
                 margin-bottom: 20px
             }

             .page--item p:last-child .alignright {
                 clear: right
             }

             .blog-title,
             .pagi-title,
             .breadcumb-title {
                 word-break: break-word
             }

             .blocks-gallery-caption,
             .wp-block-embed figcaption,
             .wp-block-image figcaption {
                 color: var(--body-color)
             }

             .bypostauthor,
             .gallery-caption {
                 display: block
             }

             .page-links,
             .clearfix {
                 clear: both
             }

             .page--item {
                 margin-bottom: 30px
             }

             .page--item p {
                 line-height: 1.8
             }

             .content-none-search {
                 margin-top: 30px
             }

             .wp-block-button.aligncenter {
                 text-align: center
             }

             .alignleft {
                 display: inline;
                 float: left;
                 margin-bottom: 10px;
                 margin-right: 1.5em
             }

             .alignright {
                 display: inline;
                 float: right;
                 margin-bottom: 10px;
                 margin-left: 1.5em;
                 margin-right: 1em
             }

             .aligncenter {
                 clear: both;
                 display: block;
                 margin-left: auto;
                 margin-right: auto;
                 max-width: 100%
             }

             .gallery {
                 margin-bottom: 1.5em;
                 width: 100%
             }

             .gallery-item {
                 display: inline-block;
                 text-align: center;
                 vertical-align: top;
                 width: 100%;
                 padding: 0 5px
             }

             .wp-block-columns {
                 margin-bottom: 1em
             }

             figure.gallery-item {
                 margin-bottom: 10px;
                 display: inline-block
             }

             figure.wp-block-gallery {
                 margin-bottom: 14px
             }

             .gallery-columns-2 .gallery-item {
                 max-width: 50%
             }

             .gallery-columns-3 .gallery-item {
                 max-width: 33.33%
             }

             .gallery-columns-4 .gallery-item {
                 max-width: 25%
             }

             .gallery-columns-5 .gallery-item {
                 max-width: 20%
             }

             .gallery-columns-6 .gallery-item {
                 max-width: 16.66%
             }

             .gallery-columns-7 .gallery-item {
                 max-width: 14.28%
             }

             .gallery-columns-8 .gallery-item {
                 max-width: 12.5%
             }

             .gallery-columns-9 .gallery-item {
                 max-width: 11.11%
             }

             .gallery-caption {
                 display: block;
                 font-size: 12px;
                 color: var(--body-color);
                 line-height: 1.5;
                 padding: .5em 0
             }

             .wp-block-cover p:not(.has-text-color),
             .wp-block-cover-image-text,
             .wp-block-cover-text {
                 color: var(--white-color)
             }

             .wp-block-cover {
                 margin-bottom: 15px
             }

             .wp-caption-text {
                 text-align: center
             }

             .wp-caption {
                 margin-bottom: 1.5em;
                 max-width: 100%
             }

             .wp-caption .wp-caption-text {
                 margin: .5em 0;
                 font-size: 14px
             }

             .wp-block-media-text,
             .wp-block-media-text.alignwide,
             figure.wp-block-gallery {
                 margin-bottom: 30px
             }

             .wp-block-media-text.alignwide {
                 background-color: var(--smoke-color)
             }

             .editor-styles-wrapper .has-large-font-size,
             .has-large-font-size {
                 line-height: 1.4
             }

             .wp-block-latest-comments a {
                 color: inherit
             }

             .wp-block-button {
                 margin-bottom: 10px
             }

             .wp-block-button:last-child {
                 margin-bottom: 0
             }

             .wp-block-button .wp-block-button__link {
                 color: #fff
             }

             .wp-block-button .wp-block-button__link:hover {
                 color: #fff;
                 background-color: var(--theme-color)
             }

             .wp-block-button.is-style-outline .wp-block-button__link {
                 background-color: transparent;
                 border-color: var(--title-color);
                 color: var(--title-color)
             }

             .wp-block-button.is-style-outline .wp-block-button__link:hover {
                 color: #fff;
                 background-color: var(--theme-color);
                 border-color: var(--theme-color)
             }

             .wp-block-button.is-style-squared .wp-block-button__link {
                 border-radius: 0
             }

             ol.wp-block-latest-comments li {
                 margin: 15px 0
             }

             ul.wp-block-latest-posts {
                 padding: 0;
                 margin: 0;
                 margin-bottom: 15px
             }

             ul.wp-block-latest-posts a {
                 color: inherit
             }

             ul.wp-block-latest-posts a:hover {
                 color: var(--theme-color)
             }

             ul.wp-block-latest-posts li {
                 margin: 15px 0
             }

             .wp-block-search {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-flex-wrap: wrap;
                 -ms-flex-wrap: wrap;
                 flex-wrap: wrap;
                 margin-bottom: 30px
             }

             .wp-block-search .wp-block-search__input {
                 width: 100%;
                 max-width: 100%;
                 border: 1px solid rgba(0, 0, 0, 0.1);
                 padding-left: 20px
             }

             .wp-block-search .wp-block-search__button {
                 margin: 0;
                 min-width: 110px;
                 border: none;
                 color: #fff;
                 background-color: var(--theme-color)
             }

             .wp-block-search .wp-block-search__button.has-icon {
                 min-width: 55px
             }

             .wp-block-search .wp-block-search__button:hover {
                 background-color: var(--title-color);
                 opacity: 0.8
             }

             .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
                 padding: 0;
                 border: none
             }

             .wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
                 padding: 0 8px 0 25px
             }

             ul.wp-block-rss a {
                 color: inherit
             }

             .wp-block-group.has-background {
                 padding: 15px 15px 1px;
                 margin-bottom: 30px
             }

             .wp-block-table td,
             .wp-block-table th {
                 border-color: rgba(0, 0, 0, 0.1)
             }

             .wp-block-table.is-style-stripes {
                 border: 1px solid rgba(0, 0, 0, 0.1);
                 margin-bottom: 30px
             }

             .wp-block-table.is-style-stripes {
                 border: 0;
                 margin-bottom: 30px;
                 border-bottom: 0
             }

             .wp-block-table.is-style-stripes th,
             .wp-block-table.is-style-stripes td {
                 border-color: var(--th-border-color)
             }

             .logged-in .will-sticky .sticky-active.active,
             .logged-in .preloader .th-btn {
                 top: 32px
             }

             @media (max-width: 782px) {

                 .logged-in .will-sticky .sticky-active.active,
                 .logged-in .preloader .th-btn {
                     top: 46px
                 }
             }

             @media (max-width: 600px) {

                 .logged-in .will-sticky .sticky-active.active,
                 .logged-in .preloader .th-btn {
                     top: 0
                 }
             }

             .post-password-form {
                 margin-bottom: 30px;
                 margin-top: 20px
             }

             .post-password-form p {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 position: relative;
                 gap: 15px
             }

             @media (max-width: 575px) {
                 .post-password-form p {
                     -webkit-flex-wrap: wrap;
                     -ms-flex-wrap: wrap;
                     flex-wrap: wrap
                 }
             }

             .post-password-form label {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 -webkit-box-flex: 1;
                 -webkit-flex: auto;
                 -ms-flex: auto;
                 flex: auto;
                 margin-bottom: 0;
                 line-height: 1;
                 margin-top: 0;
                 gap: 15px
             }

             @media (max-width: 575px) {
                 .post-password-form label {
                     -webkit-flex-wrap: wrap;
                     -ms-flex-wrap: wrap;
                     flex-wrap: wrap
                 }
             }

             .post-password-form input {
                 width: 100%;
                 border: none;
                 height: 55px;
                 padding-left: 25px;
                 color: var(--body-color);
                 border: 1px solid var(--th-border-color)
             }

             .post-password-form input[type="submit"] {
                 padding-left: 0;
                 padding-right: 0;
                 margin: 0;
                 width: 140px;
                 border: none;
                 color: #fff;
                 background-color: var(--theme-color);
                 text-align: center
             }

             .post-password-form input[type="submit"]:hover {
                 background-color: var(--title-color)
             }

             .page-links {
                 clear: both;
                 margin: 0 0 1.5em;
                 padding-top: 1em
             }

             .page-links>.page-links-title {
                 margin-right: 10px
             }

             .page-links>span:not(.page-links-title):not(.screen-reader-text),
             .page-links>a {
                 display: inline-block;
                 padding: 5px 13px;
                 background-color: var(--white-color);
                 color: var(--title-color);
                 border: 1px solid rgba(0, 0, 0, 0.08);
                 margin-right: 10px
             }

             .page-links>span:not(.page-links-title):not(.screen-reader-text):hover,
             .page-links>a:hover {
                 opacity: 0.8;
                 color: var(--white-color);
                 background-color: var(--theme-color);
                 border-color: transparent
             }

             .page-links>span:not(.page-links-title):not(.screen-reader-text).current,
             .page-links>a.current {
                 background-color: var(--theme-color);
                 color: var(--white-color);
                 border-color: transparent
             }

             .page-links span.screen-reader-text {
                 display: none
             }

             .blog-single .wp-block-archives-dropdown {
                 margin-bottom: 30px
             }

             .blog-single.format-quote,
             .blog-single.format-link,
             .blog-single.tag-sticky-2,
             .blog-single.sticky {
                 border-color: transparent;
                 position: relative
             }

             .blog-single.format-quote .blog-content,
             .blog-single.format-link .blog-content,
             .blog-single.tag-sticky-2 .blog-content,
             .blog-single.sticky .blog-content {
                 background-color: var(--smoke-color);
                 padding: 0;
                 border: none
             }

             .blog-single.format-quote .blog-content:before,
             .blog-single.format-link .blog-content:before,
             .blog-single.tag-sticky-2 .blog-content:before,
             .blog-single.sticky .blog-content:before {
                 display: none
             }

             .blog-single.format-quote:before,
             .blog-single.format-link:before,
             .blog-single.tag-sticky-2:before,
             .blog-single.sticky:before {
                 content: '\f0c1';
                 position: absolute;
                 font-family: 'Font Awesome 6 Pro';
                 font-size: 5rem;
                 opacity: 0.3;
                 right: 15px;
                 line-height: 1;
                 top: 15px;
                 color: var(--theme-color);
                 z-index: 1
             }

             .blog-single.tag-sticky-2::before,
             .blog-single.sticky::before {
                 content: "Featured";
                 right: 0;
                 top: 0;
                 font-size: 18px;
                 color: var(--white-color);
                 background-color: var(--theme-color);
                 font-family: var(--title-font);
                 opacity: 1;
                 text-transform: capitalize;
                 padding: 10px 23px;
                 font-weight: 400
             }

             .blog-single.format-quote:before {
                 content: "\f10e";
                 top: 0
             }

             .blog-single .blog-content .wp-block-categories-dropdown.wp-block-categories,
             .blog-single .blog-content .wp-block-archives-dropdown {
                 display: block;
                 margin-bottom: 30px
             }

             .blog-details .blog-single:before {
                 display: none
             }

             .blog-details .blog-single .blog-content {
                 background-color: transparent;
                 overflow: hidden
             }

             .blog-details .blog-single.format-chat .blog-meta {
                 margin-bottom: 20px
             }

             .blog-details .blog-single.format-chat .blog-content>p:nth-child(2n) {
                 background: var(--smoke-color);
                 padding: 5px 20px
             }

             .blog-details .blog-single.tag-sticky-2,
             .blog-details .blog-single.sticky,
             .blog-details .blog-single.format-quote,
             .blog-details .blog-single.format-link {
                 box-shadow: none;
                 border: none;
                 background-color: transparent
             }

             .blog-details .blog-single.tag-sticky-2:before,
             .blog-details .blog-single.sticky:before,
             .blog-details .blog-single.format-quote:before,
             .blog-details .blog-single.format-link:before {
                 display: none
             }

             .th-search {
                 background-color: #f3f3f3;
                 margin-bottom: 30px;
                 border: 1px solid #f3f3f3
             }

             .th-search .search-grid-content {
                 padding: 30px
             }

             @media (max-width: 767px) {
                 .th-search .search-grid-content {
                     padding: 20px
                 }
             }

             .th-search .search-grid-title {
                 font-size: 20px;
                 margin-bottom: 5px;
                 margin-top: 0
             }

             .th-search .search-grid-title a {
                 color: inherit
             }

             .th-search .search-grid-title a:hover {
                 color: var(--theme-color)
             }

             .th-search .search-grid-meta>* {
                 display: inline-block;
                 margin-right: 15px;
                 font-size: 14px
             }

             .th-search .search-grid-meta>*:last-child {
                 margin-right: 0
             }

             .th-search .search-grid-meta a,
             .th-search .search-grid-meta span {
                 color: var(--body-color)
             }

             @media (max-width: 1199px) {

                 .blog-single.format-quote:before,
                 .blog-single.format-link:before,
                 .blog-single.tag-sticky-2:before,
                 .blog-single.sticky:before {
                     font-size: 14px;
                     padding: 8px 16px
                 }

                 .blog-single.format-quote:before {
                     top: 15px
                 }
             }

             @media (max-width: 767px) {

                 .blog-single.format-quote:before,
                 .blog-single.format-link:before,
                 .blog-single.tag-sticky-2:before,
                 .blog-single.sticky:before {
                     font-size: 14px;
                     padding: 8px 16px
                 }
             }

             @media (max-width: 768px) {
                 .wp-block-latest-comments {
                     padding-left: 10px
                 }

                 .page--content.clearfix+.th-comment-form {
                     margin-top: 24px
                 }
             }

             @media (max-width: 1399px) {
                 :root {
                     --main-container: 1250px
                 }
             }

             @media (min-width: 1370px) {
                 .th-container2 {
                     --main-container: 1560px
                 }
             }

             .th-container3 {
                 --main-container: 1540px
             }

             @media (min-width: 1370px) {
                 .th-container4 {
                     --main-container: 1620px
                 }
             }

             @media (min-width: 1922px) {
                 .th-container2 {
                     margin-left: auto;
                     margin-right: auto
                 }
             }

             @media only screen and (min-width: 1300px) {

                 .container-xxl,
                 .container-xl,
                 .container-lg,
                 .container-md,
                 .container-sm,
                 .container {
                     max-width: calc(var(--main-container) + var(--container-gutters));
                     padding-left: calc(var(--container-gutters) / 2);
                     padding-right: calc(var(--container-gutters) / 2)
                 }

                 .container-xxl.px-0,
                 .container-xl.px-0,
                 .container-lg.px-0,
                 .container-md.px-0,
                 .container-sm.px-0,
                 .container.px-0 {
                     max-width: var(--main-container)
                 }
             }

             @media only screen and (min-width: 1300px) {
                 .th-container {
                     --main-container: 1720px
                 }
             }

             @media only screen and (max-width: 1600px) {
                 .container-fluid.px-0 {
                     padding-left: 15px !important;
                     padding-right: 15px !important
                 }

                 .container-fluid.px-0 .row {
                     margin-left: 0 !important;
                     margin-right: 0 !important
                 }
             }

             .round-container {
                 max-width: 1620px;
                 margin-left: auto;
                 margin-right: auto;
                 border-radius: 20px;
                 position: relative;
                 z-index: 2;
                 overflow: hidden
             }

             @media (max-width: 1199px) {
                 .round-container {
                     border-radius: 0
                 }
             }

             .slick-track>[class*=col] {
                 -webkit-flex-shrink: 0;
                 -ms-flex-negative: 0;
                 flex-shrink: 0;
                 width: 100%;
                 max-width: 100%;
                 padding-right: calc(var(--bs-gutter-x)/ 2);
                 padding-left: calc(var(--bs-gutter-x)/ 2);
                 margin-top: var(--bs-gutter-y)
             }

             .gy-30 {
                 --bs-gutter-y: 30px
             }

             .gy-40 {
                 --bs-gutter-y: 40px
             }

             .gy-50 {
                 --bs-gutter-y: 50px
             }

             .gx-10 {
                 --bs-gutter-x: 10px
             }

             .gy-80 {
                 --bs-gutter-y: 80px
             }

             @media (max-width: 1199px) {
                 .gy-80 {
                     --bs-gutter-y: 60px
                 }
             }

             @media (max-width: 991px) {
                 .gy-80 {
                     --bs-gutter-y: 40px
                 }
             }

             @media (min-width: 1299px) {
                 .gx-60 {
                     --bs-gutter-x: 60px
                 }
             }

             @media (min-width: 1399px) {
                 .gx-30 {
                     --bs-gutter-x: 30px
                 }

                 .gx-25 {
                     --bs-gutter-x: 25px
                 }

                 .gx-40 {
                     --bs-gutter-x: 40px
                 }
             }

             @media (max-width: 991px) {
                 .gy-50 {
                     --bs-gutter-y: 40px
                 }
             }

             select,
             .form-control,
             .form-select,
             textarea,
             input {
                 height: 50px;
                 padding: 0 25px 0 25px;
                 padding-right: 45px;
                 border: 1px solid var(--smoke-color);
                 color: var(--body-color);
                 background-color: transparent;
                 border-radius: 100px;
                 font-size: 14px;
                 width: 100%;
                 font-family: var(--body-font);
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out
             }

             select:focus,
             .form-control:focus,
             .form-select:focus,
             textarea:focus,
             input:focus {
                 outline: 0;
                 box-shadow: none;
                 border-color: var(--theme-color);
                 background-color: var(--smoke-color2)
             }

             select::-moz-placeholder,
             .form-control::-moz-placeholder,
             .form-select::-moz-placeholder,
             textarea::-moz-placeholder,
             input::-moz-placeholder {
                 color: var(--body-color)
             }

             select::-webkit-input-placeholder,
             .form-control::-webkit-input-placeholder,
             .form-select::-webkit-input-placeholder,
             textarea::-webkit-input-placeholder,
             input::-webkit-input-placeholder {
                 color: var(--body-color)
             }

             select:-ms-input-placeholder,
             .form-control:-ms-input-placeholder,
             .form-select:-ms-input-placeholder,
             textarea:-ms-input-placeholder,
             input:-ms-input-placeholder {
                 color: var(--body-color)
             }

             select::-webkit-input-placeholder,
             .form-control::-webkit-input-placeholder,
             .form-select::-webkit-input-placeholder,
             textarea::-webkit-input-placeholder,
             input::-webkit-input-placeholder {
                 color: var(--body-color)
             }

             select::-moz-placeholder,
             .form-control::-moz-placeholder,
             .form-select::-moz-placeholder,
             textarea::-moz-placeholder,
             input::-moz-placeholder {
                 color: var(--body-color)
             }

             select:-ms-input-placeholder,
             .form-control:-ms-input-placeholder,
             .form-select:-ms-input-placeholder,
             textarea:-ms-input-placeholder,
             input:-ms-input-placeholder {
                 color: var(--body-color)
             }

             select::-ms-input-placeholder,
             .form-control::-ms-input-placeholder,
             .form-select::-ms-input-placeholder,
             textarea::-ms-input-placeholder,
             input::-ms-input-placeholder {
                 color: var(--body-color)
             }

             select::placeholder,
             .form-control::placeholder,
             .form-select::placeholder,
             textarea::placeholder,
             input::placeholder {
                 color: var(--body-color)
             }

             .form-select,
             select {
                 display: block;
                 width: 100%;
                 line-height: 1.5;
                 vertical-align: middle;
                 background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
                 background-position: right 26px center;
                 background-repeat: no-repeat;
                 background-size: 16px 12px;
                 -webkit-appearance: none;
                 -moz-appearance: none;
                 appearance: none;
                 cursor: pointer
             }

             .form-select.style2,
             select.style2 {
                 background-image: url("data:image/svg+xml,%3Csvg width='11' height='6' viewBox='0 0 11 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.87109 1.71094L5.71484 5.62109C5.56901 5.7487 5.41406 5.8125 5.25 5.8125C5.08594 5.8125 4.9401 5.7487 4.8125 5.62109L0.65625 1.71094C0.382812 1.40104 0.373698 1.09115 0.628906 0.78125C0.920573 0.507812 1.23047 0.498698 1.55859 0.753906L5.25 4.25391L8.96875 0.753906C9.27865 0.498698 9.57943 0.498698 9.87109 0.753906C10.1263 1.08203 10.1263 1.40104 9.87109 1.71094Z' fill='%238B929C'/%3E%3C/svg%3E")
             }

             textarea.form-control,
             textarea {
                 min-height: 150px;
                 padding-top: 16px;
                 padding-bottom: 17px;
                 border-radius: 20px
             }

             textarea.form-control.style2,
             textarea.style2 {
                 min-height: 100px
             }

             .form-group {
                 margin-bottom: var(--bs-gutter-x);
                 position: relative
             }

             .form-group>i {
                 display: inline-block;
                 position: absolute;
                 right: 25px;
                 top: 19px;
                 font-size: 16px;
                 color: var(--body-color)
             }

             .form-group>i.fa-envelope {
                 padding-top: 1px
             }

             .form-group>i.fa-comment {
                 margin-top: -2px
             }

             .form-group>i.fa-chevron-down {
                 width: 17px;
                 background-color: var(--smoke-color)
             }

             .form-group.has-label>i {
                 top: 50px
             }

             [class*="col-"].form-group>i {
                 right: calc((var(--bs-gutter-x) / 2) + 25px)
             }

             option:checked,
             option:focus,
             option:hover {
                 background-color: var(--theme-color);
                 color: var(--white-color)
             }

             input::-webkit-outer-spin-button,
             input::-webkit-inner-spin-button {
                 -webkit-appearance: none;
                 margin: 0
             }

             input[type="number"] {
                 -moz-appearance: textfield
             }

             input[type="checkbox"] {
                 visibility: hidden;
                 opacity: 0;
                 display: inline-block;
                 vertical-align: middle;
                 width: 0;
                 height: 0;
                 display: none
             }

             input[type="checkbox"]:checked~label:before {
                 content: "\f00c";
                 color: var(--white-color);
                 background-color: var(--theme-color);
                 border-color: var(--theme-color)
             }

             input[type="checkbox"]~label {
                 position: relative;
                 padding-left: 30px;
                 cursor: pointer;
                 display: block
             }

             input[type="checkbox"]~label:before {
                 content: "";
                 font-family: var(--icon-font);
                 font-weight: 700;
                 position: absolute;
                 left: 0px;
                 top: 3.5px;
                 background-color: var(--white-color);
                 border: 1px solid var(--th-border-color);
                 height: 18px;
                 width: 18px;
                 line-height: 18px;
                 text-align: center;
                 font-size: 12px
             }

             input[type="checkbox"].style2~label {
                 color: #8B929C;
                 padding-left: 23px;
                 margin-bottom: -0.5em
             }

             input[type="checkbox"].style2~label:before {
                 background-color: rgba(255, 255, 255, 0.1);
                 border: 1px solid #8B929C;
                 height: 14px;
                 width: 14px;
                 line-height: 14px;
                 border-radius: 3px;
                 top: 6px
             }

             input[type="checkbox"].style2:checked~label:before {
                 color: var(--theme-color)
             }

             input[type="radio"] {
                 visibility: hidden;
                 opacity: 0;
                 display: inline-block;
                 vertical-align: middle;
                 width: 0;
                 height: 0;
                 display: none
             }

             input[type="radio"]~label {
                 position: relative;
                 padding-left: 30px;
                 cursor: pointer;
                 line-height: 1;
                 display: inline-block;
                 font-weight: 600;
                 margin-bottom: 0
             }

             input[type="radio"]~label::before {
                 content: "\f111";
                 position: absolute;
                 font-family: var(--icon-font);
                 left: 0;
                 top: -2px;
                 width: 20px;
                 height: 20px;
                 padding-left: 0;
                 font-size: 0.6em;
                 line-height: 19px;
                 text-align: center;
                 border: 1px solid var(--theme-color);
                 border-radius: 100%;
                 font-weight: 700;
                 background: var(--white-color);
                 color: transparent;
                 -webkit-transition: all 0.2s ease;
                 transition: all 0.2s ease
             }

             input[type="radio"]:checked~label::before {
                 border-color: var(--theme-color);
                 background-color: var(--theme-color);
                 color: var(--white-color)
             }

             label {
                 margin-bottom: 0.5em;
                 margin-top: -0.3em;
                 display: block;
                 color: var(--title-color);
                 font-family: var(--body-font);
                 font-size: 16px
             }

             textarea.is-invalid,
             select.is-invalid,
             input.is-invalid,
             .was-validated input:invalid {
                 border: 1px solid var(--error-color) !important;
                 background-position: right calc(0.375em + 0.8875rem) center;
                 background-image: none
             }

             textarea.is-invalid:focus,
             select.is-invalid:focus,
             input.is-invalid:focus,
             .was-validated input:invalid:focus {
                 outline: 0;
                 box-shadow: none
             }

             textarea.is-invalid {
                 background-position: top calc(0.375em + 0.5875rem) right calc(0.375em + 0.8875rem)
             }

             .row.no-gutters>.form-group {
                 margin-bottom: 0
             }

             .form-messages {
                 display: none
             }

             .form-messages.mb-0 * {
                 margin-bottom: 0
             }

             .form-messages.success {
                 color: var(--success-color);
                 display: block
             }

             .form-messages.error {
                 color: var(--error-color);
                 display: block
             }

             .form-messages pre {
                 padding: 0;
                 background-color: transparent;
                 color: inherit
             }

             .swiper-wrapper.row {
                 -webkit-flex-wrap: nowrap;
                 -ms-flex-wrap: nowrap;
                 flex-wrap: nowrap
             }

             .th-slider.has-shadow {
                 padding-left: 12px;
                 padding-right: 12px;
                 margin: -25px -12px
             }

             .th-slider.has-shadow .swiper-wrapper {
                 padding: 25px 0
             }

             .swiper-fade .swiper-slide {
                 -webkit-transition: 0.6s ease-in-out;
                 transition: 0.6s ease-in-out
             }

             .swiper-fade .swiper-slide-prev {
                 opacity: 0
             }

             .swiper-pagination-bullets {
                 position: relative;
                 z-index: 3;
                 text-align: center;
                 margin: 45px 0 10px 0;
                 padding-bottom: 20px;
                 line-height: 14px;
                 height: 20px
             }

             .swiper-pagination-bullets .swiper-pagination-bullet {
                 display: inline-block;
                 --swiper-pagination-bullet-size: 18px;
                 --swiper-pagination-bullet-horizontal-gap: 15px;
                 margin: 5px 7px;
                 opacity: 1;
                 background-color: #FFDCE1;
                 color: #FFDCE1;
                 border-radius: 50%;
                 position: relative;
                 cursor: pointer
             }

             .swiper-pagination-bullets .swiper-pagination-bullet:before {
                 content: '';
                 position: absolute;
                 inset: -5px;
                 border: 1px solid #FFDCE1;
                 -webkit-transform: scale(0.1);
                 -ms-transform: scale(0.1);
                 transform: scale(0.1);
                 border-radius: inherit;
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out
             }

             .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
                 background-color: var(--theme-color)
             }

             .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
                 -webkit-transform: scale(1.2);
                 -ms-transform: scale(1.2);
                 transform: scale(1.2);
                 border-color: var(--theme-color)
             }

             .slider-area {
                 position: relative
             }

             .slider-arrow {
                 display: inline-block;
                 padding: 0;
                 background-color: var(--white-color);
                 box-shadow: 0px 0px 30px 10px rgba(206, 206, 206, 0.55);
                 border-radius: 30px;
                 color: var(--body-color);
                 border: 1px solid transparent;
                 position: absolute;
                 top: 50%;
                 left: var(--pos-x, -120px);
                 width: var(--icon-size, 60px);
                 height: var(--icon-size, 60px);
                 line-height: var(--icon-size, 60px);
                 font-size: var(--icon-font-size, 20px);
                 margin-top: calc(var(--icon-size, 0px) / -2);
                 z-index: 3;
                 border-radius: 50%
             }

             @media (max-width: 1500px) {
                 .slider-arrow {
                     display: none !important
                 }
             }

             .slider-arrow.style2 {
                 --icon-size: 60px;
                 background-color: var(--title-color);
                 color: var(--white-color);
                 box-shadow: none
             }

             .slider-arrow.style2:hover {
                 background-color: var(--theme-color);
                 color: var(--white-color);
                 border-color: var(--theme-color)
             }

             .slider-arrow.style3 {
                 background-color: var(--theme-color);
                 color: var(--white-color);
                 border-color: var(--theme-color);
                 box-shadow: none
             }

             .slider-arrow.style3:hover {
                 background-color: var(--title-color);
                 border-color: var(--title-color)
             }

             .slider-arrow.style4 {
                 background-color: #656A74;
                 color: var(--white-color);
                 border-color: #656A74;
                 -webkit-transition: all 0.7s;
                 transition: all 0.7s
             }

             .slider-arrow.style4:hover {
                 background: -webkit-linear-gradient(top, #02CE80 0%, #7BD706 100%);
                 background: linear-gradient(180deg, #02CE80 0%, #7BD706 100%);
                 border-color: #02CE80
             }

             .slider-arrow.default {
                 position: relative;
                 --pos-x: 0;
                 margin-top: 0
             }

             .slider-arrow.slider-next {
                 right: var(--pos-x, -120px);
                 left: auto
             }

             .slider-arrow:hover {
                 background-color: var(--theme-color);
                 color: var(--white-color);
                 border-color: var(--theme-color)
             }

             .arrow-margin .slider-arrow {
                 top: calc(50% - 30px)
             }

             .arrow-wrap {
                 position: relative
             }

             .arrow-wrap .slider-arrow {
                 opacity: 0;
                 visibility: hidden;
                 -webkit-transform: scale(0.4);
                 -ms-transform: scale(0.4);
                 transform: scale(0.4)
             }

             @media (max-width: 1299px) {
                 .arrow-wrap .slider-arrow {
                     display: none
                 }
             }

             .arrow-wrap:hover .slider-arrow {
                 opacity: 1;
                 visibility: visible;
                 -webkit-transform: scale(1);
                 -ms-transform: scale(1);
                 transform: scale(1)
             }

             @media (max-width: 1500px) {
                 .slider-arrow {
                     --arrow-horizontal: -20px;
                     --pos-x: -70px
                 }
             }

             @media (max-width: 1399px) {
                 .slider-arrow {
                     --arrow-horizontal: 40px;
                     --pos-x: -17px
                 }
             }

             .icon-box .slider-arrow {
                 -webkit-transform: scale(1);
                 -ms-transform: scale(1);
                 transform: scale(1);
                 opacity: 1;
                 visibility: visible
             }

             .icon-box .slider-arrow:not(:last-child) {
                 margin-right: 8px
             }

             @media (max-width: 991px) {
                 .slider-arrow {
                     --icon-size: 40px;
                     line-height: 38px;
                     margin-right: 40px;
                     font-size: 14px
                 }

                 .slider-arrow.slider-next {
                     margin-right: 0;
                     margin-left: 40px
                 }

                 .slick-dots {
                     margin: 40px 0 0 0
                 }

                 .icon-box .slider-arrow {
                     margin-right: 0
                 }
             }

             .slick-3d-active {
                 margin-left: -12%;
                 margin-right: -12%
             }

             .slick-3d-active .slick-list {
                 padding-left: 30% !important;
                 padding-right: 30% !important
             }

             .slick-3d-active .slick-track {
                 max-width: 100% !important;
                 -webkit-transform: translate3d(0, 0, 0) !important;
                 transform: translate3d(0, 0, 0) !important;
                 -webkit-perspective: 100px;
                 perspective: 100px
             }

             .slick-3d-active .slick-slide {
                 position: absolute;
                 top: 0;
                 left: 0;
                 right: 0;
                 bottom: 0;
                 margin: auto;
                 opacity: 0;
                 width: 100% !important;
                 -webkit-transform: translate3d(0, 0, 0);
                 transform: translate3d(0, 0, 0);
                 -webkit-transition: opacity 1s, -webkit-transform 1s;
                 transition: opacity 1s, -webkit-transform 1s;
                 transition: transform 1s, opacity 1s;
                 transition: transform 1s, opacity 1s, -webkit-transform 1s
             }

             .slick-3d-active .slick-3d-next,
             .slick-3d-active .slick-3d-prev,
             .slick-3d-active .slick-3d-next2,
             .slick-3d-active .slick-3d-prev2 {
                 display: block
             }

             .slick-3d-active .slick-current {
                 opacity: 1;
                 position: relative;
                 display: block;
                 z-index: 2
             }

             .slick-3d-active .slick-3d-next {
                 opacity: 1;
                 -webkit-transform: translate3d(50%, 0, -21px);
                 transform: translate3d(50%, 0, -21px);
                 z-index: 1;
                 -webkit-perspective: 1000px;
                 perspective: 1000px
             }

             .slick-3d-active .slick-3d-next2 {
                 opacity: 1;
                 -webkit-transform: translate3d(40%, 0, -23px);
                 transform: translate3d(40%, 0, -23px);
                 z-index: 0;
                 -webkit-perspective: 1000px;
                 perspective: 1000px
             }

             .slick-3d-active .slick-3d-prev {
                 opacity: 1;
                 -webkit-transform: translate3d(-50%, 0, -21px);
                 transform: translate3d(-50%, 0, -21px)
             }

             .slick-3d-active .slick-3d-prev .testi-card {
                 box-shadow: none
             }

             .slick-3d-active .slick-3d-prev2 {
                 opacity: 1;
                 -webkit-transform: translate3d(-40%, 0, -23px);
                 transform: translate3d(-40%, 0, -23px)
             }

             :root {
                 --input-height: 50px
             }

             .nice-select {
                 -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
                 background-image: none;
                 box-sizing: border-box;
                 clear: both;
                 cursor: pointer;
                 position: relative;
                 line-height: calc(var(--input-height) - 2px);
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out;
                 -webkit-user-select: none;
                 -moz-user-select: none;
                 -ms-user-select: none;
                 user-select: none;
                 white-space: nowrap
             }

             .nice-select:after {
                 content: '';
                 font-family: var(--icon-font);
                 font-weight: 700;
                 font-size: 16px;
                 pointer-events: none;
                 border-bottom: 1px solid var(--body-color);
                 border-right: 1px solid var(--body-color);
                 position: absolute;
                 right: 20px;
                 line-height: calc(var(--input-height) - 2px);
                 top: 21px;
                 height: 8px;
                 width: 8px;
                 -webkit-transition: all 0.2s ease-in-out;
                 transition: all 0.2s ease-in-out;
                 -webkit-transform: rotate(45deg);
                 -ms-transform: rotate(45deg);
                 transform: rotate(45deg)
             }

             .nice-select.open:after {
                 -webkit-transform: rotate(-135deg);
                 -ms-transform: rotate(-135deg);
                 transform: rotate(-135deg)
             }

             .nice-select.open .list {
                 opacity: 1;
                 border-radius: 0;
                 pointer-events: auto;
                 -webkit-transform: scale(1) translateY(0);
                 -ms-transform: scale(1) translateY(0);
                 transform: scale(1) translateY(0);
                 border-bottom: 1px solid var(--theme-color)
             }

             .nice-select.disabled {
                 border-color: #ededed;
                 color: #999;
                 pointer-events: none
             }

             .nice-select.disabled:after {
                 border-color: #ccc
             }

             .nice-select.wide {
                 width: 100%
             }

             .nice-select.wide .list {
                 left: 0 !important;
                 right: 0 !important
             }

             .nice-select.right {
                 float: right
             }

             .nice-select.right .list {
                 left: auto;
                 right: 0
             }

             .nice-select.small {
                 font-size: 12px;
                 height: 36px;
                 line-height: 34px
             }

             .nice-select.small:after {
                 height: 4px;
                 width: 4px
             }

             .nice-select.small .option {
                 line-height: 34px;
                 min-height: 34px
             }

             .nice-select .list {
                 width: 100%;
                 background-color: #fff;
                 border-radius: 5px;
                 box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
                 box-sizing: border-box;
                 margin-top: 4px;
                 opacity: 0;
                 overflow: hidden;
                 padding: 0;
                 pointer-events: none;
                 position: absolute;
                 top: 100%;
                 left: 0;
                 -webkit-transform-origin: 50% 0;
                 -ms-transform-origin: 50% 0;
                 transform-origin: 50% 0;
                 -webkit-transform: scale(0.75) translateY(-28px);
                 -ms-transform: scale(0.75) translateY(-28px);
                 transform: scale(0.75) translateY(-28px);
                 -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
                 transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
                 z-index: 9
             }

             .nice-select .list:hover .option:not(:hover) {
                 background-color: transparent !important
             }

             .nice-select .option {
                 cursor: pointer;
                 font-weight: 400;
                 line-height: 40px;
                 list-style: none;
                 min-height: 40px;
                 outline: none;
                 padding-left: 18px;
                 padding-right: 29px;
                 text-align: left;
                 -webkit-transition: all 0.2s;
                 transition: all 0.2s
             }

             .nice-select .option:hover,
             .nice-select .option.focus,
             .nice-select .option.selected.focus {
                 background-color: var(--smoke-color)
             }

             .nice-select .option.selected {
                 font-weight: bold
             }

             .nice-select .option.disabled {
                 background-color: transparent;
                 color: #999;
                 cursor: default
             }

             .no-csspointerevents .nice-select .list {
                 display: none
             }

             .no-csspointerevents .nice-select.open .list {
                 display: block
             }

             .th-menu-wrapper {
                 position: fixed;
                 top: 0;
                 left: 0;
                 bottom: 0;
                 background-color: rgba(0, 0, 0, 0.6);
                 z-index: 999999;
                 width: 0;
                 width: 100%;
                 height: 100%;
                 -webkit-transition: all ease 0.8s;
                 transition: all ease 0.8s;
                 opacity: 0;
                 visibility: hidden
             }

             .th-menu-wrapper .mobile-logo {
                 padding-bottom: 30px;
                 padding-top: 40px;
                 display: block;
                 text-align: center;
                 background-color: var(--smoke-color2)
             }

             .th-menu-wrapper .mobile-logo svg {
                 max-width: 185px
             }

             .th-menu-wrapper .th-menu-toggle {
                 border: none;
                 font-size: 22px;
                 position: absolute;
                 right: -16.5px;
                 top: 25px;
                 padding: 0;
                 line-height: 1;
                 width: 33px;
                 height: 33px;
                 line-height: 35px;
                 font-size: 18px;
                 z-index: 1;
                 color: var(--white-color);
                 background-color: var(--theme-color);
                 border-radius: 50%
             }

             .th-menu-wrapper .th-menu-toggle:hover {
                 background-color: var(--title-color);
                 color: var(--white-color)
             }

             .th-menu-wrapper .th-menu-area {
                 width: 100%;
                 max-width: 310px;
                 background-color: #fff;
                 border-right: 3px solid var(--theme-color);
                 height: 100%;
                 position: relative;
                 left: -110%;
                 opacity: 0;
                 visibility: hidden;
                 -webkit-transition: all ease 1s;
                 transition: all ease 1s;
                 z-index: 1
             }

             .th-menu-wrapper.th-body-visible {
                 opacity: 1;
                 visibility: visible
             }

             .th-menu-wrapper.th-body-visible .th-menu-area {
                 left: 0;
                 opacity: 1;
                 visibility: visible
             }

             .th-mobile-menu {
                 overflow-y: scroll;
                 max-height: calc(100vh - 200px);
                 padding-bottom: 40px;
                 margin-top: 33px;
                 text-align: left
             }

             .th-mobile-menu ul {
                 margin: 0;
                 padding: 0 0
             }

             .th-mobile-menu ul li {
                 border-bottom: 1px solid #fdedf1;
                 list-style-type: none
             }

             .th-mobile-menu ul li li:first-child {
                 border-top: 1px solid #fdedf1
             }

             .th-mobile-menu ul li a {
                 display: block;
                 position: relative;
                 padding: 12px 0;
                 line-height: 1.4;
                 font-size: 16px;
                 text-transform: capitalize;
                 color: var(--title-color);
                 padding-left: 18px
             }

             .th-mobile-menu ul li a:before {
                 content: '\f105';
                 font-family: var(--icon-font);
                 position: absolute;
                 left: 0;
                 top: 12px;
                 margin-right: 10px;
                 display: inline-block
             }

             .th-mobile-menu ul li.th-active>a {
                 color: var(--theme-color)
             }

             .th-mobile-menu ul li.th-active>a:before {
                 -webkit-transform: rotate(90deg);
                 -ms-transform: rotate(90deg);
                 transform: rotate(90deg)
             }

             .th-mobile-menu ul li ul li {
                 padding-left: 20px
             }

             .th-mobile-menu ul li ul li:last-child {
                 border-bottom: none
             }

             .th-mobile-menu ul .th-item-has-children>a .th-mean-expand {
                 position: absolute;
                 right: 0;
                 top: 50%;
                 font-weight: 400;
                 font-size: 12px;
                 width: 25px;
                 height: 25px;
                 line-height: 25px;
                 margin-top: -12.5px;
                 display: inline-block;
                 text-align: center;
                 background-color: var(--smoke-color);
                 color: var(--title-color);
                 box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
                 border-radius: 50%
             }

             .th-mobile-menu ul .th-item-has-children>a .th-mean-expand:before {
                 content: '\f067';
                 font-family: var(--icon-font)
             }

             .th-mobile-menu ul .th-item-has-children>a:after {
                 content: "\f067";
                 font-family: var(--icon-font);
                 width: 22px;
                 height: 22px;
                 line-height: 22px;
                 display: inline-block;
                 text-align: center;
                 font-size: 12px;
                 border-radius: 50px;
                 background-color: var(--smoke-color);
                 float: right;
                 margin-top: 1px
             }

             .th-mobile-menu ul .th-item-has-children.th-active>a .th-mean-expand:before {
                 content: '\f068'
             }

             .th-mobile-menu ul .th-item-has-children.th-active>a:after {
                 content: "\f068"
             }

             .th-mobile-menu>ul {
                 padding: 0 40px
             }

             .th-mobile-menu>ul>li:last-child {
                 border-bottom: none
             }

             .th-menu-toggle {
                 width: 56px;
                 height: 56px;
                 padding: 0;
                 font-size: 20px;
                 border: none;
                 background-color: var(--theme-color);
                 color: var(--white-color);
                 display: inline-block;
                 border-radius: 50%
             }

             .th-menu-toggle:hover {
                 background-color: var(--title-color)
             }

             .th-menu-toggle.style-text,
             .th-menu-toggle.style-text-white {
                 width: auto;
                 height: auto;
                 background-color: transparent;
                 color: var(--title-color);
                 font-size: 20px
             }

             .th-menu-toggle.style-text i,
             .th-menu-toggle.style-text-white i {
                 margin-right: 10px
             }

             .th-menu-toggle.style-text-white {
                 color: var(--white-color)
             }

             @media (max-width: 400px) {
                 .th-menu-wrapper .th-menu-area {
                     width: 100%;
                     max-width: 270px
                 }

                 .th-mobile-menu>ul {
                     padding: 0 20px
                 }
             }

             .preloader {
                 position: fixed;
                 inset: 0;
                 z-index: 999;
                 background-color: var(--white-color);
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: center;
                 -webkit-justify-content: center;
                 -ms-flex-pack: center;
                 justify-content: center
             }

             .preloader .th-btn {
                 position: absolute;
                 top: 0;
                 left: 0;
                 z-index: 9999
             }

             .preloader .th-btn:hover {
                 background-color: var(--title-color)
             }

             .loading-container,
             .loading {
                 height: 100px;
                 position: relative;
                 width: 100px;
                 border-radius: 100%
             }

             .loading-container {
                 margin: 40px auto
             }

             .loading {
                 border: 1px solid transparent;
                 border-color: transparent var(--theme-color) transparent var(--theme-color);
                 -webkit-animation: rotate-loading 1.5s linear 0s infinite normal;
                 animation: rotate-loading 1.5s linear 0s infinite normal;
                 -webkit-transform-origin: 50% 50%;
                 -ms-transform-origin: 50% 50%;
                 transform-origin: 50% 50%
             }

             .loading-container:hover .loading,
             .loading-container .loading {
                 -webkit-transition: all 0.5s ease-in-out;
                 transition: all 0.5s ease-in-out
             }

             .preloader-logo {
                 position: absolute;
                 top: 50%;
                 left: 50%;
                 max-width: 66px;
                 -webkit-transform: translate(-50%, -50%);
                 -ms-transform: translate(-50%, -50%);
                 transform: translate(-50%, -50%)
             }

             @-webkit-keyframes rotate-loading {
                 0% {
                     -webkit-transform: rotate(0deg);
                     transform: rotate(0deg)
                 }

                 100% {
                     -webkit-transform: rotate(360deg);
                     transform: rotate(360deg)
                 }
             }

             @keyframes rotate-loading {
                 0% {
                     -webkit-transform: rotate(0deg);
                     transform: rotate(0deg)
                 }

                 100% {
                     -webkit-transform: rotate(360deg);
                     transform: rotate(360deg)
                 }
             }

             .th-btn {
                 position: relative;
                 z-index: 2;
                 overflow: hidden;
                 vertical-align: middle;
                 display: inline-block;
                 border: none;
                 text-transform: capitalize;
                 text-align: center;
                 background-color: var(--theme-color);
                 color: var(--white-color);
                 font-family: var(--body-font);
                 font-size: 16px;
                 font-weight: 500;
                 line-height: 1;
                 padding: 19.5px 40px;
                 border-radius: 100px
             }

             .th-btn:before {
                 position: absolute;
                 content: "";
                 background: var(--title-color);
                 width: 110%;
                 min-height: 200px;
                 z-index: -1;
                 border-radius: 15%;
                 top: 100%;
                 left: 100%;
                 -webkit-transition: 0.4s all ease-in-out;
                 transition: 0.4s all ease-in-out
             }

             .th-btn:hover {
                 color: white
             }

             .th-btn:hover:before {
                 top: -75px;
                 left: -1px
             }

             .th-btn.style1 {
                 color: var(--title-color)
             }

             .th-btn.style1:hover {
                 border-color: var(--white-color)
             }

             .th-btn.style1:hover:before,
             .th-btn.style1:hover:after {
                 background-color: var(--white-color)
             }

             .th-btn.style2 {
                 background-color: transparent;
                 color: var(--title-color);
                 border: 1px solid var(--title-color);
                 padding: 20px 40px;
                 box-shadow: none
             }

             .th-btn.style2:hover {
                 color: var(--white-color);
                 border-color: var(--title-color)
             }

             .th-btn.style2:hover:before,
             .th-btn.style2:hover:after {
                 background-color: var(--title-color)
             }

             .th-btn.style3 {
                 background-color: var(--title-color)
             }

             .th-btn.style3:hover {
                 color: var(--title-color)
             }

             .th-btn.style3:hover:before,
             .th-btn.style3:hover:after {
                 background-color: var(--white-color)
             }

             .th-btn.style4 {
                 background: #8482FF;
                 border: 1px solid var(--white-color)
             }

             .th-btn.style4:hover:before,
             .th-btn.style4:hover:after {
                 background-color: var(--theme-color)
             }

             .th-btn.style5 {
                 background-color: transparent;
                 color: var(--theme-color);
                 border: 1px solid var(--theme-color);
                 padding: 18.5px 40px;
                 box-shadow: none
             }

             .th-btn.style5:hover {
                 color: var(--white-color);
                 border-color: var(--theme-color)
             }

             .th-btn.style5:hover:before,
             .th-btn.style5:hover:after {
                 background-color: var(--theme-color)
             }

             .th-btn.style6 {
                 background-color: transparent;
                 border: 1px solid var(--white-color);
                 color: var(--white-color);
                 box-shadow: none
             }

             .th-btn.style6:hover {
                 color: var(--title-color)
             }

             .th-btn.style6:hover:before,
             .th-btn.style6:hover:after {
                 background-color: var(--white-color)
             }

             .th-btn.style7 {
                 background-color: var(--title-color);
                 color: var(--white-color)
             }

             .th-btn.style7:hover:before,
             .th-btn.style7:hover:after {
                 background-color: var(--theme-color)
             }

             .th-btn.style8 {
                 color: var(--white-color)
             }

             .th-btn.style8:hover {
                 border-color: var(--white-color);
                 color: var(--title-color)
             }

             .th-btn.style8:hover:before,
             .th-btn.style8:hover:after {
                 background-color: var(--white-color)
             }

             .th-btn.style9 {
                 background-color: var(--white-color);
                 color: var(--theme-color);
                 box-shadow: none;
                 border: none;
                 padding: 17px 35.6px;
                 font-weight: 700
             }

             .th-btn.style9:hover {
                 color: var(--white-color)
             }

             .th-btn.style9:hover:before,
             .th-btn.style9:hover:after {
                 background-color: var(--title-color)
             }

             .th-btn.style10 {
                 background-color: var(--theme-color);
                 color: var(--title-color)
             }

             .th-btn.style10:hover {
                 color: var(--white-color)
             }

             .th-btn.blue-border {
                 background: #1C1C25;
                 border: 1px solid var(--theme-color);
                 border-radius: 100px
             }

             .th-btn.blue-border:hover:before,
             .th-btn.blue-border:hover:after {
                 background-color: var(--theme-color)
             }

             .th-btn.btn-gradient {
                 font-size: 16px;
                 text-transform: capitalize;
                 padding: 18px 20px;
                 background-color: var(--theme-color);
                 background: -webkit-linear-gradient(top, var(--theme-color) 0%, var(--theme-color2) 100%);
                 background: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color2) 100%)
             }

             .th-btn.btn-gradient:hover {
                 background: -webkit-linear-gradient(top, var(--theme-color2) 0%, var(--theme-color) 100%);
                 background: linear-gradient(180deg, var(--theme-color2) 0%, var(--theme-color) 100%)
             }

             .th-btn.btn-gradient:hover:before,
             .th-btn.btn-gradient:hover:after {
                 display: none
             }

             .th-btn.th-gradient-btn {
                 font-size: 16px;
                 text-transform: capitalize;
                 padding: 18px 20px;
                 background-color: var(--theme-color);
                 background: -webkit-linear-gradient(top, var(--theme-color) 0%, var(--theme-color2) 100%);
                 background: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color2) 100%);
                 border-radius: 100px
             }

             .th-btn.th-gradient-btn:hover {
                 background: -webkit-linear-gradient(top, var(--theme-color2) 0%, var(--theme-color) 100%);
                 background: linear-gradient(180deg, var(--theme-color2) 0%, var(--theme-color) 100%)
             }

             .th-btn.th-gradient-btn:hover:before,
             .th-btn.th-gradient-btn:hover:after {
                 display: none
             }

             .th-btn.style-radius {
                 border-radius: 100px;
                 padding: 18px 40px
             }

             @media (max-width: 375px) {
                 .th-btn.style-radius {
                     padding: 18px 25px
                 }
             }

             .th-btn.btn-fw {
                 width: 100%
             }

             .th-btn.btn-fw:hover {
                 background-color: var(--title-color)
             }

             .th-btn.style-border {
                 background-color: transparent;
                 color: var(--theme-color);
                 border: 1px solid var(--theme-color);
                 box-shadow: none
             }

             .th-btn.style-border:hover {
                 color: var(--white-color);
                 border-color: var(--theme-color)
             }

             .th-btn.style-border:hover:before,
             .th-btn.style-border:hover:after {
                 background-color: var(--theme-color)
             }

             .th-btn.style-border2 {
                 background-color: transparent;
                 color: var(--title-color);
                 border: 1px solid var(--title-color);
                 box-shadow: none
             }

             .th-btn.style-border2:hover {
                 color: var(--white-color);
                 border-color: var(--title-color)
             }

             .th-btn.style-border2:hover:before,
             .th-btn.style-border2:hover:after {
                 background-color: var(--title-color)
             }

             .th-btn.th-border {
                 border: 1px solid rgba(255, 255, 255, 0.25);
                 background: rgba(255, 255, 255, 0.06);
                 -webkit-backdrop-filter: blur(12.5px);
                 backdrop-filter: blur(12.5px);
                 padding: 16px 39.4px
             }

             .th-btn.th-border:hover {
                 background: var(--title-color);
                 border: 1px solid var(--title-color)
             }

             .icon-btn {
                 display: inline-block;
                 width: var(--btn-size, 50px);
                 height: var(--btn-size, 50px);
                 line-height: var(--btn-size, 50px);
                 font-size: var(--btn-font-size, 18px);
                 background-color: var(--icon-bg, transparent);
                 color: var(--title-color);
                 text-align: center;
                 border-radius: 50%;
                 border: 1px solid var(--smoke-color);
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out
             }

             .icon-btn:hover {
                 background-color: var(--theme-color);
                 color: var(--white-color);
                 border-color: var(--theme-color)
             }

             .play-btn {
                 display: inline-block;
                 position: relative;
                 z-index: 1
             }

             .play-btn>i {
                 display: inline-block;
                 width: var(--icon-size, 60px);
                 height: var(--icon-size, 60px);
                 line-height: var(--icon-size, 60px);
                 text-align: center;
                 background-color: var(--white-color);
                 color: var(--theme-color);
                 font-size: var(--icon-font-size, 1.1em);
                 border-radius: 50%;
                 z-index: 1;
                 -webkit-transition: all ease 0.4s;
                 transition: all ease 0.4s
             }

             .play-btn:after,
             .play-btn:before {
                 content: "";
                 position: absolute;
                 left: 0;
                 top: 0;
                 right: 0;
                 bottom: 0;
                 background-color: var(--white-color);
                 z-index: -1;
                 border-radius: 50%;
                 -webkit-transition: all ease 0.4s;
                 transition: all ease 0.4s
             }

             .play-btn:after {
                 -webkit-animation-delay: 2s;
                 animation-delay: 2s
             }

             .play-btn:hover:after,
             .play-btn:hover::before,
             .play-btn:hover i {
                 background-color: var(--theme-color);
                 color: var(--white-color)
             }

             .play-btn.style2:before,
             .play-btn.style2:after {
                 background-color: transparent;
                 border: 1px solid var(--white-color)
             }

             .play-btn.style3>i {
                 background-color: var(--theme-color);
                 color: var(--white-color);
                 font-size: 20px
             }

             .play-btn.style3:before,
             .play-btn.style3:after {
                 background-color: var(--theme-color)
             }

             .play-btn.style3:hover>i {
                 background-color: var(--white-color);
                 color: var(--theme-color)
             }

             .play-btn.style3:hover:before,
             .play-btn.style3:hover:after {
                 background-color: var(--white-color)
             }

             .link-btn {
                 font-weight: 600;
                 font-size: 14px;
                 display: inline-block;
                 line-height: 0.8;
                 position: relative;
                 padding-bottom: 2px;
                 margin-bottom: -2px;
                 text-transform: uppercase;
                 color: var(--theme-color)
             }

             .link-btn i {
                 margin-left: 5px;
                 font-size: 0.9rem
             }

             .link-btn:before {
                 content: "";
                 position: absolute;
                 left: 0;
                 bottom: 0;
                 width: 0;
                 height: 2px;
                 background-color: var(--theme-color);
                 -webkit-transition: all ease 0.4s;
                 transition: all ease 0.4s
             }

             .link-btn:hover {
                 color: var(--theme-color)
             }

             .link-btn:hover::before {
                 width: 100%
             }

             .line-btn {
                 font-size: 16px;
                 font-weight: 600;
                 display: inline-block;
                 line-height: 0.8;
                 position: relative;
                 padding-bottom: 4px;
                 margin-bottom: -1px;
                 text-transform: capitalize;
                 color: var(--title-color)
             }

             .line-btn i {
                 margin-left: 5px;
                 font-size: 0.9rem
             }

             .line-btn:before {
                 content: "";
                 position: absolute;
                 left: 0;
                 bottom: 0;
                 width: 100%;
                 height: 1px;
                 background-color: var(--title-color);
                 -webkit-transition: all ease 0.4s;
                 transition: all ease 0.4s
             }

             .line-btn:hover {
                 color: var(--theme-color)
             }

             .line-btn:hover::before {
                 background-color: var(--theme-color);
                 width: 45px
             }

             .scroll-top {
                 position: fixed;
                 right: 30px;
                 bottom: 30px;
                 height: 50px;
                 width: 50px;
                 cursor: pointer;
                 display: block;
                 border-radius: 50px;
                 z-index: 10000;
                 opacity: 1;
                 visibility: hidden;
                 -webkit-transform: translateY(45px);
                 -ms-transform: translateY(45px);
                 transform: translateY(45px);
                 -webkit-transition: all 300ms linear;
                 transition: all 300ms linear
             }

             .scroll-top:after {
                 content: "\f062";
                 font-family: var(--icon-font);
                 position: absolute;
                 text-align: center;
                 line-height: 50px;
                 font-size: 20px;
                 color: var(--theme-color);
                 left: 0;
                 top: 0;
                 height: 50px;
                 width: 50px;
                 cursor: pointer;
                 display: block;
                 z-index: 1;
                 border: 2px solid var(--theme-color);
                 box-shadow: none;
                 border-radius: 50%
             }

             .scroll-top svg {
                 color: var(--theme-color);
                 border-radius: 50%;
                 background: var(--white-color)
             }

             .scroll-top svg path {
                 fill: none
             }

             .scroll-top .progress-circle path {
                 stroke: var(--theme-color);
                 stroke-width: 20px;
                 box-sizing: border-box;
                 -webkit-transition: all 400ms linear;
                 transition: all 400ms linear
             }

             .scroll-top.show {
                 opacity: 1;
                 visibility: visible;
                 -webkit-transform: translateY(0);
                 -ms-transform: translateY(0);
                 transform: translateY(0)
             }

             .sec-title {
                 margin-bottom: calc(var(--section-title-space) - 10px);
                 margin-top: -0.32em;
                 text-transform: capitalize
             }

             .sec-title.sec-title2 span {
                 display: inline-block;
                 position: relative;
                 color: var(--theme-color)
             }

             .sec-title.sec-title2 span:after {
                 content: "";
                 height: 14px;
                 width: 100%;
                 background-image: url("data:image/svg+xml,%3Csvg width='135' height='18' viewBox='0 0 135 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 16C25 3 79 -7 133 16' stroke='%23F93E5E' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
                 background-size: cover;
                 background-repeat: repeat-x;
                 background-position: left center;
                 position: absolute;
                 bottom: -7px;
                 left: 0px;
                 -webkit-animation: titleFill 3s linear infinite;
                 animation: titleFill 3s linear infinite
             }

             .sub-title {
                 position: relative;
                 font-weight: 500;
                 font-size: 16px;
                 line-height: 26px;
                 font-family: var(--title-font);
                 color: var(--theme-color);
                 margin-bottom: 30px;
                 text-transform: capitalize;
                 border-radius: 30px;
                 padding: 3px 20px;
                 display: inline-block;
                 margin-top: 0
             }

             .sub-title.style1 {
                 background: var(--theme-color);
                 color: var(--white-color)
             }

             .sub-title:before {
                 content: "";
                 position: absolute;
                 inset: 0;
                 background: var(--theme-color);
                 opacity: 0.1;
                 border-radius: 30px;
                 z-index: -1
             }

             .sub-title:has(img) {
                 margin-top: 0
             }

             .sub-title.sub-title2 {
                 padding: 0;
                 display: block;
                 color: var(--title-color);
                 margin-top: -0.34em;
                 padding-left: 20px
             }

             .sub-title.sub-title2::before,
             .sub-title.sub-title2:after {
                 content: "";
                 position: absolute;
                 inset: unset;
                 top: 30%;
                 height: 10px;
                 width: 10px;
                 border-radius: 50%;
                 background: var(--theme-color);
                 opacity: 1
             }

             .sub-title.sub-title2:before {
                 margin-left: -1.2rem
             }

             .sub-title.sub-title2:after {
                 margin-left: 7px
             }

             .sub-title.sub-title3 {
                 display: inline-block;
                 padding: 0 20px;
                 color: var(--title-color)
             }

             .sub-title.sub-title3:before,
             .sub-title.sub-title3:after {
                 position: absolute;
                 content: "";
                 -webkit-mask-image: url("../img/icon/dot.svg");
                 mask-image: url("../img/icon/dot.svg");
                 background-color: var(--theme-color);
                 position: absolute;
                 top: 6px;
                 left: 0px;
                 width: 12px;
                 height: 12px;
                 opacity: 1
             }

             .sub-title.sub-title3:before {
                 border-radius: 0
             }

             .sub-title.sub-title3:after {
                 left: unset;
                 right: 0px
             }

             .sub-title.sub-title3.style1 {
                 padding-right: 0;
                 background: transparent
             }

             .sub-title.sub-title3.style1:after {
                 display: none
             }

             .sub-title.sub-title4 {
                 position: relative;
                 font-family: var(--title-font);
                 font-weight: 500;
                 font-size: 16px;
                 text-transform: capitalize;
                 color: var(--title-color);
                 margin-bottom: 25px
             }

             .sub-title.sub-title4.style1 {
                 background: transparent;
                 padding-left: 65px
             }

             @media (max-width: 575px) {
                 .sub-title.sub-title4.style1 {
                     padding-left: 40px
                 }
             }

             @media (max-width: 450px) {
                 .sub-title.sub-title4.style1 {
                     padding-left: 0
                 }
             }

             .sub-title.sub-title4.style1:before {
                 margin-left: 0rem
             }

             @media (max-width: 375px) {
                 .sub-title.sub-title4.style1:before {
                     display: none
                 }
             }

             .sub-title.sub-title4.style1:after {
                 display: none
             }

             .sub-title.sub-title4::before,
             .sub-title.sub-title4:after {
                 content: "";
                 position: absolute;
                 top: 48%;
                 height: 1px;
                 width: 50px;
                 opacity: 1
             }

             @media (max-width: 575px) {

                 .sub-title.sub-title4::before,
                 .sub-title.sub-title4:after {
                     width: 30px
                 }
             }

             @media (max-width: 450px) {

                 .sub-title.sub-title4::before,
                 .sub-title.sub-title4:after {
                     display: none
                 }
             }

             .sub-title.sub-title4::before {
                 background-color: var(--theme-color);
                 margin-left: -2.5rem
             }

             @media (max-width: 575px) {
                 .sub-title.sub-title4::before {
                     margin-left: -1.3rem
                 }
             }

             .sub-title.sub-title4::after {
                 background-color: var(--theme-color);
                 margin-left: 10px
             }

             .sub-title.sub-title5 {
                 display: inline-block;
                 padding: 0 20px;
                 color: var(--title-color);
                 text-transform: uppercase
             }

             .sub-title.sub-title5:before,
             .sub-title.sub-title5:after {
                 position: absolute;
                 content: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='0.5' y='0.5' width='11' height='11' stroke='%2370D715'/%3E%3Crect x='3' y='3' width='6' height='6' fill='%2370D715'/%3E%3C/svg%3E%0A");
                 background-color: transparent;
                 position: absolute;
                 top: 0px;
                 left: 0px;
                 width: 12px;
                 height: 12px;
                 opacity: 1
             }

             .sub-title.sub-title5:before {
                 border-radius: 0
             }

             .sub-title.sub-title5:after {
                 left: unset;
                 right: 0px
             }

             .sub-title.sub-title5.style1 {
                 padding-right: 0;
                 background: transparent
             }

             .sub-title.sub-title5.style1:after {
                 display: none
             }

             .sub-title.sub-title6 {
                 position: relative;
                 font-family: var(--title-font);
                 font-weight: 500;
                 font-size: 20px;
                 margin-bottom: 25px;
                 color: var(--white-color)
             }

             .sub-title.sub-title6:before,
             .sub-title.sub-title6:after {
                 display: none
             }

             .box-title {
                 font-size: 24px;
                 line-height: 1.417;
                 font-weight: 600;
                 margin-top: -0.32em
             }

             .box-title a {
                 color: inherit
             }

             .box-title a:hover {
                 color: var(--theme-color)
             }

             .sec-text {
                 max-width: 623px;
                 display: block;
                 margin: auto
             }

             .sec-text2 {
                 font-family: var(--title-font);
                 font-weight: 500;
                 max-width: 522px
             }

             @media (max-width: 1199px) {
                 .sec-text2 {
                     max-width: 100%
                 }
             }

             .title-area {
                 margin-bottom: calc(var(--section-title-space) - 10px);
                 position: relative;
                 z-index: 2
             }

             .title-area.style2 {
                 margin-top: -8px
             }

             .title-area .sec-title {
                 margin-bottom: 15px
             }

             .title-area .th-btn {
                 margin-top: 20px;
                 margin-bottom: 10px
             }

             hr.title-line {
                 margin-top: 0;
                 background-color: var(--th-border-color);
                 opacity: 1
             }

             .sec-btn,
             .title-line {
                 margin-bottom: var(--section-title-space)
             }

             .shadow-title {
                 font-family: var(--title-font);
                 font-size: 74px;
                 font-weight: 900;
                 line-height: 1;
                 background-image: -webkit-linear-gradient(top, rgba(226, 232, 250, 0.7) 0%, rgba(226, 232, 250, 0) 88.54%);
                 background-image: linear-gradient(180deg, rgba(226, 232, 250, 0.7) 0%, rgba(226, 232, 250, 0) 88.54%);
                 -webkit-background-clip: text;
                 -webkit-text-fill-color: transparent;
                 background-clip: text;
                 text-fill-color: transparent;
                 margin: -0.55em 0 -0.45em -0.25em
             }

             .shadow-title.color2 {
                 background-image: -webkit-linear-gradient(top, #232C47 0%, rgba(20, 29, 56, 0) 91.15%);
                 background-image: linear-gradient(180deg, #232C47 0%, rgba(20, 29, 56, 0) 91.15%)
             }

             .shadow-title.color3 {
                 background-image: -webkit-linear-gradient(top, #E0E0E0 0%, rgba(220, 214, 214, 0) 93.75%);
                 background-image: linear-gradient(180deg, #E0E0E0 0%, rgba(220, 214, 214, 0) 93.75%)
             }

             @media (max-width: 1199px) {
                 .sub-title {
                     margin-bottom: 20px
                 }

                 .shadow-title {
                     font-size: 64px
                 }

                 .title-area,
                 .sec-title {
                     --section-title-space: 60px
                 }

                 .title-area.mb-45,
                 .sec-title.mb-45 {
                     margin-bottom: 36px
                 }

                 .title-area.mb-50,
                 .sec-title.mb-50 {
                     margin-bottom: 40px
                 }

                 .sec-btn,
                 .title-line {
                     --section-title-space: 55px
                 }
             }

             @media (max-width: 991px) {
                 .shadow-title {
                     font-size: 60px
                 }

                 .title-area,
                 .sec-title {
                     --section-title-space: 50px
                 }

                 .title-area.mb-45,
                 .sec-title.mb-45 {
                     margin-bottom: 35px
                 }

                 .sec-btn,
                 .title-line {
                     --section-title-space: 50px
                 }
             }

             @media (max-width: 575px) {
                 .shadow-title {
                     font-size: 52px
                 }
             }

             @media (max-width: 375px) {
                 .shadow-title {
                     font-size: 40px
                 }
             }

             .shape-mockup-wrap {
                 z-index: 2;
                 position: relative
             }

             .shape-mockup {
                 position: absolute;
                 z-index: -1
             }

             .shape-mockup.z-index-3 {
                 z-index: 3
             }

             @media (min-width: 1930px) {
                 .shape-mockup.hero5-shape {
                     right: 5% !important
                 }
             }

             @media (max-width: 1699px) {
                 .shape-mockup.hero5-shape {
                     right: -4% !important
                 }
             }

             @media (max-width: 1399px) {
                 .shape-mockup.hero5-shape {
                     right: -6% !important
                 }
             }

             @media (max-width: 1299px) {
                 .shape-mockup.hero5-shape {
                     top: 50% !important;
                     right: 0% !important
                 }
             }

             @media (max-width: 1599px) {
                 .shape-mockup.shape1 {
                     right: 1% !important
                 }
             }

             @media (max-width: 1599px) {
                 .shape-mockup.shape2 {
                     right: 0 !important
                 }
             }

             .z-index-step1 {
                 position: relative;
                 z-index: 4 !important
             }

             .z-index-common {
                 position: relative;
                 z-index: 3
             }

             .z-index-3 {
                 z-index: 3
             }

             .z-index-n1 {
                 z-index: -1
             }

             .th-radius2 {
                 border-radius: 20px
             }

             .th-radius3 {
                 border-radius: 30px
             }

             .th-radius4 {
                 border-radius: 100px
             }

             @media (max-width: 767px) {
                 .th-radius4 {
                     border-radius: 50px
                 }
             }

             .th-radius5 {
                 border-radius: 50px
             }

             .media-body {
                 text-align: center;
                 -webkit-box-flex: 1;
                 -webkit-flex: 1;
                 -ms-flex: 1;
                 flex: 1
             }

             .badge {
                 position: absolute;
                 width: -webkit-fit-content;
                 width: -moz-fit-content;
                 width: fit-content;
                 display: inline-block;
                 text-align: center;
                 background-color: var(--theme-color);
                 color: var(--white-color);
                 padding: 0.25em 0.45em;
                 font-size: 0.7em;
                 border-radius: 50%;
                 top: 8px;
                 right: 8px;
                 font-weight: 400;
                 -webkit-transition: 0.3s ease-in-out;
                 transition: 0.3s ease-in-out
             }

             .th-social a {
                 display: inline-block;
                 width: var(--icon-size, 40px);
                 height: var(--icon-size, 40px);
                 line-height: var(--icon-size, 40px);
                 background-color: var(--white-color);
                 color: var(--title-color);
                 font-size: 16px;
                 text-align: center;
                 margin-right: 5px;
                 border-radius: 50%
             }

             .th-social a:last-child {
                 margin-right: 0
             }

             .th-social a:hover {
                 background-color: var(--theme-color);
                 color: var(--white-color)
             }

             .th-social.style2 a {
                 --icon-size: 40px;
                 font-size: 14px;
                 background-color: transparent;
                 color: var(--white-color);
                 border: 1px solid
             }

             .th-social.style2 a:hover {
                 border-color: var(--theme-color);
                 color: var(--white-color);
                 background-color: var(--theme-color)
             }

             .th-social.color-theme a {
                 color: var(--body-color);
                 border-color: var(--theme-color)
             }

             .slider-shadow .slick-list {
                 padding-top: 30px;
                 padding-bottom: 30px;
                 margin-bottom: -30px;
                 margin-top: -30px
             }

             .btn-group {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-flex-wrap: wrap;
                 -ms-flex-wrap: wrap;
                 flex-wrap: wrap;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 gap: 24px
             }

             .btn-group.style2 {
                 gap: 20px 70px
             }

             @media (max-width: 767px) {
                 .btn-group.style2 {
                     gap: 20px 30px
                 }
             }

             .th-bg-img {
                 position: absolute;
                 inset: 0
             }

             .th-bg-img img {
                 height: 100%;
                 width: 100%;
                 object-fit: cover
             }

             .sec-shape {
                 position: relative;
                 text-align: center;
                 overflow: hidden
             }

             .sec-shape.style2:after,
             .sec-shape.style2:before {
                 background: #E3E7F0
             }

             .sec-shape.style2 .th-btn {
                 padding: 20.5px 40px
             }

             .sec-shape:after,
             .sec-shape:before {
                 content: "";
                 position: absolute;
                 top: 50%;
                 width: 560px;
                 height: 1px;
                 background: #656A74
             }

             .sec-shape:before {
                 margin-left: -37rem
             }

             .sec-shape:after {
                 margin-left: 2.5rem
             }

             .icon-masking {
                 position: relative;
                 display: inline-block;
                 height: auto;
                 width: auto
             }

             .icon-masking .mask-icon {
                 position: absolute;
                 height: 100%;
                 width: 100%;
                 mix-blend-mode: hue;
                 background: var(--theme-color);
                 top: 0
             }

             .icon-masking2 {
                 position: relative;
                 display: inline-block;
                 height: auto;
                 width: auto
             }

             .icon-masking2 .mask-icon {
                 position: absolute;
                 height: 100%;
                 width: 100%;
                 mix-blend-mode: color;
                 background: var(--theme-color);
                 top: 0
             }

             .mfp-zoom-in .mfp-content {
                 opacity: 0;
                 -webkit-transition: all 0.4s ease;
                 transition: all 0.4s ease;
                 -webkit-transform: scale(0.7);
                 -ms-transform: scale(0.7);
                 transform: scale(0.7)
             }

             .mfp-zoom-in.mfp-bg {
                 opacity: 0;
                 -webkit-transition: all 0.4s ease;
                 transition: all 0.4s ease
             }

             .mfp-zoom-in.mfp-ready .mfp-content {
                 opacity: 1;
                 -webkit-transform: scale(1);
                 -ms-transform: scale(1);
                 transform: scale(1)
             }

             .mfp-zoom-in.mfp-ready.mfp-bg {
                 opacity: 0.7
             }

             .mfp-zoom-in.mfp-removing .mfp-content {
                 -webkit-transform: scale(0.7);
                 -ms-transform: scale(0.7);
                 transform: scale(0.7);
                 opacity: 0
             }

             .mfp-zoom-in.mfp-removing.mfp-bg {
                 opacity: 0
             }

             .font-icon {
                 font-family: var(--icon-font)
             }

             .font-title {
                 font-family: var(--title-font)
             }

             .font-body {
                 font-family: var(--body-font)
             }

             .fw-extralight {
                 font-weight: 100
             }

             .fw-light {
                 font-weight: 300
             }

             .fw-normal {
                 font-weight: 400
             }

             .fw-medium {
                 font-weight: 500
             }

             .fw-semibold {
                 font-weight: 600
             }

             .fw-bold {
                 font-weight: 700
             }

             .fw-extrabold {
                 font-weight: 800
             }

             .fs-md {
                 font-size: 18px
             }

             .fs-xs {
                 font-size: 14px
             }

             .bg-theme {
                 background-color: var(--theme-color) !important
             }

             .bg-smoke {
                 background-color: var(--smoke-color) !important
             }

             .bg-smoke2 {
                 background-color: var(--smoke-color2) !important
             }

             .bg-smoke3 {
                 background-color: var(--smoke-color3) !important
             }

             .bg-smoke4 {
                 background-color: var(--smoke-color4) !important
             }

             .bg-white {
                 background-color: var(--white-color) !important
             }

             .bg-black {
                 background-color: var(--black-color) !important
             }

             .bg-black2 {
                 background-color: var(--black-color2) !important
             }

             .bg-title {
                 background-color: var(--title-color) !important
             }

             .gradient-body {
                 background-image: -webkit-linear-gradient(349.38deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 24.03%, rgba(198, 241, 255, 0.3) 45.73%, rgba(248, 242, 222, 0.3) 69.05%, rgba(212, 179, 253, 0.3) 100.44%);
                 background-image: linear-gradient(100.62deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 24.03%, rgba(198, 241, 255, 0.3) 45.73%, rgba(248, 242, 222, 0.3) 69.05%, rgba(212, 179, 253, 0.3) 100.44%)
             }

             .gr-bg1 {
                 background-image: -webkit-linear-gradient(10deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 23.81%, rgba(198, 241, 255, 0.3) 45.3%, rgba(248, 242, 222, 0.3) 68.4%, rgba(212, 179, 253, 0.3) 99.5%);
                 background-image: linear-gradient(80deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 23.81%, rgba(198, 241, 255, 0.3) 45.3%, rgba(248, 242, 222, 0.3) 68.4%, rgba(212, 179, 253, 0.3) 99.5%)
             }

             .gr-bg2 {
                 background-image: -webkit-linear-gradient(349.38deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 24.03%, rgba(198, 241, 255, 0.3) 45.73%, rgba(248, 242, 222, 0.3) 69.05%, rgba(212, 179, 253, 0.3) 100.44%);
                 background-image: linear-gradient(100.62deg, rgba(249, 215, 175, 0.3) 0%, rgba(214, 202, 245, 0.3) 24.03%, rgba(198, 241, 255, 0.3) 45.73%, rgba(248, 242, 222, 0.3) 69.05%, rgba(212, 179, 253, 0.3) 100.44%)
             }

             .gr-bg3 {
                 background-image: -webkit-linear-gradient(339.41deg, rgba(236, 207, 254, 0.4) 0%, rgba(255, 221, 221, 0.5) 46.79%, rgba(247, 255, 229, 0.7) 100%);
                 background-image: linear-gradient(110.59deg, rgba(236, 207, 254, 0.4) 0%, rgba(255, 221, 221, 0.5) 46.79%, rgba(247, 255, 229, 0.7) 100%);
                 -webkit-backdrop-filter: blur(10px);
                 backdrop-filter: blur(10px)
             }

             .gr-bg4 {
                 background-image: -webkit-linear-gradient(344.56deg, rgba(255, 229, 133, 0.4) 0%, rgba(189, 255, 199, 0.4) 48.48%, rgba(223, 109, 223, 0.4) 100%);
                 background-image: linear-gradient(105.44deg, rgba(255, 229, 133, 0.4) 0%, rgba(189, 255, 199, 0.4) 48.48%, rgba(223, 109, 223, 0.4) 100%);
                 -webkit-backdrop-filter: blur(15px);
                 backdrop-filter: blur(15px)
             }

             .gr-bg5 {
                 background: -webkit-linear-gradient(top, rgba(237, 240, 244, 0) 0%, rgba(237, 240, 244, 0.85) 100%);
                 background: linear-gradient(180deg, rgba(237, 240, 244, 0) 0%, rgba(237, 240, 244, 0.85) 100%)
             }

             .gr-bg6 {
                 background: -webkit-linear-gradient(top, #02CE80 0%, #7BD706 100%);
                 background: linear-gradient(180deg, #02CE80 0%, #7BD706 100%)
             }

             .gr-bg7 {
                 background: -webkit-linear-gradient(top, #3E66F3 0%, #0031DD 100%);
                 background: linear-gradient(180deg, #3E66F3 0%, #0031DD 100%);
                 border-radius: 100px
             }

             .gray-body {
                 background-color: #F8FAFF
             }

             .smoke-body {
                 background-color: #F3F2EA
             }

             .background-image,
             [data-bg-src] {
                 background-repeat: no-repeat;
                 background-size: cover;
                 background-position: center center
             }

             .bg-fluid {
                 background-repeat: no-repeat;
                 background-size: 100% 100%;
                 background-position: center center
             }

             .bg-auto {
                 background-size: auto auto
             }

             .bg-top-center {
                 background-size: auto;
                 background-position: top center
             }

             .bg-bottom-center {
                 background-size: auto;
                 background-position: bottom center
             }

             .bg-repeat {
                 background-size: auto;
                 background-repeat: repeat
             }

             .bg-bottom-right {
                 background-size: auto;
                 background-position: bottom right
             }

             .bg-top-right {
                 background-size: auto;
                 background-position: top right
             }

             .text-theme {
                 color: var(--theme-color) !important
             }

             .text-title {
                 color: var(--title-color) !important
             }

             .text-body {
                 color: var(--body-color) !important
             }

             .text-white {
                 color: var(--white-color) !important
             }

             .text-light {
                 color: var(--light-color) !important
             }

             .text-yellow {
                 color: var(--yellow-color) !important
             }

             .text-success {
                 color: var(--success-color) !important
             }

             .text-error {
                 color: var(--error-color) !important
             }

             .text-inherit {
                 color: inherit
             }

             .text-inherit:hover {
                 color: var(--theme-color)
             }

             a.text-theme:hover,
             .text-reset:hover {
                 text-decoration: underline
             }

             .overlay {
                 position: absolute;
                 top: 0;
                 left: 0;
                 height: 100%;
                 width: 100%
             }

             .position-center {
                 position: absolute;
                 left: 50%;
                 top: 50%;
                 -webkit-transform: translate(-50%, -50%);
                 -ms-transform: translate(-50%, -50%);
                 transform: translate(-50%, -50%)
             }

             [data-overlay] {
                 position: relative;
                 z-index: 2
             }

             [data-overlay] [class^="col-"],
             [data-overlay] [class*="col-"] {
                 z-index: 1
             }

             [data-overlay]:before {
                 content: '';
                 position: absolute;
                 left: 0;
                 top: 0;
                 right: 0;
                 bottom: 0;
                 z-index: 1
             }

             [data-overlay="theme"]:before {
                 background-color: var(--theme-color)
             }

             [data-overlay="title"]:before {
                 background-color: var(--title-color)
             }

             [data-overlay="white"]:before {
                 background-color: var(--white-color)
             }

             [data-overlay="black"]:before {
                 background-color: var(--black-color)
             }

             [data-overlay="overlay1"]:before {
                 background-color: #080E1C
             }

             [data-opacity="1"]:before {
                 opacity: .1
             }

             [data-opacity="2"]:before {
                 opacity: .2
             }

             [data-opacity="3"]:before {
                 opacity: .3
             }

             [data-opacity="4"]:before {
                 opacity: .4
             }

             [data-opacity="5"]:before {
                 opacity: .5
             }

             [data-opacity="6"]:before {
                 opacity: .6
             }

             [data-opacity="7"]:before {
                 opacity: .7
             }

             [data-opacity="8"]:before {
                 opacity: .8
             }

             [data-opacity="9"]:before {
                 opacity: .9
             }

             [data-opacity="10"]:before {
                 opacity: 1
             }

             .animated {
                 -webkit-animation-duration: 1s;
                 animation-duration: 1s;
                 -webkit-animation-fill-mode: both;
                 animation-fill-mode: both
             }

             .animated.hinge {
                 -webkit-animation-duration: 2s;
                 animation-duration: 2s
             }

             .ripple-animation,
             .play-btn:after,
             .play-btn:before,
             .faq-img4 .faq-shape:after,
             .faq-img4 .faq-shape:before,
             .process-card .pulse:after,
             .process-card .pulse:before,
             .process-card2 .box-number:after,
             .process-card2 .box-number:before {
                 -webkit-animation-duration: var(--ripple-ani-duration);
                 animation-duration: var(--ripple-ani-duration);
                 -webkit-animation-timing-function: ease-in-out;
                 animation-timing-function: ease-in-out;
                 -webkit-animation-iteration-count: infinite;
                 animation-iteration-count: infinite;
                 -webkit-animation-name: ripple;
                 animation-name: ripple
             }

             @-webkit-keyframes ripple {
                 0% {
                     -webkit-transform: scale(1);
                     transform: scale(1);
                     opacity: 0
                 }

                 30% {
                     opacity: 0.4
                 }

                 100% {
                     -webkit-transform: scale(1.8);
                     transform: scale(1.8);
                     opacity: 0
                 }
             }

             @keyframes ripple {
                 0% {
                     -webkit-transform: scale(1);
                     transform: scale(1);
                     opacity: 0
                 }

                 30% {
                     opacity: 0.4
                 }

                 100% {
                     -webkit-transform: scale(1.8);
                     transform: scale(1.8);
                     opacity: 0
                 }
             }

             @-webkit-keyframes ripple2 {
                 0% {
                     -webkit-transform: scale(0.6);
                     transform: scale(0.6);
                     opacity: 0.4
                 }

                 50% {
                     opacity: 0.3
                 }

                 80% {
                     opacity: 0.2
                 }

                 100% {
                     -webkit-transform: scale(2.2);
                     transform: scale(2.2);
                     opacity: 0
                 }
             }

             @keyframes ripple2 {
                 0% {
                     -webkit-transform: scale(0.6);
                     transform: scale(0.6);
                     opacity: 0.4
                 }

                 50% {
                     opacity: 0.3
                 }

                 80% {
                     opacity: 0.2
                 }

                 100% {
                     -webkit-transform: scale(2.2);
                     transform: scale(2.2);
                     opacity: 0
                 }
             }

             .fancy-animation {
                 -webkit-animation: morph 8s ease-in-out infinite;
                 animation: morph 8s ease-in-out infinite
             }

             @-webkit-keyframes morph {
                 0% {
                     border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%
                 }

                 50% {
                     border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%
                 }

                 100% {
                     border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%
                 }
             }

             @keyframes morph {
                 0% {
                     border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%
                 }

                 50% {
                     border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%
                 }

                 100% {
                     border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%
                 }
             }

             .movingX {
                 -webkit-animation: movingX 8s linear infinite;
                 animation: movingX 8s linear infinite
             }

             @-webkit-keyframes movingX {
                 0% {
                     -webkit-transform: translateX(0);
                     transform: translateX(0)
                 }

                 50% {
                     -webkit-transform: translateX(50px);
                     transform: translateX(50px)
                 }

                 100% {
                     -webkit-transform: translateX(0);
                     transform: translateX(0)
                 }
             }

             @keyframes movingX {
                 0% {
                     -webkit-transform: translateX(0);
                     transform: translateX(0)
                 }

                 50% {
                     -webkit-transform: translateX(50px);
                     transform: translateX(50px)
                 }

                 100% {
                     -webkit-transform: translateX(0);
                     transform: translateX(0)
                 }
             }

             .moving {
                 -webkit-animation: moving 8s linear infinite;
                 animation: moving 8s linear infinite
             }

             @-webkit-keyframes moving {
                 0% {
                     -webkit-transform: translateX(0);
                     transform: translateX(0)
                 }

                 50% {
                     -webkit-transform: translateX(-50px);
                     transform: translateX(-50px)
                 }

                 100% {
                     -webkit-transform: translateX(0);
                     transform: translateX(0)
                 }
             }

             @keyframes moving {
                 0% {
                     -webkit-transform: translateX(0);
                     transform: translateX(0)
                 }

                 50% {
                     -webkit-transform: translateX(-50px);
                     transform: translateX(-50px)
                 }

                 100% {
                     -webkit-transform: translateX(0);
                     transform: translateX(0)
                 }
             }

             .jump {
                 -webkit-animation: jumpAni 7s linear infinite;
                 animation: jumpAni 7s linear infinite
             }

             @-webkit-keyframes jumpAni {
                 0% {
                     -webkit-transform: translateY(0);
                     transform: translateY(0)
                 }

                 40% {
                     -webkit-transform: translateY(-30px);
                     transform: translateY(-30px)
                 }

                 100% {
                     -webkit-transform: translateY(0);
                     transform: translateY(0)
                 }
             }

             @keyframes jumpAni {
                 0% {
                     -webkit-transform: translateY(0);
                     transform: translateY(0)
                 }

                 40% {
                     -webkit-transform: translateY(-30px);
                     transform: translateY(-30px)
                 }

                 100% {
                     -webkit-transform: translateY(0);
                     transform: translateY(0)
                 }
             }

             .jump-reverse {
                 -webkit-animation: jumpReverseAni 7s linear infinite;
                 animation: jumpReverseAni 7s linear infinite
             }

             @-webkit-keyframes jumpReverseAni {
                 0% {
                     -webkit-transform: translateY(0);
                     transform: translateY(0)
                 }

                 50% {
                     -webkit-transform: translateY(30px);
                     transform: translateY(30px)
                 }

                 100% {
                     -webkit-transform: translateY(0);
                     transform: translateY(0)
                 }
             }

             @keyframes jumpReverseAni {
                 0% {
                     -webkit-transform: translateY(0);
                     transform: translateY(0)
                 }

                 50% {
                     -webkit-transform: translateY(30px);
                     transform: translateY(30px)
                 }

                 100% {
                     -webkit-transform: translateY(0);
                     transform: translateY(0)
                 }
             }

             .spin {
                 -webkit-animation: spin 15s linear infinite;
                 animation: spin 15s linear infinite
             }

             @-webkit-keyframes spin {
                 0% {
                     -webkit-transform: rotate(0);
                     transform: rotate(0)
                 }

                 100% {
                     -webkit-transform: rotate(360deg);
                     transform: rotate(360deg)
                 }
             }

             @keyframes spin {
                 0% {
                     -webkit-transform: rotate(0);
                     transform: rotate(0)
                 }

                 100% {
                     -webkit-transform: rotate(360deg);
                     transform: rotate(360deg)
                 }
             }

             @-webkit-keyframes titleFill {
                 0% {
                     width: 0
                 }

                 80% {
                     width: 100%
                 }

                 100% {
                     width: 100%
                 }
             }

             @keyframes titleFill {
                 0% {
                     width: 0
                 }

                 80% {
                     width: 100%
                 }

                 100% {
                     width: 100%
                 }
             }

             @-webkit-keyframes lineDown {
                 0% {
                     -webkit-transform: 0;
                     transform: 0;
                     opacity: 0
                 }

                 30% {
                     opacity: 1
                 }

                 60% {
                     opacity: 1
                 }

                 100% {
                     -webkit-transform: translateY(8px);
                     transform: translateY(8px);
                     opacity: 1
                 }
             }

             @keyframes lineDown {
                 0% {
                     -webkit-transform: 0;
                     transform: 0;
                     opacity: 0
                 }

                 30% {
                     opacity: 1
                 }

                 60% {
                     opacity: 1
                 }

                 100% {
                     -webkit-transform: translateY(8px);
                     transform: translateY(8px);
                     opacity: 1
                 }
             }

             .swing {
                 -webkit-animation: swing 10s infinite ease-in-out;
                 animation: swing 10s infinite ease-in-out
             }

             @-webkit-keyframes swing {

                 0%,
                 100% {
                     -webkit-transform: rotate(0deg);
                     transform: rotate(0deg)
                 }

                 25% {
                     -webkit-transform: rotate(5deg);
                     transform: rotate(5deg)
                 }

                 50% {
                     -webkit-transform: rotate(-5deg);
                     transform: rotate(-5deg)
                 }

                 75% {
                     -webkit-transform: rotate(5deg);
                     transform: rotate(5deg)
                 }
             }

             @keyframes swing {

                 0%,
                 100% {
                     -webkit-transform: rotate(0deg);
                     transform: rotate(0deg)
                 }

                 25% {
                     -webkit-transform: rotate(5deg);
                     transform: rotate(5deg)
                 }

                 50% {
                     -webkit-transform: rotate(-5deg);
                     transform: rotate(-5deg)
                 }

                 75% {
                     -webkit-transform: rotate(5deg);
                     transform: rotate(5deg)
                 }
             }

             .dance {
                 -webkit-animation: dance 2s alternate infinite;
                 animation: dance 2s alternate infinite
             }

             @-webkit-keyframes dance {
                 0% {
                     -webkit-transform: scale(0.8);
                     transform: scale(0.8)
                 }

                 100% {
                     -webkit-transform: scale(1);
                     transform: scale(1)
                 }
             }

             @keyframes dance {
                 0% {
                     -webkit-transform: scale(0.8);
                     transform: scale(0.8)
                 }

                 100% {
                     -webkit-transform: scale(1);
                     transform: scale(1)
                 }
             }

             .dance2 {
                 -webkit-animation: dance2 4s alternate infinite;
                 animation: dance2 4s alternate infinite
             }

             @-webkit-keyframes dance2 {
                 0% {
                     -webkit-transform: translate3d(0, 0, 0);
                     transform: translate3d(0, 0, 0)
                 }

                 50% {
                     -webkit-transform: translate3d(15px, -15px, 0);
                     transform: translate3d(15px, -15px, 0)
                 }

                 100% {
                     -webkit-transform: translate3d(0, -15px, 15px);
                     transform: translate3d(0, -15px, 15px)
                 }
             }

             @keyframes dance2 {
                 0% {
                     -webkit-transform: translate3d(0, 0, 0);
                     transform: translate3d(0, 0, 0)
                 }

                 50% {
                     -webkit-transform: translate3d(15px, -15px, 0);
                     transform: translate3d(15px, -15px, 0)
                 }

                 100% {
                     -webkit-transform: translate3d(0, -15px, 15px);
                     transform: translate3d(0, -15px, 15px)
                 }
             }

             @-webkit-keyframes zoom1 {
                 0% {
                     scale: 0.2
                 }

                 50% {
                     scale: 1
                 }

                 100% {
                     scale: 0.2
                 }
             }

             @keyframes zoom1 {
                 0% {
                     scale: 0.2
                 }

                 50% {
                     scale: 1
                 }

                 100% {
                     scale: 0.2
                 }
             }

             @-webkit-keyframes topBottomLine {
                 0% {
                     top: 0
                 }

                 50% {
                     top: calc(100% - 30px)
                 }

                 100% {
                     top: 0
                 }
             }

             @keyframes topBottomLine {
                 0% {
                     top: 0
                 }

                 50% {
                     top: calc(100% - 30px)
                 }

                 100% {
                     top: 0
                 }
             }

             .bg-color-ani,
             .color-animate {
                 -webkit-animation: bgColor 6s linear infinite;
                 animation: bgColor 6s linear infinite
             }

             @-webkit-keyframes bgColor {
                 0% {
                     background-color: #F2BA4C
                 }

                 25% {
                     background-color: #81F24C
                 }

                 50% {
                     background-color: #41F27D
                 }

                 75% {
                     background-color: #0500FF
                 }

                 100% {
                     background-color: #F2BA4C
                 }
             }

             @keyframes bgColor {
                 0% {
                     background-color: #F2BA4C
                 }

                 25% {
                     background-color: #81F24C
                 }

                 50% {
                     background-color: #41F27D
                 }

                 75% {
                     background-color: #0500FF
                 }

                 100% {
                     background-color: #F2BA4C
                 }
             }

             @-webkit-keyframes footerLine {
                 0% {
                     left: 40px
                 }

                 50% {
                     left: 0
                 }

                 100% {
                     left: 40px
                 }
             }

             @keyframes footerLine {
                 0% {
                     left: 40px
                 }

                 50% {
                     left: 0
                 }

                 100% {
                     left: 40px
                 }
             }

             @-webkit-keyframes fadeLeftRight {

                 0%,
                 100% {
                     -webkit-transform: translateX(0px);
                     transform: translateX(0px)
                 }

                 50% {
                     -webkit-transform: translateX(100px);
                     transform: translateX(100px)
                 }
             }

             @keyframes fadeLeftRight {

                 0%,
                 100% {
                     -webkit-transform: translateX(0px);
                     transform: translateX(0px)
                 }

                 50% {
                     -webkit-transform: translateX(100px);
                     transform: translateX(100px)
                 }
             }

             @-webkit-keyframes animate-positive {
                 0% {
                     width: 0
                 }
             }

             @keyframes animate-positive {
                 0% {
                     width: 0
                 }
             }

             .fadein,
             .scalein,
             .slidetopleft,
             .slidebottomright,
             .slideinleft,
             .slideinright,
             .slideindown,
             .slideinup,
             .rollinleft,
             .rollinright {
                 opacity: 0;
                 -webkit-animation-fill-mode: forwards;
                 animation-fill-mode: forwards;
                 -webkit-animation-iteration-count: 1;
                 animation-iteration-count: 1;
                 -webkit-animation-duration: 1.3s;
                 animation-duration: 1.3s;
                 -webkit-animation-delay: 0.3s;
                 animation-delay: 0.3s;
                 -webkit-animation-name: var(--animation-name);
                 animation-name: var(--animation-name)
             }

             .th-ani {
                 -webkit-transition: all 500ms ease;
                 transition: all 500ms ease
             }

             .th-ani:hover {
                 -webkit-transform: translate(0, -15px);
                 -ms-transform: translate(0, -15px);
                 transform: translate(0, -15px)
             }

             @-webkit-keyframes shine {
                 100% {
                     left: 125%
                 }
             }

             @keyframes shine {
                 100% {
                     left: 125%
                 }
             }

             .swiper-slide-active .fadein {
                 --animation-name: fadein
             }

             .swiper-slide-active .scalein {
                 --animation-name: scalein
             }

             .swiper-slide-active .slidetopleft {
                 --animation-name: slidetopleft
             }

             .swiper-slide-active .slidebottomright {
                 --animation-name: slidebottomright
             }

             .swiper-slide-active .slideinleft {
                 --animation-name: slideinleft
             }

             .swiper-slide-active .slideinright {
                 --animation-name: slideinright
             }

             .swiper-slide-active .slideinup {
                 --animation-name: slideinup
             }

             .swiper-slide-active .slideindown {
                 --animation-name: slideindown
             }

             .swiper-slide-active .rollinleft {
                 --animation-name: rollinleft
             }

             .swiper-slide-active .rollinright {
                 --animation-name: rollinright
             }

             @-webkit-keyframes fadein {
                 0% {
                     opacity: 0
                 }

                 100% {
                     opacity: 1
                 }
             }

             @keyframes fadein {
                 0% {
                     opacity: 0
                 }

                 100% {
                     opacity: 1
                 }
             }

             @-webkit-keyframes slideinup {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateY(100px);
                     transform: translateY(100px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateY(0);
                     transform: translateY(0)
                 }
             }

             @keyframes slideinup {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateY(100px);
                     transform: translateY(100px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateY(0);
                     transform: translateY(0)
                 }
             }

             @-webkit-keyframes scroll {
                 0% {
                     -webkit-transform: translateX(0);
                     transform: translateX(0)
                 }

                 100% {
                     -webkit-transform: translateX(calc(-100% - var(--gap)));
                     transform: translateX(calc(-100% - var(--gap)))
                 }
             }

             @keyframes scroll {
                 0% {
                     -webkit-transform: translateX(0);
                     transform: translateX(0)
                 }

                 100% {
                     -webkit-transform: translateX(calc(-100% - var(--gap)));
                     transform: translateX(calc(-100% - var(--gap)))
                 }
             }

             @-webkit-keyframes slideinright {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateX(180px);
                     transform: translateX(180px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateX(0);
                     transform: translateX(0)
                 }
             }

             @keyframes slideinright {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateX(180px);
                     transform: translateX(180px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateX(0);
                     transform: translateX(0)
                 }
             }

             @-webkit-keyframes slideindown {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateY(-100px);
                     transform: translateY(-100px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateY(0);
                     transform: translateY(0)
                 }
             }

             @keyframes slideindown {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateY(-100px);
                     transform: translateY(-100px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateY(0);
                     transform: translateY(0)
                 }
             }

             @-webkit-keyframes slideinleft {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateX(-100px);
                     transform: translateX(-100px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateX(0);
                     transform: translateX(0)
                 }
             }

             @keyframes slideinleft {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateX(-100px);
                     transform: translateX(-100px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateX(0);
                     transform: translateX(0)
                 }
             }

             @-webkit-keyframes slidebottomright {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateX(120px) translateY(120px);
                     transform: translateX(120px) translateY(120px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateX(0) translateY(0);
                     transform: translateX(0) translateY(0)
                 }
             }

             @keyframes slidebottomright {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateX(120px) translateY(120px);
                     transform: translateX(120px) translateY(120px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateX(0) translateY(0);
                     transform: translateX(0) translateY(0)
                 }
             }

             @-webkit-keyframes slidetopleft {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateX(-100px) translateY(-100px);
                     transform: translateX(-100px) translateY(-100px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateX(0) translateY(0);
                     transform: translateX(0) translateY(0)
                 }
             }

             @keyframes slidetopleft {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateX(-100px) translateY(-100px);
                     transform: translateX(-100px) translateY(-100px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateX(0) translateY(0);
                     transform: translateX(0) translateY(0)
                 }
             }

             @-webkit-keyframes fadeInLeft {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateX(-20px);
                     -ms-transform: translateX(-20px);
                     transform: translateX(-20px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateX(0);
                     -ms-transform: translateX(0);
                     transform: translateX(0)
                 }
             }

             @keyframes fadeInLeft {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateX(-20px);
                     -ms-transform: translateX(-20px);
                     transform: translateX(-20px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateX(0);
                     -ms-transform: translateX(0);
                     transform: translateX(0)
                 }
             }

             .fadeInLeft {
                 -webkit-animation-name: fadeInLeft;
                 animation-name: fadeInLeft
             }

             @-webkit-keyframes fadeInRight {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateX(20px);
                     -ms-transform: translateX(20px);
                     transform: translateX(20px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateX(0);
                     -ms-transform: translateX(0);
                     transform: translateX(0)
                 }
             }

             @keyframes fadeInRight {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateX(20px);
                     -ms-transform: translateX(20px);
                     transform: translateX(20px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateX(0);
                     -ms-transform: translateX(0);
                     transform: translateX(0)
                 }
             }

             .fadeInRight {
                 -webkit-animation-name: fadeInRight;
                 animation-name: fadeInRight
             }

             @-webkit-keyframes fadeInUp {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateY(20px);
                     -ms-transform: translateY(20px);
                     transform: translateY(20px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateY(0);
                     -ms-transform: translateY(0);
                     transform: translateY(0)
                 }
             }

             @keyframes fadeInUp {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateY(20px);
                     -ms-transform: translateY(20px);
                     transform: translateY(20px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateY(0);
                     -ms-transform: translateY(0);
                     transform: translateY(0)
                 }
             }

             .fadeInUp {
                 -webkit-animation-name: fadeInUp;
                 animation-name: fadeInUp
             }

             @-webkit-keyframes fadeInDown {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateY(-20px);
                     -ms-transform: translateY(-20px);
                     transform: translateY(-20px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateY(0);
                     -ms-transform: translateY(0);
                     transform: translateY(0)
                 }
             }

             @keyframes fadeInDown {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateY(-20px);
                     -ms-transform: translateY(-20px);
                     transform: translateY(-20px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateY(0);
                     -ms-transform: translateY(0);
                     transform: translateY(0)
                 }
             }

             .fadeInDown {
                 -webkit-animation-name: fadeInDown;
                 animation-name: fadeInDown
             }

             .zoomIn {
                 -webkit-animation-name: zoomIn;
                 animation-name: zoomIn
             }

             @-webkit-keyframes zoomIn {
                 0% {
                     opacity: 0;
                     -webkit-transform: scale3d(0.3, 0.3, 0.3);
                     transform: scale3d(0.3, 0.3, 0.3)
                 }

                 50% {
                     opacity: 1
                 }
             }

             @keyframes zoomIn {
                 0% {
                     opacity: 0;
                     -webkit-transform: scale3d(0.3, 0.3, 0.3);
                     transform: scale3d(0.3, 0.3, 0.3)
                 }

                 50% {
                     opacity: 1
                 }
             }

             @keyframes fadeInLeft {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateX(-20px);
                     -ms-transform: translateX(-20px);
                     transform: translateX(-20px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateX(0);
                     -ms-transform: translateX(0);
                     transform: translateX(0)
                 }
             }

             .fadeInLeft {
                 -webkit-animation-name: fadeInLeft;
                 animation-name: fadeInLeft
             }

             @keyframes fadeInRight {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateX(20px);
                     -ms-transform: translateX(20px);
                     transform: translateX(20px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateX(0);
                     -ms-transform: translateX(0);
                     transform: translateX(0)
                 }
             }

             .fadeInRight {
                 -webkit-animation-name: fadeInRight;
                 animation-name: fadeInRight
             }

             @keyframes fadeInUp {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateY(20px);
                     -ms-transform: translateY(20px);
                     transform: translateY(20px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateY(0);
                     -ms-transform: translateY(0);
                     transform: translateY(0)
                 }
             }

             .fadeInUp {
                 -webkit-animation-name: fadeInUp;
                 animation-name: fadeInUp
             }

             @keyframes fadeInDown {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateY(-20px);
                     -ms-transform: translateY(-20px);
                     transform: translateY(-20px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateY(0);
                     -ms-transform: translateY(0);
                     transform: translateY(0)
                 }
             }

             .fadeInDown {
                 -webkit-animation-name: fadeInDown;
                 animation-name: fadeInDown
             }

             .dance {
                 -webkit-animation: dance 2s alternate infinite;
                 animation: dance 2s alternate infinite
             }

             @keyframes dance {
                 0% {
                     -webkit-transform: scale(0.8);
                     transform: scale(0.8)
                 }

                 100% {
                     -webkit-transform: scale(1);
                     transform: scale(1)
                 }
             }

             .dance2 {
                 -webkit-animation: dance2 4s alternate infinite;
                 animation: dance2 4s alternate infinite
             }

             @keyframes dance2 {
                 0% {
                     -webkit-transform: translate3d(0, 0, 0);
                     transform: translate3d(0, 0, 0)
                 }

                 50% {
                     -webkit-transform: translate3d(15px, -15px, 0);
                     transform: translate3d(15px, -15px, 0)
                 }

                 100% {
                     -webkit-transform: translate3d(0, -15px, 15px);
                     transform: translate3d(0, -15px, 15px)
                 }
             }

             @-webkit-keyframes slideInDown {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateY(-2000px);
                     transform: translateY(-2000px)
                 }

                 100% {
                     -webkit-transform: translateY(0);
                     transform: translateY(0)
                 }
             }

             @keyframes slideInDown {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateY(-2000px);
                     -ms-transform: translateY(-2000px);
                     transform: translateY(-2000px)
                 }

                 100% {
                     -webkit-transform: translateY(0);
                     -ms-transform: translateY(0);
                     transform: translateY(0)
                 }
             }

             .slideInDown {
                 -webkit-animation-name: slideInDown;
                 animation-name: slideInDown
             }

             @-webkit-keyframes slideUp {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateY(100px);
                     transform: translateY(100px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateY(0);
                     transform: translateY(0)
                 }
             }

             @keyframes slideUp {
                 0% {
                     opacity: 0;
                     -webkit-transform: translateY(100px);
                     transform: translateY(100px)
                 }

                 100% {
                     opacity: 1;
                     -webkit-transform: translateY(0);
                     transform: translateY(0)
                 }
             }

             .slideUp {
                 -webkit-animation-name: slideOutUp;
                 animation-name: slideOutUp
             }

             .widget_nav_menu ul,
             .widget_meta ul,
             .widget_pages ul,
             .widget_archive ul,
             .widget_categories ul {
                 list-style: none;
                 padding: 0;
                 margin: 0 0 0 0
             }

             .widget_nav_menu>ul,
             .widget_nav_menu .menu,
             .widget_meta>ul,
             .widget_meta .menu,
             .widget_pages>ul,
             .widget_pages .menu,
             .widget_archive>ul,
             .widget_archive .menu,
             .widget_categories>ul,
             .widget_categories .menu {
                 margin: 0 0 -10px 0
             }

             .widget_nav_menu a,
             .widget_meta a,
             .widget_pages a,
             .widget_archive a,
             .widget_categories a {
                 display: block;
                 background-color: var(--white-color);
                 border: 1px solid var(--smoke-color);
                 margin: 0 0 10px 0;
                 padding: 16px 45px 19px 25px;
                 font-size: 16px;
                 font-weight: 400;
                 line-height: 1.313;
                 color: var(--body-color);
                 border-radius: 100px
             }

             .widget_nav_menu a::before,
             .widget_meta a::before,
             .widget_pages a::before,
             .widget_archive a::before,
             .widget_categories a::before {
                 content: "\f061";
                 position: absolute;
                 right: 25px;
                 top: 17px;
                 font-family: var(--icon-font);
                 font-weight: 600;
                 color: var(--theme-color);
                 -webkit-transition: all ease 0.4s;
                 transition: all ease 0.4s
             }

             .widget_nav_menu li,
             .widget_meta li,
             .widget_pages li,
             .widget_archive li,
             .widget_categories li {
                 display: block;
                 position: relative
             }

             .widget_nav_menu li>span,
             .widget_meta li>span,
             .widget_pages li>span,
             .widget_archive li>span,
             .widget_categories li>span {
                 color: var(--white-color);
                 background-color: #272A34;
                 font-weight: 600;
                 text-align: center;
                 position: absolute;
                 right: 24px;
                 top: 15px;
                 -webkit-transition: all ease 0.4s;
                 transition: all ease 0.4s;
                 pointer-events: none;
                 min-width: 20px;
                 text-align: right
             }

             .widget_nav_menu a:hover,
             .widget_meta a:hover,
             .widget_pages a:hover,
             .widget_archive a:hover,
             .widget_categories a:hover {
                 color: var(--white-color);
                 background-color: var(--theme-color)
             }

             .widget_nav_menu a:hover:before,
             .widget_meta a:hover:before,
             .widget_pages a:hover:before,
             .widget_archive a:hover:before,
             .widget_categories a:hover:before {
                 color: var(--white-color)
             }

             .widget_nav_menu a:hover~span,
             .widget_meta a:hover~span,
             .widget_pages a:hover~span,
             .widget_archive a:hover~span,
             .widget_categories a:hover~span {
                 color: var(--white-color);
                 background-color: var(--theme-color)
             }

             .widget_nav_menu .children,
             .widget_meta .children,
             .widget_pages .children,
             .widget_archive .children,
             .widget_categories .children {
                 margin-left: 10px
             }

             .widget_nav_menu a,
             .widget_meta a,
             .widget_pages a {
                 padding-right: 20px
             }

             .widget_nav_menu .sub-menu {
                 margin-left: 10px
             }

             .wp-block-archives {
                 list-style: none;
                 margin: 0;
                 padding: 0;
                 margin-bottom: 20px
             }

             .wp-block-archives a:not(:hover) {
                 color: inherit
             }

             .th-blog ul.wp-block-archives li {
                 margin: 5px 0
             }

             .widget {
                 padding: var(--widget-padding-y, 40px) var(--widget-padding-x, 40px);
                 background-color: var(--smoke-color2);
                 margin-bottom: 40px;
                 position: relative;
                 border-radius: 30px
             }

             .widget[data-overlay]:before {
                 z-index: -1
             }

             .widget .th-social a {
                 box-shadow: 0px 9px 20px rgba(0, 0, 0, 0.06)
             }

             .widget.widget-author {
                 padding: var(--widget-padding-y, 30px) var(--widget-padding-x, 30px);
                 background-color: transparent;
                 border: 1px solid var(--smoke-color);
                 border-radius: 30px;
                 margin-right: 16px
             }

             @media (max-width: 1399px) {
                 .widget.widget-author {
                     margin: 0
                 }
             }

             .widget.widget-author .author-widget-wrap {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 gap: 30px
             }

             @media (max-width: 767px) {
                 .widget.widget-author .author-widget-wrap {
                     display: block;
                     text-align: center
                 }
             }

             .widget.widget-author .author-widget-wrap .avater {
                 min-width: 189px;
                 display: grid;
                 -webkit-align-content: center;
                 -ms-flex-line-pack: center;
                 align-content: center;
                 -webkit-box-pack: center;
                 -webkit-justify-content: center;
                 -ms-flex-pack: center;
                 justify-content: center;
                 border-radius: 15px
             }

             @media (max-width: 767px) {
                 .widget.widget-author .author-widget-wrap .avater {
                     margin-bottom: 25px
                 }
             }

             .widget.widget-author .author-widget-wrap .avater img {
                 border-radius: 15px
             }

             .widget.widget-author .author-widget-wrap .box-title {
                 margin-bottom: 3px
             }

             .widget.widget-author .author-widget-wrap .desig {
                 color: var(--theme-color);
                 display: block;
                 margin-bottom: 5px
             }

             .widget.widget-author .author-widget-wrap .author-bio {
                 margin-bottom: -0.3rem
             }

             .widget.widget_categories.style2 {
                 background-color: #EBEEFF
             }

             .widget.widget_categories.style2 a {
                 border: none
             }

             .widget.widget_categories.style2 a:before {
                 color: var(--body-color)
             }

             .widget.widget_categories.style2 a:hover:before {
                 color: var(--white-color)
             }

             .widget_title {
                 position: relative;
                 font-size: 22px;
                 font-weight: 500;
                 font-family: var(--title-font);
                 line-height: 1em;
                 margin: -0.12em 0 28px 0
             }

             .widget .search-form {
                 position: relative;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex
             }

             .widget .search-form input {
                 -webkit-box-flex: 1;
                 -webkit-flex: 1;
                 -ms-flex: 1;
                 flex: 1;
                 height: 55px;
                 border-radius: 100px;
                 padding-right: 55px
             }

             .widget .search-form button {
                 border: none;
                 font-size: 16px;
                 background-color: var(--theme-color);
                 color: var(--white-color);
                 display: inline-block;
                 padding: 0;
                 width: 55px;
                 height: 55px;
                 text-align: center;
                 border-radius: 100px;
                 position: absolute;
                 top: 0;
                 right: 0
             }

             .widget .search-form button:hover {
                 background-color: var(--title-color)
             }

             .widget_call {
                 background-color: var(--title-color);
                 position: relative;
                 z-index: 2
             }

             .widget-call .box-title {
                 margin-bottom: 5px
             }

             .widget-call .info-box {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex
             }

             .widget-call .info-box_link {
                 font-size: 18px;
                 color: var(--white-color)
             }

             .widget-call .info-box_link:hover {
                 color: var(--white-color)
             }

             .widget-call .info-box_icon {
                 width: 50px;
                 height: 50px;
                 min-width: 50px;
                 line-height: 50px;
                 font-size: 16px;
                 background-color: transparent;
                 border: 1px solid var(--white-color);
                 color: var(--white-color);
                 border-radius: 50%;
                 text-align: center;
                 margin-right: 14px;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .widget-call .info-box_icon:hover {
                 background-color: var(--white-color);
                 color: var(--title-color)
             }

             .widget-call .info-box_subtitle {
                 font-size: 14px;
                 color: var(--white-color);
                 text-transform: capitalize;
                 margin-bottom: 5px
             }

             .widget-call .info-box_text {
                 font-size: 18px;
                 font-weight: 500;
                 color: var(--white-color)
             }

             .widget-call .info-box_text:last-child {
                 margin-bottom: 0
             }

             .widget-call .info-box:not(:last-child) {
                 margin-bottom: 20px
             }

             .widget_cta {
                 position: relative;
                 border-radius: 20px;
                 text-align: center;
                 --space: 40px;
                 height: 452px;
                 margin-bottom: 0
             }

             @media (max-width: 1299px) {
                 .widget_cta {
                     --space: 30px
                 }
             }

             .widget_cta:before {
                 content: "";
                 position: absolute;
                 inset: 0;
                 border-radius: 20px;
                 opacity: 0.9;
                 background: -webkit-linear-gradient(top, rgba(62, 102, 243, 0) -18.65%, #0031DD 99.96%);
                 background: linear-gradient(180deg, rgba(62, 102, 243, 0) -18.65%, #0031DD 99.96%)
             }

             .widget_cta .cta-banner {
                 position: absolute;
                 left: 0;
                 bottom: 0;
                 width: 100%;
                 padding: var(--space)
             }

             .widget_cta .banner-title {
                 font-weight: 700;
                 font-size: 30px;
                 line-height: 40px;
                 color: var(--white-color);
                 margin-bottom: 20px
             }

             @media (max-width: 1299px) {
                 .widget_cta .banner-title {
                     font-size: 20px;
                     line-height: 30px
                 }
             }

             .widget_cta .th-btn {
                 border-radius: 30px
             }

             .widget_offer {
                 background-color: var(--theme-color);
                 padding: 60px 40px;
                 border-radius: 20px;
                 margin-bottom: 0
             }

             @media (max-width: 1199px) {
                 .widget_offer {
                     padding: 30px
                 }
             }

             .widget_offer .offer-banner {
                 text-align: center
             }

             .widget_offer .offer-banner .banner-logo {
                 margin-bottom: 23px
             }

             .widget_offer .offer-banner .banner-title {
                 color: var(--white-color);
                 font-size: 22px;
                 font-weight: 500;
                 max-width: 250px;
                 margin: 0 auto 57px auto
             }

             .widget_offer .offer-banner .offer {
                 background-color: var(--white-color);
                 padding: 50px 40px;
                 border-radius: 10px
             }

             @media (max-width: 1199px) {
                 .widget_offer .offer-banner .offer {
                     padding: 30px
                 }
             }

             .widget_offer .offer-banner .offer-title {
                 font-size: 20px;
                 font-weight: 500;
                 margin: -0.3rem 0 2px 0
             }

             @media (max-width: 1199px) {
                 .widget_offer .offer-banner .offer-title {
                     font-size: 16px
                 }
             }

             .widget_offer .offer-banner .offer-text {
                 font-family: var(--title-font);
                 margin-bottom: 20px
             }

             .widget_offer .offer-banner .th-btn {
                 padding: 17px 36px
             }

             @media (max-width: 1199px) {
                 .widget_offer .offer-banner .th-btn {
                     padding: 17px 30px
                 }
             }

             .widget_info .widget_title {
                 border-bottom: 1px solid var(--smoke-color);
                 margin-bottom: 20px;
                 padding-bottom: 25px
             }

             .widget_info .info-list {
                 max-width: 240px;
                 margin-bottom: 30px
             }

             .widget_info .info-list ul {
                 padding: 0
             }

             .widget_info .info-list ul li {
                 list-style: none;
                 margin-bottom: 10px
             }

             .widget_info .info-list ul strong {
                 color: var(--title-color)
             }

             .wp-block-tag-cloud a,
             .tagcloud a {
                 display: inline-block;
                 font-size: 14px;
                 font-weight: 700;
                 font-family: var(--body-font);
                 text-transform: capitalize;
                 line-height: 1;
                 padding: 13px 19px;
                 margin-right: 5px;
                 margin-bottom: 10px;
                 color: var(--body-color);
                 background-color: var(--white-color);
                 border: 1px solid var(--smoke-color);
                 border-radius: 100px
             }

             .wp-block-tag-cloud a:hover,
             .tagcloud a:hover {
                 background-color: var(--theme-color);
                 color: var(--white-color) !important;
                 border-color: var(--theme-color)
             }

             .wp-block-tag-cloud,
             .tagcloud {
                 margin-right: -10px;
                 margin-bottom: -10px
             }

             .sidebar-gallery {
                 display: grid;
                 grid-template-columns: repeat(3, 1fr);
                 gap: 20px;
                 max-width: 320px
             }

             .sidebar-gallery .gallery-btn {
                 position: absolute;
                 top: 50%;
                 left: 50%;
                 color: var(--white-color);
                 visibility: hidden;
                 opacity: 0;
                 -webkit-transform: translate(-50%, 20px);
                 -ms-transform: translate(-50%, 20px);
                 transform: translate(-50%, 20px)
             }

             .sidebar-gallery .gallery-btn:hover {
                 color: var(--theme-color)
             }

             .sidebar-gallery .gallery-thumb {
                 overflow: hidden;
                 position: relative;
                 border-radius: 5px
             }

             .sidebar-gallery .gallery-thumb:before {
                 content: '';
                 height: calc(100% - 14px);
                 width: calc(100% - 14px);
                 background-color: var(--title-color);
                 opacity: 0.8;
                 position: absolute;
                 top: 7px;
                 left: 7px;
                 border: 1px solid var(--white-color);
                 -webkit-transform: scaleX(0);
                 -ms-transform: scaleX(0);
                 transform: scaleX(0);
                 border-radius: inherit;
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out
             }

             .sidebar-gallery .gallery-thumb img {
                 width: 100%
             }

             .sidebar-gallery .gallery-thumb:hover:before {
                 -webkit-transform: scaleX(1);
                 -ms-transform: scaleX(1);
                 transform: scaleX(1)
             }

             .sidebar-gallery .gallery-thumb:hover .gallery-btn {
                 visibility: visible;
                 opacity: 1;
                 -webkit-transform: translate(-50%, -50%);
                 -ms-transform: translate(-50%, -50%);
                 transform: translate(-50%, -50%)
             }

             .recent-post {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 margin-bottom: 20px
             }

             .recent-post:last-child {
                 margin-bottom: 0
             }

             .recent-post .media-img {
                 margin-right: 20px;
                 width: 80px;
                 overflow: hidden;
                 border-radius: 16px
             }

             .recent-post .media-img img {
                 width: 100%;
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out
             }

             .recent-post .post-title {
                 font-weight: 500;
                 font-size: 18px;
                 line-height: 26px;
                 margin: 0 0 4px 0;
                 font-family: var(--title-font);
                 text-transform: capitalize
             }

             .recent-post .recent-post-meta a {
                 text-transform: capitalize;
                 font-size: 14px;
                 color: var(--body-color);
                 font-family: var(--body-font)
             }

             .recent-post .recent-post-meta a i {
                 margin-right: 6px;
                 color: var(--theme-color)
             }

             .recent-post .recent-post-meta a:hover {
                 color: var(--theme-color)
             }

             .recent-post:hover .media-img img {
                 -webkit-transform: scale(1.1);
                 -ms-transform: scale(1.1);
                 transform: scale(1.1)
             }

             .sidebar-area.style2 {
                 margin-left: 15px
             }

             @media (max-width: 991px) {
                 .sidebar-area.style2 {
                     margin-left: 0
                 }
             }

             .sidebar-area ul.wp-block-latest-posts {
                 margin-bottom: 0
             }

             .sidebar-area ul.wp-block-latest-posts li:last-child {
                 margin-bottom: 0
             }

             .sidebar-area select,
             .sidebar-area input {
                 background-color: var(--white-color)
             }

             .sidebar-area .widget .wp-block-search {
                 margin-bottom: 0
             }

             .sidebar-area .wp-block-group__inner-container h2 {
                 font-size: 20px;
                 line-height: 1em;
                 margin-bottom: 20px;
                 margin-top: -0.07em
             }

             .sidebar-area ol.wp-block-latest-comments {
                 padding: 0;
                 margin: 0
             }

             .sidebar-area ol.wp-block-latest-comments li {
                 line-height: 1.5;
                 margin: 0 0 20px 0;
                 border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                 padding-bottom: 20px
             }

             .sidebar-area ol.wp-block-latest-comments li:last-child {
                 margin-bottom: 0;
                 padding-bottom: 0;
                 border-bottom: none
             }

             .download-widget-wrap .th-btn {
                 width: 100%
             }

             .download-widget-wrap .th-btn:first-child {
                 margin-bottom: 20px
             }

             .download-widget-wrap .th-btn.style2 {
                 color: var(--body-color)
             }

             .download-widget-wrap .th-btn.style2:before,
             .download-widget-wrap .th-btn.style2:after {
                 background-color: var(--theme-color)
             }

             .download-widget-wrap .th-btn.style2:hover {
                 color: var(--white-color);
                 border-color: var(--theme-color)
             }

             .widget_banner {
                 background-color: var(--title-color);
                 position: relative
             }

             .widget_banner .shape1 {
                 position: absolute;
                 bottom: 0;
                 right: 0
             }

             .widget_banner .widget_title {
                 color: var(--white-color)
             }

             .widget_banner:has(.widget-map) {
                 padding: 0;
                 line-height: 0px
             }

             .widget-map iframe {
                 min-height: 280px
             }

             .widget-banner {
                 height: 360px;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-orient: vertical;
                 -webkit-box-direction: normal;
                 -webkit-flex-direction: column;
                 -ms-flex-direction: column;
                 flex-direction: column;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 -webkit-box-pack: center;
                 -webkit-justify-content: center;
                 -ms-flex-pack: center;
                 justify-content: center;
                 text-align: center
             }

             @media (max-width: 360px) {
                 .widget-banner {
                     height: 280px
                 }
             }

             .widget-banner .text {
                 display: block;
                 margin-top: -0.4em;
                 margin-bottom: 15px;
                 color: var(--white-color);
                 text-transform: uppercase;
                 font-weight: 500
             }

             .widget-banner .title {
                 color: var(--white-color);
                 margin-bottom: 35px
             }

             @media (max-width: 1299px) {
                 .widget-banner .title {
                     font-size: 34px
                 }
             }

             .project-info-list .contact-feature {
                 padding: 17px
             }

             .project-info-list .contact-feature:not(:last-of-type) {
                 margin-bottom: 10px
             }

             .price_slider_wrapper {
                 margin-top: -0.5em
             }

             .price_slider_wrapper .price_label span {
                 display: inline-block;
                 color: var(--body-color)
             }

             .price_slider_wrapper .ui-slider {
                 height: 6px;
                 position: relative;
                 width: 100%;
                 background-color: var(--theme-color);
                 border: none;
                 margin-top: 15px;
                 margin-bottom: 25px;
                 cursor: pointer;
                 border-radius: 0
             }

             .price_slider_wrapper .ui-slider-range {
                 border: none;
                 cursor: pointer;
                 position: absolute;
                 top: 0;
                 height: 100%;
                 z-index: 1;
                 display: block;
                 background-color: var(--title-color)
             }

             .price_slider_wrapper .ui-slider-handle {
                 width: 16px;
                 height: 16px;
                 line-height: 16px;
                 border-radius: 50%;
                 text-align: center;
                 padding: 0;
                 cursor: pointer;
                 position: absolute;
                 margin-top: -5px;
                 z-index: 2;
                 background-color: var(--white-color);
                 border: 3px solid var(--title-color);
                 -webkit-transform: translateX(-1px);
                 -ms-transform: translateX(-1px);
                 transform: translateX(-1px)
             }

             .price_slider_wrapper .ui-slider-handle:focus {
                 outline: none;
                 box-shadow: 1.5px 2.598px 10px 0px rgba(0, 0, 0, 0.15)
             }

             .price_slider_wrapper .ui-slider-handle:last-child {
                 -webkit-transform: translateX(-9px);
                 -ms-transform: translateX(-9px);
                 transform: translateX(-9px)
             }

             .price_slider_wrapper button,
             .price_slider_wrapper .button {
                 background-color: var(--theme-color);
                 color: var(--white-color);
                 font-weight: 500;
                 line-height: 1.6;
                 text-transform: capitalize;
                 text-align: center;
                 border: none;
                 display: inline-block;
                 overflow: hidden;
                 position: relative;
                 z-index: 2;
                 padding: 7px 20px;
                 min-width: 100px;
                 font-size: 14px;
                 border-radius: 5px;
                 -webkit-transition: 0.4s ease-in;
                 transition: 0.4s ease-in
             }

             .price_slider_wrapper button:hover,
             .price_slider_wrapper .button:hover {
                 background-color: var(--title-color)
             }

             .widget_shopping_cart .widget_title {
                 margin-bottom: 30px;
                 border-bottom: none
             }

             .widget_shopping_cart ul {
                 margin: 0;
                 padding: 0
             }

             .widget_shopping_cart ul li {
                 list-style-type: none
             }

             .widget_shopping_cart .mini_cart_item {
                 position: relative;
                 padding: 30px 30px 30px 90px;
                 border-bottom: 1px solid rgba(0, 0, 0, 0.1);
                 margin-bottom: 0;
                 text-align: left
             }

             .widget_shopping_cart .mini_cart_item:first-child {
                 border-top: 1px solid rgba(0, 0, 0, 0.1)
             }

             .widget_shopping_cart .cart_list a:not(.remove) {
                 display: block;
                 color: var(--body-color);
                 font-size: 16px;
                 font-weight: 500;
                 font-family: var(--title-font);
                 font-weight: 600;
                 color: var(--title-color)
             }

             .widget_shopping_cart .cart_list a:not(.remove):hover {
                 color: var(--theme-color)
             }

             .widget_shopping_cart .cart_list a.remove {
                 position: absolute;
                 top: 50%;
                 left: 95%;
                 -webkit-transform: translateY(-50%);
                 -ms-transform: translateY(-50%);
                 transform: translateY(-50%);
                 color: var(--body-color)
             }

             .widget_shopping_cart .cart_list a.remove:hover {
                 color: var(--theme-color)
             }

             .widget_shopping_cart .cart_list img {
                 width: 75px;
                 height: 75px;
                 position: absolute;
                 left: 0;
                 top: 18px
             }

             .widget_shopping_cart .quantity {
                 display: -webkit-inline-box;
                 display: -webkit-inline-flex;
                 display: -ms-inline-flexbox;
                 display: inline-flex;
                 white-space: nowrap;
                 vertical-align: top;
                 margin-right: 20px;
                 font-size: 14px;
                 font-weight: 500
             }

             .widget_shopping_cart .total {
                 margin-top: 20px;
                 font-size: 18px;
                 color: var(--title-color);
                 font-family: var(--body-font)
             }

             .widget_shopping_cart .total strong {
                 font-family: var(--title-font)
             }

             .widget_shopping_cart .amount {
                 padding-left: 5px
             }

             .sidebar-area .widget_shopping_cart .th-btn {
                 padding: 8px 22px;
                 font-size: 14px
             }

             @media (min-width: 1200px) {
                 .sidebar-shop .widget {
                     padding: 30px
                 }
             }

             @media (min-width: 992px) {
                 .sidebar-shop .widget {
                     margin-bottom: 24px
                 }
             }

             @media (max-width: 1199px) {
                 .widget {
                     --widget-padding-y: 30px;
                     --widget-padding-x: 30px
                 }

                 .widget_title {
                     font-size: 22px;
                     margin: -0.12em 0 24px 0
                 }

                 .author-widget-wrap .name {
                     font-size: 22px
                 }
             }

             @media (max-width: 991px) {
                 .sidebar-area {
                     padding-top: 30px
                 }

                 .widget {
                     --widget-padding-y: 40px;
                     --widget-padding-x: 40px
                 }

                 .wp-block-tag-cloud a,
                 .tagcloud a {
                     padding: 10.5px 18px
                 }
             }

             @media (max-width: 767px) {
                 .widget {
                     padding: 35px 20px
                 }
             }

             @media (max-width: 330px) {
                 .recent-post .post-title {
                     font-size: 14px;
                     line-height: 24px
                 }

                 .recent-post .recent-post-meta a {
                     font-size: 12px
                 }
             }

             .footer-widget {
                 margin-bottom: 50px
             }

             .footer-widget,
             .footer-widget .widget {
                 padding: 0;
                 border: none;
                 padding-bottom: 0;
                 background-color: transparent;
                 box-shadow: none
             }

             .footer-widget .form-group>i {
                 color: var(--theme-color);
                 top: 18px
             }

             .footer-widget .sidebar-gallery {
                 max-width: 287px
             }

             .footer-widget .widget_title {
                 color: var(--title-color);
                 margin: -0.12em 0 35px 0;
                 padding: 0 0 17px 0
             }

             .footer-widget .widget_title:before,
             .footer-widget .widget_title:after {
                 content: '';
                 position: absolute;
                 left: 0;
                 bottom: 0;
                 width: 61px;
                 height: 2px;
                 background: var(--theme-color)
             }

             .footer-widget .widget_title:after {
                 width: 16px;
                 border: 2px solid var(--smoke-color3);
                 height: 10px;
                 background: transparent;
                 bottom: -3px;
                 left: 40px;
                 -webkit-animation: footerLine 7s linear infinite;
                 animation: footerLine 7s linear infinite
             }

             .footer-widget.widget_meta ul,
             .footer-widget.widget_pages ul,
             .footer-widget.widget_archive ul,
             .footer-widget.widget_categories ul,
             .footer-widget.widget_nav_menu ul {
                 margin-top: -5px
             }

             .footer-widget.widget_meta .menu,
             .footer-widget.widget_meta>ul,
             .footer-widget.widget_pages .menu,
             .footer-widget.widget_pages>ul,
             .footer-widget.widget_archive .menu,
             .footer-widget.widget_archive>ul,
             .footer-widget.widget_categories .menu,
             .footer-widget.widget_categories>ul,
             .footer-widget.widget_nav_menu .menu,
             .footer-widget.widget_nav_menu>ul {
                 margin-bottom: -5px
             }

             .footer-widget.widget_meta a,
             .footer-widget.widget_pages a,
             .footer-widget.widget_archive a,
             .footer-widget.widget_categories a,
             .footer-widget.widget_nav_menu a {
                 font-size: 16px;
                 font-weight: 400;
                 padding: 0px;
                 /* margin-bottom: 21px; */
                 font-family: var(--body-font);
                 display: block;
                 max-width: 100%;
                 width: -webkit-max-content;
                 width: -moz-max-content;
                 width: max-content;
                 background-color: transparent;
                 border: none;
                 position: relative
             }

             .footer-widget.widget_meta a:before,
             .footer-widget.widget_pages a:before,
             .footer-widget.widget_archive a:before,
             .footer-widget.widget_categories a:before,
             .footer-widget.widget_nav_menu a:before {
                 display: none
             }

             .footer-widget.widget_meta a:hover,
             .footer-widget.widget_pages a:hover,
             .footer-widget.widget_archive a:hover,
             .footer-widget.widget_categories a:hover,
             .footer-widget.widget_nav_menu a:hover {
                 background-color: transparent;
                 color: var(--theme-color)
             }

             .footer-widget.widget_meta li>span,
             .footer-widget.widget_pages li>span,
             .footer-widget.widget_archive li>span,
             .footer-widget.widget_categories li>span,
             .footer-widget.widget_nav_menu li>span {
                 width: auto;
                 height: auto;
                 position: relative;
                 background-color: transparent;
                 color: var(--body-color);
                 line-height: 1
             }

             .footer-widget.widget_meta li:last-child a,
             .footer-widget.widget_pages li:last-child a,
             .footer-widget.widget_archive li:last-child a,
             .footer-widget.widget_categories li:last-child a,
             .footer-widget.widget_nav_menu li:last-child a {
                 margin-bottom: 0
             }

             .footer-widget .recent-post {
                 margin-top: -0.3em;
                 margin-bottom: 28px
             }

             .footer-widget .recent-post:last-child {
                 margin-bottom: 0;
                 padding-bottom: 0;
                 border-bottom: 0
             }

             .footer-widget .recent-post .recent-post-meta a {
                 font-weight: 400;
                 line-height: 1.2
             }

             .footer-widget .recent-post .recent-post-meta i {
                 color: var(--theme-color)
             }

             .footer-widget .recent-post .recent-post-meta a:hover i {
                 color: var(--theme-color)
             }

             .th-widget-about .about-logo {
                 margin-bottom: 35px
             }

             .th-widget-about .about-text {
                 margin-bottom: 25px;
                 margin-top: -0.5em
             }

             .footer-text {
                 margin-top: -0.46em;
                 margin-bottom: 25px
             }

             .social-box {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-flex-wrap: wrap;
                 -ms-flex-wrap: wrap;
                 flex-wrap: wrap;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center
             }

             .social-box .social-title {
                 font-size: 20px;
                 color: var(--white-color);
                 font-weight: 600;
                 margin-right: 20px;
                 margin-bottom: 0
             }

             .icon-group a {
                 color: var(--white-color);
                 font-size: 18px;
                 margin-right: 17px
             }

             .icon-group a:last-child {
                 margin-right: 0
             }

             .newsletter-widget {
                 max-width: 290px
             }

             .newsletter-widget .form-control {
                 background-color: var(--white-color) !important;
                 border: 1px solid var(--th-border-color)
             }

             @media (max-width: 1199px) {

                 .footer-widget.widget_meta a,
                 .footer-widget.widget_pages a,
                 .footer-widget.widget_archive a,
                 .footer-widget.widget_categories a,
                 .footer-widget.widget_nav_menu a {
                     margin-bottom: 16px
                 }
             }

             @media (max-width: 767px) {
                 .footer-widget .widget_title {
                     margin-bottom: 35px
                 }

                 .th-widget-about .about-text {
                     margin-bottom: 20px
                 }

                 .social-box.mb-30 {
                     margin-bottom: 25px
                 }
             }

             .th-header {
                 position: relative;
                 z-index: 41
             }

             .header-absolute {
                 position: absolute;
                 top: 0;
                 left: 0;
                 width: 100%
             }

             .sticky-wrapper {
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out
             }

             .sticky-wrapper.sticky {
                 position: fixed;
                 top: 0;
                 right: 0;
                 left: 0;
                 background-color: var(--white-color);
                 box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
                 -webkit-animation: stickyAni 0.4s ease-in-out;
                 animation: stickyAni 0.4s ease-in-out
             }

             @-webkit-keyframes stickyAni {
                 0% {
                     -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
                     transform: translate3d(0, -40px, 0) scaleY(0.8);
                     opacity: 0.7
                 }

                 100% {
                     -webkit-transform: translate3d(0, 0, 0) scaleY(1);
                     transform: translate3d(0, 0, 0) scaleY(1);
                     opacity: 1
                 }
             }

             @keyframes stickyAni {
                 0% {
                     -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
                     transform: translate3d(0, -40px, 0) scaleY(0.8);
                     opacity: 0.7
                 }

                 100% {
                     -webkit-transform: translate3d(0, 0, 0) scaleY(1);
                     transform: translate3d(0, 0, 0) scaleY(1);
                     opacity: 1
                 }
             }

             .main-menu a {
                 display: block;
                 position: relative;
                 font-weight: 500;
                 font-size: 16px;
                 color: var(--title-color);
                 font-family: var(--body-font);
                 text-transform: capitalize
             }

             .main-menu a:hover {
                 color: var(--theme-color)
             }

             .main-menu>ul>li {
                 margin: 0 14px
             }

             .main-menu>ul>li>a {
                 padding: 47px 0
             }

             .main-menu>ul>li>a:hover {
                 color: var(--theme-color)
             }

             .main-menu ul {
                 margin: 0;
                 padding: 0
             }

             .main-menu ul li {
                 list-style-type: none;
                 display: inline-block;
                 position: relative
             }

             .main-menu ul li.menu-item-has-children>a:after {
                 content: "\f078";
                 position: relative;
                 font-family: var(--icon-font);
                 margin-left: 4px;
                 font-weight: 600;
                 top: 0;
                 font-size: 14px
             }

             .main-menu ul li:last-child {
                 margin-right: 0 !important
             }

             .main-menu ul li:first-child {
                 margin-left: 0 !important
             }

             .main-menu ul li:hover>ul.sub-menu {
                 visibility: visible;
                 opacity: 1;
                 -webkit-transform: scaleY(1);
                 -ms-transform: scaleY(1);
                 transform: scaleY(1);
                 z-index: 9
             }

             .main-menu ul li:hover ul.mega-menu {
                 visibility: visible;
                 opacity: 1;
                 z-index: 9;
                 -webkit-transform: scaleY(1) translateX(-50%);
                 -ms-transform: scaleY(1) translateX(-50%);
                 transform: scaleY(1) translateX(-50%)
             }

             .main-menu ul.sub-menu,
             .main-menu ul.mega-menu {
                 position: absolute;
                 text-align: left;
                 top: 100%;
                 left: 0;
                 background-color: var(--white-color);
                 visibility: hidden;
                 min-width: 190px;
                 width: -webkit-max-content;
                 width: -moz-max-content;
                 width: max-content;
                 padding: 7px;
                 left: -14px;
                 opacity: 0;
                 z-index: -1;
                 border-top: 3px solid var(--theme-color);
                 box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
                 border-radius: 0;
                 -webkit-transform: scaleY(0);
                 -ms-transform: scaleY(0);
                 transform: scaleY(0);
                 -webkit-transform-origin: top center;
                 -ms-transform-origin: top center;
                 transform-origin: top center;
                 -webkit-transition: all 0.4s ease 0s;
                 transition: all 0.4s ease 0s
             }

             .main-menu ul.sub-menu a,
             .main-menu ul.mega-menu a {
                 font-size: 16px;
                 line-height: 30px
             }

             .main-menu ul.sub-menu {
                 padding: 18px 20px 18px 18px;
                 left: -27px
             }

             .main-menu ul.sub-menu li {
                 display: block;
                 margin: 0 0;
                 padding: 0px 9px
             }

             .main-menu ul.sub-menu li.menu-item-has-children>a:after {
                 content: "\f105";
                 float: right;
                 top: 1px
             }

             .main-menu ul.sub-menu li a {
                 position: relative;
                 padding-left: 23px;
                 text-transform: capitalize
             }

             .main-menu ul.sub-menu li a:before {
                 content: "\f649";
                 position: absolute;
                 top: 8px;
                 left: 0;
                 font-family: var(--icon-font);
                 width: 11px;
                 height: 11px;
                 text-align: center;
                 border-radius: 50%;
                 display: inline-block;
                 font-size: 0.9em;
                 line-height: 1;
                 color: var(--theme-color);
                 font-weight: 500
             }

             .main-menu ul.sub-menu li ul.sub-menu {
                 left: 100%;
                 right: auto;
                 top: 0;
                 margin: 0 0;
                 margin-left: 20px
             }

             .main-menu ul.sub-menu li ul.sub-menu li ul {
                 left: 100%;
                 right: auto
             }

             .main-menu .mega-menu-wrap {
                 position: static
             }

             .main-menu ul.mega-menu {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between;
                 text-align: left;
                 width: 100%;
                 max-width: var(--main-container);
                 padding: 20px 15px 23px 15px;
                 left: 50%;
                 -webkit-transform: scaleY(0) translateX(-50%);
                 -ms-transform: scaleY(0) translateX(-50%);
                 transform: scaleY(0) translateX(-50%)
             }

             .main-menu ul.mega-menu li {
                 display: block;
                 width: 100%;
                 padding: 0 15px
             }

             .main-menu ul.mega-menu li li {
                 padding: 2px 0
             }

             .main-menu ul.mega-menu li a {
                 display: inline-block;
                 text-transform: capitalize
             }

             .main-menu ul.mega-menu>li>a {
                 display: block;
                 padding: 0;
                 padding-bottom: 15px;
                 margin-bottom: 10px;
                 text-transform: capitalize;
                 letter-spacing: 1px;
                 font-weight: 700;
                 color: var(--title-color);
                 border-color: var(--theme-color)
             }

             .main-menu ul.mega-menu>li>a::after,
             .main-menu ul.mega-menu>li>a::before {
                 content: "";
                 position: absolute;
                 bottom: 0;
                 left: 0;
                 width: 15px;
                 height: 1px;
                 background-color: var(--theme-color)
             }

             .main-menu ul.mega-menu>li>a::after {
                 width: calc(100% - 20px);
                 left: 20px
             }

             .main-menu ul.mega-menu>li>a:hover {
                 padding-left: 0
             }

             .main-menu.style2>ul>li {
                 margin: 0
             }

             .main-menu.style2>ul>li>a {
                 position: relative;
                 padding: 2px 16px;
                 border-radius: 100px;
                 background-color: transparent;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .main-menu.style2>ul>li>a:before {
                 content: "";
                 position: absolute;
                 inset: 0;
                 border-radius: 100px;
                 -webkit-transform: scale(0);
                 -ms-transform: scale(0);
                 transform: scale(0);
                 background-color: transparent;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .main-menu.style2>ul>li>a:hover:before {
                 background-color: var(--theme-color);
                 opacity: 0.1;
                 -webkit-transform: scale(1);
                 -ms-transform: scale(1);
                 transform: scale(1)
             }

             .main-menu.style2 ul.sub-menu {
                 padding: 18px 20px 18px 18px;
                 left: -27px;
                 margin-top: 15px
             }

             .header-button {
                 height: 100%;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 gap: 10px
             }

             .header-button .icon-btn {
                 position: relative
             }

             .header-button .icon-btn:hover {
                 color: var(--white-color);
                 background-color: var(--theme-color);
                 border-color: var(--theme-color)
             }

             .header-button .icon-btn:hover .badge {
                 background-color: var(--white-color);
                 color: var(--theme-color)
             }

             .header-links ul {
                 margin: 0;
                 padding: 0;
                 list-style-type: none
             }

             .header-links li {
                 display: inline-block;
                 position: relative;
                 font-size: 16px;
                 font-weight: 400
             }

             .header-links li:not(:last-child) {
                 margin: 0 26px 0 0
             }

             .header-links li>i {
                 margin-right: 6px
             }

             .header-links li,
             .header-links span,
             .header-links p,
             .header-links a {
                 color: var(--body-color)
             }

             .header-links a:hover {
                 color: var(--theme-color)
             }

             .header-links i {
                 color: var(--body-color)
             }

             .header-links b,
             .header-links strong {
                 font-weight: 600
             }

             .header-social .social-title {
                 font-weight: 500;
                 font-size: 16px;
                 display: inline-block;
                 margin: 0 15px 0 0;
                 color: var(--body-color)
             }

             .header-social a {
                 font-size: 16px;
                 display: inline-block;
                 color: var(--body-color);
                 margin: 0 15px 0 0
             }

             .header-social a:last-child {
                 margin-right: 0
             }

             .header-social a:hover {
                 color: var(--theme-color)
             }

             .header-logo {
                 /* padding-top: 15px; */
                 /* padding-bottom: 15px; */
             }

             @media (max-width: 575px) {
                 .header-logo {
                     max-width: 150px
                 }

                 .header-logo .icon-masking .mask-icon {
                     -webkit-mask-size: cover;
                     mask-size: cover
                 }
             }

             @media (max-width: 1199px) {
                 .main-menu>ul>li>a {
                     padding: 37px 0
                 }
             }

             .header-button .th-btn {
                 min-width: 160px
             }

             @media (max-width: 1199px) {
                 .header-button .th-btn {
                     display: none
                 }
             }

             .default-header .menu-area {
                 position: relative;
                 z-index: 2;
                 background-color: var(--white-color);
                 padding: 15px 0
             }

             .default-header .header-logo {
                 position: relative;
                 z-index: 2
             }

             .header-layout1 .menu-area {
                 position: relative;
                 z-index: 2;
                 padding: 15px 0;
                 border-bottom: 2px solid var(--white-color)
             }

             .header-layout1 .header-logo {
                 position: relative;
                 z-index: 2
             }

             .header-layout2 .menu-area {
                 position: relative;
                 z-index: 2;
                 padding: 6px 0;
                 border-bottom: 2px solid var(--white-color)
             }

             .header-layout2 .header-logo {
                 position: relative;
                 z-index: 2
             }

             .header-layout3 .menu-area {
                 position: relative;
                 z-index: 2;
                 padding: 14px 0;
                 border: 1px solid var(--smoke-color)
             }

             .header-layout4.header-absolute {
                 top: 30px
             }

             .header-layout4 .sticky-wrapper.sticky {
                 background-color: transparent
             }

             .header-layout4 .sticky-wrapper.sticky .menu-area {
                 max-width: 100%;
                 border-radius: 0;
                 background-color: #022124
             }

             .header-layout4 .menu-area {
                 max-width: 1620px;
                 display: block;
                 margin: auto;
                 background: rgba(255, 255, 255, 0.08);
                 -webkit-backdrop-filter: blur(24.9px);
                 backdrop-filter: blur(24.9px);
                 border-radius: 50px;
                 padding: 15px 23px 15px 30px
             }

             @media (max-width: 375px) {
                 .header-layout4 .menu-area {
                     padding: 16px 15px
                 }
             }

             .header-layout4 .main-menu.style2>ul>li {
                 margin: 0 4px
             }

             .header-layout4 .main-menu.style2>ul>li>a {
                 color: var(--white-color)
             }

             .header-layout4 .main-menu.style2>ul>li>a:hover:before {
                 background-color: var(--white-color);
                 opacity: 0.1
             }

             .header-layout4 .header-button .icon-btn {
                 --btn-size: 55px;
                 color: var(--white-color);
                 border-color: var(--white-color)
             }

             .header-layout4 .header-button .icon-btn:hover {
                 border-color: var(--theme-color)
             }

             .header-layout5 .sticky-wrapper.sticky .menu-area {
                 padding: 15px 0
             }

             .header-layout5 .sticky-wrapper.sticky .menu-area .th-btn:hover {
                 color: var(--white-color)
             }

             .header-layout5 .sticky-wrapper.sticky .menu-area .th-btn:hover:before,
             .header-layout5 .sticky-wrapper.sticky .menu-area .th-btn:hover:after {
                 background-color: var(--title-color)
             }

             .header-layout5 .sticky-wrapper.sticky .header-button .icon-btn {
                 color: var(--title-color);
                 border: 1px solid var(--title-color)
             }

             .header-layout5 .sticky-wrapper.sticky .header-button .icon-btn:hover {
                 border-color: var(--title-color);
                 color: var(--white-color)
             }

             .header-layout5 .menu-area {
                 padding: 44px 0
             }

             @media (max-width: 1699px) {
                 .header-layout5 .menu-area {
                     padding: 15px 0
                 }
             }

             .header-layout5 .main-menu>ul>li>a:hover {
                 color: var(--title-color)
             }

             .header-layout5 .main-menu.style2>ul>li>a:hover:before {
                 background-color: var(--title-color);
                 opacity: 0.1
             }

             .header-layout5 .header-button .icon-btn {
                 color: var(--white-color);
                 border: 1px solid var(--white-color)
             }

             .header-layout5 .header-button .icon-btn:hover {
                 background-color: var(--title-color);
                 border-color: var(--title-color);
                 color: var(--white-color)
             }

             .header-layout6 .sticky-wrapper.sticky {
                 background-color: var(--title-color)
             }

             .header-layout6 .sticky-wrapper.sticky .menu-area {
                 padding: 15px 0
             }

             .header-layout6 .menu-area {
                 padding: 44px 0
             }

             @media (max-width: 1699px) {
                 .header-layout6 .menu-area {
                     padding: 15px 0
                 }
             }

             .header-layout6 .main-menu>ul>li>a:hover {
                 color: var(--title-color)
             }

             .header-layout6 .main-menu.style2>ul>li>a {
                 color: var(--white-color)
             }

             .header-layout6 .main-menu.style2>ul>li>a:hover:before {
                 background-color: var(--white-color);
                 opacity: 0.1
             }

             .header-layout6 .header-button .icon-btn {
                 color: var(--white-color);
                 border: 1px solid var(--white-color)
             }

             .header-layout6 .header-button .icon-btn:hover {
                 border-color: var(--theme-color)
             }

             .header-layout7 {
                 padding: 20px 0;
                 z-index: 10
             }

             @media (max-width: 1199px) {
                 .header-layout7 {
                     padding: 10px 0
                 }
             }

             .header-layout7 .menu-area {
                 position: relative;
                 z-index: 3;
                 padding: 5px 13px 5px 20px;
                 border-radius: 50px
             }

             .header-layout7 .menu-area:before {
                 content: "";
                 position: absolute;
                 inset: 0;
                 background-image: url("../img/shape/header-border.png");
                 background-repeat: no-repeat;
                 max-width: 1620px;
                 background-size: 100% 100%;
                 display: block;
                 margin: auto
             }

             @media (max-width: 1600px) {
                 .header-layout7 .menu-area:before {
                     max-width: 100%
                 }
             }

             @media (max-width: 1199px) {
                 .header-layout7 .menu-area:before {
                     display: none
                 }
             }

             .header-layout7 .menu-area:after {
                 content: "";
                 position: absolute;
                 top: 0;
                 right: -1px;
                 width: 38%;
                 height: 80px;
                 background-color: var(--title-color);
                 z-index: 1;
                 border-radius: 0 50px 50px 0px;
                 -webkit-clip-path: path("M575 0H156.354C146.771 0 137.506 3.44058 130.246 9.69565L125.25 14L120.254 9.69565C112.994 3.44058 103.729 0 94.1455 0H29.7031L0.550781 80H94.1455C103.729 80 112.994 76.5594 120.254 70.3044L125.25 66L130.246 70.3043C137.506 76.5594 146.771 80 156.355 80H575C597.091 80 615 62.0914 615 40C615 17.9086 597.091 0 575 0Z");
                 clip-path: path("M575 0H156.354C146.771 0 137.506 3.44058 130.246 9.69565L125.25 14L120.254 9.69565C112.994 3.44058 103.729 0 94.1455 0H29.7031L0.550781 80H94.1455C103.729 80 112.994 76.5594 120.254 70.3044L125.25 66L130.246 70.3043C137.506 76.5594 146.771 80 156.355 80H575C597.091 80 615 62.0914 615 40C615 17.9086 597.091 0 575 0Z")
             }

             @media (max-width: 1699px) {
                 .header-layout7 .menu-area:after {
                     width: 36.8%
                 }
             }

             @media (max-width: 1500px) {
                 .header-layout7 .menu-area:after {
                     display: none
                 }
             }

             .header-layout7 .main-menu {
                 position: relative;
                 padding-left: 80px;
                 z-index: 4
             }

             @media (max-width: 1199px) {
                 .header-layout7 .main-menu {
                     padding-left: 0
                 }
             }

             .header-layout7 .main-menu ul.sub-menu {
                 padding: 18px 20px 18px 18px;
                 left: -27px;
                 margin-top: 25px
             }

             .header-layout7 .main-menu.style2>ul li.menu-item-has-children:last-child a {
                 color: var(--white-color)
             }

             @media (max-width: 1500px) {
                 .header-layout7 .main-menu.style2>ul li.menu-item-has-children:last-child a {
                     color: var(--title-color)
                 }
             }

             .header-layout7 .main-menu.style2>ul li .sub-menu li a {
                 color: var(--title-color) !important
             }

             .header-layout7 .main-menu.style2>ul>li>a:hover {
                 color: var(--title-color)
             }

             .header-layout7 .main-menu.style2>ul>li>a:hover:before {
                 background-color: var(--title-color);
                 opacity: 0.1
             }

             .header-layout7 .th-btn {
                 color: var(--white-color)
             }

             .header-layout7 .th-btn:hover {
                 color: var(--title-color)
             }

             @media (max-width: 1299px) {
                 .header-layout7 .th-btn {
                     display: none
                 }
             }

             .header-layout7 .icon-btn {
                 color: var(--white-color);
                 border: 1px solid var(--white-color);
                 z-index: 3
             }

             @media (max-width: 1500px) {
                 .header-layout7 .icon-btn {
                     border-color: var(--body-color);
                     color: var(--body-color)
                 }
             }

             .header-layout8 .menu-area {
                 border-bottom: none
             }

             .header-layout8 .menu-area .header-button .icon-btn {
                 border: 1px solid var(--white-color)
             }

             .header-layout8 .menu-area .header-button .icon-btn:hover {
                 border-color: var(--theme-color)
             }

             .footer-wrapper {
                 --border-color: rgba(255, 255, 255, 0.3);
                 position: relative;
                 z-index: 2;
                 overflow: hidden
             }

             .widget-area {
                 padding-top: var(--section-space);
                 padding-bottom: 30px
             }

             .copyright-wrap {
                 border-top: 2px solid var(--white-color);
                 padding: 25px 0;
                 background-size: 100% auto
             }

             .copyright-text {
                 margin: 0
             }

             .copyright-text a {
                 color: var(--theme-color)
             }

             .copyright-text a:hover {
                 color: var(--title-color)
             }

             .footer-text2 {
                 font-size: 18px;
                 margin-bottom: -0.4rem
             }

             .th-widget-contact {
                 max-width: 221px
             }

             .th-widget-contact .info-box {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 15px
             }

             .th-widget-contact .info-box .box-icon {
                 min-width: 16px
             }

             .th-widget-contact .info-box .box-link {
                 color: var(--body-color)
             }

             .th-widget-contact .info-box .box-link:hover {
                 color: var(--theme-color)
             }

             .footer-top {
                 border-bottom: 1px solid #D0D3DA;
                 padding: 80px 0
             }

             @media (max-width: 1199px) {
                 .footer-newsletter-content {
                     text-align: center;
                     margin-bottom: 25px
                 }
             }

             @media (max-width: 991px) {
                 .footer-wrapper .widget-area {
                     padding-top: var(--section-space-mobile);
                     padding-bottom: 30px
                 }

                 .footer-contact-wrap {
                     grid-template-columns: auto auto;
                     gap: 30px
                 }

                 .copyright-text {
                     text-align: center
                 }
             }

             .default-footer .widget-area {
                 padding-top: 80px
             }

             .footer-layout1 {
                 background-color: #EFF1F9
             }

             .footer-layout2 {
                 background-color: transparent
             }

             .footer-layout2 .widget-area {
                 padding-top: 80px
             }

             .footer-layout2 .footer-area {
                 border-radius: 30px;
                 width: 1760px;
                 max-width: 100%;
                 margin: 0px auto 0;
                 position: relative;
                 z-index: 1019;
                 -webkit-transition: border-radius .2s, width 350ms ease;
                 transition: border-radius .2s, width 350ms ease
             }

             @media (max-width: 1500px) {
                 .footer-layout2 .footer-area {
                     border-radius: 0
                 }
             }

             .footer-layout2 .th-screen.th-visible {
                 border-radius: 0;
                 width: 100%
             }

             .footer-layout2 .copyright-wrap {
                 position: relative;
                 border: none;
                 padding: 32px 0;
                 background-size: 100% auto;
                 background-color: #080020;
                 z-index: 2
             }

             .footer-layout2 .copyright-wrap:before {
                 content: "";
                 position: absolute;
                 bottom: 0%;
                 left: 0;
                 width: 100%;
                 height: 328px;
                 background-color: #080020;
                 z-index: -1
             }

             .footer-layout2 .copyright-wrap .copyright-text {
                 color: var(--white-color)
             }

             .footer-layout2 .th-circle .circle {
                 position: absolute;
                 width: 20px;
                 height: 20px;
                 display: block;
                 background-color: var(--theme-color);
                 border-radius: 50%
             }

             .footer-layout2 .th-circle .circle.style1 {
                 left: 4%;
                 bottom: 14%;
                 -webkit-animation: zoom1 3s infinite ease-in-out;
                 animation: zoom1 3s infinite ease-in-out;
                 -webkit-transition-delay: 2s;
                 transition-delay: 2s
             }

             @media (max-width: 1199px) {
                 .footer-layout2 .th-circle .circle.style1 {
                     display: none
                 }
             }

             .footer-layout2 .th-circle .circle.style2 {
                 width: 16px;
                 height: 16px;
                 top: 25%;
                 right: 10%;
                 background-color: #17D2D4;
                 -webkit-animation: fadeLeftRight 10s linear infinite;
                 animation: fadeLeftRight 10s linear infinite
             }

             .footer-layout2 .th-circle .circle.style3 {
                 width: 10px;
                 height: 10px;
                 top: 29%;
                 left: 40%;
                 -webkit-animation: fadeLeftRight 10s linear infinite;
                 animation: fadeLeftRight 10s linear infinite
             }

             @media (max-width: 575px) {
                 .footer-layout2 .th-circle .circle.style3 {
                     display: none
                 }
             }

             .footer-layout3 {
                 background-color: #FFECEF
             }

             .footer-layout3 .footer-widget .widget_title:after {
                 border: 2px solid #FFECEF
             }

             .footer-layout3 .copyright-wrap {
                 position: relative;
                 border: none;
                 padding: 25px 0;
                 background-color: #080020;
                 z-index: 2
             }

             .footer-layout3 .copyright-wrap .copyright-text {
                 color: var(--white-color)
             }

             .footer-layout4 {
                 background-color: #022124;
                 --body-color: #7A8392
             }

             .footer-layout4 .widget-area {
                 padding-bottom: 70px
             }

             .footer-layout4 .footer-widget .widget_title {
                 color: var(--white-color)
             }

             .footer-layout4 .footer-widget .widget_title:after {
                 border: 2px solid #022124
             }

             .footer-layout4 .copyright-wrap {
                 border-top: none;
                 padding: 25px 0;
                 background-color: #000010
             }

             .footer-layout4 .copyright-wrap .copyright-text {
                 color: var(--white-color)
             }

             .footer-layout4 .copyright-wrap .copyright-text a:hover {
                 color: inherit
             }

             .footer-layout5 {
                 background-color: #F5F8F3
             }

             .footer-layout5 .icon-masking .mask-icon {
                 mix-blend-mode: color
             }

             .footer-layout5 .footer-text {
                 font-weight: 400;
                 font-size: 18px;
                 line-height: 28px;
                 color: #5C6574;
                 margin-bottom: -0.3rem
             }

             .footer-layout5 .widget-area {
                 background: #F5F8F3;
                 border: 1px solid #1F1F1F;
                 border-radius: 40px;
                 padding: 60px 60px 10px;
                 margin-bottom: 60px
             }

             @media (max-width: 767px) {
                 .footer-layout5 .widget-area {
                     padding: 60px 40px 10px
                 }
             }

             .footer-layout5 .widget-area .th-widget-about {
                 position: relative;
                 padding-right: 80px
             }

             @media (max-width: 767px) {
                 .footer-layout5 .widget-area .th-widget-about {
                     padding-right: 0
                 }
             }

             .footer-layout5 .widget-area .th-widget-about:before {
                 content: "";
                 position: absolute;
                 top: -60px;
                 right: 0;
                 min-height: 354px;
                 width: 1px;
                 background-color: var(--title-color)
             }

             @media (max-width: 1299px) {
                 .footer-layout5 .widget-area .th-widget-about:before {
                     min-height: 365px
                 }
             }

             @media (max-width: 1199px) {
                 .footer-layout5 .widget-area .th-widget-about:before {
                     display: none
                 }
             }

             .footer-layout5 .widget-area .footer-widget .widget_title:after {
                 border: 2px solid #F5F8F3
             }

             .footer-layout5 .widget-area .footer-widget.widget_nav_menu a {
                 margin-bottom: 16.7px
             }

             .footer-layout5 .copyright-wrap {
                 border: none;
                 background-color: #000010;
                 padding: 21px 0
             }

             .footer-layout5 .copyright-wrap .copyright-text {
                 color: var(--white-color)
             }

             .footer-layout5 .copyright-wrap .copyright-text a:hover {
                 color: var(--white-color)
             }

             .footer-layout6 {
                 --body-color: #7A8392
             }

             .footer-layout6 .footer-widget .widget_title {
                 color: var(--white-color)
             }

             .footer-layout6 .footer-widget .widget_title:after {
                 width: 16px;
                 border: 2px solid var(--black-color2)
             }

             .footer-layout6 .th-social a {
                 background: #1F1F1F;
                 color: var(--white-color);
                 box-shadow: 0px 9px 20px rgba(0, 0, 0, 0.06)
             }

             .footer-layout6 .th-social a:hover {
                 background: var(--theme-color)
             }

             .footer-layout6 .copyright-text a:hover {
                 color: var(--white-color)
             }

             @media (max-width: 991px) {
                 .footer-layout7 {
                     background-image: none !important
                 }
             }

             .footer-layout7 .footer-widget .widget_title:after {
                 border: 2px solid var(--smoke-color2)
             }

             .footer-layout7 .widget-area {
                 padding-top: 100px
             }

             .footer-layout7 .copyright-wrap {
                 background-color: #E8E8E8;
                 max-width: 1400px;
                 display: block;
                 margin: auto auto 62px auto;
                 padding: 40px;
                 border: none;
                 border-radius: 30px
             }

             @media (max-width: 575px) {
                 .footer-layout7 .copyright-wrap {
                     margin-bottom: 30px
                 }
             }

             .footer-layout7 .footer-logo {
                 margin-bottom: 12px
             }

             @media (max-width: 991px) {
                 .footer-layout7 .footer-logo {
                     text-align: center
                 }
             }

             .footer-layout7 .box-title {
                 font-size: 18px;
                 font-weight: 500
             }

             .footer-layout7 .footer-newsletter {
                 max-width: 580px;
                 margin-left: auto;
                 display: block
             }

             @media (max-width: 991px) {
                 .footer-layout7 .footer-newsletter {
                     max-width: 100%;
                     margin: auto
                 }
             }

             .footer-layout7 .footer-newsletter-content {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between
             }

             @media (max-width: 991px) {
                 .footer-layout7 .footer-newsletter-content {
                     display: block;
                     margin-top: 20px
                 }
             }

             .footer-layout7 .newsletter-form .form-control {
                 min-height: 50px
             }

             .footer-layout7 .newsletter-form .th-btn {
                 min-width: 130px;
                 padding: 13px 23.5px;
                 border-radius: 100px;
                 position: absolute;
                 top: 4px;
                 right: 4px;
                 text-transform: capitalize
             }

             @media (max-width: 767px) {
                 .footer-layout7 .newsletter-form .th-btn {
                     position: relative;
                     margin-top: 10px
                 }
             }

             .footer-layout7 .social-links a {
                 font-size: 14px;
                 color: var(--body-color);
                 margin-right: 15px
             }

             .footer-layout8 .footer-text2 {
                 color: #5C6574
             }

             .footer-layout8 .newsletter-form.style2 .th-btn {
                 color: var(--white-color)
             }

             .footer-layout8 .newsletter-form.style2 .th-btn:hover {
                 color: var(--title-color)
             }

             .footer-layout8 .footer-top {
                 border-bottom: 1px solid rgba(208, 211, 218, 0.1)
             }

             .footer-layout8 .footer-widget .widget_title {
                 color: var(--white-color)
             }

             .footer-layout8 .footer-widget .widget_title:after {
                 border: 2px solid #0A0A0A
             }

             .footer-layout8 .copyright-wrap {
                 border-top: 2px solid rgba(255, 255, 255, 0.1)
             }

             .footer-layout8 .copyright-text a:hover {
                 color: var(--white-color)
             }

             .breadcumb-menu {
                 max-width: 100%;
                 padding: 0;
                 margin: 20px 0 -0.5em 0;
                 list-style-type: none;
                 position: relative
             }

             .breadcumb-menu li {
                 display: inline-block;
                 margin-right: 3px;
                 padding-right: 5px;
                 list-style: none;
                 position: relative
             }

             .breadcumb-menu li:after {
                 content: "\f061";
                 position: relative;
                 margin-left: 10px;
                 font-weight: 500;
                 font-size: 15px;
                 color: var(--white-color);
                 font-family: var(--icon-font)
             }

             .breadcumb-menu li:last-child {
                 padding-right: 0;
                 margin-right: 0
             }

             .breadcumb-menu li:last-child:after {
                 display: none
             }

             .breadcumb-menu li,
             .breadcumb-menu a,
             .breadcumb-menu span {
                 white-space: normal;
                 color: inherit;
                 word-break: break-word;
                 font-family: var(--title-font);
                 font-weight: 500;
                 font-size: 16px;
                 color: var(--white-color)
             }

             .breadcumb-title {
                 color: var(--white-color);
                 font-size: 40px;
                 font-weight: 600;
                 margin: -0.13em 0 -0.14em 0;
                 line-height: 1.1
             }

             @media (max-width: 1299px) {
                 .breadcumb-title {
                     font-size: 40px;
                 }
             }

             .breadcumb-wrapper {
                 background-color: var(--title-color);
                 padding: 70px 0;
                 overflow: hidden;
                 text-align: center
             }

             @media (max-width: 1199px) {
                 .breadcumb-wrapper {
                     padding: 140px 0
                 }

                 .breadcumb-title {
                     font-size: 54px
                 }

                 .breadcumb-menu {
                     margin: 20px 0 -0.5em 0
                 }

                 .breadcumb-menu li,
                 .breadcumb-menu a,
                 .breadcumb-menu span {
                     font-size: 16px
                 }
             }

             @media (max-width: 991px) {
                 .breadcumb-wrapper {
                     padding: 120px 0
                 }

                 .breadcumb-title {
                     font-size: 44px
                 }
             }

             @media (max-width: 767px) {
                 .breadcumb-wrapper {
                     padding: 100px 0
                 }
             }

             @media (max-width: 575px) {
                 .breadcumb-title {
                     font-size: 32px
                 }
             }

             .th-pagination {
                 margin-bottom: 30px
             }

             .th-pagination ul {
                 margin: 0;
                 padding: 0
             }

             .th-pagination li {
                 display: inline-block;
                 margin: 0 3px;
                 list-style-type: none
             }

             .th-pagination li:last-child {
                 margin-right: 0
             }

             .th-pagination li:first-child {
                 margin-left: 0
             }

             .th-pagination span,
             .th-pagination a {
                 display: inline-block;
                 text-align: center;
                 position: relative;
                 border: none;
                 color: var(--theme-color);
                 background-color: var(--smoke-color2);
                 border: 1px solid var(--smoke-color);
                 width: 50px;
                 height: 50px;
                 line-height: 50px;
                 z-index: 1;
                 font-size: 18px;
                 font-weight: 500;
                 border-radius: 50%
             }

             .th-pagination span.active,
             .th-pagination span:hover,
             .th-pagination a.active,
             .th-pagination a:hover {
                 color: var(--white-color);
                 background-color: var(--theme-color);
                 border-color: var(--theme-color)
             }

             @media (max-width: 767px) {

                 .th-pagination span,
                 .th-pagination a {
                     width: 40px;
                     height: 40px;
                     line-height: 40px;
                     font-size: 14px
                 }
             }

             blockquote,
             .wp-block-quote {
                 font-size: 16px;
                 line-height: 1.777;
                 padding: 40px 16px 40px 60px;
                 font-weight: 500;
                 display: block;
                 position: relative;
                 background-color: transparent;
                 margin: 50px 0 58px 0;
                 color: var(--title-color);
                 font-family: var(--title-font);
                 font-style: normal;
                 border: 1px solid var(--smoke-color) !important;
                 border-radius: 20px
             }

             blockquote p,
             .wp-block-quote p {
                 font-size: inherit;
                 font-family: inherit;
                 margin-top: -0.3em;
                 margin-bottom: 9px;
                 line-height: inherit;
                 color: inherit;
                 width: 100%;
                 position: relative;
                 z-index: 3;
                 margin-bottom: 0
             }

             blockquote p a,
             .wp-block-quote p a {
                 color: inherit
             }

             blockquote:before,
             .wp-block-quote:before {
                 content: "";
                 position: absolute;
                 top: -1px;
                 left: -1px;
                 height: 50px;
                 width: 33px;
                 background-color: var(--white-color)
             }

             blockquote:after,
             .wp-block-quote:after {
                 content: "";
                 position: absolute;
                 top: -10px;
                 left: 0px;
                 height: 20px;
                 width: 25px;
                 background-color: var(--theme-color);
                 -webkit-clip-path: path("M2.21945 18.2759C0.775335 16.6762 0 14.8819 0 11.9734C0 6.8553 3.44484 2.26804 8.45438 0L9.70641 2.01506C5.03057 4.65307 4.11643 8.07633 3.75189 10.2347C4.5048 9.82818 5.49044 9.68633 6.45645 9.77992C8.98576 10.0241 10.9795 12.1898 10.9795 14.8819C10.9795 16.2393 10.4625 17.5411 9.54219 18.5009C8.62192 19.4608 7.37376 20 6.07229 20C5.35256 19.9934 4.64126 19.8376 3.97981 19.5416C3.31836 19.2457 2.71996 18.8154 2.21945 18.2759ZM16.24 18.2759C14.7959 16.6762 14.0205 14.8819 14.0205 11.9734C14.0205 6.8553 17.4654 2.26804 22.4749 0L23.7269 2.01506C19.0511 4.65307 18.137 8.07633 17.7724 10.2347C18.5253 9.82818 19.511 9.68633 20.477 9.77992C23.0063 10.0241 25 12.1898 25 14.8819C25 16.2393 24.483 17.5411 23.5627 18.5009C22.6424 19.4608 21.3943 20 20.0928 20C19.3731 19.9934 18.6618 19.8376 18.0003 19.5416C17.3389 19.2457 16.7405 18.8154 16.24 18.2759Z");
                 clip-path: path("M2.21945 18.2759C0.775335 16.6762 0 14.8819 0 11.9734C0 6.8553 3.44484 2.26804 8.45438 0L9.70641 2.01506C5.03057 4.65307 4.11643 8.07633 3.75189 10.2347C4.5048 9.82818 5.49044 9.68633 6.45645 9.77992C8.98576 10.0241 10.9795 12.1898 10.9795 14.8819C10.9795 16.2393 10.4625 17.5411 9.54219 18.5009C8.62192 19.4608 7.37376 20 6.07229 20C5.35256 19.9934 4.64126 19.8376 3.97981 19.5416C3.31836 19.2457 2.71996 18.8154 2.21945 18.2759ZM16.24 18.2759C14.7959 16.6762 14.0205 14.8819 14.0205 11.9734C14.0205 6.8553 17.4654 2.26804 22.4749 0L23.7269 2.01506C19.0511 4.65307 18.137 8.07633 17.7724 10.2347C18.5253 9.82818 19.511 9.68633 20.477 9.77992C23.0063 10.0241 25 12.1898 25 14.8819C25 16.2393 24.483 17.5411 23.5627 18.5009C22.6424 19.4608 21.3943 20 20.0928 20C19.3731 19.9934 18.6618 19.8376 18.0003 19.5416C17.3389 19.2457 16.7405 18.8154 16.24 18.2759Z")
             }

             blockquote cite,
             .wp-block-quote cite {
                 display: inline-block;
                 font-size: 20px;
                 line-height: 1;
                 font-weight: 500;
                 font-style: normal;
                 font-family: var(--body-font);
                 white-space: nowrap;
                 position: absolute;
                 bottom: -17px;
                 left: 100px;
                 background-color: var(--theme-color);
                 color: var(--white-color);
                 padding: 7px 45px 7px 20px;
                 -webkit-clip-path: path("M0 8C0 3.58172 3.58172 0 8 0H178.275C184.816 0 188.593 7.42309 184.742 12.7102L171.63 30.7102C170.125 32.7773 167.721 34 165.164 34H8.00001C3.58173 34 0 30.4183 0 26V8Z");
                 clip-path: path("M0 8C0 3.58172 3.58172 0 8 0H178.275C184.816 0 188.593 7.42309 184.742 12.7102L171.63 30.7102C170.125 32.7773 167.721 34 165.164 34H8.00001C3.58173 34 0 30.4183 0 26V8Z");
                 border-radius: 8px;
                 overflow: hidden
             }

             @media (max-width: 375px) {

                 blockquote cite,
                 .wp-block-quote cite {
                     left: 30px
                 }
             }

             blockquote cite br,
             .wp-block-quote cite br {
                 display: none
             }

             blockquote.is-large:not(.is-style-plain),
             blockquote.is-style-large:not(.is-style-plain),
             blockquote.style-left-icon,
             blockquote.has-text-align-right,
             .wp-block-quote.is-large:not(.is-style-plain),
             .wp-block-quote.is-style-large:not(.is-style-plain),
             .wp-block-quote.style-left-icon,
             .wp-block-quote.has-text-align-right {
                 padding: 40px;
                 margin-bottom: 30px
             }

             blockquote.style-left-icon,
             .wp-block-quote.style-left-icon {
                 font-size: 18px;
                 color: var(--body-color);
                 font-weight: 400;
                 line-height: 1.556;
                 background-color: var(--smoke-color);
                 padding-left: 160px
             }

             blockquote.style-left-icon:before,
             .wp-block-quote.style-left-icon:before {
                 right: unset;
                 left: 56px;
                 top: 60px;
                 font-size: 6rem;
                 font-weight: 400;
                 line-height: 4rem;
                 color: var(--theme-color);
                 text-shadow: none
             }

             blockquote.style-left-icon cite,
             .wp-block-quote.style-left-icon cite {
                 color: var(--title-color)
             }

             blockquote.style-left-icon cite:before,
             .wp-block-quote.style-left-icon cite:before {
                 background-color: var(--title-color);
                 top: 8px
             }

             blockquote:not(:has(>cite)) p:last-child,
             .wp-block-quote:not(:has(>cite)) p:last-child {
                 margin-bottom: -0.3em
             }

             blockquote p:has(cite),
             .wp-block-quote p:has(cite) {
                 padding-bottom: 10px
             }

             blockquote p cite,
             .wp-block-quote p cite {
                 margin-top: 20px;
                 margin-bottom: -0.5em;
                 bottom: -32px
             }

             .wp-block-pullquote {
                 color: var(--body-color);
                 padding: 0
             }

             blockquote.has-very-dark-gray-color {
                 color: var(--body-color) !important
             }

             .wp-block-column blockquote,
             .wp-block-column .wp-block-quote {
                 padding: 100px 15px 30px 15px
             }

             .wp-block-column blockquote:before,
             .wp-block-column .wp-block-quote:before {
                 width: 100%;
                 height: 60px;
                 font-size: 30px
             }

             .wp-block-column blockquote.style-left-icon,
             .wp-block-column blockquote.is-large:not(.is-style-plain),
             .wp-block-column blockquote.is-style-large:not(.is-style-plain),
             .wp-block-column blockquote.has-text-align-right,
             .wp-block-column .wp-block-quote.style-left-icon,
             .wp-block-column .wp-block-quote.is-large:not(.is-style-plain),
             .wp-block-column .wp-block-quote.is-style-large:not(.is-style-plain),
             .wp-block-column .wp-block-quote.has-text-align-right {
                 padding: 100px 15px 30px 15px
             }

             @media (max-width: 1199px) {

                 blockquote,
                 .wp-block-quote {
                     font-size: 16px;
                     padding: 40px 20px 30px 30px
                 }

                 blockquote:before,
                 .wp-block-quote:before {
                     width: 100px;
                     font-size: 52px
                 }

                 blockquote cite,
                 .wp-block-quote cite {
                     margin-top: 23px
                 }

                 blockquote.style-left-icon,
                 blockquote.is-large:not(.is-style-plain),
                 blockquote.is-style-large:not(.is-style-plain),
                 blockquote.has-text-align-right,
                 .wp-block-quote.style-left-icon,
                 .wp-block-quote.is-large:not(.is-style-plain),
                 .wp-block-quote.is-style-large:not(.is-style-plain),
                 .wp-block-quote.has-text-align-right {
                     padding: 40px 20px 30px 120px
                 }
             }

             @media (max-width: 767px) {

                 blockquote.style-left-icon,
                 blockquote.is-large:not(.is-style-plain),
                 blockquote.is-style-large:not(.is-style-plain),
                 blockquote.has-text-align-right,
                 .wp-block-quote.style-left-icon,
                 .wp-block-quote.is-large:not(.is-style-plain),
                 .wp-block-quote.is-style-large:not(.is-style-plain),
                 .wp-block-quote.has-text-align-right {
                     padding: 100px 20px 30px 20px
                 }

                 .wp-block-pullquote.is-style-solid-color blockquote {
                     max-width: 90%
                 }
             }

             .blog-meta {
                 display: block
             }

             .blog-meta span,
             .blog-meta a {
                 display: inline-block;
                 font-size: 14px;
                 color: var(--body-color);
                 font-family: var(--body-font);
                 position: relative;
                 margin-right: 20px
             }

             .blog-meta span i,
             .blog-meta a i {
                 margin-right: 6px;
                 color: var(--theme-color)
             }

             .blog-meta span:last-child,
             .blog-meta a:last-child {
                 margin-right: 0
             }

             .blog-meta .author img {
                 border-radius: 50%;
                 width: 30px;
                 height: 30px;
                 margin-right: 6px
             }

             .blog-meta a:hover {
                 color: var(--theme-color)
             }

             @media (max-width: 1199px) {

                 .blog-meta span,
                 .blog-meta a {
                     margin-right: 6px;
                     padding-right: 15px
                 }
             }

             .blog-audio img,
             .blog-img img,
             .blog-video img {
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out
             }

             .blog-title a {
                 color: inherit
             }

             .blog-title a:hover {
                 color: var(--theme-color)
             }

             .th-blog {
                 margin-bottom: 30px
             }

             .blog-inner-title {
                 margin-top: -0.25em;
                 margin-bottom: 25px
             }

             .blog-inner-title i {
                 color: var(--theme-color);
                 margin-right: 4px
             }

             @media (min-width: 1300px) {

                 .page-single,
                 .blog-single,
                 .as-comments-wrap,
                 .as-comment-form {
                     margin-right: 16px
                 }
             }

             .blog-single {
                 position: relative;
                 border: 1px solid var(--smoke-color);
                 margin-bottom: var(--blog-space-y, 40px);
                 padding: 40px;
                 border-radius: 30px;
                 overflow: hidden
             }

             .blog-single .blog-title {
                 margin-bottom: 15px;
                 font-size: 30px;
                 line-height: 1.4;
                 font-weight: 600
             }

             .blog-single .blog-text {
                 margin-bottom: 27px
             }

             .blog-single .social-links {
                 margin: 0;
                 padding: 0;
                 list-style-type: none;
                 display: inline-block
             }

             .blog-single .social-links li {
                 display: inline-block;
                 margin-right: 3px
             }

             .blog-single .social-links li:last-child {
                 margin-right: 0
             }

             .blog-single .social-links a {
                 display: inline-block;
                 width: 36px;
                 height: 36px;
                 line-height: 36px;
                 background-color: var(--smoke-color2);
                 border: 1px solid var(--smoke-color);
                 font-size: 16px;
                 color: var(--title-color);
                 text-align: center;
                 border-radius: 100px
             }

             .blog-single .social-links a:hover {
                 color: var(--white-color);
                 background-color: var(--theme-color);
                 border-color: var(--theme-color)
             }

             .blog-single .blog-meta {
                 margin: -0.35em 0 10px 0
             }

             .blog-single .blog-content {
                 margin: 0 0 0 0;
                 position: relative
             }

             .blog-single .blog-audio {
                 line-height: 1
             }

             .blog-single .blog-audio,
             .blog-single .blog-img,
             .blog-single .blog-video {
                 position: relative;
                 overflow: hidden;
                 background-color: var(--smoke-color);
                 border-radius: 10px
             }

             .blog-single .blog-img {
                 margin-bottom: 40px
             }

             .blog-single .blog-img .slick-arrow {
                 --pos-x: 30px;
                 --icon-size: 45px;
                 border: none;
                 background-color: var(--white-color);
                 color: var(--theme-color);
                 border-radius: 5px;
                 box-shadow: none
             }

             .blog-single .blog-img .slick-arrow:hover {
                 background-color: var(--theme-color);
                 color: var(--white-color)
             }

             .blog-single .blog-img .play-btn {
                 --icon-size: 60px;
                 position: absolute;
                 left: 50%;
                 top: 50%;
                 margin: calc(var(--icon-size) / -2) 0 0 calc(var(--icon-size) / -2)
             }

             .blog-single .line-btn {
                 display: block;
                 max-width: -webkit-fit-content;
                 max-width: -moz-fit-content;
                 max-width: fit-content;
                 margin-bottom: -1px
             }

             .blog-single:hover .blog-img .slick-arrow {
                 opacity: 1;
                 visibility: visible
             }

             .share-links-title {
                 font-size: 18px;
                 color: var(--title-color);
                 font-family: var(--title-font);
                 font-weight: 600;
                 margin: 0 15px 0 0;
                 display: inline-block
             }

             .share-links {
                 border-top: 1px solid var(--th-border-color);
                 padding: 30px 0 0 0
             }

             .share-links>.row {
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 --bs-gutter-y: 20px
             }

             .share-links .wp-block-tag-cloud,
             .share-links .tagcloud {
                 display: inline-block
             }

             @media (max-width: 1399px) {
                 .blog-single {
                     padding: 30px
                 }

                 .blog-single .blog-title {
                     font-size: 28px
                 }

                 .share-links {
                     --blog-space-x: 20px
                 }
             }

             @media (max-width: 991px) {
                 .blog-details .blog-single {
                     --blog-space-x: 20px;
                     --blog-space-y: 40px
                 }

                 .share-links {
                     --blog-space-x: 40px
                 }
             }

             @media (max-width: 767px) {
                 .share-links {
                     --blog-space-x: 20px
                 }

                 .blog-details .blog-single {
                     --blog-space-x: 20px;
                     --blog-space-y: 20px
                 }

                 .blog-single .blog-title {
                     font-size: 24px;
                     line-height: 1.3
                 }

                 .blog-single .blog-text {
                     margin-bottom: 22px
                 }

                 .blog-single .blog-bottom {
                     padding-top: 15px
                 }

                 .blog-single .share-links-title {
                     font-size: 18px;
                     display: block;
                     margin: 0 0 10px 0
                 }
             }

             .blog-text {
                 line-height: 26px;
                 margin-bottom: 25px
             }

             .th-comment-form {
                 margin-top: var(--blog-space-y, 40px);
                 margin-bottom: 30px;
                 padding: var(--blog-space-y, 40px) var(--blog-space-x, 40px);
                 position: relative;
                 margin-right: 16px
             }

             @media (max-width: 991px) {
                 .th-comment-form {
                     margin: 0
                 }
             }

             .th-comment-form .row {
                 --bs-gutter-x: 20px
             }

             .th-comment-form .blog-inner-title {
                 margin-bottom: 0px
             }

             .th-comment-form .form-title {
                 margin-top: -0.35em
             }

             .th-comment-form .form-title a#cancel-comment-reply-link {
                 font-size: 0.7em;
                 text-decoration: underline
             }

             .th-comment-form .form-text {
                 margin-bottom: 25px
             }

             .blog-comment-area {
                 margin-bottom: 25px
             }

             .th-comment-form,
             .th-comments-wrap {
                 padding: 40px;
                 border: 1px solid var(--smoke-color);
                 border-radius: 30px
             }

             .th-comments-wrap {
                 margin-top: var(--blog-space-y, 40px);
                 margin-bottom: 30px;
                 margin-right: 16px
             }

             .th-comments-wrap .description p:last-child {
                 margin-bottom: -0.5em
             }

             .th-comments-wrap .comment-respond {
                 margin: 30px 0
             }

             .th-comments-wrap pre {
                 background: #ededed;
                 color: #666;
                 font-size: 14px;
                 margin: 20px 0;
                 overflow: auto;
                 padding: 20px;
                 white-space: pre-wrap;
                 word-wrap: break-word
             }

             .th-comments-wrap li {
                 margin: 0
             }

             .th-comments-wrap .th-post-comment {
                 padding: 0;
                 position: relative;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 margin-bottom: 30px;
                 padding-bottom: 30px;
                 position: relative;
                 border-bottom: 1px solid var(--th-border-color)
             }

             .th-comments-wrap .th-post-comment ol,
             .th-comments-wrap .th-post-comment ul,
             .th-comments-wrap .th-post-comment dl {
                 margin-bottom: 1rem
             }

             .th-comments-wrap .th-post-comment ol ol,
             .th-comments-wrap .th-post-comment ol ul,
             .th-comments-wrap .th-post-comment ul ol,
             .th-comments-wrap .th-post-comment ul ul {
                 margin-bottom: 0
             }

             .th-comments-wrap ul.comment-list {
                 list-style: none;
                 margin: 0;
                 padding: 0;
                 margin-bottom: -30px
             }

             .th-comments-wrap ul.comment-list ul ul,
             .th-comments-wrap ul.comment-list ul ol,
             .th-comments-wrap ul.comment-list ol ul,
             .th-comments-wrap ul.comment-list ol ol {
                 margin-bottom: 0
             }

             .th-comments-wrap .comment-avater {
                 width: 110px;
                 height: 110px;
                 margin-right: 20px;
                 overflow: hidden;
                 border-radius: 15px
             }

             .th-comments-wrap .comment-avater img {
                 width: 100%
             }

             .th-comments-wrap .comment-content {
                 -webkit-box-flex: 1;
                 -webkit-flex: 1;
                 -ms-flex: 1;
                 flex: 1;
                 margin-top: -6px;
                 position: relative
             }

             .th-comments-wrap .commented-on {
                 font-size: 14px;
                 display: inline-block;
                 margin-bottom: 2px;
                 font-weight: 400;
                 color: var(--body-color)
             }

             .th-comments-wrap .commented-on i {
                 color: var(--theme-color);
                 margin-right: 7px;
                 font-size: 0.9rem
             }

             .th-comments-wrap .name {
                 margin-bottom: 12px;
                 font-size: 20px
             }

             .th-comments-wrap .comment-top {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between
             }

             .th-comments-wrap .text {
                 margin-bottom: -0.3rem
             }

             .th-comments-wrap .children {
                 margin: 0;
                 padding: 0;
                 list-style-type: none;
                 margin-left: 80px
             }

             .th-comments-wrap .reply_and_edit {
                 margin-top: 0px;
                 margin-bottom: -0.46em;
                 position: absolute;
                 top: 0;
                 right: 0;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .th-comments-wrap .reply_and_edit a {
                 margin-right: 10px
             }

             .th-comments-wrap .reply_and_edit a:last-child {
                 margin-right: 0
             }

             .th-comments-wrap .reply-btn {
                 font-weight: 400;
                 font-size: 14px;
                 display: inline-block;
                 color: var(--theme-color)
             }

             @media (max-width: 450px) {
                 .th-comments-wrap .reply-btn {
                     font-size: 12px;
                     padding: 4px 12px
                 }
             }

             .th-comments-wrap .reply-btn i {
                 margin-left: 7px
             }

             .th-comments-wrap .reply-btn:hover {
                 background-color: var(--theme-color);
                 color: var(--white-color)
             }

             .th-comments-wrap .star-rating {
                 font-size: 12px;
                 margin-bottom: 10px;
                 position: absolute;
                 top: 5px;
                 right: 0;
                 width: 80px
             }

             ul.comment-list .th-comment-item:last-child>.th-post-comment {
                 border-bottom: none;
                 padding-bottom: 0
             }

             ul.comment-list .th-comment-item:first-child>.th-post-comment {
                 padding-bottom: 30px;
                 border-bottom: 1px solid var(--th-border-color)
             }

             .th-comments-wrap.th-comment-form {
                 margin: 0
             }

             @media (max-width: 1399px) {

                 .th-comment-form,
                 .th-comments-wrap {
                     padding: 30px;
                     margin-right: 0
                 }
             }

             @media (max-width: 1199px) {
                 .th-comments-wrap .children {
                     margin-left: 40px
                 }
             }

             @media (max-width: 991px) {

                 .th-comment-form,
                 .th-comments-wrap {
                     padding: 40px
                 }
             }

             @media (max-width: 767px) {

                 .th-comment-form,
                 .th-comments-wrap {
                     padding: 40px 20px
                 }

                 .th-comments-wrap .th-post-comment {
                     display: block
                 }

                 .th-comments-wrap .star-rating {
                     position: relative;
                     top: 0;
                     right: 0
                 }

                 .th-comments-wrap .comment-top {
                     display: block
                 }

                 .th-comments-wrap .comment-avater {
                     margin-right: 0;
                     margin-bottom: 25px
                 }

                 .th-comments-wrap .children {
                     margin-left: 40px
                 }

                 .th-comments-wrap .children {
                     margin-left: 30px
                 }
             }

             @media (max-width: 767px) {
                 .th-comment-form {
                     --blog-space-x: 20px
                 }
             }

             .th-hero-wrapper {
                 position: relative;
                 z-index: 2;
                 overflow: hidden
             }

             .th-hero-wrapper .slider-arrow {
                 --pos-x: 100px;
                 background-color: var(--white-color);
                 box-shadow: none;
                 color: var(--theme-color);
                 border-color: var(--white-color)
             }

             .th-hero-wrapper .slider-arrow:hover {
                 background-color: var(--theme-color);
                 color: var(--white-color);
                 border-color: var(--theme-color)
             }

             .th-hero-wrapper .slick-dots {
                 position: absolute;
                 top: 50%;
                 left: 80px;
                 -webkit-transform: translateY(-50%);
                 -ms-transform: translateY(-50%);
                 transform: translateY(-50%)
             }

             .th-hero-bg {
                 position: absolute;
                 inset: 0;
                 z-index: -1
             }

             @media (max-width: 1500px) {
                 .th-hero-wrapper .slider-arrow {
                     --pos-x: 40px
                 }
             }

             @media (max-width: 1399px) {
                 .th-hero-wrapper .slider-arrow {
                     left: auto;
                     top: calc(50% - 35px);
                     right: var(--pos-x, -120px);
                     margin: 0
                 }

                 .th-hero-wrapper .slider-arrow.slider-next {
                     top: calc(50% + 35px)
                 }
             }

             @media (max-width: 991px) {
                 .th-hero-wrapper .slider-arrow {
                     left: auto;
                     top: calc(50% - 30px);
                     right: var(--pos-x, -120px);
                     margin: 0
                 }

                 .th-hero-wrapper .slider-arrow.slider-next {
                     top: calc(50% + 30px)
                 }
             }

             @media (max-width: 767px) {
                 .th-hero-wrapper .slider-arrow {
                     display: none
                 }
             }

             .th-hero-bg {
                 position: absolute;
                 inset: 0
             }

             .th-hero-bg img {
                 height: 100%;
                 width: 100%;
                 object-fit: cover
             }

             .call-btn {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 gap: 10px
             }

             .call-btn .btn-text {
                 font-size: 14px;
                 font-weight: 500;
                 display: block
             }

             @media (max-width: 1199px) {
                 .btn-group:has(.call-btn) {
                     gap: 25px
                 }
             }

             @media (max-width: 767px) {
                 .btn-group:has(.call-btn) {
                     gap: 20px
                 }
             }

             .hero-text {
                 font-family: var(--title-font);
                 font-weight: 500;
                 margin-bottom: 30px
             }

             .ripple-shape {
                 -webkit-transform: rotate(60deg);
                 -ms-transform: rotate(60deg);
                 transform: rotate(60deg)
             }

             @media (max-width: 1199px) {
                 .ripple-shape {
                     position: absolute;
                     left: -4%;
                     top: -45%
                 }
             }

             .ripple-1,
             .ripple-2,
             .ripple-3,
             .ripple-4,
             .ripple-5 {
                 width: 700px;
                 height: 700px;
                 position: absolute;
                 left: -30%;
                 top: -30%;
                 background-color: transparent;
                 border: 1px solid rgba(107, 97, 252, 0.4);
                 border-radius: 50%;
                 -webkit-animation: ripple2 15s linear infinite;
                 animation: ripple2 15s linear infinite
             }

             .ripple-1 {
                 -webkit-animation-delay: 0;
                 animation-delay: 0
             }

             .ripple-2 {
                 -webkit-animation-delay: 1s;
                 animation-delay: 1s
             }

             .ripple-3 {
                 -webkit-animation-delay: 3s;
                 animation-delay: 3s
             }

             .ripple-4 {
                 -webkit-animation-delay: 4s;
                 animation-delay: 4s
             }

             .ripple-4 {
                 -webkit-animation-delay: 5s;
                 animation-delay: 5s
             }

             .ripple-5 {
                 -webkit-animation-delay: 6s;
                 animation-delay: 6s
             }

             .hero-1 {
                 background-color: var(--smoke-color4)
             }

             .hero-1 .hero-img {
                 position: relative;
                 /* min-width: 859px; */
                 /* margin: 90px -90px 0 -50px; */
             }

             .hero-1 .hero-img img {
                 /* width: 100%; */
                 height: auto;
                 border-radius: 40px;
                 object-fit: cover;
                 margin: 32px auto;
             }

             @media (max-width: 1699px) {
                 .hero-1 .hero-img {
                     min-width: 100%
                 }
             }

             @media (max-width: 1500px) {
                 .hero-1 .hero-img {
                     margin: -15px 0 0 0;
                 }
             }

             @media (max-width: 1199px) {
                 .hero-1 .hero-img {
                     padding-bottom: 80px;
                     margin: 0;
                     text-align: center
                 }
             }

             .hero-1 .hero-img:before {
                 content: '';
                 width: 557px;
                 height: 557px;
                 background: var(--theme-color);
                 opacity: 0.4;
                 -webkit-filter: blur(500px);
                 filter: blur(500px);
                 border-radius: 50%;
                 position: absolute;
                 right: -140px;
                 bottom: -180px;
                 z-index: -1
             }

             .hero-1 .th-circle .circle {
                 position: absolute;
                 width: 49px;
                 height: 49px;
                 display: block;
                 background-color: var(--theme-color);
                 border-radius: 50%
             }

             .hero-1 .th-circle .circle.style1 {
                 left: 2%;
                 bottom: 6%;
                 background-color: var(--theme-color);
                 opacity: 0.2;
                 -webkit-animation: zoom1 3s infinite ease-in-out;
                 animation: zoom1 3s infinite ease-in-out;
                 -webkit-transition-delay: 2s;
                 transition-delay: 2s
             }

             @media (max-width: 575px) {
                 .hero-1 .th-circle .circle.style1 {
                     display: none
                 }
             }

             .hero-1 .th-circle .circle.style2 {
                 width: 23px;
                 height: 23px;
                 top: 17%;
                 left: 6%;
                 -webkit-animation: fadeLeftRight 10s linear infinite;
                 animation: fadeLeftRight 10s linear infinite
             }

             @media (max-width: 575px) {
                 .hero-1 .th-circle .circle.style2 {
                     display: none
                 }
             }

             .hero-1 .th-circle .circle.style3 {
                 width: 10px;
                 height: 10px;
                 top: 20%;
                 left: 40%;
                 -webkit-animation: fadeLeftRight 10s linear infinite;
                 animation: fadeLeftRight 10s linear infinite
             }

             @media (max-width: 575px) {
                 .hero-1 .th-circle .circle.style3 {
                     display: none
                 }
             }

             .hero-style1 {
                 position: relative;
                 z-index: 6;
                 padding: 297px 0 187px 0;
                 max-width: 543px
             }

             @media (max-width: 1199px) {
                 .hero-style1 {
                     text-align: center;
                     padding: 200px 0 80px 0;
                     display: block;
                     margin: auto
                 }

                 .hero-style1 .btn-group {
                     -webkit-box-pack: center;
                     -webkit-justify-content: center;
                     -ms-flex-pack: center;
                     justify-content: center
                 }
             }

             .hero-style1 .sub-title {
                 margin-bottom: 20px
             }

             .hero-style1 .hero-title {
                 font-size: 51px;
                 font-weight: 500;
                 margin-bottom: 15px
             }

             .hero-style8 h1 {
                 font-size: 51px !important;
                 font-weight: 500 !important;
                 margin-bottom: 15px
             }

             @media (max-width: 767px) {
                 .hero-style1 .hero-title {
                     font-size: 44px
                 }
             }

             @media (max-width: 575px) {
                 .hero-style1 .hero-title {
                     font-size: 34px
                 }
             }

             @media (max-width: 375px) {
                 .hero-style1 .hero-title {
                     font-size: 28px
                 }
             }

             .hero-style1 .play-btn>i {
                 --icon-size: 55px;
                 box-shadow: 0px 0px 30px #DFDDFB
             }

             .hero-style1 .btn-title {
                 color: var(--body-color)
             }

             .hero-style1 .th-btn {
                 padding: 17px 30px
             }

             .hero-2 {
                 position: relative;
                 margin: 0 80px;
                 z-index: 2;
                 -webkit-mask-image: url("../img/bg/hero_bg_shape.png");
                 mask-image: url("../img/bg/hero_bg_shape.png");
                 -webkit-mask-size: 100% 100%;
                 mask-size: 100% 100%;
                 -webkit-mask-repeat: no-repeat;
                 mask-repeat: no-repeat
             }

             @media (max-width: 1799px) {
                 .hero-2 {
                     margin: 0 20px
                 }
             }

             @media (max-width: 1500px) {
                 .hero-2 {
                     margin: 0
                 }
             }

             .hero-2 .hero-img {
                 margin: 30px -180px 0 -30px;
                 height: 781px
             }

             @media (max-width: 1399px) {
                 .hero-2 .hero-img {
                     margin: 30px -100px 0 -30px
                 }
             }

             @media (max-width: 1199px) {
                 .hero-2 .hero-img {
                     height: 100%
                 }
             }

             .hero-2 .hero-img img {
                 min-width: 670px;
                 object-fit: cover
             }

             @media (max-width: 1399px) {
                 .hero-2 .hero-img img {
                     min-width: 600px
                 }
             }

             @media (max-width: 1199px) {
                 .hero-2 .hero-img img {
                     min-width: 500px
                 }
             }

             @media (max-width: 575px) {
                 .hero-2 .hero-img img {
                     min-width: 100%
                 }
             }

             .hero-2 .hero2-image .hero-shape {
                 position: absolute;
                 top: 0;
                 right: 0;
                 z-index: -1
             }

             @media (min-width: 1330px) {
                 .hero-2 .hero2-image .hero-shape {
                     right: 5%
                 }
             }

             @media (max-width: 1799px) {
                 .hero-2 .hero2-image .hero-shape {
                     right: -5%
                 }
             }

             @media (max-width: 1299px) {
                 .hero-2 .hero2-image .hero-shape {
                     right: -8%
                 }
             }

             @media (max-width: 1199px) {
                 .hero-2 .hero2-image .hero-shape {
                     top: unset;
                     bottom: 0;
                     right: 0
                 }
             }

             .hero-style2 {
                 padding: 278px 0 291px 0
             }

             @media (max-width: 1199px) {
                 .hero-style2 {
                     text-align: center;
                     padding: 150px 0 0px 0
                 }

                 .hero-style2 .hero-text {
                     display: block;
                     margin: auto auto 30px auto
                 }
             }

             @media (max-width: 575px) {
                 .hero-style2 {
                     padding: 100px 0 0px 0
                 }
             }

             .hero-style2 .sub-title {
                 text-transform: uppercase;
                 font-size: 18px;
                 font-weight: 600;
                 margin-bottom: 15px
             }

             @media (max-width: 575px) {
                 .hero-style2 .sub-title {
                     font-size: 16px
                 }
             }

             .hero-style2 .hero-title {
                 text-transform: capitalize
             }

             @media (max-width: 1399px) {
                 .hero-style2 .hero-title {
                     font-size: 54px
                 }
             }

             @media (max-width: 767px) {
                 .hero-style2 .hero-title {
                     font-size: 44px
                 }
             }

             @media (max-width: 575px) {
                 .hero-style2 .hero-title {
                     font-size: 34px
                 }
             }

             .hero-style2 .hero-text {
                 max-width: 522px
             }

             .hero-3 .th-hero-bg {
                 -webkit-mask-image: url("../img/bg/hero3_bg_shape.png");
                 mask-image: url("../img/bg/hero3_bg_shape.png");
                 -webkit-mask-size: auto;
                 mask-size: auto;
                 -webkit-mask-position: top center;
                 mask-position: top center;
                 -webkit-mask-repeat: no-repeat;
                 mask-repeat: no-repeat
             }

             .hero-3 .hero-img {
                 text-align: center
             }

             .hero-3 .th-circle .circle {
                 position: absolute;
                 width: 10px;
                 height: 10px;
                 display: block;
                 background-color: #6B61FC;
                 border-radius: 50%
             }

             .hero-3 .th-circle .circle.style1 {
                 right: 40%;
                 top: 7%;
                 -webkit-animation: fadeLeftRight 3s infinite ease-in-out;
                 animation: fadeLeftRight 3s infinite ease-in-out;
                 -webkit-transition-delay: 2s;
                 transition-delay: 2s
             }

             .hero-3 .th-circle .circle.style2 {
                 width: 16px;
                 height: 16px;
                 top: 42%;
                 left: 50%;
                 background-color: #D02CFF;
                 -webkit-animation: zoom1 10s linear infinite;
                 animation: zoom1 10s linear infinite
             }

             @media (max-width: 991px) {
                 .hero-3 .th-circle .circle.style2 {
                     display: none
                 }
             }

             .hero-style3 {
                 padding: 145px 0 77px 0
             }

             @media (max-width: 575px) {
                 .hero-style3 {
                     padding: 100px 0 77px 0
                 }
             }

             .hero-style3 .hero-title {
                 font-weight: 600
             }

             .hero-style3 .hero-title span {
                 display: inline-block;
                 position: relative;
                 color: var(--theme-color)
             }

             .hero-style3 .hero-title span:after {
                 content: "";
                 height: 14px;
                 width: 100%;
                 background-image: url("data:image/svg+xml,%3Csvg width='135' height='18' viewBox='0 0 135 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 16C25 3 79 -7 133 16' stroke='%23F93E5E' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E%0A");
                 background-size: cover;
                 background-repeat: repeat-x;
                 background-position: left center;
                 position: absolute;
                 bottom: -7px;
                 left: 0px;
                 -webkit-animation: titleFill 3s linear infinite;
                 animation: titleFill 3s linear infinite
             }

             @media (max-width: 1399px) {
                 .hero-style3 .hero-title {
                     font-size: 54px
                 }
             }

             @media (max-width: 991px) {
                 .hero-style3 .hero-title {
                     font-size: 50px
                 }
             }

             @media (max-width: 575px) {
                 .hero-style3 .hero-title {
                     font-size: 40px
                 }
             }

             @media (max-width: 375px) {
                 .hero-style3 .hero-title {
                     font-size: 30px
                 }
             }

             .hero-style3 .hero-text {
                 max-width: 635px;
                 display: block;
                 margin: auto auto 30px auto
             }

             .hero-style3 .th-btn {
                 font-size: 14px;
                 min-width: 156px;
                 padding: 19.5px 32px
             }

             .hero-4 {
                 position: relative
             }

             .hero-4 .th-hero-bg {
                 -webkit-mask-image: url("../img/bg/hero4_bg_shape.png");
                 mask-image: url("../img/bg/hero4_bg_shape.png");
                 -webkit-mask-size: cover;
                 mask-size: cover;
                 -webkit-mask-repeat: no-repeat;
                 mask-repeat: no-repeat
             }

             .hero-4 .hero-img {
                 text-align: right;
                 margin-top: 20px;
                 margin-right: -40px
             }

             @media (max-width: 1199px) {
                 .hero-4 .hero-img {
                     text-align: center;
                     margin: 0;
                     padding-bottom: 140px
                 }
             }

             .hero-style4 {
                 position: relative;
                 z-index: 6;
                 padding: 350px 0 268px 0;
                 max-width: 621px
             }

             @media (max-width: 1199px) {
                 .hero-style4 {
                     text-align: center;
                     padding: 250px 0 80px 0;
                     display: block;
                     margin: auto
                 }

                 .hero-style4 .btn-group {
                     -webkit-box-pack: center;
                     -webkit-justify-content: center;
                     -ms-flex-pack: center;
                     justify-content: center
                 }
             }

             @media (max-width: 575px) {
                 .hero-style4 {
                     padding: 230px 0 80px 0
                 }
             }

             .hero-style4 .sub-title {
                 margin-bottom: 20px
             }

             .hero-style4 .hero-title {
                 font-weight: 600;
                 margin-bottom: 15px
             }

             @media (max-width: 1299px) {
                 .hero-style4 .hero-title {
                     font-size: 54px
                 }
             }

             @media (max-width: 1199px) {
                 .hero-style4 .hero-title {
                     font-size: 44px
                 }
             }

             @media (max-width: 575px) {
                 .hero-style4 .hero-title {
                     font-size: 40px
                 }
             }

             .hero-style4 .hero-title .square-text {
                 position: relative;
                 display: inline-block;
                 line-height: 60px;
                 color: var(--theme-color);
                 border: 2px solid var(--theme-color);
                 padding: 2px 20px 2px 20px;
                 z-index: 2
             }

             @media (max-width: 575px) {
                 .hero-style4 .hero-title .square-text {
                     line-height: 40px
                 }
             }

             .hero-style4 .hero-title .square-text .dot1,
             .hero-style4 .hero-title .square-text .dot2 {
                 position: absolute;
                 top: -8px;
                 height: calc(100% + 20px);
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-orient: vertical;
                 -webkit-box-direction: normal;
                 -webkit-flex-direction: column;
                 -ms-flex-direction: column;
                 flex-direction: column;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between
             }

             .hero-style4 .hero-title .square-text .dot1:before,
             .hero-style4 .hero-title .square-text .dot1:after,
             .hero-style4 .hero-title .square-text .dot2:before,
             .hero-style4 .hero-title .square-text .dot2:after {
                 content: '';
                 width: 10px;
                 height: 10px;
                 display: inline-block;
                 border: 2px solid var(--theme-color)
             }

             .hero-style4 .hero-title .square-text .dot1 {
                 left: -9px
             }

             .hero-style4 .hero-title .square-text .dot2 {
                 right: -9px
             }

             .hero-style4 .hero-text {
                 font-size: 18px;
                 font-weight: 500;
                 color: var(--white-color)
             }

             .hero-style4 .play-btn:before,
             .hero-style4 .play-btn:after {
                 display: none
             }

             .hero-style4 .play-btn>i {
                 --icon-size: 55px;
                 background: rgba(255, 255, 255, 0.2);
                 border-radius: 100px;
                 font-size: 16px
             }

             .hero-style4 .play-btn>i:hover {
                 background-color: var(--theme-color)
             }

             .hero-style4 .btn-title {
                 color: var(--white-color)
             }

             .hero-style4 .th-btn {
                 padding: 19.5px 30px
             }

             .hero-5 {
                 background-color: #D4E2E3
             }

             .hero-5:before {
                 content: "";
                 position: absolute;
                 left: 0;
                 top: 0;
                 width: 100px;
                 height: 100%;
                 background-color: var(--white-color)
             }

             @media (max-width: 1799px) {
                 .hero-5:before {
                     display: none
                 }
             }

             .hero-5 .th-hero-thumb {
                 position: absolute;
                 right: 10%;
                 bottom: 0
             }

             @media (max-width: 1500px) {
                 .hero-5 .th-hero-thumb {
                     right: 2%
                 }
             }

             @media (max-width: 1299px) {
                 .hero-5 .th-hero-thumb {
                     position: relative;
                     right: unset;
                     text-align: center
                 }
             }

             .hero-5 .th-hero-thumb .hero5-shape {
                 position: absolute;
                 left: 0;
                 top: 40%
             }

             .hero-5 .th-hero-thumb .hero5-shape img {
                 border-radius: 10px
             }

             .hero-style5 {
                 padding: 327px 0 287px 0;
                 max-width: 660px
             }

             @media (max-width: 1299px) {
                 .hero-style5 {
                     padding: 200px 0 80px 0;
                     text-align: center;
                     display: block;
                     margin: auto
                 }
             }

             @media (max-width: 767px) {
                 .hero-style5 {
                     padding: 140px 0 80px 0
                 }
             }

             .hero-style5 .hero-title {
                 font-weight: 500;
                 letter-spacing: -0.02em;
                 text-transform: capitalize;
                 margin-top: -0.7rem
             }

             .hero-style5 .hero-title2 {
                 font-weight: 600;
                 font-size: 84px;
                 line-height: 94px;
                 display: block
             }

             @media (max-width: 1199px) {
                 .hero-style5 .hero-title2 {
                     font-size: 74px;
                     line-height: 84px
                 }
             }

             @media (max-width: 767px) {
                 .hero-style5 .hero-title2 {
                     font-size: 54px;
                     line-height: 64px
                 }
             }

             @media (max-width: 575px) {
                 .hero-style5 .hero-title2 {
                     font-size: 44px;
                     line-height: 54px
                 }
             }

             @media (max-width: 375px) {
                 .hero-style5 .hero-title2 {
                     font-size: 34px;
                     line-height: 44px
                 }
             }

             .hero-form {
                 background-color: var(--white-color);
                 border-radius: 40px;
                 padding: 18px
             }

             @media (max-width: 375px) {
                 .hero-form {
                     border-radius: 10px;
                     padding: 15px
                 }
             }

             .hero-form .form-group {
                 margin-bottom: 0
             }

             .hero-form .form-group:first-child {
                 border-right: 1px solid #CCCCCC
             }

             @media (max-width: 767px) {
                 .hero-form .form-group:first-child {
                     border-right: 0
                 }
             }

             .hero-form .form-group:first-child input {
                 padding-left: 45px
             }

             @media (max-width: 375px) {
                 .hero-form .form-group:first-child input {
                     padding: 0 10px;
                     font-size: 14px;
                     padding-left: 30px
                 }
             }

             .hero-form .form-group>i {
                 right: unset;
                 left: 25px;
                 top: 13px;
                 font-size: 16px;
                 color: var(--title-color)
             }

             @media (max-width: 375px) {
                 .hero-form .form-group>i {
                     left: 15px
                 }
             }

             .hero-form select,
             .hero-form .form-control,
             .hero-form .form-select,
             .hero-form textarea,
             .hero-form input {
                 height: 40px;
                 line-height: 40px;
                 padding: 0 25px 0 25px;
                 border: none;
                 color: var(--body-color);
                 background-color: transparent;
                 border-radius: 100px;
                 font-size: 16px;
                 width: 100%;
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out
             }

             .hero-form .nice-select {
                 font-size: 16px;
                 color: var(--title-color);
                 text-align: left
             }

             @media (max-width: 375px) {
                 .hero-form .nice-select {
                     font-size: 14px;
                     padding: 0 5px
                 }
             }

             .hero-form .nice-select:after {
                 top: 13px
             }

             .hero-form .nice-select .option {
                 color: var(--title-color)
             }

             .hero-form .nice-select .option.selected {
                 color: var(--theme-color) !important;
                 background: var(--theme-color) !important
             }

             .hero-form .nice-select .option.selected.focus {
                 color: #fff !important;
                 background: var(--theme-color) !important
             }

             .hero-form .nice-select .option:hover,
             .hero-form .nice-select .option.focus {
                 background: var(--theme-color) !important;
                 color: #fff !important
             }

             .hero-form .nice-select.open .list {
                 border-bottom: 3px solid var(--theme-color)
             }

             .hero-form .form-btn {
                 text-align: right
             }

             .hero-form .th-btn {
                 padding: 12px 31px;
                 font-size: 14px
             }

             @media (max-width: 767px) {
                 .hero-form .th-btn {
                     width: 100%;
                     margin-top: 10px
                 }
             }

             .hero-6 .th-hero-bg {
                 -webkit-mask-image: url("../img/bg/hero6_bg_shape.png");
                 mask-image: url("../img/bg/hero6_bg_shape.png");
                 -webkit-mask-size: cover;
                 mask-size: cover;
                 -webkit-mask-repeat: no-repeat;
                 mask-repeat: no-repeat;
                 background-position: left center
             }

             .hero-6 .th-hero-thumb {
                 position: absolute;
                 right: 120px;
                 top: 109px
             }

             @media (max-width: 1799px) {
                 .hero-6 .th-hero-thumb {
                     right: 0
                 }
             }

             @media (max-width: 1499px) {
                 .hero-6 .th-hero-thumb {
                     right: -30px
                 }
             }

             @media (max-width: 1299px) {
                 .hero-6 .th-hero-thumb {
                     right: 0
                 }
             }

             @media (max-width: 1299px) {
                 .hero-6 .th-hero-thumb {
                     position: relative;
                     right: unset;
                     top: 0;
                     text-align: center;
                     padding-bottom: 80px
                 }
             }

             @media (max-width: 767px) {
                 .hero-6 .th-hero-thumb {
                     padding-bottom: 0
                 }
             }

             .hero-6 .scroll-down {
                 position: absolute;
                 bottom: 25%;
                 left: 55px;
                 width: 150px;
                 height: 150px;
                 border-radius: 50%;
                 padding: 40px 10px;
                 border: 1px solid var(--white-color);
                 text-align: center;
                 z-index: 2;
                 display: block;
                 color: var(--white-color)
             }

             @media (max-width: 1799px) {
                 .hero-6 .scroll-down {
                     left: 10px
                 }
             }

             @media (max-width: 1699px) {
                 .hero-6 .scroll-down {
                     bottom: 3%;
                     left: 30%
                 }
             }

             @media (max-width: 1500px) {
                 .hero-6 .scroll-down {
                     left: 35%
                 }
             }

             @media (max-width: 1299px) {
                 .hero-6 .scroll-down {
                     display: none
                 }
             }

             .hero-6 .scroll-down a {
                 color: inherit
             }

             .hero-6 .scroll-down img {
                 -webkit-animation: lineDown 1.5s infinite;
                 animation: lineDown 1.5s infinite
             }

             .hero-6 .scroll-down span {
                 display: block
             }

             .hero-6 .hero-line {
                 position: absolute;
                 top: 34%;
                 left: 7%;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: start;
                 -webkit-justify-content: flex-start;
                 -ms-flex-pack: start;
                 justify-content: flex-start;
                 width: 1px;
                 height: 150px;
                 gap: 20px;
                 -webkit-flex-flow: wrap;
                 -ms-flex-flow: wrap;
                 flex-flow: wrap;
                 -webkit-transform: translateY(-50%);
                 -ms-transform: translateY(-50%);
                 transform: translateY(-50%)
             }

             @media (min-width: 1930px) {
                 .hero-6 .hero-line {
                     left: 5%
                 }
             }

             @media (max-width: 1799px) {
                 .hero-6 .hero-line {
                     left: 4%
                 }
             }

             @media (max-width: 1699px) {
                 .hero-6 .hero-line {
                     display: none
                 }
             }

             .hero-6 .hero-line .line {
                 height: 75px;
                 width: 1px;
                 display: block;
                 background-color: rgba(255, 255, 255, 0.6)
             }

             .hero-6 .hero-line .line.line1 {
                 height: 150px
             }

             .hero-style6 {
                 max-width: 780px;
                 padding: 263px 0 284px 0
             }

             @media (max-width: 1299px) {
                 .hero-style6 {
                     display: block;
                     margin: auto;
                     padding: 200px 0 0px 0;
                     text-align: center
                 }
             }

             @media (max-width: 480px) {
                 .hero-style6 {
                     padding: 150px 0 0 0;
                     max-width: 100%
                 }
             }

             .hero-style6 .hero-title {
                 font-weight: 700;
                 font-size: 94px;
                 line-height: 104px;
                 text-transform: uppercase
             }

             @media (max-width: 1399px) {
                 .hero-style6 .hero-title {
                     font-size: 74px;
                     line-height: 84px
                 }
             }

             @media (max-width: 767px) {
                 .hero-style6 .hero-title {
                     font-size: 50px;
                     line-height: 70px
                 }
             }

             @media (max-width: 480px) {
                 .hero-style6 .hero-title {
                     font-size: 40px;
                     line-height: 50px
                 }
             }

             .hero-style6 img {
                 display: inline-block;
                 border-radius: 60px
             }

             @media (max-width: 480px) {
                 .hero-style6 img {
                     display: block;
                     padding: 20px 0 10px 0;
                     text-align: center;
                     margin: auto
                 }
             }

             .hero-style6 img img {
                 border-radius: 60px
             }

             .hero-style6 .hero-text {
                 font-size: 16px;
                 color: #ACB5C4;
                 font-weight: 300;
                 max-width: 690px
             }

             @media (max-width: 1399px) {
                 .hero-style6 .hero-text {
                     max-width: 560px
                 }
             }

             @media (max-width: 1299px) {
                 .hero-style6 .hero-text {
                     display: block;
                     margin: auto auto 30px auto;
                     text-align: center
                 }
             }

             @media (max-width: 1299px) {
                 .hero-style6 .btn-group {
                     -webkit-box-pack: center;
                     -webkit-justify-content: center;
                     -ms-flex-pack: center;
                     justify-content: center
                 }
             }

             .hero-style6 .th-btn.style5 {
                 color: var(--white-color)
             }

             .hero-tag {
                 position: relative;
                 display: inline-block
             }

             @media (max-width: 480px) {
                 .hero-tag {
                     display: block
                 }
             }

             .hero-tag .play-btn {
                 position: absolute;
                 left: 50%;
                 top: 28%;
                 -webkit-transform: translate(-50%, -50%);
                 -ms-transform: translate(-50%, -50%);
                 transform: translate(-50%, -50%)
             }

             @media (max-width: 1399px) {
                 .hero-tag .play-btn {
                     top: 35%
                 }
             }

             @media (max-width: 767px) {
                 .hero-tag .play-btn {
                     top: 40%
                 }
             }

             @media (max-width: 480px) {
                 .hero-tag .play-btn {
                     top: 45%
                 }
             }

             .hero-tag .play-btn:before,
             .hero-tag .play-btn:after {
                 display: none
             }

             .hero-tag .play-btn>i {
                 --icon-size: 70px;
                 font-size: 18px;
                 border: 1px solid rgba(255, 255, 255, 0.3);
                 background-color: transparent
             }

             .hero-title-anime {
                 font-size: 14px;
                 font-weight: 700;
                 width: 126px;
                 height: 126px;
                 border-radius: 50%;
                 -webkit-transition: 0.4s;
                 transition: 0.4s;
                 position: relative;
                 display: inline-block;
                 border: 1px solid rgba(255, 255, 255, 0.3);
                 line-height: 17px;
                 text-align: center;
                 animation: spin 10s infinite alternate-reverse
             }

             .hero-title-anime span {
                 --rotate-letter: 17deg;
                 min-height: 60px;
                 position: absolute;
                 min-width: 60px;
                 left: 32px;
                 color: var(--theme-color);
                 top: 0px;
                 -webkit-transform-origin: bottom center;
                 -ms-transform-origin: bottom center;
                 transform-origin: bottom center;
                 -webkit-transform: rotate(var(--rotate-letter));
                 -ms-transform: rotate(var(--rotate-letter));
                 transform: rotate(var(--rotate-letter))
             }

             .hero-title-anime span.char2 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 2));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 2));
                 transform: rotate(calc(var(--rotate-letter) * 2))
             }

             .hero-title-anime span.char3 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 3));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 3));
                 transform: rotate(calc(var(--rotate-letter) * 3))
             }

             .hero-title-anime span.char4 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 4));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 4));
                 transform: rotate(calc(var(--rotate-letter) * 4))
             }

             .hero-title-anime span.char5 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 5));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 5));
                 transform: rotate(calc(var(--rotate-letter) * 5))
             }

             .hero-title-anime span.char6 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 6));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 6));
                 transform: rotate(calc(var(--rotate-letter) * 6))
             }

             .hero-title-anime span.char7 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 7));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 7));
                 transform: rotate(calc(var(--rotate-letter) * 7))
             }

             .hero-title-anime span.char8 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 8));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 8));
                 transform: rotate(calc(var(--rotate-letter) * 8))
             }

             .hero-title-anime span.char9 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 9));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 9));
                 transform: rotate(calc(var(--rotate-letter) * 9))
             }

             .hero-title-anime span.char10 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 10));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 10));
                 transform: rotate(calc(var(--rotate-letter) * 10))
             }

             .hero-title-anime span.char11 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 11));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 11));
                 transform: rotate(calc(var(--rotate-letter) * 11))
             }

             .hero-title-anime span.char12 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 12));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 12));
                 transform: rotate(calc(var(--rotate-letter) * 12))
             }

             .hero-title-anime span.char13 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 13));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 13));
                 transform: rotate(calc(var(--rotate-letter) * 13))
             }

             .hero-title-anime span.char14 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 14));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 14));
                 transform: rotate(calc(var(--rotate-letter) * 14))
             }

             .hero-title-anime span.char15 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 15));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 15));
                 transform: rotate(calc(var(--rotate-letter) * 15))
             }

             .hero-title-anime span.char16 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 16));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 16));
                 transform: rotate(calc(var(--rotate-letter) * 16))
             }

             .hero-title-anime span.char17 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 17));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 17));
                 transform: rotate(calc(var(--rotate-letter) * 17))
             }

             .hero-title-anime span.char18 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 18));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 18));
                 transform: rotate(calc(var(--rotate-letter) * 18))
             }

             .hero-title-anime span.char19 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 19));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 19));
                 transform: rotate(calc(var(--rotate-letter) * 19))
             }

             .hero-title-anime span.char20 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 20));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 20));
                 transform: rotate(calc(var(--rotate-letter) * 20))
             }

             .hero-title-anime span.char21 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 21));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 21));
                 transform: rotate(calc(var(--rotate-letter) * 21))
             }

             .hero-title-anime span.char22 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 22));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 22));
                 transform: rotate(calc(var(--rotate-letter) * 22))
             }

             .hero-title-anime span.char23 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 23));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 23));
                 transform: rotate(calc(var(--rotate-letter) * 23))
             }

             .hero-title-anime span.char24 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 24));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 24));
                 transform: rotate(calc(var(--rotate-letter) * 24))
             }

             .hero-title-anime span.char25 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 25));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 25));
                 transform: rotate(calc(var(--rotate-letter) * 25))
             }

             .hero-title-anime span.char26 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 26));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 26));
                 transform: rotate(calc(var(--rotate-letter) * 26))
             }

             .hero-title-anime span.char27 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 27));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 27));
                 transform: rotate(calc(var(--rotate-letter) * 27))
             }

             .hero-title-anime span.char28 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 28));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 28));
                 transform: rotate(calc(var(--rotate-letter) * 28))
             }

             .hero-title-anime span.char29 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 29));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 29));
                 transform: rotate(calc(var(--rotate-letter) * 29))
             }

             .hero-title-anime span.char30 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 30));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 30));
                 transform: rotate(calc(var(--rotate-letter) * 30))
             }

             .hero-title-anime span.char31 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 31));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 31));
                 transform: rotate(calc(var(--rotate-letter) * 31))
             }

             .hero-title-anime span.char32 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 32));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 32));
                 transform: rotate(calc(var(--rotate-letter) * 32))
             }

             .hero-title-anime span.char33 {
                 -webkit-transform: rotate(calc(var(--rotate-letter) * 33));
                 -ms-transform: rotate(calc(var(--rotate-letter) * 33));
                 transform: rotate(calc(var(--rotate-letter) * 33))
             }

             .hero-7 {
                 overflow: visible;
                 margin-bottom: 80px
             }

             .hero-7 .th-hero-bg {
                 max-width: 1760px;
                 display: block;
                 margin: auto;
                 border-radius: 50px;
                 z-index: 2
             }

             @media (max-width: 1199px) {
                 .hero-7 .th-hero-bg {
                     border-radius: 0
                 }
             }

             .hero-7 .th-hero-bg .hero-bg-shape {
                 position: absolute;
                 width: 57.3%;
                 height: 870px;
                 top: 0px;
                 right: 0px;
                 background: var(--title-color);
                 border-radius: 0 50px 50px 0px;
                 -webkit-clip-path: path("M317.312 0H1009V870H506.219H0.1875L317.312 0Z");
                 clip-path: path("M317.312 0H1009V870H506.219H0.1875L317.312 0Z");
                 z-index: 2
             }

             @media (max-width: 1299px) {
                 .hero-7 .th-hero-bg .hero-bg-shape {
                     height: 808px
                 }
             }

             @media (max-width: 1199px) {
                 .hero-7 .th-hero-bg .hero-bg-shape {
                     top: unset;
                     bottom: 0;
                     border-radius: 0;
                     right: 0px;
                     width: 100%;
                     -webkit-clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 100%);
                     clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 100%)
                 }
             }

             @media (max-width: 375px) {
                 .hero-7 .th-hero-bg .hero-bg-shape {
                     display: none
                 }
             }

             .hero-7 .hero7-bg-shape {
                 position: absolute;
                 width: 58.2%;
                 height: 1070px;
                 top: -122px;
                 right: 0;
                 background: #0A0A0A;
                 z-index: 1;
                 -webkit-clip-path: path("M390 0H1118V1070H0L390 0Z");
                 clip-path: path("M390 0H1118V1070H0L390 0Z")
             }

             @media (max-width: 1800px) {
                 .hero-7 .hero7-bg-shape {
                     width: 58.7%
                 }
             }

             @media (max-width: 1700px) {
                 .hero-7 .hero7-bg-shape {
                     width: 59%
                 }
             }

             @media (max-width: 1500px) {
                 .hero-7 .hero7-bg-shape {
                     width: 59.3%
                 }
             }

             @media (max-width: 1299px) {
                 .hero-7 .hero7-bg-shape {
                     height: 980px;
                     width: 59.6%
                 }
             }

             @media (max-width: 1199px) {
                 .hero-7 .hero7-bg-shape {
                     display: none
                 }
             }

             .hero-7 .hero7-image {
                 position: relative
             }

             .hero-7 .hero7-image .hero-img {
                 position: relative;
                 max-width: 380px;
                 height: 564px;
                 display: block;
                 margin-left: auto;
                 margin-right: 37px;
                 border-radius: 250px;
                 z-index: 2
             }

             @media (max-width: 1199px) {
                 .hero-7 .hero7-image .hero-img {
                     display: block;
                     margin: auto;
                     margin-bottom: 120px
                 }
             }

             @media (max-width: 480px) {
                 .hero-7 .hero7-image .hero-img {
                     max-width: 300px;
                     height: 100%
                 }
             }

             @media (max-width: 375px) {
                 .hero-7 .hero7-image .hero-img {
                     margin-bottom: 70px
                 }
             }

             .hero-7 .hero7-image .hero-img:before,
             .hero-7 .hero7-image .hero-img:after {
                 content: "";
                 position: absolute;
                 inset: -15px;
                 border: 1px solid var(--body-color);
                 opacity: 0.4;
                 border-radius: inherit
             }

             @media (max-width: 340px) {

                 .hero-7 .hero7-image .hero-img:before,
                 .hero-7 .hero7-image .hero-img:after {
                     display: none
                 }
             }

             .hero-7 .hero7-image .hero-img:after {
                 inset: -40px
             }

             .hero-7 .hero7-image .hero-img img {
                 border-radius: 200px
             }

             .hero-7 .hero7-image .hero-img .hero7-shape {
                 position: absolute;
                 z-index: 2
             }

             .hero-7 .hero7-image .hero-img .hero7-shape.style1 {
                 left: -55px;
                 top: 0
             }

             .hero-7 .hero7-image .hero-img .hero7-shape.style1 img {
                 border-radius: 50%
             }

             .hero-7 .hero7-image .hero-img .hero7-shape.style2 {
                 right: -30%;
                 bottom: 0
             }

             @media (max-width: 1500px) {
                 .hero-7 .hero7-image .hero-img .hero7-shape.style2 {
                     right: 0
                 }
             }

             @media (max-width: 480px) {
                 .hero-7 .hero7-image .hero-img .hero7-shape.style2 {
                     display: none
                 }
             }

             .hero-7 .hero7-image .hero-img .hero7-shape.style2 img {
                 border-radius: 20px
             }

             .hero-7 .hero7-image .hero-img .hero7-shape.style3 {
                 top: -25%;
                 right: -50%
             }

             @media (max-width: 1699px) {
                 .hero-7 .hero7-image .hero-img .hero7-shape.style3 {
                     right: -30%
                 }
             }

             @media (max-width: 1599px) {
                 .hero-7 .hero7-image .hero-img .hero7-shape.style3 {
                     right: 0
                 }
             }

             .hero-7 .hero7-image .hero-img .hero7-shape.style4 {
                 top: -7%;
                 left: 0
             }

             .hero-7 .hero7-image .hero-img .hero7-shape.style5 {
                 bottom: 35%;
                 left: -56%
             }

             @media (max-width: 767px) {
                 .hero-7 .hero7-image .hero-img .hero7-shape.style5 {
                     left: 0
                 }
             }

             .hero-7 .hero7-image .hero-img .hero7-shape.style6 {
                 bottom: 31%;
                 right: -40%
             }

             @media (max-width: 1599px) {
                 .hero-7 .hero7-image .hero-img .hero7-shape.style6 {
                     bottom: 34%;
                     right: -46px
                 }
             }

             @media (max-width: 480px) {
                 .hero-7 .hero7-image .hero-img .hero7-shape.style6 {
                     display: none
                 }
             }

             .hero-7 .hero7-image .hero-img .hero7-shape.style7 {
                 bottom: -7%;
                 right: 15%
             }

             @media (max-width: 480px) {
                 .hero-7 .hero7-image .hero-img .hero7-shape.style7 {
                     display: none
                 }
             }

             .hero-7 .hero7-image .client-box2 {
                 background: var(--white-color);
                 border-radius: 20px;
                 padding: 15px 30px;
                 display: inline-block;
                 position: absolute;
                 left: -45%;
                 bottom: 20%;
                 z-index: 2
             }

             @media (max-width: 1299px) {
                 .hero-7 .hero7-image .client-box2 {
                     left: -40%
                 }
             }

             @media (max-width: 767px) {
                 .hero-7 .hero7-image .client-box2 {
                     left: -20%
                 }
             }

             @media (max-width: 575px) {
                 .hero-7 .hero7-image .client-box2 {
                     left: 0%
                 }
             }

             .hero-7 .hero7-image .client-box2 .box-title {
                 font-weight: 500;
                 font-size: 16px;
                 line-height: 26px;
                 color: var(--title-color);
                 margin-bottom: 5px
             }

             .hero-7 .scroll-down {
                 position: absolute;
                 bottom: -11%;
                 left: 34px;
                 width: 150px;
                 height: 150px;
                 border-radius: 50%;
                 padding: 40px 10px;
                 border: 1px solid var(--white-color);
                 text-align: center;
                 z-index: 2;
                 display: block;
                 color: var(--title-color);
                 font-weight: 700;
                 background: #EBEEFF;
                 border: 5px solid var(--white-color)
             }

             @media (max-width: 1699px) {
                 .hero-7 .scroll-down {
                     display: none
                 }
             }

             .hero-7 .scroll-down a {
                 color: inherit
             }

             .hero-7 .scroll-down img {
                 -webkit-filter: brightness(0.9) invert(1);
                 filter: brightness(0.9) invert(1);
                 -webkit-animation: lineDown 1.5s infinite;
                 animation: lineDown 1.5s infinite
             }

             .hero-7 .scroll-down span {
                 display: block
             }

             .hero-7 .client-box {
                 position: absolute;
                 padding-top: 20px
             }

             @media (max-width: 375px) {
                 .hero-7 .client-box {
                     position: relative;
                     z-index: 2;
                     padding: 0 0 40px 0;
                     text-align: center
                 }
             }

             .hero-7 .client-box .ratting-title {
                 font-size: 16px;
                 font-weight: 500;
                 color: var(--title-color);
                 margin-bottom: 5px;
                 display: block
             }

             .hero-7 .client-box .box-title {
                 color: var(--theme-color);
                 font-size: 14px;
                 font-weight: 400
             }

             .hero-7 .client-box .client-wrapp {
                 display: block;
                 text-align: center;
                 margin-left: 50px
             }

             @media (max-width: 480px) {
                 .hero-7 .client-box .client-wrapp {
                     margin-left: 0;
                     text-align: left
                 }
             }

             @media (max-width: 375px) {
                 .hero-7 .client-box .client-wrapp {
                     text-align: center
                 }
             }

             .hero-7 .client-box .client-wrapp .client-review {
                 color: var(--theme-color)
             }

             .hero-7 .client-box .client-wrapp .client-review i {
                 color: var(--theme-color);
                 font-size: 12px;
                 margin-right: 2px
             }

             .hero-style7 {
                 position: relative;
                 padding: 190px 0;
                 z-index: 3
             }

             @media (max-width: 1199px) {
                 .hero-style7 {
                     padding: 150px 0 120px 0;
                     text-align: center
                 }
             }

             @media (max-width: 575px) {
                 .hero-style7 {
                     padding: 100px 0 120px 0
                 }
             }

             .hero-style7 .sub-title {
                 text-transform: uppercase;
                 font-size: 14px;
                 margin-bottom: 10px
             }

             .hero-style7 .hero-title {
                 font-size: 84px;
                 line-height: 94px;
                 font-weight: 600;
                 margin-bottom: 20px
             }

             @media (max-width: 1399px) {
                 .hero-style7 .hero-title {
                     font-size: 74px;
                     line-height: 84px
                 }
             }

             @media (max-width: 1299px) {
                 .hero-style7 .hero-title {
                     font-size: 64px;
                     line-height: 74px
                 }
             }

             @media (max-width: 991px) {
                 .hero-style7 .hero-title {
                     font-size: 54px;
                     line-height: 64px
                 }
             }

             @media (max-width: 575px) {
                 .hero-style7 .hero-title {
                     font-size: 44px;
                     line-height: 54px
                 }
             }

             @media (max-width: 375px) {
                 .hero-style7 .hero-title {
                     font-size: 34px;
                     line-height: 44px
                 }
             }

             .hero-style7 .hero-text {
                 font-weight: 400;
                 max-width: 580px;
                 font-family: var(--body-font)
             }

             @media (max-width: 1199px) {
                 .hero-style7 .hero-text {
                     max-width: 100%;
                     display: block
                 }
             }

             .hero-8 .th-circle .circle.style2 {
                 width: 20px;
                 height: 20px;
                 top: 20%;
                 left: 23%
             }

             .hero-8 .th-circle .circle.style3 {
                 width: 10px;
                 height: 10px;
                 top: 37%;
                 left: unset;
                 right: 38%
             }

             .hero-8 .th-circle .circle.style1 {
                 left: unset;
                 right: 40%;
                 top: unset;
                 bottom: 10%;
                 background-color: #D02CFF;
                 opacity: 1;
                 -webkit-transition-delay: 2s;
                 transition-delay: 2s
             }

             .hero-8 .th-circle .circle {
                 position: absolute;
                 top: 50%;
                 left: 5%;
                 width: 10px;
                 height: 10px;
                 background-color: var(--theme-color);
                 border-radius: 50%
             }

             .hero-style8 {
                 padding: 85px 0 85px 0;
             }

             @media (max-width: 1399px) {
                 .hero-style8 {
                     padding: 120px 0 134px 0;
                 }
             }

             @media (max-width: 1199px) {
                 .hero-style8 {
                     padding: 80px 0 80px 0;
                 }
             }

             .hero-style8 .hero-title {
                 font-weight: 600;
                 font-size: 70px;
                 line-height: 60px;
                 letter-spacing: -0.02em;
                 text-transform: capitalize
             }

             @media (max-width: 1399px) {
                 .hero-style8 .hero-title {
                     font-size: 74px;
                     line-height: 64px;
                 }
             }

             @media (max-width: 991px) {
                 .hero-style8 .hero-title {
                     font-size: 64px;
                     line-height: 74px
                 }
             }

             @media (max-width: 767px) {
                 .hero-style8 .hero-title {
                     font-size: 44px;
                     line-height: 54px
                 }
             }

             .hero-style8 .hero-title .title {
                 font-size: 30px;
                 line-height: 0px;
                 font-weight: 500
             }

             @media (max-width: 1399px) {
                 .hero-style8 .hero-title .title {
                     font-size: 26px;
                     line-height: 1px;
                 }
             }

             @media (max-width: 991px) {
                 .hero-style8 .hero-title .title {
                     font-size: 54px;
                     line-height: 64px
                 }
             }

             @media (max-width: 767px) {
                 .hero-style8 .hero-title .title {
                     font-size: 40px;
                     line-height: 50px
                 }
             }

             .hero-style8 .hero-text {
                 max-width: 642px;
                 margin-bottom: 35px
             }

             .hero-style8 .form-group {
                 position: relative;
                 z-index: 2;
                 max-width: 530px;
                 margin-bottom: 20px
             }

             .hero-style8 .form-group select,
             .hero-style8 .form-group .form-control,
             .hero-style8 .form-group .form-select,
             .hero-style8 .form-group textarea,
             .hero-style8 .form-group input {
                 height: 50px;
                 padding: 0 25px 0 25px;
                 padding-right: 45px;
                 border: none;
                 color: var(--body-color);
                 border-radius: 100px;
                 font-size: 16px;
                 width: 100%;
                 height: 76px;
                 background-color: var(--white-color);
                 border-radius: 40px;
                 padding: 0 170px 0 35px
             }

             @media (max-width: 375px) {

                 .hero-style8 .form-group select,
                 .hero-style8 .form-group .form-control,
                 .hero-style8 .form-group .form-select,
                 .hero-style8 .form-group textarea,
                 .hero-style8 .form-group input {
                     padding: 0 90px 0 35px
                 }
             }

             .hero-style8 .form-group .th-btn {
                 position: absolute;
                 top: 18px;
                 right: 18px;
                 font-size: 14px;
                 padding: 13px 38px
             }

             @media (max-width: 375px) {
                 .hero-style8 .form-group .th-btn {
                     padding: 13px 20px
                 }
             }

             .hero-style8 .text {
                 font-size: 12px
             }

             .hero-style8 .line-btn {
                 font-size: 16px;
                 font-weight: 600;
                 color: var(--body-color)
             }

             .hero-style8 .line-btn:before {
                 background-color: var(--body-color)
             }

             .error-content {
                 text-align: center
             }

             .error-img {
                 text-align: center;
                 margin-bottom: 45px
             }

             .error-title {
                 margin-bottom: 20px
             }

             .error-text {
                 margin-bottom: 35px;
                 max-width: 500px;
                 margin-left: auto;
                 margin-right: auto
             }

             @media (max-width: 991px) {
                 .error-title {
                     margin-bottom: 15px
                 }

                 .error-img {
                     margin-bottom: 30px
                 }

                 .error-text {
                     margin-bottom: 25px
                 }
             }

             @media (max-width: 767px) {
                 .error-title {
                     margin-bottom: 10px
                 }
             }

             .popup-search-box {
                 position: fixed;
                 top: 0;
                 left: 50%;
                 background-color: rgba(0, 0, 0, 0.95);
                 height: 0;
                 width: 0;
                 overflow: hidden;
                 z-index: 99999;
                 opacity: 0;
                 visibility: hidden;
                 border-radius: 50%;
                 -webkit-transform: translateX(-50%);
                 -ms-transform: translateX(-50%);
                 transform: translateX(-50%);
                 -webkit-transition: all ease 0.4s;
                 transition: all ease 0.4s
             }

             .popup-search-box button.searchClose {
                 width: 60px;
                 height: 60px;
                 position: absolute;
                 top: 40px;
                 right: 40px;
                 border-width: 1px;
                 border-style: solid;
                 border-color: var(--theme-color);
                 background-color: transparent;
                 font-size: 22px;
                 border-radius: 50%;
                 -webkit-transform: rotate(0);
                 -ms-transform: rotate(0);
                 transform: rotate(0);
                 -webkit-transition: all ease 0.4s;
                 transition: all ease 0.4s;
                 color: var(--theme-color)
             }

             .popup-search-box button.searchClose:hover {
                 color: var(--body-color);
                 background-color: #fff;
                 border-color: transparent;
                 border-color: transparent;
                 -webkit-transform: rotate(90deg);
                 -ms-transform: rotate(90deg);
                 transform: rotate(90deg)
             }

             .popup-search-box form {
                 position: absolute;
                 top: 50%;
                 left: 50%;
                 display: inline-block;
                 padding-bottom: 40px;
                 cursor: auto;
                 width: 100%;
                 max-width: 700px;
                 -webkit-transform: translate(-50%, -50%) scale(0);
                 -ms-transform: translate(-50%, -50%) scale(0);
                 transform: translate(-50%, -50%) scale(0);
                 -webkit-transition: -webkit-transform ease 0.4s;
                 transition: -webkit-transform ease 0.4s;
                 transition: transform ease 0.4s;
                 transition: transform ease 0.4s, -webkit-transform ease 0.4s
             }

             @media (max-width: 1199px) {
                 .popup-search-box form {
                     max-width: 600px
                 }
             }

             .popup-search-box form input {
                 font-size: 18px;
                 height: 70px;
                 width: 100%;
                 border: 2px solid var(--theme-color);
                 background-color: transparent;
                 padding-left: 30px;
                 color: #fff;
                 border-radius: 50px
             }

             .popup-search-box form input::-moz-placeholder {
                 color: #fff
             }

             .popup-search-box form input::-webkit-input-placeholder {
                 color: #fff
             }

             .popup-search-box form input:-ms-input-placeholder {
                 color: #fff
             }

             .popup-search-box form input::-ms-input-placeholder {
                 color: #fff
             }

             .popup-search-box form input::placeholder {
                 color: #fff
             }

             .popup-search-box form button {
                 position: absolute;
                 top: 0px;
                 background-color: transparent;
                 border: none;
                 color: #fff;
                 font-size: 24px;
                 right: 12px;
                 color: var(--white-color);
                 cursor: pointer;
                 width: 70px;
                 height: 70px;
                 -webkit-transition: all ease 0.4s;
                 transition: all ease 0.4s;
                 -webkit-transform: scale(1.001);
                 -ms-transform: scale(1.001);
                 transform: scale(1.001)
             }

             .popup-search-box form button:hover {
                 -webkit-transform: scale(1.1);
                 -ms-transform: scale(1.1);
                 transform: scale(1.1)
             }

             .popup-search-box.show {
                 opacity: 1;
                 visibility: visible;
                 width: 100.1%;
                 height: 100%;
                 -webkit-transition: all ease 0.4s;
                 transition: all ease 0.4s;
                 border-radius: 0
             }

             .popup-search-box.show form {
                 -webkit-transition-delay: 0.5s;
                 transition-delay: 0.5s;
                 -webkit-transform: translate(-50%, -50%) scale(1);
                 -ms-transform: translate(-50%, -50%) scale(1);
                 transform: translate(-50%, -50%) scale(1)
             }

             .sidemenu-wrapper {
                 position: fixed;
                 z-index: 99999;
                 right: 0;
                 top: 0;
                 height: 100%;
                 width: 0;
                 background-color: rgba(0, 0, 0, 0.75);
                 opacity: 0;
                 visibility: hidden;
                 -webkit-transition: all ease 0.8s;
                 transition: all ease 0.8s
             }

             .sidemenu-wrapper .closeButton {
                 display: inline-block;
                 border: 1px solid;
                 width: 50px;
                 height: 50px;
                 line-height: 48px;
                 font-size: 24px;
                 padding: 0;
                 position: absolute;
                 top: 20px;
                 right: 20px;
                 background-color: transparent;
                 border-radius: 50%;
                 -webkit-transform: rotate(0);
                 -ms-transform: rotate(0);
                 transform: rotate(0);
                 -webkit-transition: all ease 0.4s;
                 transition: all ease 0.4s
             }

             .sidemenu-wrapper .closeButton:hover {
                 color: var(--theme-color);
                 border-color: var(--theme-color);
                 -webkit-transform: rotate(90deg);
                 -ms-transform: rotate(90deg);
                 transform: rotate(90deg)
             }

             .sidemenu-wrapper .sidemenu-content {
                 background-color: var(--white-color);
                 width: 450px;
                 margin-left: auto;
                 padding: 80px 30px;
                 height: 100%;
                 overflow: scroll;
                 position: relative;
                 right: -500px;
                 cursor: auto;
                 -webkit-transition-delay: 1s;
                 transition-delay: 1s;
                 -webkit-transition: right ease 1s;
                 transition: right ease 1s
             }

             @media (max-width: 575px) {
                 .sidemenu-wrapper .sidemenu-content {
                     width: 320px
                 }
             }

             .sidemenu-wrapper .sidemenu-content .footer-widget .widget_title:after {
                 border: 2px solid var(--white-color)
             }

             .sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-track {
                 box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
                 background-color: #F5F5F5
             }

             .sidemenu-wrapper .sidemenu-content::-webkit-scrollbar {
                 width: 2px;
                 background-color: #F5F5F5
             }

             .sidemenu-wrapper .widget {
                 padding: 0;
                 border: none;
                 background-color: transparent
             }

             .sidemenu-wrapper.show {
                 opacity: 1;
                 visibility: visible;
                 width: 100%;
                 -webkit-transition: all ease 0.8s;
                 transition: all ease 0.8s
             }

             .sidemenu-wrapper.show .sidemenu-content {
                 right: 0;
                 opacity: 1;
                 visibility: visible
             }

             .woocommerce-message,
             .woocommerce-info {
                 position: relative;
                 padding: 11px 20px 11px 50px;
                 background-color: var(--theme-color);
                 color: var(--white-color);
                 font-size: 14px;
                 font-weight: 600;
                 margin-bottom: 15px;
                 border-radius: 5px
             }

             .woocommerce-message a,
             .woocommerce-info a {
                 color: var(--white-color);
                 text-decoration: underline
             }

             .woocommerce-message a:hover,
             .woocommerce-info a:hover {
                 color: var(--title-color)
             }

             .woocommerce-message:before,
             .woocommerce-info:before {
                 content: '\f06a';
                 font-family: var(--icon-font);
                 font-weight: 400;
                 margin-right: 10px;
                 font-size: 18px;
                 position: absolute;
                 left: 20px;
                 top: 11px
             }

             .woocommerce-notices-wrapper .woocommerce-message {
                 background-color: var(--theme-color);
                 color: var(--white-color)
             }

             .woocommerce-notices-wrapper .woocommerce-message:before {
                 content: '\f14a';
                 font-weight: 300
             }

             .woocommerce-form-login-toggle .woocommerce-info {
                 background-color: var(--theme-color);
                 color: var(--white-color)
             }

             .woocommerce-form-login-toggle .woocommerce-info a {
                 color: inherit
             }

             .woocommerce-form-login-toggle .woocommerce-info a:hover {
                 color: var(--title-color)
             }

             .woocommerce-form-register,
             .woocommerce-form-coupon,
             .woocommerce-form-login {
                 padding: 35px 40px 35px 40px;
                 background-color: var(--white-color);
                 box-shadow: 0px 6px 30px rgba(1, 15, 28, 0.1);
                 margin-bottom: 0;
                 border-radius: 10px
             }

             @media (max-width: 575px) {

                 .woocommerce-form-register,
                 .woocommerce-form-coupon,
                 .woocommerce-form-login {
                     padding: 40px 20px
                 }
             }

             .woocommerce-form-register .form-group,
             .woocommerce-form-coupon .form-group,
             .woocommerce-form-login .form-group {
                 margin-bottom: 20px
             }

             .woocommerce-form-register .form-group:last-child,
             .woocommerce-form-coupon .form-group:last-child,
             .woocommerce-form-login .form-group:last-child {
                 margin-bottom: 0
             }

             .woocommerce-form-login {
                 margin-bottom: 30px
             }

             .woocommerce-error {
                 background-color: var(--error-color);
                 color: #fff;
                 list-style: none;
                 padding: 10px 26px;
                 margin: 0 0 30px 0;
                 border-radius: 5px;
                 font-weight: 700;
                 font-size: 14px
             }

             nav.woocommerce-MyAccount-navigation li {
                 border: 1px solid #ddd;
                 margin: 0;
                 border-top: none
             }

             nav.woocommerce-MyAccount-navigation li:first-child {
                 border-top: 1px solid #ddd
             }

             nav.woocommerce-MyAccount-navigation li a {
                 color: var(--title-color);
                 font-weight: 700;
                 padding: 7px 17px;
                 display: block
             }

             nav.woocommerce-MyAccount-navigation li.is-active a,
             nav.woocommerce-MyAccount-navigation li a:hover {
                 color: var(--white-color);
                 background-color: var(--theme-color)
             }

             .woocommerce-MyAccount-content h3 {
                 margin-top: -0.3em
             }

             .woocommerce-MyAccount-content .btn {
                 background-color: var(--theme-color);
                 color: var(--white-color);
                 font-size: 14px;
                 padding: 10px 25px;
                 font-weight: 700
             }

             .woocommerce-MyAccount-content .btn:hover {
                 background-color: var(--title-color);
                 color: var(--white-color)
             }

             table.variations,
             .woocommerce-grouped-product-list-item {
                 border-collapse: separate;
                 border-spacing: 0 15px;
                 margin-bottom: 5px;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 border: none
             }

             table.variations td,
             .woocommerce-grouped-product-list-item td {
                 border: none;
                 vertical-align: middle;
                 padding: 0 5px
             }

             table.variations td:first-child,
             .woocommerce-grouped-product-list-item td:first-child {
                 padding: 0
             }

             table.variations label,
             .woocommerce-grouped-product-list-item label {
                 margin: 0;
                 font-size: 14px;
                 text-transform: capitalize
             }

             table.variations label a,
             .woocommerce-grouped-product-list-item label a {
                 color: var(--title-color)
             }

             table.variations label a:hover,
             .woocommerce-grouped-product-list-item label a:hover {
                 color: var(--theme-color)
             }

             table.variations .label,
             .woocommerce-grouped-product-list-item .label {
                 border: none
             }

             table.variations__label,
             .woocommerce-grouped-product-list-item__label {
                 border: none !important;
                 font-weight: 600
             }

             table.variations__price,
             .woocommerce-grouped-product-list-item__price {
                 border: none !important
             }

             table.variations__price .price,
             table.variations__price .amount,
             .woocommerce-grouped-product-list-item__price .price,
             .woocommerce-grouped-product-list-item__price .amount {
                 font-size: 18px !important
             }

             table.variations del,
             .woocommerce-grouped-product-list-item del {
                 margin-left: 12px
             }

             .woocommerce-product-attributes th,
             .woocommerce-product-attributes td {
                 border: 1px solid var(--border-color)
             }

             .woocommerce-product-attributes th p:last-child,
             .woocommerce-product-attributes td p:last-child {
                 margin-bottom: 0
             }

             .woocommerce-grouped-product-list.group_table {
                 border-collapse: collapse;
                 margin-bottom: 15px
             }

             .woocommerce-grouped-product-list.group_table .woocommerce-Price-amount.amount {
                 font-size: 16px;
                 color: var(--title-color)
             }

             .woocommerce-grouped-product-list.group_table label {
                 margin: 0 0 0 10px;
                 margin: 0 0 0 10px;
                 font-family: var(--title-font);
                 font-size: 18px
             }

             .woocommerce-grouped-product-list.group_table .qty-input {
                 border-color: #e3e6e9
             }

             .woocommerce-grouped-product-list.group_table tr {
                 border-bottom: 1px solid #e3e6e9
             }

             .woocommerce-grouped-product-list.group_table tr:last-child {
                 border-bottom: none
             }

             .woocommerce-grouped-product-list.group_table td {
                 padding: 30px 5px
             }

             table.variations {
                 width: -webkit-max-content;
                 width: -moz-max-content;
                 width: max-content;
                 position: relative
             }

             table.variations td {
                 padding: 0
             }

             table.variations td.label {
                 padding-right: 10px;
                 width: -webkit-max-content;
                 width: -moz-max-content;
                 width: max-content
             }

             table.variations select {
                 width: -webkit-max-content;
                 width: -moz-max-content;
                 width: max-content;
                 font-weight: 400;
                 line-height: 1.5;
                 vertical-align: middle;
                 margin: 0;
                 padding-right: 54px;
                 padding-left: 20px;
                 height: 50px
             }

             table.variations .reset_variations {
                 margin-left: 16px;
                 display: inline-block;
                 position: absolute;
                 left: 100%;
                 bottom: 25px
             }

             .woosq-product .product .woocommerce-grouped-product-list-item__quantity,
             .woosq-product .product .woocommerce-grouped-product-list-item__label,
             .woosq-product .product .woocommerce-grouped-product-list-item__price {
                 width: auto !important
             }

             .woocommerce-variation.single_variation {
                 margin-bottom: 30px
             }

             .woocommerce-variation.single_variation .price {
                 color: var(--title-color);
                 font-weight: 700
             }

             .wooscp-table-items td.woocommerce-product-attributes-item__value {
                 padding-left: 15px !important
             }

             .wooscp-table-items a.added_to_cart.wc-forward {
                 margin-left: 15px;
                 text-decoration: underline
             }

             .tinvwl_added_to_wishlist.tinv-modal.tinv-modal-open {
                 z-index: 1111
             }

             table.woocommerce-product-attributes {
                 margin-bottom: 30px
             }

             #woosq-popup .product_meta {
                 margin-top: 20px
             }

             #woosq-popup .product_title {
                 font-size: 24px;
                 margin-bottom: 5px
             }

             #woosq-popup .single-product .product .actions {
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 20px
             }

             #woosq-popup .single-product .product .actions>div {
                 height: auto;
                 overflow: visible;
                 width: -webkit-max-content;
                 width: -moz-max-content;
                 width: max-content
             }

             #woosq-popup .single-product .product .actions>div .quantity.style2.woocommerce-grouped-product-list-item__quantity {
                 width: -webkit-max-content;
                 width: -moz-max-content;
                 width: max-content
             }

             .login-tab {
                 margin-bottom: 30px;
                 -webkit-box-pack: center;
                 -webkit-justify-content: center;
                 -ms-flex-pack: center;
                 justify-content: center
             }

             .login-tab button.nav-link {
                 background-color: var(--smoke-color);
                 color: var(--title-color);
                 padding: 11px 39px;
                 font-size: 18px;
                 font-weight: 500;
                 border-radius: 15px ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€šÃ‚Â¹15px 0
             }

             .login-tab button.nav-link.active {
                 background-color: var(--theme-color);
                 color: var(--white-color)
             }

             .star-rating {
                 overflow: hidden;
                 position: relative;
                 width: 100px;
                 height: 1.2em;
                 line-height: 1.2em;
                 display: block;
                 font-family: var(--icon-font);
                 font-weight: 700;
                 font-size: 14px
             }

             .star-rating:before {
                 content: "\e28b\e28b\e28b\e28b\e28b";
                 color: #e1e1e1;
                 float: left;
                 top: 0;
                 left: 0;
                 position: absolute;
                 letter-spacing: 3px
             }

             .star-rating span {
                 overflow: hidden;
                 float: left;
                 top: 0;
                 left: 0;
                 position: absolute;
                 padding-top: 1.5em
             }

             .star-rating span:before {
                 content: "\e28b\e28b\e28b\e28b\e28b";
                 top: 0;
                 position: absolute;
                 left: 0;
                 color: var(--theme-color);
                 letter-spacing: 3px
             }

             .rating-select label {
                 margin: 0;
                 margin-right: 10px
             }

             .rating-select p.stars {
                 margin-bottom: 0;
                 line-height: 1
             }

             .rating-select p.stars a {
                 position: relative;
                 height: 14px;
                 width: 18px;
                 text-indent: -999em;
                 display: inline-block;
                 text-decoration: none
             }

             .rating-select p.stars a::before {
                 display: block;
                 position: absolute;
                 top: 0;
                 left: 0;
                 width: 18px;
                 height: 14px;
                 line-height: 1;
                 font-family: var(--icon-font);
                 content: "\e28b";
                 font-weight: 400;
                 text-indent: 0;
                 color: var(--yellow-color)
             }

             .rating-select p.stars a:hover~a::before {
                 content: "\e28b";
                 font-weight: 400
             }

             .rating-select p.stars:hover a::before {
                 content: "\e28b";
                 font-weight: 700
             }

             .rating-select p.stars.selected a.active::before {
                 content: "\e28b";
                 font-weight: 700
             }

             .rating-select p.stars.selected a.active~a::before {
                 content: "\e28b";
                 font-weight: 400
             }

             .rating-select p.stars.selected a:not(.active)::before {
                 content: "\e28b";
                 font-weight: 700
             }

             @media (max-width: 767px) {

                 .woocommerce-message,
                 .woocommerce-info {
                     font-size: 14px;
                     line-height: 22px;
                     padding: 10px 15px 10px 37px
                 }

                 .woocommerce-message:before,
                 .woocommerce-info:before {
                     font-size: 16px;
                     top: 10px;
                     left: 15px
                 }
             }

             .th-product {
                 text-align: center;
                 -webkit-transition: all ease 0.4s;
                 transition: all ease 0.4s
             }

             .th-product .product-title {
                 font-size: 20px;
                 margin: 10px 0 10px 0
             }

             .th-product .product-title a {
                 color: inherit
             }

             .th-product .product-title a:hover {
                 color: var(--theme-color)
             }

             .th-product .price {
                 display: block;
                 color: var(--body-color);
                 font-weight: 500;
                 margin-bottom: -0.4em;
                 font-family: var(--body-font)
             }

             .th-product .price del {
                 margin-left: 10px;
                 color: #a9a9a9
             }

             .th-product .product-img {
                 --space: 20px;
                 background-color: var(--smoke-color);
                 overflow: hidden;
                 position: relative;
                 margin: 0 0 25px 0;
                 text-align: center;
                 background-color: var(--smoke-color);
                 z-index: 2;
                 border-radius: 5px
             }

             .th-product .product-img:before {
                 --space: 20px;
                 content: '';
                 height: calc(100% - var(--space)*2);
                 width: calc(100% - var(--space)*2);
                 border-radius: inherit;
                 position: absolute;
                 top: var(--space);
                 left: var(--space);
                 background-color: var(--title-color);
                 z-index: 1;
                 -webkit-transform: scaleX(0);
                 -ms-transform: scaleX(0);
                 transform: scaleX(0);
                 visibility: hidden;
                 opacity: 0;
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out
             }

             .th-product .product-img img {
                 width: 100%;
                 -webkit-transition: all ease 0.4s;
                 transition: all ease 0.4s;
                 -webkit-transform: scale(1);
                 -ms-transform: scale(1);
                 transform: scale(1)
             }

             .th-product .product-img .tag {
                 font-size: 14px;
                 position: absolute;
                 top: 15px;
                 left: 15px;
                 background-color: var(--theme-color);
                 color: var(--white-color);
                 padding: 0 12px;
                 min-width: 60px;
                 z-index: 3;
                 border-radius: 3px;
                 line-height: 24px
             }

             .th-product .star-rating {
                 margin: 0 auto 5px auto;
                 width: 93px
             }

             .th-product .actions {
                 height: 100%;
                 position: absolute;
                 left: 0;
                 top: 50%;
                 right: 0;
                 text-align: center;
                 -webkit-transform: translateY(-50%);
                 -ms-transform: translateY(-50%);
                 transform: translateY(-50%);
                 z-index: 3;
                 margin-top: 0;
                 opacity: 0;
                 visibility: hidden;
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: center;
                 -webkit-justify-content: center;
                 -ms-flex-pack: center;
                 justify-content: center;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center
             }

             .th-product .actions .icon-btn {
                 --btn-size: 40px;
                 font-size: 14px;
                 border-color: var(--white-color);
                 box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
                 color: var(--white-color)
             }

             .th-product .actions .icon-btn:hover {
                 color: var(--title-color);
                 border-color: var(--white-color)
             }

             .th-product .actions>* {
                 margin: 0 var(--icon-gap-x, 5px)
             }

             .th-product .actions>*>a {
                 margin: 0
             }

             .th-product .icon-btn {
                 -webkit-transform: translateY(30px);
                 -ms-transform: translateY(30px);
                 transform: translateY(30px);
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out
             }

             .th-product .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt,
             .th-product .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
                 width: 40px;
                 height: 40px;
                 line-height: 40px;
                 display: inline-block
             }

             .th-product .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt::before,
             .th-product .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt::before {
                 position: relative;
                 top: 0;
                 left: 0;
                 line-height: inherit;
                 margin: 0;
                 font-size: 24px
             }

             .th-product .tinv-wishlist a {
                 display: inline-block;
                 width: 40px;
                 height: 40px;
                 line-height: 40px;
                 background-color: transparent;
                 color: var(--white-color);
                 border-radius: 4px
             }

             .th-product .tinv-wishlist a:hover {
                 background-color: var(--white-color);
                 color: var(--title-color)
             }

             .th-product .add_to_cart_button.added {
                 display: none
             }

             .th-product .added_to_cart {
                 width: 40px;
                 height: 40px;
                 line-height: 40px;
                 background-color: var(--white-color);
                 color: var(--title-color);
                 font-size: 0;
                 text-align: center;
                 border-radius: 4px
             }

             .th-product .added_to_cart:after {
                 content: "\f07a";
                 position: relative;
                 font-family: var(--icon-font);
                 font-size: 16px;
                 font-weight: 700
             }

             .th-product .added_to_cart:hover {
                 background-color: var(--title-color);
                 color: var(--white-color)
             }

             .th-product .action-btn {
                 background-color: var(--white-color);
                 font-size: 14px;
                 font-family: var(--title-font);
                 text-transform: uppercase;
                 font-weight: bold;
                 display: inline-block;
                 padding: 13px 25px
             }

             .th-product:hover .product-img img {
                 -webkit-transform: scale(1.1);
                 -ms-transform: scale(1.1);
                 transform: scale(1.1)
             }

             .th-product:hover .product-img:before {
                 -webkit-transform: scaleX(1);
                 -ms-transform: scaleX(1);
                 transform: scaleX(1);
                 visibility: visible;
                 opacity: 0.7
             }

             .th-product:hover .actions {
                 margin-top: 0;
                 opacity: 1;
                 visibility: visible
             }

             .th-product:hover .icon-btn {
                 -webkit-transform: translateY(0);
                 -ms-transform: translateY(0);
                 transform: translateY(0)
             }

             .th-product.list-view {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 text-align: left;
                 height: 100%
             }

             .th-product.list-view .product-img {
                 width: 100%;
                 max-width: 200px;
                 margin: 0
             }

             .th-product.list-view .star-rating {
                 margin: 0 auto 10px 0;
                 width: 93px
             }

             .th-product.list-view .product-content {
                 -webkit-box-flex: 1;
                 -webkit-flex: 1;
                 -ms-flex: 1;
                 flex: 1;
                 border: 1px solid var(--th-border-color);
                 border-left: none;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 -webkit-box-orient: vertical;
                 -webkit-box-direction: normal;
                 -webkit-flex-direction: column;
                 -ms-flex-direction: column;
                 flex-direction: column;
                 -webkit-box-pack: center;
                 -webkit-justify-content: center;
                 -ms-flex-pack: center;
                 justify-content: center;
                 -webkit-box-align: start;
                 -webkit-align-items: flex-start;
                 -ms-flex-align: start;
                 align-items: flex-start;
                 padding: 0 25px
             }

             .th-product.list-view .actions {
                 --btn-size: 35px;
                 --btn-font-size: 13px;
                 --icon-gap-x: 2px
             }

             .th-product.list-view .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt,
             .th-product.list-view .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
                 width: 35px;
                 height: 35px;
                 line-height: 35px
             }

             .th-product.list-view .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt::before,
             .th-product.list-view .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt::before {
                 font-size: 20px
             }

             .th-product.list-view .tinv-wishlist a {
                 width: 35px;
                 height: 35px;
                 line-height: 35px
             }

             .th-product.list-view .added_to_cart {
                 width: 35px;
                 height: 35px;
                 line-height: 35px
             }

             .th-product.list-view .added_to_cart:after {
                 font-size: 16px
             }

             .th-product.list-view .action-btn {
                 padding: 8px 15px
             }

             .th-product.list-view .tag {
                 top: 8px;
                 right: 8px;
                 padding: 0px 15px
             }

             .th-product.list-view .product-title {
                 font-size: 18px;
                 margin: 0 0 5px 0
             }

             .th-product.list-view .product-price {
                 font-size: 14px
             }

             #productCarousel .slick-arrow {
                 top: 37.5%
             }

             .mfp-content {
                 margin: 1.5rem auto
             }

             .mfp-content .product-details-img {
                 padding-top: 15px
             }

             .mfp-content .product-about {
                 padding-top: 20px;
                 padding-bottom: 20px
             }

             .mfp-content .container {
                 position: relative
             }

             .mfp-content .product-big-img {
                 margin-top: 20px;
                 margin-bottom: 20px
             }

             .mfp-fade.mfp-bg {
                 opacity: 0;
                 -webkit-transition: all 0.15s ease-out;
                 transition: all 0.15s ease-out
             }

             .mfp-fade.mfp-bg.mfp-ready {
                 opacity: 0.8
             }

             .mfp-fade.mfp-bg.mfp-removing {
                 opacity: 0
             }

             .mfp-fade.mfp-wrap .mfp-content {
                 opacity: 0;
                 -webkit-transition: all 0.4s ease-out;
                 transition: all 0.4s ease-out
             }

             .mfp-fade.mfp-wrap.mfp-ready .mfp-content {
                 opacity: 1
             }

             .mfp-fade.mfp-wrap.mfp-removing .mfp-content {
                 opacity: 0
             }

             .woosq-popup {
                 max-height: 600px;
                 max-width: 1220px
             }

             .woosq-popup .product_meta>span>a:after,
             .woosq-popup .product_meta>span>span:after {
                 display: none
             }

             .woosq-product>.product>div {
                 max-height: 600px;
                 min-height: 460px;
                 height: auto
             }

             .th-sort-bar {
                 padding: 10px;
                 margin: 0 0 24px 0;
                 background-color: var(--smoke-color);
                 border-radius: 5px
             }

             .th-sort-bar .row {
                 --bs-gutter-x: 0;
                 --bs-gutter-y: 15px
             }

             .th-sort-bar select {
                 height: 50px;
                 border: 1px solid var(--th-border-color);
                 background-color: var(--white-color);
                 width: -webkit-fit-content;
                 width: -moz-fit-content;
                 width: fit-content;
                 min-width: 250px;
                 font-size: 16px;
                 margin: 0;
                 color: var(--body-color)
             }

             .th-sort-bar .woocommerce-result-count {
                 padding-left: 15px;
                 margin-bottom: 0;
                 color: var(--body-color)
             }

             .th-sort-bar .nav a {
                 display: inline-block;
                 height: 50px;
                 width: 50px;
                 line-height: 50px;
                 border: 1px solid var(--th-border-color);
                 background-color: var(--white-color);
                 text-align: center;
                 position: relative;
                 font-family: var(--title-font);
                 font-weight: 600;
                 font-size: 16px;
                 text-transform: capitalize;
                 color: var(--body-color);
                 margin: 0 0 0 10px
             }

             .th-sort-bar .nav a.active,
             .th-sort-bar .nav a:hover {
                 color: var(--theme-color)
             }

             .product-thumb-area {
                 position: relative;
                 margin-right: 10px
             }

             .product-thumb-area .product-thumb-tab {
                 position: absolute;
                 top: 0;
                 left: 0
             }

             .product-thumb-tab {
                 --thumb: 120px;
                 --gap: 10px;
                 max-width: var(--thumb);
                 margin-left: calc(0px - var(--thumb)/2);
                 position: relative;
                 z-index: 3;
                 display: grid;
                 -webkit-align-content: center;
                 -ms-flex-line-pack: center;
                 align-content: center;
                 height: 100%
             }

             .product-thumb-tab .tab-btn {
                 background-color: var(--white-color);
                 cursor: pointer;
                 height: var(--thumb);
                 width: var(--thumb);
                 padding: var(--gap);
                 border-radius: 10px
             }

             .product-thumb-tab .tab-btn img {
                 max-width: 100%;
                 border-radius: inherit
             }

             .product-thumb-tab .tab-btn:not(:last-of-type) {
                 margin-bottom: 20px
             }

             .product-thumb-tab .indicator {
                 position: absolute;
                 top: calc(var(--pos-y) + var(--gap));
                 left: calc(var(--pos-x) + var(--gap));
                 width: calc(var(--width-set) - var(--gap)*2);
                 height: calc(var(--height-set) - var(--gap)*2);
                 border: 2px solid var(--theme-color);
                 border-radius: 10px;
                 pointer-events: none;
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out
             }

             .product-big-img {
                 background-color: var(--smoke-color2);
                 text-align: center;
                 border-radius: 10px;
                 overflow: hidden
             }

             .product-big-img .img {
                 width: 100%
             }

             .product-big-img .img img {
                 width: 100%;
                 height: 100%;
                 object-fit: cover
             }

             .quantity {
                 position: relative;
                 display: -webkit-inline-box;
                 display: -webkit-inline-flex;
                 display: -ms-inline-flexbox;
                 display: inline-flex;
                 vertical-align: middle
             }

             .quantity>.screen-reader-text {
                 display: inline-block;
                 font-weight: 600;
                 color: var(--title-color);
                 font-family: var(--title-font);
                 margin: 0;
                 -webkit-align-self: center;
                 -ms-flex-item-align: center;
                 align-self: center;
                 margin-right: 10px
             }

             .quantity .qty-btn,
             .quantity .qty-input {
                 display: inline-block;
                 width: 50px;
                 height: 50px;
                 border: none;
                 border-right: none;
                 background-color: transparent;
                 padding: 0;
                 border-radius: 0;
                 text-align: center;
                 color: var(--body-color);
                 font-size: 18px;
                 font-weight: 600
             }

             .quantity .qty-btn:last-child,
             .quantity .qty-input:last-child {
                 border-right: none
             }

             .quantity .qty-btn {
                 font-size: 16px
             }

             .product_meta {
                 font-weight: 700;
                 font-size: 16px;
                 font-family: var(--body-font);
                 margin: 35px 0 0 0
             }

             .product_meta>span {
                 display: block;
                 margin-bottom: 5px;
                 color: var(--title-color);
                 font-weight: bold
             }

             .product_meta>span:last-child {
                 margin-bottom: 0
             }

             .product_meta>span a {
                 color: inherit
             }

             .product_meta>span a:hover {
                 color: var(--theme-color)
             }

             .product_meta>span>a,
             .product_meta>span>span {
                 position: relative;
                 color: var(--body-color);
                 font-weight: 400
             }

             .product_meta>span>a:after,
             .product_meta>span>span:after {
                 content: ",";
                 margin-right: 5px
             }

             .product_meta>span>a:last-child:after,
             .product_meta>span>span:last-child:after {
                 display: none
             }

             .product_meta>span>a:first-child,
             .product_meta>span>span:first-child {
                 margin-left: 7px
             }

             .product-tab-style1 {
                 border-bottom: 1px solid var(--smoke-color2);
                 margin: 95px auto 40px auto;
                 padding-bottom: 40px;
                 -webkit-box-pack: center;
                 -webkit-justify-content: center;
                 -ms-flex-pack: center;
                 justify-content: center;
                 gap: 24px
             }

             .woocommerce-Reviews .th-post-comment .text {
                 margin-bottom: -0.5em
             }

             .woocommerce-Reviews .th-comments-wrap {
                 padding: 0;
                 box-shadow: none;
                 margin-right: 0
             }

             .woocommerce-Reviews .th-comment-form {
                 padding: 60px;
                 background-color: var(--smoke-color);
                 box-shadow: none;
                 border-radius: 10px;
                 margin-right: 0
             }

             .woocommerce-Reviews .th-comment-form input,
             .woocommerce-Reviews .th-comment-form .form-control {
                 background-color: var(--white-color)
             }

             .woocommerce-Reviews .th-comment-form .blog-inner-title {
                 margin-bottom: 10px
             }

             .woocommerce-Reviews .comment-list {
                 display: grid;
                 grid-template-columns: repeat(2, 1fr);
                 gap: 0 24px;
                 margin-bottom: 40px
             }

             .woocommerce-Reviews .th-post-comment {
                 border: 1px solid var(--th-border-color) !important;
                 padding: 40px !important;
                 box-shadow: 0px 4px 30px rgba(1, 15, 28, 0.06);
                 margin-bottom: 24px;
                 border-radius: 8px
             }

             .woocommerce-Reviews .th-post-comment .name {
                 margin-bottom: 3px
             }

             .woocommerce-Reviews .th-post-comment .commented-on {
                 margin-bottom: 12px
             }

             @media (max-width: 1199px) {
                 .woocommerce-Reviews .th-post-comment {
                     padding: 30px !important
                 }
             }

             @media (max-width: 991px) {
                 .woocommerce-Reviews .comment-list {
                     grid-template-columns: repeat(1, 1fr)
                 }

                 .woocommerce-Reviews .th-comment-form {
                     padding: 40px
                 }
             }

             @media (max-width: 575px) {
                 .woocommerce-Reviews .th-comment-form {
                     padding: 40px 20px
                 }
             }

             #productTabContent {
                 margin-bottom: -10px
             }

             #additional_information {
                 margin-bottom: 40px
             }

             .product-inner-list>ul {
                 margin: 0;
                 padding: 0;
                 list-style-type: none
             }

             .product-inner-list li {
                 position: relative;
                 padding-left: 15px
             }

             .product-inner-list li:before {
                 content: "-";
                 position: absolute;
                 left: 0
             }

             .share-title {
                 font-size: 16px;
                 font-weight: 600;
                 color: var(--title-color);
                 margin-bottom: 8px
             }

             .share-title i {
                 color: var(--theme-color)
             }

             .summary-content .product-title,
             .product-about .product-title {
                 margin: 0 0 12px 0
             }

             .summary-content>.price,
             .product-about>.price {
                 font-family: var(--title-font);
                 font-size: 20px;
                 font-weight: 800;
                 color: var(--title-color);
                 display: inline-block;
                 margin-bottom: 14px
             }

             .summary-content>.price del,
             .product-about>.price del {
                 color: var(--gray-color);
                 font-weight: 500;
                 margin-left: 15px
             }

             .summary-content .product-rating,
             .product-about .product-rating {
                 display: -webkit-inline-box;
                 display: -webkit-inline-flex;
                 display: -ms-inline-flexbox;
                 display: inline-flex;
                 gap: 5px;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 position: relative;
                 top: 2px;
                 font-size: 16px;
                 line-height: 20px;
                 padding: 0 0 0 0;
                 margin: 0 0 0 0;
                 margin-bottom: 14px
             }

             .summary-content .product-rating .star-rating,
             .product-about .product-rating .star-rating {
                 width: 80px;
                 font-size: 12px;
                 margin-right: 8px
             }

             .summary-content .woocommerce-review-link,
             .product-about .woocommerce-review-link {
                 color: var(--body-color)
             }

             .summary-content .checklist,
             .product-about .checklist {
                 margin: 30px 0 40px 0
             }

             .summary-content .actions,
             .product-about .actions {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-flex-wrap: wrap;
                 -ms-flex-wrap: wrap;
                 flex-wrap: wrap;
                 gap: 15px;
                 margin: 33px 0 27px 0
             }

             .summary-content .actions .th-btn .btn-icon,
             .product-about .actions .th-btn .btn-icon {
                 padding: 10.5px 15px 10.5px 15px
             }

             .summary-content .actions .icon-btn,
             .product-about .actions .icon-btn {
                 border-color: var(--th-border-color)
             }

             .summary-content .actions .icon-btn:hover,
             .product-about .actions .icon-btn:hover {
                 background-color: var(--theme-color);
                 color: var(--white-color);
                 border-color: var(--theme-color)
             }

             .summary-content .share,
             .product-about .share {
                 margin-top: 25px
             }

             .summary-content .th-social a,
             .product-about .th-social a {
                 --icon-size: 40px;
                 line-height: 38px;
                 font-size: 14px;
                 border: 1px solid var(--th-border-color);
                 border-radius: 0
             }

             .summary-content .th-social a:hover,
             .product-about .th-social a:hover {
                 border-color: var(--theme-color)
             }

             .summary-content .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt,
             .summary-content .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt,
             .product-about .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt,
             .product-about .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
                 width: 60px;
                 height: 60px;
                 line-height: 60px;
                 display: inline-block;
                 border-radius: 4px
             }

             .summary-content .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt::before,
             .summary-content .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt::before,
             .product-about .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt::before,
             .product-about .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt::before {
                 position: relative;
                 top: 0;
                 left: 0;
                 line-height: inherit;
                 margin: 0;
                 font-size: 24px
             }

             .summary-content .tinv-wishlist a,
             .product-about .tinv-wishlist a {
                 display: inline-block;
                 width: 60px;
                 height: 60px;
                 line-height: 60px;
                 border-radius: 0
             }

             .summary-content .tinv-wishlist a:hover,
             .product-about .tinv-wishlist a:hover {
                 background-color: var(--theme-color);
                 color: var(--white-color)
             }

             .summary-content .quantity,
             .product-about .quantity {
                 position: relative
             }

             .summary-content .quantity:after,
             .product-about .quantity:after {
                 content: '';
                 height: 100%;
                 width: 1px;
                 background-color: var(--th-border-color);
                 position: absolute;
                 top: 0;
                 left: 55px
             }

             .summary-content .quantity .qty-input,
             .product-about .quantity .qty-input {
                 width: 112px;
                 height: 56px;
                 border: 1px solid var(--th-border-color);
                 background-color: transparent;
                 color: var(--title-color);
                 padding: 0 21px;
                 text-align: left;
                 font-weight: 500;
                 border-radius: 5px
             }

             .summary-content .quantity .qty-btn,
             .product-about .quantity .qty-btn {
                 color: var(--title-color);
                 background-color: transparent;
                 position: absolute;
                 right: 21px;
                 height: auto;
                 width: auto;
                 border: none
             }

             .summary-content .quantity .quantity-minus,
             .product-about .quantity .quantity-minus {
                 bottom: 8px
             }

             .summary-content .quantity .quantity-plus,
             .product-about .quantity .quantity-plus {
                 top: 8px
             }

             .woocommerce-Reviews .th-post-comment {
                 border-radius: 20px
             }

             .woocommerce-Reviews .th-post-comment .text {
                 margin-bottom: -0.5em
             }

             .woocommerce-Reviews .th-comments-wrap {
                 padding: 0;
                 margin-right: 0 !important;
                 box-shadow: none;
                 margin: 0
             }

             .woocommerce-Reviews .th-comment-form {
                 padding: 60px;
                 background-color: var(--smoke-color);
                 box-shadow: none;
                 margin-right: 0 !important;
                 margin-top: 28px;
                 margin-bottom: 40px
             }

             .woocommerce-Reviews .th-comment-form input,
             .woocommerce-Reviews .th-comment-form .form-control {
                 background-color: var(--white-color)
             }

             .woocommerce-Reviews .th-comment-form .blog-inner-title {
                 margin-bottom: 10px
             }

             .woocommerce-Reviews .comment-list {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 0 24px;
                 margin: -12px !important;
                 margin-bottom: 28px !important
             }

             .woocommerce-Reviews .comment-list li {
                 width: 50%
             }

             @media (max-width: 991px) {
                 .woocommerce-Reviews .comment-list li {
                     width: 100%
                 }
             }

             .woocommerce-Reviews .th-post-comment {
                 border: 0 !important;
                 padding: 40px !important;
                 margin: 12px;
                 background: var(--smoke-color);
                 border-radius: 0px;
                 box-shadow: none
             }

             .woocommerce-Reviews .th-post-comment .name {
                 margin-bottom: 3px
             }

             .woocommerce-Reviews .th-post-comment .commented-on {
                 margin-bottom: 12px
             }

             @media (max-width: 1199px) {
                 .woocommerce-Reviews .th-post-comment {
                     padding: 30px !important
                 }
             }

             @media (max-width: 991px) {
                 .woocommerce-Reviews .comment-list {
                     grid-template-columns: repeat(1, 1fr)
                 }

                 .woocommerce-Reviews .th-comment-form {
                     padding: 40px
                 }
             }

             @media (max-width: 575px) {
                 .woocommerce-Reviews .th-comment-form {
                     padding: 40px 20px
                 }
             }

             #description {
                 margin-bottom: 30px
             }

             .product-details .th-comments-wrap {
                 margin-top: 0
             }

             .product-details .border-title {
                 position: relative;
                 padding-bottom: 20px;
                 margin-bottom: 40px
             }

             .product-details .border-title:before {
                 content: "";
                 position: absolute;
                 left: 0;
                 bottom: 0;
                 height: 2px;
                 width: 80px;
                 background-color: var(--theme-color)
             }

             .product-inner-title {
                 font-size: 32px;
                 border-bottom: 1px solid var(--th-border-color);
                 padding: 0 0 7px 0;
                 margin: 0 0 30px 0
             }

             .related-product-wrapper {
                 padding-top: 115px
             }

             @media (max-width: 1399px) {
                 .th-product.list-view .product-img {
                     max-width: 150px
                 }
             }

             @media (max-width: 1299px) {
                 .product-thumb-tab {
                     --thumb: 100px;
                     margin-left: -40px
                 }

                 .product-thumb-area {
                     margin-right: 0
                 }
             }

             @media (max-width: 1199px) {
                 .th-sort-bar select {
                     min-width: auto
                 }

                 .product-tab-style1 {
                     margin: 55px 0 40px 0
                 }

                 .summary-content,
                 .product-about {
                     padding-left: 0
                 }
             }

             @media (max-width: 991px) {
                 .product-big-img {
                     margin-bottom: 40px
                 }

                 .product-thumb-tab {
                     margin-left: -10px
                 }

                 .th-product-box.list-view .product-img {
                     max-width: 150px
                 }

                 .th-sort-bar .row {
                     --bs-gutter-x: 20px
                 }

                 .th-sort-bar .nav a:last-child {
                     margin-right: 0;
                     padding-right: 0
                 }

                 .th-sort-bar .nav a:last-child:before {
                     display: none
                 }

                 .woosq-product>.product .thumbnails {
                     max-height: 400px;
                     min-height: 200px;
                     padding: 10px
                 }
             }

             @media (max-width: 767px) {
                 .th-sort-bar {
                     text-align: center;
                     padding: 10px 15px 15px 15px
                 }

                 .th-sort-bar .nav {
                     -webkit-box-pack: center;
                     -webkit-justify-content: center;
                     -ms-flex-pack: center;
                     justify-content: center
                 }

                 .th-sort-bar select {
                     margin: 0 auto
                 }

                 .th-sort-bar .woocommerce-result-count {
                     padding-left: 0
                 }

                 .th-product-box.list-view .product-img {
                     max-width: 130px
                 }

                 .th-product-box.list-view .actions {
                     --btn-size: 30px;
                     --btn-font-size: 10px;
                     --icon-gap-x: 2px
                 }
             }

             @media (max-width: 575px) {
                 .product-about .actions {
                     gap: 15px 15px
                 }

                 .product-thumb-tab {
                     --thumb: 74px;
                     --gap: 6px
                 }

                 .product-thumb-tab .tab-btn {
                     border-radius: 6px
                 }

                 .product-thumb-tab .tab-btn:not(:last-of-type) {
                     margin-bottom: 10px
                 }

                 .product-thumb-tab .indicator {
                     border-radius: 6px
                 }

                 .product-grid {
                     max-width: 340px;
                     margin-left: auto;
                     margin-right: auto
                 }
             }

             @media (max-width: 375px) {
                 .th-product.list-view .product-img {
                     max-width: 130px
                 }
             }

             button.tinvwl_button_close.th-btn .ftinvwl.ftinvwl-times,
             button.tinvwl_button_view.th-btn .ftinvwl.ftinvwl-heart-o {
                 top: -3px
             }

             .woocommerce-cart-form {
                 text-align: center
             }

             .cart_table {
                 border: 1px solid #eaf0f2;
                 margin-bottom: 45px
             }

             .cart_table thead {
                 background-color: #ecf0f1
             }

             .cart_table thead th {
                 border: none !important
             }

             .cart_table td:before,
             .cart_table th {
                 font-family: var(--title-font);
                 color: var(--title-color);
                 font-weight: 800;
                 border: none;
                 padding: 27px 15px
             }

             .cart_table td:before {
                 content: attr(data-title);
                 position: absolute;
                 left: 15px;
                 top: 50%;
                 vertical-align: top;
                 padding: 0;
                 -webkit-transform: translateY(-50%);
                 -ms-transform: translateY(-50%);
                 transform: translateY(-50%);
                 display: none
             }

             .cart_table td {
                 border: none;
                 border-bottom: 1px solid #f3f3f3;
                 color: #8b8b8b;
                 padding: 20px 10px;
                 position: relative;
                 vertical-align: middle
             }

             .cart_table .product-quantity {
                 color: var(--title-color)
             }

             .cart_table .product-quantity input {
                 position: relative;
                 top: -2px
             }

             .cart_table .cart-productname {
                 font-weight: 400;
                 font-family: var(--body-font);
                 color: var(--body-color)
             }

             .cart_table .cart-productimage {
                 display: inline-block;
                 border: 2px solid var(--smoke-color)
             }

             .cart_table .remove {
                 color: var(--theme-color);
                 font-size: 18px
             }

             .cart_table .quantity {
                 display: -webkit-inline-box;
                 display: -webkit-inline-flex;
                 display: -ms-inline-flexbox;
                 display: inline-flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center
             }

             .cart_table .qty-btn {
                 border: 2px solid var(--smoke-color) !important;
                 background-color: transparent;
                 color: #b8c6d0;
                 padding: 0;
                 width: 30px;
                 height: 30px;
                 line-height: 28px;
                 font-size: 16px;
                 border-radius: 4px
             }

             .cart_table .qty-btn:hover {
                 background-color: var(--theme-color);
                 color: var(--white-color)
             }

             .cart_table .qty-input {
                 vertical-align: middle;
                 border: 2px solid var(--smoke-color);
                 width: 70px;
                 height: 30px;
                 font-size: 14px;
                 text-align: center;
                 color: var(--title-color);
                 font-weight: 700;
                 margin: 0 10px;
                 border-radius: 4px;
                 padding: 0
             }

             .cart_table .qty-input::-moz-placeholder {
                 color: var(--title-color)
             }

             .cart_table .qty-input::-webkit-input-placeholder {
                 color: var(--title-color)
             }

             .cart_table .qty-input:-ms-input-placeholder {
                 color: var(--title-color)
             }

             .cart_table .qty-input::-ms-input-placeholder {
                 color: var(--title-color)
             }

             .cart_table .qty-input::placeholder {
                 color: var(--title-color)
             }

             .cart_table .qty-input::-webkit-outer-spin-button,
             .cart_table .qty-input::-webkit-inner-spin-button {
                 -webkit-appearance: none;
                 margin: 0
             }

             .cart_table .qty-input[type="number"] {
                 -moz-appearance: textfield
             }

             .cart_table .actions {
                 text-align: right;
                 vertical-align: middle
             }

             .cart_table .actions>.th-btn {
                 font-size: 16px;
                 padding: 20px 28px;
                 margin-right: 15px
             }

             .cart_table .actions>.th-btn:last-child {
                 margin-right: 0
             }

             .cart_table .th-cart-coupon {
                 float: left;
                 margin: 0;
                 width: 455px;
                 max-width: 100%;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex
             }

             .cart_table .th-cart-coupon input {
                 width: calc(100% - 200px);
                 margin-right: 10px
             }

             .cart_table .th-cart-coupon .th-btn {
                 font-size: 16px;
                 padding: 20px 25px;
                 width: -webkit-max-content;
                 width: -moz-max-content;
                 width: max-content
             }

             .cart_totals {
                 border: 1px solid #ecf0f1
             }

             .cart_totals th,
             .cart_totals td {
                 vertical-align: top;
                 padding: 20px 20px;
                 border: none;
                 border-bottom: 1px solid #ecf0f1;
                 font-size: 14px;
                 color: var(--title-color);
                 width: 55%
             }

             .cart_totals th:first-child,
             .cart_totals td:first-child {
                 width: 45%;
                 background-color: #f9fbfb;
                 font-weight: 700;
                 font-size: 14px;
                 color: #333333
             }

             .cart_totals .shipping-calculator-button {
                 display: inline-block;
                 border-bottom: 1px solid;
                 color: var(--title-color);
                 font-weight: 700
             }

             .cart_totals .shipping-calculator-button:hover {
                 color: var(--theme-color)
             }

             .cart_totals .woocommerce-shipping-destination {
                 margin-bottom: 10px
             }

             .cart_totals .woocommerce-shipping-methods {
                 margin-bottom: 0
             }

             .cart_totals .shipping-calculator-form {
                 display: none
             }

             .cart_totals .shipping-calculator-form p:first-child {
                 margin-top: 20px
             }

             .cart_totals .shipping-calculator-form p:last-child {
                 margin-bottom: 0
             }

             .cart_totals .shipping-calculator-form .th-btn {
                 padding: 5px 30px
             }

             .cart_totals .amount {
                 font-weight: 700
             }

             .cart_totals .order-total .amount {
                 color: var(--theme-color)
             }

             @media (max-width: 991px) {
                 .cart_table th {
                     padding: 23px 8px;
                     font-size: 14px
                 }

                 .cart_table .cart-productname {
                     font-size: 14px
                 }

                 .cart_table .th-cart-coupon {
                     width: 100%;
                     margin-bottom: 20px;
                     -webkit-box-pack: center;
                     -webkit-justify-content: center;
                     -ms-flex-pack: center;
                     justify-content: center
                 }

                 .cart_table .actions {
                     text-align: center
                 }
             }

             @media (max-width: 767px) {
                 .cart_table {
                     text-align: left;
                     min-width: auto;
                     border-collapse: separate;
                     border-spacing: 0 20px;
                     border: none
                 }

                 .cart_table thead {
                     display: none
                 }

                 .cart_table td {
                     padding: 15px;
                     display: block;
                     width: 100%;
                     padding-left: 25%;
                     text-align: right;
                     border: 1px solid #f3f3f3;
                     border-bottom: none
                 }

                 .cart_table td::before {
                     display: block
                 }

                 .cart_table td:last-child {
                     border-bottom: 1px solid #f3f3f3
                 }

                 .cart_table td.actions {
                     padding-left: 15px;
                     text-align: center
                 }

                 .cart_table td.actions>.th-btn {
                     margin-top: 10px;
                     margin-right: 0;
                     display: block;
                     width: -webkit-max-content;
                     width: -moz-max-content;
                     width: max-content;
                     margin-left: auto;
                     margin-right: auto
                 }

                 .cart_table td.actions>.th-btn:last-child {
                     margin-right: auto
                 }

                 .cart_table .th-cart-coupon {
                     width: 100%;
                     text-align: center;
                     float: none;
                     -webkit-box-pack: center;
                     -webkit-justify-content: center;
                     -ms-flex-pack: center;
                     justify-content: center;
                     display: block;
                     padding-bottom: 10px
                 }

                 .cart_table .th-cart-coupon input {
                     width: 100%;
                     margin-bottom: 10px
                 }

                 .cart_totals th,
                 .cart_totals td {
                     padding: 15px 10px
                 }

                 .cart_totals th:first-child,
                 .cart_totals td:first-child {
                     width: 17%;
                     line-height: 1.4
                 }
             }

             .woocommerce-checkout .form-group,
             .woocommerce-checkout .form-row {
                 margin-bottom: 0
             }

             .woocommerce-checkout .form-select,
             .woocommerce-checkout .select2-container,
             .woocommerce-checkout .form-control {
                 margin-bottom: 0
             }

             .woocommerce-checkout .select2-container--open .select2-dropdown--below {
                 margin-top: -35px
             }

             .woocommerce-checkout .select2-container--open .select2-dropdown--above {
                 position: relative;
                 bottom: -30px
             }

             .woocommerce-checkout .select2-dropdown {
                 border: 1px solid #e3e6e9;
                 border-top: none
             }

             .woocommerce-checkout .select2-container--default .select2-selection--single {
                 border-radius: 0
             }

             .woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered,
             .woocommerce-checkout .select2-container--default .select2-selection--single .form-control:focus {
                 color: var(--body-color)
             }

             .select2-container--default .select2-search--dropdown .select2-search__field {
                 border: 1px solid #eee;
                 padding: 0
             }

             .woocommerce-form-login select,
             .woocommerce-form-login .form-select,
             .woocommerce-form-login .form-control,
             .woocommerce-form-login .select2,
             .woocommerce-form-login .select2-container,
             .woocommerce-form-coupon select,
             .woocommerce-form-coupon .form-select,
             .woocommerce-form-coupon .form-control,
             .woocommerce-form-coupon .select2,
             .woocommerce-form-coupon .select2-container,
             .woocommerce-checkout select,
             .woocommerce-checkout .form-select,
             .woocommerce-checkout .form-control,
             .woocommerce-checkout .select2,
             .woocommerce-checkout .select2-container {
                 margin-bottom: var(--bs-gutter-x)
             }

             #ship-to-different-address {
                 margin-top: 15px
             }

             .select2-container--default .select2-selection--single {
                 height: 60px;
                 border: 1px solid #e3e6e9
             }

             .select2-container--default .select2-selection--single .select2-selection__rendered {
                 line-height: 60px;
                 padding-left: 30px;
                 padding-right: 25px
             }

             .woocommerce-billing-fields .form-row {
                 margin-bottom: 0
             }

             .select2-container--default .select2-selection--single .select2-selection__arrow b:before {
                 content: "\f107";
                 font-family: var(--icon-font)
             }

             .select2-container--default .select2-selection--single .select2-selection__arrow b {
                 margin: 0;
                 border: none;
                 top: 0
             }

             .select2-container--default .select2-selection--single .select2-selection__arrow {
                 height: 60px;
                 line-height: 60px;
                 margin-right: 30px
             }

             span.select2-selection.select2-selection--single:focus {
                 outline: none
             }

             .shipping-calculator-form .form-select,
             .shipping-calculator-form .form-control {
                 height: 40px;
                 padding-left: 15px;
                 font-size: 16px;
                 background-position: right 13px center
             }

             .shipping-calculator-form .th-btn {
                 font-size: 14px;
                 padding: 0 20px;
                 width: -webkit-max-content;
                 width: -moz-max-content;
                 width: max-content;
                 height: 40px
             }

             .checkout-ordertable th,
             .checkout-ordertable td {
                 border: 1px solid #ededed;
                 text-align: right;
                 padding: 5px 20px;
                 vertical-align: top;
                 font-size: 14px;
                 font-weight: 600;
                 color: #2c3e50
             }

             .checkout-ordertable th {
                 font-weight: 800;
                 text-align: left
             }

             .checkout-ordertable ul {
                 margin: 0;
                 padding: 0
             }

             .checkout-ordertable .order-total .amount {
                 color: var(--theme-color)
             }

             .checkout-ordertable input[type="hidden"]~label {
                 color: var(--theme-color)
             }

             .woocommerce-checkout .form-group input:not(:last-child) {
                 margin-bottom: var(--bs-gutter-x)
             }

             .woocommerce-checkout-payment {
                 text-align: left
             }

             .woocommerce-checkout-payment ul {
                 margin: 0;
                 padding: 0;
                 list-style-type: none
             }

             .woocommerce-checkout-payment ul li {
                 padding-top: 12px;
                 border-bottom: 1px solid #d8d8d8;
                 border-radius: 4px;
                 font-size: 16px
             }

             .woocommerce-checkout-payment ul input[type="radio"]~label {
                 margin-bottom: 17px;
                 color: var(--body-color)
             }

             .woocommerce-checkout-payment ul input[type="radio"]~label img {
                 margin-bottom: -2px;
                 margin-left: 10px
             }

             .woocommerce-checkout-payment .place-order {
                 padding-top: 30px
             }

             .woocommerce-checkout-payment .payment_box {
                 color: #a1b1bc;
                 background-color: #ecf0f1;
                 border: 1px solid #d8d8d8;
                 border-bottom: none;
                 font-size: 14px;
                 padding: 10px 20px;
                 border-radius: 4px;
                 display: none
             }

             .woocommerce-checkout-payment .payment_box p {
                 margin: 0
             }

             .th-checkout-wrapper form.woocommerce-form {
                 margin-bottom: 25px
             }

             @media (max-width: 767px) {
                 tfoot.checkout-ordertable th {
                     display: none
                 }

                 .woocommerce-checkout-payment ul input[type="radio"]~label img {
                     max-width: 150px
                 }

                 .checkout-ordertable th,
                 .checkout-ordertable td {
                     padding: 5px 20px 5px 60px
                 }
             }

             .tinv-wishlist input[type=checkbox] {
                 display: inline-block;
                 opacity: 1;
                 visibility: visible;
                 vertical-align: middle;
                 width: auto;
                 height: auto
             }

             .tinv-wishlist .tinv-header {
                 margin-top: -0.8rem
             }

             .tinv-wishlist .cart-empty {
                 padding: 12px 25px;
                 background-color: #eee;
                 border-radius: 5px;
                 font-weight: 700;
                 font-size: 14px
             }

             .tinv-wishlist p.return-to-shop .button {
                 display: inline-block;
                 background-color: var(--theme-color);
                 color: #fff;
                 font-size: 14px;
                 padding: 10px 25px;
                 margin-top: 10px;
                 font-weight: 700
             }

             .tinv-wishlist p.return-to-shop .button:Hover {
                 background-color: var(--title-color);
                 color: var(--white-color)
             }

             .tinv-wishlist table {
                 border: none
             }

             .tinv-wishlist table th {
                 color: var(--title-color)
             }

             .tinv-wishlist table td,
             .tinv-wishlist table th {
                 padding: 15.3px 10px;
                 border-bottom: 1px solid var(--th-border-color);
                 text-align: center
             }

             .tinv-wishlist table thead {
                 background-color: var(--smoke-color)
             }

             .tinv-wishlist .product-cb,
             .tinv-wishlist .product-remove {
                 width: 40px;
                 text-align: center
             }

             .tinv-wishlist .product-thumbnail {
                 width: 110px
             }

             .tinv-wishlist .stock.in-stock {
                 margin-bottom: 0
             }

             .tinv-wishlist ins {
                 text-decoration: none
             }

             .tinv-wishlist .product-remove button {
                 border: none;
                 height: 22px;
                 width: 22px;
                 text-align: center;
                 font-size: 12px;
                 line-height: 22px;
                 border-radius: 0;
                 padding-top: 0
             }

             .tinv-wishlist .product-remove button i {
                 line-height: 22px;
                 font-size: 16px
             }

             .tinv-wishlist .tinvwl-mobile {
                 display: none
             }

             .tinv-wishlist .social-buttons {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 max-width: 295px;
                 margin-left: auto;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center
             }

             .tinv-wishlist .social-buttons ul {
                 padding-left: 0;
                 margin-bottom: 0;
                 margin-left: auto;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 6px
             }

             .tinv-wishlist table.tinvwl-table-manage-list {
                 font-size: 16px
             }

             .tinv-wishlist .product-stock .stock {
                 display: block
             }

             .tinv-wishlist .product-stock span {
                 display: inline
             }

             .tinv-wishlist .product-stock i {
                 margin-right: 5px
             }

             .tinv-wishlist .tinv-modal .icon_big_times {
                 margin-bottom: 5px;
                 color: var(--theme-color)
             }

             .tinv-wishlist button.button {
                 border: none;
                 height: 40px;
                 line-height: 40px;
                 font-size: 14px;
                 font-weight: 600;
                 background-color: var(--theme-color);
                 color: #fff;
                 padding: 1px 15px;
                 min-width: 140px
             }

             .tinv-wishlist button.button.mask-btn {
                 padding: 0
             }

             .tinv-wishlist button.button .btn-text-mask {
                 padding: 0.5px 21px
             }

             .tinv-wishlist button.button:hover {
                 background-color: var(--title-color);
                 color: #fff
             }

             .tinv-wishlist button.button i {
                 font-size: 14px !important;
                 margin-right: 3px !important
             }

             .tinv-wishlist th,
             .tinv-wishlist td.product-name {
                 font-size: 16px;
                 font-weight: 700;
                 font-family: var(--title-font)
             }

             .tinv-wishlist td.product-name a {
                 color: var(--body-color)
             }

             .tinv-wishlist td.product-name a:hover {
                 color: var(--theme-color)
             }

             .tinv-wishlist td.product-price del {
                 margin-left: 8px;
                 font-size: 0.9em
             }

             .tinv-wishlist .social-buttons>span {
                 font-weight: 700;
                 margin-right: 10px;
                 font-family: var(--title-font);
                 color: var(--title-color)
             }

             .tinv-wishlist .social-buttons li {
                 display: inline-block;
                 margin-right: 0
             }

             .tinv-wishlist .social-buttons li a.social {
                 background-color: var(--theme-color);
                 color: #fff;
                 width: 30px;
                 height: 30px;
                 line-height: 30px;
                 font-size: 14px;
                 display: inline-block;
                 text-align: center;
                 border-radius: 50px;
                 margin-left: 3px
             }

             .tinv-wishlist .social-buttons li a.social:first-child {
                 margin-left: 0
             }

             .tinv-wishlist .social-buttons li a.social i {
                 line-height: inherit
             }

             .tinv-wishlist .social-buttons li a.social:hover {
                 background-color: var(--title-color);
                 color: var(--white-color)
             }

             @media (max-width: 991px) {
                 .tinvwl-full {
                     display: none
                 }

                 .tinv-wishlist .tinvwl-mobile {
                     display: block
                 }

                 .tinvwl-txt {
                     display: none !important
                 }

                 .product-stock {
                     width: 40px;
                     text-align: center
                 }
             }

             @media (max-width: 767px) {
                 .tinv-wishlist table {
                     table-layout: fixed;
                     border-bottom: 1px solid var(--th-border-color)
                 }

                 .tinv-wishlist table.tinvwl-table-manage-list tbody td.product-remove,
                 .tinv-wishlist table.tinvwl-table-manage-list thead th:not(.product-name) {
                     display: none
                 }

                 .tinv-wishlist table td,
                 .tinv-wishlist table th {
                     border: 1px solid var(--th-border-color)
                 }

                 .tinv-wishlist table.tinvwl-table-manage-list tbody td {
                     display: block;
                     width: 100% !important;
                     text-align: center
                 }

                 .product-name {
                     text-align: center
                 }

                 .tinv-wishlist table td,
                 .tinv-wishlist table th {
                     border-bottom: none
                 }

                 .tinv-wishlist table tfoot {
                     border-bottom: 1px solid var(--th-border-color)
                 }

                 .tinv-wishlist .social-buttons {
                     max-width: 100%;
                     margin-left: unset;
                     -webkit-box-orient: vertical;
                     -webkit-box-direction: normal;
                     -webkit-flex-direction: column;
                     -ms-flex-direction: column;
                     flex-direction: column
                 }

                 .tinv-wishlist .social-buttons ul {
                     margin-left: unset;
                     margin-top: 5px
                 }

                 .tinvwl-txt {
                     display: inline-block !important
                 }
             }

             .contact-area {
                 position: relative;
                 z-index: 3;
                 background-repeat: no-repeat;
                 background-size: cover;
                 -webkit-mask-repeat: no-repeat;
                 mask-repeat: no-repeat;
                 -webkit-mask-position: center;
                 mask-position: center;
                 -webkit-mask-size: cover;
                 mask-size: cover;
                 padding: 427px 0 120px 0;
                 margin-top: -180px
             }

             @media (min-width: 1930px) {
                 .contact-area {
                     padding: 327px 0 120px 0;
                     margin-top: -50px
                 }
             }

             @media (max-width: 1199px) {
                 .contact-area {
                     padding: 300px 0 120px 0;
                     margin-top: -265px
                 }
             }

             @media (max-width: 991px) {
                 .contact-area {
                     background-image: none;
                     padding: 240px 0 80px 0;
                     margin-top: -253px
                 }
             }

             .contact-form2 {
                 background-color: var(--white-color);
                 padding: 60px;
                 border-radius: 30px;
                 border: 1px solid var(--smoke-color)
             }

             @media (max-width: 1299px) {
                 .contact-form2 {
                     padding: 40px
                 }
             }

             @media (max-width: 1199px) {
                 .contact-form2 {
                     padding: 30px
                 }
             }

             @media (max-width: 575px) {
                 .contact-form2 {
                     padding: 30px 20px
                 }
             }

             .contact-form2 select,
             .contact-form2 .form-control,
             .contact-form2 .form-select,
             .contact-form2 textarea,
             .contact-form2 input {
                 border: none;
                 border-radius: 100px;
                 background: var(--smoke-color2);
                 border: 1px solid var(--smoke-color);
                 color: var(--body-color);
                 font-weight: 400
             }

             .contact-form2 select::-moz-placeholder,
             .contact-form2 .form-control::-moz-placeholder,
             .contact-form2 .form-select::-moz-placeholder,
             .contact-form2 textarea::-moz-placeholder,
             .contact-form2 input::-moz-placeholder {
                 color: var(--body-color)
             }

             .contact-form2 select::-webkit-input-placeholder,
             .contact-form2 .form-control::-webkit-input-placeholder,
             .contact-form2 .form-select::-webkit-input-placeholder,
             .contact-form2 textarea::-webkit-input-placeholder,
             .contact-form2 input::-webkit-input-placeholder {
                 color: var(--body-color)
             }

             .contact-form2 select:-ms-input-placeholder,
             .contact-form2 .form-control:-ms-input-placeholder,
             .contact-form2 .form-select:-ms-input-placeholder,
             .contact-form2 textarea:-ms-input-placeholder,
             .contact-form2 input:-ms-input-placeholder {
                 color: var(--body-color)
             }

             .contact-form2 select::-webkit-input-placeholder,
             .contact-form2 .form-control::-webkit-input-placeholder,
             .contact-form2 .form-select::-webkit-input-placeholder,
             .contact-form2 textarea::-webkit-input-placeholder,
             .contact-form2 input::-webkit-input-placeholder {
                 color: var(--body-color)
             }

             .contact-form2 select::-moz-placeholder,
             .contact-form2 .form-control::-moz-placeholder,
             .contact-form2 .form-select::-moz-placeholder,
             .contact-form2 textarea::-moz-placeholder,
             .contact-form2 input::-moz-placeholder {
                 color: var(--body-color)
             }

             .contact-form2 select:-ms-input-placeholder,
             .contact-form2 .form-control:-ms-input-placeholder,
             .contact-form2 .form-select:-ms-input-placeholder,
             .contact-form2 textarea:-ms-input-placeholder,
             .contact-form2 input:-ms-input-placeholder {
                 color: var(--body-color)
             }

             .contact-form2 select::-ms-input-placeholder,
             .contact-form2 .form-control::-ms-input-placeholder,
             .contact-form2 .form-select::-ms-input-placeholder,
             .contact-form2 textarea::-ms-input-placeholder,
             .contact-form2 input::-ms-input-placeholder {
                 color: var(--body-color)
             }

             .contact-form2 select::placeholder,
             .contact-form2 .form-control::placeholder,
             .contact-form2 .form-select::placeholder,
             .contact-form2 textarea::placeholder,
             .contact-form2 input::placeholder {
                 color: var(--body-color)
             }

             .contact-form2 textarea.form-control,
             .contact-form2 textarea {
                 min-height: 211px;
                 border-radius: 20px;
                 padding-top: 16px;
                 padding-bottom: 17px
             }

             .contact-form2 .nice-select:after {
                 border-bottom: 1px solid var(--body-color);
                 border-right: 1px solid var(--body-color)
             }

             .contact-form2 .th-btn {
                 padding: 19.5px 42px
             }

             .consultation-form {
                 background-color: var(--white-color);
                 box-shadow: 0px 0px 50px 6px #EFEFEF;
                 border-radius: 30px;
                 padding: 50px
             }

             @media (max-width: 1199px) {
                 .consultation-form {
                     padding: 30px
                 }
             }

             .consultation-form .form-group {
                 margin-bottom: 14px
             }

             .consultation-form select,
             .consultation-form .form-control,
             .consultation-form .form-select,
             .consultation-form textarea,
             .consultation-form input {
                 background: #FAFAFA;
                 border: 1px solid var(--smoke-color);
                 border-radius: 30px
             }

             .consultation-form textarea.form-control,
             .consultation-form textarea {
                 min-height: 100px
             }

             .consultation-form.style2 select,
             .consultation-form.style2 .form-control,
             .consultation-form.style2 .form-select,
             .consultation-form.style2 textarea,
             .consultation-form.style2 input {
                 background: #FAFAFA
             }

             .contact-form {
                 background-color: var(--white-color);
                 border: 1px solid #E0E0E0;
                 border-radius: 30px;
                 padding: 60px
             }

             @media (max-width: 1199px) {
                 .contact-form {
                     padding: 40px
                 }
             }

             @media (max-width: 767px) {
                 .contact-form {
                     padding: 30px
                 }
             }

             .contact-form .form-group i {
                 font-size: 14px;
                 font-weight: 300;
                 color: var(--body-color)
             }

             .contact-form select,
             .contact-form .form-control,
             .contact-form .form-select,
             .contact-form textarea,
             .contact-form input {
                 background: #F8F8F8
             }

             .contact-form .th-btn:hover:before,
             .contact-form .th-btn:hover:after {
                 width: 120%
             }

             .contact-form .nice-select {
                 font-size: 14px
             }

             .contact-form .nice-select:after {
                 right: 30px;
                 border-bottom: 2px solid var(--body-color);
                 border-right: 2px solid var(--body-color)
             }

             .contact-form .nice-select .option {
                 color: var(--title-color)
             }

             .contact-form .nice-select .option.selected {
                 color: var(--theme-color) !important;
                 background: var(--theme-color) !important
             }

             .contact-form .nice-select .option.selected.focus {
                 color: #fff !important;
                 background: var(--theme-color) !important
             }

             .contact-form .nice-select .option:hover,
             .contact-form .nice-select .option.focus {
                 background: var(--theme-color) !important;
                 color: #fff !important
             }

             .contact-form .nice-select.open .list {
                 border-bottom: 3px solid var(--theme-color)
             }

             .contact-form textarea.form-control,
             .contact-form textarea {
                 min-height: 211px;
                 padding-top: 16px;
                 padding-bottom: 17px
             }

             .contact-form .th-btn {
                 padding: 19.5px 42px
             }

             .contact-form .th-btn i {
                 color: var(--white-color)
             }

             .contact-image.style2 {
                 text-align: right
             }

             @media (max-width: 991px) {
                 .contact-image.style2 {
                     margin-top: 60px;
                     text-align: center
                 }
             }

             .contact-info {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 20px
             }

             .contact-info_wrapp:nth-child(2) .contact-info_icon {
                 background-color: #F3BA0E
             }

             .contact-info_wrapp:nth-child(3) .contact-info_icon {
                 background-color: #17D2D4
             }

             .contact-info_wrapp:nth-child(4) .contact-info_icon {
                 background-color: #70D715
             }

             @media (max-width: 375px) {
                 .contact-info {
                     -webkit-box-orient: vertical;
                     -webkit-box-direction: normal;
                     -webkit-flex-direction: column;
                     -ms-flex-direction: column;
                     flex-direction: column
                 }
             }

             .contact-info:not(:last-child) {
                 margin-bottom: 30px
             }

             @media (max-width: 375px) {
                 .contact-info .media-body {
                     text-align: center
                 }
             }

             .contact-info_icon {
                 display: inline-block;
                 width: 80px;
                 min-width: 80px;
                 height: 80px;
                 line-height: 70px;
                 border-radius: 24px;
                 background-color: var(--theme-color);
                 color: var(--white-color);
                 text-align: center;
                 font-size: 35px;
                 position: relative
             }

             @media (max-width: 375px) {
                 .contact-info_icon {
                     display: block;
                     margin: auto;
                     text-align: center
                 }
             }

             .contact-info_label {
                 font-family: var(--title-font);
                 font-size: 24px;
                 line-height: 30px;
                 color: var(--title-color);
                 font-weight: 600;
                 margin-top: -0.3rem;
                 margin-bottom: 2px
             }

             @media (max-width: 1299px) {
                 .contact-info_label {
                     font-size: 20px
                 }
             }

             .contact-info_link {
                 font-family: var(--body-font);
                 color: #4D5765;
                 line-height: 26px;
                 font-size: 16px;
                 display: block;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .contact-info_link:hover {
                 color: var(--theme-color)
             }

             .contact-info_link span {
                 display: block
             }

             .contact-info .media-body {
                 margin-bottom: -0.5rem
             }

             .contact-item {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 gap: 20px
             }

             @media (max-width: 375px) {
                 .contact-item {
                     -webkit-box-orient: vertical;
                     -webkit-box-direction: normal;
                     -webkit-flex-direction: column;
                     -ms-flex-direction: column;
                     flex-direction: column
                 }
             }

             .contact-item:not(:last-child) {
                 border-bottom: 1px solid #ECECEC;
                 padding-bottom: 20px;
                 margin-bottom: 20px
             }

             @media (max-width: 375px) {
                 .contact-item .media-body {
                     text-align: center
                 }
             }

             .contact-item-wrap {
                 border-radius: 30px;
                 border: 1px solid var(--smoke-color);
                 background-color: var(--white-color);
                 padding: 60px
             }

             @media (max-width: 1299px) {
                 .contact-item-wrap {
                     padding: 40px
                 }
             }

             @media (max-width: 1199px) {
                 .contact-item-wrap {
                     padding: 30px
                 }
             }

             @media (max-width: 375px) {
                 .contact-item-wrap {
                     text-align: center
                 }
             }

             .contact-item-wrap .sec-title {
                 margin-bottom: 10px
             }

             .contact-item_icon {
                 display: inline-block;
                 --icon-size: 70px;
                 min-width: 70px;
                 line-height: 70px;
                 background-color: rgba(62, 102, 243, 0.1);
                 color: var(--theme-color);
                 text-align: center;
                 font-size: 25px;
                 border-radius: 99px;
                 position: relative;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .contact-item_title {
                 font-family: var(--body-color);
                 font-size: 16px;
                 color: var(--body-color);
                 font-weight: 400;
                 margin-bottom: 4px
             }

             .contact-item_text {
                 font-size: 18px;
                 font-weight: 600;
                 color: var(--title-color);
                 letter-spacing: -0.36px;
                 margin-bottom: 0;
                 display: block;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .contact-item_text a {
                 color: inherit
             }

             .contact-item_text:hover {
                 color: var(--theme-color)
             }

             .contact-item:hover .contact-item_icon {
                 background-color: var(--theme-color)
             }

             .contact-item:hover .contact-item_icon img {
                 -webkit-filter: brightness(0) invert(1);
                 filter: brightness(0) invert(1)
             }

             .rounded-20 {
                 border-radius: 20px;
                 overflow: hidden
             }

             .form-text {
                 font-size: 16px
             }

             .contact-map {
                 position: relative;
                 line-height: 0px;
                 border-radius: 60px
             }

             .contact-map.style2 {
                 background-color: var(--white-color);
                 box-shadow: 0px 4px 50px #EFEFEF;
                 border-radius: 30px;
                 padding: 30px;
                 margin-top: 50px
             }

             .contact-map.style2 iframe {
                 border-radius: 15px
             }

             .contact-map iframe {
                 width: 100%;
                 height: 465px;
                 -webkit-filter: grayscale(0.9);
                 filter: grayscale(0.9);
                 border-radius: 30px
             }

             .contact-map .contact-icon {
                 position: absolute;
                 left: 50%;
                 top: 50%;
                 -webkit-transform: translate(-50%, -50%);
                 -ms-transform: translate(-50%, -50%);
                 transform: translate(-50%, -50%);
                 cursor: pointer
             }

             .contact-map .contact-icon i {
                 width: 100px;
                 height: 100px;
                 line-height: 100px;
                 text-align: center;
                 font-size: 24px;
                 color: var(--white-color);
                 background-color: var(--theme-color);
                 border-radius: 50%
             }

             @media (max-width: 991px) {
                 .contact-map .contact-icon i {
                     width: 80px;
                     height: 80px;
                     line-height: 80px
                 }
             }

             .job-post {
                 border-radius: 10px;
                 background: var(--white-color);
                 padding: 10px;
                 border: 2px solid #E0E0E0;
                 border-radius: 30px;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .job-post_date {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 margin-bottom: 30px
             }

             .job-post_date .date {
                 position: relative;
                 font-weight: 400;
                 font-size: 14px;
                 line-height: 24px;
                 padding: 5px 20px;
                 color: var(--body-color);
                 font-weight: 500;
                 letter-spacing: -0.28px;
                 z-index: 2
             }

             .job-post_date .date:before {
                 content: "";
                 position: absolute;
                 inset: 0;
                 background-color: var(--theme-color);
                 opacity: 0.15;
                 border-radius: 20px;
                 border-radius: 100px;
                 z-index: -1
             }

             .job-post_date .date i {
                 margin-right: 5px
             }

             .job-post_date .icon {
                 text-align: center;
                 border-radius: 100px;
                 color: var(--theme-color);
                 cursor: pointer;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .job-post_date .icon i {
                 font-size: 20px
             }

             .job-post .box-title {
                 margin-bottom: 8px
             }

             @media (max-width: 575px) {
                 .job-post .box-title {
                     font-size: 20px
                 }
             }

             .job-post_author {
                 position: relative;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 gap: 10px;
                 border-radius: 20px;
                 padding: 25px 20px;
                 z-index: 2
             }

             .job-post_author:before {
                 content: "";
                 position: absolute;
                 inset: 0;
                 background-color: var(--theme-color);
                 opacity: 0.1;
                 border-radius: 20px;
                 z-index: -1
             }

             @media (max-width: 400px) {
                 .job-post_author {
                     display: block
                 }
             }

             .job-post_author .job-author {
                 min-width: 60px;
                 height: 60px;
                 line-height: 55px;
                 text-align: center;
                 border-radius: 50%;
                 border: 2px solid var(--theme-color)
             }

             @media (max-width: 400px) {
                 .job-post_author .job-author {
                     margin-bottom: 10px
                 }
             }

             @media (max-width: 375px) {
                 .job-post_author .job-author {
                     max-width: 60px
                 }
             }

             .job-post_author .job-author img {
                 border-radius: 50%
             }

             .job-post .job-wrapp {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 10px
             }

             .job-post .company-name {
                 font-family: var(--title-font);
                 font-size: 18px;
                 color: var(--title-color);
                 font-weight: 600;
                 display: block;
                 margin-bottom: 0
             }

             .job-post .price {
                 font-weight: 500;
                 font-size: 14px;
                 line-height: 24px;
                 color: var(--theme-color);
                 margin-bottom: 0
             }

             @media (max-width: 400px) {
                 .job-post .price {
                     margin-bottom: 20px
                 }
             }

             .job-post .duration {
                 color: var(--body-color)
             }

             .job-post .location {
                 font-size: 14px;
                 font-weight: 400
             }

             .job-post .location:not(:last-child) {
                 margin-right: 25px
             }

             .job-post .job-content {
                 padding: 20px
             }

             @media (max-width: 575px) {
                 .job-post .job-content {
                     padding: 15px
                 }
             }

             .job-post .th-btn {
                 font-size: 14px;
                 padding: 12px 15px
             }

             .job-post:hover {
                 border-color: var(--theme-color)
             }

             .job-post:hover .th-btn {
                 background-color: var(--theme-color);
                 color: var(--white-color)
             }

             .job-post:hover .job-post_date .icon i {
                 font-weight: 700
             }

             .bottom-btn {
                 position: relative
             }

             .bottom-btn:before,
             .bottom-btn:after {
                 content: "";
                 position: absolute;
                 top: 50%;
                 width: 534px;
                 height: 1px;
                 border: 1px solid var(--smoke-color);
                 z-index: -1
             }

             @media (max-width: 767px) {

                 .bottom-btn:before,
                 .bottom-btn:after {
                     display: none
                 }
             }

             .bottom-btn:before {
                 left: 110%
             }

             .bottom-btn:after {
                 right: 110%
             }

             .job-author-wrapp {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 20px;
                 margin-bottom: 50px
             }

             @media (max-width: 480px) {
                 .job-author-wrapp {
                     display: block
                 }

                 .job-author-wrapp .job-author {
                     margin-bottom: 15px
                 }

                 .job-author-wrapp .sec-title {
                     font-size: 20px
                 }
             }

             .job-author-wrapp.style2 {
                 -webkit-box-pack: start;
                 -webkit-justify-content: flex-start;
                 -ms-flex-pack: start;
                 justify-content: flex-start;
                 gap: 15px;
                 margin-bottom: -0.3rem
             }

             .job-author-wrapp.style2:not(:last-child) {
                 margin-bottom: 30px;
                 padding-bottom: 20px;
                 border-bottom: 1px solid var(--smoke-color)
             }

             .job-author-wrapp.style2 .job-author {
                 width: 60px;
                 height: 60px
             }

             .job-meta {
                 margin-top: -0.3rem
             }

             .job-meta span {
                 font-weight: 400;
                 font-size: 14px;
                 line-height: 24px;
                 margin-right: 25px
             }

             @media (max-width: 1299px) {
                 .job-meta span {
                     margin-right: 12px
                 }
             }

             .job-social-area {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center
             }

             @media (max-width: 1199px) {
                 .job-social-area {
                     display: block
                 }
             }

             .job-social-area .share-links-title {
                 font-family: var(--title-font);
                 font-size: 20px;
                 font-weight: 500
             }

             @media (max-width: 1199px) {
                 .job-social-area .share-links-title {
                     margin-bottom: 10px
                 }
             }

             .job-social-area .social-links {
                 padding: 0;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 10px;
                 margin-bottom: 0
             }

             @media (max-width: 375px) {
                 .job-social-area .social-links {
                     display: block
                 }
             }

             .job-social-area .social-links li {
                 list-style: none;
                 background: #2781F8;
                 border-radius: 14px;
                 padding: 7px 20px;
                 color: var(--white-color);
                 display: inline-block
             }

             @media (max-width: 375px) {
                 .job-social-area .social-links li {
                     margin-bottom: 10px
                 }
             }

             .job-social-area .social-links li:nth-child(2) {
                 background: #42C6FF
             }

             .job-social-area .social-links li:nth-child(3) {
                 background: #085085
             }

             .job-social-area .social-links li a {
                 color: var(--white-color)
             }

             .job-price-wrapp {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between;
                 margin-top: 10px
             }

             .job-price-wrapp .price {
                 font-weight: 500;
                 font-size: 16px;
                 color: var(--title-color);
                 margin-bottom: 0
             }

             .job-price-wrapp .duration {
                 color: var(--body-color);
                 font-weight: 400
             }

             .job-price-wrapp .location {
                 font-size: 14px;
                 line-height: 24px
             }

             .global-img {
                 position: relative;
                 min-width: 50%;
                 overflow: hidden;
                 -webkit-transition: all 0.4s ease;
                 transition: all 0.4s ease
             }

             .global-img:before {
                 position: absolute;
                 top: 0;
                 left: -100%;
                 display: block;
                 content: '';
                 width: 50%;
                 height: 100%;
                 background: rgba(255, 255, 255, 0.2);
                 -webkit-transform: skewX(25deg);
                 -ms-transform: skewX(25deg);
                 transform: skewX(25deg);
                 z-index: 2
             }

             .global-img img {
                 width: 100%;
                 object-fit: cover;
                 -webkit-transition: 1.3s all ease;
                 transition: 1.3s all ease
             }

             @media (max-width: 991px) {
                 .global-img {
                     margin-bottom: 30px
                 }
             }

             .global-img:hover img {
                 -webkit-transform: scale(1.3);
                 -ms-transform: scale(1.3);
                 transform: scale(1.3)
             }

             .global-img:hover:before {
                 -webkit-animation: shine 1.9s;
                 animation: shine 1.9s
             }

             .th-ani .box-icon img {
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .th-ani:hover .box-icon img {
                 -webkit-transform: scale(-1) rotate(180deg);
                 -ms-transform: scale(-1) rotate(180deg);
                 transform: scale(-1) rotate(180deg)
             }

             .client-box {
                 position: relative;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 10px;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 padding-top: 40px
             }

             @media (max-width: 1199px) {
                 .client-box {
                     -webkit-box-pack: center;
                     -webkit-justify-content: center;
                     -ms-flex-pack: center;
                     justify-content: center
                 }
             }

             @media (max-width: 375px) {
                 .client-box {
                     display: block
                 }
             }

             .client-box .box-title {
                 font-size: 16px;
                 font-weight: 600;
                 margin-bottom: -0.2rem;
                 text-align: left
             }

             @media (max-width: 375px) {
                 .client-box .box-title {
                     text-align: center
                 }
             }

             .client-box .client-wrapp {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex
             }

             @media (max-width: 375px) {
                 .client-box .client-wrapp {
                     -webkit-box-pack: center;
                     -webkit-justify-content: center;
                     -ms-flex-pack: center;
                     justify-content: center
                 }
             }

             .client-box .client-review i {
                 color: #F3BA0E;
                 font-size: 14px;
                 margin-right: 5px
             }

             .client-box .rating {
                 font-size: 16px;
                 font-weight: 600;
                 color: var(--title-color)
             }

             .client-thumb-group {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex
             }

             @media (max-width: 375px) {
                 .client-thumb-group {
                     -webkit-box-pack: center;
                     -webkit-justify-content: center;
                     -ms-flex-pack: center;
                     justify-content: center;
                     margin-bottom: 20px
                 }
             }

             .client-thumb-group .thumb {
                 -webkit-box-flex: 0;
                 -webkit-flex: none;
                 -ms-flex: none;
                 flex: none
             }

             .client-thumb-group .thumb:not(:first-child) {
                 margin-left: -12px
             }

             .client-thumb-group .thumb img {
                 border-radius: 50%;
                 height: 40px;
                 border: 2px solid var(--white-color)
             }

             .client-thumb-group .thumb.icon {
                 background: rgba(70, 98, 255, 0.8);
                 font-size: 16px;
                 color: var(--white-color);
                 border: 2px solid var(--white-color);
                 height: 40px;
                 width: 40px;
                 line-height: 40px;
                 border-radius: 50%;
                 text-align: center;
                 margin-left: -12px
             }

             .img-box1 {
                 margin-right: -40px
             }

             @media (max-width: 1199px) {
                 .img-box1 {
                     margin: 0
                 }
             }

             .img-box1 img {
                 background: #FFFFFF;
                 box-shadow: 0px 4px 50px #EFEFEF;
                 border-radius: 50px
             }

             .img-box3 {
                 padding: 20px 0;
                 text-align: right
             }

             @media (max-width: 1199px) {
                 .img-box3 {
                     text-align: center
                 }
             }

             @media (max-width: 1299px) {
                 .img-box6 {
                     margin-left: -50px
                 }
             }

             @media (max-width: 575px) {
                 .img-box6 {
                     margin: 0
                 }
             }

             .img-box6 .img1 {
                 width: 592px;
                 height: 593px;
                 background: rgba(70, 97, 255, 0.1);
                 border-radius: 50%
             }

             @media (max-width: 575px) {
                 .img-box6 .img1 {
                     width: 100%;
                     height: 100%
                 }
             }

             .img-box6 .img1 img {
                 display: block;
                 margin: auto
             }

             .img-box7 {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 15px
             }

             .img-box7 img {
                 border-radius: 5px;
                 -webkit-filter: drop-shadow(0px 4px 40px rgba(222, 223, 232, 0.6));
                 filter: drop-shadow(0px 4px 40px rgba(222, 223, 232, 0.6))
             }

             .img-box8 {
                 position: relative;
                 text-align: right;
                 margin-top: 30px
             }

             @media (max-width: 1299px) {
                 .img-box8 {
                     margin-left: 40px
                 }
             }

             @media (max-width: 1199px) {
                 .img-box8 {
                     text-align: left;
                     margin-top: 50px;
                     margin-left: 0
                 }
             }

             @media (max-width: 575px) {
                 .img-box8 {
                     margin-left: 0
                 }
             }

             .img-box8 .img1 {
                 position: relative
             }

             @media (max-width: 991px) {
                 .img-box8 .img1 {
                     height: 100%
                 }
             }

             @media (max-width: 575px) {
                 .img-box8 .img1 {
                     margin-right: 0
                 }
             }

             .img-box8 .img1 .about-shape {
                 position: absolute;
                 top: -30px;
                 right: 0px;
                 width: 602px;
                 height: 452px;
                 background: var(--smoke-color);
                 border-radius: 30px;
                 z-index: -1
             }

             @media (max-width: 1299px) {
                 .img-box8 .img1 .about-shape {
                     right: -40px
                 }
             }

             @media (max-width: 1199px) {
                 .img-box8 .img1 .about-shape {
                     right: unset;
                     left: 0
                 }
             }

             @media (max-width: 575px) {
                 .img-box8 .img1 .about-shape {
                     display: none
                 }
             }

             .img-box8 .img1 img {
                 box-shadow: 0px 10px 30px 10px rgba(234, 234, 234, 0.8);
                 border-radius: 20px
             }

             .img-box8 .img2 {
                 position: absolute;
                 top: -20px;
                 right: -73px
             }

             @media (max-width: 1199px) {
                 .img-box8 .img2 {
                     right: 15%
                 }
             }

             @media (max-width: 375px) {
                 .img-box8 .img2 {
                     display: none
                 }
             }

             .img-box8 .img2 img {
                 box-shadow: 0px 4px 50px 20px #F0F0F0;
                 border-radius: 30px
             }

             .img-box11 {
                 position: relative;
                 z-index: 3
             }

             @media (max-width: 1199px) {
                 .img-box11 {
                     padding-bottom: 120px
                 }
             }

             @media (max-width: 991px) {
                 .img-box11 {
                     padding-bottom: 80px
                 }
             }

             .img-box11_wrapp {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 24px
             }

             @media (max-width: 767px) {
                 .img-box11_wrapp {
                     display: block
                 }
             }

             .img-box11 .img1 {
                 border-radius: 50px;
                 min-width: 332px
             }

             @media (max-width: 767px) {
                 .img-box11 .img1 {
                     margin-bottom: 30px
                 }
             }

             @media (max-width: 375px) {
                 .img-box11 .img1 {
                     min-width: 100%
                 }
             }

             .img-box11 .img1 img {
                 background: var(--white-color);
                 box-shadow: 0px 4px 50px #EFEFEF;
                 border-radius: 50px;
                 padding: 10px
             }

             .img-box11 .about-mission {
                 background: var(--white-color);
                 min-width: 327px;
                 box-shadow: 0px 4px 50px #EFEFEF;
                 border-radius: 30px;
                 padding: 30px
             }

             @media (max-width: 1299px) {
                 .img-box11 .about-mission {
                     min-width: 270px
                 }
             }

             @media (max-width: 480px) {
                 .img-box11 .about-mission {
                     min-width: 100%;
                     margin-bottom: 80px
                 }
             }

             .img-box11 .about-mission img {
                 width: 100%;
                 border-radius: 10px;
                 margin-bottom: 30px
             }

             .img-box11 .about-mission .box-title {
                 font-size: 22px;
                 font-weight: 500;
                 margin-bottom: 6px
             }

             .img-box11 .about-mission .box-text {
                 margin-bottom: -0.4rem
             }

             .img-box11 .img3-wrapp {
                 position: relative;
                 z-index: -1;
                 margin: -80px 0 0 60px
             }

             .img-box11 .img3 {
                 position: relative;
                 z-index: 1;
                 max-width: 449px;
                 -webkit-mask-repeat: no-repeat;
                 mask-repeat: no-repeat;
                 max-height: 285px
             }

             @media (max-width: 480px) {
                 .img-box11 .img3 {
                     display: none
                 }
             }

             .img-box11 .img3 img {
                 border-radius: 30px
             }

             .img-box11 .about7-shape1 {
                 position: absolute;
                 top: 2px;
                 left: -4px;
                 width: 432px;
                 height: 265px;
                 background-color: #F3BA0E;
                 z-index: -1;
                 -webkit-mask-repeat: no-repeat;
                 mask-repeat: no-repeat
             }

             @media (max-width: 480px) {
                 .img-box11 .about7-shape1 {
                     display: none
                 }
             }

             .img-box11 .about7-shape2 {
                 position: absolute;
                 bottom: -14px;
                 left: 0;
                 width: 454px;
                 height: 276px;
                 background-color: #4661FF;
                 z-index: -2;
                 -webkit-mask-repeat: no-repeat;
                 mask-repeat: no-repeat
             }

             @media (max-width: 480px) {
                 .img-box11 .about7-shape2 {
                     display: none
                 }
             }

             .img-box12 {
                 position: relative;
                 z-index: 2
             }

             .img-box12 .consult-shape {
                 position: absolute;
                 left: -15%;
                 bottom: 0;
                 z-index: -1
             }

             @media (max-width: 1399px) {
                 .img-box12 .consult-shape {
                     left: 0
                 }
             }

             .consultation-sec2 {
                 max-width: 1560px;
                 display: block;
                 margin: auto
             }

             .consultation-area.style2 {
                 padding: 120px 0
             }

             @media (max-width: 1199px) {
                 .consultation-area.style2 {
                     padding: 120px 0 40px 0
                 }
             }

             @media (max-width: 991px) {
                 .consultation-area.style2 {
                     padding: 80px 0 40px 0
                 }
             }

             .about-area {
                 position: relative;
                 z-index: 2
             }

             .about-area:before {
                 content: "";
                 position: absolute;
                 inset: 0;
                 -webkit-mask-image: url("../img/bg/about_bg-1.png");
                 mask-image: url("../img/bg/about_bg-1.png");
                 background-color: #FAFAFA;
                 -webkit-mask-size: 100% 100%;
                 mask-size: 100% 100%;
                 -webkit-mask-repeat: no-repeat;
                 mask-repeat: no-repeat;
                 z-index: -1
             }

             @media (max-width: 1199px) {
                 .about-area:before {
                     -webkit-mask-size: cover;
                     mask-size: cover
                 }
             }

             .about-feature {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 19px;
                 max-width: 375px
             }

             .about-feature:not(:last-child) {
                 margin-bottom: 35px
             }

             .about-feature:not(:last-child) .box-icon {
                 background-color: var(--theme-color)
             }

             .about-feature.style2:not(:last-child) .box-icon {
                 background-color: var(--theme-color);
                 box-shadow: 0px 10px 30px rgba(62, 137, 249, 0.35)
             }

             .about-feature.style2 .box-icon {
                 background-color: #F3BA0E;
                 box-shadow: 0px 10px 30px rgba(243, 186, 14, 0.35)
             }

             .about-feature.style3:not(:last-child) .box-icon {
                 background-color: var(--theme-color);
                 box-shadow: 0px 10px 30px rgba(121, 84, 255, 0.35);
                 border-radius: 20px
             }

             .about-feature.style3 .box-icon {
                 background-color: #70D715;
                 box-shadow: 0px 10px 30px rgba(31, 198, 26, 0.35);
                 border-radius: 20px
             }

             .about-feature .box-icon {
                 min-width: 70px;
                 height: 70px;
                 line-height: 70px;
                 text-align: center;
                 background-color: var(--theme-color2);
                 border-radius: 20px
             }

             .about-feature .box-title {
                 font-weight: 600;
                 margin-bottom: 2px
             }

             @media (max-width: 575px) {
                 .about-feature .box-title {
                     font-size: 20px
                 }
             }

             .about-feature .box-text {
                 margin-bottom: -0.3rem
             }

             .about-area2 {
                 border-radius: 50px 50px 0 0
             }

             @media (max-width: 1699px) {
                 .about-area2 {
                     margin: 0
                 }
             }

             .img-box5 {
                 text-align: right
             }

             @media (max-width: 1199px) {
                 .img-box5 {
                     text-align: left
                 }
             }

             .img-box5 img {
                 border-radius: 50px
             }

             .customiization-area {
                 position: relative;
                 z-index: 2
             }

             .customiization-area:before {
                 content: "";
                 position: absolute;
                 inset: 0;
                 -webkit-mask-image: url("../img/bg/customization_bg-1.png");
                 mask-image: url("../img/bg/customization_bg-1.png");
                 background-color: #FAFAFA;
                 -webkit-mask-size: 100% 100%;
                 mask-size: 100% 100%;
                 -webkit-mask-repeat: no-repeat;
                 mask-repeat: no-repeat;
                 z-index: -1
             }

             @media (max-width: 1199px) {
                 .customiization-area:before {
                     -webkit-mask-size: cover;
                     mask-size: cover;
                     -webkit-mask-position: right center;
                     mask-position: right center
                 }
             }

             .img-box2 {
                 position: relative
             }

             @media (max-width: 1299px) {
                 .img-box2 {
                     margin-right: 40px;
                 }
             }

             @media (max-width: 1199px) {
                 .img-box2 {
                     margin-right: 0
                 }
             }

             .img-box2 .img1 {
                 text-align: center
             }

             @media (max-width: 1199px) {
                 .img-box2 .img1 {
                     margin-left: 0
                 }
             }

             .img-box2 .img1 img {
                 border-radius: 50px
             }

             .img-box2 .img2 {
                 position: absolute;
                 /* bottom: -20px; */
                 top: 0px;
                 left: 0
             }

             @media (max-width: 575px) {
                 .img-box2 .img2 {
                     max-width: 250px
                 }
             }

             @media (max-width: 375px) {
                 .img-box2 .img2 {
                     display: none
                 }
             }

             .img-box2 .img2 img {
                 box-shadow: 17px 20px 44px 1px rgba(160, 160, 160, 0.25);
                 border-radius: 30px
             }

             .about-area4 {
                 padding: 168px 0 140px 0;
                 background-color: var(--white-color);
                 -webkit-mask-repeat: no-repeat;
                 mask-repeat: no-repeat;
                 -webkit-mask-size: 100% 100%;
                 mask-size: 100% 100%;
                 -webkit-mask-position: center center;
                 mask-position: center center;
                 overflow: hidden
             }

             @media (max-width: 1199px) {
                 .about-area4 {
                     -webkit-mask-size: cover;
                     mask-size: cover
                 }
             }

             .img-box9 .img1 {
                 border-radius: 30px
             }

             .img-box9 img {
                 border-radius: 30px
             }

             .img-box10 {
                 position: relative;
                 margin-left: 5px
             }

             .img-box10 .img1,
             .img-box10 .img2 {
                 position: relative;
                 border-radius: 200px;
                 min-width: 200px;
                 overflow: hidden;
                 z-index: 2
             }

             .img-box10 .img2 {
                 height: 450px
             }

             @media (max-width: 1199px) {
                 .img-box10 .img2 {
                     height: 100%
                 }
             }

             .img-box10 img {
                 border-radius: 200px
             }

             .year-counter {
                 position: absolute;
                 bottom: 0%;
                 right: 5px;
                 width: 302px;
                 background: #CDFF62;
                 border-radius: 50px;
                 text-align: center;
                 padding: 70px 55px 27px 55px;
                 z-index: 1
             }

             @media (max-width: 1399px) {
                 .year-counter {
                     bottom: -2%
                 }
             }

             @media (max-width: 1199px) {
                 .year-counter {
                     right: 31%
                 }
             }

             @media (max-width: 991px) {
                 .year-counter {
                     right: 8%
                 }
             }

             @media (max-width: 767px) {
                 .year-counter {
                     right: 0%
                 }
             }

             @media (max-width: 480px) {
                 .year-counter {
                     position: relative
                 }
             }

             @media (max-width: 375px) {
                 .year-counter {
                     width: 275px
                 }
             }

             .year-counter .box-number {
                 font-weight: 600;
                 font-size: 64px;
                 text-align: center;
                 line-height: 64px;
                 text-transform: capitalize;
                 color: var(--title-color);
                 margin-bottom: 0
             }

             .year-counter .box-text {
                 font-weight: 500;
                 font-size: 18px;
                 color: var(--title-color);
                 margin-bottom: -0.4rem
             }

             .img-box10-wrapp {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 34px
             }

             @media (max-width: 767px) {
                 .img-box10-wrapp {
                     gap: 10px
                 }
             }

             @media (max-width: 375px) {
                 .img-box10-wrapp {
                     display: block
                 }
             }

             .about-wrapp {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 60px
             }

             @media (max-width: 1299px) {
                 .about-wrapp {
                     gap: 20px
                 }
             }

             @media (max-width: 767px) {
                 .about-wrapp {
                     display: block
                 }

                 .about-wrapp .about-content {
                     margin-bottom: 30px
                 }
             }

             .about-wrapp .img1 {
                 border-radius: 30px
             }

             .about-wrapp .img1 img {
                 border-radius: 30px
             }

             .about-wrapp .img2 {
                 min-width: 350px;
                 border-radius: 30px
             }

             @media (max-width: 1299px) {
                 .about-wrapp .img2 {
                     min-width: 300px
                 }
             }

             .about-wrapp .img2:not(:last-child) {
                 margin-bottom: 24px
             }

             .about-wrapp .img2 img {
                 border-radius: 30px
             }

             .th-team {
                 position: relative
             }

             .th-team .box-img {
                 position: relative;
                 overflow: hidden
             }

             .th-team .box-img img {
                 width: 100%;
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out
             }

             .th-team .team-desig {
                 font-size: 14px;
                 display: block;
                 margin-bottom: -0.5em;
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out
             }

             .th-team .th-social a {
                 --icon-size: 40px;
                 background-color: #F5F8F3;
                 color: var(--title-color)
             }

             .th-team .th-social a:hover {
                 background-color: var(--theme-color);
                 color: var(--white-color)
             }

             .th-team .box-title {
                 margin-bottom: 3px
             }

             .th-team:hover .team-img img {
                 -webkit-transform: scale(1.08);
                 -ms-transform: scale(1.08);
                 transform: scale(1.08)
             }

             .th-team:hover .team-social {
                 visibility: visible;
                 opacity: 1
             }

             .team-card {
                 position: relative;
                 background-color: var(--white-color);
                 box-shadow: 0px 10px 15px 0px #E8E8E8;
                 border-radius: 30px;
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out;
                 z-index: 2
             }

             .team-card .box-title {
                 margin-bottom: -0.3rem
             }

             .team-card .box-img {
                 border-radius: 30px
             }

             .team-card .box-content {
                 position: relative;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 padding: 30px;
                 z-index: 3
             }

             .team-card .team-social .icon-btn {
                 --btn-size: 40px;
                 background: #F5F8F3;
                 border: 1px solid var(--smoke-color);
                 color: var(--title-color);
                 border-radius: 50%;
                 font-size: var(--btn-font-size, 18px);
                 font-weight: 700;
                 cursor: pointer
             }

             .team-card .team-social .th-social {
                 position: absolute;
                 visibility: hidden;
                 opacity: 0;
                 bottom: 70px;
                 right: 30px;
                 width: 40px;
                 min-height: 178px;
                 padding: 0;
                 color: var(--title-color);
                 -webkit-transform: scaleY(0);
                 -ms-transform: scaleY(0);
                 transform: scaleY(0);
                 -webkit-transform-origin: bottom;
                 -ms-transform-origin: bottom;
                 transform-origin: bottom;
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out;
                 z-index: 2
             }

             .team-card .team-social .th-social a {
                 border-radius: 50%;
                 margin-right: 0;
                 margin-bottom: 10px
             }

             .team-card:hover .box-img img {
                 -webkit-transform: scale(1.15);
                 -ms-transform: scale(1.15);
                 transform: scale(1.15);
                 -webkit-transition: all ease 0.4s;
                 transition: all ease 0.4s
             }

             .team-card:hover .icon-btn {
                 -webkit-transform: rotate(45deg);
                 -ms-transform: rotate(45deg);
                 transform: rotate(45deg)
             }

             .team-card:hover .th-social {
                 -webkit-transform: scaleY(1);
                 -ms-transform: scaleY(1);
                 transform: scaleY(1);
                 opacity: 1;
                 visibility: visible
             }

             .team-box {
                 position: relative;
                 --space: 40px;
                 overflow: hidden;
                 border-radius: 30px
             }

             @media (max-width: 991px) {
                 .team-box {
                     --space: 30px
                 }
             }

             @media (max-width: 375px) {
                 .team-box {
                     --space: 20px
                 }
             }

             .team-box .team-img img {
                 width: 100%
             }

             .team-box .th-social a:hover {
                 background-color: var(--title-color)
             }

             .team-box .box-title {
                 color: var(--white-color);
                 margin-bottom: 0px
             }

             .team-box .box-title a {
                 color: inherit
             }

             .team-box .team-desig {
                 color: var(--white-color);
                 font-size: 14px;
                 border-bottom: 1px solid var(--white-color);
                 margin-bottom: 20px;
                 padding-bottom: 12px
             }

             .team-box .box-content {
                 position: absolute;
                 top: var(--space);
                 left: var(--space);
                 width: calc(100% - var(--space)*2);
                 height: calc(100% - var(--space)*2);
                 z-index: 2;
                 background: var(--theme-color);
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: center;
                 -webkit-justify-content: center;
                 -ms-flex-pack: center;
                 justify-content: center;
                 -webkit-box-orient: vertical;
                 -webkit-box-direction: normal;
                 -webkit-flex-direction: column;
                 -ms-flex-direction: column;
                 flex-direction: column;
                 text-align: center;
                 padding: 40px;
                 border-radius: 20px;
                 -webkit-transform: scale(0);
                 -ms-transform: scale(0);
                 transform: scale(0);
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out
             }

             @media (max-width: 375px) {
                 .team-box .box-content {
                     padding: 20px
                 }
             }

             .team-box:hover .box-content {
                 -webkit-transform: scale(1);
                 -ms-transform: scale(1);
                 transform: scale(1);
                 opacity: 0.9;
                 visibility: visible
             }

             .team-details {
                 position: relative;
                 border-radius: 50px;
                 background: #F3F4F6;
                 padding: 60px;
                 overflow: hidden
             }

             @media (max-width: 1299px) {
                 .team-details {
                     padding: 60px 45px
                 }
             }

             @media (max-width: 991px) {
                 .team-details {
                     padding: 60px 35px
                 }
             }

             @media (max-width: 575px) {
                 .team-details {
                     padding: 60px 20px
                 }
             }

             .team-details img {
                 width: 100%;
                 height: 511px;
                 object-fit: cover;
                 border-radius: 30px
             }

             @media (max-width: 1199px) {
                 .team-details img {
                     height: 100%
                 }
             }

             .team-details .th-social {
                 width: 100%
             }

             @media (max-width: 1399px) {
                 .team-details .th-social {
                     margin-bottom: 30px
                 }
             }

             .team-details .th-social a:not(:hover) {
                 background-color: var(--smoke-color)
             }

             .team-about .team-wrapp {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between
             }

             @media (max-width: 1399px) {
                 .team-about .team-wrapp {
                     display: block
                 }
             }

             .team-about_title {
                 margin-top: -0.4rem;
                 margin-bottom: 0px
             }

             .team-about_desig {
                 font-weight: 500;
                 color: var(--theme-color);
                 margin-bottom: 20px
             }

             .team-about_text {
                 margin-bottom: 20px
             }

             .team-about .th-btn {
                 padding: 19.5px 38.9px
             }

             .about-info {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 gap: 20px;
                 border-top: 1px solid rgba(27, 31, 37, 0.1);
                 padding: 20px 0 20px 20px
             }

             .about-info-wrap {
                 display: grid;
                 grid-template-columns: repeat(2, 1fr);
                 max-width: 600px;
                 border-bottom: 1px solid rgba(27, 31, 37, 0.1);
                 margin-bottom: 40px
             }

             @media (max-width: 767px) {
                 .about-info-wrap {
                     grid-template-columns: repeat(1, 1fr)
                 }
             }

             @media (max-width: 1299px) {
                 .about-info {
                     gap: 15px
                 }
             }

             @media (max-width: 767px) {
                 .about-info {
                     padding-left: 0
                 }
             }

             .about-info:not(:first-child) {
                 border-left: 1px solid rgba(27, 31, 37, 0.1)
             }

             @media (max-width: 767px) {
                 .about-info:not(:first-child) {
                     border-left: none
                 }
             }

             .about-info:first-child {
                 padding-left: 0
             }

             .about-info:nth-child(3) {
                 border-left: none;
                 padding-left: 0
             }

             .about-info_icon i {
                 width: 50px;
                 height: 50px;
                 line-height: 50px;
                 color: var(--theme-color);
                 background-color: var(--white-color);
                 border: none;
                 border-radius: 50%;
                 text-align: center;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .about-info_icon i:hover {
                 background-color: var(--theme-color);
                 color: var(--white-color)
             }

             .about-info_subtitle {
                 margin-bottom: 0
             }

             .about-info_title {
                 font-family: var(--body-font);
                 font-weight: 600;
                 font-size: 18px;
                 margin-bottom: 0
             }

             .about-info_title a {
                 color: inherit
             }

             .about-info_title a:hover {
                 color: var(--theme-color)
             }

             .about-card-img {
                 position: relative;
                 background-color: var(--white-color);
                 padding: 40px;
                 box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.08);
                 border-radius: 30px
             }

             .about-card-img img {
                 border-radius: 20px;
                 width: 100%
             }

             @media (max-width: 1299px) {
                 .about-card-img {
                     padding: 30px
                 }
             }

             @media (max-width: 1199px) {
                 .about-card-img {
                     margin-bottom: 40px
                 }
             }

             @media (max-width: 767px) {
                 .about-card-img {
                     border-radius: 20px
                 }

                 .about-card-img img {
                     border-radius: 15px
                 }
             }

             @media (max-width: 375px) {
                 .about-card-img {
                     padding: 20px
                 }
             }

             @media (min-width: 1300px) {
                 .about-card {
                     margin-left: 50px
                 }
             }

             .about-card_title {
                 margin-bottom: 15px
             }

             .about-card_desig {
                 color: var(--theme-color);
                 margin-bottom: 22px;
                 margin-top: -0.5em
             }

             .about-card_text {
                 margin-bottom: 26px;
                 margin-top: 32px
             }

             .about-card .th-social a {
                 border-radius: 10px
             }

             .team-info ul {
                 margin: 0;
                 padding: 0;
                 list-style-type: none
             }

             .team-info ul li {
                 margin-bottom: 15px;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center
             }

             .team-info ul li:last-child {
                 margin-bottom: 0
             }

             .team-info ul li b {
                 width: 100%;
                 max-width: 200px;
                 font-weight: 600;
                 font-size: 18px;
                 color: var(--title-color)
             }

             .team-info ul li span,
             .team-info ul li a {
                 color: var(--body-color)
             }

             .team-info ul li a:hover {
                 color: var(--theme-color)
             }

             @media (max-width: 575px) {
                 .team-info ul li b {
                     max-width: 140px
                 }
             }

             .team-contact-form {
                 padding: 50px;
                 background-color: var(--smoke-color)
             }

             .team-contact-form textarea {
                 height: 120px
             }

             .team-contact-form .form-title {
                 margin-top: -0.3em;
                 margin-bottom: 25px
             }

             @media (max-width: 575px) {
                 .team-contact-form {
                     padding: 40px 20px
                 }
             }

             .skill-feature {
                 text-align: left
             }

             .skill-feature:not(:last-child) {
                 margin-bottom: 30px
             }

             .skill-feature_title,
             .skill-feature .progress-value {
                 font-size: 16px;
                 font-weight: 500;
                 margin-bottom: 10px;
                 margin-top: -0.5em;
                 font-family: var(--title-font);
                 color: var(--title-color)
             }

             .skill-feature .progress {
                 position: relative;
                 height: 8px;
                 background-color: transparent;
                 border: 1px solid var(--smoke-color2);
                 overflow: visible;
                 border-radius: 0
             }

             .skill-feature .progress-bar {
                 background-color: var(--theme-color);
                 height: 2px;
                 margin: 2px;
                 border-radius: inherit;
                 overflow: visible;
                 position: relative
             }

             .skill-feature .progress-value {
                 position: absolute;
                 top: -30px;
                 right: -8px
             }

             .testi-img {
                 position: relative;
                 text-align: center;
                 z-index: 3;
                 margin-left: 30px
             }

             @media (max-width: 1199px) {
                 .testi-img {
                     margin: 50px 0 0 0
                 }
             }

             @media (max-width: 991px) {
                 .testi-img {
                     margin: 100px 0 0 0
                 }
             }

             @media (max-width: 575px) {
                 .testi-img {
                     margin: 0
                 }
             }

             .testi-img img {
                 border-radius: 30px
             }

             .testi-img .img1 {
                 margin-top: 85px;
                 border-radius: 30px
             }

             @media (max-width: 575px) {
                 .testi-img .img1 {
                     margin: 0
                 }
             }

             .testi-img .img1 img {
                 border: 1px solid var(--smoke-color)
             }

             .testi-img .img2 {
                 position: absolute;
                 top: -20%;
                 left: 30%
             }

             @media (max-width: 480px) {
                 .testi-img .img2 {
                     display: none
                 }
             }

             .testi-img .img2 img {
                 -webkit-filter: drop-shadow(0px 40px 50px rgba(103, 114, 148, 0.2));
                 filter: drop-shadow(0px 40px 50px rgba(103, 114, 148, 0.2))
             }

             .testi-img .img3 {
                 position: absolute;
                 top: 20%;
                 right: 0%
             }

             @media (max-width: 480px) {
                 .testi-img .img3 {
                     display: none
                 }
             }

             .testi-img .img3 img {
                 -webkit-filter: drop-shadow(0px 40px 50px rgba(103, 114, 148, 0.2));
                 filter: drop-shadow(0px 40px 50px rgba(103, 114, 148, 0.2))
             }

             .testi-img .img4 {
                 position: absolute;
                 bottom: 0;
                 left: 0%
             }

             @media (max-width: 480px) {
                 .testi-img .img4 {
                     display: none
                 }
             }

             .testi-img .img4 img {
                 -webkit-filter: drop-shadow(0px 40px 50px rgba(103, 114, 148, 0.2));
                 filter: drop-shadow(0px 40px 50px rgba(103, 114, 148, 0.2))
             }

             .box-desig {
                 font-size: 14px
             }

             .testi-slider {
                 height: 297px
             }

             @media (max-width: 575px) {
                 .testi-slider {
                     height: 340px
                 }
             }

             @media (max-width: 575px) {
                 .testi-slider {
                     height: 440px
                 }
             }

             .testi-thumb {
                 height: 297px;
                 display: -webkit-inline-box;
                 display: -webkit-inline-flex;
                 display: -ms-inline-flexbox;
                 display: inline-flex;
                 -webkit-box-orient: vertical;
                 -webkit-box-direction: normal;
                 -webkit-flex-direction: column;
                 -ms-flex-direction: column;
                 flex-direction: column;
                 -webkit-justify-content: space-around;
                 -ms-flex-pack: distribute;
                 justify-content: space-around;
                 position: absolute;
                 left: 10%;
                 top: 50%;
                 -webkit-transform: translate(-50%, -50%);
                 -ms-transform: translate(-50%, -50%);
                 transform: translate(-50%, -50%)
             }

             @media (max-width: 1699px) {
                 .testi-thumb {
                     left: 2%
                 }
             }

             @media (max-width: 1199px) {
                 .testi-thumb {
                     display: none
                 }
             }

             .testi-thumb .tab-btn {
                 font-family: var(--title-font);
                 font-size: 16px;
                 font-weight: 600;
                 color: var(--title-color);
                 position: relative;
                 cursor: pointer;
                 z-index: 3
             }

             .testi-thumb .tab-btn:after {
                 content: '';
                 width: 2px;
                 height: 64px;
                 background-color: var(--smoke-color);
                 position: absolute;
                 left: -9px;
                 top: 8px;
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out
             }

             .testi-thumb .tab-btn.active {
                 color: var(--theme-color)
             }

             .testi-thumb .tab-btn.active:after {
                 background-color: var(--theme-color)
             }

             .testi-thumb .indicator {
                 position: absolute;
                 height: 64px !important;
                 width: 2px !important;
                 background-color: var(--theme-color);
                 left: -9px;
                 top: calc(var(--pos-y) + 8px);
                 z-index: 2;
                 -webkit-transition: 0.9s ease-in-out;
                 transition: 0.9s ease-in-out
             }

             @media (max-width: 1199px) {
                 .testi-thumb .indicator {
                     display: none
                 }
             }

             .testi-area {
                 position: relative;
                 background-color: #FAFAFA
             }

             .testi-area .ripple-shape {
                 position: absolute;
                 right: -15%;
                 top: -15%
             }

             @media (max-width: 1199px) {
                 .testi-area .ripple-shape {
                     right: -43%;
                     top: 0%;
                     left: unset
                 }
             }

             @media (max-width: 767px) {
                 .testi-area .ripple-shape {
                     display: none
                 }
             }

             .testi-area .ripple-1,
             .testi-area .ripple-2,
             .testi-area .ripple-3,
             .testi-area .ripple-4,
             .testi-area .ripple-5 {
                 left: unset;
                 right: -30%;
                 top: -30%
             }

             .testi-card {
                 position: relative;
                 margin-right: 10px
             }

             .testi-card .box-review {
                 margin-bottom: 15px
             }

             .testi-card .box-review i {
                 color: #F3BA0E;
                 font-size: 14px;
                 margin-right: 6px
             }

             .testi-card .box-text {
                 font-family: var(--title-font);
                 font-weight: 500;
                 font-size: 22px;
                 line-height: 32px;
                 color: #1F1F1F;
                 margin-bottom: 30px
             }

             @media (max-width: 1299px) {
                 .testi-card .box-text {
                     font-size: 18px;
                     line-height: 28px
                 }
             }

             @media (max-width: 575px) {
                 .testi-card .box-text {
                     font-size: 16px;
                     line-height: 26px
                 }
             }

             .testi-card .box-profile {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 gap: 20px
             }

             .testi-card .box-author {
                 max-width: 80px;
                 border-radius: 20px;
                 overflow: hidden
             }

             .testi-card .box-author img {
                 border-radius: 20px
             }

             .testi-card .box-title {
                 margin-bottom: 0
             }

             @media (max-width: 375px) {
                 .testi-card .box-title {
                     font-size: 18px
                 }
             }

             .testi-card_text {
                 margin-bottom: 22px
             }

             .testi-card .box-wrapp {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between
             }

             @media (max-width: 375px) {
                 .testi-card .box-wrapp {
                     display: block
                 }
             }

             .testi-grid {
                 text-align: center
             }

             .testi-grid .box-review {
                 color: #F3BA0E;
                 font-size: 16px;
                 margin-bottom: 10px
             }

             .testi-grid .box-review i {
                 margin-left: 5px
             }

             .testi-grid .box-title {
                 margin-bottom: 0
             }

             .testi-grid .box-desig {
                 font-size: 14px
             }

             .testi-grid .box-text {
                 font-size: 22px;
                 color: var(--title-color);
                 margin-bottom: 130px
             }

             @media (max-width: 1199px) {
                 .testi-grid .box-text {
                     font-size: 20px
                 }
             }

             @media (max-width: 991px) {
                 .testi-grid .box-text {
                     margin-bottom: 30px
                 }
             }

             @media (max-width: 767px) {
                 .testi-grid .box-text {
                     font-size: 18px
                 }
             }

             @media (max-width: 375px) {
                 .testi-grid .box-text {
                     font-size: 16px
                 }
             }

             .testi-grid-area {
                 position: relative;
                 padding: 21px 120px;
                 border-radius: 50px;
                 height: 360px;
                 text-align: center;
                 background-size: 100%;
                 background-repeat: no-repeat;
                 margin-bottom: 90px
             }

             @media (max-width: 1299px) {
                 .testi-grid-area {
                     padding: 46px 40px
                 }
             }

             @media (max-width: 1199px) {
                 .testi-grid-area {
                     background-size: 100% 95%;
                     padding: 46px 20px;
                     margin-bottom: 40px
                 }
             }

             @media (max-width: 991px) {
                 .testi-grid-area {
                     background-image: none !important;
                     padding: 0;
                     margin-bottom: 60px;
                     margin-top: 30px
                 }
             }

             @media (max-width: 480px) {
                 .testi-grid-area {
                     margin-bottom: 130px
                 }
             }

             .testi-grid-area .testi-indicator {
                 position: absolute;
                 width: 100%;
                 right: 0;
                 bottom: 10px
             }

             @media (max-width: 1299px) {
                 .testi-grid-area .testi-indicator {
                     bottom: 20px
                 }
             }

             @media (max-width: 991px) {
                 .testi-grid-area .testi-indicator {
                     position: relative;
                     bottom: 0
                 }
             }

             .testi-grid-area .testi-indicator:before {
                 content: "";
                 position: absolute;
                 left: 17%;
                 top: 35%;
                 width: 872px;
                 height: 160px;
                 background: #FFFFFF;
                 border: 1px solid rgba(31, 31, 31, 0.4);
                 border-radius: 100px;
                 z-index: -1
             }

             @media (max-width: 1199px) {
                 .testi-grid-area .testi-indicator:before {
                     display: none
                 }
             }

             @media (max-width: 575px) {
                 .testi-grid-area .testi-indicator {
                     position: initial;
                     margin-bottom: 30px
                 }
             }

             .testi-grid-area .slider-arrow {
                 top: 90%;
                 left: 25%;
                 border: 1px solid rgba(31, 31, 31, 0.4);
                 background-color: var(--white-color);
                 opacity: 1;
                 visibility: visible;
                 -webkit-transform: scale(1);
                 -ms-transform: scale(1);
                 transform: scale(1);
                 z-index: 2
             }

             .testi-grid-area .slider-arrow:hover {
                 background-color: var(--theme-color);
                 color: var(--white-color)
             }

             .testi-grid-area .slider-arrow.slider-next {
                 right: 25%;
                 left: auto
             }

             @media (max-width: 1500px) {
                 .testi-grid-area .slider-arrow {
                     display: block !important
                 }
             }

             @media (max-width: 1199px) {
                 .testi-grid-area .slider-arrow {
                     display: none !important
                 }
             }

             .testi-grid-area .testi-line {
                 position: absolute;
                 left: 30%;
                 z-index: -1;
                 bottom: -40px;
                 width: 40%;
                 height: 1px;
                 background-color: #1F1F1F;
                 opacity: 0.4
             }

             @media (max-width: 1199px) {
                 .testi-grid-area .testi-line {
                     display: none
                 }
             }

             .testi-grid-area .testi-line:before {
                 content: "";
                 position: absolute;
                 left: 50%;
                 top: 50%;
                 width: 230px;
                 height: 41px;
                 background-color: var(--white-color);
                 -webkit-transform: translate(-50%, -50%);
                 -ms-transform: translate(-50%, -50%);
                 transform: translate(-50%, -50%)
             }

             @media (max-width: 767px) {
                 .testi-grid-area .testi-line {
                     display: none
                 }
             }

             .testi-grid-thumb {
                 position: relative;
                 max-width: 500px;
                 padding: 18px;
                 z-index: 2
             }

             @media (max-width: 767px) {
                 .testi-grid-thumb {
                     margin-bottom: 20px
                 }
             }

             @media (max-width: 575px) {
                 .testi-grid-thumb {
                     max-width: 100%
                 }
             }

             .testi-grid-thumb .box-img {
                 background-color: var(--white-color);
                 border: 1px solid var(--title-color);
                 border-radius: 50%;
                 width: 60px;
                 height: 60px;
                 line-height: 50px;
                 text-align: center;
                 overflow: hidden;
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out;
                 cursor: pointer
             }

             @media (max-width: 575px) {
                 .testi-grid-thumb .box-img {
                     margin: auto
                 }
             }

             @media (max-width: 375px) {
                 .testi-grid-thumb .box-img {
                     width: 50px;
                     height: 50px;
                     line-height: 30px
                 }
             }

             .testi-grid-thumb .box-img img {
                 border-radius: 50%
             }

             .testi-grid-thumb .swiper-slide-thumb-active {
                 opacity: 1
             }

             .testi-grid-thumb .swiper-slide-thumb-active .box-img {
                 -webkit-transform: scale(1.6);
                 -ms-transform: scale(1.6);
                 transform: scale(1.6);
                 border-width: 2px;
                 line-height: 40px;
                 border-color: var(--theme-color)
             }

             @media (max-width: 375px) {
                 .testi-grid-thumb .swiper-slide-thumb-active .box-img {
                     line-height: 25px;
                     -webkit-transform: scale(1.4);
                     -ms-transform: scale(1.4);
                     transform: scale(1.4)
                 }
             }

             .testiSlider3 {
                 position: relative;
                 overflow: hidden;
                 margin: 0 -97px !important
             }

             @media (max-width: 767px) {
                 .testiSlider3 {
                     margin: 0 !important
                 }
             }

             .testiSlider3 .swiper-slide.swiper-slide-active .testi-box:before {
                 background: transparent
             }

             .testiSlider3 .swiper-slide.swiper-slide-prev .testi-box:before {
                 background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #fff 100%);
                 background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
                 -webkit-transform: matrix(-1, 0, 0, 1, 0, 0);
                 -ms-transform: matrix(-1, 0, 0, 1, 0, 0);
                 transform: matrix(-1, 0, 0, 1, 0, 0)
             }

             .testiSlider3 .slider-arrow {
                 top: unset;
                 bottom: 0;
                 left: 22%;
                 border: 1px solid var(--theme-color);
                 box-shadow: none;
                 color: var(--theme-color);
                 opacity: 1;
                 visibility: visible;
                 -webkit-transform: scale(1);
                 -ms-transform: scale(1);
                 transform: scale(1)
             }

             .testiSlider3 .slider-arrow:hover {
                 color: var(--white-color)
             }

             @media (max-width: 1799px) {
                 .testiSlider3 .slider-arrow {
                     left: 18%
                 }
             }

             .testiSlider3 .slider-arrow.slider-next {
                 right: 22%;
                 left: auto
             }

             @media (max-width: 1799px) {
                 .testiSlider3 .slider-arrow.slider-next {
                     right: 18%
                 }
             }

             .testiSlider3 .slider-pagination {
                 position: relative
             }

             .testiSlider3 .slider-pagination:after,
             .testiSlider3 .slider-pagination:before {
                 content: "";
                 position: absolute;
                 top: 50%;
                 width: 410px;
                 height: 1px;
                 background-color: var(--theme-color)
             }

             @media (max-width: 767px) {

                 .testiSlider3 .slider-pagination:after,
                 .testiSlider3 .slider-pagination:before {
                     display: none
                 }
             }

             .testiSlider3 .slider-pagination:before {
                 margin-left: -27rem
             }

             .testiSlider3 .slider-pagination:after {
                 margin-left: 1.5rem
             }

             .testi-box {
                 position: relative;
                 border: 1px solid #E3E7F0;
                 border-radius: 10px;
                 padding: 60px;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out;
                 z-index: 9
             }

             @media (max-width: 1500px) {
                 .testi-box {
                     padding: 40px
                 }
             }

             @media (max-width: 1299px) {
                 .testi-box {
                     padding: 30px
                 }
             }

             .testi-box:before {
                 content: "";
                 position: absolute;
                 inset: 0;
                 background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #fff 100%);
                 background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
                 z-index: 1
             }

             @media (max-width: 1199px) {
                 .testi-box {
                     padding: 40px
                 }
             }

             @media (max-width: 575px) {
                 .testi-box {
                     padding: 30px
                 }
             }

             .testi-box .box-text {
                 font-size: 20px;
                 margin-top: -0.5rem;
                 border-bottom: 1px solid var(--smoke-color);
                 margin-bottom: 40px;
                 padding-bottom: 30px
             }

             @media (max-width: 375px) {
                 .testi-box .box-text {
                     font-size: 18px
                 }
             }

             .testi-box .box-wrapper {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center
             }

             @media (max-width: 430px) {
                 .testi-box .box-wrapper {
                     display: block
                 }
             }

             .testi-box .box-profile {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 gap: 20px
             }

             @media (max-width: 430px) {
                 .testi-box .box-profile {
                     margin-bottom: 20px
                 }
             }

             .testi-box .box-author {
                 min-width: 60px
             }

             .testi-box .box-author img {
                 width: 60px;
                 height: 60px;
                 border-radius: 50%
             }

             .testi-box .box-title {
                 font-weight: 500;
                 font-size: 20px;
                 line-height: 24px;
                 margin-bottom: 0
             }

             @media (max-width: 375px) {
                 .testi-box .box-title {
                     font-size: 18px;
                     line-height: 28px
                 }
             }

             .testi-box .box-desig {
                 font-weight: 400;
                 font-size: 14px;
                 font-family: var(--body-font);
                 color: var(--theme-color)
             }

             .testi-box .box-review i {
                 color: #F3BA0E
             }

             .testi-box:hover {
                 border: 1px solid transparent;
                 box-shadow: 0px 4px 50px #EFEFEF
             }

             .testi-box.th-ani:hover {
                 -webkit-transform: translate(0, -5px);
                 -ms-transform: translate(0, -5px);
                 transform: translate(0, -5px)
             }

             .testi-area4 {
                 position: relative;
                 -webkit-mask-repeat: no-repeat;
                 mask-repeat: no-repeat;
                 -webkit-mask-size: cover;
                 mask-size: cover
             }

             @media (max-width: 1199px) {
                 .testi-area4 {
                     -webkit-mask-size: 100% 100%;
                     mask-size: 100% 100%
                 }
             }

             .testi-block {
                 position: relative;
                 overflow: hidden;
                 max-width: 864px
             }

             .testi-block-area {
                 position: relative;
                 background: #F5F8F3;
                 border: 1px solid #E0E0E0;
                 border-radius: 30px;
                 z-index: 2
             }

             .testi-block-area .th-slider.has-shadow .swiper-wrapper {
                 padding: 0
             }

             .testi-block-slide {
                 position: relative;
                 background-color: var(--white-color);
                 padding: 60px 20px 60px 60px !important;
                 border-radius: 30px;
                 margin: 1px !important;
                 overflow: hidden;
                 max-width: 984px
             }

             @media (max-width: 1399px) {
                 .testi-block-slide {
                     padding: 40px 20px 40px 20px !important
                 }
             }

             .testi-block .box-text {
                 font-size: 20px;
                 line-height: 30px;
                 margin-top: -0.5rem;
                 border-bottom: 1px solid var(--smoke-color);
                 margin-bottom: 40px;
                 padding-bottom: 30px
             }

             .testi-block .testi-wrapp {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center
             }

             @media (max-width: 575px) {
                 .testi-block .testi-wrapp {
                     display: block
                 }
             }

             .testi-block .box-profile {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 15px
             }

             @media (max-width: 575px) {
                 .testi-block .box-profile {
                     margin-bottom: 5px
                 }
             }

             .testi-block .box-avater {
                 min-width: 60px
             }

             .testi-block .box-avater img {
                 border-radius: 50%
             }

             .testi-block .box-title {
                 font-size: 20px;
                 font-weight: 500;
                 margin-bottom: 0
             }

             .testi-block .box-desig {
                 font-size: 14px;
                 margin-bottom: -0.4rem
             }

             .testi-block .box-review {
                 color: #F3BA0E
             }

             .testi-block .box-review i {
                 color: #F3BA0E
             }

             .testi-counter {
                 padding: 50px 40px 60px 40px
             }

             @media (max-width: 1399px) {
                 .testi-counter {
                     padding: 40px 40px 40px 40px
                 }
             }

             @media (max-width: 1299px) {
                 .testi-counter {
                     padding: 20px 10px
                 }
             }

             @media (max-width: 1299px) {
                 .testi-counter {
                     padding: 40px 20px
                 }
             }

             @media (max-width: 1199px) {
                 .testi-counter {
                     padding: 40px 0px
                 }
             }

             @media (max-width: 991px) {
                 .testi-counter {
                     padding: 40px 20px
                 }
             }

             .testi-counter .box-text {
                 font-size: 16px;
                 font-family: var(--title-font);
                 font-weight: 600;
                 color: var(--title-color)
             }

             .testi-counter .box-number {
                 font-weight: 400;
                 font-size: 36px;
                 line-height: 46px;
                 color: var(--title-color);
                 margin-bottom: 10px
             }

             .testi-counter .counter-number {
                 font-weight: 600
             }

             .testi-item {
                 position: relative;
                 background-color: var(--smoke-color);
                 border: 2px solid var(--smoke-color);
                 border-radius: 20px;
                 padding: 40px;
                 z-index: 2;
                 min-height: 508px;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .testi-item2 {
                 position: relative;
                 background-color: var(--smoke-color);
                 border: 2px solid var(--smoke-color);
                 border-radius: 20px;
                 padding: 40px;
                 z-index: 2;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             @media (max-width: 575px) {
                 .testi-item {
                     padding: 30px
                 }
             }

             .testi-item:before {
                 content: "";
                 position: absolute;
                 inset: 0;
                 right: 10px;
                 bottom: 10px;
                 background-color: var(--white-color);
                 border-radius: 20px;
                 z-index: -1
             }

             .testi-item .box-text {
                 border-bottom: 1px solid var(--smoke-color);
                 margin-top: -0.4rem;
                 margin-bottom: 40px;
                 padding-bottom: 30px
             }

             .testi-item .box-profile {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 20px
             }

             @media (max-width: 375px) {
                 .testi-item .box-profile {
                     display: block
                 }
             }

             .testi-item .box-author {
                 min-width: 80px
             }

             @media (max-width: 375px) {
                 .testi-item .box-author {
                     margin-bottom: 15px
                 }
             }

             .testi-item .box-author img {
                 width: 80px;
                 height: 80px;
                 border-radius: 50%
             }

             .testi-item .box-title {
                 margin-bottom: -0.2rem
             }

             @media (max-width: 575px) {
                 .testi-item .box-title {
                     font-size: 20px
                 }
             }

             .testi-item .box-desig {
                 font-size: 14px;
                 margin-bottom: 0
             }

             .testi-item .box-review i {
                 color: #F3BA0E;
                 font-size: 14px;
                 margin-right: 5px
             }

             .testi-item:hover {
                 border: 1px solid var(--theme-color);
                 background-color: var(--theme-color)
             }

             .sec-text4 {
                 font-family: var(--title-font);
                 font-weight: 500;
                 max-width: 538px
             }

             .testi-grid2 {
                 position: relative;
                 max-width: 850px;
                 display: block;
                 margin: auto;
                 text-align: center
             }

             .testi-grid2-area {
                 position: relative;
                 z-index: 2
             }

             .testi-grid2-area .testi-line {
                 position: absolute;
                 top: 0%;
                 left: 50%;
                 z-index: -1;
                 -webkit-transform: translateX(-50%);
                 -ms-transform: translateX(-50%);
                 transform: translateX(-50%);
                 min-width: 1426px
             }

             @media (max-width: 1299px) {
                 .testi-grid2-area .testi-line {
                     min-width: 100%
                 }
             }

             @media (max-width: 767px) {
                 .testi-grid2-area .testi-line {
                     display: none
                 }
             }

             .testi-grid2-area .testi-line img {
                 width: 100%
             }

             .testi-grid2-area .slider-arrow {
                 top: 15%;
                 left: 18%;
                 border: 1px solid rgba(31, 31, 31, 0.4);
                 background-color: var(--white-color);
                 color: var(--title-color);
                 opacity: 1;
                 visibility: visible;
                 -webkit-transform: scale(1);
                 -ms-transform: scale(1);
                 transform: scale(1);
                 z-index: 2;
                 box-shadow: none
             }

             .testi-grid2-area .slider-arrow:hover {
                 background-color: var(--theme-color);
                 color: var(--white-color);
                 border-color: var(--theme-color)
             }

             .testi-grid2-area .slider-arrow.slider-next {
                 right: 18%;
                 left: auto
             }

             .testi-grid2-thumb {
                 position: relative;
                 max-width: 1590px;
                 height: 280px;
                 z-index: 2;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             @media (max-width: 1599px) {
                 .testi-grid2-thumb {
                     max-width: 100%
                 }
             }

             @media (max-width: 991px) {
                 .testi-grid2-thumb {
                     height: 240px
                 }
             }

             @media (max-width: 767px) {
                 .testi-grid2-thumb {
                     height: 220px
                 }
             }

             .testi-grid2-thumb .swiper-slide {
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out;
                 cursor: pointer
             }

             @media (max-width: 1199px) {
                 .testi-grid2-thumb .swiper-slide {
                     display: -webkit-box;
                     display: -webkit-flex;
                     display: -ms-flexbox;
                     display: flex;
                     -webkit-justify-content: space-around;
                     -ms-flex-pack: distribute;
                     justify-content: space-around
                 }
             }

             @media (max-width: 575px) {
                 .testi-grid2-thumb .swiper-slide {
                     -webkit-box-pack: start;
                     -webkit-justify-content: flex-start;
                     -ms-flex-pack: start;
                     justify-content: flex-start
                 }
             }

             .testi-grid2-thumb .swiper-slide:nth-child(even) {
                 margin-top: 60px
             }

             .testi-grid2-thumb .swiper-slide:nth-child(3) {
                 margin-top: 94px;
                 margin-left: 50px
             }

             @media (max-width: 1299px) {
                 .testi-grid2-thumb .swiper-slide:nth-child(3) {
                     margin-left: 20px
                 }
             }

             .testi-grid2-thumb .swiper-slide:nth-child(4) {
                 margin-left: 40px
             }

             @media (max-width: 1299px) {
                 .testi-grid2-thumb .swiper-slide:nth-child(4) {
                     margin-left: 20px
                 }
             }

             .testi-grid2-thumb .swiper-slide:nth-child(5) {
                 margin-left: 40px
             }

             @media (max-width: 1499px) {
                 .testi-grid2-thumb .swiper-slide:nth-child(5) {
                     margin-left: 0px
                 }
             }

             .testi-grid2-thumb .swiper-slide .box-img {
                 position: relative;
                 width: 160px;
                 height: 160px;
                 border-radius: 100px 100px 0px 0px;
                 z-index: 2
             }

             @media (max-width: 1299px) {
                 .testi-grid2-thumb .swiper-slide .box-img {
                     width: 120px;
                     height: 120px
                 }
             }

             @media (max-width: 991px) {
                 .testi-grid2-thumb .swiper-slide .box-img {
                     width: 100px;
                     height: 100px
                 }
             }

             @media (max-width: 375px) {
                 .testi-grid2-thumb .swiper-slide .box-img {
                     width: 80px;
                     height: 80px
                 }
             }

             .testi-grid2-thumb .swiper-slide .box-img img {
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .testi-grid2-thumb .swiper-slide .box-img:before {
                 content: "";
                 position: absolute;
                 top: 0;
                 left: 15px;
                 width: 160px;
                 height: 150px;
                 background-color: transparent;
                 border: 1px solid var(--smoke-color);
                 border-radius: inherit;
                 z-index: -1;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             @media (max-width: 1299px) {
                 .testi-grid2-thumb .swiper-slide .box-img:before {
                     width: 120px;
                     height: 110px
                 }
             }

             @media (max-width: 991px) {
                 .testi-grid2-thumb .swiper-slide .box-img:before {
                     width: 100px;
                     height: 100px
                 }
             }

             @media (max-width: 375px) {
                 .testi-grid2-thumb .swiper-slide .box-img:before {
                     width: 80px;
                     height: 80px
                 }
             }

             .testi-grid2-thumb .swiper-slide .box-img img {
                 border-radius: 100px 100px 0px 0px
             }

             .testi-grid2-thumb .swiper-slide-thumb-active .box-img:before {
                 background-color: var(--title-color);
                 border-color: var(--title-color)
             }

             .testi-grid2 .box-text {
                 font-weight: var(--title-font);
                 font-size: 24px;
                 color: var(--title-color);
                 margin-bottom: 20px
             }

             @media (max-width: 575px) {
                 .testi-grid2 .box-text {
                     font-size: 18px
                 }
             }

             .testi-grid2 .box-review {
                 color: #F3BA0E;
                 margin-bottom: 15px
             }

             .testi-grid2 .box-review i {
                 margin-right: 5px
             }

             .testi-grid2 .box-title {
                 margin-bottom: 0
             }

             .testi-grid2 .box-desig {
                 display: block;
                 margin-bottom: -0.3rem
             }

             .testi-title-area {
                 max-width: 565px;
                 position: absolute;
                 top: 100px
             }

             @media (max-width: 1199px) {
                 .testi-title-area {
                     position: relative;
                     top: 0;
                     text-align: center;
                     max-width: 100%
                 }
             }

             .testi-box2 {
                 position: relative;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between;
                 -webkit-box-align: end;
                 -webkit-align-items: end;
                 -ms-flex-align: end;
                 align-items: end;
                 z-index: 2;
                 overflow: hidden;
                 background-color: var(--white-color)
             }

             .testi-box2.style2:before {
                 display: none
             }

             .testi-box2.style2 .box-content {
                 padding: 0
             }

             .testi-box2.style2 .box-text {
                 max-width: 760px
             }

             @media (max-width: 1199px) {
                 .testi-box2 {
                     display: block
                 }
             }

             .testi-box2:before {
                 content: "";
                 position: absolute;
                 width: 1320px;
                 height: 380px;
                 background: var(--white-color);
                 border: 1px solid var(--smoke-color);
                 border-radius: 30px;
                 z-index: -1
             }

             @media (max-width: 1299px) {
                 .testi-box2:before {
                     width: 100%
                 }
             }

             @media (max-width: 1199px) {
                 .testi-box2:before {
                     height: 100%
                 }
             }

             .testi-box2 .box-content {
                 padding: 60px
             }

             @media (max-width: 1299px) {
                 .testi-box2 .box-content {
                     padding: 40px
                 }
             }

             @media (max-width: 1199px) {
                 .testi-box2 .box-content {
                     text-align: center
                 }
             }

             @media (max-width: 767px) {
                 .testi-box2 .box-content {
                     padding: 30px 25px
                 }
             }

             @media (max-width: 375px) {
                 .testi-box2 .box-content {
                     padding: 30px 15px
                 }
             }

             .testi-box2 .box-text {
                 font-family: var(--title-font);
                 font-weight: 500;
                 font-size: 22px;
                 line-height: 32px;
                 color: var(--title-color);
                 max-width: 601px;
                 margin-top: -0.2rem;
                 margin-bottom: 30px
             }

             @media (max-width: 1199px) {
                 .testi-box2 .box-text {
                     font-size: 18px;
                     line-height: 28px;
                     max-width: 100%;
                     display: block;
                     text-align: center;
                     margin: auto auto 30px auto
                 }
             }

             @media (max-width: 375px) {
                 .testi-box2 .box-text {
                     font-size: 16px;
                     line-height: 26px
                 }
             }

             .testi-box2 .box-title {
                 font-size: 30px;
                 margin-bottom: 0
             }

             .testi-box2 .box-desig {
                 display: block;
                 margin-bottom: -0.3rem
             }

             .testi-box2 .box-img {
                 position: relative;
                 z-index: 2;
                 border-radius: 50px;
                 min-width: 480px;
                 margin: 0 60px 60px 0;
                 text-align: center;
                 display: block
             }

             @media (max-width: 1299px) {
                 .testi-box2 .box-img {
                     margin: 0 40px 40px 0
                 }
             }

             @media (max-width: 1199px) {
                 .testi-box2 .box-img {
                     min-width: 100%;
                     display: block;
                     margin: auto;
                     border-radius: 0 0 30px 30px
                 }
             }

             .testi-box2 .box-img:before {
                 content: "";
                 position: absolute;
                 inset: 0;
                 top: 113px;
                 background-color: #EBEEFF;
                 z-index: -1;
                 border-radius: inherit
             }

             .testi-box2 .box-img img {
                 position: relative;
                 z-index: 2
             }

             .testi-box2 .box-img .img2 {
                 position: absolute;
                 z-index: 1;
                 top: 0;
                 right: 50px;
                 text-align: center;
                 -webkit-filter: brightness(0.1) invert(0.8);
                 filter: brightness(0.1) invert(0.8)
             }

             @media (max-width: 1199px) {
                 .testi-box2 .box-img .img2 {
                     right: 30%;
                     -webkit-transform: translate(0 -50%);
                     -ms-transform: translate(0 -50%);
                     transform: translate(0 -50%)
                 }
             }

             @media (max-width: 991px) {
                 .testi-box2 .box-img .img2 {
                     right: 22%
                 }
             }

             @media (max-width: 767px) {
                 .testi-box2 .box-img .img2 {
                     right: 14%
                 }
             }

             @media (max-width: 480px) {
                 .testi-box2 .box-img .img2 {
                     right: 3%
                 }
             }

             .testi-box2 .testi-quote {
                 position: absolute;
                 top: 32%;
                 left: 60px
             }

             @media (max-width: 1199px) {
                 .testi-box2 .testi-quote {
                     display: none
                 }
             }

             .testi-box3 {
                 position: relative;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 z-index: 2;
                 overflow: hidden;
                 background-color: var(--white-color)
             }

             @media (max-width: 1199px) {
                 .testi-box3 {
                     display: block
                 }
             }

             @media (max-width: 1199px) {
                 .testi-box3 .box-content {
                     text-align: center
                 }
             }

             .testi-box3 .box-text {
                 font-family: var(--title-font);
                 font-weight: 500;
                 font-size: 22px;
                 line-height: 32px;
                 color: var(--title-color);
                 max-width: 760px;
                 margin-top: -0.2rem;
                 margin-bottom: 30px
             }

             @media (max-width: 1199px) {
                 .testi-box3 .box-text {
                     font-size: 18px;
                     line-height: 28px;
                     max-width: 100%;
                     display: block;
                     text-align: center;
                     margin: auto auto 30px auto
                 }
             }

             @media (max-width: 375px) {
                 .testi-box3 .box-text {
                     font-size: 16px;
                     line-height: 26px
                 }
             }

             .testi-box3 .box-content {
                 margin-top: 140px
             }

             @media (max-width: 1199px) {
                 .testi-box3 .box-content {
                     margin-top: 40px
                 }
             }

             .testi-box3 .box-title {
                 font-size: 30px;
                 margin-bottom: 0
             }

             @media (max-width: 767px) {
                 .testi-box3 .box-title {
                     font-size: 25px
                 }
             }

             .testi-box3 .box-desig {
                 display: block;
                 margin-bottom: -0.3rem
             }

             .testi-box3 .box-img {
                 position: relative;
                 z-index: 2;
                 border-radius: 50px;
                 min-width: 480px;
                 margin: 0px 60px 60px 0;
                 text-align: center;
                 display: block
             }

             .testi-box3 .box-img:before {
                 content: "";
                 position: absolute;
                 width: 480px;
                 height: 295px;
                 left: 9px;
                 top: 140px;
                 background: #EBEEFF;
                 border-radius: 50px;
                 -webkit-clip-path: path("M33.323 57.7941C37.5276 34.9665 56.8895 18.0344 80.0738 16.91L417.578 0.542279C446.11 -0.841409 470 21.9183 470 50.4836V243C470 270.614 447.614 293 420 293H50.0507C18.8088 293 -4.78144 264.668 0.877854 233.943L33.323 57.7941Z");
                 clip-path: path("M33.323 57.7941C37.5276 34.9665 56.8895 18.0344 80.0738 16.91L417.578 0.542279C446.11 -0.841409 470 21.9183 470 50.4836V243C470 270.614 447.614 293 420 293H50.0507C18.8088 293 -4.78144 264.668 0.877854 233.943L33.323 57.7941Z")
             }

             @media (max-width: 1199px) {
                 .testi-box3 .box-img:before {
                     left: 50%;
                     -webkit-transform: translateX(-50%);
                     -ms-transform: translateX(-50%);
                     transform: translateX(-50%)
                 }
             }

             .testi-box3 .box-img:after {
                 content: "";
                 position: absolute;
                 width: 473px;
                 height: 415px;
                 left: 7px;
                 top: 20px;
                 border-radius: 50px;
                 background-image: url("../img/shape/testi-border.png");
                 background-repeat: no-repeat;
                 background-size: 100% 100%
             }

             @media (max-width: 1199px) {
                 .testi-box3 .box-img:after {
                     left: 50%;
                     -webkit-transform: translateX(-50%);
                     -ms-transform: translateX(-50%);
                     transform: translateX(-50%)
                 }
             }

             @media (max-width: 480px) {
                 .testi-box3 .box-img:after {
                     display: none
                 }
             }

             @media (max-width: 1299px) {
                 .testi-box3 .box-img {
                     margin: 0 40px 40px 0
                 }
             }

             @media (max-width: 1199px) {
                 .testi-box3 .box-img {
                     min-width: 100%;
                     display: block;
                     margin: auto;
                     border-radius: 0 0 30px 30px
                 }
             }

             .testi-box3 .box-img img {
                 position: relative;
                 z-index: 2
             }

             .testi-box3 .testi-quote {
                 position: absolute;
                 top: 6%;
                 left: 5px;
                 z-index: 2
             }

             @media (max-width: 1199px) {
                 .testi-box3 .testi-quote {
                     display: none
                 }
             }

             .testi-quote3 {
                 position: absolute;
                 bottom: 0px;
                 right: 60px;
                 z-index: 3
             }

             @media (max-width: 1199px) {
                 .testi-quote3 {
                     display: none
                 }
             }

             .testi-slide-area .icon-box {
                 position: absolute;
                 bottom: 30px;
                 right: 0
             }

             .testi-title-area2 {
                 max-width: 565px;
                 position: absolute;
                 top: 30px;
                 right: 200px
             }

             @media (max-width: 1399px) {
                 .testi-title-area2 {
                     right: 150px
                 }
             }

             @media (max-width: 1299px) {
                 .testi-title-area2 {
                     right: 20px
                 }
             }

             @media (max-width: 1199px) {
                 .testi-title-area2 {
                     position: relative;
                     text-align: center;
                     right: unset;
                     max-width: 100%
                 }
             }

             .counter-area {
                 background: #F8F8F8;
                 border-radius: 30px
             }

             @media (max-width: 1199px) {
                 .counter-area {
                     padding: 40px 0
                 }
             }

             .counter-card {
                 position: relative;
                 padding: 80px 30px;
                 border: 12px solid transparent;
                 -webkit-transition: all 0.6s ease-in-out;
                 transition: all 0.6s ease-in-out;
                 margin: -20px 0
             }

             @media (max-width: 1199px) {
                 .counter-card {
                     padding: 40px 30px
                 }
             }

             .counter-card.style2 {
                 padding: 120px 40px
             }

             @media (max-width: 1299px) {
                 .counter-card.style2 {
                     padding: 120px 20px
                 }
             }

             @media (max-width: 1199px) {
                 .counter-card.style2 {
                     padding: 40px 20px
                 }
             }

             .counter-card .box-number {
                 font-weight: 600;
                 font-size: 84px;
                 line-height: 84px;
                 text-transform: capitalize;
                 text-align: center;
                 color: #1C1C25;
                 margin-top: -0.5rem;
                 margin-bottom: 0
             }

             @media (max-width: 767px) {
                 .counter-card .box-number {
                     font-size: 64px;
                     line-height: 64px
                 }
             }

             .counter-card .box-number .plus {
                 font-weight: 300;
                 color: var(--theme-color)
             }

             .counter-card .counter-text {
                 font-weight: 600;
                 font-size: 20px;
                 line-height: 30px;
                 text-align: center;
                 color: #656A74;
                 display: block
             }

             @media (max-width: 1299px) {
                 .counter-card .counter-text {
                     font-size: 18px;
                     line-height: 28px
                 }
             }

             .counter-card .counter-text span {
                 display: block
             }

             .counter-card:hover {
                 background-color: var(--theme-color);
                 border: 12px solid var(--white-color)
             }

             .counter-card:hover .box-number {
                 color: var(--white-color)
             }

             .counter-card:hover .box-number .plus {
                 color: var(--white-color)
             }

             .counter-card:hover .counter-text {
                 color: var(--white-color)
             }

             .counter-area2 {
                 margin: 0 80px;
                 border-radius: 0 0 50px 50px
             }

             @media (max-width: 1699px) {
                 .counter-area2 {
                     margin: 0
                 }
             }

             @media (max-width: 1199px) {
                 .counter-box {
                     text-align: center
                 }
             }

             .counter-box .box-number {
                 font-weight: 600;
                 font-size: 64px;
                 text-align: center;
                 line-height: 64px;
                 text-transform: capitalize;
                 color: var(--white-color);
                 margin-bottom: 0
             }

             .counter-box .box-number .plus {
                 font-weight: 300
             }

             .counter-box .box-text {
                 color: var(--white-color)
             }

             .counter-box .box-text span {
                 display: block
             }

             .counter-card3 {
                 border-right: 1px solid #E0E0E0;
                 border-bottom: 1px solid #E0E0E0
             }

             @media (max-width: 480px) {
                 .counter-card3 {
                     border: none
                 }
             }

             .counter-card3:nth-child(2) {
                 padding: 0 0 80px 80px;
                 border-right-color: transparent
             }

             @media (max-width: 991px) {
                 .counter-card3:nth-child(2) {
                     padding: 0 0 50px 50px
                 }
             }

             @media (max-width: 480px) {
                 .counter-card3:nth-child(2) {
                     padding: 0;
                     border: none
                 }
             }

             .counter-card3:nth-child(2) .box-number {
                 color: #F3BA0E
             }

             .counter-card3:nth-child(4) {
                 padding: 80px 0px 0px 80px;
                 border-right-color: transparent;
                 border-bottom-color: transparent
             }

             @media (max-width: 991px) {
                 .counter-card3:nth-child(4) {
                     padding: 50px 0px 0px 50px
                 }
             }

             @media (max-width: 480px) {
                 .counter-card3:nth-child(4) {
                     padding: 0;
                     border: none
                 }
             }

             .counter-card3:nth-child(4) .box-number {
                 color: #17D2D4
             }

             .counter-card3:nth-child(3) {
                 padding: 80px 80px 0 0;
                 border-bottom-color: transparent
             }

             @media (max-width: 991px) {
                 .counter-card3:nth-child(3) {
                     padding: 50px 50px 0 0
                 }
             }

             @media (max-width: 480px) {
                 .counter-card3:nth-child(3) {
                     padding: 0;
                     border: none
                 }
             }

             .counter-card3:nth-child(3) .box-number {
                 color: #D02CFF
             }

             .counter-card3 .box-number {
                 font-family: var(--title-font);
                 font-weight: 600;
                 font-size: 84px;
                 line-height: 84px;
                 text-transform: capitalize;
                 color: #70D715;
                 margin-top: -0.4rem;
                 margin-bottom: 0
             }

             @media (max-width: 1199px) {
                 .counter-card3 .box-number {
                     font-size: 74px;
                     line-height: 74px
                 }
             }

             @media (max-width: 991px) {
                 .counter-card3 .box-number {
                     font-size: 64px;
                     line-height: 64px
                 }
             }

             @media (max-width: 575px) {
                 .counter-card3 .box-number {
                     font-size: 44px;
                     line-height: 54px
                 }
             }

             .counter-card3 .plus {
                 font-weight: 400;
                 color: var(--title-color)
             }

             .counter-card3 .counter-text {
                 font-family: var(--title-font);
                 font-weight: 500;
                 font-size: 18px;
                 line-height: 28px;
                 max-width: 170px;
                 margin-bottom: -0.4rem
             }

             .counter-card3-wrapp {
                 display: grid;
                 grid-template-columns: auto auto
             }

             @media (max-width: 480px) {
                 .counter-card3-wrapp {
                     grid-template-columns: auto;
                     gap: 30px
                 }
             }

             .counter-grid .box-number {
                 font-weight: 600;
                 font-size: 84px;
                 line-height: 94px;
                 text-transform: capitalize;
                 text-align: center;
                 color: #1C1C25;
                 margin-bottom: 0
             }

             @media (max-width: 767px) {
                 .counter-grid .box-number {
                     font-size: 64px;
                     line-height: 64px
                 }
             }

             .counter-grid .box-number .plus {
                 font-weight: 300;
                 color: var(--theme-color)
             }

             .counter-grid .counter-text {
                 font-weight: 500;
                 font-size: 18px;
                 line-height: 28px;
                 text-align: center;
                 color: #656A74;
                 display: block
             }

             @media (max-width: 1299px) {
                 .counter-grid .counter-text {
                     font-size: 18px;
                     line-height: 28px
                 }
             }

             .counter-grid .counter-text span {
                 display: block
             }

             .counter-area4 {
                 padding: 180px 0 120px;
                 background-color: #022124;
                 -webkit-clip-path: polygon(100% 0, 100% 20%, 100% 100%, 80% 100%, 20% 100%, 0 100%, 0 10%);
                 clip-path: polygon(100% 0, 100% 20%, 100% 100%, 80% 100%, 20% 100%, 0 100%, 0 10%)
             }

             @media (max-width: 991px) {
                 .counter-area4 {
                     padding: 140px 0 80px
                 }
             }

             .counter-item {
                 position: relative;
                 border-left: 1px solid rgba(255, 255, 255, 0.3);
                 padding-left: 30px;
                 z-index: 2
             }

             @media (max-width: 991px) {
                 .counter-item {
                     text-align: center
                 }
             }

             @media (max-width: 575px) {
                 .counter-item {
                     border-left: 0;
                     padding-left: 0
                 }
             }

             .counter-item:after {
                 position: absolute;
                 left: -1px;
                 top: 0;
                 width: 1px;
                 height: 37px;
                 background-color: var(--theme-color);
                 -webkit-animation-timing-function: linear;
                 animation-timing-function: linear;
                 -webkit-animation-name: topBottomLine;
                 animation-name: topBottomLine;
                 -webkit-animation-duration: 9s;
                 animation-duration: 9s;
                 -webkit-animation-iteration-count: infinite;
                 animation-iteration-count: infinite;
                 content: ""
             }

             @media (max-width: 575px) {
                 .counter-item:after {
                     display: none
                 }
             }

             .counter-item .box-number {
                 font-weight: 400;
                 font-size: 54px;
                 line-height: 54px;
                 color: var(--white-color);
                 margin-bottom: 5px
             }

             .counter-item .counter-number {
                 font-weight: 600
             }

             .counter-item .box-text {
                 font-weight: 500;
                 font-size: 18px;
                 line-height: 28px;
                 color: var(--white-color)
             }

             .download-title {
                 color: var(--white-color);
                 background: #8482FF;
                 border-radius: 30px
             }

             .download-btn .th-btn img {
                 margin-right: 11px
             }

             .download-btn .th-btn:hover img {
                 -webkit-filter: brightness(0.9) invert(1);
                 filter: brightness(0.9) invert(1)
             }

             .counter-card2 {
                 position: relative;
                 border-radius: 20px;
                 text-align: center;
                 padding: 80px 0;
                 min-width: 418px;
                 z-index: 2
             }

             @media (max-width: 1699px) {
                 .counter-card2 {
                     min-width: 100%
                 }
             }

             .counter-card2:before {
                 content: "";
                 position: absolute;
                 inset: 0;
                 -webkit-mask-image: url("../img/shape/counter-border.png");
                 mask-image: url("../img/shape/counter-border.png");
                 background-color: var(--smoke-color);
                 -webkit-mask-size: 100% 100%;
                 mask-size: 100% 100%;
                 -webkit-mask-repeat: no-repeat;
                 mask-repeat: no-repeat;
                 z-index: -1
             }

             .counter-card2 .box-number {
                 font-weight: 600;
                 font-size: 74px;
                 line-height: 74px;
                 text-transform: capitalize;
                 color: var(--title-color);
                 margin-top: -0.3rem;
                 margin-bottom: 0
             }

             .counter-card2 .box-number .plus {
                 font-weight: 400
             }

             .counter-card2 .box-text {
                 font-weight: 500;
                 font-size: 18px;
                 line-height: 28px;
                 margin-bottom: -0.3rem
             }

             .counter-card2 .box-text span {
                 display: block
             }

             .blog-card {
                 position: relative
             }

             .blog-card.style2 .blog-meta i {
                 color: var(--body-color)
             }

             .blog-card.style2 .box-title {
                 font-size: 30px;
                 border-bottom: 1px solid var(--smoke-color);
                 margin-bottom: 20px;
                 padding-bottom: 20px
             }

             @media (max-width: 1199px) {
                 .blog-card.style2 .box-title {
                     font-size: 24px
                 }
             }

             .blog-card .box-img {
                 border-radius: 30px;
                 margin-bottom: 35px
             }

             @media (max-width: 991px) {
                 .blog-card .box-img {
                     border-radius: 20px
                 }
             }

             .blog-card .box-img img {
                 border-radius: 30px
             }

             @media (max-width: 991px) {
                 .blog-card .box-img img {
                     border-radius: 20px
                 }
             }

             .blog-card .blog-meta {
                 margin: -0.3rem 0 18px 0
             }

             .blog-card .box-title {
                 font-weight: 600;
                 text-transform: capitalize;
                 margin-bottom: 30px
             }

             @media (max-width: 991px) {
                 .blog-card .box-title {
                     font-size: 20px
                 }
             }

             .blog-box {
                 background-color: var(--white-color);
                 box-shadow: 0px 5px 14px 2px #E8E8E8;
                 padding: 30px;
                 border-radius: 30px
             }

             .blog-box.style2 {
                 padding: 0
             }

             .blog-box.style2 .blog-img {
                 margin-bottom: 0
             }

             .blog-box.style2 .blog-box_content {
                 padding: 30px
             }

             .blog-box .blog-img {
                 position: relative;
                 overflow: hidden;
                 border-radius: 15px;
                 margin-bottom: 30px
             }

             .blog-box .blog-img img {
                 border-radius: 15px;
                 -webkit-transform: 0.4s ease-in-out;
                 -ms-transform: 0.4s ease-in-out;
                 transform: 0.4s ease-in-out
             }

             .blog-box .blog-tag {
                 position: relative;
                 padding: 4.5px 20.5px;
                 font-family: var(--body-font);
                 font-size: 12px;
                 font-weight: 500;
                 text-transform: uppercase;
                 background-color: var(--theme-color);
                 border: 1px solid var(--white-color);
                 color: var(--white-color);
                 border-radius: 15px;
                 max-width: 142px;
                 display: block;
                 margin: -15px auto auto auto;
                 margin-bottom: 28px;
                 z-index: 2
             }

             .blog-box .box-title {
                 margin-bottom: 14px
             }

             .blog-box .blog-img img {
                 width: 100%
             }

             .blog-box .blog-meta {
                 margin: -0.3rem 0 18px 0
             }

             .blog-box .blog-meta i {
                 color: var(--body-color)
             }

             .blog-box .line-btn {
                 text-transform: capitalize
             }

             .blog-box:hover .blog-img img {
                 -webkit-transform: scale(1.08);
                 -ms-transform: scale(1.08);
                 transform: scale(1.08)
             }

             .blog-grid .box-img {
                 border-radius: 15px;
                 margin-bottom: 35px
             }

             .blog-grid .box-img img {
                 border-radius: 15px
             }

             .blog-grid .blog-meta {
                 margin-bottom: 15px
             }

             .blog-grid .blog-meta i {
                 color: var(--body-color)
             }

             .blog-grid .line-btn {
                 font-size: 16px
             }

             .blog-item {
                 position: relative;
                 z-index: 2;
                 --space: 30px
             }

             @media (max-width: 991px) {
                 .blog-item {
                     --space: 20px
                 }
             }

             .blog-item .box-img {
                 border-radius: 20px;
                 margin-bottom: -125px;
                 overflow: hidden;
                 position: relative;
                 z-index: 3
             }

             .blog-item .box-img img {
                 border-radius: 20px
             }

             .blog-item .box-content {
                 position: relative;
                 max-width: calc(100% - var(--space)* 2);
                 margin-left: var(--space);
                 background: var(--white-color);
                 box-shadow: 0px 4px 30px #EFEFEF;
                 border-radius: 20px;
                 padding: 40px;
                 z-index: 3;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             @media (max-width: 1399px) {
                 .blog-item .box-content {
                     padding: 30px
                 }
             }

             .blog-item .blog-meta {
                 margin: -0.3rem 0 20px 0
             }

             .blog-item .box-title {
                 font-size: 22px
             }

             .blog-item .box-title a {
                 color: inherit
             }

             .blog-item .blog-btn {
                 margin-bottom: -1.3rem;
                 -webkit-transform: translateY(30px);
                 -ms-transform: translateY(30px);
                 transform: translateY(30px);
                 opacity: 0;
                 height: 0;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .blog-item:hover .box-content {
                 background: var(--theme-color)
             }

             .blog-item:hover .blog-meta a {
                 color: var(--white-color)
             }

             .blog-item:hover .blog-meta i {
                 color: var(--white-color)
             }

             .blog-item:hover .box-title {
                 color: var(--white-color)
             }

             .blog-item:hover .blog-btn {
                 height: 100%;
                 opacity: 1;
                 -webkit-transform: translateY(0px);
                 -ms-transform: translateY(0px);
                 transform: translateY(0px);
                 margin-bottom: 0
             }

             .blog-item:hover .line-btn {
                 color: var(--white-color)
             }

             .blog-item:hover .line-btn:before {
                 background-color: var(--white-color)
             }

             .brand-slider1 {
                 border-bottom: 1px solid var(--smoke-color);
                 padding-bottom: 60px
             }

             .brand-sec2 {
                 position: relative;
                 background-color: var(--white-color);
                 -webkit-mask-image: url("../img/bg/brand_bg_1.png");
                 mask-image: url("../img/bg/brand_bg_1.png");
                 -webkit-mask-repeat: no-repeat;
                 mask-repeat: no-repeat;
                 -webkit-mask-size: cover;
                 mask-size: cover;
                 margin-top: -98px
             }

             @media (max-width: 991px) {
                 .brand-sec2 {
                     margin-top: -60px
                 }
             }

             .brand-title {
                 -webkit-transform: rotate(-3deg);
                 -ms-transform: rotate(-3deg);
                 transform: rotate(-3deg)
             }

             .brand-slider2 {
                 -webkit-transform: rotate(-3deg);
                 -ms-transform: rotate(-3deg);
                 transform: rotate(-3deg)
             }

             .brandSlider1 {
                 max-width: 520px;
                 display: block;
                 margin-right: 0
             }

             @media (max-width: 1199px) {
                 .brandSlider1 {
                     margin-right: auto
                 }
             }

             .brand-slider {
                 background: rgba(255, 255, 255, 0.06);
                 border: 1px solid rgba(255, 255, 255, 0.08);
                 -webkit-backdrop-filter: blur(21.3px);
                 backdrop-filter: blur(21.3px);
                 border-radius: 30px;
                 padding: 30px 60px;
                 margin-top: 120px
             }

             @media (max-width: 575px) {
                 .brand-slider {
                     padding: 30px 20px
                 }
             }

             .brand-item {
                 width: 140px;
                 height: 152px;
                 overflow: hidden;
                 position: relative;
                 display: block;
                 margin-left: auto
             }

             @media (max-width: 1199px) {
                 .brand-item {
                     margin-right: auto
                 }
             }

             .brand-item:hover a img.gray {
                 opacity: 1;
                 visibility: visible;
                 -webkit-transition: all 0.7s ease-in-out;
                 transition: all 0.7s ease-in-out;
                 -webkit-transform: translateY(0%);
                 -ms-transform: translateY(0%);
                 transform: translateY(0%)
             }

             .brand-item:hover a img.original {
                 opacity: 0;
                 visibility: hidden;
                 -webkit-transition: all 0.7s ease-in-out;
                 transition: all 0.7s ease-in-out;
                 -webkit-transform: translateY(100%);
                 -ms-transform: translateY(100%);
                 transform: translateY(100%)
             }

             .brand-item img {
                 margin: 0 auto;
                 -webkit-transition: all 0.7s ease-in-out;
                 transition: all 0.7s ease-in-out;
                 position: absolute;
                 top: 0;
                 left: 0;
                 right: 0
             }

             .brand-item img.gray {
                 -webkit-transition: all 0.3s ease-in-out;
                 transition: all 0.3s ease-in-out;
                 opacity: 0;
                 visibility: hidden;
                 -webkit-transition: all 0.7s ease-in-out;
                 transition: all 0.7s ease-in-out;
                 -webkit-transform: translateY(-100%);
                 -ms-transform: translateY(-100%);
                 transform: translateY(-100%)
             }

             .brand-item img.original {
                 -webkit-transition: all 0.7s ease-in-out;
                 transition: all 0.7s ease-in-out;
                 -webkit-transform: translateY(0%);
                 -ms-transform: translateY(0%);
                 transform: translateY(0%)
             }

             .brand-sec3 {
                 position: relative;
                 margin: -60px 100px 0 0;
                 -webkit-clip-path: path("M100 0H1820V200H0L100 0Z");
                 clip-path: path("M100 0H1820V200H0L100 0Z");
                 z-index: 2
             }

             .brand-sec3 .container {
                 --main-container: 1570px
             }

             @media (min-width: 1930px) {
                 .brand-sec3 {
                     -webkit-clip-path: path("M183.132 0H3333V200H0L183.132 0Z");
                     clip-path: path("M183.132 0H3333V200H0L183.132 0Z")
                 }
             }

             @media (max-width: 1500px) {
                 .brand-sec3 {
                     margin: -60px 0 0 0
                 }
             }

             @media (max-width: 1299px) {
                 .brand-sec3 {
                     -webkit-clip-path: none;
                     clip-path: none
                 }
             }

             .brand-text {
                 max-width: 576px;
                 display: block;
                 margin: auto
             }

             .brandSlider6 .swiper-wrapper {
                 gap: 35px 0
             }

             .checklist ul {
                 padding-left: 0;
                 list-style: none;
                 text-align: left;
                 margin-bottom: 0
             }

             .checklist li {
                 color: var(--title-color);
                 font-weight: 500;
                 position: relative;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 gap: 10px
             }

             .checklist li>i {
                 font-size: 14px;
                 color: var(--theme-color)
             }

             .checklist li:not(:last-child) {
                 margin-bottom: 10px
             }

             .checklist.style2 li {
                 font-size: 16px;
                 font-weight: 500;
                 color: var(--title-color);
                 font-family: var(--title-font);
                 gap: 15px;
                 padding-left: 20px
             }

             .checklist.style2 li:before {
                 content: "";
                 position: absolute;
                 top: 9px;
                 left: 0;
                 width: 8px;
                 height: 8px;
                 background-color: var(--theme-color);
                 border-radius: 50%
             }

             .checklist.style2 li:not(:last-child) {
                 margin-bottom: 5px
             }

             .checklist.style3 li {
                 font-family: var(--title-font);
                 font-weight: 600;
                 font-size: 18px;
                 line-height: 28px
             }

             @media (max-width: 575px) {
                 .checklist.style3 li {
                     font-size: 16px
                 }
             }

             .checklist.style3 li:not(:last-child) {
                 margin-bottom: 15px
             }

             .checklist.style3 li>i {
                 font-size: 20px;
                 color: #70D715
             }

             .checklist.style4 li {
                 color: var(--white-color)
             }

             .checklist.style10 li {
                 position: relative;
                 font-size: 18px;
                 font-weight: 500;
                 font-family: var(--title-font);
                 z-index: 2;
                 padding-left: 29px
             }

             @media (max-width: 575px) {
                 .checklist.style10 li {
                     margin-bottom: 50px
                 }
             }

             .checklist.style10 li:before {
                 content: "";
                 position: absolute;
                 width: 61px;
                 height: 61px;
                 left: 0px;
                 background: #6B61FC;
                 opacity: 0.3;
                 border-radius: 40px;
                 z-index: -1
             }

             .checklist.style10:not(:last-child) li:before {
                 background: #F3BA0E
             }

             .checklist.style11 li {
                 color: var(--body-color);
                 font-weight: 400;
                 gap: 15px;
                 padding-left: 20px
             }

             .checklist.style11 li:before {
                 content: "";
                 position: absolute;
                 top: 9px;
                 left: 0;
                 width: 5px;
                 height: 5px;
                 background-color: var(--title-color)
             }

             .checklist.style11 li:not(:last-child) {
                 margin-bottom: 5px
             }

             .checklist.style5 li {
                 color: var(--body-color);
                 font-family: var(--body-font);
                 font-weight: 400
             }

             .checklist.style5 li:not(:last-child) {
                 margin-bottom: 13px
             }

             .checklist.style5 li>i {
                 font-size: 22px
             }

             .checklist.style6 li {
                 font-size: 18px;
                 font-weight: 500;
                 color: var(--title-color);
                 font-family: var(--title-font);
                 gap: 15px;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center
             }

             .checklist.style6 li p {
                 font-weight: 400;
                 font-size: 16px
             }

             .checklist.style6 li:not(:last-child) {
                 margin-bottom: 30px
             }

             .checklist.style6 li>i {
                 font-size: 14px;
                 border-radius: 50%;
                 color: var(--white-color);
                 background: #70D715;
                 padding: 8px;
                 margin-top: 1px
             }

             .checklist.style7 li {
                 font-size: 20px;
                 font-weight: 500;
                 color: var(--title-color);
                 font-family: var(--title-font);
                 gap: 15px;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center
             }

             .checklist.style7 li p {
                 font-weight: 400;
                 font-size: 16px
             }

             .checklist.style7 li:not(:last-child) {
                 margin-bottom: 30px
             }

             .checklist.style7 li>i {
                 font-size: 14px;
                 border-radius: 50%;
                 color: var(--white-color);
                 background: #70D715;
                 padding: 8px;
                 margin-top: 1px
             }

             @media (max-width: 767px) {
                 .checklist.style7:not(:last-child) {
                     margin-bottom: 30px
                 }
             }

             .checklist.style8 li {
                 font-family: var(--title-font);
                 font-weight: 500;
                 color: var(--black-color)
             }

             .checklist.style8 li i {
                 font-size: 16px
             }

             .checklist.style9 li {
                 gap: 15px;
                 font-family: var(--body-font);
                 font-weight: 500;
                 font-size: 18px
             }

             @media (max-width: 1299px) {
                 .checklist.style9 li {
                     font-size: 16px
                 }
             }

             .checklist.style9 li:not(:last-child) {
                 margin-bottom: 30px
             }

             .checklist.style9 li i {
                 font-size: 30px
             }

             .checklist.style13 li {
                 font-size: 16px;
                 font-weight: 600
             }

             @media (max-width: 1299px) {
                 .checklist.style13 li {
                     font-size: 16px
                 }
             }

             .checklist.style13 li:not(:last-child) {
                 margin-bottom: 35px
             }

             .checklist.style12 ul {
                 display: grid;
                 grid-template-columns: repeat(2, 1fr);
                 gap: 0 30px
             }

             @media (max-width: 480px) {
                 .checklist.style12 ul {
                     grid-template-columns: repeat(1, 1fr)
                 }
             }

             .checklist.style12 li {
                 font-family: var(--title-font);
                 font-size: 16px;
                 font-weight: 500
             }

             .checklist.style12 li:before {
                 content: url("data:image/svg+xml,%3Csvg width='20' height='21' viewBox='0 0 20 21' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M19.6174 9.97096L16.7481 9.14922C15.4559 8.78415 14.2789 8.09286 13.3296 7.14151C12.3803 6.19016 11.6905 5.01058 11.3262 3.71565L10.5063 0.840104C10.4651 0.739499 10.3949 0.65345 10.3048 0.592891C10.2146 0.532333 10.1085 0.5 10 0.5C9.89147 0.5 9.78539 0.532333 9.69524 0.592891C9.6051 0.65345 9.53495 0.739499 9.49371 0.840104L8.67375 3.71565C8.30946 5.01058 7.61967 6.19016 6.67037 7.14151C5.72108 8.09286 4.54405 8.78415 3.25192 9.14922L0.382586 9.97096C0.272414 10.0023 0.175448 10.0688 0.106402 10.1604C0.0373568 10.2519 0 10.3636 0 10.4783C0 10.5931 0.0373568 10.7048 0.106402 10.7963C0.175448 10.8879 0.272414 10.9544 0.382586 10.9857L3.25192 11.8075C4.54405 12.1725 5.72108 12.8638 6.67037 13.8152C7.61967 14.7665 8.30946 15.9461 8.67375 17.241L9.49371 20.1166C9.52498 20.227 9.59133 20.3242 9.68271 20.3934C9.77408 20.4626 9.88548 20.5 10 20.5C10.1145 20.5 10.2259 20.4626 10.3173 20.3934C10.4087 20.3242 10.475 20.227 10.5063 20.1166L11.3262 17.241C11.6905 15.9461 12.3803 14.7665 13.3296 13.8152C14.2789 12.8638 15.4559 12.1725 16.7481 11.8075L19.6174 10.9857C19.7276 10.9544 19.8246 10.8879 19.8936 10.7963C19.9626 10.7048 20 10.5931 20 10.4783C20 10.3636 19.9626 10.2519 19.8936 10.1604C19.8246 10.0688 19.7276 10.0023 19.6174 9.97096Z' fill='%23F3BA0E'/%3E%3C/svg%3E%0A");
                 position: relative;
                 top: 3px
             }

             .checklist.style12 li i {
                 color: #F3BA0E;
                 font-size: 20px
             }

             .checklist.list-two-column ul {
                 display: grid;
                 grid-template-columns: repeat(2, 1fr);
                 gap: 0 30px
             }

             @media (max-width: 1299px) {
                 .checklist.list-two-column ul {
                     gap: 0 15px
                 }
             }

             @media (max-width: 520px) {
                 .checklist.list-two-column ul {
                     grid-template-columns: repeat(1, 1fr)
                 }
             }

             .checklist.list-two-column ul li {
                 font-weight: 600;
                 font-size: 20px;
                 line-height: 30px
             }

             .checklist.list-two-column ul li img {
                 max-width: 24px
             }

             @media (max-width: 1299px) {
                 .checklist.list-two-column ul li {
                     font-size: 18px;
                     line-height: 28px
                 }
             }

             .checklist.list-three-column ul {
                 display: grid;
                 grid-template-columns: repeat(3, 1fr);
                 gap: 0 12px
             }

             @media (max-width: 1299px) {
                 .checklist.list-three-column ul {
                     grid-template-columns: repeat(2, 1fr)
                 }
             }

             @media (max-width: 480px) {
                 .checklist.list-three-column ul {
                     grid-template-columns: repeat(1, 1fr)
                 }
             }

             .checklist.list-three-column ul li {
                 font-weight: 400;
                 font-size: 16px;
                 line-height: 26px
             }

             .checklist.project-checklist ul li {
                 display: inline-block;
                 font-size: 16px;
                 font-weight: 400;
                 padding-left: 10px
             }

             .checklist.project-checklist ul li span {
                 font-weight: 600
             }

             .checklist.project-checklist ul li:before {
                 top: 9px;
                 width: 5px;
                 height: 5px;
                 background-color: var(--title-color)
             }

             @media (max-width: 1199px) {
                 .checklist.mb-40 {
                     margin-bottom: 32px
                 }
             }

             @media (max-width: 1199px) {
                 .checklist.mb-45 {
                     margin-bottom: 35px
                 }
             }

             .two-column {
                 display: grid;
                 grid-template-columns: auto auto;
                 max-width: 700px
             }

             @media (max-width: 575px) {
                 .two-column {
                     display: block
                 }
             }

             .two-column .checklist.style6:not(:last-child) {
                 margin-bottom: 30px
             }

             .two-column:has(.checklist.style6) {
                 gap: 30px
             }

             .bg-img {
                 position: absolute;
                 inset: 0;
                 height: 100%;
                 width: 100%
             }

             .bg-img img {
                 width: 100%;
                 height: 100%
             }

             .th-video {
                 position: relative;
                 border-radius: 5px
             }

             .th-video img {
                 border-radius: inherit
             }

             .th-video .play-btn {
                 position: absolute;
                 top: 50%;
                 left: 50%;
                 -webkit-transform: translate(-50%, -50%);
                 -ms-transform: translate(-50%, -50%);
                 transform: translate(-50%, -50%)
             }

             .th-video .play-btn>i {
                 background-color: var(--theme-color);
                 color: var(--white-color)
             }

             .icon-box {
                 display: -webkit-inline-box;
                 display: -webkit-inline-flex;
                 display: -ms-inline-flexbox;
                 display: inline-flex;
                 gap: 10px
             }

             .btn-wrap {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-flex-wrap: wrap;
                 -ms-flex-wrap: wrap;
                 flex-wrap: wrap;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 gap: 20px 30px
             }

             .video-btn {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 color: var(--body-color);
                 text-transform: uppercase;
                 line-height: 1.6
             }

             .video-btn .play-btn {
                 --icon-size: 50px;
                 margin-right: 15px
             }

             .video-btn .play-btn>i {
                 background-color: var(--theme-color);
                 color: var(--white-color);
                 padding-right: 0.1em
             }

             .video-btn .play-btn:before {
                 background-color: var(--theme-color)
             }

             .video-btn .small-text {
                 font-size: 10px;
                 text-decoration: underline;
                 display: block
             }

             .video-btn .big-text {
                 font-size: 14px;
                 font-weight: 500
             }

             @media (max-width: 1199px) {
                 p.mb-40 {
                     margin-bottom: 35px
                 }

                 p.mb-45 {
                     margin-bottom: 38px
                 }
             }

             .th-anim {
                 position: relative;
                 display: -ms-inline-flexbox;
                 display: -webkit-inline-box;
                 display: -webkit-inline-flex;
                 display: inline-flex;
                 visibility: hidden;
                 overflow: hidden
             }

             .th-anim img {
                 height: 100%;
                 width: 100%;
                 object-fit: cover;
                 -webkit-transform-origin: left;
                 -ms-transform-origin: left;
                 transform-origin: left
             }

             .rounded {
                 border-radius: 30px !important
             }

             @media (max-width: 575px) {
                 .rounded {
                     border-radius: 15px !important
                 }
             }

             .appointment-area {
                 position: relative;
                 background-color: var(--title-color);
                 max-width: 1720px;
                 display: block;
                 margin: auto;
                 border-radius: 50px;
                 z-index: 2;
                 overflow: hidden
             }

             .appointment-tabs.nav-tabs {
                 border-bottom: none;
                 display: grid;
                 grid-template-columns: auto auto auto auto;
                 gap: 24px
             }

             @media (max-width: 1299px) {
                 .appointment-tabs.nav-tabs {
                     grid-template-columns: auto auto auto
                 }
             }

             @media (max-width: 991px) {
                 .appointment-tabs.nav-tabs {
                     grid-template-columns: auto auto
                 }
             }

             @media (max-width: 767px) {
                 .appointment-tabs.nav-tabs {
                     grid-template-columns: auto
                 }
             }

             .appointment-tabs.nav-tabs .nav-item.show .nav-link,
             .appointment-tabs.nav-tabs .nav-link.active {
                 color: var(--white-color);
                 border-color: rgba(126, 158, 126, 0.2)
             }

             .appointment-tabs.nav-tabs .nav-link:focus,
             .appointment-tabs.nav-tabs .nav-link:hover {
                 border-color: rgba(126, 158, 126, 0.2)
             }

             .appointment-tabs .nav-link {
                 position: relative;
                 padding: 20px 40px;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: start;
                 -webkit-justify-content: flex-start;
                 -ms-flex-pack: start;
                 justify-content: flex-start;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 gap: 22px;
                 border: none;
                 background: rgba(255, 255, 255, 0.06);
                 border: 1px solid rgba(126, 158, 126, 0.2);
                 border-radius: 50px;
                 z-index: 2;
                 -webkit-transition: all 1.3s ease-in-out;
                 transition: all 1.3s ease-in-out
             }

             .appointment-tabs .nav-link .box-title {
                 font-size: 22px;
                 font-family: var(--title-font);
                 font-weight: 500;
                 color: var(--white-color);
                 text-align: left
             }

             @media (max-width: 1399px) {
                 .appointment-tabs .nav-link .box-title {
                     font-size: 20px
                 }
             }

             .appointment-tabs .nav-link span {
                 display: block;
                 font-weight: 400;
                 font-size: 14px;
                 line-height: 24px;
                 color: #7E9E7E;
                 margin-top: 5px
             }

             @media (max-width: 767px) {
                 .appointment-tabs .nav-link {
                     font-size: 20px
                 }
             }

             @media (max-width: 375px) {
                 .appointment-tabs .nav-link {
                     font-size: 18px
                 }
             }

             .guideline-item {
                 position: relative;
                 background-color: transparent;
                 border-bottom: 1px solid var(--title-color);
                 border-radius: 0px;
                 padding: 14px 20px 14px 20px;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 gap: 30px;
                 max-width: 512px;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out;
                 z-index: 2
             }

             @media (max-width: 1199px) {
                 .guideline-item {
                     max-width: 100%
                 }
             }

             .guideline-item:before {
                 content: "";
                 position: absolute;
                 inset: 0;
                 top: -6px;
                 right: 6px;
                 bottom: 6px;
                 background-color: transparent;
                 border: 1px solid transparent;
                 border-radius: 0px;
                 z-index: -1;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .guideline-item .box-number {
                 width: 50px;
                 height: 50px;
                 line-height: 50px;
                 text-align: center;
                 border-radius: 50px;
                 font-family: var(--title-font);
                 font-weight: 500;
                 font-size: 22px;
                 color: var(--white-color);
                 background: var(--theme-color);
                 border: 1px solid var(--title-color)
             }

             .guideline-item .box-title {
                 font-size: 20px;
                 font-weight: 500;
                 margin: 0
             }

             .guideline-item:hover {
                 background-color: var(--title-color);
                 border-radius: 20px;
                 padding: 14px 20px 25px 20px;
                 margin-top: 20px
             }

             .guideline-item:hover:before {
                 background-color: var(--white-color);
                 border: 1px solid var(--title-color);
                 border-radius: 20px
             }

             @media (max-width: 1199px) {
                 .guideline-wrapp {
                     text-align: center
                 }
             }

             .video-box1 {
                 position: relative;
                 z-index: 2;
                 border-radius: 24px
             }

             .video-box1 img {
                 width: 100%;
                 border-radius: 24px
             }

             .video-box1 .play-btn {
                 position: absolute;
                 top: 50%;
                 left: 50%;
                 -webkit-transform: translate(-50%, -50%);
                 -ms-transform: translate(-50%, -50%);
                 transform: translate(-50%, -50%)
             }

             .video-play-btn {
                 position: absolute;
                 top: 50%;
                 left: 50%;
                 -webkit-transform: translate(-50%, -50%);
                 -ms-transform: translate(-50%, -50%);
                 transform: translate(-50%, -50%);
                 border: 0;
                 width: 80px;
                 height: 80px;
                 line-height: 82px;
                 -webkit-transition: all 1s cubic-bezier(0, 0, 0.2, 1);
                 transition: all 1s cubic-bezier(0, 0, 0.2, 1);
                 border-radius: 50%;
                 background: transparent;
                 margin: 0 auto;
                 display: inline-block;
                 font-size: 26px;
                 text-align: center;
                 color: var(--white-color)
             }

             @media (max-width: 767px) {
                 .video-play-btn {
                     width: 50px;
                     height: 50px;
                     line-height: 52px;
                     font-size: 20px
                 }
             }

             .video-play-btn i {
                 color: var(--white-color)
             }

             .video-play-btn:before {
                 content: '';
                 display: block;
                 position: absolute;
                 top: 0;
                 right: 0;
                 z-index: -1;
                 bottom: 0;
                 left: 0;
                 -webkit-transition: 0.3;
                 transition: 0.3;
                 border-radius: 50%;
                 border: 2px solid #fff;
                 -webkit-animation: ripple 2s linear infinite;
                 animation: ripple 2s linear infinite
             }

             .video-play-btn:after {
                 content: '';
                 display: block;
                 position: absolute;
                 top: 0;
                 right: 0;
                 z-index: -1;
                 bottom: 0;
                 left: 0;
                 -webkit-transition: 0.3;
                 transition: 0.3;
                 border-radius: 50%;
                 border: 2px solid #fff;
                 -webkit-animation: ripple 2s linear 1s infinite;
                 animation: ripple 2s linear 1s infinite
             }

             .accordion-card {
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out;
                 background-color: var(--smoke-color2);
                 border: 1px solid #5C6574;
                 border-radius: 20px;
                 overflow: hidden
             }

             .accordion-card:not(:last-child) {
                 margin-bottom: 24px
             }

             .accordion-card .accordion-button {
                 font-size: 18px;
                 font-weight: 500;
                 font-family: var(--title-font);
                 border: 0;
                 color: var(--title-color);
                 background-color: #F8F8F8;
                 border-radius: 0;
                 padding: 12px 45px 12px 30px;
                 min-height: 70px;
                 gap: 10px;
                 margin-bottom: 0;
                 text-align: left;
                 -webkit-transition: 0.3s;
                 transition: 0.3s;
                 position: relative
             }

             .accordion-card .accordion-button:after {
                 content: "\2b";
                 height: 100%;
                 width: auto;
                 line-height: 1;
                 background-color: transparent;
                 font-family: var(--icon-font);
                 color: var(--theme-color);
                 font-weight: 700;
                 font-size: 1em;
                 display: grid;
                 -webkit-box-pack: center;
                 -webkit-justify-content: center;
                 -ms-flex-pack: center;
                 justify-content: center;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 text-align: center;
                 position: absolute;
                 top: 0;
                 right: 30px;
                 -webkit-clip-path: polygon(20px 0%, 100% 0, 100% 100%, 0% 100%);
                 clip-path: polygon(20px 0%, 100% 0, 100% 100%, 0% 100%);
                 padding-left: 10px;
                 -webkit-transition: 0.3s ease-in-out;
                 transition: 0.3s ease-in-out
             }

             .accordion-card .accordion-button:focus {
                 outline: none;
                 box-shadow: none
             }

             .accordion-card .accordion-button:not(.collapsed) {
                 box-shadow: none;
                 border-radius: 0
             }

             .accordion-card .accordion-button:not(.collapsed):after {
                 content: '\f068';
                 -webkit-transform: rotate(0);
                 -ms-transform: rotate(0);
                 transform: rotate(0)
             }

             .accordion-card .accordion-collapse {
                 border: none
             }

             .accordion-card .accordion-body {
                 border-radius: 0;
                 background-color: var(--smoke-color2);
                 border: none;
                 padding: 0px 30px 30px 30px
             }

             .accordion-card .faq-text {
                 line-height: 26px;
                 margin-top: -0.4rem;
                 margin-bottom: -0.48em
             }

             .accordion-card .faq-img {
                 position: relative;
                 height: 100%;
                 z-index: 2
             }

             .accordion-card .faq-img img {
                 height: 100%;
                 object-fit: cover
             }

             .accordion-card.style2 {
                 box-shadow: none;
                 border: 1px solid var(--smoke-color2);
                 box-shadow: 0px 10px 30px rgba(8, 14, 28, 0.06)
             }

             .accordion-card.style2:not(:last-child) {
                 margin-bottom: 24px
             }

             .accordion-card.style2 .accordion-button {
                 background-color: var(--white-color);
                 box-shadow: none
             }

             .accordion-card.style2 .accordion-button:not(.collapsed) {
                 color: var(--white-color);
                 border-bottom: none;
                 background-color: var(--theme-color)
             }

             .accordion-card.style3 {
                 border-radius: 20px;
                 box-shadow: 0px 5px 15px rgba(42, 77, 113, 0.04)
             }

             .accordion-card.style3.style1:not(:last-child) {
                 margin-bottom: 24px
             }

             .accordion-card.style3:not(:last-child) {
                 margin-bottom: 30px
             }

             .accordion-card.style3 .accordion-button {
                 background-color: var(--white-color);
                 box-shadow: none
             }

             .accordion-card.style3 .accordion-button:not(.collapsed) {
                 color: var(--title-color);
                 background-color: var(--white-color);
                 box-shadow: none
             }

             .accordion-card.style3 .accordion-button:not(.collapsed):after {
                 color: var(--theme-color)
             }

             .accordion-card.style3 .accordion-body {
                 background-color: var(--white-color);
                 padding: 0 30px 30px 30px
             }

             .accordion-card.style4 {
                 border-radius: 20px
             }

             .accordion-card.style4:not(:last-child) {
                 margin-bottom: 30px
             }

             .accordion-card.style4 .accordion-button {
                 background-color: transparent;
                 box-shadow: none
             }

             .accordion-card.style4 .accordion-button:not(.collapsed) {
                 color: var(--title-color);
                 background-color: transparent;
                 box-shadow: none
             }

             .accordion-card.style4 .accordion-button:not(.collapsed):after {
                 color: var(--theme-color)
             }

             .accordion-card.style4 .accordion-body {
                 background-color: transparent;
                 padding: 0 30px 30px 30px
             }

             .accordion-card.style5 .accordion-button {
                 min-height: 55px;
                 font-weight: 500
             }

             .accordion-card.style5 .accordion-button:after {
                 content: "\f107"
             }

             .accordion-card.style5 .accordion-button:not(.collapsed):after {
                 content: '\f106'
             }

             .accordion-card.style5 .accordion-body {
                 padding: 20px 30px 30px 30px
             }

             .accordion-card.style6 {
                 background-color: transparent;
                 box-shadow: none;
                 overflow: visible
             }

             .accordion-card.style6:first-child .accordion-button:before {
                 background-color: transparent
             }

             .accordion-card.style6:last-child .accordion-button:before {
                 background-color: transparent
             }

             .accordion-card.style6 .accordion-button {
                 background-color: transparent;
                 padding: 0;
                 color: var(--white-color);
                 min-height: auto;
                 text-transform: uppercase;
                 font-weight: 500;
                 padding-left: 45px;
                 margin-top: -0.2rem
             }

             .accordion-card.style6 .accordion-button:before {
                 content: "";
                 position: absolute;
                 bottom: 11px;
                 left: -34px;
                 width: 50px;
                 height: 1px;
                 background-color: var(--theme-color)
             }

             @media (max-width: 375px) {
                 .accordion-card.style6 .accordion-button:before {
                     display: none
                 }
             }

             .accordion-card.style6 .accordion-button:after {
                 color: var(--white-color);
                 left: 0px;
                 top: 5px;
                 right: unset;
                 width: 20px;
                 height: 20px;
                 font-size: 14px;
                 line-height: 20px;
                 background-color: var(--theme-color);
                 border-radius: 50%;
                 -webkit-clip-path: none;
                 clip-path: none;
                 background-image: none;
                 padding: 0;
                 font-weight: 400
             }

             .accordion-card.style6 .accordion-header {
                 margin-bottom: 6px
             }

             .accordion-card.style6 .accordion-body {
                 background-color: transparent;
                 padding: 0 0 0 45px
             }

             .accordion-card.style7 {
                 box-shadow: none;
                 border: 1px solid #E3E7F0;
                 border-radius: 10px;
                 box-shadow: none
             }

             .accordion-card.style7:not(:last-child) {
                 margin-bottom: 24px
             }

             .accordion-card.style7 .accordion-button {
                 background-color: #FBFCFF;
                 box-shadow: none;
                 font-weight: 500
             }

             .accordion-card.style7 .accordion-button:not(.collapsed) {
                 color: var(--white-color);
                 border-bottom: none;
                 background-color: var(--theme-color)
             }

             .faq-area {
                 position: relative;
                 z-index: 2
             }

             @media (max-width: 1500px) {
                 .faq-area {
                     margin: 0
                 }
             }

             .faq-area:before {
                 content: "";
                 position: absolute;
                 top: 0;
                 right: 0;
                 width: 880px;
                 height: 100%;
                 background-color: var(--theme-color);
                 z-index: -1
             }

             @media (max-width: 1799px) {
                 .faq-area:before {
                     width: 50%
                 }
             }

             @media (max-width: 1199px) {
                 .faq-area:before {
                     top: unset;
                     bottom: -40px;
                     width: 100%;
                     height: 50%
                 }
             }

             @media (max-width: 991px) {
                 .faq-area:before {
                     bottom: 0;
                     height: 40%
                 }
             }

             @media (max-width: 767px) {
                 .faq-area:before {
                     height: 35%
                 }
             }

             @media (max-width: 480px) {
                 .faq-area:before {
                     height: 28%
                 }
             }

             @media (max-width: 375px) {
                 .faq-area:before {
                     height: 25%
                 }
             }

             @media (max-width: 340px) {
                 .faq-area:before {
                     height: 22%
                 }
             }

             .faq-wrapp {
                 position: relative;
                 z-index: 2
             }

             .faq-wrapp .faq-shape {
                 position: absolute;
                 top: -20%;
                 left: 10%;
                 width: 100%;
                 height: 100%;
                 z-index: -1
             }

             @media (max-width: 1199px) {
                 .faq-wrapp .faq-shape {
                     top: -10%
                 }
             }

             .faq-img {
                 text-align: center;
                 position: relative;
                 display: inline-block;
                 z-index: 2
             }

             .faq-img img {
                 width: 100%;
                 min-width: 880px
             }

             @media (max-width: 1799px) {
                 .faq-img img {
                     min-width: 100%
                 }
             }

             @media (max-width: 575px) {
                 .accordion-card .accordion-button {
                     font-size: 16px
                 }
             }

             .faq-widget {
                 background-color: var(--smoke-color);
                 padding: 40px;
                 margin-bottom: 40px;
                 border-radius: 5px;
                 text-align: center
             }

             .faq-widget .title {
                 margin-top: -0.23em
             }

             .faq-form-wrap {
                 margin-top: 70px
             }

             .faq-form-wrap .form-text {
                 max-width: 500px;
                 margin-bottom: 25px
             }

             @media (max-width: 991px) {
                 .faq-form-wrap {
                     margin-top: 45px
                 }
             }

             @media (max-width: 375px) {
                 .faq-widget {
                     padding: 40px 20px
                 }
             }

             .faq-img4 {
                 position: relative;
                 z-index: 2;
                 width: 634px;
                 height: 724.57px
             }

             @media (max-width: 991px) {
                 .faq-img4 {
                     margin-bottom: 50px
                 }
             }

             .faq-img4 .img1 {
                 position: absolute;
                 top: 0px;
                 right: 0;
                 width: 317px;
                 height: 362.286px;
                 border-radius: 1000px 1000px 0px 0px
             }

             @media (max-width: 1299px) {
                 .faq-img4 .img1 {
                     right: 30px
                 }
             }

             @media (max-width: 767px) {
                 .faq-img4 .img1 {
                     right: 60px
                 }
             }

             @media (max-width: 575px) {
                 .faq-img4 .img1 {
                     right: unset;
                     left: 0
                 }
             }

             .faq-img4 .img1 img {
                 border-radius: 1000px 1000px 0px 0px
             }

             .faq-img4 .img2 {
                 position: absolute;
                 bottom: 0px;
                 left: 0;
                 width: 317px;
                 height: 362.286px;
                 border-radius: 0 0 1000px 1000px
             }

             .faq-img4 .img2 img {
                 border-radius: 0 0 1000px 1000px
             }

             .faq-img4 .faq-client-box {
                 position: absolute;
                 left: 20%;
                 top: 40%;
                 padding: 20px 30px;
                 border-radius: 100px;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 gap: 14px;
                 background-color: var(--white-color);
                 text-decoration: underline;
                 box-shadow: 0px 15px 38px 0px rgba(0, 0, 0, 0.06);
                 z-index: 3;
                 -webkit-transform: translate(-50% -50%);
                 -ms-transform: translate(-50% -50%);
                 transform: translate(-50% -50%)
             }

             @media (max-width: 575px) {
                 .faq-img4 .faq-client-box {
                     left: 0
                 }
             }

             @media (max-width: 375px) {
                 .faq-img4 .faq-client-box {
                     display: block;
                     text-align: center;
                     padding: 10px 40px
                 }
             }

             .faq-img4 .faq-client-box .cilent-box_title {
                 min-width: 170px;
                 font-size: 18px;
                 font-weight: 600;
                 color: var(--title-color)
             }

             .faq-img4 .faq-client-box .client-thumb-group {
                 min-width: 112px
             }

             @media (max-width: 375px) {
                 .faq-img4 .faq-client-box .client-thumb-group {
                     margin-bottom: 10px;
                     -webkit-box-pack: center;
                     -webkit-justify-content: center;
                     -ms-flex-pack: center;
                     justify-content: center
                 }
             }

             .faq-img4 .faq-client-box .client-thumb-group .thumb:not(:first-child) {
                 margin-left: -35px
             }

             .faq-img4 .faq-shape {
                 position: absolute;
                 left: 20%;
                 top: 20%;
                 width: 372px;
                 height: 372px;
                 background-color: rgba(50, 86, 217, 0.07);
                 border-radius: 50%;
                 z-index: 2;
                 -webkit-transform: translate(-50% -50%);
                 -ms-transform: translate(-50% -50%);
                 transform: translate(-50% -50%)
             }

             .faq-img4 .faq-shape:after,
             .faq-img4 .faq-shape:before {
                 content: "";
                 position: absolute;
                 inset: 0;
                 background-color: rgba(50, 86, 217, 0.15);
                 z-index: -2;
                 border-radius: 50%;
                 -webkit-transition: all ease 0.4s;
                 transition: all ease 0.4s
             }

             .faq-img4 .faq-shape:after {
                 -webkit-animation-delay: 2s;
                 animation-delay: 2s
             }

             .faq-img5 {
                 position: relative
             }

             @media (max-width: 1199px) {
                 .faq-img5 {
                     margin-bottom: 300px
                 }
             }

             @media (max-width: 575px) {
                 .faq-img5 {
                     margin-bottom: 250px
                 }
             }

             @media (max-width: 480px) {
                 .faq-img5 {
                     margin-bottom: 200px
                 }
             }

             @media (max-width: 480px) {
                 .faq-img5 {
                     margin-bottom: 50px
                 }
             }

             .faq-img5 img {
                 box-shadow: 10px 10px 50px 10px rgba(0, 31, 96, 0.2)
             }

             .faq-img5 .img2 {
                 position: absolute;
                 right: 30px;
                 bottom: -28%
             }

             @media (max-width: 767px) {
                 .faq-img5 .img2 {
                     display: none
                 }
             }

             .faq-img5 .img3 {
                 position: absolute;
                 left: -10%;
                 bottom: -42%
             }

             @media (max-width: 480px) {
                 .faq-img5 .img3 {
                     display: none
                 }
             }

             .faq-img5 .faq-shape5 {
                 position: absolute;
                 bottom: -48%;
                 right: 1%;
                 width: 610px;
                 height: 367px;
                 border-radius: 20px;
                 border: 2px solid var(--theme-color);
                 z-index: -1
             }

             @media (max-width: 480px) {
                 .faq-img5 .faq-shape5 {
                     display: none
                 }
             }

             .faq-img6 {
                 position: relative;
                 width: 100%;
                 height: 100%;
                 object-fit: cover;
                 -webkit-clip-path: polygon(42% 0%, 100% 0, 100% 100%, 0% 100%);
                 clip-path: polygon(42% 0%, 100% 0, 100% 100%, 0% 100%);
                 z-index: 3
             }

             @media (max-width: 1199px) {
                 .faq-img6 {
                     display: none
                 }
             }

             .faq-img7 {
                 position: relative
             }

             @media (max-width: 1199px) {
                 .faq-img7 {
                     margin-bottom: 100px
                 }
             }

             .faq-img7 .img1 {
                 border: 1px solid var(--theme-color);
                 padding: 25px;
                 padding-bottom: 70px;
                 border-radius: 20px
             }

             @media (max-width: 375px) {
                 .faq-img7 .img1 {
                     padding-bottom: 25px
                 }
             }

             .faq-img7 .img2 {
                 position: absolute;
                 left: 5%;
                 bottom: -15%
             }

             @media (max-width: 375px) {
                 .faq-img7 .img2 {
                     display: none
                 }
             }

             .faq-img7 .img2 img {
                 box-shadow: 10px 10px 50px 10px rgba(0, 31, 96, 0.2);
                 border-radius: 10px
             }

             .faq-img7 .img3 {
                 position: absolute;
                 right: 20%;
                 bottom: -5%
             }

             @media (max-width: 375px) {
                 .faq-img7 .img3 {
                     display: none
                 }
             }

             .faq-img7 .img3 img {
                 box-shadow: 10px 10px 50px 10px rgba(0, 31, 96, 0.2);
                 border-radius: 10px
             }

             .accordion-card.style2.th-radius1 {
                 border-radius: 10px
             }

             .faq-img8 {
                 position: relative;
                 text-align: right;
                 z-index: 3
             }

             @media (max-width: 1199px) {
                 .faq-img8 {
                     text-align: center;
                     margin-top: 50px
                 }
             }

             @media (max-width: 1199px) {
                 .faq-img8 .img1 {
                     padding: 20px 0
                 }
             }

             .faq-img8 img {
                 border-radius: 20px
             }

             .faq-img8 .img2 {
                 position: absolute;
                 bottom: -135px;
                 left: 60px
             }

             @media (max-width: 1199px) {
                 .faq-img8 .img2 {
                     bottom: 0
                 }
             }

             .faq-img8 .img2 img {
                 border-radius: 20px;
                 box-shadow: 10px 10px 50px 10px rgba(0, 31, 96, 0.2)
             }

             .faq-img8 .faq8-shape {
                 position: absolute;
                 bottom: -135px;
                 right: -50px;
                 width: 610px;
                 height: 367px;
                 border: 2px solid #3E66F3;
                 border-radius: 20px;
                 z-index: -1
             }

             @media (max-width: 1500px) {
                 .faq-img8 .faq8-shape {
                     right: 0
                 }
             }

             @media (max-width: 1299px) {
                 .faq-img8 .faq8-shape {
                     width: 100%
                 }
             }

             @media (max-width: 1199px) {
                 .faq-img8 .faq8-shape {
                     height: 100%;
                     bottom: 0
                 }
             }

             @media (max-width: 767px) {
                 .faq-img8 .faq8-shape {
                     border: none
                 }
             }

             .faq-area10 {
                 background-color: #EFF1F9
             }

             .accordion-card.style11 .accordion-button {
                 color: var(--title-color);
                 background-color: #EFF1F9;
                 border-radius: 10px;
                 font-weight: 500
             }

             .accordion-card.style11 .accordion-button:after {
                 content: "\f107"
             }

             .accordion-card.style11 .accordion-button:not(.collapsed) {
                 background: -webkit-linear-gradient(top, var(--theme-color) 0%, var(--theme-color2) 100%);
                 background: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color2) 100%);
                 border-radius: 10px 10px 0px 0px;
                 color: var(--white-color);
                 box-shadow: none
             }

             .accordion-card.style11 .accordion-button:not(.collapsed):after {
                 content: '\f106'
             }

             .accordion-card.style11 .accordion-body {
                 border-radius: 0;
                 background-color: #EFF1F9;
                 border: none;
                 padding: 23px 30px 30px 30px;
                 box-shadow: 0px 22px 38px 0px rgba(48, 59, 85, 0.1)
             }

             @media (max-width: 1199px) {
                 .faq-image {
                     text-align: center
                 }
             }

             .accordion-card.style12 {
                 border-radius: 10px;
                 border: 1px solid rgba(255, 255, 255, 0.2);
                 background: #16181D;
                 box-shadow: 0px 22px 38px 0px rgba(48, 59, 85, 0.1)
             }

             .accordion-card.style12 .accordion-button {
                 border-radius: 10px;
                 background: #16181D;
                 color: var(--white-color);
                 font-size: 20px;
                 font-weight: 500
             }

             .accordion-card.style12 .accordion-button:after {
                 content: "\f107";
                 color: var(--theme-color);
                 font-size: 14px
             }

             .accordion-card.style12 .accordion-button:not(.collapsed) {
                 background: -webkit-linear-gradient(top, var(--theme-color) 0%, var(--theme-color2) 100%);
                 background: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color2) 100%);
                 border-radius: 10px 10px 0px 0px;
                 color: var(--white-color);
                 box-shadow: none
             }

             .accordion-card.style12 .accordion-button:not(.collapsed):after {
                 content: '\f106'
             }

             .accordion-card.style12 .accordion-body {
                 border-radius: 0;
                 background-color: #16181D;
                 border: none;
                 padding: 23px 30px 30px 30px;
                 box-shadow: 0px 22px 38px 0px rgba(48, 59, 85, 0.1)
             }

             .client-box.style3 .client-wrapp {
                 display: block;
                 padding-left: 50px;
                 text-align: center
             }

             @media (max-width: 480px) {
                 .client-box.style3 .client-wrapp {
                     padding-left: 0
                 }
             }

             .client-box.style3 .ratting-title {
                 display: block;
                 color: var(--title-color);
                 font-weight: 500;
                 margin-bottom: 5px
             }

             @media (max-width: 375px) {
                 .client-box.style3 .ratting-title {
                     text-align: center
                 }
             }

             .client-box.style3 .box-title {
                 color: var(--theme-color);
                 font-size: 14px;
                 font-weight: 400
             }

             .cta-area {
                 position: relative;
                 border-radius: 50px;
                 z-index: 3
             }

             @media (max-width: 767px) {
                 .cta-area {
                     padding: 80px 40px
                 }
             }

             @media (max-width: 375px) {
                 .cta-area {
                     padding: 80px 20px
                 }
             }

             .cta-text {
                 max-width: 490px;
                 display: block;
                 margin: auto auto 40px auto;
                 color: var(--white-color)
             }

             .cta-text3 {
                 color: var(--white-color);
                 max-width: 648px
             }

             @media (max-width: 1299px) {
                 .cta-text3 {
                     max-width: 580px
                 }
             }

             @media (max-width: 1199px) {
                 .cta-text3 {
                     display: block;
                     margin: auto
                 }
             }

             .cta-title {
                 font-size: 54px
             }

             @media (max-width: 1199px) {
                 .cta-title {
                     font-size: 36px
                 }
             }

             .cta-text2 {
                 max-width: 670px;
                 font-size: 18px;
                 font-weight: 300;
                 font-family: var(--title-font);
                 display: block;
                 margin: auto auto 30px auto;
                 color: var(--white-color)
             }

             .newsletter-form {
                 position: relative;
                 max-width: 580px;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 gap: 10px;
                 margin: auto
             }

             @media (max-width: 767px) {
                 .newsletter-form {
                     display: block;
                     max-width: 100%
                 }
             }

             .newsletter-form.style2 {
                 width: 100%;
                 max-width: 633px;
                 margin-right: 0;
                 -webkit-box-pack: start;
                 -webkit-justify-content: flex-start;
                 -ms-flex-pack: start;
                 justify-content: flex-start;
                 gap: 10px
             }

             @media (max-width: 1199px) {
                 .newsletter-form.style2 {
                     -webkit-box-pack: center;
                     -webkit-justify-content: center;
                     -ms-flex-pack: center;
                     justify-content: center;
                     margin: auto
                 }
             }

             .newsletter-form.style2 .form-group {
                 position: relative;
                 width: 100%
             }

             .newsletter-form.style2 .form-group>i {
                 left: 25px;
                 top: 19px;
                 right: unset;
                 color: var(--theme-color)
             }

             .newsletter-form.style2 select,
             .newsletter-form.style2 .form-control,
             .newsletter-form.style2 .form-select,
             .newsletter-form.style2 textarea,
             .newsletter-form.style2 input {
                 min-width: 100%;
                 border: none;
                 min-height: 55px;
                 padding: 0 25px 0 25px;
                 padding-left: 50px
             }

             .newsletter-form.style2 .th-btn {
                 position: relative;
                 top: 0;
                 right: 0;
                 min-width: 180px;
                 padding: 19.5px 30px
             }

             @media (max-width: 767px) {
                 .newsletter-form.style2 .th-btn {
                     margin-top: 20px
                 }
             }

             .newsletter-form.style3 {
                 width: 100%;
                 max-width: 633px;
                 margin-right: 0;
                 -webkit-box-pack: start;
                 -webkit-justify-content: flex-start;
                 -ms-flex-pack: start;
                 justify-content: flex-start;
                 gap: 10px
             }

             @media (max-width: 1199px) {
                 .newsletter-form.style3 {
                     -webkit-box-pack: center;
                     -webkit-justify-content: center;
                     -ms-flex-pack: center;
                     justify-content: center;
                     margin: auto
                 }
             }

             .newsletter-form.style3 .form-group {
                 position: relative;
                 width: 100%
             }

             .newsletter-form.style3 .form-group>i {
                 left: 25px;
                 top: 19px;
                 right: unset;
                 color: var(--theme-color)
             }

             .newsletter-form.style3 select,
             .newsletter-form.style3 .form-control,
             .newsletter-form.style3 .form-select,
             .newsletter-form.style3 textarea,
             .newsletter-form.style3 input {
                 min-width: 100%;
                 min-height: 55px;
                 padding: 0 25px 0 25px;
                 padding-left: 50px
             }

             .newsletter-form.style3 .th-btn {
                 position: relative;
                 top: 0;
                 right: 0;
                 min-width: 180px;
                 padding: 19.5px 30px
             }

             @media (max-width: 767px) {
                 .newsletter-form.style3 .th-btn {
                     margin-top: 20px
                 }
             }

             .newsletter-form.style4 .form-control {
                 background-color: transparent;
                 border: 1px solid #7A8392
             }

             .newsletter-form.style4 .form-control:focus {
                 color: var(--white-color)
             }

             .newsletter-form .form-control {
                 border-radius: 100px;
                 min-height: 60px;
                 padding-right: 200px;
                 background-color: var(--white-color)
             }

             @media (max-width: 767px) {
                 .newsletter-form .form-control {
                     padding-right: 0
                 }
             }

             .newsletter-form .th-btn {
                 min-width: 130px;
                 padding: 15px 35px;
                 border-radius: 100px;
                 position: absolute;
                 top: 7px;
                 right: 7px
             }

             @media (max-width: 767px) {
                 .newsletter-form .th-btn {
                     position: relative;
                     right: 0;
                     top: 10px;
                     width: 100%;
                     display: block
                 }
             }

             .download-thumb {
                 position: relative;
                 background: var(--white-color);
                 padding: 21px 70px;
                 box-shadow: 0px 4px 50px #EFEFEF;
                 border-radius: 50px;
                 z-index: 2;
                 overflow: hidden
             }

             .download-thumb .circle-shape {
                 position: absolute;
                 top: 0;
                 left: 0;
                 z-index: -1
             }

             .software-area {
                 background-color: var(--white-color);
                 box-shadow: 0px 10px 50px 10px #E8E8E8;
                 border-radius: 30px;
                 overflow: hidden
             }

             .software-content {
                 padding: 120px 0 120px 120px
             }

             @media (max-width: 1299px) {
                 .software-content {
                     padding: 80px 0 90px 40px
                 }
             }

             @media (max-width: 991px) {
                 .software-content {
                     padding: 80px 40px 80px 40px
                 }
             }

             @media (max-width: 575px) {
                 .software-content {
                     padding: 80px 20px 80px 20px
                 }
             }

             .soft-image {
                 height: 523px;
                 margin-left: -37%
             }

             @media (max-width: 1199px) {
                 .soft-image {
                     margin-left: 0
                 }
             }

             .soft-image img {
                 height: 100%;
                 object-fit: cover
             }

             .cta-area3 {
                 position: relative;
                 background-color: #022124;
                 border-radius: 30px;
                 z-index: 3
             }

             @media (max-width: 991px) {
                 .cta-area3 {
                     padding-left: 30px;
                     padding-right: 30px
                 }
             }

             .cta-area3 .sec-title {
                 font-size: 54px
             }

             @media (max-width: 1299px) {
                 .cta-area3 .sec-title {
                     font-size: 44px
                 }
             }

             @media (max-width: 1199px) {
                 .cta-area3 .sec-title {
                     font-size: 40px
                 }
             }

             @media (max-width: 575px) {
                 .cta-area3 .sec-title {
                     font-size: 30px
                 }
             }

             .cta-area3 .cta-text {
                 font-size: 18px;
                 max-width: 690px;
                 display: block;
                 margin: auto auto 30px auto
             }

             .cta-area4 {
                 background: var(--white-color);
                 border: 1px solid var(--smoke-color);
                 box-shadow: 0px 10px 50px 10px rgba(232, 232, 232, 0.6);
                 border-radius: 30px;
                 padding: 0px 0px 0 30px;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between
             }

             @media (max-width: 1199px) {
                 .cta-area4 {
                     padding: 0
                 }
             }

             .hiring-cta {
                 position: relative;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 padding: 44px 0px 44px 20px;
                 gap: 50px;
                 min-width: 730px;
                 z-index: 2
             }

             @media (max-width: 1199px) {
                 .hiring-cta {
                     padding: 40px 30px
                 }
             }

             @media (max-width: 991px) {
                 .hiring-cta {
                     min-width: 100%
                 }
             }

             @media (max-width: 767px) {
                 .hiring-cta {
                     display: block;
                     text-align: center
                 }
             }

             .hiring-cta:before {
                 content: "";
                 position: absolute;
                 inset: 0px;
                 top: 28px;
                 bottom: 28px;
                 left: -40px;
                 min-width: 810px;
                 -webkit-clip-path: polygon(7% 0%, 100% 0%, 95% 100%, 0% 100%);
                 clip-path: polygon(7% 0%, 100% 0%, 95% 100%, 0% 100%);
                 background-color: var(--theme-color);
                 opacity: 0.1;
                 z-index: -1
             }

             @media (max-width: 1199px) {
                 .hiring-cta:before {
                     display: none
                 }
             }

             .hiring-cta .box-subtitle {
                 font-weight: 500;
                 font-size: 20px;
                 line-height: 30px;
                 color: var(--body-color);
                 display: block;
                 margin-bottom: 7px
             }

             .hiring-cta .box-title {
                 font-weight: 600;
                 font-size: 44px;
                 line-height: 54px;
                 text-transform: capitalize;
                 color: var(--title-color);
                 margin-bottom: 0
             }

             .hiring-cta .box-text {
                 font-family: var(--title-font);
                 font-weight: 500;
                 font-size: 20px;
                 line-height: 30px;
                 color: var(--title-color);
                 margin-bottom: 0;
                 max-width: 295px
             }

             @media (max-width: 1299px) {
                 .hiring-cta .box-text {
                     font-size: 16px
                 }
             }

             @media (max-width: 767px) {
                 .hiring-cta .box-text {
                     display: block;
                     margin: auto auto 20px auto
                 }
             }

             .hiring-cta .th-btn {
                 font-size: 14px;
                 padding: 19.5px 20px;
                 min-width: 140px
             }

             .cta-image2 {
                 margin-top: 19px
             }

             @media (max-width: 1199px) {
                 .cta-image2 {
                     display: none
                 }
             }

             .cta-area2 {
                 max-width: 1560px;
                 display: block;
                 margin: auto;
                 border-radius: 50px;
                 height: 462px
             }

             .cta-area2.style2 {
                 height: 535px;
                 margin-top: 80px;
                 margin-bottom: 120px
             }

             @media (max-width: 1199px) {
                 .cta-area2.style2 {
                     margin-top: 0;
                     height: 100%
                 }
             }

             @media (max-width: 991px) {
                 .cta-area2.style2 {
                     margin-bottom: 80px
                 }
             }

             @media (max-width: 1399px) {
                 .cta-area2.style2 .cta-title-area .sec-title {
                     font-size: 40px;
                     line-height: 50px
                 }
             }

             @media (max-width: 1199px) {
                 .cta-area2.style2 .cta-title-area .sec-title {
                     font-size: 30px;
                     line-height: 40px
                 }
             }

             @media (max-width: 575px) {
                 .cta-area2.style2 .cta-title-area .sec-title {
                     font-size: 25px;
                     line-height: 35px
                 }
             }

             @media (max-width: 1399px) {
                 .cta-area2 {
                     max-width: 100%
                 }
             }

             @media (max-width: 1199px) {
                 .cta-area2 {
                     height: 100%
                 }
             }

             .cta-title-area .sec-title {
                 font-weight: 600;
                 font-size: 54px;
                 line-height: 64px;
                 color: var(--white-color)
             }

             @media (max-width: 1199px) {
                 .cta-title-area .sec-title {
                     font-size: 44px;
                     line-height: 54px
                 }
             }

             @media (max-width: 767px) {
                 .cta-title-area .sec-title {
                     font-size: 34px;
                     line-height: 44px
                 }
             }

             @media (max-width: 575px) {
                 .cta-title-area .sec-title {
                     font-size: 25px;
                     line-height: 35px
                 }
             }

             .cta-wrapp {
                 position: relative
             }

             .cta-wrapp .cta-shape1 {
                 position: absolute;
                 right: -29%;
                 top: 20%;
                 width: 644px;
                 height: 644px;
                 border-radius: 50%;
                 background: var(--theme-color);
                 opacity: 0.1
             }

             @media (max-width: 1500px) {
                 .cta-wrapp .cta-shape1 {
                     right: -21%
                 }
             }

             .cta-wrapp .cta-shape2 {
                 position: absolute;
                 right: -22%;
                 top: 28%;
                 width: 586px;
                 height: 586px;
                 border-radius: 50%;
                 background: var(--theme-color);
                 opacity: 0.1
             }

             @media (max-width: 1500px) {
                 .cta-wrapp .cta-shape2 {
                     right: -21%
                 }
             }

             .cta-wrapp .cta-shape3 {
                 position: absolute;
                 right: -16%;
                 top: 36%;
                 width: 526px;
                 height: 526px;
                 border-radius: 50%;
                 background: var(--theme-color);
                 opacity: 0.1
             }

             @media (max-width: 1500px) {
                 .cta-wrapp .cta-shape3 {
                     right: -15%
                 }
             }

             .cta-image {
                 position: relative;
                 min-width: 468px;
                 height: 543px;
                 margin: -80px 0 0 -50px;
                 z-index: 2
             }

             .cta-image.style2 {
                 max-width: 615px;
                 height: 618px;
                 margin: -80px 0px 0 -80px
             }

             .cta-image img {
                 width: 100%;
                 height: 100%;
                 object-fit: cover
             }

             @media (max-width: 1299px) {
                 .cta-image {
                     min-width: 100%;
                     height: 100%;
                     margin: -8px 0 0 -50px
                 }
             }

             @media (max-width: 1199px) {
                 .cta-image {
                     display: none;
                     margin: 0
                 }
             }

             .cta-image5 {
                 position: relative;
                 text-align: center;
                 z-index: 2;
                 min-width: 648px;
                 height: 599px
             }

             @media (max-width: 767px) {
                 .cta-image5 {
                     min-width: 100%;
                     height: 100%
                 }
             }

             .cta-image5 img {
                 margin-top: 15px
             }

             .cta-image5:before {
                 content: "";
                 position: absolute;
                 inset: 0;
                 -webkit-clip-path: path("M0 139.68V549C0 576.614 22.3858 599 50 599H503.51C515.442 599 526.98 594.733 536.041 586.97L630.532 506.013C641.619 496.514 648 482.643 648 468.043V50C648 22.3858 625.614 0 598 0H162.491C151.167 0 140.178 3.84425 131.323 10.9035L18.8316 100.584C6.93147 110.071 0 124.461 0 139.68Z");
                 clip-path: path("M0 139.68V549C0 576.614 22.3858 599 50 599H503.51C515.442 599 526.98 594.733 536.041 586.97L630.532 506.013C641.619 496.514 648 482.643 648 468.043V50C648 22.3858 625.614 0 598 0H162.491C151.167 0 140.178 3.84425 131.323 10.9035L18.8316 100.584C6.93147 110.071 0 124.461 0 139.68Z");
                 background-color: var(--theme-color);
                 z-index: -1
             }

             @media (max-width: 1199px) {
                 .cta-image5:before {
                     -webkit-clip-path: none;
                     clip-path: none;
                     border-radius: 30px
                 }
             }

             .cta-hiring {
                 position: absolute;
                 top: 28px;
                 right: 36px;
                 width: 259px;
                 height: 151px;
                 padding: 40px 0px 40px 80px;
                 text-align: center;
                 background-size: 100% 100%;
                 background-repeat: no-repeat
             }

             @media (max-width: 1299px) {
                 .cta-hiring {
                     right: 80px
                 }
             }

             @media (max-width: 575px) {
                 .cta-hiring {
                     right: 10px
                 }
             }

             .cta-hiring .box-subtitle {
                 font-family: var(--title-font);
                 font-weight: 500;
                 font-size: 16px;
                 line-height: 26px;
                 color: var(--title-color)
             }

             .cta-hiring .box-title {
                 font-weight: 600;
                 font-size: 24px;
                 line-height: 34px;
                 text-transform: capitalize
             }

             .th-experience {
                 background-color: var(--white-color);
                 box-shadow: 0px 10px 30px rgba(72, 72, 72, 0.2);
                 border-radius: 30px;
                 padding: 23px;
                 text-align: center;
                 display: inline-block;
                 max-width: 168px;
                 position: absolute;
                 left: -50px;
                 bottom: 30px
             }

             @media (max-width: 575px) {
                 .th-experience {
                     left: 0;
                     bottom: 0
                 }
             }

             .th-experience .experience-year {
                 font-size: 36px;
                 line-height: 36px;
                 margin-bottom: 0;
                 color: var(--theme-color)
             }

             .th-experience .experience-text {
                 font-weight: 500;
                 margin-bottom: -0.3rem
             }

             .download-area {
                 background-color: #0A0A0A
             }

             .download-btn {
                 gap: 24px
             }

             .accordion-item-wrapp {
                 border-top: 1px solid var(--title-color);
                 padding-top: 30px;
                 margin-left: 40px
             }

             @media (max-width: 1199px) {
                 .accordion-item-wrapp {
                     padding-left: 30px;
                     padding-top: 30px;
                     margin-left: 30px
                 }
             }

             @media (max-width: 991px) {
                 .accordion-item-wrapp {
                     margin-left: 0;
                     padding: 0;
                     border: none
                 }
             }

             .accordion-item-wrapp:not(:last-child) {
                 margin-bottom: 24px
             }

             .accordion-item-content:not(:last-child) .accordion-item {
                 margin-bottom: 30px
             }

             .accordion-item {
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out;
                 background: transparent;
                 overflow: hidden;
                 border-bottom: 1px solid var(--title-color);
                 padding-bottom: 30px;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .accordion-item_info {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between
             }

             .accordion-item_wrapp {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 40px
             }

             @media (max-width: 575px) {
                 .accordion-item_wrapp {
                     display: block
                 }
             }

             .accordion-item_number {
                 border: 1px solid #7A8392;
                 width: 50px;
                 height: 50px;
                 line-height: 50px;
                 text-align: center;
                 border-radius: 30px;
                 font-size: 24px;
                 font-weight: 600;
                 display: block;
                 color: #7A8392
             }

             .accordion-item_content {
                 color: #fff;
                 padding: 0 30px 0px 110px;
                 overflow: hidden;
                 will-change: max-height;
                 -webkit-transition: all 1s ease;
                 transition: all 1s ease
             }

             @media (max-width: 575px) {
                 .accordion-item_content {
                     padding: 0 30px 0px 0px
                 }
             }

             .accordion-item .box-title {
                 font-size: 30px;
                 font-weight: 600;
                 line-height: 40px;
                 color: var(--white-color);
                 margin-top: -0.2rem;
                 margin-bottom: 20px;
                 display: block
             }

             @media (max-width: 767px) {
                 .accordion-item .box-title {
                     font-size: 24px;
                     line-height: 34px
                 }
             }

             @media (max-width: 575px) {
                 .accordion-item .box-title {
                     font-size: 24px;
                     line-height: 34px;
                     margin-top: 20px
                 }
             }

             .accordion-item .icon {
                 min-width: 50px;
                 height: 50px;
                 line-height: 50px;
                 text-align: center;
                 border-radius: 50%;
                 border: 1px solid #7A8392
             }

             @media (max-width: 991px) {
                 .accordion-item .icon {
                     margin-bottom: 30px
                 }
             }

             .accordion-item i {
                 color: #7A8392;
                 font-size: 20px;
                 font-weight: 400;
                 -webkit-transform: rotate(-45deg);
                 -ms-transform: rotate(-45deg);
                 transform: rotate(-45deg);
                 -webkit-transition: all 1s ease;
                 transition: all 1s ease
             }

             .accordion-item .accordion-button {
                 font-size: 30px;
                 font-weight: 600;
                 font-family: var(--title-font);
                 border: 0;
                 color: var(--title-color);
                 background: transparent;
                 padding: 40px 0 35px 0;
                 gap: 10px;
                 margin-bottom: 0;
                 text-align: left;
                 display: block;
                 -webkit-transition: 0.3s;
                 transition: 0.3s;
                 position: relative;
                 border-radius: 0 !important
             }

             @media (max-width: 575px) {
                 .accordion-item .accordion-button {
                     padding: 25px 0 20px 0
                 }
             }

             .accordion-item .accordion-button:after {
                 display: none
             }

             .accordion-item .accordion-button:focus {
                 outline: none;
                 box-shadow: none
             }

             .accordion-item .accordion-button:not(.collapsed) {
                 box-shadow: none;
                 border-bottom: none;
                 background-color: transparent;
                 padding: 40px 0 5px 0
             }

             .accordion-item .accordion-button:not(.collapsed) .accordion-item_number {
                 border-color: var(--theme-color);
                 color: var(--theme-color)
             }

             .accordion-item .accordion-button:not(.collapsed) .box-title {
                 color: var(--theme-color)
             }

             .accordion-item .accordion-button:not(.collapsed) .icon {
                 border-color: var(--theme-color)
             }

             .accordion-item .accordion-button:not(.collapsed) i {
                 color: var(--theme-color)
             }

             .accordion-item .accordion-button:not(.collapsed):after {
                 content: '\f068';
                 -webkit-transform: rotate(0);
                 -ms-transform: rotate(0);
                 transform: rotate(0)
             }

             .accordion-item .accordion-button.collapsed {
                 border-bottom: 1px solid var(--title-color)
             }

             .accordion-item .accordion-collapse {
                 border: none
             }

             .accordion-item .accordion-body {
                 background-color: transparent;
                 border: none;
                 padding: 0px 30px 30px 110px;
                 border-bottom: 1px solid var(--title-color)
             }

             @media (max-width: 575px) {
                 .accordion-item .accordion-body {
                     padding: 0 20px 30px 0
                 }
             }

             .accordion-item .faq-text {
                 font-size: 16px;
                 font-weight: 400;
                 line-height: 26px;
                 margin: -0.4rem 0 0rem 90px;
                 color: #7A8392;
                 max-width: 572px
             }

             @media (max-width: 575px) {
                 .accordion-item .faq-text {
                     margin-left: 0
                 }
             }

             .accordion-item .faq-img {
                 height: 100%
             }

             .accordion-item .faq-img img {
                 height: 100%;
                 object-fit: cover
             }

             .accordion-item:hover {
                 border-color: var(--theme-color)
             }

             .accordion-item:hover .accordion-item_number {
                 border-color: var(--theme-color);
                 color: var(--theme-color)
             }

             .accordion-item:hover .box-title {
                 color: var(--theme-color)
             }

             .accordion-item:hover .icon {
                 border-color: var(--theme-color)
             }

             .accordion-item:hover .icon i {
                 color: var(--theme-color)
             }

             #tabs-content {
                 overflow: hidden
             }

             .according-img-tab {
                 border-radius: 30px
             }

             @media (max-width: 1199px) {
                 .according-img-tab {
                     height: 450px
                 }
             }

             .according-img-tab img {
                 width: 100%;
                 height: 100%;
                 object-fit: cover;
                 border-radius: 30px
             }

             .th-btn.ser-btn {
                 width: 133px;
                 height: 133px;
                 color: var(--white-color);
                 padding: 18px 10px;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: center;
                 -webkit-justify-content: center;
                 -ms-flex-pack: center;
                 justify-content: center;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 -webkit-box-orient: vertical;
                 -webkit-box-direction: normal;
                 -webkit-flex-flow: column;
                 -ms-flex-flow: column;
                 flex-flow: column
             }

             .th-btn.ser-btn span {
                 margin-top: 5px;
                 display: block
             }

             .th-btn.ser-btn:hover:before {
                 top: -55px
             }

             .service-featured {
                 position: relative;
                 text-align: center
             }

             .service-featured.style2 {
                 background: var(--white-color);
                 box-shadow: 0px 4px 50px #EFEFEF;
                 border-radius: 30px;
                 padding: 30px 25px;
                 min-height: 318px;
                 margin-top: 50px
             }

             @media (max-width: 375px) {
                 .service-featured.style2 {
                     padding: 30px 20px
                 }
             }

             .service-featured.style2 .box-icon {
                 position: absolute;
                 top: -50px;
                 left: calc(50% - 50px);
                 background-color: var(--white-color);
                 box-shadow: 0px 10px 30px 6px rgba(20, 18, 46, 0.1);
                 margin: auto
             }

             .service-featured.style2 .box-title {
                 margin: 45px 0 15px 0
             }

             .service-featured.style2 .box-text {
                 margin-bottom: 15px
             }

             .service-featured.style2 .th-btn:after {
                 background-color: #EBEEFF
             }

             .service-featured.style2:hover .th-btn {
                 color: var(--white-color)
             }

             .service-featured.style2:hover .th-btn:after {
                 background-color: var(--theme-color)
             }

             .service-featured.style3 {
                 background-color: var(--white-color);
                 box-shadow: 0px 4px 50px #EFEFEF;
                 border-radius: 30px;
                 padding: 40px 40px 30px 40px
             }

             @media (max-width: 1399px) {
                 .service-featured.style3 {
                     padding: 30px
                 }
             }

             .service-featured.style3 .box-img {
                 margin-bottom: 40px
             }

             .service-featured.style3 .box-text {
                 margin-bottom: 20px
             }

             .service-featured.style3 .th-btn:after {
                 background-color: #EBEEFF
             }

             .service-featured.style3:hover .th-btn {
                 color: var(--white-color)
             }

             .service-featured.style3:hover .th-btn:after {
                 background-color: var(--theme-color)
             }

             .service-featured_wrapp:not(:last-child) .box-shape {
                 position: absolute;
                 top: 50%;
                 left: 100%;
                 z-index: 2;
                 width: 228px;
                 height: 2px;
                 display: block
             }

             @media (max-width: 1199px) {
                 .service-featured_wrapp:not(:last-child) .box-shape {
                     display: none
                 }
             }

             .service-featured_wrapp:not(:last-child) .box-shape:before {
                 content: "";
                 position: absolute;
                 left: 0%;
                 top: 30%;
                 width: 228px;
                 border: 2px solid;
                 border-image-slice: 1;
                 border-width: 2px;
                 border-left: 0;
                 border-right: 0;
                 border-bottom: 0;
                 border-image-source: linear-gradient(to right, var(--theme-color), rgba(70, 98, 255, 0));
                 z-index: 1
             }

             .service-featured_wrapp:not(:last-child) .box-shape:after {
                 content: "";
                 position: absolute;
                 top: 50%;
                 left: 4%;
                 width: 228px;
                 height: 2px;
                 background-color: var(--smoke-color);
                 z-index: -1
             }

             .service-featured .box-icon {
                 position: relative;
                 width: 100px;
                 height: 100px;
                 line-height: 100px;
                 text-align: center;
                 display: block;
                 border-radius: 50%;
                 background: var(--theme-color);
                 margin: auto auto 40px auto;
                 z-index: 2
             }

             .service-featured .box-icon img {
                 -webkit-transition: all 0.4s ease;
                 transition: all 0.4s ease
             }

             .service-featured .box-text {
                 margin-bottom: 12px
             }

             .service-featured .th-btn {
                 position: relative;
                 background-color: transparent;
                 color: var(--title-color);
                 padding: 13px 21.5px;
                 z-index: 2;
                 font-weight: 500;
                 font-size: 14px
             }

             .service-featured .th-btn:before {
                 display: none
             }

             .service-featured .th-btn:after {
                 content: "";
                 position: absolute;
                 left: 34%;
                 top: 0%;
                 width: 40px;
                 height: 40px;
                 background-color: var(--theme-color);
                 border-radius: 20px;
                 z-index: -1;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .service-featured .th-btn i {
                 font-size: 14px;
                 margin-left: 5px
             }

             .service-featured:hover .box-icon img {
                 -webkit-transform: scale(-1) rotate(180deg);
                 -ms-transform: scale(-1) rotate(180deg);
                 transform: scale(-1) rotate(180deg)
             }

             .service-featured:hover .th-btn:after {
                 width: 100%;
                 left: 0
             }

             .service-area {
                 position: relative;
                 z-index: 2;
                 background-color: #F8F8F8
             }

             .service-area:before {
                 content: "";
                 position: absolute;
                 inset: 0;
                 -webkit-mask-image: url("../img/bg/service_bg_shape.png");
                 mask-image: url("../img/bg/service_bg_shape.png");
                 -webkit-mask-size: 100% 100%;
                 mask-size: 100% 100%;
                 -webkit-mask-repeat: no-repeat;
                 mask-repeat: no-repeat;
                 background-color: #0A0A0A;
                 z-index: -1
             }

             @media (max-width: 991px) {
                 .service-area:before {
                     -webkit-mask-size: cover;
                     mask-size: cover;
                     -webkit-mask-position: 100% right;
                     mask-position: 100% right
                 }
             }

             @media (max-width: 991px) {
                 .service-area .th-btn.ser-btn {
                     color: var(--title-color)
                 }
             }

             .service-accordion.style2 {
                 margin-top: 80px
             }

             .service-accordion.style2 .accordion-item-wrapp {
                 padding: 0;
                 margin: 0;
                 border: none
             }

             .accordion-item.style2 {
                 border: 1px solid #1F1F1F;
                 border-radius: 24px;
                 padding: 30px;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out;
                 margin-top: 0
             }

             .accordion-item.style2:hover {
                 background: rgba(255, 255, 255, 0.1);
                 border: 1px solid #1F1F1F;
                 border-radius: 24px
             }

             .tabs-content.style2 {
                 -webkit-transform: rotate(15deg);
                 -ms-transform: rotate(15deg);
                 transform: rotate(15deg);
                 width: 424px;
                 height: 660px;
                 margin-left: 100px
             }

             @media (max-width: 1500px) {
                 .tabs-content.style2 {
                     margin: 0;
                     width: 100%
                 }
             }

             @media (max-width: 991px) {
                 .tabs-content.style2 {
                     height: 350px;
                     margin-bottom: 60px
                 }

                 .tabs-content.style2 .according-img-tab {
                     height: 350px
                 }
             }

             .page-img {
                 border-radius: 30px;
                 overflow: hidden
             }

             .page-img img {
                 border-radius: 30px
             }

             @media (max-width: 575px) {
                 .available-list {
                     padding: 0
                 }
             }

             .available-list ul {
                 padding: 0;
                 margin: 0;
                 list-style: none
             }

             .available-list li {
                 position: relative;
                 padding-left: 30px;
                 margin-bottom: 15px;
                 text-transform: capitalize;
                 color: var(--body-color)
             }

             .available-list li:after {
                 content: "\f058";
                 font-family: var(--icon-font);
                 font-weight: 500;
                 color: var(--theme-color);
                 font-weight: 900;
                 font-size: 16px;
                 width: 16px;
                 height: 16px;
                 line-height: 16px;
                 text-align: center;
                 border-radius: 50px;
                 position: absolute;
                 top: 5px;
                 left: 0
             }

             .available-list li.unavailable:after {
                 content: "\f057";
                 right: 0px
             }

             .available-list li img {
                 max-width: 18px;
                 margin-right: 10px
             }

             .available-list li:last-child {
                 margin-bottom: 0
             }

             .available-list li.unavailable {
                 font-weight: 400;
                 color: var(--body-color)
             }

             .available-list li.unavailable img {
                 opacity: 0.2
             }

             .pricing-tabs {
                 margin-top: 31px;
                 margin-bottom: 60px
             }

             .pricing-tabs.style2 .switch-area .toggler {
                 color: var(--white-color)
             }

             .pricing-tabs.style2 .switch-area .toggle {
                 height: 36px
             }

             .pricing-tabs.style2 .switch-area .switch {
                 left: 3px;
                 top: 3px;
                 bottom: 3px;
                 right: 45%
             }

             .pricing-tabs.style2 .switch-area .check:checked~.switch {
                 right: 3px;
                 left: 47%
             }

             .pricing-tabs .discount-tag {
                 color: var(--theme-color);
                 font-size: 16px;
                 font-weight: 500;
                 font-family: var(--body-font);
                 position: absolute;
                 bottom: -3px;
                 -webkit-transform: translate(-35px, 100%);
                 -ms-transform: translate(-35px, 100%);
                 transform: translate(-35px, 100%);
                 display: -webkit-inline-box;
                 display: -webkit-inline-flex;
                 display: -ms-inline-flexbox;
                 display: inline-flex;
                 -webkit-box-align: end;
                 -webkit-align-items: end;
                 -ms-flex-align: end;
                 align-items: end;
                 gap: 10px
             }

             @media (max-width: 575px) {
                 .pricing-tabs {
                     margin-bottom: 0px
                 }

                 .pricing-tabs .discount-tag {
                     display: none
                 }
             }

             .switch-area {
                 display: -webkit-inline-box;
                 display: -webkit-inline-flex;
                 display: -ms-inline-flexbox;
                 display: inline-flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 gap: 20px
             }

             .switch-area .toggler {
                 -webkit-transition: .2s;
                 transition: .2s;
                 font-weight: 600;
                 font-size: 20px;
                 font-family: var(--body-font);
                 color: var(--title-color);
                 background: transparent;
                 margin-bottom: -0.4em;
                 cursor: pointer
             }

             .switch-area .toggle {
                 position: relative;
                 width: 70px;
                 height: 36px;
                 border-radius: 100px;
                 background-color: var(--theme-color);
                 overflow: hidden;
                 box-shadow: inset 0 0 2px 1px rgba(0, 0, 0, 0.05)
             }

             .switch-area .check {
                 position: absolute;
                 display: block;
                 cursor: pointer;
                 top: 0;
                 left: 0;
                 width: 100%;
                 height: 100%;
                 opacity: 0;
                 z-index: 6;
                 visibility: visible
             }

             .switch-area .check:checked~.switch {
                 right: 3px;
                 left: 53%;
                 -webkit-transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
                 transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
                 -webkit-transition-property: left, right;
                 transition-property: left, right;
                 -webkit-transition-delay: .08s, 0s;
                 transition-delay: .08s, 0s
             }

             .switch-area .switch {
                 position: absolute;
                 left: 3px;
                 top: 3px;
                 bottom: 3px;
                 right: 53%;
                 background-color: var(--white-color);
                 border-radius: 36px;
                 z-index: 1;
                 -webkit-transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
                 transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
                 -webkit-transition-property: left, right;
                 transition-property: left, right;
                 -webkit-transition-delay: 0s, .08s;
                 transition-delay: 0s, .08s;
                 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2)
             }

             .wrapper-full.hide {
                 display: none
             }

             .price-box {
                 position: relative;
                 border-radius: 30px;
                 background: #F9F8FF;
                 padding: 50px;
                 margin-top: 30px;
                 -webkit-transition: 0.4s;
                 transition: 0.4s;
                 z-index: 1
             }

             @media (max-width: 1299px) {
                 .price-box {
                     padding: 30px
                 }
             }

             .price-box.style2 {
                 background: var(--white-color);
                 box-shadow: 0px 10px 50px 10px #E8E8E8
             }

             .price-box.style3 {
                 background-color: var(--theme-color);
                 padding: 0
             }

             .price-box.style3 .price-content {
                 background-color: var(--title-color);
                 -webkit-backdrop-filter: blur(25px);
                 backdrop-filter: blur(25px);
                 border-radius: 30px;
                 border: 1px solid rgba(255, 255, 255, 0.1);
                 padding: 40px
             }

             .price-box.style3 .offer-tag {
                 text-align: center;
                 display: block;
                 padding: 20px 0
             }

             .price-box.style3 .offer-tag .tag {
                 font-family: var(--title-font);
                 font-weight: 500;
                 font-size: 16px;
                 text-align: center;
                 color: #FFFFFF
             }

             .price-box.style3 .price-title-area {
                 text-align: center
             }

             .price-box.style3 .price-title-area .box-title {
                 color: var(--white-color)
             }

             .price-box.style3 .price-title-area .price-box_text {
                 color: #7A8392
             }

             .price-box.style3 .price-box_price {
                 font-weight: 600;
                 font-size: 44px;
                 line-height: 44px;
                 text-transform: capitalize;
                 color: #FFFFFF;
                 text-align: center
             }

             .price-box.style3 .th-btn {
                 background-color: transparent;
                 border: 1px solid #E0E0E0;
                 border-radius: 30px;
                 margin-bottom: 40px
             }

             .price-box.style3 .th-btn:before {
                 background-color: var(--theme-color)
             }

             .price-box.style3 .th-btn:hover {
                 border-color: var(--theme-color)
             }

             .price-box.style3.active .price-content {
                 border: 1px solid var(--theme-color)
             }

             .price-box.style3 .available-list {
                 margin-left: 50px
             }

             @media (max-width: 991px) {
                 .price-box.style3 .available-list {
                     margin: 0
                 }
             }

             .price-box.style3 .available-list ul li {
                 color: #7A8392
             }

             .price-box.style3 .available-list ul li.unavailable:after {
                 color: #7A8392
             }

             @media (max-width: 991px) {
                 .price-box {
                     padding: 30px
                 }
             }

             .price-box .price-title-wrap {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between
             }

             .price-box .subtitle {
                 color: var(--theme-color);
                 font-weight: 600;
                 margin-bottom: 0
             }

             .price-box .box-title {
                 font-size: 30px;
                 font-weight: 600;
                 margin-bottom: 0px
             }

             @media (max-width: 575px) {
                 .price-box .box-title {
                     font-size: 24px
                 }
             }

             .price-box .box-price {
                 font-size: 48px;
                 font-weight: 600;
                 margin-bottom: 0
             }

             .price-box .duration {
                 font-size: 16px;
                 color: var(--body-color);
                 font-weight: 400
             }

             .price-box .box-text {
                 color: var(--body-color);
                 margin-bottom: 30px;
                 padding-bottom: 30px;
                 border-bottom: 1px solid #D9D9D9
             }

             .price-box .box-text2 {
                 margin-bottom: 25px
             }

             .price-box .available-list {
                 margin-bottom: 30px
             }

             .price-box.active {
                 background: var(--theme-color)
             }

             .price-box.active .box-title {
                 color: var(--white-color)
             }

             .price-box.active .subtitle {
                 color: var(--white-color)
             }

             .price-box.active .box-text {
                 color: var(--white-color)
             }

             .price-box.active .box-price {
                 color: var(--white-color)
             }

             .price-box.active .duration {
                 color: var(--white-color)
             }

             .price-box.active .box-text2 {
                 color: var(--white-color)
             }

             .price-box.active .available-list li {
                 color: var(--white-color)
             }

             .price-box.active .available-list li:after {
                 color: var(--white-color)
             }

             .price-box.active .th-btn {
                 background-color: var(--title-color)
             }

             @media (max-width: 1699px) {
                 .price-area2 {
                     margin: 0;
                     border-radius: 0
                 }
             }

             @media (max-width: 1199px) {
                 .price-area2 .container {
                     max-width: 100%
                 }
             }

             .price-card {
                 margin-top: 40px
             }

             .price-card.price-card-list {
                 margin-top: 96px
             }

             @media (max-width: 1699px) {
                 .price-card.price-card-list {
                     margin-top: 96px
                 }
             }

             @media (max-width: 1199px) {
                 .price-card.price-card-list {
                     margin-top: 106px
                 }
             }

             @media (max-width: 991px) {
                 .price-card.price-card-list {
                     margin-top: 0px;
                     display: none
                 }
             }

             .price-card.price-card-list .checklist ul li {
                 -webkit-box-pack: start;
                 -webkit-justify-content: flex-start;
                 -ms-flex-pack: start;
                 justify-content: flex-start
             }

             .price-card .checklist ul li {
                 padding: 16px 0;
                 height: 50px;
                 font-weight: 500;
                 font-size: 16px;
                 font-family: var(--title-font);
                 -webkit-box-pack: center;
                 -webkit-justify-content: center;
                 -ms-flex-pack: center;
                 justify-content: center;
                 border-top: 1px dashed #A2ABBA;
                 margin-bottom: 0
             }

             .price-card .checklist ul li span {
                 display: none
             }

             @media (max-width: 991px) {
                 .price-card .checklist ul li span {
                     display: block
                 }
             }

             .price-card .checklist ul li:last-child {
                 border-bottom: 1px dashed #A2ABBA
             }

             .price-card.active .box-content:before {
                 background-color: var(--theme-color)
             }

             .price-card.active .box-price {
                 color: var(--white-color)
             }

             .price-card.active .checklist ul li img {
                 -webkit-filter: brightness(0) invert(1);
                 filter: brightness(0) invert(1)
             }

             .price-card.active .checklist ul li span {
                 color: var(--white-color)
             }

             .price-card.active .th-btn {
                 background-color: var(--title-color)
             }

             .price-card .box-content {
                 position: relative;
                 padding: 30px 0;
                 z-index: 2
             }

             .price-card .box-content:before {
                 content: "";
                 position: absolute;
                 inset: 0;
                 margin-left: 25px;
                 border-radius: 30px;
                 background-color: #E9E9E9;
                 z-index: -1
             }

             @media (max-width: 1199px) {
                 .price-card .box-content:before {
                     margin-left: 0
                 }
             }

             .price-card .box-title {
                 margin-bottom: 0;
                 text-align: center
             }

             .price-card .box-text {
                 text-align: center
             }

             .price-card .box-price {
                 font-weight: 600;
                 font-size: 44px;
                 line-height: 54px;
                 text-transform: capitalize;
                 color: #1F1F1F;
                 text-align: center
             }

             .price-card .th-btn {
                 padding: 19.5px 47px;
                 width: 252px;
                 margin: 30px 0 0 30px
             }

             @media (max-width: 1299px) {
                 .price-card .th-btn {
                     width: auto
                 }
             }

             @media (max-width: 1199px) {
                 .price-card .th-btn {
                     padding: 15px 30px
                 }
             }

             .price-grid {
                 background-color: var(--smoke-color2);
                 border: 1px solid var(--smoke-color);
                 border-radius: 50px;
                 padding: 60px;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             @media (max-width: 1299px) {
                 .price-grid {
                     padding: 30px;
                     border-radius: 30px
                 }
             }

             .price-grid .box-title {
                 font-weight: 600;
                 margin-bottom: 5px
             }

             .price-grid .price-title-wrap {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center
             }

             @media (max-width: 375px) {
                 .price-grid .price-title-wrap {
                     display: block
                 }
             }

             .price-grid .available-list ul li {
                 padding: 0;
                 font-size: 16px;
                 text-transform: none;
                 padding-left: 30px
             }

             .price-grid .available-list ul li:before {
                 content: "\f058";
                 position: absolute;
                 top: 0;
                 left: 0;
                 font-family: var(--icon-font);
                 font-weight: 700;
                 color: var(--theme-color);
                 font-size: 18px
             }

             .price-grid .available-list ul li i {
                 font-size: 18px;
                 color: var(--theme-color);
                 margin-right: 10px
             }

             .price-grid .available-list ul li:after {
                 display: none
             }

             .price-grid .available-list ul li span {
                 display: block
             }

             .price-grid .box-text {
                 font-weight: 500;
                 font-size: 18px;
                 line-height: 26px;
                 color: var(--body-color);
                 border-bottom: none;
                 margin: 0;
                 padding: 0;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 20px
             }

             @media (max-width: 480px) {
                 .price-grid .box-text {
                     display: block
                 }
             }

             .price-grid .box-text span {
                 background: #FFE4E9;
                 border-radius: 30px;
                 padding: 2px 15px;
                 color: var(--theme-color);
                 font-size: 14px;
                 font-weight: 500
             }

             .price-grid .box-price {
                 font-size: 54px;
                 font-weight: 500;
                 margin-top: 12px;
                 border-bottom: 1px solid var(--smoke-color);
                 margin-bottom: 40px;
                 padding-bottom: 20px
             }

             @media (max-width: 480px) {
                 .price-grid .box-price {
                     margin: 10px 0
                 }
             }

             .price-grid .box-price del {
                 font-size: 20px;
                 font-weight: 500;
                 color: #A2ABBA
             }

             .price-grid .th-btn {
                 margin-top: 35px
             }

             .price-item {
                 background: var(--smoke-color2);
                 border: 1px solid var(--smoke-color);
                 border-radius: 30px;
                 text-align: center;
                 padding: 40px
             }

             .price-item.style2 {
                 background-color: var(--white-color);
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .price-item.style2 .box-price {
                 background: var(--smoke-color2);
                 border: 1px solid var(--smoke-color);
                 border-radius: 20px;
                 box-shadow: none
             }

             .price-item.style2:hover,
             .price-item.style2.active {
                 background-color: var(--theme-color);
                 border-color: var(--theme-color)
             }

             .price-item.style2:hover .box-price,
             .price-item.style2.active .box-price {
                 color: var(--white-color);
                 background: rgba(255, 255, 255, 0.2);
                 border: 1px solid rgba(255, 255, 255, 0.2)
             }

             .price-item.style2:hover .subtitle,
             .price-item.style2.active .subtitle {
                 color: var(--white-color)
             }

             .price-item.style2:hover .box-title,
             .price-item.style2.active .box-title {
                 color: var(--white-color)
             }

             .price-item.style2:hover .box-text,
             .price-item.style2.active .box-text {
                 color: var(--white-color)
             }

             .price-item.style2:hover .duration,
             .price-item.style2.active .duration {
                 color: var(--white-color)
             }

             .price-item.style2:hover .available-list li,
             .price-item.style2.active .available-list li {
                 color: var(--white-color)
             }

             .price-item.style2:hover .available-list li:after,
             .price-item.style2.active .available-list li:after {
                 color: var(--white-color)
             }

             .price-item.style2:hover .th-btn,
             .price-item.style2.active .th-btn {
                 background-color: var(--title-color);
                 color: var(--white-color)
             }

             .price-item .subtitle {
                 color: var(--theme-color);
                 font-weight: 600;
                 margin-bottom: 0
             }

             .price-item .box-title {
                 font-size: 30px;
                 font-weight: 600;
                 margin-bottom: 0px
             }

             @media (max-width: 575px) {
                 .price-item .box-title {
                     font-size: 24px
                 }
             }

             .price-item .duration {
                 font-size: 16px;
                 color: var(--body-color);
                 font-weight: 400
             }

             .price-item .box-text {
                 color: var(--body-color);
                 margin-bottom: 30px
             }

             .price-item .box-price {
                 background: var(--white-color);
                 box-shadow: 0px 10px 40px 10px rgba(232, 232, 232, 0.5);
                 border-radius: 20px;
                 padding: 20px 30px;
                 font-size: 44px;
                 font-weight: 600;
                 margin-bottom: 35px
             }

             @media (max-width: 1199px) {
                 .price-item .box-price {
                     font-size: 34px
                 }
             }

             @media (max-width: 375px) {
                 .price-item .box-price {
                     font-size: 25px
                 }
             }

             .price-item .available-list {
                 text-align: left;
                 padding-left: 60px;
                 padding-bottom: 40px
             }

             @media (max-width: 1299px) {
                 .price-item .available-list {
                     padding-left: 0
                 }
             }

             .price-item .available-list li.unavailable:after {
                 color: var(--body-color)
             }

             .price-item.active .th-btn {
                 background-color: var(--theme-color);
                 color: var(--title-color)
             }

             .line-bottom {
                 border-bottom: 1px solid var(--title-color)
             }

             @media (max-width: 1199px) {
                 .line-bottom {
                     border-bottom: none
                 }
             }

             .project-slider1 .slider-pagination {
                 position: relative
             }

             .project-slider1 .slider-pagination:after,
             .project-slider1 .slider-pagination:before {
                 content: "";
                 position: absolute;
                 top: 50%;
                 width: 410px;
                 height: 1px;
                 background-color: var(--title-color)
             }

             @media (max-width: 767px) {

                 .project-slider1 .slider-pagination:after,
                 .project-slider1 .slider-pagination:before {
                     display: none
                 }
             }

             .project-slider1 .slider-pagination:before {
                 margin-left: -27rem
             }

             .project-slider1 .slider-pagination:after {
                 margin-left: 1.5rem
             }

             .project-slider1 .swiper-pagination-bullets {
                 margin: 45px 0 8px 0
             }

             .project-slider1 .swiper-pagination-bullets .swiper-pagination-bullet {
                 display: inline-block;
                 --swiper-pagination-bullet-size: 10px;
                 --swiper-pagination-bullet-horizontal-gap: 15px;
                 margin: 5px 10px;
                 opacity: 1;
                 background-color: #7A8392;
                 color: #7A8392;
                 border-radius: 50%;
                 position: relative;
                 cursor: pointer
             }

             .project-slider1 .swiper-pagination-bullets .swiper-pagination-bullet:before {
                 inset: -5px;
                 border: 1px solid #7A8392
             }

             .project-slider1 .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
                 background-color: var(--title-color)
             }

             .project-slider1 .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
                 border-color: var(--title-color)
             }

             .project-title-area {
                 background-color: var(--white-color);
                 border: 1px solid var(--smoke-color);
                 box-shadow: 0px 10px 50px 10px #E8E8E8;
                 border-radius: 30px;
                 padding: 40px
             }

             @media (max-width: 575px) {
                 .project-title-area {
                     padding: 40px 20px
                 }
             }

             .project-title-area .sec-title {
                 font-weight: 600
             }

             @media (max-width: 1299px) {
                 .project-title-area .sec-title {
                     font-size: 30px
                 }
             }

             @media (max-width: 991px) {
                 .project-title-area .sec-title {
                     font-size: 24px
                 }
             }

             .project-title-area .project-line {
                 padding-left: 80px
             }

             @media (max-width: 375px) {
                 .project-title-area .project-line {
                     padding-left: 20px
                 }
             }

             .project-box {
                 background-color: var(--white-color);
                 box-shadow: 0px 4px 16px 3px #E8E8E8;
                 border-radius: 30px;
                 padding: 30px
             }

             .project-box .box-img {
                 border-radius: 20px;
                 margin-bottom: 30px
             }

             .project-box .box-img img {
                 width: 100%;
                 border-radius: 20px
             }

             .project-box .box-title {
                 margin-bottom: 6px
             }

             .project-box .box-text {
                 margin-bottom: 25px
             }

             @media (max-width: 767px) {
                 .project-btn {
                     text-align: center
                 }
             }

             .project-area {
                 position: relative;
                 background-color: #0A0A0A
             }

             .project-card {
                 position: relative;
                 --space: 40px;
                 overflow: hidden
             }

             @media (max-width: 575px) {
                 .project-card.style2 {
                     --space: 30px
                 }
             }

             @media (max-width: 375px) {
                 .project-card.style2 {
                     --space: 20px
                 }
             }

             .project-card.style2 .project-content {
                 position: absolute;
                 top: var(--space);
                 left: var(--space);
                 width: calc(100% - var(--space)*2);
                 height: calc(100% - var(--space)*2);
                 z-index: 2;
                 background: var(--theme-color);
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: end;
                 -webkit-justify-content: end;
                 -ms-flex-pack: end;
                 justify-content: end;
                 -webkit-box-orient: vertical;
                 -webkit-box-direction: normal;
                 -webkit-flex-direction: column;
                 -ms-flex-direction: column;
                 flex-direction: column;
                 padding: 30px;
                 -webkit-transform: scale(0);
                 -ms-transform: scale(0);
                 transform: scale(0);
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out
             }

             .project-card.style2:hover .project-content {
                 -webkit-transform: scale(1);
                 -ms-transform: scale(1);
                 transform: scale(1)
             }

             .project-card.style3 .project-img {
                 position: relative;
                 border-radius: 24px;
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out
             }

             .project-card.style3 .project-img:before {
                 content: "";
                 position: absolute;
                 top: 0;
                 left: 0;
                 height: 100%;
                 width: 100%;
                 border-radius: inherit;
                 background-color: rgba(22, 25, 33, 0.6);
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out;
                 -webkit-transform: scaleX(0);
                 -ms-transform: scaleX(0);
                 transform: scaleX(0);
                 visibility: hidden;
                 opacity: 0
             }

             .project-card.style3 .project-img img {
                 border-radius: 24px
             }

             .project-card.style3 .icon-btn {
                 position: absolute;
                 top: 50%;
                 left: 50%;
                 background-color: var(--theme-color);
                 color: var(--white-color);
                 border-radius: 12px;
                 border: none;
                 width: 46px;
                 height: 46px;
                 line-height: 46px;
                 font-size: 20px;
                 -webkit-transition: 0.4s ease-in-out;
                 transition: 0.4s ease-in-out;
                 visibility: hidden;
                 opacity: 0;
                 -webkit-transform: translate(-50%, -50%);
                 -ms-transform: translate(-50%, -50%);
                 transform: translate(-50%, -50%)
             }

             .project-card.style3 .icon-btn:hover {
                 background-color: var(--white-color);
                 color: var(--theme-color)
             }

             .project-card.style3:hover .project-img:before {
                 opacity: 1;
                 visibility: visible;
                 -webkit-transform: scaleX(1);
                 -ms-transform: scaleX(1);
                 transform: scaleX(1)
             }

             .project-card.style3:hover .icon-btn {
                 opacity: 1;
                 visibility: visible
             }

             .project-card .project-img img {
                 width: 100%
             }

             .project-card_wrapp:nth-child(2) {
                 margin-top: 60px
             }

             @media (max-width: 767px) {
                 .project-card_wrapp:nth-child(2) {
                     margin-top: 30px
                 }
             }

             .project-card_wrapp:nth-child(3) {
                 margin-top: 120px
             }

             @media (max-width: 1199px) {
                 .project-card_wrapp:nth-child(3) {
                     margin-top: 0px
                 }
             }

             @media (max-width: 767px) {
                 .project-card_wrapp:nth-child(3) {
                     margin-top: 30px
                 }
             }

             .project-card .box-title {
                 color: var(--white-color);
                 width: 200px;
                 border-bottom: 1px solid var(--white-color);
                 margin-bottom: 10px;
                 padding-bottom: 15px
             }

             .project-card .box-title a {
                 color: inherit
             }

             .project-card .box-subtitle {
                 color: var(--white-color);
                 font-size: 14px;
                 margin-bottom: -0.3rem
             }

             .project-card .project-content {
                 position: absolute;
                 left: var(--space);
                 bottom: -40px;
                 opacity: 0;
                 visibility: hidden;
                 -webkit-transition: all 0.3s ease-in-out;
                 transition: all 0.3s ease-in-out
             }

             .project-card .project-icon {
                 position: absolute;
                 top: 30px;
                 right: 30px
             }

             .project-card .icon-btn {
                 border: 1px solid var(--white-color);
                 color: var(--white-color)
             }

             .project-card .icon-btn:hover {
                 background-color: var(--white-color);
                 color: var(--title-color)
             }

             .project-card:hover .project-content {
                 opacity: 1;
                 bottom: var(--space);
                 visibility: visible
             }

             .th-btn.project-btn {
                 color: var(--white-color);
                 border-radius: 50%;
                 padding: 31px 35px;
                 width: 266px;
                 position: absolute;
                 bottom: 120px
             }

             @media (max-width: 1199px) {
                 .th-btn.project-btn {
                     position: relative;
                     bottom: 0;
                     margin-top: 30px
                 }
             }

             .sec-text5 {
                 color: #7A8392
             }

             .filter-menu {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-flex-wrap: wrap;
                 -ms-flex-wrap: wrap;
                 flex-wrap: wrap;
                 -webkit-box-pack: center;
                 -webkit-justify-content: center;
                 -ms-flex-pack: center;
                 justify-content: center;
                 gap: 35px;
                 text-align: center;
                 margin-top: -20px;
                 margin-bottom: 60px
             }

             @media (max-width: 1199px) {
                 .filter-menu {
                     margin-bottom: 50px
                 }
             }

             @media (max-width: 991px) {
                 .filter-menu {
                     margin-top: -10px;
                     margin-bottom: 45px;
                     gap: 6px
                 }
             }

             .filter-menu .tab-btn {
                 position: relative;
                 background-color: transparent;
                 border: none;
                 border-radius: 8px;
                 font-family: var(--body-font);
                 font-weight: 500;
                 font-size: 16px;
                 color: var(--body-color);
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .filter-menu .tab-btn:before {
                 content: "";
                 position: absolute;
                 bottom: 0;
                 width: 0;
                 height: 1px;
                 background-color: var(--theme-color);
                 opacity: 0;
                 visibility: hidden;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .filter-menu .tab-btn:hover,
             .filter-menu .tab-btn.active {
                 color: var(--theme-color)
             }

             .filter-menu .tab-btn:hover:before,
             .filter-menu .tab-btn.active:before {
                 width: 53px;
                 opacity: 1;
                 visibility: visible
             }

             .portfolio-box {
                 position: relative;
                 border-radius: 30px;
                 --space: 30px;
                 overflow: hidden;
                 z-index: 9
             }

             @media (max-width: 991px) {
                 .portfolio-box {
                     --space: 20px
                 }
             }

             .portfolio-box:before {
                 content: "";
                 position: absolute;
                 inset: 0;
                 background: #0A0A0A;
                 border-radius: inherit;
                 z-index: 1;
                 opacity: 0;
                 visibility: hidden;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .portfolio-box .box-img img {
                 width: 100%
             }

             @media (max-width: 991px) {
                 .portfolio-box .box-img {
                     margin-bottom: 0
                 }
             }

             .portfolio-box .box-title {
                 color: var(--white-color);
                 font-size: 22px;
                 margin-bottom: 0px
             }

             .portfolio-box .box-subtitle {
                 color: var(--white-color);
                 font-size: 14px;
                 margin-bottom: -0.3rem
             }

             .portfolio-box .box-content {
                 position: absolute;
                 left: var(--space);
                 bottom: -40px;
                 opacity: 0;
                 visibility: hidden;
                 -webkit-transition: all 0.3s ease-in-out;
                 transition: all 0.3s ease-in-out;
                 z-index: 2
             }

             .portfolio-box .icon-btn {
                 background-color: var(--white-color);
                 border: none;
                 font-size: 18px;
                 position: absolute;
                 right: var(--space);
                 top: -30px;
                 z-index: 2;
                 opacity: 0;
                 visibility: hidden;
                 -webkit-transition: all 0.3s ease-in-out;
                 transition: all 0.3s ease-in-out
             }

             .portfolio-box .icon-btn:hover {
                 background-color: var(--theme-color);
                 color: var(--white-color)
             }

             .portfolio-box:hover:before {
                 opacity: 0.6;
                 visibility: visible
             }

             .portfolio-box:hover .box-content {
                 opacity: 1;
                 bottom: var(--space);
                 visibility: visible
             }

             .portfolio-box:hover .icon-btn {
                 top: var(--space);
                 opacity: 1;
                 visibility: visible
             }

             .project-info {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 gap: 20px;
                 border-top: 1px solid rgba(27, 31, 37, 0.1);
                 padding: 20px 0
             }

             .project-info-wrap {
                 position: absolute;
                 right: 80px;
                 top: 80px;
                 background-color: var(--white-color);
                 border-radius: 20px;
                 padding: 40px
             }

             @media (max-width: 1399px) {
                 .project-info-wrap {
                     right: 40px;
                     top: 40px;
                     padding: 30px
                 }
             }

             @media (max-width: 991px) {
                 .project-info-wrap {
                     position: relative;
                     right: unset;
                     left: 0;
                     top: 0;
                     margin-top: 30px;
                     padding: 10px 30px 30px 0
                 }
             }

             .project-info:last-child {
                 padding-bottom: 0;
                 margin-bottom: -0.3rem
             }

             @media (max-width: 1299px) {
                 .project-info {
                     gap: 15px
                 }
             }

             @media (max-width: 575px) {
                 .project-info {
                     padding-left: 0
                 }
             }

             .project-info_icon i {
                 width: 50px;
                 height: 50px;
                 line-height: 50px;
                 color: var(--theme-color);
                 background-color: rgba(64, 102, 242, 0.1);
                 border: none;
                 border-radius: 50%;
                 text-align: center;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .project-info_icon i:hover {
                 background-color: var(--theme-color);
                 color: var(--white-color)
             }

             .project-info_subtitle {
                 margin-bottom: 0
             }

             .project-info_title {
                 font-family: var(--body-font);
                 font-weight: 600;
                 font-size: 18px;
                 margin-bottom: 0
             }

             .project-info_title a {
                 color: inherit
             }

             .project-info_title a:hover {
                 color: var(--theme-color)
             }

             .project-nav {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between;
                 border-top: 1px solid #EDEDED;
                 border-bottom: 1px solid #EDEDED;
                 padding: 17px 0;
                 margin-top: 22px
             }

             .project-nav .icon-btn {
                 --btn-size: 55px;
                 font-size: 16px;
                 border-radius: 99px;
                 border: none;
                 background-color: transparent;
                 border: 1px solid #EDEDED;
                 color: var(--title-color)
             }

             @media (max-width: 375px) {
                 .project-nav .icon-btn {
                     --btn-size: 45px
                 }
             }

             .project-nav .icon-btn:hover {
                 background-color: var(--theme-color);
                 color: var(--white-color)
             }

             .project-nav .nav-btn {
                 color: var(--body-color);
                 font-family: var(--title-font);
                 font-weight: 500
             }

             @media (max-width: 375px) {
                 .project-nav .nav-btn {
                     font-size: 14px
                 }
             }

             .project-nav .nav-btn:first-child .icon-btn {
                 margin-right: 10px
             }

             .project-nav .nav-btn:last-child .icon-btn {
                 margin-left: 10px
             }

             .project-nav .nav-btn:hover {
                 color: var(--theme-color)
             }

             .marquee-area {
                 background-color: #0A0A0A;
                 padding: 35px 0
             }

             .marquee-area.style2 {
                 padding: 22px 0
             }

             .marquee-wrapper {
                 position: relative;
                 overflow: hidden;
                 z-index: 9;
                 -webkit-transform: rotate(-45deg);
                 -ms-transform: rotate(-45deg);
                 transform: rotate(-45deg);
                 margin: 0 -45%
             }

             @media (max-width: 1299px) {
                 .marquee-wrapper {
                     margin: 0 -20% -46% -26%
                 }
             }

             @media (max-width: 1199px) {
                 .marquee-wrapper {
                     margin: 0 -70% -35% -8%
                 }
             }

             @media (max-width: 991px) {
                 .marquee-wrapper {
                     margin: 0 -230% -90% 0%
                 }
             }

             .marquee {
                 position: relative;
                 --duration: 120s;
                 --gap: 35px;
                 display: -ms-flexbox;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: flex;
                 overflow: hidden;
                 -webkit-user-select: none;
                 -moz-user-select: none;
                 -ms-user-select: none;
                 user-select: none;
                 gap: var(--gap)
             }

             .marquee:first-child {
                 --duration: 100s
             }

             .marquee:last-child {
                 --duration: 80s
             }

             .marquee.marquee--reverse .marquee-group {
                 --gap: 35px;
                 animation-direction: reverse
             }

             .marquee .marquee-group {
                 -ms-flex-negative: 0;
                 -webkit-flex-shrink: 0;
                 flex-shrink: 0;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-align: center;
                 -ms-flex-align: center;
                 -webkit-align-items: center;
                 align-items: center;
                 -ms-flex-pack: distribute;
                 -webkit-box-pack: start;
                 -webkit-justify-content: flex-start;
                 justify-content: flex-start;
                 gap: var(--gap);
                 height: 128px;
                 -webkit-animation: scroll var(--duration) linear infinite;
                 animation: scroll var(--duration) linear infinite
             }

             .marquee .marquee-group .img {
                 margin: 20px
             }

             .marquee .marquee-group img {
                 -webkit-transform: rotate(45deg);
                 -ms-transform: rotate(45deg);
                 transform: rotate(45deg)
             }

             .marquee .marquee-group .item {
                 font-family: var(--title-font);
                 font-size: 36px;
                 font-weight: 600;
                 color: var(--white-color);
                 display: inline-block;
                 cursor: pointer;
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .marquee .marquee-group .item span {
                 margin: 0 18px
             }

             .marquee .marquee-group .item img {
                 margin: 0 18px
             }

             @media (prefers-reduced-motion: reduce) {
                 .marquee-wrapper .marquee .marquee-group {
                     -webkit-animation-play-state: play;
                     animation-play-state: play
                 }
             }

             .process-tabs {
                 border: none;
                 gap: 24px;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between;
                 margin-bottom: 60px
             }

             .process-tabs.nav-tabs .nav-item.show .nav-link,
             .process-tabs.nav-tabs .nav-link.active {
                 color: var(--white-color);
                 background-color: var(--theme-color);
                 border-color: var(--theme-color)
             }

             .process-tabs .nav-link {
                 background-color: #F9F8FF;
                 border-radius: 20px;
                 padding: 40px 20px;
                 font-weight: 600;
                 font-size: 24px;
                 line-height: 34px;
                 width: 32%;
                 text-transform: capitalize;
                 color: #1F1F1F;
                 border: none
             }

             @media (max-width: 1299px) {
                 .process-tabs .nav-link {
                     width: 31%
                 }
             }

             @media (max-width: 1199px) {
                 .process-tabs .nav-link {
                     font-size: 18px;
                     line-height: 28px
                 }
             }

             @media (max-width: 991px) {
                 .process-tabs .nav-link {
                     padding: 16px 20px
                 }
             }

             @media (max-width: 767px) {
                 .process-tabs .nav-link {
                     width: 100%
                 }
             }

             .process-tabs .nav-link:hover {
                 color: var(--white-color)
             }

             .process-wrapp {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center
             }

             @media (max-width: 991px) {
                 .process-wrapp {
                     display: block
                 }
             }

             .process-title-area {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 20px;
                 margin-right: 100px;
                 margin-bottom: 20px
             }

             @media (max-width: 1399px) {
                 .process-title-area {
                     margin-right: 0
                 }
             }

             @media (max-width: 375px) {
                 .process-title-area {
                     display: block
                 }
             }

             .process-icon {
                 min-width: 97px;
                 width: 97px;
                 height: 97px;
                 line-height: 97px;
                 text-align: center;
                 background: #DBDCFF;
                 border-radius: 20px
             }

             @media (max-width: 375px) {
                 .process-icon {
                     margin-bottom: 20px
                 }
             }

             .process-text {
                 max-width: 566px;
                 margin-bottom: 30px
             }

             .process-image {
                 min-width: 658px
             }

             .process-image img {
                 border-radius: 30px
             }

             @media (max-width: 1299px) {
                 .process-image {
                     min-width: 450px
                 }
             }

             @media (max-width: 991px) {
                 .process-image {
                     margin-top: 40px;
                     min-width: 100%
                 }
             }

             .step-wrap .process-line {
                 position: absolute;
                 top: 36%;
                 left: 50%;
                 -webkit-transform: translate(calc(-50% + 400px), calc(-50% + 25px));
                 -ms-transform: translate(calc(-50% + 400px), calc(-50% + 25px));
                 transform: translate(calc(-50% + 400px), calc(-50% + 25px));
                 margin: 0 -400px
             }

             @media (max-width: 1299px) {
                 .step-wrap .process-line {
                     top: 40%;
                     left: 50%;
                     -webkit-transform: translate(calc(-50% + 300px), calc(-50% + 25px));
                     -ms-transform: translate(calc(-50% + 300px), calc(-50% + 25px));
                     transform: translate(calc(-50% + 300px), calc(-50% + 25px));
                     margin: 0 -288px
                 }
             }

             @media (max-width: 1199px) {
                 .step-wrap .process-line {
                     display: none
                 }
             }

             .process-card {
                 position: relative;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-flex-wrap: wrap;
                 -ms-flex-wrap: wrap;
                 flex-wrap: wrap;
                 -webkit-box-pack: center;
                 -webkit-justify-content: center;
                 -ms-flex-pack: center;
                 justify-content: center;
                 text-align: center;
                 width: 364px
             }

             @media (max-width: 575px) {
                 .process-card {
                     width: 100%
                 }
             }

             .process-card .pulse {
                 position: absolute;
                 top: 39%;
                 left: calc(50% - 0px);
                 z-index: 2;
                 height: 14px;
                 width: 14px;
                 line-height: 14px;
                 background-color: var(--theme-color);
                 border-radius: 50%;
                 text-align: center
             }

             @media (max-width: 1299px) {
                 .process-card .pulse {
                     top: 38%
                 }
             }

             @media (max-width: 1199px) {
                 .process-card .pulse {
                     display: none
                 }
             }

             .process-card .pulse:after,
             .process-card .pulse:before {
                 content: "";
                 position: absolute;
                 inset: 0;
                 background-color: var(--theme-color);
                 z-index: -1;
                 border-radius: 50%;
                 -webkit-transition: all ease 0.4s;
                 transition: all ease 0.4s
             }

             .process-card .pulse:after {
                 -webkit-animation-name: ripple2;
                 animation-name: ripple2;
                 -webkit-animation-delay: 2s;
                 animation-delay: 2s
             }

             @media (max-width: 1199px) {
                 .process-card {
                     padding: 0 10px
                 }
             }

             @media (max-width: 991px) {
                 .process-card {
                     display: block;
                     padding: 0;
                     margin: auto
                 }
             }

             .process-card:nth-child(even) {
                 margin-top: 35px
             }

             @media (max-width: 1199px) {
                 .process-card:nth-child(even) {
                     margin-top: 0
                 }
             }

             .process-card:nth-child(even) .box-img {
                 margin-top: 35px
             }

             @media (max-width: 1199px) {
                 .process-card:nth-child(even) .box-img {
                     margin-top: 20px
                 }
             }

             @media (max-width: 991px) {
                 .process-card:nth-child(even) {
                     margin: auto
                 }
             }

             .process-card:nth-child(even) .pulse {
                 top: unset;
                 bottom: 100%
             }

             .process-card:nth-child(even) .box-content {
                 -webkit-box-ordinal-group: 2;
                 -webkit-order: 1;
                 -ms-flex-order: 1;
                 order: 1
             }

             @media (max-width: 991px) {
                 .process-card:nth-child(even) .box-content {
                     -webkit-box-ordinal-group: 3;
                     -webkit-order: 2;
                     -ms-flex-order: 2;
                     order: 2
                 }
             }

             .process-card:nth-child(even) .box-icon {
                 -webkit-box-ordinal-group: 3;
                 -webkit-order: 2;
                 -ms-flex-order: 2;
                 order: 2
             }

             @media (max-width: 1199px) {
                 .process-card:nth-child(even) .box-icon {
                     -webkit-box-ordinal-group: 2;
                     -webkit-order: 1;
                     -ms-flex-order: 1;
                     order: 1
                 }
             }

             .process-card:nth-child(even) .box-img {
                 -webkit-box-ordinal-group: 4;
                 -webkit-order: 3;
                 -ms-flex-order: 3;
                 order: 3
             }

             @media (max-width: 991px) {
                 .process-card:nth-child(even) .box-img {
                     -webkit-box-ordinal-group: 4;
                     -webkit-order: 3;
                     -ms-flex-order: 3;
                     order: 3
                 }
             }

             .process-card .box-img {
                 padding: 36px 25px;
                 background: #F9F8FF;
                 border-radius: 30px;
                 text-align: center;
                 margin-top: 70px;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: center;
                 -webkit-justify-content: center;
                 -ms-flex-pack: center;
                 justify-content: center;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 min-width: 364px;
                 height: 240px
             }

             @media (max-width: 1199px) {
                 .process-card .box-img {
                     min-width: 100%;
                     margin-top: 20px
                 }
             }

             @media (max-width: 991px) {
                 .process-card .box-img {
                     padding: 10px 30px
                 }
             }

             .process-card .box-img img {
                 object-fit: cover
             }

             .process-card_wrapp {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 gap: 30px
             }

             @media (max-width: 991px) {
                 .process-card_wrapp {
                     display: grid;
                     grid-template-columns: repeat(1, 1fr)
                 }
             }

             .process-card_wrapp .box-icon {
                 -webkit-box-ordinal-group: 2;
                 -webkit-order: 1;
                 -ms-flex-order: 1;
                 order: 1
             }

             .process-card_wrapp .box-content {
                 -webkit-box-ordinal-group: 3;
                 -webkit-order: 2;
                 -ms-flex-order: 2;
                 order: 2
             }

             .process-card_wrapp .box-img {
                 -webkit-box-ordinal-group: 4;
                 -webkit-order: 3;
                 -ms-flex-order: 3;
                 order: 3
             }

             @media (max-width: 991px) {
                 .process-card_wrapp .box-img {
                     -webkit-box-ordinal-group: 4;
                     -webkit-order: 3;
                     -ms-flex-order: 3;
                     order: 3
                 }
             }

             .process-card .box-icon .number {
                 background-color: #F1ECFF;
                 padding: 3px 20px;
                 border-radius: 30px;
                 text-align: center;
                 font-weight: 700;
                 font-size: 14px;
                 text-transform: uppercase;
                 display: inline-block;
                 margin: auto;
                 color: var(--theme-color);
                 border: none;
                 -webkit-transition: 0.4s;
                 transition: 0.4s
             }

             .process-card .box-icon:last-child .number {
                 border: none;
                 line-height: 45px;
                 border-top: 5px solid var(--theme-color);
                 border-radius: 0px 0px 30px 30px
             }

             .process-card .box-title {
                 margin: 25px 0 5px 0
             }

             .process-card .box-text {
                 margin-bottom: 25px
             }

             .process-card .box-content {
                 padding: 0 40px
             }

             @media (max-width: 1199px) {
                 .process-card .box-content {
                     padding: 0
                 }
             }

             .process-card:hover .process-card_img img {
                 -webkit-transform: rotateY(180deg);
                 transform: rotateY(180deg)
             }

             .process-box {
                 position: relative;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 30px;
                 z-index: 2
             }

             @media (max-width: 1199px) {
                 .process-box {
                     padding-left: 25px
                 }
             }

             @media (max-width: 991px) {
                 .process-box {
                     gap: 15px;
                     padding-left: 0
                 }
             }

             .process-box:before {
                 content: "";
                 position: absolute;
                 left: -20px;
                 bottom: -75%;
                 width: 1px;
                 height: 295%;
                 background-color: var(--smoke-color);
                 z-index: -1
             }

             @media (max-width: 1199px) {
                 .process-box:before {
                     left: 0
                 }
             }

             @media (max-width: 991px) {
                 .process-box:before {
                     display: none
                 }
             }

             .process-box .box-number {
                 position: relative;
                 min-width: 40px;
                 height: 40px;
                 line-height: 40px;
                 border-radius: 50%;
                 background: var(--white-color);
                 text-align: center;
                 font-family: var(--title-font);
                 font-weight: 500;
                 font-size: 18px;
                 color: var(--title-color);
                 margin-left: -40px;
                 margin-top: -15px;
                 box-shadow: 0px 0px 40px 10px rgba(190, 190, 190, 0.5);
                 z-index: 3
             }

             @media (max-width: 991px) {
                 .process-box .box-number {
                     margin-left: 0
                 }
             }

             .process-box .box-title {
                 border-bottom: 1px solid var(--smoke-color);
                 margin-bottom: 20px;
                 padding-bottom: 20px
             }

             .process-box .box-text {
                 max-width: 296px;
                 margin-bottom: -0.3rem
             }

             .process-box-wrap {
                 margin-top: 20px
             }

             @media (max-width: 767px) {
                 .process-box-wrap {
                     margin-top: 40px
                 }
             }

             .process-box-wrap:nth-child(even) {
                 margin-top: 60px
             }

             @media (max-width: 767px) {
                 .process-box-wrap:nth-child(even) {
                     margin-top: 40px
                 }
             }

             .process-box-wrap:nth-child(even) .process-box:before {
                 bottom: unset;
                 top: -50%;
                 height: 200%
             }

             .process-box-area {
                 position: relative;
                 border-top: 1px solid var(--smoke-color);
                 padding-top: 40px
             }

             .process4-image {
                 border-radius: 30px;
                 margin-right: 40px
             }

             @media (max-width: 1199px) {
                 .process4-image {
                     margin-right: 0;
                     height: 375px;
                     margin-bottom: 30px
                 }

                 .process4-image img {
                     width: 100%;
                     height: 100%;
                     object-fit: cover
                 }
             }

             .process4-image img {
                 border-radius: 30px
             }

             .box-desc {
                 position: relative;
                 font-family: var(--title-font);
                 font-weight: 500;
                 font-size: 16px;
                 line-height: 26px;
                 color: var(--body-color);
                 max-width: 629px;
                 margin-bottom: 45px
             }

             @media (max-width: 1199px) {
                 .box-desc {
                     padding-left: 55px
                 }
             }

             @media (max-width: 991px) {
                 .box-desc {
                     padding-left: 0
                 }
             }

             .box-desc:before {
                 content: "";
                 position: absolute;
                 left: -20px;
                 top: -190%;
                 width: 1px;
                 height: 180%;
                 background-color: var(--smoke-color);
                 z-index: -1
             }

             @media (max-width: 1199px) {
                 .box-desc:before {
                     display: none
                 }
             }

             .process-grid {
                 position: relative;
                 z-index: 2;
                 padding: 30px;
                 border-radius: 30px
             }

             .process-grid:before {
                 content: "";
                 position: absolute;
                 inset: 0;
                 -webkit-mask-image: url("../img/shape/process-shape.png");
                 mask-image: url("../img/shape/process-shape.png");
                 background-color: #F5F8F3;
                 -webkit-mask-repeat: no-repeat;
                 mask-repeat: no-repeat;
                 -webkit-mask-size: 100% 100%;
                 mask-size: 100% 100%;
                 border-radius: 30px;
                 z-index: -1
             }

             @media (max-width: 991px) {
                 .process-grid:before {
                     -webkit-mask-image: none;
                     mask-image: none
                 }
             }

             .process-grid .box-icon {
                 background-color: var(--theme-color);
                 -webkit-mask-repeat: no-repeat;
                 mask-repeat: no-repeat;
                 -webkit-mask-size: 100% 100%;
                 mask-size: 100% 100%;
                 width: 137px;
                 height: 115px;
                 padding: 20px;
                 position: absolute;
                 left: -4px;
                 top: -30px
             }

             .process-grid .box-icon img {
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             @media (max-width: 1299px) {
                 .process-grid .box-icon {
                     width: 118px;
                     padding: 15px;
                     left: -3px
                 }
             }

             @media (max-width: 1199px) {
                 .process-grid .box-icon {
                     width: 130px;
                     left: 0
                 }
             }

             .process-grid .box-title {
                 font-size: 22px;
                 margin-bottom: 10px;
                 margin-left: 120px
             }

             @media (max-width: 1299px) {
                 .process-grid .box-title {
                     margin-left: 90px;
                     font-size: 20px
                 }
             }

             @media (max-width: 1199px) {
                 .process-grid .box-title {
                     margin-left: 110px
                 }
             }

             @media (max-width: 991px) {
                 .process-grid .box-title {
                     margin-left: 80px
                 }
             }

             .process-grid .box-title span {
                 display: block
             }

             .process-grid .box-wrapp {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between
             }

             @media (max-width: 375px) {
                 .process-grid .box-wrapp {
                     display: block
                 }
             }

             .process-grid .box-number {
                 font-family: var(--title-font);
                 font-weight: 300;
                 font-size: 36px;
                 line-height: 46px;
                 text-transform: capitalize;
                 color: #7E9E7E;
                 opacity: 0.3
             }

             .process-grid .box-text {
                 margin-bottom: -0.4rem
             }

             .process-grid:hover .box-icon img {
                 -webkit-transform: scale(-1) rotate(180deg);
                 -ms-transform: scale(-1) rotate(180deg);
                 transform: scale(-1) rotate(180deg)
             }

             .process-area2 {
                 position: relative;
                 max-width: 1620px;
                 display: block;
                 margin: auto
             }

             .process-card2 {
                 position: relative;
                 z-index: 2;
                 text-align: center;
                 padding: 0 20px
             }

             @media (max-width: 1199px) {
                 .process-card2 {
                     padding: 0
                 }
             }

             .process-card2-wrap:nth-child(even) {
                 margin-top: -40px
             }

             @media (max-width: 767px) {
                 .process-card2-wrap:nth-child(even) {
                     margin-top: 40px
                 }
             }

             .process-card2-wrap:nth-child(2) .box-number {
                 background: #F3BA0E;
                 top: 40px;
                 left: 10px
             }

             .process-card2-wrap:nth-child(2) .box-number:after,
             .process-card2-wrap:nth-child(2) .box-number:before {
                 background-color: #F3BA0E
             }

             .process-card2-wrap:nth-child(2) .box-icon:before {
                 top: 50%;
                 left: -73%;
                 background-color: #F3BA0E
             }

             .process-card2-wrap:nth-child(3) .box-number {
                 background: #70D715;
                 top: 47px;
                 left: 20px
             }

             .process-card2-wrap:nth-child(3) .box-number:after,
             .process-card2-wrap:nth-child(3) .box-number:before {
                 background-color: #70D715
             }

             .process-card2-wrap:nth-child(3) .box-icon:before {
                 top: 60%;
                 left: -70%;
                 background-color: #70D715
             }

             .process-card2 .box-number {
                 position: absolute;
                 top: 10px;
                 left: 0;
                 width: 36px;
                 height: 36px;
                 line-height: 36px;
                 text-align: center;
                 color: var(--white-color);
                 border-radius: 50%;
                 background: var(--theme-color)
             }

             .process-card2 .box-number:after,
             .process-card2 .box-number:before {
                 content: "";
                 position: absolute;
                 inset: 0;
                 background-color: var(--theme-color);
                 opacity: 0.3;
                 z-index: -2;
                 border-radius: 50%;
                 -webkit-transition: all ease 0.4s;
                 transition: all ease 0.4s
             }

             .process-card2 .box-number:after {
                 -webkit-animation-delay: 2s;
                 animation-delay: 2s
             }

             .process-card2 .box-icon {
                 position: relative;
                 width: 124px;
                 height: 124px;
                 line-height: 124px;
                 border-radius: 50%;
                 display: block;
                 margin: auto auto 30px auto;
                 background-color: var(--white-color);
                 box-shadow: 0px 10px 50px 10px #E8E8E8
             }

             .process-card2 .box-icon img {
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out
             }

             .process-card2 .box-icon:before {
                 content: "";
                 position: absolute;
                 top: 40%;
                 left: -80%;
                 width: 89px;
                 height: 35.12px;
                 background-color: var(--theme-color);
                 -webkit-mask-image: url("../img/icon/line-shape2.svg");
                 mask-image: url("../img/icon/line-shape2.svg");
                 -webkit-mask-repeat: no-repeat;
                 mask-repeat: no-repeat;
                 -webkit-mask-size: 100% 100%;
                 mask-size: 100% 100%
             }

             .process-card2 .box-title {
                 font-size: 30px;
                 margin-bottom: 10px
             }

             .process-card2 .box-text {
                 margin-bottom: -0.3rem
             }

             .process-card2:hover .box-icon img {
                 -webkit-transform: scale(-1) rotate(180deg);
                 -ms-transform: scale(-1) rotate(180deg);
                 transform: scale(-1) rotate(180deg)
             }

             .process-btn {
                 text-align: center;
                 border: 1px solid var(--smoke-color);
                 border-radius: 30px;
                 padding: 5px 40px;
                 margin: auto
             }

             @media (max-width: 375px) {
                 .process-btn {
                     padding: 5px 10px;
                     font-size: 13px
                 }
             }

             .feature-card {
                 background: var(--white-color);
                 box-shadow: 0px 4px 50px #EFEFEF;
                 border-radius: 10px;
                 padding: 30px;
                 text-align: center
             }

             @media (max-width: 1399px) {
                 .feature-card {
                     padding: 30px 20px
                 }
             }

             .feature-card .box-icon {
                 margin-bottom: 30px
             }

             .feature-card .box-icon img {
                 -webkit-transition: all 0.4s ease;
                 transition: all 0.4s ease
             }

             .feature-card .box-title {
                 font-size: 22px;
                 font-weight: 500
             }

             @media (max-width: 1399px) {
                 .feature-card .box-title {
                     font-size: 18px
                 }
             }

             .feature-card .box-text {
                 margin-bottom: -0.4rem
             }

             .feature-card:hover .box-icon img {
                 -webkit-transform: scale(-1) rotate(180deg);
                 -ms-transform: scale(-1) rotate(180deg);
                 transform: scale(-1) rotate(180deg)
             }

             .feature-shape {
                 width: 10px;
                 height: 10px;
                 border-radius: 50%;
                 background-color: var(--theme-color);
                 display: block
             }

             .feature-shape.style2 {
                 width: 20px;
                 height: 20px;
                 background-color: var(--theme-color2)
             }

             .feature-shape.style3 {
                 width: 20px;
                 height: 20px
             }

             .feature-shape.style4 {
                 width: 14px;
                 height: 14px
             }

             .feature-box {
                 background-color: var(--white-color);
                 border: 1px solid var(--smoke-color);
                 border-radius: 30px;
                 padding: 50px
             }

             @media (max-width: 991px) {
                 .feature-box {
                     padding: 30px
                 }
             }

             @media (max-width: 767px) {
                 .feature-box {
                     text-align: center
                 }
             }

             .feature-box .box-icon {
                 margin-bottom: 30px
             }

             @media (max-width: 575px) {
                 .feature-box .box-title {
                     font-size: 18px
                 }
             }

             .feature-box .box-text {
                 margin-bottom: -0.4rem
             }

             .feature-item {
                 padding: 24px;
                 background: #31353A;
                 border-radius: 30px
             }

             @media (max-width: 480px) {
                 .feature-item:not(:last-child) {
                     margin-bottom: 30px
                 }
             }

             .feature-item-wrap {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 30px
             }

             @media (max-width: 480px) {
                 .feature-item-wrap {
                     display: block
                 }
             }

             .feature-item .box-title {
                 color: var(--white-color);
                 font-size: 18px;
                 font-weight: 500;
                 margin-bottom: 5px
             }

             .feature-item .box-text {
                 color: #A2ABBA;
                 margin-bottom: -0.3rem
             }

             .process-wrap {
                 position: relative
             }

             .process-wrap .process-bg-line {
                 position: absolute;
                 left: 50%;
                 top: 60px;
                 bottom: 0;
                 -webkit-transform: translate(-50%, 0);
                 -ms-transform: translate(-50%, 0);
                 transform: translate(-50%, 0)
             }

             .process-wrap .process-bg-line img {
                 height: calc(100% + 20px)
             }

             @media (max-width: 1199px) {
                 .process-wrap .process-bg-line {
                     display: none
                 }
             }

             .process-wrap .process-content {
                 position: relative
             }

             .process-wrap .process-content:after,
             .process-wrap .process-content:before {
                 content: '';
                 position: absolute;
                 width: 60px;
                 height: 60px;
                 border-radius: 16px;
                 display: inline-block;
                 background: var(--white-color);
                 left: 0;
                 top: 50%;
                 -webkit-transform: translate(-94px, -50%);
                 -ms-transform: translate(-94px, -50%);
                 transform: translate(-94px, -50%)
             }

             @media (max-width: 1399px) {

                 .process-wrap .process-content:after,
                 .process-wrap .process-content:before {
                     -webkit-transform: translate(-91px, -50%);
                     -ms-transform: translate(-91px, -50%);
                     transform: translate(-91px, -50%)
                 }
             }

             @media (max-width: 1299px) {

                 .process-wrap .process-content:after,
                 .process-wrap .process-content:before {
                     -webkit-transform: translate(-84px, -50%);
                     -ms-transform: translate(-84px, -50%);
                     transform: translate(-84px, -50%)
                 }
             }

             @media (max-width: 1199px) {

                 .process-wrap .process-content:after,
                 .process-wrap .process-content:before {
                     display: none
                 }
             }

             .process-wrap .process-content:after {
                 background: var(--theme-color);
                 width: 20px;
                 height: 20px;
                 border-radius: 50%;
                 margin-left: 20px
             }

             .process-wrap .process-content.left-content:after,
             .process-wrap .process-content.left-content:before {
                 left: auto;
                 right: 0;
                 -webkit-transform: translate(94px, -50%);
                 -ms-transform: translate(94px, -50%);
                 transform: translate(94px, -50%)
             }

             @media (max-width: 1399px) {

                 .process-wrap .process-content.left-content:after,
                 .process-wrap .process-content.left-content:before {
                     -webkit-transform: translate(93px, -50%);
                     -ms-transform: translate(93px, -50%);
                     transform: translate(93px, -50%)
                 }
             }

             .process-wrap .process-content.left-content:after {
                 margin-left: 0;
                 margin-right: 20px
             }

             .process-wrap .process-content .two-column .checklist li {
                 color: var(--body-color)
             }

             @media (max-width: 575px) {
                 .process-wrap .process-content .two-column {
                     gap: 10px
                 }
             }

             .client-box.style2 {
                 margin: 0;
                 padding: 0;
                 display: block
             }

             .client-box.style2 .client-thumb-group {
                 margin-bottom: 16px
             }

             .client-box.style2 .client-thumb-group .thumb img {
                 border-radius: 50%;
                 height: 40px;
                 border: 1px solid var(--body-color)
             }

             .client-box.style2 .box-title {
                 font-weight: 400;
                 font-size: 16px;
                 line-height: 26px;
                 color: var(--white-color)
             }

             .client-box.style2 .counter-number {
                 color: var(--theme-color)
             }

             .choose-feature {
                 background: #EFEAFF;
                 border-radius: 15px;
                 box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
                 padding: 17px;
                 text-align: center
             }

             .choose-feature .box-img {
                 margin-bottom: 30px
             }

             .choose-feature .box-img img {
                 -webkit-transition: all 0.4s ease-in-out;
                 transition: all 0.4s ease-in-out;
                 border-radius: 10px;
                 width: 100%;
             }

             .choose-feature .box-title {
                 font-size: 22px;
                 font-weight: 500
             }

             .choose-feature .box-text {
                 margin-bottom: -0.3rem
             }

             /* .choose-feature:hover .box-img img {
    -webkit-transform: scale(-1) rotate(180deg);
    -ms-transform: scale(-1) rotate(180deg);
    transform: scale(-1) rotate(180deg)
} */

             .choose-card {
                 background: #F8F8F8;
                 border-radius: 30px;
                 padding: 50px
             }

             @media (max-width: 1299px) {
                 .choose-card {
                     padding: 30px
                 }
             }

             .choose-card .box-img {
                 -webkit-filter: drop-shadow(0px 4px 50px #EFEFEF);
                 filter: drop-shadow(0px 4px 50px #EFEFEF);
                 border-radius: 20px 20px 0px 0px;
                 margin-bottom: 35px
             }

             .choose-card .box-img img {
                 border-radius: 20px 20px 0px 0px
             }

             .choose-card .box-title {
                 font-size: 30px;
                 line-height: 40px;
                 color: var(--title-color);
                 margin-bottom: 10px
             }

             @media (max-width: 1299px) {
                 .choose-card .box-title {
                     font-size: 24px
                 }
             }

             .choose-card .box-text {
                 margin-bottom: -0.4rem
             }

             .feature-grid-thumb {
                 position: relative;
                 border-top: 1px solid var(--smoke-color)
             }

             .feature-grid-thumb:before {
                 content: "";
                 position: absolute;
                 top: -2px;
                 left: 50%;
                 -webkit-transform: translateX(-50%);
                 -ms-transform: translateX(-50%);
                 transform: translateX(-50%);
                 background-color: #EFEFEF;
                 height: 2px;
                 width: var(--main-container)
             }

             .feature-timeline {
                 position: relative;
                 margin-top: 30px
             }

             .feature-timeline .swiper-slide {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 -webkit-box-pack: center;
                 -webkit-justify-content: center;
                 -ms-flex-pack: center;
                 justify-content: center
             }

             .feature-timeline .swiper-slide .title {
                 font-size: 18px;
                 opacity: 0;
                 -webkit-transition: 0.5s ease 0.5s;
                 transition: 0.5s ease 0.5s
             }

             .feature-timeline .swiper-slide-active .title {
                 opacity: 1
             }

             .feature-timeline .feature-area-title {
                 margin-top: 65px
             }

             .feature-timeline .box-title {
                 margin-bottom: 15px
             }

             .feature-timeline .swiper-pagination-progressbar {
                 position: relative;
                 background-color: transparent;
                 height: 4px;
                 border-bottom: 1px solid var(--smoke-color);
                 width: 100%
             }

             @media (max-width: 1199px) {
                 .feature-timeline .swiper-pagination-progressbar {
                     border: none
                 }
             }

             .feature-timeline .swiper-pagination-progressbar-fill {
                 background-color: var(--theme-color);
                 height: 1px;
                 top: 2px
             }

             @media (max-width: 1199px) {
                 .feature-timeline .swiper-pagination-progressbar-fill {
                     background-color: transparent
                 }
             }

             .feature-timeline .swiper-pagination-custom {
                 position: relative;
                 top: 0;
                 list-style: none;
                 padding: 0;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 20px;
                 margin: 0;
                 z-index: 11
             }

             @media (max-width: 1199px) {
                 .feature-timeline .swiper-pagination-custom {
                     display: grid;
                     grid-template-columns: auto auto;
                     gap: 40px
                 }
             }

             @media (max-width: 480px) {
                 .feature-timeline .swiper-pagination-custom {
                     grid-template-columns: auto
                 }
             }

             .feature-timeline .swiper-pagination-custom .swiper-pagination-switch {
                 position: relative;
                 width: 100%;
                 display: block
             }

             .feature-timeline .swiper-pagination-custom .swiper-pagination-switch .switch-title {
                 position: absolute;
                 font-weight: 400;
                 top: -25px;
                 left: -25px;
                 width: 50px;
                 height: 50px;
                 line-height: 50px;
                 border-radius: 50%;
                 font-family: var(--title-font);
                 color: var(--title-color);
                 font-weight: 500;
                 background-color: var(--white-color);
                 border: 1px solid var(--theme-color);
                 text-align: center;
                 -webkit-transform: translateX(50%);
                 -ms-transform: translateX(50%);
                 transform: translateX(50%);
                 -webkit-transition: 0.2s all ease-in-out;
                 transition: 0.2s all ease-in-out;
                 -webkit-transition-delay: 0s;
                 transition-delay: 0s;
                 cursor: pointer;
                 z-index: 3
             }

             .feature-timeline .swiper-pagination-custom .swiper-pagination-switch .switch-title:before {
                 content: "";
                 position: absolute;
                 inset: -5px;
                 border: 5px solid transparent;
                 border-radius: 50%;
                 z-index: -1
             }

             .feature-timeline .swiper-pagination-custom .swiper-pagination-switch.active .switch-title {
                 background-color: var(--theme-color);
                 color: var(--white-color)
             }

             .feature-timeline .swiper-pagination-custom .swiper-pagination-switch.active .switch-title:before {
                 border-color: #FFE4E9
             }

             .feature-timeline .swiper-pagination-custom .swiper-pagination-switch.active .box-title {
                 color: var(--theme-color)
             }

             .feature-timeline .swiper-pagination-custom .swiper-pagination-switch.active~.swiper-pagination-switch .switch-title {
                 border-color: var(--smoke-color);
                 font-weight: 16px
             }

             .feature-timeline .swiper-pagination-custom .swiper-pagination-switch.active~.swiper-pagination-switch .switch-title:after {
                 background: var(--smoke-color)
             }

             .featureSlide {
                 position: relative;
                 margin-top: 35px;
                 overflow: hidden
             }

             .feature-details {
                 background-color: var(--title-color);
                 border-radius: 50px;
                 padding: 60px 200px;
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-pack: justify;
                 -webkit-justify-content: space-between;
                 -ms-flex-pack: justify;
                 justify-content: space-between;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center
             }

             @media (max-width: 1699px) {
                 .feature-details {
                     padding: 60px 100px
                 }
             }

             @media (max-width: 1500px) {
                 .feature-details {
                     padding: 60px 30px
                 }
             }

             @media (max-width: 1199px) {
                 .feature-details {
                     display: block
                 }
             }

             .feature-image {
                 position: relative;
                 border-radius: 30px;
                 z-index: 2;
                 min-width: 760px
             }

             @media (max-width: 1399px) {
                 .feature-image {
                     min-width: 500px;
                     max-width: 500px
                 }
             }

             @media (max-width: 1199px) {
                 .feature-image {
                     margin-bottom: 60px;
                     min-width: 100%;
                     max-width: 100%
                 }
             }

             .feature-image img {
                 margin: 60px 0 0 60px;
                 border-radius: 30px
             }

             @media (max-width: 1399px) {
                 .feature-image img {
                     margin: 30px 0 0 30px
                 }
             }

             @media (max-width: 1199px) {
                 .feature-image img {
                     width: 100%;
                     margin: 0
                 }
             }

             .feature-image .feature-shape1 {
                 position: absolute;
                 top: 0px;
                 left: 0;
                 width: 672px;
                 height: 498px;
                 background: var(--theme-color);
                 border-radius: 50px;
                 z-index: -1
             }

             @media (max-width: 1399px) {
                 .feature-image .feature-shape1 {
                     width: 500px;
                     height: 430px
                 }
             }

             @media (max-width: 767px) {
                 .feature-image .feature-shape1 {
                     display: none
                 }
             }

             .sec-text3 {
                 color: #A2ABBA;
                 border-bottom: 1px solid var(--body-color);
                 padding-bottom: 25px
             }

             .feature-circle-wrap {
                 display: grid;
                 grid-template-columns: repeat(3, 1fr)
             }

             @media (max-width: 480px) {
                 .feature-circle-wrap {
                     grid-template-columns: repeat(2, 1fr);
                     gap: 30px
                 }
             }

             @media (max-width: 375px) {
                 .feature-circle-wrap {
                     grid-template-columns: repeat(1, 1fr)
                 }
             }

             .feature-circle .box-text {
                 color: #A2ABBA;
                 display: block;
                 margin-bottom: 0px
             }

             .feature-circle .box-text span {
                 display: block
             }

             .feature-circle .progressbar {
                 position: relative
             }

             .feature-circle .circle-num {
                 font-size: 30px;
                 font-weight: 600;
                 color: var(--white-color);
                 font-family: var(--title-font);
                 position: absolute;
                 top: 0;
                 left: 0;
                 width: 100px;
                 height: 100px;
                 line-height: 100px;
                 border-radius: 999px;
                 text-align: center
             }

             .feature-wrap {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 40px
             }

             @media (max-width: 767px) {
                 .feature-wrap {
                     display: block
                 }
             }

             .feature-grid .feature-content {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 10px
             }

             .feature-grid .box-icon i {
                 font-size: 22px;
                 color: var(--title-color)
             }

             .feature-grid .box-title {
                 font-size: 22px;
                 font-weight: 500;
                 margin-bottom: 10px
             }

             .choose-area2 {
                 background-color: #0A0A0A
             }

             .choose-counter {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 gap: 0px;
                 -webkit-box-orient: vertical;
                 -webkit-box-direction: normal;
                 -webkit-flex-flow: column;
                 -ms-flex-flow: column;
                 flex-flow: column;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 -webkit-transform: rotate(-90deg);
                 -ms-transform: rotate(-90deg);
                 transform: rotate(-90deg);
                 margin-right: 130px
             }

             @media (max-width: 1199px) {
                 .choose-counter {
                     -webkit-transform: rotate(0deg);
                     -ms-transform: rotate(0deg);
                     transform: rotate(0deg);
                     margin: 0;
                     -webkit-box-align: start;
                     -webkit-align-items: start;
                     -ms-flex-align: start;
                     align-items: start;
                     padding-bottom: 50px
                 }
             }

             .choose-counter .box-title {
                 font-weight: 600;
                 font-size: 164px;
                 line-height: 174px;
                 text-transform: capitalize;
                 color: var(--body-color);
                 display: block;
                 margin: 0
             }

             @media (max-width: 1199px) {
                 .choose-counter .box-title {
                     font-size: 140px;
                     line-height: 150px
                 }
             }

             @media (max-width: 767px) {
                 .choose-counter .box-title {
                     font-size: 100px;
                     line-height: 140px
                 }
             }

             @media (max-width: 375px) {
                 .choose-counter .box-title {
                     font-size: 60px;
                     line-height: 80px
                 }
             }

             .choose-counter .text {
                 font-family: var(--title-font);
                 font-weight: 600;
                 font-size: 74px;
                 line-height: 84px;
                 text-transform: capitalize;
                 color: var(--white-color);
                 display: inline-block;
                 min-width: 512px;
                 margin: 0
             }

             @media (max-width: 1199px) {
                 .choose-counter .text {
                     font-size: 54px;
                     line-height: 64px
                 }
             }

             @media (max-width: 767px) {
                 .choose-counter .text {
                     font-size: 44px;
                     line-height: 54px
                 }
             }

             @media (max-width: 375px) {
                 .choose-counter .text {
                     font-size: 34px;
                     line-height: 44px
                 }
             }

             .choose-content .title-area {
                 max-width: 550px
             }

             .choose-grid {
                 position: relative;
                 background: #0A0A0A;
                 border: 1px solid #4661FF;
                 border-radius: 30px;
                 padding: 30px;
                 max-width: 542px;
                 z-index: 2
             }

             .choose-grid:before {
                 content: "";
                 position: absolute;
                 top: 0;
                 left: -35%;
                 width: 163px;
                 height: 94px;
                 background-color: transparent;
                 -webkit-mask-image: url("../img/icon/line-shape1.svg");
                 mask-image: url("../img/icon/line-shape1.svg");
                 -webkit-mask-repeat: no-repeat;
                 mask-repeat: no-repeat;
                 -webkit-mask-size: 100% 100%;
                 mask-size: 100% 100%
             }

             @media (max-width: 767px) {
                 .choose-grid:before {
                     display: none
                 }
             }

             .choose-grid:nth-child(3) {
                 margin-left: 200px;
                 border-color: #F3BA0E
             }

             @media (max-width: 1299px) {
                 .choose-grid:nth-child(3) {
                     margin-left: 150px
                 }
             }

             @media (max-width: 767px) {
                 .choose-grid:nth-child(3) {
                     margin-left: 0
                 }
             }

             .choose-grid:nth-child(3):before {
                 background-color: #4661FF
             }

             .choose-grid:nth-child(4) {
                 margin-left: 400px;
                 border-color: #70D715
             }

             @media (max-width: 1299px) {
                 .choose-grid:nth-child(4) {
                     margin-left: 350px
                 }
             }

             @media (max-width: 991px) {
                 .choose-grid:nth-child(4) {
                     margin-left: 200px
                 }
             }

             @media (max-width: 767px) {
                 .choose-grid:nth-child(4) {
                     margin-left: 0
                 }
             }

             .choose-grid:nth-child(4):before {
                 background-color: #F3BA0E
             }

             .choose-grid:not(:last-child) {
                 margin-bottom: 24px
             }

             .choose-grid .choose-content {
                 display: -webkit-box;
                 display: -webkit-flex;
                 display: -ms-flexbox;
                 display: flex;
                 -webkit-box-align: center;
                 -webkit-align-items: center;
                 -ms-flex-align: center;
                 align-items: center;
                 gap: 10px
             }

             .choose-grid .box-title {
                 font-size: 22px;
                 font-weight: 500;
                 color: var(--white-color);
                 margin-bottom: 0
             }

             .choose-grid .box-text {
                 color: #7A8392;
                 margin: 10px 0 -0.3rem 0
             }

             .choose-btn {
                 margin-top: -135px
             }

             @media (max-width: 991px) {
                 .choose-btn {
                     margin-top: -85px
                 }
             }

             @media (max-width: 767px) {
                 .choose-btn {
                     margin-top: 0
                 }
             }

             .color-scheme-wrap {
                 position: fixed;
                 right: 0;
                 top: 50%;
                 z-index: 99;
                 background: var(--white-color);
                 padding: 20px 30px;
                 border-radius: 10px 0 0 10px;
                 display: inline-block;
                 text-align: center;
                 -webkit-transition: 0.4s;
                 transition: 0.4s;
                 box-shadow: 0px 0px 4px 0px rgba(51, 51, 51, 0.2)
             }

             .color-scheme-wrap .switchIcon {
                 position: absolute;
                 left: 0;
                 top: 10px;
                 border: 0;
                 background: var(--theme-color);
                 color: var(--white-color);
                 height: 45px;
                 width: 45px;
                 border-radius: 5px 0 0 5px;
                 -webkit-transform: translate(-100%, 0);
                 -ms-transform: translate(-100%, 0);
                 transform: translate(-100%, 0)
             }

             .color-scheme-wrap .color-scheme-wrap-title {
                 font-size: 22px;
                 border-bottom: 1px solid var(--th-border-color);
                 padding-bottom: 6px;
                 color: var(--title-color);
                 margin-bottom: 30px
             }

             .color-scheme-wrap .color-scheme-wrap-title i {
                 font-size: 18px;
                 margin-right: 3px
             }

             .color-scheme-wrap .color-switch-btns {
                 display: grid;
                 grid-template-columns: repeat(3, 1fr);
                 gap: 18px;
                 margin-bottom: 25px
             }

             .color-scheme-wrap .color-switch-btns button {
                 padding: 0;
                 border: 0;
                 background: transparent;
                 font-size: 34px;
                 color: var(--theme-color);
                 text-align: left
             }

             .color-scheme-wrap.active {
                 -webkit-transform: translate(100%, 0);
                 -ms-transform: translate(100%, 0);
                 transform: translate(100%, 0)
             }

             .px-5 {
                 padding-right: 5px;
                 padding-left: 5px
             }

             .px-10 {
                 padding-right: 10px;
                 padding-left: 10px
             }

             .px-15 {
                 padding-right: 15px;
                 padding-left: 15px
             }

             .px-20 {
                 padding-right: 20px;
                 padding-left: 20px
             }

             .px-25 {
                 padding-right: 25px;
                 padding-left: 25px
             }

             .px-30 {
                 padding-right: 30px;
                 padding-left: 30px
             }

             .px-35 {
                 padding-right: 35px;
                 padding-left: 35px
             }

             .px-40 {
                 padding-right: 40px;
                 padding-left: 40px
             }

             .px-45 {
                 padding-right: 45px;
                 padding-left: 45px
             }

             .px-50 {
                 padding-right: 50px;
                 padding-left: 50px
             }

             .py-5 {
                 padding-top: 5px;
                 padding-bottom: 5px
             }

             .py-10 {
                 padding-top: 10px;
                 padding-bottom: 10px
             }

             .py-15 {
                 padding-top: 15px;
                 padding-bottom: 15px
             }

             .py-20 {
                 padding-top: 20px;
                 padding-bottom: 20px
             }

             .py-25 {
                 padding-top: 25px;
                 padding-bottom: 25px
             }

             .py-30 {
                 padding-top: 30px;
                 padding-bottom: 30px
             }

             .py-35 {
                 padding-top: 35px;
                 padding-bottom: 35px
             }

             .py-40 {
                 padding-top: 40px;
                 padding-bottom: 40px
             }

             .py-45 {
                 padding-top: 45px;
                 padding-bottom: 45px
             }

             .py-50 {
                 padding-top: 50px;
                 padding-bottom: 50px
             }

             .pt-5 {
                 padding-top: 5px
             }

             .pt-10 {
                 padding-top: 10px
             }

             .pt-15 {
                 padding-top: 15px
             }

             .pt-20 {
                 padding-top: 20px
             }

             .pt-25 {
                 padding-top: 25px
             }

             .pt-30 {
                 padding-top: 30px
             }

             .pt-35 {
                 padding-top: 35px
             }

             .pt-40 {
                 padding-top: 40px
             }

             .pt-45 {
                 padding-top: 45px
             }

             .pt-50 {
                 padding-top: 50px
             }

             .pb-5 {
                 padding-bottom: 5px
             }

             .pb-10 {
                 padding-bottom: 10px
             }

             .pb-15 {
                 padding-bottom: 15px
             }

             .pb-20 {
                 padding-bottom: 20px
             }

             .pb-25 {
                 padding-bottom: 25px
             }

             .pb-30 {
                 padding-bottom: 30px
             }

             .pb-35 {
                 padding-bottom: 35px
             }

             .pb-40 {
                 padding-bottom: 40px
             }

             .pb-45 {
                 padding-bottom: 45px
             }

             .pb-50 {
                 padding-bottom: 50px
             }

             .pl-5 {
                 padding-left: 5px
             }

             .pl-10 {
                 padding-left: 10px
             }

             .pl-15 {
                 padding-left: 15px
             }

             .pl-20 {
                 padding-left: 20px
             }

             .pl-25 {
                 padding-left: 25px
             }

             .pl-30 {
                 padding-left: 30px
             }

             .pl-35 {
                 padding-left: 35px
             }

             .pl-40 {
                 padding-left: 40px
             }

             .pl-45 {
                 padding-left: 45px
             }

             .pl-50 {
                 padding-left: 50px
             }

             .pr-5 {
                 padding-right: 5px
             }

             .pr-10 {
                 padding-right: 10px
             }

             .pr-15 {
                 padding-right: 15px
             }

             .pr-20 {
                 padding-right: 20px
             }

             .pr-25 {
                 padding-right: 25px
             }

             .pr-30 {
                 padding-right: 30px
             }

             .pr-35 {
                 padding-right: 35px
             }

             .pr-40 {
                 padding-right: 40px
             }

             .pr-45 {
                 padding-right: 45px
             }

             .pr-50 {
                 padding-right: 50px
             }

             .pb-60 {
                 padding-bottom: 60px
             }

             .fs-20 {
                 font-size: 20px
             }

             .pt-80 {
                 padding-top: 80px
             }

             .mx-5 {
                 margin-right: 5px;
                 margin-left: 5px
             }

             .mx-10 {
                 margin-right: 10px;
                 margin-left: 10px
             }

             .mx-15 {
                 margin-right: 15px;
                 margin-left: 15px
             }

             .mx-20 {
                 margin-right: 20px;
                 margin-left: 20px
             }

             .mx-25 {
                 margin-right: 25px;
                 margin-left: 25px
             }

             .mx-30 {
                 margin-right: 30px;
                 margin-left: 30px
             }

             .mx-35 {
                 margin-right: 35px;
                 margin-left: 35px
             }

             .mx-40 {
                 margin-right: 40px;
                 margin-left: 40px
             }

             .mx-45 {
                 margin-right: 45px;
                 margin-left: 45px
             }

             .mx-50 {
                 margin-right: 50px;
                 margin-left: 50px
             }

             .my-5 {
                 margin-top: 5px;
                 margin-bottom: 5px
             }

             .my-10 {
                 margin-top: 10px;
                 margin-bottom: 10px
             }

             .my-15 {
                 margin-top: 15px;
                 margin-bottom: 15px
             }

             .my-20 {
                 margin-top: 20px;
                 margin-bottom: 20px
             }

             .my-25 {
                 margin-top: 25px;
                 margin-bottom: 25px
             }

             .my-30 {
                 margin-top: 30px;
                 margin-bottom: 30px
             }

             .my-35 {
                 margin-top: 35px;
                 margin-bottom: 35px
             }

             .my-40 {
                 margin-top: 40px;
                 margin-bottom: 40px
             }

             .my-45 {
                 margin-top: 45px;
                 margin-bottom: 45px
             }

             .my-50 {
                 margin-top: 50px;
                 margin-bottom: 50px
             }

             .mt-5 {
                 margin-top: 5px
             }

             .mt-10 {
                 margin-top: 10px
             }

             .mt-15 {
                 margin-top: 15px
             }

             .mt-20 {
                 margin-top: 20px
             }

             .mt-25 {
                 margin-top: 25px
             }

             .mt-30 {
                 margin-top: 30px
             }

             .mt-35 {
                 margin-top: 35px
             }

             .mt-40 {
                 margin-top: 40px
             }

             .mt-45 {
                 margin-top: 45px
             }

             .mt-50 {
                 margin-top: 50px
             }

             .mb-5 {
                 margin-bottom: 5px
             }

             .mb-10 {
                 margin-bottom: 10px
             }

             .mb-15 {
                 margin-bottom: 15px
             }

             .mb-20 {
                 margin-bottom: 20px
             }

             .mb-25 {
                 margin-bottom: 25px
             }

             .mb-30 {
                 margin-bottom: 30px
             }

             .mb-35 {
                 margin-bottom: 35px
             }

             .mb-40 {
                 margin-bottom: 40px
             }

             .mb-45 {
                 margin-bottom: 45px
             }

             .mb-50 {
                 margin-bottom: 50px
             }

             .ml-5 {
                 margin-left: 5px
             }

             .ml-10 {
                 margin-left: 10px
             }

             .ml-15 {
                 margin-left: 15px
             }

             .ml-20 {
                 margin-left: 20px
             }

             .ml-25 {
                 margin-left: 25px
             }

             .ml-30 {
                 margin-left: 30px
             }

             .ml-35 {
                 margin-left: 35px
             }

             .ml-40 {
                 margin-left: 40px
             }

             .ml-45 {
                 margin-left: 45px
             }

             .ml-50 {
                 margin-left: 50px
             }

             .mr-5 {
                 margin-right: 5px
             }

             .mr-10 {
                 margin-right: 10px
             }

             .mr-15 {
                 margin-right: 15px
             }

             .mr-20 {
                 margin-right: 20px
             }

             .mr-25 {
                 margin-right: 25px
             }

             .mr-30 {
                 margin-right: 30px
             }

             .mr-35 {
                 margin-right: 35px
             }

             .mr-40 {
                 margin-right: 40px
             }

             .mr-45 {
                 margin-right: 45px
             }

             .mr-50 {
                 margin-right: 50px
             }

             .mb-60 {
                 margin-bottom: 60px
             }

             .mt-n1 {
                 margin-top: -.25rem
             }

             .mt-n2 {
                 margin-top: -.6rem
             }

             .mt-n3 {
                 margin-top: -0.8rem
             }

             .mt-n4 {
                 margin-top: -1.5rem
             }

             .mt-n5 {
                 margin-top: -3rem
             }

             .mb-n1 {
                 margin-bottom: -.25rem
             }

             .mb-n2 {
                 margin-bottom: -.6rem
             }

             .mb-n3 {
                 margin-bottom: -0.8rem
             }

             .mb-n4 {
                 margin-bottom: -1.5rem
             }

             .mb-n5 {
                 margin-bottom: -3rem
             }

             .mb-38 {
                 margin-bottom: 38px
             }

             .me-80 {
                 margin-right: 80px
             }

             @media (max-width: 1699px) {
                 .me-80 {
                     margin-right: 0
                 }
             }

             .ms-80 {
                 margin-left: 80px
             }

             @media (max-width: 1699px) {
                 .ms-80 {
                     margin-left: 0
                 }
             }

             .mt-60 {
                 margin-top: 60px
             }

             .mb-130 {
                 margin-bottom: 130px
             }

             .space,
             .space-top {
                 padding-top: var(--section-space)
             }

             .space,
             .space-bottom {
                 padding-bottom: var(--section-space)
             }

             .space-extra,
             .space-extra-top {
                 padding-top: calc(var(--section-space) - 30px)
             }

             .space-extra,
             .space-extra-bottom {
                 padding-bottom: calc(var(--section-space) - 30px)
             }

             .space-extra2,
             .space-extra2-top {
                 padding-top: calc(var(--section-space) - 40px)
             }

             .space-extra2,
             .space-extra2-bottom {
                 padding-bottom: calc(var(--section-space) - 40px)
             }

             @media (max-width: 991px) {

                 .space,
                 .space-top {
                     padding-top: var(--section-space-mobile)
                 }

                 .space,
                 .space-bottom {
                     padding-bottom: var(--section-space-mobile)
                 }

                 .space-extra,
                 .space-extra-top {
                     padding-top: calc(var(--section-space-mobile) - 30px)
                 }

                 .space-extra,
                 .space-extra-bottom {
                     padding-bottom: calc(var(--section-space-mobile) - 30px)
                 }

                 .space-top-md-none {
                     padding-top: 0
                 }

                 .space-extra2,
                 .space-extra2-top {
                     padding-top: 70px
                 }

                 .space-extra2,
                 .space-extra2-bottom {
                     padding-bottom: 70px
                 }
             }


             @media (max-width: 600px) {

                 .footer-list-pad {
                     padding-bottom: 20px;
                     border-bottom: 1px solid #ccc;
                     margin-bottom: 20px;
                 }

                 .footer-list-pad:last-child {
                     border-bottom: none;
                 }
             }

             @media (max-width: 767px) {
                 .footer-list-pad {
                     padding-bottom: 20px;
                     border-bottom: 1px solid #ccc;
                     margin-bottom: 20px;
                 }

                 .footer-list-pad:last-child {
                     border-bottom: none;
                 }
             }



             .whatsapp-icon {
                 width: 60px;
                 height: 60px;
                 position: fixed;
                 bottom: 85px;
                 right: 25px;
                 z-index: 9999;
             }


             .border-bottom {
                 border-bottom: 1px solid #ccc !important;
             }

             .w-full {
                 width: 100% !important;
             }


             #service-sec h3 {
                 font-weight: 500 !important;
                 font-size: 24px;
             }

             .submenu-inner {
                 width: 90vw !important;
                 margin: auto;
                 height: auto;
             }


             .text-contri {
                 font-size: 40px !important;
                 font-weight: 500 !important;
                 text-align: center !important;
             }


             .links-grid {
                 display: grid;
                 grid-template-columns: repeat(5, 1fr);
                 margin: 5px;
                 /* 3 equal columns */
             }


             .background-dark {
                 background: aliceblue !important;
             }

             @media (max-width: 576px) {
                 .links-grid {
                     grid-template-columns: repeat(2, 1fr);
                 }

                 .text-contri {
                        font-size: 19px !important;
                 }
             }

          