@charset "UTF-8";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
# Elements
	## Social Profiles
	## Top Bar Icon List
	## Top Bar Menu
	## Contact Methods
	## Nav Search Form
	## Nav Mini Cart
# Forms
# Navigation
	## Links
	## Primary Menu
# Accessibility
# Alignments
# Clearings
# Layout
	## Topbar
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@-moz-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@-ms-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: #4f4f4f;
  font-family: "Inter", serif;
  font-size: 16px;
  line-height: 1.5;
}

a {
  transition: all 0.3s ease-in-out;
}
a:hover {
  text-decoration: none;
}

h1, h2, .h1, .h2 {
  clear: both;
  font-family: "Hanken Grotesk", sans-serif;
  font-weight: 600;
  color: #3d3d3d;
  -moz-osx-font-smoothing: grayscale;
}

h1, .h1 {
  line-height: 1.1;
}

h2, .h2 {
  line-height: 1.3;
}

h3, h4, h5, h6, .h3, .h4, .h5, .h6 {
  font-weight: 500;
  color: #3d3d3d;
}

h1, .h1, h2, .h2, h3, .h3 {
  margin-top: 0;
  margin-bottom: 15px;
}

h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: 10px;
}

h1, .h1 {
  font-size: clamp(36px, 3.125vw, 60px);
  letter-spacing: -2.4px;
}
@media (max-width: 576px) {
  h1, .h1 {
    letter-spacing: -1.44px;
  }
}

h2, .h2 {
  font-size: clamp(30px, 2.5vw, 48px);
  letter-spacing: -1.44px;
}
@media (max-width: 991px) {
  h2, .h2 {
    letter-spacing: -1.2px;
  }
}
@media (max-width: 576px) {
  h2, .h2 {
    letter-spacing: -1.2px;
  }
}

h3, .h3 {
  font-size: 24px;
}

h4, .h4 {
  font-size: 20px;
}

h5, .h5 {
  font-size: 16px;
}

h6, .h6 {
  font-size: 14px;
}

p {
  margin-bottom: 1.5em;
}

dfn, cite, em, i {
  font-style: italic;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code {
  color: #094ec0;
}

code, kbd, tt, var {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
}

abbr, acronym {
  border-bottom: 1px dotted #8a8da1;
  cursor: help;
}

mark, ins {
  text-decoration: none;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
  margin-top: 0 !important;
}

*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}

a {
  color: #3d3d3d;
  text-decoration: none;
}

body {
  background: #fff;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  overflow-x: hidden;
  color: #4f4f4f;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
body.canvas-header {
  padding-left: 400px;
}
@media (max-width: 1440px) {
  body.canvas-header {
    padding-left: 300px;
  }
}
@media (max-width: 992px) {
  body.canvas-header {
    padding-left: 0;
  }
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
}

p {
  margin-bottom: 1em;
  -moz-osx-font-smoothing: grayscale;
}

.pr {
  position: relative;
}

.no-scroll {
  overflow: hidden;
}

.site-main {
  min-height: 50vh;
}

@media (max-width: 767px) {
  .position-default {
    position: static !important;
  }
}

@media (max-width: 991px) {
  .pps {
    order: 2;
  }
}
.mfp-iframe-holder .mfp-close {
  top: -40px;
  background: transparent;
  border: 0;
}

.swiper-container {
  overflow: hidden;
}

.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1352px;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1352px !important;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 100%;
  }
}
.container,
.container-lg,
.container-md,
.container-sm,
.container-xl {
  padding-left: 16px;
  padding-right: 16px;
}
@media (max-width: 1023px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 100% !important;
  }
}

strong,
b {
  font-weight: 700;
}

figure {
  margin: 1em 0;
  /* Extra wide images within figure tags don't overflow the content area. */
}

.pb-80 {
  padding-bottom: 100px;
}

.w-full {
  width: 100%;
}

#preloader .loading {
  font-size: 84px;
  font-weight: 700;
  text-align: center;
  width: 100%;
  line-height: 1;
}
@media (max-width: 767px) {
  #preloader .loading {
    font-size: 64px;
  }
}
@media (max-width: 576px) {
  #preloader .loading {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  #preloader .loading {
    font-size: 30px;
  }
}
#preloader .loading span {
  position: relative;
  color: rgba(0, 0, 0, 0.2);
  display: inline-block;
}
#preloader .loading span::after {
  position: absolute;
  top: 0;
  left: 0;
  content: attr(data-text);
  color: #3d3d3d;
  opacity: 0;
  transform: scale(1.5);
  animation: loading 3s infinite;
}
#preloader .loading span:nth-child(2)::after {
  animation-delay: 0.1s;
}
#preloader .loading span:nth-child(3)::after {
  animation-delay: 0.2s;
}
#preloader .loading span:nth-child(4)::after {
  animation-delay: 0.3s;
}
#preloader .loading span:nth-child(5)::after {
  animation-delay: 0.4s;
}
#preloader .loading span:nth-child(6)::after {
  animation-delay: 0.5s;
}
#preloader .loading span:nth-child(7)::after {
  animation-delay: 0.6s;
}

@keyframes loading {
  0%, 75%, 100% {
    transform: scale(1.5);
    opacity: 0;
  }
  25%, 50% {
    transform: scale(1);
    opacity: 1;
  }
}
.page-loading-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  height: auto;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* Title hover  */
.tc-title__hover {
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: all 0.7s;
  color: #161616;
  background-image: linear-gradient(to bottom, #161616 0%, #161616 98%);
  background-size: 0 2px;
  display: inline;
}
.tc-title__hover:hover {
  background-size: 100% 2px;
  color: #000;
}

.tc-title__hover-white a {
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: all 0.7s;
  color: #FFF;
  background-image: linear-gradient(to bottom, #FFF 0%, #FFF 98%);
}
.tc-title__hover-white a:hover {
  background-size: 100% 2px;
  color: #FFF;
}

.tc-title__hover-black a {
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: all 0.7s;
  color: #FFF;
  background-image: linear-gradient(to bottom, #4F4F4F 0%, #4F4F4F 98%);
}
.tc-title__hover-black a:hover {
  background-size: 100% 2px;
  color: #FFF;
}

.tc-card-bullet {
  display: flex;
  gap: 6px;
  position: absolute;
  top: 16px;
  left: 16px;
}
.tc-card-bullet__item {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #161616;
}
.tc-card-bullet__item--red {
  background: #ED6A5E;
}
.tc-card-bullet__item--yellow {
  background: #F4BF4E;
}
.tc-card-bullet__item--green {
  background: #61C655;
}

html {
  scroll-behavior: unset !important;
}

ul, ol {
  padding-left: 20px;
  margin-bottom: 30px;
}

.comment-list ul, .comment-list ol {
  padding-left: 25px;
  margin-bottom: 30px;
}
.comment-list ol ol, .comment-list ol ul, .comment-list ul ol, .comment-list ul ul {
  margin-bottom: 0;
}

ul ul {
  list-style-type: disc;
}

.tc__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tc__list li {
  color: #4f4f4f;
  line-height: 1.9;
  display: flex;
  align-items: baseline;
  position: relative;
  font-size: 16px;
}
.tc__list li.icon-shape .tc__list-icon {
  padding: 0.3em;
  background-color: #F1F6FE;
  border-radius: 50%;
  display: inline-block;
  line-height: 1;
  transition: all 0.3s;
  text-align: center;
  margin-right: 10px;
}
.tc__list li.icon-shape .tc__list-icon i, .tc__list li.icon-shape .tc__list-icon svg {
  width: 1em;
  height: 1em;
  position: relative;
  color: #094ec0;
  font-size: 16px;
}
.tc__list li p {
  margin: 0;
}
.tc__list li .tc__list-icon {
  margin-right: 10px;
  font-size: 14px;
  color: #a6afbc;
  text-align: center;
}
.tc__list li a {
  color: #3d3d3d;
  display: flex;
  align-items: baseline;
}
.tc__list li a:hover {
  color: #094ec0;
}
.tc__list.list-dice li {
  padding-left: 25px;
  display: block;
}
.tc__list.list-dice li:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0;
  top: 15px;
  background: #6730e3;
  transform: translateY(-50%);
  transition: all 0.5s;
}
.tc__list.inline-items li {
  display: inline-block;
}
.tc__list.inline-items li:not(:last-child) {
  margin-right: 20px;
}

table {
  width: 100%;
  margin-bottom: 30px;
  border: 1px solid #DFE1E5;
}
table thead {
  background: #f6f6f6;
}
table th {
  text-align: left;
  padding: 10px 15px;
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 600;
  min-width: 130px;
  vertical-align: middle;
}
table th:not(:last-child) {
  border-right: 1px solid #DFE1E5;
}
table th a {
  color: #3d3d3d;
}
table th a:hover {
  color: #094ec0;
}
table td {
  padding: 10px 15px;
  border-top: none;
  border-right: none;
  vertical-align: middle;
}

.wp-block-calendar table th {
  min-width: 40px;
  text-align: center;
}

tbody {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  direction: ltr;
}
tbody > tr {
  border-top: 1px solid #DFE1E5;
}

tfoot tr #prev a:hover, tfoot tr #next a:hover {
  color: #094ec0;
}

tbody > tr > th {
  background-color: #f5f5f5;
}

table thead ~ tbody > tr > th {
  background-color: transparent;
}

caption {
  caption-side: top;
  text-align: center;
}

.calendar_wrap caption {
  text-align: center;
  background: #f0f2f9;
  color: #051441;
  font-weight: 500;
  border-radius: 5px 5px 0 0;
}
.calendar_wrap table tr, .calendar_wrap table td {
  border: 0;
}
.calendar_wrap table thead tr {
  border: 0;
}
.calendar_wrap table thead tr th {
  border: 0;
}

nav.wp-calendar-nav {
  background: #f0f2f9;
  padding: 5px 20px;
  border-radius: 6px;
}

.wp-calendar-nav-next {
  float: right;
}

@media (max-width: 576px) {
  table th {
    min-width: 80px;
  }
}
.tc-hover-cursor-effect {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  background: #000;
  color: #3d3d3d;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  z-index: 999;
}

.tc-image-hover {
  transition: opacity 0.3s, transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  width: 300px;
  height: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  left: 0;
  top: -50%;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

[data-tc-wrapper-link] {
  cursor: pointer;
}

.tc-cursor {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  border: 1px solid #3d3d3d;
  z-index: 999;
  transition: 0.15s;
}

.tc-cursor-follower {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  width: 8px;
  height: 8px;
  background-color: #3d3d3d;
  border-radius: 50%;
  transition: 0.2s;
  z-index: 999;
}

/*--------------------------------------------------------------
## Button
--------------------------------------------------------------*/
.tc-btn {
  position: relative;
  padding: 10px 24px;
  font-weight: 500;
  background-color: #094ec0;
  border: 1px solid #094ec0;
  z-index: 1;
  color: #fff;
  font-size: 16px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
  gap: 8px;
}
.tc-btn > i {
  font-weight: 700;
  transition: all 0.4s ease-in-out;
}
.tc-btn.btn-gradient,
.tc-btn #edd_profile_editor_submit {
  border: 1px solid #094ec0;
  background-color: transparent;
  background-image: linear-gradient(190deg, #094ec0 0%, #3b80f2 100%);
  box-shadow: 0 3px 7px -2px #b3b3b3;
}
.tc-btn.btn-gradient:hover,
.tc-btn #edd_profile_editor_submit:hover {
  background-position: 200% center;
  color: #fff;
}
.tc-btn.btn-circle {
  border-radius: 40px;
}
.tc-btn.btn-sqr {
  border-radius: 0;
}
.tc-btn.btn-round {
  border-radius: 6px;
}
.tc-btn:hover(".btn-gradient") {
  background: #4C4CB3;
  color: #fff;
  border-color: #4C4CB3;
}
.tc-btn:hover(".btn-gradient"):before {
  height: 0;
}
.tc-btn.btn-small {
  padding: 5px 30px;
}
.tc-btn.btn-lg {
  padding: 14px 35px;
}
.tc-btn.btn-outline {
  background: transparent;
  color: #3d3d3d;
  border-color: #DFE1E5;
}
.tc-btn.btn-outline:hover {
  color: #fff;
  border-color: #094ec0;
  background-color: #094ec0;
}
.tc-btn.btn-outline.btn-light {
  border-color: #F9DF57;
  color: #3d3d3d;
}
.tc-btn.btn-outline.btn-light:hover {
  color: #fff;
  background-color: #F9DF57;
}
.tc-btn.btn-outline.btn-dark {
  border: 1px solid #eaeef3;
  color: #3d3d3d;
}
.tc-btn.btn-outline.btn-dark:hover {
  color: #fff;
  background-color: #3d3d3d;
}
.tc-btn.btn-light:not(.btn-outline) {
  background-color: #ffffff;
  color: #3d3d3d;
  border: 1px solid #d5d7da;
  box-shadow: 0 0 0 1px rgba(10, 13, 18, 0.18), 0 2px 0 0 rgba(10, 13, 18, 0.05), 0 1px 2px 0 rgba(10, 13, 18, 0.05);
}
.tc-btn.btn-light:not(.btn-outline) svg path {
  transition: all 0.3s ease-in-out;
}
.tc-btn.btn-light:not(.btn-outline):hover {
  color: #ffffff;
  background-color: #3d3d3d;
  border-color: #3d3d3d;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.48) inset, 0px 0px 0px 1px rgba(10, 13, 18, 0.18), 0 2px 0 0 rgba(10, 13, 18, 0.05), 0 1px 2px 0 rgba(10, 13, 18, 0.05);
}
.tc-btn.btn-light:not(.btn-outline):hover i {
  color: #ffffff;
}
.tc-btn.btn-light:not(.btn-outline):hover svg path {
  stroke: #ffffff;
}
.tc-btn.btn-dark:not(.btn-outline) {
  background-color: #3d3d3d;
  color: #fff;
  border-color: #3d3d3d;
}
.tc-btn.btn-dark:not(.btn-outline):hover {
  color: #3d3d3d;
  background: transparent;
}
.tc-btn .elementor-align-icon-left {
  margin-right: 5px;
  order: -1;
}
.tc-btn .elementor-align-icon-right {
  margin-left: 5px;
}
.tc-btn .tc-btn-icon {
  font-size: 14px;
}
.tc-btn .tc-btn__icon {
  line-height: 1;
}
.tc-btn .tc-btn-icon i {
  transition: all 0.3s ease-in-out;
}

#edd_profile_editor_submit {
  border: 1px solid #094ec0;
  background-color: transparent;
  background-image: linear-gradient(190deg, #094ec0 0%, #3b80f2 100%);
  box-shadow: 0 3px 7px -2px #b3b3b3;
  font-size: 16px;
  font-weight: 500;
  padding: 11px 24px;
}
#edd_profile_editor_submit:hover {
  background-position: 200% center;
  color: #fff;
}

.tc-btn-content-wrapper {
  display: flex;
  align-items: center;
}
.tc-btn-content-wrapper .elementor-align-icon-right,
.tc-btn-content-wrapper .tc-btn__align-icon-right {
  order: 2;
}

.btn-link {
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  color: #094ec0;
}
.btn-link i {
  font-weight: 600;
  font-size: 18px;
}
.btn-link .tc-fancy-btn-content-wrapper {
  gap: 8px;
}
.btn-link .tc-btn-text {
  transition: all 0.3s ease-in-out;
}
.btn-link .tc-btn-icon {
  display: inline-flex;
  padding: 0.5em;
  background: #094ec0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.btn-link .tc-btn-icon i {
  font-weight: 600;
}
.btn-link .tc-btn-icon svg,
.btn-link .tc-btn-icon i {
  display: block;
  height: 1em;
  position: relative;
  width: 1em;
  line-height: 1;
  transition: all 0.3s ease-in-out;
}

/* Fancy Button */
.tc-fancy-btn-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.tc-fancy-btn-content-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 440px) {
  .tc-fancy-btn-content-wrapper {
    width: 100%;
  }
}
.tc-fancy-btn-content-wrapper .elementor-align-icon-right {
  order: 2;
}
.tc-fancy-btn-content-wrapper .elementor-align-icon-right {
  order: 2;
}

.tc-fancy-btn,
a.edd-submit.button.blue {
  position: relative;
  z-index: 1;
  border-radius: 40px;
  background: #ececec;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.05) inset !important;
  padding: 10px 24px 10px 8px;
  display: inline-flex;
  border-width: 0;
}
@media (max-width: 440px) {
  .tc-fancy-btn,
  a.edd-submit.button.blue {
    display: flex;
    width: 100%;
    font-size: 14px;
  }
}
.tc-fancy-btn:before,
a.edd-submit.button.blue:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  bottom: 8px;
  border-radius: 40px;
  border: 2px solid #ffffff;
  background: linear-gradient(180deg, #fff 0%, #f3f3f3 100%);
  box-shadow: 0 3px 7px -2px #b3b3b3;
  z-index: -1;
  transition: width 0.3s ease-in-out;
  width: var(--btn-width, auto); /* This now works! */
}
.tc-fancy-btn .tc-fancy-btn-text,
a.edd-submit.button.blue .tc-fancy-btn-text {
  color: #3d3d3d;
  text-shadow: 0 1px 1px rgba(9, 78, 192, 0.18), 0 1px 0 rgba(225, 225, 225, 0.7);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 20px;
  line-height: 1;
  position: relative;
  z-index: 2;
}
@media (max-width: 440px) {
  .tc-fancy-btn .tc-fancy-btn-text,
  a.edd-submit.button.blue .tc-fancy-btn-text {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.tc-fancy-btn .tc-fancy-btn-icon,
a.edd-submit.button.blue .tc-fancy-btn-icon {
  font-size: 18px;
  text-shadow: 0 1px 1px rgba(9, 78, 192, 0.18), 0 1px 0 rgba(225, 225, 225, 0.7);
  font-weight: 600;
  color: #3d3d3d;
  transition: all 0.3s ease-in-out;
}
.tc-fancy-btn .tc-fancy-btn-icon i,
a.edd-submit.button.blue .tc-fancy-btn-icon i {
  font-weight: 600;
}
.tc-fancy-btn.btn-dark,
a.edd-submit.button.blue.btn-dark {
  background: #4f4f4f;
}
.tc-fancy-btn.btn-dark .tc-fancy-btn-text,
a.edd-submit.button.blue.btn-dark .tc-fancy-btn-text {
  border-radius: 100px;
  color: #4f4f4f;
}
.tc-fancy-btn.btn-dark .tc-fancy-btn-text:before,
a.edd-submit.button.blue.btn-dark .tc-fancy-btn-text:before {
  border: 2px solid #fff;
  background: linear-gradient(180deg, #fff 0%, #f3f3f3 100%);
  box-shadow: 0px 3px 7px -2px #b3b3b3;
  text-shadow: 0 1px 1px rgba(9, 78, 192, 0.2), 0 1px 0 rgba(9, 78, 192, 0.12);
}
.tc-fancy-btn.btn-dark .tc-fancy-btn-icon,
a.edd-submit.button.blue.btn-dark .tc-fancy-btn-icon {
  color: #fff;
  text-shadow: 0 1px 1px rgba(9, 78, 192, 0.2), 0 1px 0 rgba(9, 78, 192, 0.12);
}
.tc-fancy-btn.btn-dark:hover .tc-fancy-btn-icon,
a.edd-submit.button.blue.btn-dark:hover .tc-fancy-btn-icon {
  color: #4f4f4f;
  text-shadow: 0 1px 1px rgba(9, 78, 192, 0.2), 0 1px 0 rgba(9, 78, 192, 0.12);
}

.single-download .edd_all_access_download_form {
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .single-download .edd_all_access_download_form {
    width: 100%;
  }
}

.edd-submit.button.blue {
  margin-bottom: 0 !important;
  background: #4f4f4f;
  position: relative;
  display: inline-flex;
  gap: 20px;
  align-items: center;
}
.edd-submit.button.blue:after {
  content: "\e912";
  font-family: "feather" !important;
  speak: none;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  font-weight: 600;
  font-size: 18px;
  color: #3d3d3d;
}
.edd-submit.button.blue span {
  color: #3d3d3d;
  text-shadow: 0 1px 1px rgba(9, 78, 192, 0.18), 0 1px 0 rgba(225, 225, 225, 0.7);
  font-size: 16px;
  font-weight: 600;
  padding: 14px 20px;
  line-height: 1;
  position: relative;
  z-index: 2;
  display: inline-block;
}
@media (max-width: 440px) {
  .edd-submit.button.blue span {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.edd-submit.button.blue:hover, .edd-submit.button.blue:focus {
  background: #4f4f4f;
}
.edd-submit.button.blue:hover:after, .edd-submit.button.blue:focus:after {
  color: #3d3d3d;
}

.tc-btn__icon {
  line-height: 1;
}

.play-button {
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.play-button .tc-btn__text {
  position: relative;
  z-index: 1;
}
.play-button .tc-btn__text:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #111921;
  transition: all 0.3s ease-in-out;
}
.play-button .tc-btn__icon {
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  background: #111921;
  display: inline-block;
  color: #fff;
  font-size: 12px;
  margin-right: 7px;
}
.play-button .tc-btn__icon i {
  margin-left: 3px;
}

/**
* Popup Button
 */
.tc-video-popup {
  border: 1px solid #716a6a;
  padding: 40px 20px 20px;
  border-radius: 12px;
  position: relative;
}
.tc-video-popup__image {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 33px 20px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .tc-video-popup__image {
    padding: 17px 10px 0;
  }
}
.tc-video-popup__image img {
  width: 100%;
  object-fit: cover;
  border-radius: inherit !important;
}
@media (max-width: 767px) {
  .tc-video-popup__image img {
    border-radius: 4px 4px 0 0 !important;
  }
}
.tc-video-popup__playbtn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.tc-video-popup__btn {
  display: inline-block;
  height: 120px;
  width: 120px;
  line-height: 120px;
  text-align: center;
  background-color: #fff;
  color: #3d3d3d;
  border-radius: 50%;
  position: relative;
}
.tc-video-popup__btn:hover {
  color: inherit;
}
.tc-video-popup__btn i {
  font-size: 30px;
}
.tc-video-popup__btn svg {
  width: 30px;
}
.tc-video-popup__btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 120px;
  width: 120px;
  opacity: 0;
  border-radius: 50%;
  border: 20px solid #ffffff;
  animation: btnWave 2000ms linear infinite;
}
.tc-video-popup__btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  border-radius: 50%;
  border: 30px solid #ffffff;
  animation: btnWave 1500ms linear infinite;
}

@keyframes btnWave {
  0% {
    opacity: 1;
    transform: scale(0.8);
  }
  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}
@media screen and (max-width: 768px) {
  .tc-video-popup {
    padding: 24px 10px 10px;
    border-radius: 6.36px;
  }
  .tc-video-popup .tc-video-popup__image {
    border-radius: 4.24px;
  }
  .tc-video-popup__btn {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  .tc-video-popup__btn:before {
    width: 100%;
    height: 100%;
    border-width: 2px;
  }
  .tc-video-popup__btn:after {
    border-width: 5px;
  }
  .tc-video-popup__btn i {
    font-size: 20px;
  }
  .tc-video-popup__btn svg {
    width: 20px;
  }
  .tc-video-popup .tc-card-bullet {
    top: 8px;
    left: 8px;
  }
}
/**
* Back to Top Button
*/
.tc-scroll-top-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #094ec0;
  mix-blend-mode: difference;
}

.tc-scroll-top.progress-done {
  opacity: 1;
}

.tc-scroll-top > svg.progress-circle path {
  stroke: #094ec0;
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 0.2s linear;
  mix-blend-mode: difference;
}

.tc-scroll-top-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #094ec0;
  mix-blend-mode: difference;
}

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

.tc-scroll-top.progress-done {
  visibility: visible;
  transform: translateY(0);
}

.tc-scroll-top {
  position: fixed;
  right: 24px;
  bottom: 25px;
  width: 45px;
  height: 45px;
  cursor: pointer;
  display: block;
  border-radius: 100%;
  box-shadow: inset 0 0 0 0.1rem rgba(128, 130, 134, 0.25);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  transition: all 0.2s linear, margin-right 0s;
}

.page-scroll {
  position: absolute;
  right: 24px;
  bottom: 310px;
  z-index: 9999;
}
@media (max-width: 991px) {
  .page-scroll {
    bottom: 285px;
  }
}
@media (max-width: 820px) {
  .page-scroll {
    bottom: 300px;
  }
}
@media (max-width: 767px) {
  .page-scroll {
    bottom: 260px;
  }
}
@media (max-width: 576px) {
  .page-scroll {
    bottom: 252px;
  }
}
.page-scroll a {
  height: 56px;
  width: 56px;
  border: 1px solid #d1d1d1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}
.page-scroll a svg path {
  transition: all 0.3s ease-in-out;
}
.page-scroll a:hover {
  background-color: #094ec0;
  color: #fff;
  border-color: #094ec0;
}
.page-scroll a:hover svg path {
  stroke: #fff;
}

/*--------------------------------------------------------------
## Animation
--------------------------------------------------------------*/
@keyframes shape_one {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translate(2000px, 2000px) rotate(72deg);
    transform: translate(2000px, 2000px) rotate(72deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes shape_two {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(53px, -80px) rotate(36deg);
    transform: translate(53px, -80px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(161px, 72px) rotate(72deg);
    transform: translate(161px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 112px) rotate(108deg);
    transform: translate(83px, 112px) rotate(108deg);
  }
  70% {
    -webkit-transform: translate(-60px, 92px) rotate(144deg);
    transform: translate(-60px, 92px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes shape_three {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  30% {
    -webkit-transform: translate(90px, -36px) rotate(36deg);
    transform: translate(90px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(101px, 32px) rotate(72deg);
    transform: translate(101px, 32px) rotate(72deg);
  }
  50% {
    -webkit-transform: translate(103px, 102px) rotate(108deg);
    transform: translate(103px, 102px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-76px, 62px) rotate(144deg);
    transform: translate(-76px, 62px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@-webkit-keyframes shape_four {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(80px, -36px) rotate(36deg);
    transform: translate(80px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(191px, 72px) rotate(72deg);
    transform: translate(191px, 72px) rotate(72deg);
  }
  50% {
    -webkit-transform: translate(93px, 122px) rotate(108deg);
    transform: translate(93px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-56px, 92px) rotate(144deg);
    transform: translate(-56px, 92px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes shape_four {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  10% {
    -webkit-transform: translate(80px, -36px) rotate(36deg);
    transform: translate(80px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(191px, 72px) rotate(72deg);
    transform: translate(191px, 72px) rotate(72deg);
  }
  50% {
    -webkit-transform: translate(93px, 122px) rotate(108deg);
    transform: translate(93px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-56px, 92px) rotate(144deg);
    transform: translate(-56px, 92px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@-webkit-keyframes shape_five {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  30% {
    -webkit-transform: translate(80px, -36px) rotate(36deg);
    transform: translate(80px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, -92px) rotate(72deg);
    transform: translate(141px, -92px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(153px, 92px) rotate(108deg);
    transform: translate(153px, 92px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-99px, 62px) rotate(144deg);
    transform: translate(-99px, 62px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes shape_five {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  30% {
    -webkit-transform: translate(80px, -36px) rotate(36deg);
    transform: translate(80px, -36px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, -92px) rotate(72deg);
    transform: translate(141px, -92px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(153px, 92px) rotate(108deg);
    transform: translate(153px, 92px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-99px, 62px) rotate(144deg);
    transform: translate(-99px, 62px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@-webkit-keyframes shape_six {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(95px, -58px) rotate(36deg);
    transform: translate(95px, -58px) rotate(36deg);
  }
  30% {
    -webkit-transform: translate(81px, 82px) rotate(72deg);
    transform: translate(81px, 82px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(53px, 152px) rotate(108deg);
    transform: translate(53px, 152px) rotate(108deg);
  }
  70% {
    -webkit-transform: translate(-56px, 32px) rotate(144deg);
    transform: translate(-56px, 32px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes shape_six {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(95px, -58px) rotate(36deg);
    transform: translate(95px, -58px) rotate(36deg);
  }
  30% {
    -webkit-transform: translate(81px, 82px) rotate(72deg);
    transform: translate(81px, 82px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(53px, 152px) rotate(108deg);
    transform: translate(53px, 152px) rotate(108deg);
  }
  70% {
    -webkit-transform: translate(-56px, 32px) rotate(144deg);
    transform: translate(-56px, 32px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg);
  }
}
.ttUpX {
  animation-name: ttUpX;
}

@keyframes ttUpX {
  0% {
    opacity: 0;
    transform: translate(-80px, 30px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes zoommd {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1.5);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(40px);
  }
}
@keyframes movexy {
  0% {
    -webkit-transform: translateX(-10px) scale(0.9);
    transform: translateX(-10px) scale(0.9);
  }
  100% {
    -webkit-transform: translateX(30px) scale(1.1) translateY(10px);
    transform: translateX(30px) scale(1.1) translateY(10px);
  }
}
@keyframes zoom {
  from {
    -webkit-transform: scale(1) translate(0px);
  }
  to {
    -webkit-transform: scale(1.1) translate(0px);
  }
}
@keyframes zoom {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.zoom {
  animation-name: zoom;
}

@keyframes zoom2 {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}
.zoom2 {
  animation-name: zoom2;
}

@keyframes zoommd {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1.5);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(40px);
  }
}
.zoomBounce {
  animation-name: zoomBounce;
}

@keyframes zoomBounce {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes movexy {
  0% {
    transform: translateX(-10px) scale(0.9);
  }
  100% {
    transform: translateX(30px) scale(1.3) translateY(10px);
  }
}
@keyframes wave {
  0% {
    transform: rotateZ(0deg) translate3d(0, 20%, 0) rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg) translate3d(0, 20%, 0) rotateZ(-360deg);
  }
}
@keyframes gptFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes gptFadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes gptFadeDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes gptFadeLeft {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes gptFadeRight {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes gptZoomIn {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes gptBounceIn {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  60% {
    transform: scale(1.1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}
.gptFade {
  animation-name: gptFade;
}

.gptFadeUp {
  animation-name: gptFadeUp;
}

.gptFadeDown {
  animation-name: gptFadeDown;
}

.gptFadeLeft {
  animation-name: gptFadeLeft;
}

.gptFadeRight {
  animation-name: gptFadeRight;
}

.gptZoomIn {
  animation-name: gptZoomIn;
}

.gptBounceIn {
  animation-name: gptBounceIn;
}

@keyframes jumping {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateY(-20px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0;
  }
}
@keyframes jump {
  0% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(5px);
  }
}
@keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes moveclouds {
  0% {
    transform: translate3d(-10px, -10px, 0);
    opacity: 1;
  }
  50% {
    transform: translate3d(-20px, 20px, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(30px, 0px, 0);
    opacity: 1;
  }
}
@keyframes circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes pulse {
  0% {
    width: 80px;
    height: 80px;
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    height: 120px;
    width: 120px;
    opacity: 0;
  }
}
@keyframes pulsesm {
  0% {
    width: 60px;
    height: 60px;
    opacity: 1;
  }
  50% {
    opacity: 1;
  }
  100% {
    height: 80px;
    width: 80px;
    opacity: 0;
  }
}
.gpUpX {
  animation-name: gpUpX;
}

.gpUpSmX {
  animation: gpUpX 1s both 1s;
  animation-delay: 0.3s;
}

.gpDownX {
  animation-name: gpDownX;
}

@keyframes gpUpX {
  0% {
    opacity: 0;
    transform: translate(80px, -30px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes gpDownX {
  0% {
    opacity: 0;
    transform: translate(-80px, 80px);
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@keyframes animationFramesTwo {
  0% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    transform: translate(-73px, 1px) rotate(-36deg);
  }
  40% {
    transform: translate(-141px, -72px) rotate(-72deg);
  }
  60% {
    transform: translate(-83px, -122px) rotate(-108deg);
  }
  80% {
    transform: translate(40px, -72px) rotate(-144deg);
  }
  100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
}
@keyframes leafMotion {
  50% {
    transform: rotate(4deg);
  }
}
@keyframes jump {
  0% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(2px);
  }
}
@keyframes slideInnew3 {
  0% {
    opacity: 0;
    transform: translate(80px, -80px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes animeone {
  0% {
    transform: translate(0) rotate(0deg);
  }
  20% {
    transform: translate(80px, 1px) rotate(50deg);
  }
  40% {
    transform: translate(145px, 72px) rotate(90deg);
  }
  60% {
    transform: translate(83px, 122px) rotate(125deg);
  }
  80% {
    transform: translate(-40px, 72px) rotate(140deg);
  }
  to {
    transform: translate(0) rotate(0deg);
  }
}
@keyframes animetwo {
  0% {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(-73px, 1px) rotate(-36deg);
    transform: translate(-73px, 1px) rotate(-36deg);
  }
  40% {
    -webkit-transform: translate(-141px, -72px) rotate(-72deg);
    transform: translate(-141px, -72px) rotate(-72deg);
  }
  60% {
    -webkit-transform: translate(-83px, -122px) rotate(-108deg);
    transform: translate(-83px, -122px) rotate(-108deg);
  }
  80% {
    -webkit-transform: translate(40px, -72px) rotate(-144deg);
    transform: translate(40px, -72px) rotate(-144deg);
  }
  to {
    -webkit-transform: translate(0) rotate(0deg);
    transform: translate(0) rotate(0deg);
  }
}
@keyframes animethree {
  0% {
    transform: translate(0) rotate(0deg);
  }
  20% {
    transform: translateY(-73px) rotate(-36deg);
  }
  40% {
    transform: translateY(-141px) rotate(-72deg);
  }
  60% {
    transform: translateY(-83px) rotate(-108deg);
  }
  80% {
    transform: translateY(40px) rotate(-144deg);
  }
  to {
    transform: translate(0) rotate(0deg);
  }
}
/*--------------------------------------------------------------
## Section Heading
--------------------------------------------------------------*/
.section-heading {
  position: relative;
  z-index: 2;
}
.section-heading .subtitle {
  color: #4C4CB3;
  font-size: 16px;
  display: block;
  font-weight: 700;
  text-transform: uppercase;
}
.section-heading .section-title {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 17px;
}
.section-heading .section-title span {
  color: #094ec0;
  text-decoration: underline;
}
.section-heading .section-title.has-secondary-title {
  font-weight: 400;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .section-heading .section-title {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .section-heading .section-title br {
    display: none;
  }
}
.section-heading .description {
  font-weight: 400;
  margin: 0;
  font-size: 16px;
}
@media (max-width: 991px) {
  .section-heading .description br {
    display: none;
  }
}
.section-heading .description p:first-child {
  margin-bottom: 0;
}
.section-heading .description p:nth-child(2) {
  margin-top: 20px;
}
.section-heading .description p:not(:last-child) {
  margin-bottom: 20px;
}
.section-heading.text-left .description {
  margin: 0;
}
.section-heading.text-right .description {
  margin: 0 0 0 auto;
}
.section-heading .section-title-secondary {
  font-size: 46px;
  font-weight: 700;
}

.tc-fancy-heading, .section-title {
  margin-bottom: 0;
  width: 100%;
}
.tc-fancy-heading .highlight, .section-title .highlight {
  color: #b0b0b0;
  font-weight: 400;
}

.before-icon {
  line-height: 1;
}

.fancy-title-container {
  display: flex;
  align-items: center;
  gap: 5px;
}
.fancy-title-container .before-icon {
  display: inline-block;
}
.fancy-title-container.has-title-icon {
  width: max-content;
}
@media (max-width: 576px) {
  .fancy-title-container.has-title-icon .before-icon {
    display: none;
  }
}

h1.tc-fancy-heading, h1.section-title {
  font-size: clamp(36px, 3.125vw, 60px);
}

h2.tc-fancy-heading, h2.section-title {
  font-size: clamp(1.875rem, 2.083vw, 2.5rem);
}

h3.tc-fancy-heading, h3.section-title {
  font-size: clamp(1.125rem, 1.25vw, 1.5rem);
}

h4.tc-fancy-heading, h4.section-title {
  font-size: clamp(1.125rem, 1.042vw, 1.25rem);
}

h5.tc-fancy-heading, h5.section-title {
  font-size: clamp(1rem, 0.938vw, 1.125rem);
}

h6.tc-fancy-heading, h6.section-title {
  font-size: clamp(0.8rem, 0.833vw, 1rem);
}

p.tc-fancy-heading {
  font-size: clamp(1rem, 0.833vw, 1rem);
}

.tc-fancy-text {
  font-size: 16px;
}

.anim-reveal-line {
  overflow: hidden;
}

.tc-t-animation-text_invert .elementor-widget-container {
  --text-color: 0, 0%, 0%;
}
.tc-t-animation-text_invert .elementor-widget-container .invert-line {
  background-image: linear-gradient(to right, hsla(var(--text-color), 1) 50%, hsla(var(--text-color), 0.3) 50%);
  background-size: 200% 100%;
  background-position-x: 100%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.tc-add-background-text:after {
  line-height: 1;
  display: inline-block;
}

/*--------------------------------------------------------------
## Banner
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .bubble-shape {
    max-width: 467px;
  }
}

@media (max-width: 767px) {
  .bubble-shape {
    max-width: 330px;
  }
}

.main-shape {
  max-width: 452px;
  position: absolute;
  bottom: 57px;
  left: 66px;
  z-index: 1;
}
@media (max-width: 991px) {
  .main-shape {
    max-width: 330px;
    bottom: 43px;
    left: 40px;
  }
}
@media (max-width: 767px) {
  .main-shape {
    max-width: 230px;
    bottom: 36px;
    left: 44px;
  }
}

.top-shape-wrapper {
  display: flex;
  justify-content: space-between;
  height: 98px;
  max-width: 328px;
  margin-left: 17px;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  .top-shape-wrapper {
    max-width: 240px;
    height: 80px;
  }
}
@media (max-width: 767px) {
  .top-shape-wrapper {
    max-width: 160px;
    height: 70px;
  }
}

.alfa-icon {
  margin-top: auto;
}
.alfa-icon img {
  animation: shake 10s linear infinite;
}
@media (max-width: 991px) {
  .alfa-icon img {
    max-width: 45px !important;
  }
}
@media (max-width: 767px) {
  .alfa-icon img {
    max-width: 35px !important;
  }
}

.wp-icon img {
  animation: pulse 5s linear infinite;
}
@media (max-width: 991px) {
  .wp-icon img {
    max-width: 50px !important;
  }
}
@media (max-width: 767px) {
  .wp-icon img {
    max-width: 40px !important;
  }
}

.cog-gray-icon, .cog-blue-icon {
  position: absolute;
}
.cog-gray-icon img, .cog-blue-icon img {
  animation: spin 10s linear infinite;
}
@media (max-width: 767px) {
  .cog-gray-icon img, .cog-blue-icon img {
    max-width: 22px !important;
  }
}

.cog-gray-icon {
  bottom: 69px;
  left: 50px;
}
@media (max-width: 991px) {
  .cog-gray-icon {
    bottom: 43px;
    left: 33px;
  }
}
@media (max-width: 767px) {
  .cog-gray-icon {
    bottom: 27px;
    left: 22px;
  }
}

.cog-blue-icon {
  right: 19px;
  top: 56%;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .cog-blue-icon {
    right: 10px;
    top: 58%;
  }
}

.ellipse-one, .ellipse-two, .ellipse-three {
  position: absolute;
}
.ellipse-one span, .ellipse-two span, .ellipse-three span {
  height: 100%;
  width: 100%;
  background: rgba(49, 118, 232, 0.04);
  border-radius: 50%;
  animation: pulse 10s linear infinite;
  display: block;
}

.ellipse-one {
  height: 66px;
  width: 66px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 991px) {
  .ellipse-one {
    height: 50px;
    width: 50px;
    left: -21px;
  }
}
@media (max-width: 767px) {
  .ellipse-one {
    height: 38px;
    width: 38px;
    left: 0;
  }
}

.ellipse-two {
  height: 53px;
  width: 53px;
  left: 38px;
  bottom: 60px;
}
@media (max-width: 991px) {
  .ellipse-two {
    height: 29px;
    width: 29px;
    left: 10px;
  }
}
@media (max-width: 767px) {
  .ellipse-two {
    left: 15px;
    bottom: 36px;
  }
}

.ellipse-three {
  height: 45px;
  width: 45px;
  right: 10%;
  top: 30%;
}
@media (max-width: 991px) {
  .ellipse-three {
    height: 25px;
    width: 25px;
  }
}

.pen-icon {
  position: absolute;
  top: 28%;
  left: -3px;
}

@media (max-width: 991px) {
  .pen-icon {
    top: 33%;
    max-width: 45px;
  }
}
@media (max-width: 767px) {
  .pen-icon {
    top: 35%;
    max-width: 35px;
  }
}
.pen-icon img {
  animation: shakeUpDown 5s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse .list-item {
  animation: pulse 3s linear infinite;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }
  75% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes shakeUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.fadeIn img {
  animation: fadeIn 3s linear infinite both;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeInScale img {
  animation: 5s linear 0s infinite normal none running fadeInScale;
}

.fadeInScale2 img {
  animation: 3s linear 0s infinite normal none running fadeInScale;
}

.fadeInScale3 img {
  animation: 4s linear 0s infinite normal none running fadeInScale;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
  60% {
    opacity: 1;
    transform: scale(0.95);
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}
.banner-animated-images {
  max-width: 1710px;
  margin: 0 auto;
}

.banner-animated-images {
  display: flex;
  gap: 0;
  align-items: flex-end;
  margin-bottom: -50px;
}
.banner-animated-images .banner--image {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 3.296px 16.482px rgba(0, 0, 0, 0.12);
  border: 4px solid #fff;
  border-radius: 6.593px 6.593px 0 0 !important;
}
.banner-animated-images .banner--image:hover {
  transform: translateY(-5px);
}
.banner-animated-images .banner--image img {
  background: #FFF;
}
.banner-animated-images .banner--image:not(:first-child) {
  margin-left: -150px;
}
.banner-animated-images .banner--image:nth-child(2), .banner-animated-images .banner--image:nth-child(4) {
  z-index: 2;
}
.banner-animated-images .banner--image:nth-child(3) {
  z-index: 5;
}
@media (max-width: 991px) {
  .banner-animated-images .banner--image:not(:first-child) {
    margin-left: -100px;
  }
  .banner-animated-images .banner--image:first-child, .banner-animated-images .banner--image:last-child {
    display: none;
  }
}
@media (max-width: 767px) {
  .banner-animated-images .banner--image:nth-child(2), .banner-animated-images .banner--image:nth-child(4) {
    position: absolute;
    bottom: 0;
    max-width: 180px;
  }
  .banner-animated-images .banner--image:nth-child(3) {
    left: 0;
    max-width: 180px;
    margin: 0;
  }
  .banner-animated-images .banner--image:nth-child(2) {
    left: 0;
  }
  .banner-animated-images .banner--image:nth-child(4) {
    right: 0;
  }
}
.banner-animated-images img {
  min-width: clamp(180px, 24.38vw, 468px);
}

/*--------------------------------------------------------------
## Text Video
--------------------------------------------------------------*/
.tc-heading-list {
  font-size: 60px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .tc-heading-list {
    font-size: 40px;
  }
}
@media (max-width: 576px) {
  .tc-heading-list {
    font-size: 30px;
  }
}
.tc-heading-list .highlight {
  font-weight: 400;
}
.tc-heading-list .heading-cover-image {
  max-width: 120px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
}
@media (max-width: 991px) {
  .tc-heading-list .heading-cover-image {
    max-width: 80px;
    height: 60px;
  }
}
@media (max-width: 576px) {
  .tc-heading-list .heading-cover-image {
    max-width: 60px;
    height: 40px;
  }
}

/*--------------------------------------------------------------
## Menu Item
--------------------------------------------------------------*/
.tc-menu-item__link {
  display: block;
  text-decoration: none;
  width: 100%;
}

.tc-menu-item {
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 20px;
  transition: all 0.3s ease-in-out;
  position: relative;
  width: 100%;
}
.tc-menu-item__icon {
  width: 24px;
  font-size: 24px;
}
.tc-menu-item__icon i {
  transition: all 0.3s ease-in-out;
  color: #d1d1d1;
}
.tc-menu-item__content-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  width: 100%;
}
.tc-menu-item__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  margin-bottom: 0;
  color: #6D6D6D;
}
.tc-menu-item__title a {
  color: #3d3d3d;
}
.tc-menu-item__description {
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
  color: #4F4F4F;
}
.tc-menu-item__link {
  color: #D1D1D1;
  transition: color 0.3s ease-in-out;
}
.tc-menu-item:hover {
  z-index: 2;
  box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04);
  cursor: pointer;
}
.tc-menu-item:hover .tc-menu-item__title {
  color: #3d3d3d;
}
.tc-menu-item:hover .tc-menu-item__icon i {
  color: #3d3d3d;
}
.tc-menu-item:hover .tc-menu-item__link {
  color: #3d3d3d;
}

.tc-menu-item__link:hover .tc-menu-item__icon i {
  color: #3d3d3d !important;
}

/*--------------------------------------------------------------
## Banner
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .bubble-shape {
    max-width: 467px;
  }
}

@media (max-width: 767px) {
  .bubble-shape {
    max-width: 330px;
  }
}

.main-shape {
  max-width: 452px;
  position: absolute;
  bottom: 57px;
  left: 66px;
  z-index: 1;
}
@media (max-width: 991px) {
  .main-shape {
    max-width: 330px;
    bottom: 43px;
    left: 40px;
  }
}
@media (max-width: 767px) {
  .main-shape {
    max-width: 230px;
    bottom: 36px;
    left: 44px;
  }
}

.top-shape-wrapper {
  display: flex;
  justify-content: space-between;
  height: 98px;
  max-width: 328px;
  margin-left: 17px;
  padding-bottom: 10px;
}
@media (max-width: 991px) {
  .top-shape-wrapper {
    max-width: 240px;
    height: 80px;
  }
}
@media (max-width: 767px) {
  .top-shape-wrapper {
    max-width: 160px;
    height: 70px;
  }
}

.alfa-icon {
  margin-top: auto;
}
.alfa-icon img {
  animation: shake 10s linear infinite;
}
@media (max-width: 991px) {
  .alfa-icon img {
    max-width: 45px !important;
  }
}
@media (max-width: 767px) {
  .alfa-icon img {
    max-width: 35px !important;
  }
}

.wp-icon img {
  animation: pulse 5s linear infinite;
}
@media (max-width: 991px) {
  .wp-icon img {
    max-width: 50px !important;
  }
}
@media (max-width: 767px) {
  .wp-icon img {
    max-width: 40px !important;
  }
}

.cog-gray-icon, .cog-blue-icon {
  position: absolute;
}
.cog-gray-icon img, .cog-blue-icon img {
  animation: spin 10s linear infinite;
}
@media (max-width: 767px) {
  .cog-gray-icon img, .cog-blue-icon img {
    max-width: 22px !important;
  }
}

.cog-gray-icon {
  bottom: 69px;
  left: 50px;
}
@media (max-width: 991px) {
  .cog-gray-icon {
    bottom: 43px;
    left: 33px;
  }
}
@media (max-width: 767px) {
  .cog-gray-icon {
    bottom: 27px;
    left: 22px;
  }
}

.cog-blue-icon {
  right: 19px;
  top: 56%;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 767px) {
  .cog-blue-icon {
    right: 10px;
    top: 58%;
  }
}

.ellipse-one, .ellipse-two, .ellipse-three {
  position: absolute;
}
.ellipse-one span, .ellipse-two span, .ellipse-three span {
  height: 100%;
  width: 100%;
  background: rgba(49, 118, 232, 0.04);
  border-radius: 50%;
  animation: pulse 10s linear infinite;
  display: block;
}

.ellipse-one {
  height: 66px;
  width: 66px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 991px) {
  .ellipse-one {
    height: 50px;
    width: 50px;
    left: -21px;
  }
}
@media (max-width: 767px) {
  .ellipse-one {
    height: 38px;
    width: 38px;
    left: 0;
  }
}

.ellipse-two {
  height: 53px;
  width: 53px;
  left: 38px;
  bottom: 60px;
}
@media (max-width: 991px) {
  .ellipse-two {
    height: 29px;
    width: 29px;
    left: 10px;
  }
}
@media (max-width: 767px) {
  .ellipse-two {
    left: 15px;
    bottom: 36px;
  }
}

.ellipse-three {
  height: 45px;
  width: 45px;
  right: 10%;
  top: 30%;
}
@media (max-width: 991px) {
  .ellipse-three {
    height: 25px;
    width: 25px;
  }
}

.pen-icon {
  position: absolute;
  top: 28%;
  left: -3px;
}

@media (max-width: 991px) {
  .pen-icon {
    top: 33%;
    max-width: 45px;
  }
}
@media (max-width: 767px) {
  .pen-icon {
    top: 35%;
    max-width: 35px;
  }
}
.pen-icon img {
  animation: shakeUpDown 5s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse .list-item {
  animation: pulse 3s linear infinite;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-10px);
  }
  50% {
    transform: translateX(10px);
  }
  75% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes shakeUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.fadeIn img {
  animation: fadeIn 3s linear infinite both;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeInScale img {
  animation: 5s linear 0s infinite normal none running fadeInScale;
}

.fadeInScale2 img {
  animation: 3s linear 0s infinite normal none running fadeInScale;
}

.fadeInScale3 img {
  animation: 4s linear 0s infinite normal none running fadeInScale;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  40% {
    opacity: 1;
    transform: scale(1);
  }
  60% {
    opacity: 1;
    transform: scale(0.95);
  }
  100% {
    opacity: 0;
    transform: scale(0.9);
  }
}
.banner-animated-images {
  max-width: 1710px;
  margin: 0 auto;
}

.banner-animated-images {
  display: flex;
  gap: 0;
  align-items: flex-end;
  margin-bottom: -50px;
}
.banner-animated-images .banner--image {
  position: relative;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 3.296px 16.482px rgba(0, 0, 0, 0.12);
  border: 4px solid #fff;
  border-radius: 6.593px 6.593px 0 0 !important;
}
.banner-animated-images .banner--image:hover {
  transform: translateY(-5px);
}
.banner-animated-images .banner--image img {
  background: #FFF;
}
.banner-animated-images .banner--image:not(:first-child) {
  margin-left: -150px;
}
.banner-animated-images .banner--image:nth-child(2), .banner-animated-images .banner--image:nth-child(4) {
  z-index: 2;
}
.banner-animated-images .banner--image:nth-child(3) {
  z-index: 5;
}
@media (max-width: 991px) {
  .banner-animated-images .banner--image:not(:first-child) {
    margin-left: -100px;
  }
  .banner-animated-images .banner--image:first-child, .banner-animated-images .banner--image:last-child {
    display: none;
  }
}
@media (max-width: 767px) {
  .banner-animated-images .banner--image:nth-child(2), .banner-animated-images .banner--image:nth-child(4) {
    position: absolute;
    bottom: 0;
    max-width: 180px;
  }
  .banner-animated-images .banner--image:nth-child(3) {
    left: 0;
    max-width: 180px;
    margin: 0;
  }
  .banner-animated-images .banner--image:nth-child(2) {
    left: 0;
  }
  .banner-animated-images .banner--image:nth-child(4) {
    right: 0;
  }
}
.banner-animated-images img {
  min-width: clamp(180px, 24.38vw, 468px);
}

/*--------------------------------------------------------------
## Docs
--------------------------------------------------------------*/
.tc-docs-item--items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.tc-docs-article {
  margin-bottom: 5px;
}

.tc-docs-item {
  border-radius: 16px;
  border: 1px solid #E7E7E7;
  background: #fff;
  padding: 30px 32px 24px 32px;
  transition: all 0.3s ease-in-out;
}
.tc-docs-item:hover {
  border: 1px solid #E7E7E7;
  background: #F3F3F5;
  box-shadow: 0 4px 40px 0 rgba(165, 165, 165, 0.08);
}
.tc-docs-item__icon {
  margin-bottom: 20px;
  font-size: 36px;
  color: #3d3d3d;
}
.tc-docs-item__icon img {
  max-height: 40px !important;
}
.tc-docs-item__title {
  font-size: 20px;
  font-weight: 600;
  color: #3d3d3d;
  margin-bottom: 6px;
}
.tc-docs-item__count {
  font-size: 14px;
  color: #6D6D6D;
}
.tc-docs-item__post-list {
  margin: 0 0 30px 0;
  padding: 0;
  list-style: none;
}
.tc-docs-item__post-list li {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

/* Docs Search Form */
.post-type-archive-docs main, .single-docs main, .tax-doc_category main {
  padding: 100px 0;
  background-image: url("../images/bg_img.png");
  background-size: 100%;
  background-position: top center;
  background-repeat: no-repeat;
}

.tc-docs-sidebar-search {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .tc-docs-sidebar-search {
    margin-bottom: 20px;
  }
}

.tc-docs-single-header {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .tc-docs-single-header {
    padding-top: 50px;
  }
}

.tc-docs-search-container {
  position: relative;
}

.tc-docs-search-results {
  display: none;
}

.tc-docs-sidebar-search-container {
  border-radius: 12px;
  border: 1px solid #EBEBEB;
  background: var(--White, #FFF);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.05) inset, 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0 4px 6px -2px rgba(10, 13, 18, 0.03), 0 2px 2px -1px rgba(10, 13, 18, 0.04);
}

.tc-docs-search-form-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  background: #FFF;
  padding: 6px 6px 6px 10px;
  max-width: 100%;
  margin: 0 auto;
}
.tc-docs-search-form-inner input {
  margin-bottom: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  width: 100%;
  height: 48px;
}
@media (max-width: 480px) {
  .tc-docs-search-form-inner input {
    height: 43px;
  }
}
.tc-docs-search-form-inner input:focus {
  box-shadow: none !important;
  border: 0 !important;
  outline: none !important;
}
.tc-docs-search-form-inner i {
  font-size: 24px;
}

.tc-docs-search-container {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 16px;
  background: #F3F3F5;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.05) inset;
  padding: 10px;
}

.tc-docs-search-results {
  max-width: 800px;
  margin: 10px auto 0;
  width: 100%;
}
.tc-docs-search-results .tc-docs-search-results-list li {
  padding: 14px;
  background: #FFF;
  border-radius: 8px;
  box-shadow: 0 4px 40px 0 rgba(21, 26, 49, 0.08);
}

.tc-docs-search-results-list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.tc-docs-search-results-list li {
  font-size: 16px;
  font-weight: 500;
}
.tc-docs-search-results-list li:not(:first-child) {
  margin-top: 10px;
}

/* Docs Category Archive */
.tc-docs-single-content-wrapper {
  padding: 120px 0;
}
@media (max-width: 1024px) {
  .tc-docs-single-content-wrapper {
    padding: 80px 0;
  }
}

.tc-docs-single-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tc-docs-single-header-inner .tc-page-header-title {
  font-size: 40px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .tc-docs-single-header-inner {
    flex-direction: column;
    gap: 20px;
    justify-content: center;
  }
  .tc-docs-single-header-inner .tc-page-header-title {
    font-size: 36px;
  }
}

.tc-docs-single-content-wrapper {
  padding: 68px 0 120px;
}
@media (max-width: 767px) {
  .tc-docs-single-content-wrapper {
    padding: 40px 0 80px;
  }
}

.tc-sidebar {
  border-radius: 16px;
  background: #F3F3F5;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.05) inset;
  padding: 8px 8px 30px 8px;
}
@media (max-width: 767px) {
  .tc-sidebar {
    margin-bottom: 40px;
  }
}
.tc-sidebar .tc-docs-title {
  font-size: 18px;
  color: #454545;
  font-weight: 500;
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 5px 20px;
  margin-bottom: 0;
  justify-content: space-between;
  cursor: pointer;
}
@media (max-width: 767px) {
  .tc-sidebar .tc-docs-title {
    padding: 5px 12px;
    font-size: 16px;
  }
}
.tc-sidebar .tc-docs-title .tc-docs-title-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.tc-sidebar .tc-docs-title .tc-docs-count {
  height: 32px;
  width: 32px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  border: 1px solid #EBEBEB;
}
@media (max-width: 767px) {
  .tc-sidebar .tc-docs-title .tc-docs-count {
    font-size: 12px;
    height: 22px;
    width: 22px;
  }
}
.tc-sidebar .tc-docs-title.active {
  color: #094ec0;
}
.tc-sidebar .tc-docs-icon {
  font-size: 18px;
  width: 20px;
  text-align: center;
}
.tc-sidebar .tc-docs-icon img {
  max-height: 18px;
}
.tc-sidebar .tc-docs-post-list {
  padding: 5px 0 5px 30px;
}

.tc-docs-post-list {
  margin: 0;
  list-style: none;
  padding: 0;
}
.tc-docs-post-list li {
  display: flex;
  gap: 8px;
  align-items: center;
}
.tc-docs-post-list li:not(:last-child) {
  margin-bottom: 13px;
}
.tc-docs-post-list li a {
  color: #454545;
  font-size: 16px;
}
.tc-docs-post-list li a:hover {
  color: #094ec0;
}
.tc-docs-post-list li i {
  font-size: 14px;
  color: #000;
}
.tc-docs-post-list li.active a {
  color: #000;
}

.tc-content-inner-area .tc-docs-post-list {
  margin-left: 15px;
}

@media (min-width: 1200px) {
  .tc-content-area {
    padding-left: 112px;
  }
}
.tc-content-area .breadcrumbs {
  margin-bottom: 33px;
}
.tc-content-area .tc-docs-entry-heading {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: unset;
  color: #094ec0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tc-content-area h3, .tc-content-area h4 {
  margin-bottom: 11px;
}

.tc-docs-single-content-wrapper h2 {
  font-size: 32px;
  margin-bottom: 27px;
}
@media (max-width: 767px) {
  .tc-docs-single-content-wrapper h2 {
    font-size: 28px;
  }
}

/* Docs Single */
/* Docs Archive */
.tc-docs-archive {
  padding: 120px 0;
}

.tc-docs-single-header-wrapper .tc-page-header-title {
  margin-bottom: 0;
}
.tc-docs-single-header-wrapper p {
  max-width: 580px;
  margin: 0 auto 30px;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: -0.18px;
}

.tc-support-box {
  border-radius: 16px;
  border: 1px solid #EBEBEB;
  background: #FFF;
  box-shadow: 0 4px 40px 0 rgba(165, 165, 165, 0.08);
  padding: 24px;
  margin-bottom: 53px;
  margin-top: 50px;
}
.tc-support-box .tc-support-box-title {
  font-size: 20px;
  font-weight: 700;
  color: #151A31;
}
.tc-support-box p.tc-support-box-text {
  margin-bottom: 20px;
}
.tc-support-box a {
  color: #094ec0;
  border-bottom: 1px solid #094ec0;
  font-weight: 500;
}

.tc-support-box-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tc-docs-navigation .navigation post-navigation {
  margin-bottom: 59px;
}
.tc-docs-navigation .post-navigation .nav-links {
  border: 0;
}
@media (max-width: 576px) {
  .tc-docs-navigation .post-navigation .nav-links {
    flex-direction: column;
    gap: 20px;
    align-items: unset;
    flex-wrap: nowrap;
  }
}
.tc-docs-navigation .post-navigation .nav-links .nav-previous, .tc-docs-navigation .post-navigation .nav-links .nav-next {
  display: block;
  background: transparent;
  padding: 0;
}
.tc-docs-navigation .post-navigation .nav-links .nav-previous:hover, .tc-docs-navigation .post-navigation .nav-links .nav-next:hover {
  background: transparent;
  box-shadow: none;
  color: #094ec0;
}
.tc-docs-navigation .post-navigation .nav-links .nav-previous span, .tc-docs-navigation .post-navigation .nav-links .nav-next span {
  display: block;
  font-size: 14px;
  color: #6D6D6D;
  margin-bottom: 6px;
  line-height: 1;
}
.tc-docs-navigation .post-navigation .nav-links .nav-previous span.nav-subtitle, .tc-docs-navigation .post-navigation .nav-links .nav-next span.nav-subtitle {
  color: #094ec0;
  font-size: 16px;
  margin-bottom: 15px;
}
.tc-docs-navigation .post-navigation .nav-links .nav-previous span.nav-title, .tc-docs-navigation .post-navigation .nav-links .nav-next span.nav-title {
  font-size: 16px;
  font-weight: 500;
  color: #151A31;
}
.tc-docs-navigation .post-navigation .nav-links .nav-previous {
  text-align: left;
}
.tc-docs-navigation .post-navigation .nav-links .nav-next {
  text-align: right;
}
@media (max-width: 576px) {
  .tc-docs-navigation .post-navigation .nav-links .nav-next {
    margin-left: auto;
  }
}

.tc-docs-share-buttons-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 576px) {
  .tc-docs-share-buttons-wrapper {
    flex-direction: column;
  }
}
.tc-docs-share-buttons-wrapper span.tc-share-label {
  font-size: 18px;
  font-weight: 600;
  color: #3d3d3d;
}

ul.tc-docs-share-buttons {
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
ul.tc-docs-share-buttons li a {
  height: 44px;
  width: 44px;
  border: 1px solid #DDDDE5;
  display: inline-flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
}
ul.tc-docs-share-buttons li a svg path {
  transition: fill 0.3s ease-in-out;
}
ul.tc-docs-share-buttons li a:hover {
  border-color: #094ec0;
  color: #fff;
  background-color: #094ec0;
}
ul.tc-docs-share-buttons li a:hover svg path {
  fill: #fff;
}

a.tc-back-to-docs {
  display: flex;
  align-items: center;
  gap: 5px;
}
a.tc-back-to-docs i {
  font-size: 18px;
}

/*--------------------------------------------------------------
## Projects
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Testimonial
--------------------------------------------------------------*/
.tc-testimonial {
  position: relative;
}
.tc-testimonial__item {
  display: flex;
  align-items: center;
  gap: 48px;
  background: #ffffff;
  border-radius: 10px;
  padding: 24px;
}
@media (max-width: 991px) {
  .tc-testimonial__item {
    gap: 32px;
  }
}
.tc-testimonial__avatar {
  background-color: #D6EFFF;
  border-radius: 12px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .tc-testimonial__avatar {
    min-width: 240px;
    min-height: 392px;
  }
}
@media (max-width: 991px) {
  .tc-testimonial__avatar {
    min-width: 180px;
  }
}
.tc-testimonial__avatar img {
  object-fit: cover;
  width: 100%;
}
.tc-testimonial__biolet {
  display: none;
}
.tc-testimonial__content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  height: 100%;
}
@media (min-width: 992px) {
  .tc-testimonial__content-wrapper {
    min-height: 344px;
  }
}
.tc-testimonial__rating {
  margin-bottom: 18px;
}
.tc-testimonial__review {
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.24px;
  color: #4f4f4f;
  margin-bottom: 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .tc-testimonial__review {
    font-size: 20px;
    line-height: 32px;
  }
}
.tc-testimonial__name {
  color: #3D3D3D;
  font-size: 18px;
  line-height: 30px;
  margin: 0;
}
.tc-testimonial__designation {
  font-size: 14px;
  line-height: 20px;
  color: #5D5D5D;
}
.tc-testimonial__navigation {
  position: absolute;
  top: 50%;
  z-index: 1;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}
.tc-testimonial__next, .tc-testimonial__prev {
  background-color: #ffffff;
  color: #094EC0;
  width: 48px;
  height: 48px;
  line-height: 48px;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.12);
  transition: all 0.5s ease-in-out;
}
.tc-testimonial__next:hover, .tc-testimonial__prev:hover {
  background-color: #094EC0;
  color: #ffffff;
}
.tc-testimonial__prev {
  left: 10px;
}
.tc-testimonial__next {
  right: 10px;
}
.tc-testimonial__pagination {
  position: relative;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tc-testimonial__pagination span {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
}
.tc-testimonial__pagination .swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 2px solid #ffffff;
}
@media only screen and (max-width: 767px) {
  .tc-testimonial__item {
    flex-direction: column;
    height: auto;
    gap: 10px;
    padding: 24px 16px;
    justify-content: flex-start;
  }
  .tc-testimonial__content-wrapper {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .tc-testimonial__review {
    font-size: 16px;
    line-height: 24px;
  }
  .tc-testimonial__name {
    font-size: 16px;
    line-height: 15px;
  }
  .tc-testimonial__designation {
    font-size: 14px;
    line-height: 1;
  }
  .tc-testimonial__avatar {
    display: flex;
    justify-content: flex-start;
    gap: 16px;
    min-width: 100%;
    background-color: transparent;
  }
  .tc-testimonial__avatar img {
    height: 100% !important;
  }
  .tc-testimonial__reviewer {
    background-color: #D6EFFF;
    width: 110px;
    height: 120px;
    text-align: center;
    border-radius: 12px;
    overflow: hidden;
  }
  .tc-testimonial__rating {
    margin-bottom: 5px;
    margin-top: 15px;
  }
  .tc-testimonial__bio {
    display: none;
  }
  .tc-testimonial__biolet {
    display: block;
  }
  .tc-testimonial__navigation {
    padding: 0px;
  }
}

/* video testimonial */
.tc-video-testimonial .swiper-container {
  margin: 0 -40px;
}
@media (max-width: 1024px) {
  .tc-video-testimonial .swiper-container {
    margin: 0;
  }
}
.tc-video-testimonial__item {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0px 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04);
}
.tc-video-testimonial__image-wrapper {
  position: relative;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0px 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04);
  padding-bottom: 8px;
}
.tc-video-testimonial__image {
  width: 100%;
  object-fit: cover;
  border-radius: 16px !important;
  box-shadow: 0px 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04) !important;
  background-color: #ffffff;
  padding-bottom: 8px;
}
.tc-video-testimonial__logo {
  max-width: 130px;
}
.tc-video-testimonial__play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 30px;
  padding: 14px 22px;
  background-color: #FF0000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media (max-width: 576px) {
  .tc-video-testimonial__play-icon {
    padding: 3px 9px;
    font-size: 20px;
  }
}
@media (max-width: 1024px) {
  .tc-video-testimonial__play-icon {
    padding: 5px 10px;
    font-size: 22px;
  }
}
.tc-video-testimonial__play-icon i {
  margin-left: 5px;
}
.tc-video-testimonial__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 48px;
}
@media (max-width: 1440px) {
  .tc-video-testimonial__content {
    padding: 20px;
  }
}
@media (max-width: 576px) {
  .tc-video-testimonial__content {
    padding: 16px;
  }
}
.tc-video-testimonial__name {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.48px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .tc-video-testimonial__name {
    font-size: 18px;
  }
}
.tc-video-testimonial__designation {
  color: #ffffff;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  opacity: 0.64;
}
@media (max-width: 768px) {
  .tc-video-testimonial__designation {
    font-size: 14px;
  }
}
.tc-video-testimonial__prev, .tc-video-testimonial__next {
  position: absolute;
  z-index: 10;
  top: 32%;
  transform: translateY(-32%);
}
.tc-video-testimonial__next {
  right: 20px;
}
@media (max-width: 576px) {
  .tc-video-testimonial__next {
    right: -10px;
  }
}
@media (max-width: 1024px) {
  .tc-video-testimonial__next {
    top: 28%;
    width: 40px;
    height: 40px;
  }
}
.tc-video-testimonial__prev {
  left: 20px;
}
@media (max-width: 576px) {
  .tc-video-testimonial__prev {
    left: -10px;
  }
}
@media (max-width: 1024px) {
  .tc-video-testimonial__prev {
    top: 28%;
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 1440px) {
  .tc-video-testimonial__prev, .tc-video-testimonial__next {
    top: 135px;
  }
}
@media (max-width: 768px) {
  .tc-video-testimonial__prev, .tc-video-testimonial__next {
    top: 100px;
  }
}

/*--------------------------------------------------------------
## Avatar
--------------------------------------------------------------*/
.tc-avatar {
  display: flex;
  align-items: center;
}
.tc-avatar__item {
  height: 67px;
  width: 67px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: -21px;
  border: 3px solid #F3F3F5;
  box-shadow: -4px 4px 8px 0px rgba(0, 0, 0, 0.12);
}
.tc-avatar__item img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

/*--------------------------------------------------------------
## Count Info
--------------------------------------------------------------*/
.tc-count-info {
  background-color: #0b163f;
  padding: 45px 30px;
  text-align: center;
  border-radius: 15px;
}
.tc-count-info__icon {
  margin-bottom: 15px;
}
.tc-count-info__icon i {
  display: inline-flex;
  color: #ffc107;
  font-size: 38px;
  margin-right: 5px;
}
.tc-count-info__title {
  display: inline-block;
  margin: 0;
  line-height: 1;
  color: #fff;
  font-size: 40px;
}
.tc-count-info__description {
  color: #d6d5e1;
  margin-bottom: 0;
}
.tc-count-info__logo {
  margin-top: 30px;
}
.tc-count-info__logo img {
  height: 24px !important;
}

/*--------------------------------------------------------------
## Counter
--------------------------------------------------------------*/
.tc-counter {
  display: flex;
  align-items: center;
  justify-content: center;
}
.tc-counter__divider {
  position: relative;
}
.tc-counter__divider:after {
  content: "";
  position: absolute;
  width: 1px;
  height: 20px;
  background: #D9D9D9;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media (max-width: 767px) {
  .tc-counter__divider:after {
    width: 0;
  }
}
@media (max-width: 576px) {
  .tc-counter__divider:after {
    width: 0;
  }
}
.tc-counter__icon-container {
  position: relative;
  max-width: 70px;
  font-size: 40px;
  color: #000000;
  margin-right: 15px;
}
.tc-counter__number {
  position: relative;
  display: flex;
  margin-bottom: 0;
}
@media (max-width: 1200px) {
  .tc-counter__number {
    font-size: 46px;
  }
}
@media (max-width: 576px) {
  .tc-counter__number {
    padding-left: 20px;
  }
}
.tc-counter__number .counter {
  font-size: 60px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.8px;
  color: #3d3d3d;
}
@media (max-width: 576px) {
  .tc-counter__number .counter {
    font-size: 36px;
    line-height: 38px;
    letter-spacing: -1.08px;
  }
}
.tc-counter__number .suffix {
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.48px;
  color: #6D6D6D;
  padding: 6px 4px 0 4px;
}
.tc-counter__title {
  font-size: 16px;
  color: #888888;
  font-weight: 400;
  margin-bottom: 0;
  line-height: normal;
}
@media (max-width: 1200px) and (min-width: 768px) {
  .tc-counter__title {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
## User List
--------------------------------------------------------------*/
.tc-user-list {
  position: relative;
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.tc-user-list__inner {
  position: relative;
  display: inline;
  flex-basis: 80px;
}
.tc-user-list__inner:hover .tc-user-list__content {
  visibility: visible;
  opacity: 1;
}
.tc-user-list__image {
  width: 80px;
  height: 80px;
}
.tc-user-list__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 80px !important;
  mix-blend-mode: luminosity;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
.tc-user-list__content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: -33px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  transition: all 0.3s ease-in-out;
  z-index: 2;
  border-radius: 8px;
  border: 1px solid #E9EAEB;
  padding: 32px 40px 35px;
  background: #ffffff;
  box-shadow: 0px 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.tc-user-list__title {
  color: #3d3d3d;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  padding-top: 18px;
  margin-bottom: 8px;
}
.tc-user-list__designation {
  color: #3d3d3d;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  opacity: 0.56;
  margin-bottom: 0;
}
@media (max-width: 1440px) {
  .tc-user-list {
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .tc-user-list {
    gap: 44px;
    justify-content: center;
  }
  .tc-user-list__content {
    padding: 20px;
    top: -20px;
    min-width: 250px;
  }
}
@media (max-width: 768px) {
  .tc-user-list {
    gap: 50px;
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .tc-user-list {
    gap: 32px 24px;
    justify-content: center;
  }
  .tc-user-list__inner {
    flex-basis: 67px;
  }
  .tc-user-list__content {
    padding: 20px;
    min-width: 180px;
  }
  .tc-user-list__title {
    font-size: 18px;
  }
  .tc-user-list__designation {
    font-size: 14px;
  }
  .tc-user-list__image {
    width: 67px;
    height: 67px;
  }
  .tc-user-list__image img {
    width: 100%;
    height: 100%;
  }
}

/*--------------------------------------------------------------
## Account Page
--------------------------------------------------------------*/
.tc-login-page {
  background: #F6F7F9;
  padding: 120px 0;
}
.tc-login-page .tc-login-form {
  max-width: 460px;
  margin: 0 auto;
  padding: 32px;
  border-radius: 12px;
  background: #fff;
  position: relative;
}
.tc-login-page .tc-login-form label {
  font-size: 16px;
  font-weight: 600;
  color: #3d3d3d;
  margin-bottom: 8px;
  display: block;
}
.tc-login-page .tc-login-form input {
  margin-bottom: 0 !important;
}
.tc-login-page .tc-login-form p.login-remember label {
  color: #4C4E64;
  font-weight: 400;
}
.tc-login-page .tc-login-form .login-submit input {
  width: 100%;
}
.tc-login-page .tc-login-form-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 10px;
}
.tc-login-page .tc-login-form-subtitle {
  font-size: 16px;
  text-align: center;
  margin-bottom: 25px;
}
.tc-login-page .tc-login-form-subtitle a {
  color: #094ec0;
}
.tc-login-page .remember-me {
  display: inline-block;
}
.tc-login-page p.lost-password {
  display: inline-block;
  position: absolute;
  right: 32px;
}
.tc-login-page .tc-register-form-field {
  margin-bottom: 20px;
}
.tc-login-page .tc-register-form-field input {
  width: 100%;
}

/*--------------------------------------------------------------
## Logo List
--------------------------------------------------------------*/
.tc-logo-list {
  display: flex;
  grid-gap: 20px;
}
.tc-logo-list__item {
  position: relative;
  padding: 0;
  transition: all 0.3s ease-in-out;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tc-logo-list__item a {
  display: block;
}

/*--------------------------------------------------------------
## Pricing
--------------------------------------------------------------*/
.tc-pricing {
  position: relative;
  padding: 56px 48px 48px;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.tc-pricing .tc-card-dots {
  position: absolute;
  top: 16px;
  left: 16px;
}
@media (max-width: 420px) {
  .tc-pricing {
    padding: 55px 24px 60px;
  }
}
.tc-pricing__title {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 20px;
  letter-spacing: -0.24px;
}
.tc-pricing__title img, .tc-pricing__title svg {
  width: 22px;
  object-fit: cover;
  margin-bottom: 6px;
  margin-right: 4px;
}
.tc-pricing__title i {
  font-size: 22px;
  margin-bottom: 6px;
  margin-right: 4px;
}
.tc-pricing .tc-pricing__price-wrap {
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}
.tc-pricing__price {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-bottom: 47px;
}
.tc-pricing__period, .tc-pricing .currency {
  font-size: 24px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.56);
}
.tc-pricing__subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  display: block;
  font-weight: 400;
  margin-bottom: 15px;
}
.tc-pricing__feature-list {
  margin: 0 0 32px 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.tc-pricing__feature-list li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tc-pricing__feature-list li:not(:last-child) {
  margin-bottom: 12px;
}
.tc-pricing__feature-list li i {
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  font-size: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}
.tc-pricing__feature-list li .bullet {
  display: inline-block;
  height: 9px;
  width: 9px;
  border-radius: 50%;
  background-color: #094ec0;
  margin-right: 10px;
  vertical-align: 1px;
}
.tc-pricing__feature-list li .fa-check {
  color: #094ec0;
}
.tc-pricing__feature-list li .fa-xmark {
  color: #f9284f;
}
@media (max-width: 360px) {
  .tc-pricing .tc-fancy-btn .tc-fancy-btn-text {
    padding: 14px 12px;
    font-size: 14px;
  }
}
.tc-pricing .tc-pricing__feature {
  color: #3d3d3d;
  background: #fff;
  display: inline-block;
  padding: 5px 8px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 16px;
  border-radius: 4px;
}
.tc-pricing.tc-pricing-featured {
  position: relative;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.08);
}

.tc-life-time-pricing {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 48px;
  position: relative;
  background: #00FF00;
  z-index: 2;
}
.tc-life-time-pricing:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 1024px) {
  .tc-life-time-pricing {
    padding: 32px;
  }
}
@media (max-width: 991px) {
  .tc-life-time-pricing {
    width: 100%;
    row-gap: 32px;
  }
}
@media (max-width: 620px) {
  .tc-life-time-pricing {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding: 50px 24px 24px 24px;
  }
}
.tc-life-time-pricing__action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 2;
  padding-left: 32px;
}
@media (max-width: 1024px) {
  .tc-life-time-pricing__action {
    flex-flow: column;
    gap: 16px;
  }
}
@media (max-width: 991px) {
  .tc-life-time-pricing__action {
    gap: 16px;
    padding-left: 0;
    flex-flow: row;
  }
}
@media (max-width: 620px) {
  .tc-life-time-pricing__action {
    flex-flow: column;
    gap: 46px;
    align-items: flex-start;
  }
}
.tc-life-time-pricing > div.tc-life-time-pricing__title-wrapper {
  width: 25%;
  right: 32px;
}
@media (max-width: 991px) {
  .tc-life-time-pricing > div.tc-life-time-pricing__title-wrapper {
    width: 50%;
  }
}
@media (max-width: 620px) {
  .tc-life-time-pricing > div.tc-life-time-pricing__title-wrapper {
    width: 100%;
  }
}
.tc-life-time-pricing > div.tc-life-time-pricing__description {
  padding: 0 32px;
  width: 28%;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
@media (max-width: 991px) {
  .tc-life-time-pricing > div.tc-life-time-pricing__description {
    width: 50%;
    border-right: 0;
    padding-right: 0;
  }
}
@media (max-width: 620px) {
  .tc-life-time-pricing > div.tc-life-time-pricing__description {
    width: 100%;
    border-right: 0;
    border-left: 0;
    position: relative;
    padding: 22px 0;
  }
  .tc-life-time-pricing > div.tc-life-time-pricing__description:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
  }
  .tc-life-time-pricing > div.tc-life-time-pricing__description:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
  }
}
.tc-life-time-pricing > div.tc-life-time-pricing__price-wrapper {
  padding: 0 32px;
}
.tc-life-time-pricing__title {
  color: #3d3d3d;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.24px;
  margin-bottom: 0;
}
.tc-life-time-pricing__title span {
  color: rgba(61, 61, 61, 0.56);
}
.tc-life-time-pricing__title img, .tc-life-time-pricing__title svg {
  width: 22px;
  object-fit: cover;
  margin-bottom: 6px;
  margin-right: 4px;
}
.tc-life-time-pricing__title i {
  font-size: 22px;
  margin-bottom: 6px;
  margin-right: 4px;
}
.tc-life-time-pricing__description p {
  color: #3d3d3d;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.18px;
  margin-bottom: 0;
}
.tc-life-time-pricing__price-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tc-life-time-pricing__price {
  color: #000000;
  font-size: 48px;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  line-height: 1;
  margin-bottom: 0;
}
.tc-life-time-pricing__price__suffix-before, .tc-life-time-pricing__price__suffix-after {
  color: rgba(61, 61, 61, 0.56);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.24px;
}
.tc-life-time-pricing__price__suffix-after {
  margin-top: 15px;
}
.tc-life-time-pricing .tc-btn__link {
  color: #ffffff;
  font-weight: 600;
}
.tc-life-time-pricing .tc-btn__link i {
  font-weight: 700;
}
.tc-life-time-pricing .tc-btn__link:hover {
  color: #094ec0;
}

/*--------------------------------------------------------------
## Team
--------------------------------------------------------------*/
.tc-team {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.tc-team__info {
  text-align: center;
}
.tc-team__social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.tc-team__social li {
  display: inline-block;
}
.tc-team__name {
  color: #3d3d3d;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 13px;
  letter-spacing: -0.02em;
}
.tc-team__designation {
  color: #5E6371;
  font-size: 14px;
  font-weight: 400;
}
.tc-team__avater {
  overflow: hidden;
}
.tc-team__avater img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}
.tc-team__designation {
  margin-bottom: 3px;
}
.tc-team__expand-icon {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-align: center;
  background: #162432;
  margin-bottom: 5px;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.tc-team__icons-wrapper {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .tc-team__icons-wrapper {
    right: 10px;
  }
}
.tc-team__icons-wrapper:hover .tc-team__expand-icon {
  transform: rotate(45deg);
}
.tc-team__icons-wrapper:hover .tc-team__social li {
  transition: all 0.3s ease-in-out;
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}
.tc-team__icons-wrapper:hover .tc-team__social li:nth-child(1) {
  transition-delay: 0.1s;
}
.tc-team__icons-wrapper:hover .tc-team__social li:nth-child(2) {
  transition-delay: 0.2s;
}
.tc-team__icons-wrapper:hover .tc-team__social li:nth-child(3) {
  transition-delay: 0.3s;
}
.tc-team__icons-wrapper:hover .tc-team__social li:nth-child(4) {
  transition-delay: 0.4s;
}
.tc-team__icons-wrapper:hover .tc-team__social li:nth-child(5) {
  transition-delay: 0.5s;
}
.tc-team__icons-wrapper:hover .tc-team__social li:nth-child(6) {
  transition-delay: 0.6s;
}
.tc-team:hover .tc-team__avater img {
  transform: scale(1.1) rotate(3deg);
}
.tc-team--one {
  border-radius: 10px;
  background: #FFF;
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .tc-team--one {
    padding: 40px 29px;
  }
}
.tc-team--one .tc-team__info {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 15px;
  background: #fff;
  border-radius: 10px;
  padding: 10px 15px;
  transform: translateY(0) scale(1, 0);
  transform-origin: bottom center;
  transition: all 350ms cubic-bezier(0.37, 0, 0.63, 1);
  opacity: 0;
  height: auto;
}
.tc-team--one .tc-team__name {
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}
.tc-team--one .tc-team__designation {
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
}
.tc-team--one .tc-team__social {
  gap: 6px;
}
.tc-team--one .tc-team__social li {
  position: relative;
  display: inline-flex;
  transition: all 0.3s ease-in-out;
  transform: translateY(-10px) scale(0.4);
  opacity: 0;
  visibility: hidden;
}
.tc-team--one .tc-team__social li:not(:last-child) {
  margin-bottom: 5px;
}
.tc-team--one .tc-team__social li a {
  font-size: 16px;
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  background: #F3F9FE;
  text-align: center;
  border-radius: 50%;
}
.tc-team--one .tc-team__social li a i, .tc-team--one .tc-team__social li a svg {
  width: 16px;
  font-size: 16px;
}
.tc-team--one .tc-team__social li a:hover {
  background: #094ec0;
  color: #fff;
}
.tc-team--one:hover .tc-team__info {
  transform: translateY(0) scale(1, 1);
  opacity: 1;
}
.tc-team--one:hover .tc-team__name {
  opacity: 1;
  transform: translateY(0);
}
.tc-team--one:hover .tc-team__designation {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.tc-team--two {
  text-align: center;
  padding: 5px;
  border: 1px solid #DFE1E5;
  border-radius: 10px;
  overflow: hidden;
  transition: height 0.3s ease-in-out;
}
.tc-team--two .tc-team__avater {
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 16px;
}
.tc-team--two .tc-team__avater img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.tc-team--two .tc-team__name {
  margin-bottom: 0;
}
.tc-team--two .tc-team__social {
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 20px;
  border-top: 1px solid #DFE1E5;
}

.tc-team-list {
  background-color: #094ec0;
  padding: 95px 80px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 620px;
  border-radius: 15px;
}
@media (max-width: 1200px) {
  .tc-team-list {
    padding: 80px 60px 30px;
  }
}
.tc-team-list__title {
  color: #F9DF57;
  font-weight: 600;
  font-size: 150px;
  line-height: 60px;
  margin-bottom: 11px;
}
@media (max-width: 1200px) {
  .tc-team-list__title {
    font-size: 110px;
  }
}
@media (max-width: 991px) {
  .tc-team-list__title {
    font-size: 100px;
  }
}
.tc-team-list__title span {
  font-size: 40px;
}
.tc-team-list__subtitle {
  font-size: 26px;
  font-weight: 400;
  border-radius: 30px;
  color: #fff;
}
.tc-team-list__list-info {
  font-family: "Inter", serif;
  color: #fff;
  font-weight: 400;
  font-size: 26px;
}
.tc-team-list__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.tc-team-list__list li {
  display: inline-block;
  transition: all 0.3s ease-in-out;
  margin-left: -15px;
}
.tc-team-list__list .tc-team-list__list-image {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.tc-team-list__list .tc-team-list__list-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  border-radius: 50%;
}
.tc-team-list__list:hover li {
  margin-left: 0;
  margin-right: 5px;
}

.promo-content-wrap {
  max-width: 670px;
  margin: 0 auto 140px;
  position: relative;
}
@media (max-width: 991px) {
  .promo-content-wrap {
    margin: 0 auto 80px;
  }
}
.promo-content-wrap .section-heading {
  margin-bottom: 0;
}
.promo-content-wrap .section-heading .section-title {
  font-size: 50px;
  margin-bottom: 11px;
  color: #3d3d3d;
}
.promo-content-wrap .section-heading .description {
  font-size: 18px;
  color: #4f5158;
  margin-bottom: 31px;
}
.promo-content-wrap .phone-info {
  font-size: 30px;
  color: #3d3d3d;
  font-weight: 700;
  margin-bottom: 38px;
}
.promo-content-wrap .phone-info img {
  max-width: 28px;
  margin-right: 10px;
}
.promo-content-wrap .tt-btn {
  border-color: #094ec0;
  color: #094ec0;
  padding: 14px 34px;
}
.promo-content-wrap .tt-btn:before {
  background-color: #094ec0;
}
.promo-content-wrap .badge-wrap {
  position: absolute;
  bottom: -40px;
  width: 100%;
}
.promo-content-wrap .badge-wrap img {
  position: absolute;
  bottom: 0;
}
.promo-content-wrap .badge-wrap img.badge-right {
  right: 0;
}

.tc-team-members {
  display: flex;
  overflow: hidden;
  justify-content: center;
}
@media (max-width: 576px) {
  .tc-team-members {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .tc-team-members > * {
    width: 100%;
    flex: auto !important;
  }
}

.tc-team-member {
  flex: 1;
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  background-size: cover;
  background-position: center center;
  position: relative;
  overflow: hidden;
  background-repeat: no-repeat;
  height: 570px;
  max-width: 480px;
}
@media (max-width: 991px) {
  .tc-team-member {
    height: 480px;
  }
}
@media (max-width: 767px) {
  .tc-team-member {
    height: 400px;
  }
}
.tc-team-member > *:first-child {
  transform: translateY(-100%);
}
.tc-team-member > *:last-child {
  transform: translateY(100%);
}
.tc-team-member__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
}
.tc-team-member__designation {
  font-size: 20px;
  font-weight: 500;
  padding: 5px 14px;
  line-height: 1;
  text-transform: uppercase;
  color: #3d3d3d;
  background: #094ec0;
  display: inline-block;
  margin-bottom: 6px;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  opacity: 0;
}
@media (max-width: 767px) {
  .tc-team-member__designation {
    font-size: 16px;
  }
}
.tc-team-member__name {
  background: #FFF;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
  font-size: 34px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 11px 24px;
  line-height: 1;
  display: inline-block;
  transform: translateY(30px);
  transition: all 0.4s cubic-bezier(0.37, 0, 0.63, 1);
  opacity: 0;
}
@media (max-width: 991px) {
  .tc-team-member__name {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .tc-team-member__name {
    font-size: 18px;
    padding: 10px 14px;
  }
}
.tc-team-member:hover, .tc-team-member.active {
  flex: 2;
}
.tc-team-member:hover > *:first-child, .tc-team-member.active > *:first-child {
  transform: translateY(0);
}
.tc-team-member:hover > *:last-child, .tc-team-member.active > *:last-child {
  transform: translateY(0);
}
.tc-team-member:hover .tc-team-member__designation, .tc-team-member.active .tc-team-member__designation {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.4s;
}
.tc-team-member:hover .tc-team-member__name, .tc-team-member.active .tc-team-member__name {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.6s;
}

/*--------------------------------------------------------------
## Feature Box
--------------------------------------------------------------*/
.tc-feature-box--slider {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .tc-feature-boxes {
    display: grid;
    gap: 30px;
  }
  .tc-feature-boxes--column-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .tc-feature-boxes--column-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tc-feature-boxes--column-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .tc-feature-boxes--column-5 {
    grid-template-columns: repeat(5, 1fr);
  }
}
.tc-feature-box--slider {
  padding: 30px;
  margin-right: -15px;
  margin-left: -15px;
}
@media (max-width: 576px) {
  .tc-feature-box--slider {
    padding: 0;
    margin: 0;
  }
}

/* Feature Box */
.tc-feature-box {
  background: transparent;
  border-radius: 12px;
  border: 1px solid #D1D1D1;
  padding: 8px 8px 32px;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.tc-feature-box:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
  border-color: transparent;
}
@media (max-width: 576px) {
  .tc-feature-box {
    padding: 8px;
  }
}
.tc-feature-box__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}
.tc-feature-box__content-wrapper {
  padding: 0 24px;
}
.tc-feature-box__image {
  margin-bottom: 37px;
  width: 100%;
  overflow: hidden;
}
.tc-feature-box__image__title {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.48px;
  font-weight: 500;
  color: #000;
  margin-bottom: 0;
  display: inline-block;
  text-transform: capitalize;
}
@media (max-width: 576px) {
  .tc-feature-box__image {
    min-height: 250px;
    margin-bottom: 20px;
  }
}
.tc-feature-box__img {
  border-radius: 8px !important;
}
.tc-feature-box__title {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.48px;
  font-weight: 500;
  color: #000;
  margin-bottom: 0;
  display: inline-block;
}
@media (max-width: 767px) {
  .tc-feature-box__title {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .tc-feature-box__title {
    font-size: 18px;
  }
}
.tc-feature-box__divider {
  height: 1px;
  background: #EBEBEB;
  margin: 11px auto 14px;
}
.tc-feature-box__description {
  font-size: 18px;
  line-height: 26px;
  font-weight: normal;
  color: #4F4F4F;
  margin-bottom: 0;
}

.slider-nav {
  height: 48px;
  width: 48px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  background: #fff;
  font-size: 20px;
  color: #094ec0;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.slider-nav i {
  font-size: 20px;
}
@media (max-width: 576px) {
  .slider-nav {
    top: 136px;
    transform: translateY(0);
  }
}
.slider-nav:hover {
  background: #094ec0;
  color: #fff;
}

@media (min-width: 1024px) {
  .tc-feature__prev, .tc-feature__next {
    display: none;
  }
}

.tc-feature__next {
  right: 0;
}
@media (max-width: 576px) {
  .tc-feature__next {
    right: 16px;
  }
}

.tc-feature__prev {
  left: 8px;
}

.swiper-pagination {
  position: static;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .swiper-pagination {
    display: none;
  }
}
.swiper-pagination-bullet {
  height: 8px;
  width: 8px;
  background: #3d3d3d;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.swiper-pagination-bullet:before {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: -2px;
  top: -2px;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  transform: scale(0.5);
}
.swiper-pagination-bullet-active {
  background: #fff;
}
.swiper-pagination-bullet-active:before {
  border-color: #3d3d3d;
  transform: scale(1);
}

/*--------------------------------------------------------------
## Image Carousel
--------------------------------------------------------------*/
.tc-slider-image img {
  border-radius: 20px !important;
  overflow: hidden;
}
.tc-slider-image.sbt-slider-image--center {
  width: max-content;
  margin: 30px auto 0;
}

h3.tc-image-carousel-title {
  color: #FFF;
  font-family: "Inter", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 33px;
}

.swiper-progress-bar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 400px;
  margin: 30px auto 0;
}
.swiper-progress-bar-wrapper > span {
  color: #fff;
}

.swiper-progress-bar {
  position: relative;
  width: 350px;
  display: block;
  z-index: 1;
  height: 4px;
  background: #262522;
}
.swiper-progress-bar:after {
  position: absolute;
  top: 0;
  left: 0;
  background: #094ec0;
  height: 100%;
  width: 0;
  content: "";
  transition: 0.1s width linear;
}
.swiper-progress-bar.active {
  opacity: 1;
}
.swiper-progress-bar.animate:after {
  transition: width linear;
  transition-delay: unset;
  width: 100%;
  transition-duration: 5s;
}

/*--------------------------------------------------------------
## Blog Post Grid
--------------------------------------------------------------*/
/* Blog List */
.tc-blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.tc-blog-list__item {
  position: relative;
}
.tc-blog-list__item--featured .tc-blog-list__image {
  position: relative;
}
.tc-blog-list__item--featured .tc-blog-list__image a {
  display: block;
  height: 100%;
}
@media (min-width: 991px) {
  .tc-blog-list__item--featured .tc-blog-list__image {
    height: 100%;
  }
}
.tc-blog-list__item--featured .tc-blog-list__image img {
  border-radius: 12px;
  min-height: 500px;
  height: 100%;
  object-fit: cover;
}
.tc-blog-list__item--featured .tc-blog-list__image:after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.39) 80%, rgb(0, 0, 0) 100%);
}
.tc-blog-list__item--featured .tc-blog-list__content {
  padding: 40px 45px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.tc-blog-list__item--compact .tc-blog-list__image {
  border-radius: 12px;
}
@media (min-width: 768px) {
  .tc-blog-list__item--compact .tc-blog-list__image {
    margin-bottom: 32px;
  }
}
.tc-blog-list__item--compact .tc-blog-list__content {
  padding-left: 0;
}
.tc-blog-list__item--compact .tc-blog-list__title a {
  color: #4F4F4F;
}
.tc-blog-list__item:hover img {
  transform: scale(1.1);
}
.tc-blog-list__image {
  border-radius: 12px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .tc-blog-list__image {
    border-radius: 8px !important;
  }
}
.tc-blog-list__image img {
  transition: all 0.5s ease-in-out;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}
.tc-blog-list__content {
  position: relative;
}
.tc-blog-list__title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
  position: relative;
  display: inline-block;
  margin-bottom: 0;
}
.tc-blog-list__title a {
  color: #fff;
}
.tc-blog-list__tags {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.tc-blog-list__tag, .tc-blog-list__read-time {
  background: #3D3D3D;
  color: #fff;
  font-size: 15px;
  padding: 7px 10px;
  border-radius: 4px;
  text-transform: capitalize;
  line-height: 1;
}
.tc-blog-list__divider {
  height: 1px;
  background: #D1D1D1;
  margin: 15px auto;
}
.tc-blog-list__description {
  font-size: 18px;
  line-height: 26px;
  font-weight: normal;
  color: #4F4F4F;
}

.tc-post-item {
  margin-bottom: 90px;
}
@media (max-width: 1200px) {
  .tc-post-item {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .tc-post-item {
    margin-bottom: 32px;
  }
}
.tc-post-item__feature-image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}
@media (max-width: 767px) {
  .tc-post-item__feature-image {
    margin-bottom: 12px;
  }
}
.tc-post-item__feature-image img {
  border-radius: 16px;
  transition: all 0.5s ease-in-out;
  width: 100%;
}
.tc-post-item__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .tc-post-item__meta {
    gap: 9px 12px;
    margin-bottom: 4px;
  }
}
.tc-post-item__entry-title {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .tc-post-item__entry-title {
    font-size: 20px;
    line-height: 30px;
    letter-spacing: -0.2px;
  }
}
.tc-post-item__entry-title a {
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: all 0.7s;
  background-image: linear-gradient(to bottom, #3d3d3d 0%, #3d3d3d 98%);
  position: relative;
}
.tc-post-item__entry-title a:hover {
  background-size: 100% 2px;
  color: #3d3d3d;
}
.tc-post-item:hover .tc-post-item__feature-image img {
  transform: scale(1.07);
}

.tc-feature-post {
  position: relative;
  min-height: 380px;
  margin-bottom: 112px;
}
@media (max-width: 767px) {
  .tc-feature-post {
    margin-bottom: 40px;
  }
}
.tc-feature-post .tc-post-item__meta {
  margin-bottom: 12px;
}
.tc-feature-post__blog-content {
  max-width: 548px;
  padding: 160px 48px 64px 48px;
  border-radius: 16px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
}
@media (max-width: 1200px) {
  .tc-feature-post__blog-content {
    padding: 100px 32px 48px 32px;
    max-width: 480px;
  }
}
@media (max-width: 991px) {
  .tc-feature-post__blog-content {
    max-width: 420px;
  }
}
@media (max-width: 767px) {
  .tc-feature-post__blog-content {
    position: static;
    max-width: calc(100% - 32px);
    margin: -50px auto 0;
    padding: 54px 16px 24px 16px;
    transform: translateY(0);
  }
}
.tc-feature-post__feature-image img {
  max-width: 870px !important;
  width: 100%;
  border-radius: 16px !important;
}
@media (max-width: 1200px) {
  .tc-feature-post__feature-image img {
    max-width: 750px !important;
  }
}
@media (max-width: 991px) {
  .tc-feature-post__feature-image img {
    max-width: 680px !important;
  }
}
@media (max-width: 767px) {
  .tc-feature-post__feature-image img {
    max-width: 100% !important;
  }
}
.tc-feature-post__badge {
  position: absolute;
  top: -1px;
  left: 48px;
  background: #3d3d3d;
  color: #fff;
  border-radius: 0 0 8px 8px;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 8px;
  line-height: 1;
  display: inline-block;
}
@media (max-width: 767px) {
  .tc-feature-post__badge {
    left: 16px;
  }
}
.tc-feature-post__badge a {
  color: #3D3D3D !important;
  text-decoration: none !important;
}
.tc-feature-post__entry-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 42px;
  letter-spacing: -1.44px;
  margin-bottom: 0;
}
.tc-feature-post__entry-title a {
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: all 0.7s;
  background-image: linear-gradient(to bottom, #3d3d3d 0%, #3d3d3d 98%);
  position: relative;
}
.tc-feature-post__entry-title a:hover {
  background-size: 100% 2px;
  color: #3d3d3d;
}
@media (max-width: 991px) {
  .tc-feature-post__entry-title {
    font-size: 28px;
    line-height: 34px;
    letter-spacing: -1.12px;
  }
}
@media (max-width: 767px) {
  .tc-feature-post__entry-title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.24px;
  }
}

.tc-post-item-list {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .tc-post-item-list {
    gap: 16px;
    margin-bottom: 32px;
  }
}
@media (max-width: 360px) {
  .tc-post-item-list {
    align-items: flex-start;
  }
}
.tc-post-item-list__image {
  flex-basis: 160px;
  border-radius: 16px;
  overflow: hidden;
}
.tc-post-item-list__image img {
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 440px) {
  .tc-post-item-list__image {
    flex-basis: 110px;
  }
}
@media (max-width: 360px) {
  .tc-post-item-list__image {
    flex-basis: 90px;
  }
}
.tc-post-item-list__content {
  flex: 2;
}
.tc-post-item-list__title {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.2px;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tc-post-item-list__title a {
  background-size: 0 1px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: all 0.7s;
  background-image: linear-gradient(to bottom, #3d3d3d 0%, #3d3d3d 98%);
  position: relative;
}
.tc-post-item-list__title a:hover {
  background-size: 100% 1px;
  color: #3d3d3d;
}
@media (max-width: 440px) {
  .tc-post-item-list__title {
    font-size: 18px;
    line-height: 28px; /* 155.556% */
    letter-spacing: -0.18px;
  }
}
@media (max-width: 360px) {
  .tc-post-item-list__title {
    font-size: 16px;
    line-height: 24px;
  }
}
.tc-post-item-list .tc-post-item__meta {
  gap: 12px;
}
@media (max-width: 480px) {
  .tc-post-item-list .tc-post-item__meta {
    gap: 6px;
  }
}
@media (max-width: 360px) {
  .tc-post-item-list .tc-post-item__meta {
    gap: 4px;
  }
  .tc-post-item-list .tc-post-item__meta .tc-post-item__category a, .tc-post-item-list .tc-post-item__meta .posted-on a {
    font-size: 12px;
  }
}
.tc-post-item-list:hover .tc-post-item-list__image img {
  transform: scale(1.07);
}

.tc-post-item__category a, .posted-on a {
  border-radius: 4px;
  border: 1px solid #E9EAEB;
  background: #FAFAFA;
  font-size: 14px;
  padding: 2px 8px;
}

.meta-read-time, .tc-post-item__date-meta .posted-on {
  border-radius: 4px;
  border: 1px solid #E9EAEB;
  background: #FAFAFA;
  font-size: 14px;
  padding: 4px 8px 3px;
  line-height: 1;
  display: inline-block;
}

.blog-search-btn {
  display: flex;
  gap: 5px;
  color: rgba(61, 61, 61, 0.64);
  cursor: pointer;
}
.blog-search-btn i {
  color: #3d3d3d;
}

@media (max-width: 767px) {
  .search-results-grid .tc-post-item {
    margin-bottom: 53px;
  }
}
.tc-blog__prev {
  left: -8px;
}

.tc-blog__next {
  right: 8px;
}

@media (max-width: 576px) {
  .tc-post-items .slider-nav {
    top: 120px;
  }
}
.tc-post-items .tc-post-item {
  margin-bottom: 0;
}
.tc-post-items .slider-nav {
  display: flex !important;
}
.tc-post-items .slider-nav.swiper-button-disabled {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .tc-blog-list {
    grid-template-columns: repeat(1, 1fr);
  }
  .tc-blog-list__item--featured .tc-blog-list__content {
    padding: 20px;
  }
  .tc-blog-list__image img {
    min-height: auto !important;
  }
  .tc-blog-list__title {
    font-size: 18px;
    letter-spacing: -0.18px;
    line-height: 27px;
  }
  .tc-blog-list__content {
    padding: 16px !important;
  }
}
/*--------------------------------------------------------------
## Icon Box
--------------------------------------------------------------*/
.tc-icon-box {
  position: relative;
  z-index: 0;
  transition: all 0.3s ease-in-out;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.tc-icon-box.icon--top {
  flex-direction: column;
  justify-content: center;
}
.tc-icon-box.icon--left, .tc-icon-box.icon--right {
  align-items: center;
}
.tc-icon-box.icon--left .tc-icon-box__content, .tc-icon-box.icon--right .tc-icon-box__content {
  flex: 2;
}
.tc-icon-box.icon--left {
  text-align: left;
}
.tc-icon-box.icon--right {
  text-align: right;
}
.tc-icon-box.icon--right .tc-icon-box__icon-container {
  order: 2;
}
.tc-icon-box__icon-container {
  display: inline-flex;
  flex-wrap: wrap-reverse;
  align-items: center;
  font-size: 2em;
  color: #094ec0;
  position: relative;
  transition: transform 0.3s, border 0.3s, background 0.3s, color 0.3s, -webkit-transform 0.3s;
  height: max-content;
  max-width: max-content;
}
.tc-icon-box__icon-container i, .tc-icon-box__icon-container svg, .tc-icon-box__icon-container img {
  position: relative;
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  line-height: 1;
}
.tc-icon-box__icon-shape img, .tc-icon-box__icon-shape svg {
  position: absolute;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
.tc-icon-box--icon-shape .tc-icon-box__icon-container {
  min-height: 100px;
  position: relative;
  margin-bottom: 25px;
  padding: 15px 0;
  width: 100%;
  justify-content: center;
}
.tc-icon-box--icon-shape .tc-icon-box__icon-container .shape-image {
  position: absolute;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: auto;
  min-width: 51px;
  width: auto;
}
.tc-icon-box--icon-shape .tc-icon-box__icon-container img:not(.shape-image) {
  min-width: 50px;
}
.tc-icon-box__content {
  position: relative;
}
.tc-icon-box__title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}
.tc-icon-box__title .highlight {
  color: #b0b0b0;
}
.tc-icon-box__title a {
  color: #3d3d3d;
}
.tc-icon-box__title a:hover {
  color: #094ec0;
}
.tc-icon-box__description {
  margin: 0;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1024px) {
  .tc-icon-box__description br {
    display: none;
  }
}
.tc-icon-box__button {
  display: inline-block;
  margin-top: 20px;
  font-size: 15px;
}
.tc-icon-box__button i {
  font-size: 90%;
}
.tc-icon-box__button:not(.tc-btn) {
  color: #3d3d3d;
  font-weight: 500;
}
.tc-icon-box__button:not(.tc-btn):hover {
  color: #094ec0;
}
.tc-icon-box .tc-btn {
  margin-top: 45px;
}
.tc-icon-box .tc-btn.btn-outline {
  border-color: #e0e3e8;
  color: #6a7695;
}
.tc-icon-box .tc-btn.btn-outline:hover {
  border-color: #094ec0;
  color: #fff;
}
.tc-icon-box__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 17px;
  line-height: 1;
  background-color: rgba(9, 78, 192, 0.2);
  color: #094ec0;
  border-radius: 4px;
  width: max-content;
  height: max-content;
}
.tc-icon-box.style--one {
  background-color: #ffffff;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.08);
  border-radius: 5px;
  margin-bottom: 0;
  padding: 45px 40px 35px;
  margin-bottom: 30px;
}
.tc-icon-box.style--one .tc-icon-box__title {
  margin-bottom: 10px;
}
.tc-icon-box .button-text-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tc-icon-box .button-text-wrapper .tc-button-icon {
  line-height: 1;
}
.tc-icon-box .button-text-wrapper .elementor-button-text {
  flex-grow: 1;
  display: inline-block;
  order: 1;
}
.tc-icon-box .button-text-wrapper .tc-align-icon-right {
  order: 2;
}
.tc-icon-box--align-center .tc-icon-box {
  justify-content: center;
  text-align: center;
}
.tc-icon-box--align-left .tc-icon-box {
  justify-content: flex-start;
  text-align: left;
}
.tc-icon-box--align-right .tc-icon-box {
  justify-content: flex-end;
  text-align: right;
}

.tc-shape-circle .tc-icon-box__icon-container {
  border-radius: 50%;
}

.tc-view-stacked .tc-icon-box__icon-container, .tc-view-framed .tc-icon-box__icon-container {
  padding: 0.5em;
  text-align: center;
}

.tc-view-stacked .tc-icon-box__icon-container {
  background-color: #094ec0;
  color: #fff;
}

.tc-view-framed .tc-icon-box__icon-container {
  border: 2px solid #094ec0;
  color: #094ec0;
}

.tc-shape-rounded .tc-icon-box__icon-container {
  border-radius: 6px;
}

/*--------------------------------------------------------------
## Image Box
--------------------------------------------------------------*/
.tc-image-box {
  min-width: 1690px;
  overflow: hidden;
}
.tc-image-box.slider-expanded {
  overflow: visible;
  transition: all 0.3s ease-in-out;
}
.tc-image-box.slider-expanded .tc-image-box__container {
  overflow: visible;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1440px) {
  .tc-image-box {
    min-width: auto;
  }
}
.tc-image-box__item {
  background-color: #ffffff;
  border-radius: 28px;
  padding: 32px;
}
@media (max-width: 576px) {
  .tc-image-box__item {
    padding: 16px;
  }
}
.tc-image-box__image {
  width: 104px;
  height: 104px;
  object-fit: cover;
  margin-bottom: 12px;
}
@media (max-width: 576px) {
  .tc-image-box__image {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
}
.tc-image-box__content {
  padding: 0 50px 12px 0;
}
@media (max-width: 1440px) {
  .tc-image-box__content {
    padding-right: 0;
  }
}
@media (max-width: 576px) {
  .tc-image-box__content {
    padding-bottom: 35px;
  }
}
.tc-image-box__title {
  color: #3d3d3d;
  font-size: 30px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.9px;
}
@media (max-width: 576px) {
  .tc-image-box__title {
    font-size: 20px;
    line-height: 30px;
  }
}
.tc-image-box__description {
  color: #5d5d5d;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
@media (max-width: 576px) {
  .tc-image-box__description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 8px;
  }
}
.tc-image-box__btn {
  position: relative;
}
.tc-image-box__btn span {
  background-color: #3d3d3d;
  color: #ffffff;
  padding: 6px;
  border-radius: 50%;
  position: absolute;
  right: -12px;
  top: -22px;
  cursor: pointer;
  font-size: 24px;
  font-weight: 500;
  transition: transform 0.2s ease-in-out;
  z-index: 10;
}
@media (max-width: 576px) {
  .tc-image-box__btn span {
    font-size: 20px;
    right: 0;
    top: -32px;
  }
}
.tc-image-box__btn span:hover {
  transform: rotate(180deg) scale(1.1);
}
.tc-image-box__btn:hover .tc-image-box__info {
  opacity: 1;
  visibility: visible;
}
.tc-image-box__info {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: -8px;
  bottom: 8px;
  width: 250px;
  color: #ffffff;
  background-color: #3d3d3d;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.14px;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  z-index: 10;
  transition: opacity 0.3s ease-in-out;
}
.tc-image-box__navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  transform: translateY(-50%);
  z-index: 1;
}
.tc-image-box__next, .tc-image-box__prev {
  background-color: #ffffff;
  color: #094EC0;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  box-shadow: 0px 4px 32px rgba(0, 0, 0, 0.12);
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.5s ease-in-out;
}
.tc-image-box__next:hover, .tc-image-box__prev:hover {
  background-color: #094EC0;
  color: #ffffff;
}
.tc-image-box__prev {
  left: 10px;
}
.tc-image-box__next {
  right: 10px;
}
.tc-image-box__pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tc-image-box__pagination span {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
}
.tc-image-box__pagination .swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  background-color: transparent;
  border: 2px solid #ffffff;
}
@media (min-width: 768px) and (max-width: 1440px) {
  .tc-image-box__content {
    padding-right: 60px;
  }
  .tc-image-box__title {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
## Newsletter
--------------------------------------------------------------*/
@media (max-width: 768px) {
  #newsletter {
    padding: 40px 30px;
  }
}
#newsletter .section-heading {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  #newsletter .section-heading {
    text-align: center;
    margin-bottom: 40px;
  }
}
#newsletter .section-heading .section-title {
  color: #fff;
  font-size: 45px;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  #newsletter .section-heading .section-title {
    font-size: 30px;
  }
}
#newsletter .section-heading .subtitle {
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 400;
}
@media (max-width: 768px) {
  #newsletter .section-heading {
    text-align: center;
    margin-bottom: 40px;
  }
}

.tc-newsletter {
  display: flex;
}

.newsletter-form {
  max-width: 600px;
  width: 100%;
}
@media (max-width: 991px) {
  .newsletter-form {
    margin: 0 auto !important;
  }
}
.newsletter-form .newsletter-inner.style-one {
  background-color: #fff;
  padding: 8px;
  border-radius: 5px;
}
.newsletter-form .newsletter-inner.style-one.btn-inline {
  display: flex;
  position: relative;
}
@media (max-width: 440px) {
  .newsletter-form .newsletter-inner.style-one.btn-inline {
    flex-direction: column;
  }
}
.newsletter-form .newsletter-inner.style-one.btn-inline .input-inner {
  margin-right: 20px;
}
.newsletter-form .newsletter-inner.style-one.btn-block .input-inner {
  margin-bottom: 20px;
}
@media (max-width: 440px) {
  .newsletter-form .newsletter-inner.style-one {
    display: block;
  }
}
.newsletter-form .newsletter-inner.style-two .input-inner {
  display: flex;
  gap: 20px;
}
.newsletter-form .newsletter-inner.style-two .input-inner > input[type=text], .newsletter-form .newsletter-inner.style-two .input-inner input[type=email] {
  width: 50%;
  background: transparent;
  padding: 10px 0;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  color: #fff;
}
.newsletter-form .newsletter-inner.style-two .input-inner > input[type=text]::placeholder, .newsletter-form .newsletter-inner.style-two .input-inner input[type=email]::placeholder {
  color: #fff;
}
.newsletter-form .newsletter-inner.style-two .newsletter-submit {
  font-family: "Poppins", sans-serif;
  margin-top: 50px;
  background: #BFE3E8;
  border-color: #BFE3E8;
  color: #3d3d3d;
  letter-spacing: 0.1em;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  width: calc(50% - 10px);
}
.newsletter-form .newsletter-inner.style-two .newsletter-submit:hover {
  background: #3d3d3d;
  border-color: #3d3d3d;
  color: #fff;
}
.newsletter-form .newsletter-inner.style-three input:not([type=checkbox]):not([type=submit]) {
  border-radius: 5px;
  border: 1px solid #393A3D;
  background: #141414;
  height: 50px;
  margin-bottom: 0;
  color: #fff;
}
.newsletter-form .newsletter-inner.style-three input:not([type=checkbox]):not([type=submit])::placeholder {
  color: #ABABAB;
}
.newsletter-form .newsletter-inner.style-three .newsletter-submit {
  height: 50px;
  min-width: 130px;
  background: #094ec0;
  letter-spacing: 0.7px;
  font-weight: 600;
  border: 0;
}
.newsletter-form .newsletter-inner.style-three .newsletter-submit:hover {
  background: rgb(6.7164179104, 58.2089552239, 143.2835820896);
}
.newsletter-form .newsletter-inner.style-three.btn-inline {
  display: flex;
  position: relative;
  gap: 10px;
}
.newsletter-form .newsletter-inner.style-three.btn-inline .input-inner {
  margin-right: 20px;
}
.newsletter-form .newsletter-inner.style-three.btn-block .input-inner {
  margin-bottom: 20px;
}
@media (max-width: 440px) {
  .newsletter-form .newsletter-inner.style-three {
    display: block;
  }
}
.newsletter-form .input-inner {
  width: 100%;
}
.newsletter-form .form-result {
  margin: 20px 5px 0;
}
.newsletter-form input:not([type=checkbox]):not([type=submit]) {
  padding: 10px 20px;
  line-height: 19px;
  font-size: 16px;
  height: 64px;
  flex: 1;
  background: #fff;
  border: 0;
  color: #3d3d3d;
  margin: 0;
  transition: all 0.2s ease-in-out;
  box-shadow: none;
  border-radius: 35px;
}
.newsletter-form input:not([type=checkbox]):not([type=submit]):-webkit-autofill, .newsletter-form input:not([type=checkbox]):not([type=submit]):-webkit-autofill:hover, .newsletter-form input:not([type=checkbox]):not([type=submit]):-webkit-autofill:focus, .newsletter-form input:not([type=checkbox]):not([type=submit]):-webkit-autofill:active {
  transition: background-color 5000s ease-in-out 0s;
  -webkit-text-fill-color: #3d3d3d !important;
  background: transparent;
}
.newsletter-form input:not([type=checkbox]):not([type=submit])::placeholder {
  color: #677294;
}
.newsletter-form input:not([type=checkbox]):not([type=submit]):focus {
  background-color: #fff;
  box-shadow: none;
}
@media (max-width: 440px) {
  .newsletter-form input:not([type=checkbox]):not([type=submit]) {
    margin-bottom: 15px;
  }
}
.newsletter-form .newsletter-submit {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  height: 64px;
  padding: 0 30px;
  outline: 0;
  min-width: 180px;
  text-align: center;
  border-radius: 5px;
}
@media (max-width: 440px) {
  .newsletter-form .newsletter-submit {
    width: 100%;
  }
}
.newsletter-form .newsletter-submit:hover {
  color: #fff;
  background-color: #094ec0;
  border-color: #094ec0;
}
.newsletter-form .newsletter-submit .fa-spin {
  display: none;
}
.newsletter-form .newsletter-submit.clicked .fa-spin {
  display: block;
}
.newsletter-form .newsletter-submit.clicked span {
  display: none;
}

.show-input-icon-yes .show_before_icon .input-inner {
  position: relative;
}
.show-input-icon-yes .show_before_icon .input-inner:before {
  position: absolute;
  content: "\e086";
  font-family: "simple-line-icons";
  font-style: normal;
  color: #677294;
  top: 52%;
  left: 20px;
  transform: translateY(-50%);
  font-size: 18px;
}
.show-input-icon-yes .show_before_icon .input-inner input:not([type=checkbox]):not([type=submit]) {
  padding: 10px 20px 10px 50px;
}

.position-left {
  margin: 0;
}

.position-right {
  margin: 0 0 0 auto;
}

.position-center {
  margin: 0 auto;
}

.tc-newsletter {
  display: flex;
  gap: 46px;
  align-items: flex-end;
  max-width: 475px;
}
@media (max-width: 768px) {
  .tc-newsletter {
    gap: 24px;
  }
}
@media (max-width: 440px) {
  .tc-newsletter {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
.tc-newsletter input[type=email] {
  margin-bottom: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  border: 0 !important;
  border-bottom: 2px solid #3d3d3d !important;
  padding: 10px 0 !important;
  max-width: 320px !important;
  width: 100%;
}
.tc-newsletter input[type=email]:focus {
  outline: none;
}
.tc-newsletter input[type=email]::placeholder {
  color: rgba(61, 61, 61, 0.64) !important;
}
.tc-newsletter .pps-newsletter-button {
  background-color: transparent;
  border: 0;
  color: #3d3d3d;
  padding: 0;
  display: inline-flex;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  align-items: center;
  gap: 5px;
}
.tc-newsletter .tc-newsletter-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
}
.tc-newsletter .tc-newsletter-wrapper i {
  font-weight: 600;
  font-size: 19px;
}

/*--------------------------------------------------------------
## Service Box
--------------------------------------------------------------*/
.tc-service {
  position: relative;
}
.tc-service__highlight {
  color: #888;
  font-weight: 400;
}
.tc-service__icon {
  position: absolute;
  color: #ffffff;
  z-index: 1;
}
@media (max-width: 576px) {
  .tc-service__icon {
    width: 58px;
    height: 76px;
  }
}
.tc-service__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 32px 32px;
  z-index: 2;
  position: relative;
}
.tc-service__title {
  font-weight: 600;
  letter-spacing: -0.6px;
}
@media (max-width: 768px) {
  .tc-service__title {
    font-weight: 600;
    line-height: 24px;
  }
}
.tc-service__btn {
  color: #3d3d3d;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 768px) {
  .tc-service__btn {
    font-size: 10px;
  }
}
.tc-service--one {
  background-color: #D6EFFF;
  position: relative;
}
.tc-service--one .tc-service__icon {
  right: 0;
  bottom: 0;
}
.tc-service--one .tc-service__content {
  min-height: 356px;
}
.tc-service--one .tc-service__title {
  font-size: 30px;
  line-height: 36px;
}
@media (max-width: 768px) {
  .tc-service--one .tc-service__title {
    font-size: 16px;
  }
}
.tc-service--one .tc-service__btn {
  font-size: 16px;
}
.tc-service--two {
  background-color: #84D6FF;
  position: relative;
}
.tc-service--two .tc-service__icon {
  right: 0;
  top: 0;
}
@media (max-width: 576px) {
  .tc-service--two .tc-service__icon {
    width: 52px;
    height: 40px;
  }
}
.tc-service--two .tc-service__content {
  min-height: 373px;
}
.tc-service--two .tc-service__title {
  color: #3d3d3d;
  font-size: 24px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.24px;
}
@media (max-width: 768px) {
  .tc-service--two .tc-service__title {
    font-size: 12px;
    line-height: 18px;
  }
}
.tc-service--two__name {
  color: #3d3d3d;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.18px;
}
@media (max-width: 768px) {
  .tc-service--two__name {
    font-size: 12px;
  }
}
.tc-service--two__designation {
  color: #3d3d3d;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.14px;
}
@media (max-width: 768px) {
  .tc-service--two__designation {
    font-size: 10px;
  }
}

/*--------------------------------------------------------------
## Google Map
--------------------------------------------------------------*/
.tc-google-map {
  position: relative;
  width: 100%;
  height: 800px;
  overflow: hidden;
  border-radius: 16px;
  mix-blend-mode: luminosity;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media (max-width: 1440px) {
  .tc-google-map {
    height: 500px;
  }
}
@media (max-width: 1024px) {
  .tc-google-map {
    height: 400px;
  }
}
@media (max-width: 576px) {
  .tc-google-map {
    height: 367px;
  }
}
.tc-google-map__iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.tc-google-map__wrapper {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  padding: 20px 24px 24px;
  border-radius: 12px;
  min-width: 324px;
  z-index: 2;
}
@media (max-width: 576px) {
  .tc-google-map__wrapper {
    padding: 16px;
    min-width: auto;
    left: 8px;
    bottom: 8px;
  }
}
.tc-google-map__wrapper i {
  font-size: 20px;
}
@media (max-width: 576px) {
  .tc-google-map__wrapper i {
    width: 16px;
  }
}
.tc-google-map__title {
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .tc-google-map__title {
    margin-bottom: 10px;
  }
}
.tc-google-map__address {
  color: #3d3d3d;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  margin-bottom: 6px;
  display: flex;
  gap: 12px;
}
.tc-google-map__info {
  color: #3d3d3d;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  display: flex;
  flex-direction: column;
  margin: 0;
  gap: 10px;
}
.tc-google-map__link {
  color: #3d3d3d;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  text-decoration: none;
  display: flex;
  gap: 12px;
}

/*--------------------------------------------------------------
## Work Flow
--------------------------------------------------------------*/
.tc-work-flow {
  position: relative;
}
.tc-work-flow__step {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-left: 56px;
}
.tc-work-flow__step::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 24px;
  width: 1px;
  height: calc(100% + 36px);
  background: #D1D1D1;
  z-index: 0;
}
.tc-work-flow__step:last-child::before {
  display: none;
}
.tc-work-flow__step:not(:last-child) {
  margin-bottom: 40px;
}
.tc-work-flow__circle {
  width: 48px;
  height: 48px;
  border: 2px solid #ffffff;
  color: #094EC0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 1;
  text-shadow: 0px 1px 1px rgba(9, 78, 192, 0.18), 0px 1px 0px rgba(225, 225, 225, 0.7);
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.18px;
  background: linear-gradient(180deg, #FFF 0%, #F3F3F3 100%);
  outline: 4px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05), 0 0 0 4px #ECECEC;
}
.tc-work-flow__content {
  margin-left: 20px;
}
.tc-work-flow__title {
  color: #3d3d3d;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
}
.tc-work-flow__description {
  color: #5d5d5d;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.18px;
  margin: 0;
}

/*--------------------------------------------------------------
## Intro Video
--------------------------------------------------------------*/
.gpt-video-thumbnail {
  position: relative;
  overflow: hidden;
  height: 225px;
}
@media (max-width: 1440px) {
  .gpt-video-thumbnail {
    max-height: 141px;
  }
}

.gpt-popup-video-widget {
  max-width: 400px;
  border-radius: 10px;
  border: 4px solid #094EC0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1440px) {
  .gpt-popup-video-widget {
    max-width: 250px;
  }
}
.gpt-popup-video-widget .hide-video-box {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 22;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  color: #094ec0;
}
@media (max-width: 767px) {
  .gpt-popup-video-widget .hide-video-box {
    display: none;
  }
}

.gpt-video-thumbnail iframe {
  max-width: 400px;
  width: 400px !important;
  height: 226px;
  pointer-events: none;
}
@media (max-width: 1440px) {
  .gpt-video-thumbnail iframe {
    width: 250px;
    height: 142px;
  }
}

.gpt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  background: #fff;
  border-radius: 50%;
  height: 56px;
  width: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: #094ec0;
  cursor: pointer;
}
@media (max-width: 1440px) {
  .gpt-play-btn {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
}
.gpt-play-btn:before {
  content: "";
  left: -11px;
  top: -11px;
  right: -11px;
  bottom: -11px;
  position: absolute;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  z-index: -1;
  border: 1.865px solid #D5DEED;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 20.513px 59.675px 0 rgba(11, 18, 32, 0.12);
}
@media (max-width: 1440px) {
  .gpt-play-btn:before {
    left: -5px;
    top: -5px;
    right: -5px;
    bottom: -5px;
  }
}
.gpt-play-btn i {
  margin-left: 7px;
}
@media (max-width: 1440px) {
  .gpt-play-btn i {
    margin-left: 3px;
  }
}

.gpt-video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(29, 42, 64, 0.5);
  backdrop-filter: blur(24px);
}

.gpt-video-content {
  position: absolute;
  margin: auto;
  width: 80%;
  max-width: 800px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  border: 4px solid #FFF;
  max-height: 458px;
}
@media (max-width: 991px) {
  .gpt-video-content {
    max-width: 535px;
    height: 308px;
  }
}
@media (max-width: 767px) {
  .gpt-video-content {
    max-width: 300px;
    max-height: 175px;
  }
}

.gpt-video-content iframe {
  width: 100%;
  height: 450px;
  border-radius: 16px;
  border: 0;
}
@media (max-width: 991px) {
  .gpt-video-content iframe {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .gpt-video-content iframe {
    height: 165px;
  }
}

.gpt-close {
  position: absolute;
  right: -56px;
  top: 0;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  border-radius: 12px;
  background: #3d3d3d;
  transition: all 0.3s ease-in-out;
}

/*--------------------------------------------------------------
## Referral Form
--------------------------------------------------------------*/
.tc-referral-form {
  border-radius: 16px;
  border: 2px solid #FFF;
  background: linear-gradient(180deg, #FFF 0%, #F3F3F3 100%);
  box-shadow: -80px 80px 160px 0px rgba(0, 0, 0, 0.24);
  padding: 48px;
}
@media (max-width: 576px) {
  .tc-referral-form {
    box-shadow: 0px 3px 7px -2px #B3B3B3;
  }
}
.tc-referral-form__field:not(:last-child) {
  margin-bottom: 36px;
}
@media (max-width: 576px) {
  .tc-referral-form__field:not(:last-child) {
    margin-bottom: 30px;
  }
}
.tc-referral-form__label {
  color: #888888;
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.tc-referral-form__input {
  color: #5d5d5d;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  width: 100%;
  border: none;
  border-bottom: 1px solid #D1D1D1;
  padding: 8px 0;
  outline: none;
  background: transparent;
}
@media (max-width: 576px) {
  .tc-referral-form__input {
    font-size: 16px;
    line-height: 24px;
  }
}
.tc-referral-form__input--link {
  color: #1A0DAB;
}
.tc-referral-form__value--referral {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.tc-referral-form__icon {
  cursor: pointer;
  font-size: 20px;
  margin-left: -20px;
  margin-top: -10px;
}
.tc-referral-form__tooltip {
  position: absolute;
  top: -22px;
  right: 0;
  background-color: #000;
  color: #fff;
  padding: 2px 6px;
  font-size: 12px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}
.tc-referral-form__tooltip.show {
  opacity: 0.9;
}

/*--------------------------------------------------------------
## Tabs
--------------------------------------------------------------*/
#tc-dynamic-tabs {
  position: relative;
  z-index: 2;
}
#tc-dynamic-tabs.horizontal #tc-dynamic-tabs-nav {
  margin: 0;
  padding: 5px;
  list-style: none;
  border-radius: 30px;
  background: #EDEBF4;
  display: inline-block;
}
#tc-dynamic-tabs.horizontal #tc-dynamic-tabs-nav li {
  display: inline-block;
}
#tc-dynamic-tabs.horizontal #tc-dynamic-tabs-nav .tab-badge {
  color: #FD462C;
  font-size: 12px;
  font-weight: 700;
  background: rgba(253, 70, 44, 0.1);
  padding: 3px 7px 5px;
  border-radius: 30px;
  margin-left: 5px;
  display: inline-block;
  line-height: 1;
}
#tc-dynamic-tabs.horizontal #tc-dynamic-tabs-nav.style-one li:not(:last-child) {
  margin-right: 7px;
}
#tc-dynamic-tabs.horizontal #tc-dynamic-tabs-nav.style-one li a {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 20px;
  border-radius: 30px;
  color: #525258;
  display: inline-flex;
  align-items: center;
}
#tc-dynamic-tabs.horizontal #tc-dynamic-tabs-nav.style-one li.active a {
  background-color: #ffffff;
}
#tc-dynamic-tabs.horizontal #tc-dynamic-tabs-nav.style-two {
  border-bottom: 1px solid #E8E8E9;
  position: relative;
}
#tc-dynamic-tabs.horizontal #tc-dynamic-tabs-nav.style-two li:nth-child(-n+2) {
  margin-right: 70px;
}
#tc-dynamic-tabs.horizontal #tc-dynamic-tabs-nav.style-two li a {
  background: #BFE3E8;
  border-radius: 25px;
  padding: 17px 36px;
  font-weight: 600;
  font-size: 14px;
  line-height: 30px;
  text-transform: uppercase;
  color: #5A5E62;
  display: inline-block;
  position: relative;
}
#tc-dynamic-tabs.horizontal #tc-dynamic-tabs-nav.style-two li.active a {
  border-radius: 50px;
  background: #FFF;
  box-shadow: 0 1px 4px 0 rgba(0, 20, 90, 0.1);
}
#tc-dynamic-tabs.horizontal #tc-dynamic-tabs-nav.style-two li.active a:after {
  animation: featureProgressScaleX 10s linear forwards;
}
#tc-dynamic-tabs.horizontal .tc-dynamic-tabs-contents {
  margin-top: 60px;
}
#tc-dynamic-tabs.vertical {
  display: flex;
}
@media (max-width: 767px) {
  #tc-dynamic-tabs.vertical {
    flex-direction: column;
  }
}
#tc-dynamic-tabs.vertical #tc-dynamic-tabs-nav {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
  min-width: 200px;
  height: max-content;
  text-align: left;
  margin-right: 50px;
}
@media (max-width: 767px) {
  #tc-dynamic-tabs.vertical #tc-dynamic-tabs-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
    margin-right: 0;
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  #tc-dynamic-tabs.vertical #tc-dynamic-tabs-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
#tc-dynamic-tabs.vertical #tc-dynamic-tabs-nav li {
  display: block;
}
#tc-dynamic-tabs.vertical #tc-dynamic-tabs-nav li:not(:last-child) {
  margin-bottom: 20px;
}
#tc-dynamic-tabs.vertical #tc-dynamic-tabs-nav li a {
  background: #BFE3E8;
  border-radius: 30px;
  padding: 17px 36px;
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  #tc-dynamic-tabs.vertical #tc-dynamic-tabs-nav li a {
    font-size: 14px;
    padding: 10px 20px;
  }
}
#tc-dynamic-tabs.vertical #tc-dynamic-tabs-nav li.active a {
  color: #ffffff;
  background: #094ec0;
}
#tc-dynamic-tabs.vertical #tc-dynamic-tabs-content {
  flex: 1;
  overflow-y: auto;
}

.tc-dynamic-tabs-wrapper .content {
  position: relative;
}
.tc-dynamic-tabs-wrapper .content:not(:first-child) {
  display: none;
}

.tab-swipe-line {
  background: #094ec0;
  position: absolute;
  left: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 2px;
  bottom: 0;
}

@keyframes featureProgressScale {
  0% {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
@keyframes featureProgressScaleX {
  0% {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.d-none {
  display: none !important;
}

.block-vertical-slider #scrollspy {
  position: sticky;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.2s ease-in;
}

.list-group {
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.block-vertical-slider #scrollspy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.2s ease-in;
  margin-right: 50px;
}

.block-vertical-slider #scrollspy .list-group-item.active {
  background-color: #ff8200;
}

.block-vertical-slider #scrollspy .list-group-item {
  width: 8px;
  background-color: #d0d3d4;
  border-radius: 0;
  padding: 0;
  height: 100%;
  max-height: 92px;
  margin-bottom: 12px;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #ff8200;
  border-color: #ff8200;
}

.list-group-item:first-child {
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
}

.block-vertical-slider .slider-content.active {
  opacity: 1;
}

.block-vertical-slider .slider-content h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-style: normal;
  font-weight: 800;
  font-size: 36px;
  line-height: 44px;
  color: #111921;
}
@media screen and (max-width: 991px) {
  .block-vertical-slider .slider-content h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .block-vertical-slider .slider-content h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .block-vertical-slider .slider-content h3 br {
    display: none;
  }
}

.block-vertical-slider .slider-content {
  opacity: 0.6;
  transition: all 0.2s ease-in;
}
.block-vertical-slider .slider-content p {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  color: #5A5E62;
  margin-bottom: 26px;
}
.block-vertical-slider .slider-content .tc-btn {
  font-family: "Plus Jakarta Sans", sans-serif;
  color: #0987F8;
  border-color: #0987F8;
  padding: 9px 26px;
  line-height: 1.2;
}
.block-vertical-slider .slider-content .tc-btn:hover {
  color: #fff;
  background-color: #0987F8;
  border-color: #0987F8;
}

.block-vertical-slider {
  position: relative;
}

@media (min-width: 768px) {
  .block-vertical-slider .slider-image {
    position: sticky;
    top: 200px;
    transition: all 0.2s ease-in;
  }
  .block-vertical-slider .slider-image .slider-image--wrapper:first-child {
    opacity: 1 !important;
  }
  .d-md-block {
    display: block !important;
  }
  .block-vertical-slider .slider-image .slider-image--wrapper:first-child {
    opacity: 1 !important;
  }
  .block-vertical-slider .slider-image .slider-image--wrapper {
    transition: all 0.2s ease-in;
  }
  .block-vertical-slider .slider-image .slider-image--wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .block-vertical-slider .slider-image {
    position: sticky;
    top: 200px;
    transition: all 0.2s ease-in;
  }
  .block-vertical-slider .slider-image .slider-image--wrapper:first-child {
    opacity: 1 !important;
  }
  .block-vertical-slider .slider-image .slider-image--wrapper {
    transition: all 0.2s ease-in;
  }
  .block-vertical-slider .slider-content {
    display: block;
    padding-top: 150px;
    padding-bottom: 150px;
    min-height: 300px;
  }
  .d-md-block {
    display: block !important;
  }
  .block-vertical-slider .slider-image .slider-image--wrapper:not(:first-child) {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
  }
}
.tc-scrolling-tab__content {
  position: relative;
}
.tc-scrolling-tab__content .circle-shape {
  position: absolute;
  background: #E7F0FD;
  z-index: -1;
}
.tc-scrolling-tab__content.tc-scrolling-tab__content--one .circle-shape {
  width: 370px;
  height: 370px;
  right: -37px;
  top: -70px;
  border-radius: 50%;
}
.tc-scrolling-tab__content.tc-scrolling-tab__content--one .tc-scrolling-tab__content-image-one {
  flex: 1;
  margin-right: 10px;
}
.tc-scrolling-tab__content.tc-scrolling-tab__content--two .circle-shape {
  width: 100%;
  height: 280px;
  top: 0;
  left: 0;
}
.tc-scrolling-tab__content.tc-scrolling-tab__content--two .tc-scrolling-tab__content-image-two {
  flex: 1;
  margin-left: 10px;
}

/*--------------------------------------------------------------
## Faq
--------------------------------------------------------------*/
.tc-faq__button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(232, 232, 233, 0.9);
  border-radius: 100px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.05) inset;
  list-style: none;
  margin: 0;
  max-width: 800px;
  padding: 2px;
}
.tc-faq__dropdown {
  display: none;
}
.tc-faq__tab {
  color: #888888;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 15px 22px;
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.2s ease-in-out;
  border: 2px solid transparent;
}
@media (max-width: 992px) {
  .tc-faq__tab {
    padding: 8px;
    font-size: 12px;
  }
}
.tc-faq__tab--active {
  border: 2px solid #ffffff;
  border-radius: 100px;
  color: #3d3d3d;
  background: linear-gradient(180deg, #ffffff 0%, #F3F3F3 100%);
  box-shadow: 0px 3px 7px -2px #B3B3B3;
}
.tc-faq__content {
  padding-top: 40px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 576px) {
  .tc-faq__button {
    flex-wrap: wrap;
    border-radius: 0;
    padding: 10px;
    background: transparent;
    box-shadow: none;
    display: none;
  }
  .tc-faq__dropdown {
    display: inline-block;
    position: relative;
    margin: 0 auto;
    border-radius: 100px;
    background: rgba(232, 232, 233, 0.9);
    box-shadow: 0px 3px 7px -2px #B3B3B3;
    padding: 4px;
    min-width: 335px;
  }
  .tc-faq__dropdown:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 80px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #094ec0;
    font-size: 16px;
  }
  .tc-faq__select {
    width: 100%;
    font-size: 16px;
    color: #3d3d3d;
    font-weight: 500;
    line-height: normal;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 2px solid #ffffff;
    padding: 18px 0px;
    border-radius: 100px;
    margin-bottom: 0;
    text-align: center;
    background: linear-gradient(180deg, #FFF 0%, #F3F3F3 100%);
    box-shadow: 0px 3px 7px -2px #B3B3B3;
    padding-right: 20px;
  }
  .tc-faq__tab {
    padding: 10px;
    max-width: 50%;
    width: 50%;
  }
  .tc-faq__content {
    padding-top: 4px;
  }
}
@media (max-width: 576px) and (max-width: 1440px) {
  .tc-faq__content {
    padding-top: 0px;
  }
}

/*--------------------------------------------------------------
## Market Competitor
--------------------------------------------------------------*/
.tc-market-competitor__desktop-view, .tc-market-competitor__mobile-view {
  padding: 8px;
  background: #ECECEC;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.tc-market-competitor__mobile-view {
  width: 100%;
  margin-bottom: 24px;
  display: none;
}
.tc-market-competitor__desktop-view {
  display: none;
  width: 1320px;
  margin: 0 auto;
}
.tc-market-competitor__swiper-container {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.tc-market-competitor__feature {
  display: flex;
  align-items: center;
}
.tc-market-competitor__title {
  margin: 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: 12px;
  padding: 18px 30px;
  font-size: 16px;
  font-weight: 500;
  color: #5d5d5d;
  border-radius: 12px;
  border: 1px solid #EBEBEB;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.48) 100%);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05) inset, 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0 4px 6px -2px rgba(10, 13, 18, 0.03), 0 2px 2px -1px rgba(10, 13, 18, 0.04);
  min-width: 314px;
}
.tc-market-competitor__title i {
  font-size: 18px;
  color: #094EC0;
  display: flex;
  align-items: center;
  padding: 9px;
  cursor: pointer;
  font-weight: 400;
  line-height: 0;
}
.tc-market-competitor__popup {
  position: relative;
}
.tc-market-competitor__popup:hover .tc-market-competitor__help {
  visibility: visible;
  opacity: 1;
}
.tc-market-competitor__popup i {
  padding: 0;
}
.tc-market-competitor__help {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: -110px;
  transform: translateX(-50%);
  width: 250px;
  color: #3D3D3D;
  background-color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  white-space: normal;
  z-index: 10;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.tc-market-competitor__plan {
  display: flex;
  gap: 8px;
}
.tc-market-competitor__plan .tc-market-competitor__column:nth-child(2) {
  background: #B0B0B0;
  padding: 4px;
  border-radius: 16px;
  margin-bottom: auto;
}
.tc-market-competitor__plan .tc-market-competitor__column:nth-child(2) .tc-market-competitor__logo {
  padding: 36px 22px;
}
@media (max-width: 1440px) {
  .tc-market-competitor__plan .tc-market-competitor__column:nth-child(2) .tc-market-competitor__logo {
    padding: 18px 7px;
  }
}
.tc-market-competitor__plan .tc-market-competitor__column:nth-child(2) .tc-market-competitor__price {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, #FFF 100%);
  font-weight: 600;
}
.tc-market-competitor__plan .tc-market-competitor__column:nth-child(2) .tc-market-competitor__price i {
  font-weight: 400;
}
.tc-market-competitor__header {
  font-weight: 700;
  font-size: 16px;
  color: #2c3e50;
  margin-bottom: 16px;
  text-align: center;
  padding: 0 10px;
}
.tc-market-competitor__value {
  font-weight: 600;
  text-align: center;
  width: 100%;
  color: #2b6cb0;
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.tc-market-competitor__footer {
  padding: 24px 46px;
  width: 100%;
  border-radius: 12px;
  border: 1px solid #EBEBEB;
  background: linear-gradient(90deg, #fff 80%, rgba(54, 212, 204, 0.19) 90%, rgba(189, 216, 122, 0.31) 100%);
  display: flex;
  align-items: center;
  gap: 64px;
  margin-left: auto;
}
.tc-market-competitor__heading {
  color: #3D3D3D;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.72px;
  margin: 0;
}
.tc-market-competitor__fancy-title {
  width: auto;
}
.tc-market-competitor__description {
  color: #5d5d5d;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  letter-spacing: -0.18px;
}
.tc-market-competitor__swiper-button-next, .tc-market-competitor__swiper-button-prev {
  color: #094ec0;
  background: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 30px;
  cursor: pointer;
}
.tc-market-competitor__swiper-button-next i, .tc-market-competitor__swiper-button-prev i {
  font-size: 24px;
  font-weight: bold;
}
.tc-market-competitor__swiper-button-next {
  left: 80px;
}
.tc-market-competitor__swiper-button-prev {
  left: auto;
}
.tc-market-competitor__comparison {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.tc-market-competitor__list {
  display: flex;
  gap: 8px;
  flex-direction: column;
  padding-top: 0px;
}
.tc-market-competitor__price {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 190px;
  padding: 18px 14px;
  font-size: 16px;
  font-weight: 400;
  color: #5d5d5d;
  border-radius: 12px;
  border: 1px solid #EBEBEB;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.48) 100%);
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05) inset, 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0 4px 6px -2px rgba(10, 13, 18, 0.03), 0 2px 2px -1px rgba(10, 13, 18, 0.04);
}
.tc-market-competitor__price i {
  font-size: 24px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 0;
  padding: 13px;
  color: #5d5d5d;
}
.tc-market-competitor__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 38px 22px;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  color: #5d5d5d;
  border-radius: 12px;
  border: 1px solid #EBEBEB;
  background: #ffffff;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.05) inset, 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0 4px 6px -2px rgba(10, 13, 18, 0.03), 0 2px 2px -1px rgba(10, 13, 18, 0.04);
}
.tc-market-competitor__logo img {
  width: 136px;
  height: 30px !important;
  object-fit: contain;
}
.tc-market-competitor__column {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tc-market-competitor__plan-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 1399px) {
  .tc-market-competitor__logo, .tc-market-competitor__title, .tc-market-competitor__price {
    min-width: 100px;
    padding: 18px 7px;
    font-size: 13px;
  }
  .tc-market-competitor__list {
    padding-top: 0px;
    margin-top: -40px;
  }
  .tc-market-competitor__logo img {
    object-fit: contain;
  }
}
@media (max-width: 1199px) {
  .tc-market-competitor__list {
    padding-top: 0px;
    margin-top: -40px;
  }
}
@media (min-width: 1022px) and (max-width: 1399px) {
  .tc-market-competitor__desktop-view {
    display: block;
    width: 100%;
    min-width: 100%;
  }
  .tc-market-competitor__logo, .tc-market-competitor__title, .tc-market-competitor__price {
    padding: 18px 35px;
  }
}
@media (max-width: 1023px) {
  .tc-market-competitor__mobile-view {
    display: block;
  }
  .tc-market-competitor__desktop-view {
    display: none;
  }
  .tc-market-competitor__list {
    padding-top: 86px;
    margin-top: 0;
  }
  .tc-market-competitor__title {
    min-width: 232px;
    padding: 13px 10px;
    font-size: 14px;
  }
  .tc-market-competitor__price {
    min-width: 100px;
    padding: 13px 10px;
    font-size: 14px;
  }
  .tc-market-competitor__logo {
    min-width: auto;
    padding: 25px 12px;
  }
  .tc-market-competitor__logo img {
    object-fit: contain;
  }
  .tc-market-competitor__footer {
    padding: 16px;
    flex-direction: column;
    align-items: normal;
    gap: 10px;
  }
  .tc-market-competitor__heading {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.4px;
  }
  .tc-market-competitor__description {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 991px) {
  .tc-market-competitor__list {
    padding-top: 86px;
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .tc-market-competitor__list {
    padding-top: 90px;
    margin-top: 0px;
  }
}
@media (max-width: 575px) {
  .tc-market-competitor__list {
    padding-top: 90px;
    margin-top: 0px;
  }
}
@media (max-width: 375px) {
  .tc-market-competitor__price, .tc-market-competitor__title {
    min-width: auto;
    font-size: 12px;
  }
}
@media (min-width: 1023px) {
  .tc-market-competitor__mobile-view {
    display: none;
  }
  .tc-market-competitor__desktop-view {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
## Contact Form
--------------------------------------------------------------*/
.tc-form-boxed__form {
  display: flex;
  flex-direction: column;
}
.tc-form-boxed__group:not(:last-child) {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .tc-form-boxed__group:not(:last-child) {
    margin-bottom: 12px;
  }
}
.tc-form-boxed__label {
  color: #888888;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}
.tc-form-boxed__required {
  color: #094EC0;
  margin-left: 2px;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}
.tc-form-boxed__input {
  color: #888888;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  padding: 12px 0px;
  border: none;
  width: 100%;
  border-bottom: 1px solid #D1D1D1;
  background: transparent;
}
.tc-form-boxed__input:focus {
  outline: none;
}
.tc-form-boxed__input::placeholder {
  color: #888888;
}
.tc-form-boxed--textarea {
  height: 110px;
}
@media (max-width: 576px) {
  .tc-form-boxed--textarea {
    height: 70px;
  }
}
.tc-form-boxed--checkbox {
  margin-top: -20px;
  margin-bottom: 13px;
}
.tc-form-boxed__checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #888888;
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.16px;
}
.tc-form-boxed__checkbox {
  width: 16px;
  height: 16px;
  accent-color: #000;
  margin-bottom: 0;
  margin-top: -2px;
}
.tc-form-boxed__link {
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.16px;
  text-decoration: underline !important;
}
.tc-form-boxed__link:hover {
  color: #3d3d3d;
}

/*--------------------------------------------------------------
## Contact Info
--------------------------------------------------------------*/
.tc-contact-info__container {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 575px) {
  .tc-contact-info__container {
    gap: 22px;
  }
}
.tc-contact-info__image-wrap {
  flex-basis: 80px;
  border-radius: 80px;
  border: 3px solid #F3F3F5;
  mix-blend-mode: luminosity;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  box-shadow: -4px 4px 8px 0px rgba(0, 0, 0, 0.12);
}
@media (max-width: 575px) {
  .tc-contact-info__image-wrap {
    flex-basis: 78px;
  }
}
.tc-contact-info__image {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  border-radius: 50% !important;
}
.tc-contact-info__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tc-contact-info__name {
  color: #3d3d3d;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  margin-bottom: 4px;
}
.tc-contact-info__position {
  color: #6D6D6D;
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}
.tc-contact-info__divider {
  margin: 20px 0 15px;
  border: none;
  border-top: 1px solid #D9D9D9;
  width: 250px;
}
.tc-contact-info__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tc-contact-info__item {
  color: #3d3d3d;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tc-contact-info__item i {
  font-size: 20px;
}
.tc-contact-info__phone, .tc-contact-info__email {
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
}
.tc-contact-info__phone:hover, .tc-contact-info__email:hover {
  color: #3d3d3d;
}

/*--------------------------------------------------------------
## Image
--------------------------------------------------------------*/
.image-wrapper {
  position: relative;
}
.image-wrapper .content-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
}

.popup-play-btn {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  height: 55px;
  width: 55px;
  background: #fff;
  display: block;
  line-height: 58px;
  font-size: 24px;
  border-radius: 50%;
  animation: ripple-white 1s linear infinite;
  color: #094ec0;
}
.popup-play-btn i {
  margin-left: 8px;
}
.popup-play-btn:hover {
  background: #094ec0;
  color: #fff;
}

.tc-parallax__image {
  position: relative;
  z-index: 3;
  text-align: right;
  max-width: 670px;
}
.tc-parallax__image .image-two, .tc-parallax__image .image-three {
  position: absolute;
}
.tc-parallax__image .image-two {
  left: 190px;
  top: 210px;
}
.tc-parallax__image .image-three {
  bottom: 210px;
  left: 104px;
}
.tc-parallax__image .circle {
  position: absolute;
  left: auto;
  right: 0;
  bottom: 30px;
  background-image: linear-gradient(60deg, #504cfa 0%, #ff3695 100%);
  height: 500px;
  width: 500px;
  opacity: 0.051 !important;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .tc-parallax__image .circle {
    height: 400px;
    width: 400px;
  }
}
@media (max-width: 768px) {
  .tc-parallax__image .circle {
    height: 300px;
    width: 300px;
  }
}
.tc-parallax__image .dot_shape {
  position: absolute;
  left: 165px;
  bottom: 45px;
  z-index: -1;
  animation: wave 3s 0.1s infinite linear;
  right: 0;
  top: 100px;
}
.tc-parallax__image-style-2 .parallax-image {
  position: relative;
  z-index: 2;
  margin-left: -55px;
}
.tc-parallax__image-style-2 .circle {
  display: block;
  height: 340px;
  width: 340px;
  background: #fefcf3;
  border-radius: 50%;
  position: absolute;
  bottom: -25px;
  left: -110px;
  opacity: 1 !important;
  z-index: -1;
}
.tc-parallax__image-style-2 .dot_shape {
  position: absolute;
  left: 165px;
  right: auto;
  bottom: 45px;
  top: auto;
  z-index: 1;
  animation: wave 3s 0.1s infinite linear;
}
.tc-parallax__image-style-3 .parallax-image {
  margin-right: -50px;
}
.tc-parallax__image-style-3 .circle {
  background: #fcf8fc;
  right: -140px;
  left: auto;
  top: auto;
  bottom: 40px;
  opacity: 1 !important;
  height: 340px;
  width: 340px;
  z-index: -2;
}
.tc-parallax__image-style-3 .dot_shape {
  right: 140px;
  top: auto;
  left: auto;
  bottom: 50px;
  opacity: 1;
}
.tc-parallax__image-style-4 .parallax-image {
  position: relative;
  z-index: 3;
  margin-left: 65px;
  text-align: left;
}
.tc-parallax__image-style-4 .image-two {
  left: 270px;
  top: 50px;
  z-index: 2;
}
.tc-parallax__image-style-4 .circle {
  position: absolute;
  right: -40%;
  left: auto;
  top: -20%;
  height: 650px;
  width: 650px;
  background: #f6f9fb;
  border-radius: 50%;
  opacity: 1 !important;
}
.tc-parallax__image-style-4 .dot_shape {
  right: -60px;
  left: auto;
  top: auto;
  bottom: 20px;
  z-index: 1;
  animation: jump 3s infinite;
}
.tc-parallax__image-style-5 {
  position: relative;
  max-width: 470px;
  height: 624px;
  margin: 0 auto;
}
.tc-parallax__image-style-5 .animate-circle.style-one {
  position: absolute;
  top: 0;
  margin-right: -43px;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.tc-parallax__image-style-5 .animate-circle img {
  position: absolute;
}
.tc-parallax__image-style-5 .animate-circle .anim-bg-one {
  right: -80px;
  top: 80px;
  animation: wave 4s 0.1s infinite linear;
}
.tc-parallax__image-style-5 .animate-circle .anim-bg-two {
  top: 127px;
  left: 57px;
  animation: wave 3s 0.1s infinite linear;
  transition-delay: 0.3s;
}
.tc-parallax__image-style-5 .animate-circle .anim-bg-three {
  left: 25px;
  top: 150px;
  animation: wave 2s 0.1s infinite linear;
  transition-delay: 0.5s;
}
.tc-parallax__image-style-5 .image-one {
  right: -33px;
  top: 0;
}
.tc-parallax__image-style-5 .image-two {
  left: 3px;
  top: 53%;
  transform: translateY(-50%);
  z-index: 44;
}

@keyframes wave {
  0% {
    transform: rotateZ(0deg) translate3d(0, 1%, 0) rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg) translate3d(0, 1%, 0) rotateZ(-360deg);
  }
}
@keyframes jump {
  0% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(5px);
  }
}
/*--------------------------------------------------------------
## Marque Text
--------------------------------------------------------------*/
.marquee-text {
  position: relative;
  overflow: hidden;
}

.marquee-text {
  position: relative;
}

.marquee__text-inner {
  position: relative;
  display: flex;
  width: max-content;
}
.marquee__text-inner.style--one .marquee__text-part {
  position: relative;
  font-family: "Hanken Grotesk", sans-serif;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 1.625em;
  line-height: 1;
  font-weight: 500;
  text-transform: uppercase;
  color: #3d3d3d;
  transition: all 0.3s ease-in-out;
  height: auto;
}
.marquee__text-inner.style--one .marquee__text-part .arrow {
  line-height: 1;
  margin: 0 35px;
  display: inline-block;
  animation: rotate-reverse 15s linear infinite;
  transition: 0.7s cubic-bezier(0.5, 0.5, 0, 1);
}
.marquee__text-inner.style--one .marquee__text-part .arrow.active {
  animation: rotate 15s linear infinite;
  transition: 0.7s cubic-bezier(0.5, 0.5, 0, 1);
}
.marquee__text-inner.style--two .marquee__text-part {
  color: #FFF7DC;
  font-size: 40px;
  font-weight: 700;
  text-transform: uppercase;
}
.marquee__text-inner.style--two .marquee__text-part .arrow {
  line-height: 1;
  margin: 0 50px;
  display: inline-block;
  transform: rotate(180deg);
  transition: 0.7s cubic-bezier(0.5, 0.5, 0, 1);
  width: 50px;
}
.marquee__text-inner.style--two .marquee__text-part .arrow.active {
  transform: rotate(0deg);
  transition: 0.7s cubic-bezier(0.5, 0.5, 0, 1);
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-reverse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/*--------------------------------------------------------------
## progressbar
--------------------------------------------------------------*/
/* Progressbar Counter */
.tc-progress {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}
@media (max-width: 767px) {
  .tc-progress {
    gap: 16px;
  }
}
@media (max-width: 576px) {
  .tc-progress {
    gap: 10px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.tc-progress__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #ffffff;
  border-radius: 28px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media (max-width: 767px) {
  .tc-progress__item {
    padding: 32px 16px;
    border-radius: 16px;
  }
}
@media (max-width: 576px) {
  .tc-progress__item {
    border-radius: 8px;
  }
}
.tc-progress .tc-progress-circle {
  position: relative;
  width: 128px;
  height: 128px;
  margin-bottom: 24px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .tc-progress .tc-progress-circle {
    width: 72px;
    height: 72px;
  }
}
@media (max-width: 420px) {
  .tc-progress .tc-progress-circle {
    width: 72px;
    height: 72px;
  }
}
.tc-progress__percentage {
  position: absolute;
  font-size: 24px;
  font-weight: bold;
  color: #5D5D5D;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
}
.tc-progress__percentage span.seconds {
  font-weight: 300;
  font-size: 84%;
}
@media (max-width: 767px) {
  .tc-progress__percentage {
    font-size: 16px;
  }
}
.tc-progress__label {
  font-size: 16px;
  color: #666;
  margin-bottom: 14px;
}

/*--------------------------------------------------------------
## Feature Product
--------------------------------------------------------------*/
/* Feature Product */
.tc-feature-product__card {
  background: transparent;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out;
  text-align: left;
}
.tc-feature-product__card-wrapper {
  background: #fff;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #EBEBEB;
}
.tc-feature-product__card-image {
  text-align: center;
  border: 10px solid #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.tc-feature-product__card-image-img {
  width: 100%;
  border-radius: 8px !important;
}
.tc-feature-product__card-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.tc-feature-product__card-tag {
  background: #FFF;
  color: #414651;
  font-size: 13px;
  font-weight: 500;
  padding: 2px 10px;
  border-radius: 4px;
  text-transform: capitalize;
  border: 1px solid #E9EAEB;
  cursor: pointer;
}
.tc-feature-product__card-content {
  text-align: left;
}
.tc-feature-product__card-title {
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.48px;
  font-weight: 500;
  color: #000;
  margin-bottom: 0;
}
.tc-feature-product__card-divider {
  height: 1px;
  background: #D1D1D1;
  margin: 15px auto;
}
.tc-feature-product__card-description {
  font-size: 18px;
  line-height: 26px;
  font-weight: normal;
  color: #4F4F4F;
}

/*--------------------------------------------------------------
## Product Theme
--------------------------------------------------------------*/
.tc-theme {
  margin-top: 0;
}
.tc-theme__image-wrapper {
  border-radius: 12px;
  border: 1px solid #EBEBEB;
  background: #ffffff;
  position: relative;
  padding: 40px 20px 20px 20px;
  margin-bottom: 28px;
}
@media (max-width: 576px) {
  .tc-theme__image-wrapper {
    padding: 27px 13px 13px;
    margin-bottom: 20px;
  }
  .tc-theme__image-wrapper .tc-card-bullet {
    top: 11px;
    left: 13px;
  }
}
.tc-theme__image {
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden;
  padding: 8px;
}
.tc-theme__image img {
  border-radius: 6px !important;
  display: block;
  width: 100%;
  height: auto;
}
.tc-theme__title {
  font-weight: 500;
  padding-bottom: 13px;
  margin-bottom: 13px;
  border-bottom: 1px solid #D1D1D1;
  line-height: 1.3;
}
.tc-theme__title a {
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: all 0.7s;
  background-image: linear-gradient(to bottom, #3d3d3d 0%, #3d3d3d 98%);
}
.tc-theme__title a:hover {
  background-size: 100% 2px;
  color: #3d3d3d;
}
@media (max-width: 767px) {
  .tc-theme__title {
    font-size: 20px;
  }
}
.tc-theme__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 15px;
}
.tc-theme__cats-item, .tc-theme__cats span {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid #E9EAEB;
  background: #FAFAFA;
  color: #414651;
  line-height: 1;
  font-size: 13px;
}
.tc-theme__tagline {
  display: block;
  font-size: 18px;
  color: #3d3d3d;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .tc-theme__tagline {
    font-size: 16px;
    margin-bottom: 28px;
  }
}
.tc-theme__button-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 24px;
  row-gap: 10px;
}
@media (max-width: 420px) {
  .tc-theme__button-container {
    flex-direction: column;
    justify-content: center;
    gap: 18px;
  }
  .tc-theme__button-container .tc-btn {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.tc-theme__button-container a.edd-submit.button.blue {
  background: transparent;
  padding: 0;
  box-shadow: none !important;
  gap: 10px;
  display: flex;
  color: #5D5D5D;
  font-weight: 500;
}
.tc-theme__button-container a.edd-submit.button.blue:after {
  content: "\e955";
  color: #5D5D5D;
  font-size: 16px;
  font-weight: 400;
}
.tc-theme__button-container a.edd-submit.button.blue:before {
  background: transparent;
  border: 0;
  box-shadow: none;
}
.tc-theme__button-container a.edd-submit.button.blue span {
  background: transparent;
  padding: 0;
  text-shadow: none;
  color: #5D5D5D;
  font-weight: 500;
}
.tc-theme__button-container a.edd-submit.button.blue:hover span, .tc-theme__button-container a.edd-submit.button.blue:hover:after {
  color: #094ec0;
}
.tc-theme__button-container .tc-btn i {
  font-weight: 500;
  color: #094ec0;
}
.tc-theme__button-container .tc-button-link {
  color: #5D5D5D;
  font-weight: 500;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.tc-theme__button-container .tc-button-link i {
  font-weight: 500;
}
.tc-theme__button-container .tc-button-link svg path {
  transition: all 0.3s ease-in-out;
}
.tc-theme__button-container .tc-button-link:hover {
  color: #094ec0;
}
.tc-theme__button-container .tc-button-link:hover svg path {
  stroke: #094ec0;
}

.tc-theme-products--grid .tc-theme {
  margin-top: 0;
}
@media (min-width: 1024px) {
  .tc-theme-products--grid .tc-theme {
    margin-bottom: 80px !important;
  }
}
@media (max-width: 767px) {
  .tc-theme-products--grid .tc-theme {
    margin-bottom: 58px !important;
  }
}

@media (min-width: 1024px) {
  .tc-theme-products--grid .tc-theme-products {
    display: grid;
    column-gap: 20px;
  }
  .tc-theme-products--grid .tc-theme-products--column-2 {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
  }
  .tc-theme-products--grid .tc-theme-products--column-3 {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 30px;
  }
  .tc-theme-products--grid .tc-theme-products--column-4 {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
  }
  .tc-theme-products--grid .tc-theme-products--column-5 {
    grid-template-columns: repeat(5, 1fr);
    column-gap: 30px;
  }
}
.tc-theme__next {
  right: 0;
}
@media (max-width: 576px) {
  .tc-theme__next {
    right: 16px;
  }
}

.tc-theme__prev {
  left: 0;
}

.swiper-container.overflow-visible {
  overflow: visible !important;
}

@media (min-width: 1024px) {
  .tc-theme-products--grid .tc-theme__prev, .tc-theme-products--grid .tc-theme__next {
    display: none;
  }
}

.swiper-pagination .tc-theme__pagination {
  margin-top: 16px;
}
@media (max-width: 767px) {
  .swiper-pagination .tc-theme__pagination {
    margin-top: 0;
  }
}

/* Product Theme Archive Page */
.tc-product-archive-header {
  padding-top: 240px;
  background-color: #f3f3f5;
  position: relative;
  z-index: 1;
}
.tc-product-archive-header:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 517px;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: top center;
  z-index: -1;
}
@media (max-width: 991px) {
  .tc-product-archive-header {
    padding-top: 126px;
  }
}
.tc-product-archive-header__title {
  max-width: 900px;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .tc-product-archive-header__title {
    max-width: 700px;
  }
}
@media (max-width: 1024px) {
  .tc-product-archive-header__title {
    max-width: 500px;
  }
}
@media (max-width: 480px) {
  .tc-product-archive-header__title {
    line-height: 42px;
  }
}
.tc-product-archive-header__title span {
  font-weight: 400;
  color: #888888;
}
.tc-product-archive-header__description {
  max-width: 780px;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .tc-product-archive-header__description {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 0;
  }
}

.tc-product-filter {
  border-radius: 12px;
  background: #ECECEC;
  padding: 8px 8px 8px 24px;
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 30px;
}
@media (max-width: 991px) {
  .tc-product-filter {
    padding-left: 8px;
  }
}
@media (max-width: 576px) {
  .tc-product-filter {
    margin-bottom: 22px;
    margin-top: 25px;
  }
}

.tc-product-filter__items {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .tc-product-filter__reset {
    width: 100%;
  }
}

a.tc-product-filter__reset-button {
  border-radius: 8px;
  border: 1px solid #E9EAEB;
  background: #ffffff;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #B0B0B0;
  cursor: initial;
}
@media (max-width: 480px) {
  a.tc-product-filter__reset-button {
    width: 100%;
    justify-content: center;
  }
}
a.tc-product-filter__reset-button:hover {
  color: #B0B0B0;
}
a.tc-product-filter__reset-button.active {
  color: #3d3d3d;
  cursor: pointer;
}
a.tc-product-filter__reset-button.active:hover {
  color: #3d3d3d;
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(55, 65, 81);
  margin-bottom: 0.25rem;
}

.tc-dropdown-container {
  position: relative;
}
@media (max-width: 576px) {
  .tc-dropdown-container {
    width: 100%;
  }
}

.post-type-archive .header-fixed.showed {
  display: none;
}

.tc-product-filter {
  position: relative;
  z-index: 2;
  animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1);
}
@media (min-width: 992px) {
  .tc-product-filter.is-sticky {
    position: sticky;
    top: 14px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.84);
    backdrop-filter: blur(16px);
  }
  .header-position .tc-product-filter.is-sticky {
    top: 48px;
  }
}

.tc-product-filter__wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tc-filter-dropdown-toggle {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px !important;
  font-size: 16px;
  border-radius: 8px;
  border: 1px solid #E9EAEB !important;
  background: #ffffff !important;
  box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04);
  color: #3d3d3d !important;
  font-weight: 500;
  min-width: 160px;
}
.tc-filter-dropdown-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}
@media (max-width: 576px) {
  .tc-filter-dropdown-toggle {
    min-width: auto;
    width: 100%;
  }
}
.tc-filter-dropdown-toggle i {
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
}
.tc-filter-dropdown-toggle:after {
  display: none;
}

.tc-filter-dropdown-toggle:hover {
  background-color: rgb(249, 250, 251);
}

.chevron-down {
  width: 1rem;
  height: 1rem;
  color: rgb(156, 163, 175);
}

.tc-filter-dropdown {
  display: none;
  position: absolute;
  top: 130%;
  left: 0;
  right: 0;
  z-index: 50;
  max-width: 280px;
  border-radius: 12px;
  border: 1px solid #E9EAEB;
  background: #ffffff;
  box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04);
  padding: 8px 8px 12px !important;
  width: 280px;
}
@media (max-width: 480px) {
  .tc-filter-dropdown {
    top: 105%;
  }
}

.tc-filter-dropdown.show {
  display: block;
}

.search-container {
  position: relative;
  padding: 0 0.5rem;
  border-bottom: 1px solid rgb(229, 231, 235);
  display: flex;
  align-items: center;
  border-radius: 8px;
  background: #ECECEC;
  margin-bottom: 10px;
}
.search-container .search-input {
  border: 0 !important;
  background: transparent !important;
  margin-bottom: 0 !important;
  height: 40px !important;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  color: rgb(156, 163, 175);
}

.search-input {
  width: 100%;
  padding: 0.5rem 2.5rem;
  font-size: 0.875rem;
  border: 1px solid rgb(209, 213, 219);
  border-radius: 0.375rem;
  outline: none;
}

.search-input:focus {
  border-color: rgb(59, 130, 246);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

.clear-search {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.clear-search svg {
  width: 1rem;
  height: 1rem;
  color: rgb(156, 163, 175);
}

.options-container {
  max-height: 350px;
  overflow-y: auto;
  margin-top: 10px;
}
.options-container::-webkit-scrollbar {
  width: 7px;
}
.options-container::-webkit-scrollbar-thumb {
  background-color: #D1D1D1;
  border-radius: 10px;
}

.tc-filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  cursor: pointer;
  color: #5D5D5D;
  font-size: 16px;
}
.tc-filter-option input[type=radio] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;
  position: relative;
  font: inherit;
  color: #D1D1D1;
  width: 20px;
  height: 20px;
  border: 0.15em solid #D1D1D1;
  border-radius: 50%;
}
.tc-filter-option input[type=radio]:before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #3d3d3d;
  left: 50%;
  top: 50%;
}
.tc-filter-option input[type=radio]:checked {
  border-color: #3d3d3d;
}
.tc-filter-option input[type=radio]:checked::before {
  transform: scale(1) translate(-50%, -50%);
}

.selection-display {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: white;
  border-radius: 0.375rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.selection-display p {
  font-size: 0.875rem;
  color: #5D5D5D;
}

.selection-display .selected-value {
  font-weight: 500;
  color: rgb(17, 24, 39);
}

.hidden {
  display: none;
}

.select_wrap {
  position: relative;
  user-select: none;
  min-width: 160px;
}

.select_wrap .default_option {
  background: #fff;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 22px;
  box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0 4px 6px -2px rgba(10, 13, 18, 0.03), 0 2px 2px -1px rgba(10, 13, 18, 0.04);
  border: 1px solid #E9EAEB;
  color: #3d3d3d;
  font-weight: 500;
}
.select_wrap .default_option i {
  font-weight: 600;
  font-size: 18px;
  display: inline-block;
  vertical-align: middle;
}

.select_wrap .select_ul {
  position: absolute;
  top: 55px;
  left: 0;
  width: 280px;
  display: none;
  margin: 0;
  list-style: none;
  z-index: 33;
  border-radius: 12px;
  border: 1px solid #E9EAEB;
  background: #ffffff;
  box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04);
  padding: 8px !important;
}

.select_wrap .select_ul li {
  cursor: pointer;
}

.select_wrap .option p {
  margin-bottom: 0;
}

.select_wrap.active .select_ul {
  display: block;
}

p.tc-total-product-count {
  font-size: 18px;
  color: #5d5d5d;
  margin-bottom: 24px;
}
@media (max-width: 576px) {
  p.tc-total-product-count {
    font-size: 16px;
    margin-bottom: 16px;
  }
}
p.tc-total-product-count span {
  color: #3d3d3d;
  font-weight: 500;
}

.tc-product-archive .tc-theme {
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .tc-product-archive .tc-theme {
    margin-bottom: 64px;
  }
}
.tc-product-archive #post-pagination {
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .tc-product-archive #post-pagination {
    margin-top: 0;
  }
}

.tc-product-list {
  min-height: 700px;
  position: relative;
}
.tc-product-list .loading {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  font-size: 30px;
}

.tc-pagination {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Logo Carousel Section */
.tc-product-archive {
  padding-bottom: 120px;
  position: relative;
  z-index: 444;
  background-color: #f3f3f5;
  padding-top: 47px;
}
@media (max-width: 767px) {
  .tc-product-archive {
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .tc-product-archive .col-md-12 {
    margin: 0 -16px;
  }
}
.product-cta-section {
  background-color: #f3f3f5;
  padding-bottom: 120px;
  position: relative;
  z-index: 9;
  overflow: hidden;
  border-radius: 0 0 80px 80px;
}
@media (max-width: 1024px) {
  .product-cta-section {
    border-radius: 0 0 50px 50px;
  }
}
@media (max-width: 767px) {
  .product-cta-section {
    border-radius: 0 0 28px 28px;
    padding-bottom: 40px;
  }
}

.tc-call-to-action {
  background: #00FF00;
  border-radius: 20px;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
  z-index: 9;
  align-items: flex-end;
  overflow: hidden;
}
@media (max-width: 991px) {
  .tc-call-to-action {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 7px;
  }
}
.tc-call-to-action:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/pattern.png") repeat;
  opacity: 0.07;
  z-index: -1;
}
.tc-call-to-action__content {
  padding: 72px;
  flex-basis: 660px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1280px) {
  .tc-call-to-action__content {
    max-width: 550px;
    padding: 60px;
  }
}
@media (max-width: 1200px) {
  .tc-call-to-action__content {
    max-width: 500px;
    padding: 40px;
  }
}
@media (max-width: 991px) {
  .tc-call-to-action__content {
    max-width: 100%;
    padding: 80px 40px 32px;
    flex-basis: auto;
  }
}
@media (max-width: 576px) {
  .tc-call-to-action__content {
    padding: 80px 16px 32px;
  }
}
.tc-call-to-action__title {
  font-size: 36px;
  color: #3d3d3d;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 576px) {
  .tc-call-to-action__title {
    font-size: 30px;
  }
}
.tc-call-to-action__title span {
  font-weight: 500;
  color: rgba(61, 61, 61, 0.56);
}
.tc-call-to-action__description {
  letter-spacing: -0.18px;
  font-size: 18px;
  color: #3d3d3d;
  margin-bottom: 26px;
}
@media (max-width: 576px) {
  .tc-call-to-action__description {
    font-size: 16px;
    line-height: 24px;
  }
}

.tc-product-archive .tc-call-to-action__image-wrapper .tc-card-bullet .tc-card-bullet__item {
  background: rgba(0, 0, 0, 0.56) !important;
}

.tc-call-to-action__image-wrapper {
  padding-right: 57px;
  max-width: 524px;
}
@media (max-width: 1280px) {
  .tc-call-to-action__image-wrapper {
    padding-right: 32px;
    max-width: 550px;
  }
}
@media (max-width: 1200px) {
  .tc-call-to-action__image-wrapper {
    padding-right: 32px;
    max-width: 450px;
  }
}
@media (max-width: 991px) {
  .tc-call-to-action__image-wrapper {
    padding: 0 40px 80px;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .tc-call-to-action__image-wrapper {
    padding: 0 16px 80px;
  }
}

.tc-call-to-action__image-inner {
  position: relative;
  padding: 40px 20px 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}
@media (max-width: 991px) {
  .tc-call-to-action__image-inner {
    padding: 40px 20px 20px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
  }
}

.tc-call-to-action__image {
  background: #fff;
  padding: 32px 20px 0 20px;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
}
.tc-call-to-action__image img {
  border-radius: 6px 6px 0 0;
}

.tc-product-archive .tc-call-to-action__image img {
  max-height: 100%;
  height: 305px;
  width: 444px;
  max-width: 100%;
  object-fit: cover;
  object-position: top center;
}

.product-logo-section {
  background: #3D3D3D;
  padding: 235px 0 160px;
  border-radius: 0 0 80px 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: -80px;
}
@media (max-width: 1024px) {
  .product-logo-section {
    border-radius: 0 0 50px 50px;
    margin-top: -50px;
    padding: 150px 0 100px;
  }
}
@media (max-width: 767px) {
  .product-logo-section {
    border-radius: 0 0 28px 28px;
    margin-top: -28px;
    padding: 110px 0 80px;
  }
}
.product-logo-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/pattern.png") repeat;
  opacity: 0.32;
  z-index: -1;
}

.product-logo-title {
  font-size: 20px;
  color: #fff;
  text-align: center;
  font-weight: 500;
  letter-spacing: unset;
  margin-bottom: 40px;
}
.product-logo-title span {
  color: rgba(255, 255, 255, 0.64);
}

.product-logo__item {
  text-align: center;
}

.single-product-details-banner {
  padding-top: 235px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  .single-product-details-banner {
    padding-top: 127px;
  }
}

.my-20 {
  margin: 20px 0;
}
@media (max-width: 991px) {
  .my-20 {
    margin: 10px 0;
  }
}
@media (max-width: 991px) {
  .my-20 {
    margin: 6px 0;
  }
}

.product-image-marque-slider-left .swiper-wrapper, .product-image-marque-slider-right .swiper-wrapper {
  transition-timing-function: linear;
  align-items: center;
}

.single-product-details-banner__inner {
  position: relative;
}
@media (max-width: 991px) {
  .single-product-details-banner__inner {
    position: static;
  }
}

.tc-product-single-header-overlay {
  max-height: 520px;
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
}

.single-product-details-banner__content {
  padding-bottom: 116px;
}
@media (max-width: 1200px) {
  .single-product-details-banner__content {
    padding-bottom: 80px;
  }
}
@media (max-width: 991px) {
  .single-product-details-banner__content {
    padding-bottom: 64px;
    max-width: 85%;
  }
}
@media (max-width: 576px) {
  .single-product-details-banner__content {
    padding-bottom: 36px;
  }
}

.single-product-details-banner__title {
  max-width: 850px;
  line-height: 1.1;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .single-product-details-banner__title {
    max-width: 650px;
  }
}
@media (max-width: 991px) {
  .single-product-details-banner__title {
    max-width: 85%;
    margin-bottom: 18px;
    line-height: 1.2;
  }
}
.single-product-details-banner__title .highlight {
  color: #888888;
  font-weight: 400;
}

.single-product-details-banner__category {
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.single-product-details-banner__category a {
  color: #414651;
  display: inline-block;
  border-radius: 4px;
  border: 1px solid #E9EAEB;
  background: #FAFAFA;
  font-size: 13px;
  padding: 4px 8px;
  font-weight: 500;
  line-height: 1;
}

.product-version-tooltip {
  position: relative;
}
.product-version-tooltip:hover .product-version-tooltip__content {
  opacity: 1;
  visibility: visible;
}

.product-version-tooltip__content {
  position: absolute;
  border-radius: 8px;
  border: 1px solid #E9EAEB;
  background: var(--White, #FFF);
  box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04);
  width: max-content;
  padding: 12px 16px;
  z-index: 2;
  bottom: 24px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.product-version-tooltip__content .product-version-tooltip__item {
  display: block;
  font-size: 14px;
}

.product-single__info {
  padding: 0;
  list-style: none;
  display: flex;
  column-gap: 30px;
  row-gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
@media (max-width: 991px) {
  .product-single__info {
    margin-bottom: 25px;
  }
}
.product-single__info li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-single__info li span {
  font-weight: 500;
  color: #3d3d3d;
}

.product-single-buttons {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 576px) {
  .product-single-buttons {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

.product-details_image {
  text-align: center;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 80px 80px;
}
@media (max-width: 1024px) {
  .product-details_image {
    border-radius: 0 0 50px 50px;
  }
}
@media (max-width: 991px) {
  .product-details_image {
    border-radius: 0 0 28px 28px;
  }
}
.product-details_image:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 400px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.72) 100%);
  z-index: 1;
}

.product-details-wrapper {
  background: #ffffff;
  position: relative;
  z-index: 50;
  border-radius: 0 0 80px 80px;
  padding: 118px 0;
}
@media (max-width: 1024px) {
  .product-details-wrapper {
    border-radius: 0 0 50px 50px;
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .product-details-wrapper {
    border-radius: 0 0 28px 28px;
  }
}
@media (max-width: 576px) {
  .product-details-wrapper {
    padding: 34px 0;
  }
}

.product-details-subtitle {
  font-size: 36px;
  font-weight: 600;
  color: #3d3d3d;
  margin-bottom: 27px;
}
@media (max-width: 1200px) {
  .product-details-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 576px) {
  .product-details-subtitle {
    margin-bottom: 23px;
    letter-spacing: -0.48px;
  }
}

.tc-box-style {
  border-radius: 16px;
  background: #ECECEC;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.05) inset;
  padding: 8px !important;
}

.product-details_content-inner {
  padding-right: 80px;
}
@media (max-width: 1200px) {
  .product-details_content-inner {
    padding-right: 60px;
  }
}
@media (max-width: 991px) {
  .product-details_content-inner {
    padding-right: 0;
  }
}
@media (max-width: 576px) {
  .product-details_content-inner .product-details-subtitle {
    margin-bottom: 8px;
  }
}
.product-details_content-inner p {
  font-size: 18px;
  line-height: 30px;
}
@media (max-width: 991px) {
  .product-details_content-inner p {
    font-size: 16px;
    line-height: 26px;
  }
}

@media (max-width: 991px) {
  .mt-md-80 {
    margin-top: 80px;
  }
}
@media (max-width: 576px) {
  .mt-md-80 {
    margin-top: 40px;
  }
}

.product-details-plugins {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 991px) {
  .product-details-plugins {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(12rem, 100%), 1fr));
    gap: 8px;
  }
}
.product-details-plugins__item {
  display: flex;
  border-radius: 12px;
  border: 1px solid #EBEBEB;
  background: #ffffff;
  box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04);
  margin-bottom: 6px;
  flex-wrap: wrap;
  padding: 40px 32px;
  gap: 28px;
}
@media (max-width: 991px) {
  .product-details-plugins__item {
    flex-direction: column;
    margin-bottom: 0;
    padding: 32px 20px;
    gap: 20px;
  }
}
.product-details-plugins__icon {
  flex-basis: 80px;
}
@media (max-width: 1200px) {
  .product-details-plugins__icon {
    flex-basis: 60px;
  }
}
@media (max-width: 991px) {
  .product-details-plugins__icon img {
    max-height: 52px;
  }
}
.product-details-plugins__content {
  flex: 2;
}
.product-details-plugins__title {
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 1200px) {
  .product-details-plugins__title {
    font-size: 22px;
  }
}
@media (max-width: 991px) {
  .product-details-plugins__title {
    font-size: 20px;
  }
}
.product-details-plugins__description {
  margin-bottom: 0;
  font-size: 18px;
}
@media (max-width: 1200px) {
  .product-details-plugins__description {
    font-size: 16px;
  }
}

.feature-lists-wrapper {
  margin-top: 108px;
}
@media (max-width: 991px) {
  .feature-lists-wrapper {
    margin-top: 60px;
  }
}
@media (max-width: 576px) {
  .feature-lists-wrapper {
    margin-top: 27px;
  }
  .feature-lists-wrapper h2.product-details-subtitle {
    margin-bottom: 14px;
  }
}

ul.feature-lists {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  row-gap: 18px;
}
@media (max-width: 767px) {
  ul.feature-lists {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 576px) {
  ul.feature-lists {
    row-gap: 16px;
  }
}
ul.feature-lists li {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 18px;
}
@media (max-width: 576px) {
  ul.feature-lists li {
    font-size: 16px;
  }
}
ul.feature-lists li i {
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #DCFAE6;
  font-size: 16px;
  color: #079455;
  font-weight: 700;
}
ul.feature-lists li span {
  color: #3d3d3d;
  font-weight: 600;
}

.product-details_features-inner {
  margin-top: 117px;
}
@media (max-width: 991px) {
  .product-details_features-inner {
    margin-top: 80px;
  }
}
@media (max-width: 576px) {
  .product-details_features-inner {
    margin-top: 32px;
  }
}

.responsive-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 991px) {
  .responsive-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}
.responsive-boxes__item {
  text-align: center;
  padding: 46px 34px;
  border-radius: 12px;
  border: 1px solid #EBEBEB;
  background-color: #ffffff;
  box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04);
}
@media (max-width: 1200px) and (min-width: 992px) {
  .responsive-boxes__item {
    padding: 32px 16px;
  }
}
@media (max-width: 576px) {
  .responsive-boxes__item {
    padding: 32px 16px;
  }
}
.responsive-boxes__content {
  max-width: 137px;
  margin: 0 auto;
}
.responsive-boxes__title {
  color: #3d3d3d;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}
@media (max-width: 576px) {
  .responsive-boxes__title {
    font-size: 16px;
  }
}
.responsive-boxes__icon {
  margin-bottom: 30px;
  height: 67px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 576px) {
  .responsive-boxes__icon {
    margin-bottom: 26px;
    height: auto;
  }
  .responsive-boxes__icon img {
    max-width: 100%;
    height: 43px;
  }
}
.responsive-boxes__description {
  font-size: 16px;
  color: #888888;
  margin-bottom: 0;
  line-height: 22px;
}
@media (max-width: 576px) {
  .responsive-boxes__description {
    font-size: 14px;
    line-height: 22px;
  }
}

.product-performance {
  margin-top: 118px;
}
@media (max-width: 767px) {
  .product-performance {
    margin-top: 44px;
  }
}

.product-performance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
@media (max-width: 991px) {
  .product-performance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tc-circle-progressbar {
  border-radius: 12px;
  padding: 48px 40px;
}
@media (max-width: 576px) {
  .tc-circle-progressbar {
    padding: 26px 24px;
  }
}
.tc-circle-progressbar .tc-counter__label {
  margin-bottom: 17px;
}
@media (max-width: 576px) {
  .tc-circle-progressbar .tc-counter__label {
    margin-bottom: 12px;
    font-size: 14px;
    margin-bottom: 4px;
  }
}
.tc-circle-progressbar .tc-progress-circle-wrapper {
  position: relative;
  margin-bottom: 29px;
}
@media (max-width: 576px) {
  .tc-circle-progressbar .tc-progress-circle-wrapper {
    margin-bottom: 14px;
  }
}
.tc-circle-progressbar .tc-progress-circle-wrapper .tc-counter__percentage {
  position: absolute;
  font-size: 24px;
  font-weight: bold;
  color: #5D5D5D;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 576px) {
  .tc-circle-progressbar .tc-progress-circle-wrapper .tc-counter__percentage {
    font-size: 16px;
  }
}

.product-demo-section {
  background: #3D3D3D;
  padding: 190px 0 150px;
  border-radius: 0 0 80px 80px;
  z-index: 40;
  position: relative;
  margin-top: -80px;
  overflow: hidden;
}
.product-demo-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: url(../images/pattern.png) repeat;
  z-index: -1;
  opacity: 0.32;
}
@media (max-width: 1024px) {
  .product-demo-section {
    border-radius: 0 0 50px 50px;
    padding: 178px 0 77px;
  }
}
@media (max-width: 991px) {
  .product-demo-section {
    border-radius: 0 0 28px 28px;
    padding: 150px 0 77px;
  }
}
.product-demo-section__heading-wrapper {
  text-align: center;
}
.product-demo-section .product-demo-section__title {
  color: #fff;
  margin-bottom: 57px;
  margin-top: -28px;
}
@media (max-width: 991px) {
  .product-demo-section .product-demo-section__title {
    margin-top: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .product-demo-section .product-demo-section__title {
    margin-bottom: 26px;
    font-size: 30px;
  }
}
.product-demo-section .product-demo-section__title span {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.56);
}
.product-demo-section .demo-count {
  text-align: center;
  -webkit-text-stroke: 1px transparent;
  font-size: 128px;
  font-weight: 600;
  letter-spacing: -7.68px;
  color: transparent;
  display: inline-block;
  line-height: 1;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 991px) {
  .product-demo-section .demo-count {
    display: none;
  }
}

.product-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 32px;
  row-gap: 51px;
}
@media (max-width: 991px) {
  .product-demo-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 24px;
    row-gap: 40px;
  }
}
@media (max-width: 440px) {
  .product-demo-grid {
    grid-template-columns: repeat(1, 1fr) !important;
    column-gap: 0;
  }
}
@media (max-width: 440px) {
  .product-demo-grid__item {
    max-width: 264px;
    margin: 0 auto;
  }
}
.product-demo-grid__inner {
  position: relative;
  padding: 40px 20px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .product-demo-grid__inner {
    padding: 30px 13px 13px;
  }
}
.product-demo-grid__image {
  border-radius: 8px;
  background: var(--White, #FFF);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.12);
  padding: 8px;
  overflow: hidden;
}
.product-demo-grid__image img {
  transition: all 0.4s ease-in-out;
}
.product-demo-grid__title {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.24px;
  margin-bottom: 0;
  text-align: center;
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 767px) {
  .product-demo-grid__title {
    font-size: 16px;
  }
}
.product-demo-grid__title a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}
.product-demo-grid__title a:hover {
  color: #fff;
  text-decoration: underline;
}
.product-demo-grid .tc-client__link:hover .product-demo-grid__image img {
  transform: scale(1.07);
}
.product-demo-grid .tc-client__link:hover .product-demo-grid__title {
  color: #ffffff;
}

.product-testimonial-section {
  background: #ffffff;
  z-index: 20;
  position: relative;
  padding: 190px 32px 130px;
  border-radius: 0 0 80px 80px;
  margin-top: -80px;
}
@media (max-width: 1024px) {
  .product-testimonial-section {
    border-radius: 0 0 50px 50px;
    padding: 178px 0 77px;
  }
}
@media (max-width: 991px) {
  .product-testimonial-section {
    border-radius: 0 0 28px 28px;
    padding: 150px 16px 77px 16px;
  }
}
@media (max-width: 576px) {
  .product-testimonial-section {
    padding: 150px 0 77px 16px;
  }
}
.product-testimonial-section .product-testimonial-section__title {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.1;
}
@media (max-width: 991px) {
  .product-testimonial-section .product-testimonial-section__title {
    margin-top: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .product-testimonial-section .product-testimonial-section__title {
    margin-bottom: 26px;
  }
}
.product-testimonial-section .product-testimonial-section__title span {
  font-weight: 400;
  color: #888888;
}

@media (max-width: 992px) {
  .desktop-view {
    display: none;
  }
  .mobile-view {
    display: block;
  }
}
.mobile-view {
  display: none;
}
@media (max-width: 991px) {
  .mobile-view {
    display: block;
  }
}

.product-testimonial-slider {
  position: relative;
}
@media (max-width: 991px) {
  .product-testimonial-slider .swiper-container {
    overflow: visible;
  }
}
.product-testimonial-slider .tc-testimonial__prev, .product-testimonial-slider .tc-testimonial__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 33;
}
.product-testimonial-slider .tc-testimonial__prev {
  left: -8px;
}
.product-testimonial-slider .tc-testimonial__next {
  right: 8px;
}

.product-testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
@media (max-width: 992px) {
  .product-testimonial-grid.desktop-view {
    display: none;
  }
}
.product-testimonial-grid > div {
  width: calc(25% - 32px);
  margin: 0 16px 32px;
}
.product-testimonial-grid > div:first-child {
  margin-top: 60px;
}
.product-testimonial-grid > div:nth-child(4) {
  margin-top: 60px;
}
@media (max-width: 1440px) {
  .product-testimonial-grid > div {
    width: calc(33.33% - 32px);
  }
  .product-testimonial-grid > div:nth-child(4) {
    margin-top: 0;
  }
  .product-testimonial-grid > div:nth-child(3) {
    margin-top: 60px;
  }
}
@media (max-width: 1200px) {
  .product-testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .product-testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-testimonial-grid__item {
  padding: 42px 48px 40px;
  border-radius: 16px;
  border: 1px solid #E9EAEB;
  background: #ffffff;
  box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04);
  display: flex;
  flex-direction: column;
  row-gap: 68px;
  justify-content: space-between;
  height: max-content;
}
@media (max-width: 1440px) {
  .product-testimonial-grid__item {
    padding: 40px 32px 30px;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .product-testimonial-grid__item {
    padding: 30px 24px 28px;
    border-radius: 8px;
    box-shadow: 0 6.9px 9.2px -2.3px rgba(10, 13, 18, 0.08), 0px 2.3px 3.45px -1.15px rgba(10, 13, 18, 0.03), 0px 1.15px 1.15px -0.575px rgba(10, 13, 18, 0.04);
    gap: 29px;
    min-height: 251px;
  }
}
@media (max-width: 767px) {
  .product-testimonial-grid__item .tc-testimonial__rating {
    margin-top: 0 !important;
  }
}
@media (max-width: 576px) {
  .product-testimonial-grid__item .tc-testimonial__rating {
    font-size: 12px !important;
  }
}
.product-testimonial-grid__item.tc-testimonial-dark {
  border: 1px solid #6D6D6D;
  background: #3D3D3D;
  box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0 4px 6px -2px rgba(10, 13, 18, 0.03), 0 2px 2px -1px rgba(10, 13, 18, 0.04);
}
.product-testimonial-grid__item.tc-testimonial-dark .product-testimonial-grid__name, .product-testimonial-grid__item.tc-testimonial-dark .product-testimonial-grid__designation, .product-testimonial-grid__item.tc-testimonial-dark .product-testimonial-grid__review-content {
  color: #fff;
}
.product-testimonial-grid__item.tc-testimonial-dark .fa-star {
  color: #fff;
}
.product-testimonial-grid__name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  color: #3d3d3d;
}
@media (max-width: 767px) {
  .product-testimonial-grid__name {
    font-size: 16px;
  }
}
.product-testimonial-grid__designation {
  font-size: 14px;
  margin-bottom: 0;
  color: #5d5d5d;
}
@media (max-width: 767px) {
  .product-testimonial-grid__designation {
    font-size: 12px;
  }
}
.product-testimonial-grid__review-content {
  font-size: 20px;
  line-height: 30px;
}
@media (max-width: 1200px) {
  .product-testimonial-grid__review-content {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 1200px) {
  .product-testimonial-grid__review-content {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 991px) {
  .product-testimonial-grid__review-content {
    font-size: 16px;
    line-height: 26px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: -0.2px;
  }
}
@media (max-width: 767px) {
  .product-testimonial-grid__review-content {
    -webkit-line-clamp: 5;
  }
}

.similar-product-section {
  background: #F3F3F5;
  padding: 190px 0 78px;
  border-radius: 0 0 80px 80px;
  margin-top: -80px;
  z-index: 15;
  position: relative;
}
@media (max-width: 1024px) {
  .similar-product-section {
    border-radius: 0 0 50px 50px;
    padding: 178px 0 77px;
  }
}
@media (max-width: 991px) {
  .similar-product-section {
    border-radius: 0 0 28px 28px;
    padding: 150px 0 77px;
  }
}

h2.product-testimonial-section__title {
  font-size: 36px;
  letter-spacing: -0.72px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  h2.product-testimonial-section__title {
    font-size: 30px;
  }
}
h2.product-testimonial-section__title span {
  font-weight: 400;
  color: #888888;
}

.logo-carousel-section {
  position: relative;
  background: #3D3D3D;
  padding: 233px 0 150px;
  border-radius: 0 0 80px 80px;
  z-index: 10;
  margin-top: -80px;
  overflow: hidden;
}
.logo-carousel-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: url(../images/pattern.png) repeat;
  z-index: -1;
  opacity: 0.32;
}
@media (max-width: 1024px) {
  .logo-carousel-section {
    border-radius: 0 0 50px 50px;
    padding: 178px 0 77px;
  }
}
@media (max-width: 991px) {
  .logo-carousel-section {
    border-radius: 0 0 28px 28px;
    padding: 150px 0 77px;
  }
}

.logo-carousel-section__title {
  color: #fff;
  font-size: 20px;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 500;
  letter-spacing: unset;
}
.logo-carousel-section__title span {
  color: rgba(255, 255, 255, 0.64);
}

.tc-social-share {
  position: absolute;
  right: 16px;
  top: 34%;
  transform: translateY(-50%);
}
@media (max-width: 991px) {
  .tc-social-share {
    transform: translate(0);
    top: 126px;
  }
}
.tc-social-share svg {
  width: 16px;
}
.tc-social-share svg path {
  fill: #8E8E8E;
  transition: all 0.3s ease-in-out;
}
.tc-social-share .facebook svg {
  width: 12px;
}

.brand-logo-shape {
  position: absolute;
  right: 8%;
  bottom: 0;
}
@media (max-width: 1366px) {
  .brand-logo-shape svg {
    max-width: 150px;
    height: auto;
  }
}
@media (max-width: 991px) {
  .brand-logo-shape {
    right: -20px;
    bottom: 371px;
    opacity: 0.5;
  }
  .brand-logo-shape svg {
    max-width: 80px;
  }
}

.tc-social-share {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tc-social-share li:not(:last-child) {
  margin-bottom: 12px;
}
.tc-social-share li a {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}
.tc-social-share li a .tc-tooltip {
  color: #3d3d3d;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .tc-social-share li a .tc-tooltip {
    display: none;
  }
}
.tc-social-share li a .tc-social-icon {
  display: flex;
  height: 44px;
  width: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #E7E7E7;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.tc-social-share li a:hover .tc-tooltip {
  opacity: 1;
  visibility: visible;
}
.tc-social-share li a:hover .tc-social-icon {
  border-color: #3d3d3d;
}
.tc-social-share li a:hover .tc-social-icon svg path {
  fill: #3d3d3d;
}

.position-sticky {
  position: sticky;
  top: 100px;
}
@media (max-width: 991px) {
  .position-sticky {
    position: relative !important;
    top: 0;
  }
}

.testimonial-top-bottom, .testimonial-bottom-top {
  max-height: 700px;
  max-width: 440px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}

.testimonial-marquee {
  max-height: 700px;
  overflow: hidden;
}

.product-testimonial-grid__wrapper {
  position: relative;
}
@media (min-width: 992px) {
  .product-testimonial-grid__wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .product-testimonial-grid__wrapper:before, .product-testimonial-grid__wrapper:after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 150px;
    z-index: 3;
  }
  .product-testimonial-grid__wrapper:before {
    top: 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
  }
  .product-testimonial-grid__wrapper:after {
    bottom: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFF 100%);
  }
}
@media (max-width: 1440px) {
  .product-testimonial-grid__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-testimonial-grid__wrapper .hide-laptop {
    display: none;
  }
}
@media (max-width: 992px) {
  .product-testimonial-grid__wrapper .hide-tablet {
    display: none;
  }
}

.product-testimonial-grids {
  display: flex;
  align-items: flex-start;
}

.services-ticker-block {
  position: relative;
  display: flex;
  align-items: center;
  overflow-x: hidden;
}

.stb_line_single {
  position: relative;
  white-space: nowrap;
  padding: 0;
  will-change: transform;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.stb-item {
  padding: 0;
  font-size: 6.4rem;
  display: block;
  margin-right: 10rem;
  transition: none;
  line-height: 1.4;
}

.stb-item:hover {
  color: #C02534;
}

.testimonial-marquee__content {
  position: relative;
}

.product-testimonial-grid__item {
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
## Product Search
--------------------------------------------------------------*/
.product-search-btn {
  display: flex;
  gap: 5px;
  align-items: center;
  color: rgba(61, 61, 61, 0.64);
  cursor: pointer;
}
@media (max-width: 991px) {
  .product-search-btn {
    margin-top: 10px;
  }
}
.product-search-btn i {
  color: #3d3d3d;
}

.product-search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  height: 100%;
  background: #F3F3F5;
  z-index: 999999;
  display: none;
  padding-top: 24px;
  overflow-y: auto;
  padding-bottom: 100px;
}

.admin-bar .product-search-popup {
  top: 32px;
}

.product-ajax-search-form {
  display: flex;
  justify-content: space-between;
}

.tc-product-search {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
  line-height: 1;
}
.tc-product-search i {
  font-size: 24px;
  color: #3d3d3d;
}

.product-search-results-list:empty {
  display: none;
}

#tc-product-search-field {
  border: 0;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 24px;
  font-weight: 400;
  color: #3d3d3d;
}
@media (max-width: 991px) {
  #tc-product-search-field {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  #tc-product-search-field {
    font-size: 18px;
  }
}
#tc-product-search-field::placeholder {
  color: #B0B0B0;
}

.popup-search-close {
  display: flex;
  align-items: center;
  gap: 10px;
}

span.close-text {
  border-radius: 4px;
  border: 1px solid #E9EAEB;
  background: #FAFAFA;
  font-size: 13px;
  text-transform: uppercase;
  display: inline-block;
  padding: 4px 8px;
  line-height: 1;
  font-weight: 500;
}
@media (max-width: 991px) {
  span.close-text {
    display: none;
  }
}

button.popup-search-close-btn {
  border-radius: 12px !important;
  background: #3d3d3d !important;
  height: 64px !important;
  width: 64px;
  display: flex !important;
  align-items: center;
  padding: 0 !important;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  color: #fff !important;
  border: 0;
}
button.popup-search-close-btn i {
  font-size: 24px;
  color: #fff !important;
  line-height: 1;
}
@media (max-width: 767px) {
  button.popup-search-close-btn {
    height: 48px !important;
    width: 48px;
  }
  button.popup-search-close-btn i {
    font-size: 18px !important;
  }
}

.product-search-categories-list {
  margin: 24px 0 0;
  list-style: none;
  display: flex;
  border-radius: 12px;
  background: #ECECEC;
  padding: 8px !important;
  gap: 8px;
  flex-wrap: wrap;
}
.product-search-categories-list li a {
  padding: 10px 20px;
  background: #ffffff;
  color: #3d3d3d;
  display: inline-block;
  border-radius: 8px;
  border: 1px solid #E9EAEB;
  box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04);
  font-weight: 500;
}

.search-result-items {
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-radius: 12px;
  background: rgba(236, 236, 236, 0.84);
  box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04);
  backdrop-filter: blur(12px);
  max-width: 700px;
  padding: 8px;
}
.search-result-items li a {
  display: block;
  align-items: center;
  padding: 14px 24px 14px 20px;
  color: #B0B0B0;
  background: #ffffff;
  border-radius: 8px;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.48px;
  box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04);
  position: relative;
}
@media (max-width: 991px) {
  .search-result-items li a {
    font-size: 18px;
    line-height: 24px;
    padding: 10px 16px 10px 12px;
  }
}
.search-result-items li a:after {
  content: "\e930";
  font-family: "feather" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
}
@media (max-width: 991px) {
  .search-result-items li a:after {
    font-size: 14px;
    right: 10px;
  }
}
.search-result-items li a strong {
  color: #3d3d3d;
  font-weight: 500 !important;
}

.product-search-results-list {
  margin-top: 12px;
}

.search-results-grid {
  margin-top: 24px;
}
@media (min-width: 992px) {
  .search-results-grid {
    padding-top: 40px;
    border-top: 1px solid #D9D9D9;
    margin-top: 20px;
  }
}

.ajax-pagination {
  display: flex;
  justify-content: center;
  border-radius: 12px;
  background: #ECECEC;
  padding: 8px 36px;
  width: max-content;
  margin: 0 auto;
  gap: 36px;
}
@media (max-width: 576px) {
  .ajax-pagination {
    gap: 12px;
    padding: 8px 20px;
  }
}
.ajax-pagination .ajax-page-btn {
  background: transparent;
  border: 0;
  padding: 0;
  color: #3d3d3d;
  font-weight: 500;
}
.ajax-pagination .ajax-page-btn:disabled {
  pointer-events: none;
  color: #888888;
}
@media (max-width: 576px) {
  .ajax-pagination .ajax-page-btn .pagination-text {
    display: none;
  }
}
.ajax-pagination .ajax-page-btn:hover {
  color: #094ec0;
}
.ajax-pagination .product-pagination {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.ajax-pagination .product-pagination li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  line-height: 48px;
  border-radius: 8px;
  border: 1px solid #E9EAEB;
  background: var(--White, #FFF);
  box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.ajax-pagination .product-pagination li.active {
  background: linear-gradient(180deg, #474747 0%, #000 100%);
  box-shadow: 0 2px 2px 0 #000 inset, 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04);
  color: #fff;
}

.product-total-reasults-count {
  font-size: 18px;
  color: #5d5d5d;
}
.product-total-reasults-count span {
  font-weight: 500;
  color: #3d3d3d;
}
@media (max-width: 991px) {
  .product-total-reasults-count {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
## Toc Content
--------------------------------------------------------------*/
.toc-layout {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  padding-bottom: 100px;
}
@media (max-width: 767px) {
  .toc-layout {
    flex-direction: column;
    gap: 20px;
    padding-bottom: 80px;
  }
}

.scroll-section {
  display: block;
}

.toc-sidebar {
  width: 400px;
  padding: 8px 8px 40px 8px;
  position: sticky;
  top: 140px;
  height: fit-content;
  border-radius: 16px;
  background: #F3F3F5;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.05) inset;
}
@media (max-width: 991px) {
  .toc-sidebar {
    width: 350px;
  }
}
@media (max-width: 767px) {
  .toc-sidebar {
    width: 100%;
    position: static;
  }
}
.toc-sidebar .toc-title-wrapper {
  margin-bottom: 41px;
  border-radius: 12px;
  border: 1px solid #EBEBEB;
  background: #FFF;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.05) inset, 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0 4px 6px -2px rgba(10, 13, 18, 0.03), 0 2px 2px -1px rgba(10, 13, 18, 0.04);
  padding: 19px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.toc-sidebar .toc-title {
  font-size: 24px;
  font-weight: 500;
  color: #3d3d3d;
  letter-spacing: -0.24px;
  margin-bottom: 0;
}
.toc-sidebar .toc-title span {
  color: #888;
  font-weight: 400;
}
.toc-sidebar .tc-toc-list {
  list-style: none;
  padding: 0 26px;
  margin: 0;
}
.toc-sidebar .tc-toc-list li:not(:last-child) {
  margin-bottom: 18px;
}
.toc-sidebar .tc-toc-list li a {
  text-decoration: none;
  color: #454545;
  transition: color 0.2s;
  font-size: 18px;
}
.toc-sidebar .tc-toc-list li a:hover, .toc-sidebar .tc-toc-list li a.active {
  color: #094ec0;
}

.toc-content {
  flex: 2;
}

/*--------------------------------------------------------------
## 404 Page
--------------------------------------------------------------*/
.error_page {
  position: relative;
  padding: 100px 0;
  z-index: 2;
  background-color: #ffffff;
  height: 100vh;
}
.error_page:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 368px;
  background-image: url("../images/page_header_bg.png");
  background-size: cover;
  background-position: center;
  z-index: 1;
}
.error_page:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 368px;
  background-image: url("../images/bottom_bg.png");
  z-index: 1;
}
@media (max-width: 991px) {
  .error_page {
    padding: 50px 0 50px;
  }
}
@media (max-width: 767px) {
  .error_page {
    height: auto;
  }
}
.error_page .error-text {
  font-family: "Inter", serif;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #3d3d3d;
  color: transparent;
  font-size: 96px;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.92px;
  text-transform: uppercase;
  margin-bottom: 13px;
}
@media (max-width: 576px) {
  .error_page .error-text {
    font-size: 66px;
  }
}
.error_page .error_page_wrapper {
  width: 100%;
}
.error_page .error-page-content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  display: flex;
  justify-content: stretch;
  align-items: center;
}
@media (max-width: 991px) {
  .error_page .error-page-content {
    text-align: center;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .error_page .error-page-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
.error_page .error-page-content .error-title {
  font-size: 36px;
  line-height: 42px;
  color: #3d3d3d;
  font-weight: 600;
  margin-bottom: 6px;
}
@media (max-width: 576px) {
  .error_page .error-page-content .error-title {
    font-size: 24px;
  }
}
.error_page .error-page-content p {
  font-size: 18px;
  margin-bottom: 25px;
}
@media (max-width: 576px) {
  .error_page .error-page-content p {
    font-size: 16px;
  }
}
.error_page .error-page-content .tc-btn {
  padding: 12px 40px;
  gap: 5px;
}
.error_page .error-page-content .tc-btn svg path {
  transition: all 0.3s ease-in-out;
}
.error_page .error-page-content .tc-btn:hover {
  color: #094ec0;
}
.error_page .error-page-content .tc-btn:hover svg path {
  fill: #094ec0;
}
.error_page .error-info {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 16px;
}
.error_page .error-image {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}
.error_page .error-image img {
  max-width: 920px;
}

@media (max-width: 767px) {
  .error-image-left {
    text-align: left;
    width: 100%;
  }
  .error-image-left img {
    max-width: 240px;
  }
}

@media (max-width: 767px) {
  .error-image-right {
    text-align: right;
    width: 100%;
  }
  .error-image-right img {
    max-width: 240px;
  }
}

.error404 header, .error404 footer {
  display: none;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comments-rating {
  border: none;
  padding: 0;
  margin-left: 0;
}

.comments-rating label {
  display: inline-block;
}

.rating-container {
  /* remove inline-block whitespace */
  font-size: 0;
  /* flip the order so we can use the + and ~ combinators */
  unicode-bidi: bidi-override;
  direction: rtl;
}

.rating-container * {
  font-size: 1.4rem;
}

.rating-container > input {
  display: none;
}

.rating-container > input + label {
  /* only enough room for the star */
  font-family: "dashicons";
  display: inline-block;
  overflow: hidden;
  text-indent: 9999px;
  width: 1em;
  white-space: nowrap;
  cursor: pointer;
  margin: 0;
}

.rating-container > input + label:before {
  display: inline-block;
  text-indent: -9999px;
  content: "\f154";
  color: #888;
}

.rating-container > input:checked ~ label:before,
.rating-container > input + label:hover ~ label:before,
.rating-container > input + label:hover:before {
  content: "\f155";
  color: #f0ae0f;
  text-shadow: 0 0 1px #333;
}

.rating-container > .star-cb-clear + label {
  text-indent: -9999px;
  width: 0.5em;
  margin-left: -0.5em;
}

.rating-container > .star-cb-clear + label:before {
  width: 0.5em;
}

.rating-container:hover > input + label:before {
  content: "\f154";
  color: #888;
  text-shadow: none;
}

.rating-container:hover > input + label:hover ~ label:before,
.rating-container:hover > input + label:hover:before {
  content: "\f155";
  color: #f0ae0f;
  text-shadow: 0 0 1px #333;
}

.comment-respond .rating-container > .star-cb-clear + label, .comment-respond .rating-container > input + label:before {
  text-indent: 9999px;
}

.comment-respond .rating-container > input + label {
  text-indent: -9999px;
}

/*--------------------------------------------------------------
## Edd
--------------------------------------------------------------*/
.edd-blocks-receipt__items, .edd-blocks-receipt__totals {
  border-radius: 12px;
  border: 1px solid #D1D1D1 !important;
  padding: 0 !important;
}

.edd-blocks__row.edd-blocks-receipt__row-item,
.edd-blocks__row.edd-blocks__row-header.edd-blocks-receipt__row-header {
  padding: 12px 24px;
}
@media (max-width: 576px) {
  .edd-blocks__row.edd-blocks-receipt__row-item,
  .edd-blocks__row.edd-blocks__row-header.edd-blocks-receipt__row-header {
    padding: 10px 12px;
  }
}

.edd-blocks__row-label {
  font-size: 16px;
  color: #3D3D3D;
  font-weight: 600;
}

.edd_receipt_payment_status.complete {
  color: #34C759;
}

.edd-blocks__row-value a {
  color: #094EC0;
  text-decoration: underline;
}

.edd-blocks__row-value {
  color: #3d3d3d;
}

span.edd_fee_label, .edd-blocks__row-sublabel {
  color: #888;
}

span.edd_sl_license_key {
  padding: 6px 12px;
  border: 1px solid #DFE1E5;
  border-radius: 4px;
  color: #5D5D5D;
  font-size: 16px;
}
@media (max-width: 576px) {
  span.edd_sl_license_key {
    font-size: 12px;
  }
}

.edd-alert {
  width: max-content;
  margin: 0 auto 30px;
  border-radius: 8px;
}

.edd-blocks__row.edd-blocks-receipt__row-item.edd-blocks-receipt__item {
  padding: 24px;
}

.wp-block-edd-receipt.edd-blocks__receipt h3 {
  font-size: 24px;
}

.edd_purchase_receipt_files {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #888;
  display: none;
}

#edd_subscription_receipt .edd_subscription_billing_cycle,
#edd_user_history .edd_subscription_billing_cycle {
  display: inline-block;
  border: 1px solid #d1d1d1;
  padding: 5px 10px;
  border-radius: 6px;
  line-height: 1;
  font-size: 14px;
  font-weight: 500;
}

.edd_purchase_receipt_product_notes p {
  margin-bottom: 0;
}
.edd_purchase_receipt_product_notes p a {
  color: #094ec0;
  border-bottom: 1px solid #094ec0;
}
.edd_purchase_receipt_product_notes p a:hover {
  color: rgb(6.7164179104, 58.2089552239, 143.2835820896);
  border-color: rgb(6.7164179104, 58.2089552239, 143.2835820896);
}

.edd_purchase_receipt_product_notes a {
  color: #3d3d3d;
  font-weight: 500;
}
.edd_purchase_receipt_product_notes a:hover {
  color: #094ec0;
}

.edd-blocks-receipt__items,
.edd-blocks-receipt__totals {
  margin: 0 auto 2rem !important;
}

table td:not(:last-child) {
  border-right: 1px solid #DFE1E5;
}

#edd_profile_editor_form {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
}

#edd_profile_editor_form legend {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: #3D3D3D;
  margin-bottom: 30px;
}
#edd_profile_editor_form fieldset {
  width: calc(33.33% - 64px);
}
@media (max-width: 991px) {
  #edd_profile_editor_form fieldset {
    width: 100%;
  }
}
#edd_profile_editor_form fieldset p:not(:last-child) {
  margin-bottom: 32px;
}
#edd_profile_editor_form fieldset label {
  display: block;
  font-size: 14px;
  color: #888;
}

#edd_login_form .edd-input, #edd_register_form .edd-input {
  height: 38px;
}

#edd_login_form .edd-input, #edd_register_form .edd-input, .edd-input, select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #D1D1D1;
  background: transparent;
}
#edd_login_form .edd-input::placeholder, #edd_register_form .edd-input::placeholder, .edd-input::placeholder, select::placeholder {
  color: #D1D1D1;
}
#edd_login_form .edd-input:focus, #edd_register_form .edd-input:focus, .edd-input:focus, select:focus {
  outline: none;
  box-shadow: none;
  border-color: #094ec0;
}

fieldset#edd_profile_submit_fieldset {
  width: 100%;
  text-align: center;
}

#edd_profile_submit_fieldset {
  width: 100%;
}

input#edd_profile_editor_submit {
  display: inline-block;
  padding: 10px 20px;
  border: 0;
  border-radius: 30px;
}

.all-access-status {
  padding: 30px;
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  display: none;
}

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

form#edd_login_form,
form#edd_register_form {
  max-width: 440px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #E7E7E7;
  background: #FFF;
  box-shadow: 0 4px 50px 0 rgba(231, 231, 231, 0.25);
}
form#edd_login_form p:not(:last-child),
form#edd_register_form p:not(:last-child) {
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  form#edd_login_form,
  form#edd_register_form {
    padding: 16px;
  }
}

p.edd-logged-out {
  text-align: center;
}

#edd_login_form legend, #edd_register_form legend {
  font-size: 24px;
  color: #3D3D3D;
  font-weight: 600;
  text-align: center;
  margin-bottom: 36px;
}

input#edd_login_submit,
form#edd_register_form input.edd-submit,
#edd-purchase-button, #edd_sl_show_renewal_form,
#edd-add-license-renewal,
#edd-user-login-submit .edd-submit {
  border-radius: 100px;
  background: linear-gradient(180deg, #094EC0 0%, #3B80F2 100%);
  display: block;
  padding: 13px 24px;
  min-width: 200px;
  font-weight: 600;
  border: 1px solid #094EC0;
  font-size: 16px;
}
input#edd_login_submit:after,
form#edd_register_form input.edd-submit:after,
#edd-purchase-button:after, #edd_sl_show_renewal_form:after,
#edd-add-license-renewal:after,
#edd-user-login-submit .edd-submit:after {
  display: none;
}
input#edd_login_submit:hover,
form#edd_register_form input.edd-submit:hover,
#edd-purchase-button:hover, #edd_sl_show_renewal_form:hover,
#edd-add-license-renewal:hover,
#edd-user-login-submit .edd-submit:hover {
  background: linear-gradient(180deg, #094EC0 0%, #3B80F2 100%) !important;
  color: #fff !important;
  transform: translateY(0) !important;
}

input#edd_login_submit, form#edd_register_form input.edd-submit {
  width: 100%;
}

form#edd_register_form input.edd-submit {
  margin-top: 40px;
}

.edd-lost-password {
  text-align: center;
  margin-bottom: 0 !important;
}

p.edd-login-register-link {
  text-align: center;
  margin-bottom: 0;
  color: #888;
}
p.edd-login-register-link a {
  color: #094ec0;
  border-bottom: 1px solid #094ec0;
  display: inline-block;
  line-height: 1.3;
}

p.edd-login-submit {
  margin-bottom: 16px !important;
}

p.edd-lost-password a {
  color: #888;
}
p.edd-lost-password a:hover {
  color: #094ec0;
}

.edd-blocks__confirmation-details > a {
  border: 1px solid #094EC0;
  background-color: transparent;
  background-image: linear-gradient(190deg, #094EC0 0%, #3B80F2 100%);
  box-shadow: 0 3px 7px -2px #B3B3B3;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  color: #fff;
  font-weight: 600;
}

.edd-blocks__confirmation-details > a:hover {
  color: #fff;
}

#edd_login_form label, #edd_register_form label {
  line-height: 1;
  margin-bottom: 0;
}

form#edd_login_form label, .edd_form label {
  font-size: 14px;
  color: #888;
}

#edd_cc_address input:not(.edd-input__phone), #edd_cc_address select {
  padding: 10px 0 !important;
}

#edd_checkout_form_wrap label {
  font-size: 14px;
  font-weight: 500;
}

p.edd-blocks__logged-in {
  margin-bottom: 10px !important;
}
p.edd-blocks__logged-in a {
  color: #094ec0;
  text-decoration: underline;
  font-weight: 500;
}

.wp-block-edd-checkout #edd_purchase_form .edd-blocks-form legend {
  margin-bottom: 20px !important;
}

.edd-blocks-form__cart .edd_cart_item_name {
  gap: 0;
}

.edd-blocks-form__group .edd-description {
  font-size: 14px !important;
  color: #888 !important;
}

.wp-block-edd-checkout #edd_purchase_form .edd-blocks-form {
  gap: 30px !important;
}

.edd-checkout-block__personal-info .edd-blocks-form__group label {
  margin-bottom: 0 !important;
}

.edd-blocks__checkout-forms.edd-blocks__checkout-forms--inline {
  margin-top: 20px;
}

.wp-block-edd-checkout #edd_purchase_form .edd-button-secondary {
  border-radius: 40px !important;
  border: 1px solid #D5D7DA !important;
  background: transparent !important;
  box-shadow: 0 0 0 1px rgba(10, 13, 18, 0.18), 0 2px 0 0 rgba(10, 13, 18, 0.05), 0 1px 2px 0 rgba(10, 13, 18, 0.05);
}

fieldset#edd_cc_address,
.edd-blocks-form__cart #edd_checkout_cart,
fieldset#edd_checkout_user_info,
.wp-block-edd-checkout #edd_purchase_form .edd-blocks-form {
  border-radius: 20px;
}

.edd-input:not(.edd-input__phone) {
  padding: 10px 0 !important;
}

.edd-label, .wp-block-edd-checkout #edd_purchase_form .edd-blocks-form .edd-blocks-form__group > label {
  font-size: 14px;
  color: #888;
  margin-bottom: 0;
}

.edd-blocks-cart__row.edd-blocks-cart__row-header.edd_cart_header_row {
  background-color: #F6F6F6;
  border-radius: 20px 20px 0 0;
  padding: 17px 24px;
}

.edd_checkout_cart_item_title {
  color: #3D3D3D;
  font-size: 16px;
  font-weight: 500;
}

.edd_cart_item_price {
  font-size: 16px;
  color: #3D3D3D;
}

.edd-blocks-cart__items .edd-blocks-cart__row:not(:last-child) {
  border-bottom: 1px solid #DFE1E5;
}

.edd_cart_remove_item_btn {
  color: #FF4551;
}

.edd-blocks-form__cart .edd-blocks-cart__action-remove, .edd-blocks-form__cart .edd_discount_remove {
  background: url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%3E%3Cpath%20d%3D%22M13%203.66669L12.4093%2013.414C12.3666%2014.1178%2011.7834%2014.6667%2011.0783%2014.6667H4.92164C4.21659%2014.6667%203.6334%2014.1178%203.59075%2013.414L3%203.66669%22%20stroke%3D%22%23FF4551%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M2%203.66665H5.33333M5.33333%203.66665L6.16017%201.73737C6.26522%201.49225%206.50625%201.33331%206.77293%201.33331H9.22707C9.49373%201.33331%209.7348%201.49225%209.8398%201.73737L10.6667%203.66665M5.33333%203.66665H10.6667M14%203.66665H10.6667%22%20stroke%3D%22%23FF4551%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M6.33203%2011V7%22%20stroke%3D%22%23FF4551%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M9.66797%2011V7%22%20stroke%3D%22%23FF4551%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E) 50% no-repeat !important;
}

fieldset#edd_sl_renewal_fields {
  border-radius: 20px;
  background: transparent !important;
}

.edd-sl-renewal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

#edd_checkout_form_wrap .edd-cart-adjustment {
  background: transparent !important;
  padding: 0 !important;
}

#edd_checkout_form_wrap .edd-description {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
}

.edd-form-group__control {
  margin-bottom: 20px;
}
.edd-form-group__control input {
  width: 100% !important;
  padding: 10px 0 !important;
}

.edd-table {
  overflow: hidden;
  border-radius: 10px;
}
.edd-table th {
  overflow: hidden;
}
.edd-table th:first-child {
  border-top-left-radius: 10px;
}
.edd-table th:last-child {
  border-top-right-radius: 10px;
}
.edd-table td:last-child {
  border-right: 0;
}

#edd_user_history tr th {
  background: #F6F6F6;
  font-weight: 700;
}
#edd_user_history tr th:not(:last-child) {
  border-right: 1px solid #DFE1E5;
}

tr.edd_purchase_row a {
  color: #094EC0;
  text-decoration: underline;
}

@media (max-width: 767px) {
  tr.edd_purchase_row a, #edd_user_history .edd_subscription_invoice {
    font-size: 14px;
    line-height: 20px;
  }
}
table {
  border: 1px solid #DFE1E5;
  border-radius: 10px;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
table th td {
  padding: 10px;
}

#edd_user_history td, #edd_user_history th {
  padding: 22px 20px;
  color: #3D3D3D;
}
@media (max-width: 767px) {
  #edd_user_history td, #edd_user_history th {
    padding: 5px 10px;
  }
}

h2.tc-fancy-heading {
  font-size: 24px;
}

span.edd_subscription_status {
  background: #E1F3EE;
  display: inline-block;
  padding: 8px 11px;
  color: #007152;
  line-height: 1;
  border-radius: 4px;
}

span.view-key-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

input.edd_sl_license_key {
  border-radius: 4px;
  border: 1px solid #DFE1E5;
  padding: 3px 10px;
}

#edd_sl_license_add_site_form {
  max-width: 450px;
  margin-top: 100px;
}

#edd_sl_license_add_site_form span {
  color: #3D3D3D;
  font-size: 16px;
}

#edd_sl_license_add_site_form input.button-primary.button {
  border: 1px solid #094EC0;
  background-image: linear-gradient(190deg, #094EC0 0%, #3B80F2 100%);
  box-shadow: 0 3px 7px -2px #B3B3B3;
  display: inline-block;
  margin-top: 15px;
  border-radius: 30px;
  color: #fff;
}

.tc-edd-account-widget-wrapper .tc-license-key-wrapper {
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: max-content;
  min-width: 432px;
}
@media (max-width: 1200px) {
  .tc-edd-account-widget-wrapper .tc-license-key-wrapper {
    min-width: 380px;
  }
}
@media (max-width: 991px) {
  .tc-edd-account-widget-wrapper .tc-license-key-wrapper {
    min-width: auto;
    display: block;
  }
  .tc-edd-account-widget-wrapper .tc-license-key-wrapper .tc-copy-license-btn {
    margin-top: 8px;
  }
}
.tc-edd-account-widget-wrapper .tc-license-variation {
  margin-top: 6px;
  padding: 4px 10px;
  background: #f8f9fa;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}
.tc-edd-account-widget-wrapper .tc-variation-name {
  color: #888;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid #DFE1E5;
  font-size: 18px;
  letter-spacing: -0.18px;
  display: inline-block;
  padding: 5px 12px;
}
@media (max-width: 1200px) {
  .tc-edd-account-widget-wrapper .tc-variation-name {
    font-size: 14px;
    padding: 4px 10px;
  }
}
.tc-edd-account-widget-wrapper .tc-variation-price {
  color: #28a745;
  font-weight: 600;
  background: #d4edda;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 11px;
}
.tc-edd-account-widget-wrapper .tc-license-key {
  background: transparent;
  padding: 2px 12px;
  border-radius: 4px;
  font-family: monospace;
  font-size: 16px;
  display: inline-block;
  word-break: break-all;
  flex: 1;
  border: 1px solid #DFE1E5;
  color: #5D5D5D;
  max-width: 335px;
}
@media (max-width: 1200px) {
  .tc-edd-account-widget-wrapper .tc-license-key {
    font-size: 14px;
    max-width: 296px;
  }
}
.tc-edd-account-widget-wrapper .tc-copy-license-btn {
  padding: 4px 8px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
  border-radius: 4px;
  border: 1px solid #DFE1E5;
  background: #FFF;
  max-height: 32px;
  color: #094EC0;
}
.tc-edd-account-widget-wrapper .tc-copy-license-btn:hover {
  background: #f0f0f0;
  border-color: #ccc;
}
.tc-edd-account-widget-wrapper .tc-license-status {
  padding: 2px 9px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
}
.tc-edd-account-widget-wrapper .tc-license-status-active {
  background: #d4edda;
  color: #155724;
}
.tc-edd-account-widget-wrapper .tc-license-status-expired {
  background: rgba(255, 69, 81, 0.2);
  color: #FF4551;
  font-weight: 500;
  letter-spacing: -0.18px;
}
.tc-edd-account-widget-wrapper .tc-license-status-inactive {
  background: #FFF3CD;
  color: #856406;
}
.tc-edd-account-widget-wrapper .tc-expired,
.tc-edd-account-widget-wrapper .tc-expiration-date.tc-expired {
  font-size: 18px;
  color: #FF4551;
  font-weight: 400;
}
.tc-edd-account-widget-wrapper .tc-expiration-date.tc-expiring-soon {
  color: #fd7e14;
  font-weight: 600;
}
.tc-edd-account-widget-wrapper .tc-status-indicator {
  font-size: 12px;
  margin-left: 6px;
}
.tc-edd-account-widget-wrapper .tc-expired-indicator {
  font-weight: 700;
}
.tc-edd-account-widget-wrapper .tc-expiring-indicator {
  color: #FF4551;
  font-weight: 600;
}
.tc-edd-account-widget-wrapper .tc-expiring-soon-indicator {
  color: #fd7e14;
  font-weight: 600;
}
.tc-edd-account-widget-wrapper .tc-lifetime-license {
  color: #28a745;
  font-weight: 600;
}
.tc-edd-account-widget-wrapper .tc-no-expiration {
  color: #6c757d;
  font-style: italic;
}
.tc-edd-account-widget-wrapper .tc-expiration-error {
  color: #FF4551;
  font-style: italic;
}
.tc-edd-account-widget-wrapper .tc-activation-count {
  font-weight: 600;
  color: #495057;
}
.tc-edd-account-widget-wrapper .tc-activation-status {
  font-size: 14px;
  margin-left: 6px;
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 600;
}
.tc-edd-account-widget-wrapper .tc-activation-status.tc-activation-full {
  background: #f8d7da;
  color: #721c24;
}
.tc-edd-account-widget-wrapper .tc-activation-status.tc-activation-high {
  background: #fff3cd;
  color: #856404;
}
.tc-edd-account-widget-wrapper .tc-activation-status.tc-activation-available {
  background: #d1ecf1;
  color: #0c5460;
}
@media (max-width: 767px) {
  .tc-edd-account-widget-wrapper .tc-activation-status.tc-activation-available {
    display: block;
  }
}
.tc-edd-account-widget-wrapper .tc-activation-status.tc-activation-unused {
  background: #E2E3E5;
  color: #6C757D;
}
.tc-edd-account-widget-wrapper .tc-activation-status.tc-activation-unlimited {
  background: #d4edda;
  color: #155724;
}
.tc-edd-account-widget-wrapper .tc-activation-progress {
  width: 100%;
  height: 4px;
  background: #E7E7E7;
  border-radius: 2px;
  margin-top: 15px;
  overflow: hidden;
  margin-bottom: 12px;
}
.tc-edd-account-widget-wrapper .tc-activation-progress .tc-activation-progress-bar {
  height: 100%;
  background: #094EC0;
  transition: width 0.3s ease;
  border-radius: 2px;
}
.tc-edd-account-widget-wrapper .tc-active-sites {
  margin-top: 8px;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 4px;
  border-left: 3px solid #007cba;
}
.tc-edd-account-widget-wrapper .tc-active-sites-label {
  margin: 0 0 6px 0;
  font-size: 13px;
  color: #495057;
}
.tc-edd-account-widget-wrapper .tc-active-sites-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tc-edd-account-widget-wrapper .tc-active-site {
  margin: 2px 0;
  font-size: 12px;
}
.tc-edd-account-widget-wrapper .tc-active-site code {
  background: #ffffff;
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid #dee2e6;
  font-size: 11px;
}
.tc-edd-account-widget-wrapper .tc-sites-summary {
  margin: 4px 0;
  font-size: 12px;
  color: #6c757d;
}
.tc-edd-account-widget-wrapper .tc-sites-toggle {
  background: none;
  border: none;
  color: #007cba;
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.tc-edd-account-widget-wrapper .tc-sites-toggle:hover {
  color: #005a87;
}
.tc-edd-account-widget-wrapper .tc-sites-toggle .tc-toggle-icon {
  font-size: 10px;
  transition: transform 0.2s ease;
}
.tc-edd-account-widget-wrapper .tc-sites-toggle.expanded .tc-toggle-icon {
  transform: rotate(180deg);
}
.tc-edd-account-widget-wrapper .tc-sites-details {
  margin-top: 8px;
  animation: slideDown 0.3s ease-out;
}
.tc-edd-account-widget-wrapper .tc-license-actions {
  margin-top: 12px;
  display: none;
}
.tc-edd-account-widget-wrapper .tc-license-action {
  color: #007cba;
  text-decoration: none;
  font-size: 13px;
}
.tc-edd-account-widget-wrapper .tc-license-action:hover {
  text-decoration: underline;
}
.tc-edd-account-widget-wrapper .tc-renew-link {
  color: #FF4551;
  font-weight: 600;
}
.tc-edd-account-widget-wrapper a.tc-quick-action-link.tc-renew-quick-link {
  border-radius: 8px;
  background: rgba(9, 78, 192, 0.16);
  color: #094EC0;
}
.tc-edd-account-widget-wrapper a.tc-quick-action-link.tc-renew-quick-link:hover {
  background: #094EC0;
  color: #fff;
}
.tc-edd-account-widget-wrapper .tc-license-quick-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 991px) {
  .tc-edd-account-widget-wrapper .tc-license-quick-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}
.tc-edd-account-widget-wrapper .tc-quick-action-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  font-size: 18px;
  padding: 4px 12px;
  transition: all 0.2s ease;
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.18px;
  border-radius: 8px;
}
@media (max-width: 767px) {
  .tc-edd-account-widget-wrapper .tc-quick-action-link {
    font-size: 16px;
  }
}
.tc-edd-account-widget-wrapper .tc-quick-action-link:hover {
  background: #63B772;
}
.tc-edd-account-widget-wrapper .tc-manage-sites-link {
  color: #ffffff;
  background: #63B772;
}
.tc-edd-account-widget-wrapper .tc-manage-sites-link:hover {
  color: #fff;
  background: rgb(76.1684210526, 165.0315789474, 92.0368421053);
}
.tc-edd-account-widget-wrapper .tc-upgrade-link {
  color: #fff;
  background: #F79A56;
}
.tc-edd-account-widget-wrapper .tc-upgrade-link:hover {
  color: #fff;
  border-color: #F79A56;
  background: #da8648;
}
.tc-edd-account-widget-wrapper .tc-purchase-id-label {
  font-size: 12px;
  color: #6c757d;
  font-weight: 500;
}
.tc-edd-account-widget-wrapper .tc-purchase-id-value {
  color: #6C757D;
  font-weight: 500;
  margin-left: 4px;
  background: #ffffff;
  padding: 0 7px;
  border: 1px solid #D1D1D1;
  border-radius: 30px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.18px;
}
.tc-edd-account-widget-wrapper .tc-all-access-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}
.tc-edd-account-widget-wrapper .tc-edd-all-access-notice {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #667eea;
  margin-bottom: 20px;
}
.tc-edd-account-widget-wrapper .tc-license-user-info {
  background: #f8f9fa;
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 16px;
  border: 1px solid #e9ecef;
}
.tc-edd-account-widget-wrapper .tc-license-user-context {
  margin: 0;
  font-size: 13px;
  color: #6c757d;
  font-style: italic;
}
.tc-edd-account-widget-wrapper .tc-customer-stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}
.tc-edd-account-widget-wrapper .tc-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 8px;
  border: 1px solid #E7E7E7;
  background: #f8f9fa;
  padding: 20px;
}
.tc-edd-account-widget-wrapper .tc-stat-label {
  font-size: 18px;
  color: #888;
  letter-spacing: -0.18px;
  display: block;
  margin-bottom: 13px;
}
.tc-edd-account-widget-wrapper .tc-stat-value {
  font-size: 24px;
  font-weight: 700;
  color: #4F4F4F;
}
.tc-edd-account-widget-wrapper .tc-subscription-status {
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.tc-edd-account-widget-wrapper .tc-subscription-status.status-active {
  background: #d4edda;
  color: #155724;
}
.tc-edd-account-widget-wrapper .tc-subscription-status.status-cancelled {
  background: #f8d7da;
  color: #721c24;
}
.tc-edd-account-widget-wrapper .tc-subscription-status.status-expired {
  background: #f8d7da;
  color: #721c24;
}
.tc-edd-account-widget-wrapper .tc-subscription-status.status-trialling {
  background: #cce5ff;
  color: #004085;
}
.tc-edd-account-widget-wrapper .tc-subscription-price {
  font-size: 12px;
  color: #6c757d;
  margin-top: 4px;
}
.tc-edd-account-widget-wrapper .tc-renewal-soon {
  color: #FF4551;
  font-weight: 600;
}
.tc-edd-account-widget-wrapper .tc-btn {
  border-radius: 40px;
}
.tc-edd-account-widget-wrapper .tc-licenses-table, .tc-edd-account-widget-wrapper .tc-edd-subscriptions-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}
.tc-edd-account-widget-wrapper .tc-licenses-table th, .tc-edd-account-widget-wrapper .tc-edd-subscriptions-table th, .tc-edd-account-widget-wrapper .tc-licenses-table td, .tc-edd-account-widget-wrapper .tc-edd-subscriptions-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
  vertical-align: top;
}
.tc-edd-account-widget-wrapper .tc-licenses-table th, .tc-edd-account-widget-wrapper .tc-edd-subscriptions-table th {
  background: #f8f9fa;
  font-weight: 600;
  color: #495057;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 200px;
  }
}
@media (max-width: 768px) {
  .tc-edd-account-widget-wrapper .tc-customer-stats {
    flex-direction: column;
    gap: 10px;
  }
  .tc-edd-account-widget-wrapper .tc-licenses-table, .tc-edd-account-widget-wrapper .tc-edd-subscriptions-table {
    font-size: 13px;
  }
  .tc-edd-account-widget-wrapper .tc-licenses-table th, .tc-edd-account-widget-wrapper .tc-edd-subscriptions-table th, .tc-edd-account-widget-wrapper .tc-licenses-table td, .tc-edd-account-widget-wrapper .tc-edd-subscriptions-table td {
    padding: 10px 8px;
  }
}
/* EDD Form Styling (kept scoped under wrapper) */
.tc-edd-account-widget-wrapper .tc-edd-tab-content-inner .edd_profile_editor_form label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}
.tc-edd-account-widget-wrapper .tc-edd-tab-content-inner .edd_profile_editor_form input[type=text],
.tc-edd-account-widget-wrapper .tc-edd-tab-content-inner .edd_profile_editor_form input[type=email],
.tc-edd-account-widget-wrapper .tc-edd-tab-content-inner .edd_profile_editor_form input[type=password] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 15px;
}
.tc-edd-account-widget-wrapper .tc-edd-tab-content-inner .edd_profile_editor_form input[type=submit] {
  background: #0073aa;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}
.tc-edd-account-widget-wrapper .tc-edd-tab-content-inner .edd_profile_editor_form input[type=submit]:hover {
  background: #005a87;
}

.edd-blocks-form__cart .edd_cart_item_name {
  gap: 0 !important;
}

.edd-blocks-form__cart .edd-blocks-cart__row-footer {
  border-bottom: 1px solid #E7E7E7;
}

.edd_cart_fee_label {
  font-weight: 600;
}

/**
 * TC EDD Account Widget Styles
 */
/* Account Wrapper */
/* Account Header */
.tc-edd-account-header {
  max-width: 990px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid #DFE1E5;
  background: #FFF;
  padding: 38px 40px 85px;
}

.tc-edd-account-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.tc-edd-account-title {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  color: #454545;
}

.tc-edd-account-welcome {
  margin: 0;
  color: #4F4F4F;
  font-size: 18px;
}

.tc-edd-logout-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 32px;
  border: 1px solid #DFE1E5;
  background: #FAFBFC;
  transition: background 0.3s ease;
  color: #6D6D6D;
}

.tc-edd-logout-btn:hover {
  background: #094ec0;
  color: #fff;
  border-color: #094ec0;
}

/* Tabs Navigation */
.tc-edd-tabs-nav {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  padding: 0 15px;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid #DFE1E5;
  background: #FFF;
  width: max-content;
  /*margin: -41px auto;*/
  margin: 0 auto;
  transform: translateY(-50%);
}
@media (max-width: 576px) {
  .tc-edd-tabs-nav {
    width: 100%;
  }
}

.tc-edd-tab-btn {
  padding: 27px 23px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: #888;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 48px;
}

.tc-edd-tab-btn:hover {
  color: #094EC0;
}

.tc-edd-tab-btn.active {
  color: #094EC0;
}

.tc-edd-tab-btn i {
  font-size: 18px;
}

/* Tab Content */
.tc-edd-tabs-content {
  margin-top: 18px;
}

.tc-edd-licenses-table thead th {
  padding: 26px 48px;
  font-size: 18px;
}
@media (max-width: 1200px) {
  .tc-edd-licenses-table thead th {
    padding: 12px 24px;
    font-size: 16px;
  }
}

.tc-edd-account-heading {
  text-align: center;
  margin-bottom: 52px;
}

h4.tc-package-name {
  font-size: 24px;
  letter-spacing: -0.24px;
  font-weight: 500;
  margin-bottom: 29px;
}
@media (max-width: 1200px) {
  h4.tc-package-name {
    font-size: 18px;
    margin-bottom: 12px;
  }
}

.tc-edd-tab-content {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tc-edd-tab-content.active {
  display: block;
  animation: fadeInUp 0.4s ease forwards;
}

.tc-edd-tab-content-inner h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
}

.tc-edd-tab-content-inner p {
  color: #666;
  margin-bottom: 20px;
}

#subscriptions > a {
  display: block;
  border-radius: 8px;
  border: 1px solid #E9EAEB;
  background: #fff;
  box-shadow: 0 4px 6px -2px rgba(10, 13, 18, 0.03);
  font-size: 16px;
  font-weight: 500;
  color: #3D3D3D;
}

td.tc-license-product, td.tc-license-details {
  padding: 44px 48px;
  border-bottom: 1px solid #dfe1e5;
}
@media (max-width: 1200px) {
  td.tc-license-product, td.tc-license-details {
    padding: 24px;
  }
}
@media (max-width: 767px) {
  td.tc-license-product, td.tc-license-details {
    padding: 16px;
  }
}

.tc-package-info-item {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}
@media (max-width: 1200px) {
  .tc-package-info-item {
    font-size: 14px;
    margin-bottom: 5px;
  }
}

/* No Tabs Layout */
.tc-edd-account-content-no-tabs {
  margin-top: 30px;
}

.tc-edd-section {
  margin-bottom: 40px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 5px;
}

.tc-edd-section h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}

/* Subscriptions Table */
.tc-edd-subscriptions-table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
}

.tc-edd-subscriptions-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.tc-edd-subscriptions-table thead {
  background: #f0f0f0;
}

.tc-edd-subscriptions-table th,
.tc-edd-subscriptions-table td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.tc-edd-subscriptions-table th {
  font-weight: 600;
  color: #333;
}

.tc-subscription-status {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.tc-subscription-status.status-active {
  background: #28a745;
  color: #fff;
}

.tc-subscription-status.status-trialling {
  background: #17a2b8;
  color: #fff;
}

.tc-subscription-status.status-pending {
  background: #ffc107;
  color: #333;
}

.tc-subscription-status.status-cancelled {
  background: #dc3545;
  color: #fff;
}

.tc-subscription-status.status-expired {
  background: #6c757d;
  color: #fff;
}

.tc-subscription-action {
  display: inline-block;
  padding: 6px 12px;
  background: #0073aa;
  color: #fff !important;
  text-decoration: none;
  border-radius: 3px;
  font-size: 14px;
  transition: background 0.3s ease;
  margin-right: 5px;
}

.tc-subscription-action:hover {
  background: #005a87;
}

#edd_user_history .edd_subscription_invoice {
  color: #094EC0;
}

.edd_subscription_cancel {
  color: #dc3545;
}

/* All Access Active Message */
.tc-edd-all-access-active {
  padding: 20px;
  background: #d4edda;
  border: 1px solid #c3e6cb;
  border-radius: 5px;
  margin-bottom: 20px;
}

.tc-edd-all-access-active p {
  margin: 0 0 10px 0;
}

.tc-edd-all-access-active p:last-child {
  margin-bottom: 0;
}

.tc-edd-all-access-active i {
  margin-right: 5px;
}

/* Not Logged In */
.tc-edd-account-not-logged-in {
  text-align: center;
  padding: 60px 20px;
}

.tc-edd-account-not-logged-in h2 {
  margin-bottom: 20px;
  font-size: 32px;
}

.tc-edd-account-not-logged-in p {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
}

.tc-edd-login-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #0073aa;
  color: #fff !important;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.3s ease;
}

.tc-edd-login-btn:hover {
  background: #005a87;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    /*transform: translateY(20px);*/
  }
  to {
    opacity: 1;
    /*transform: translateY(0);*/
  }
}
/* Responsive */
@media (max-width: 768px) {
  .tc-edd-account-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .tc-edd-tabs-nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .tc-edd-tab-btn {
    white-space: nowrap;
    padding: 12px 20px;
    font-size: 14px;
  }
  .tc-edd-tab-content-inner,
  .tc-edd-section {
    padding: 20px;
  }
  .tc-edd-subscriptions-table {
    font-size: 14px;
  }
  .tc-edd-subscriptions-table th,
  .tc-edd-subscriptions-table td {
    padding: 8px;
  }
}
@media (max-width: 480px) {
  .tc-edd-account-title {
    font-size: 24px;
  }
  .tc-edd-tab-btn {
    padding: 6px 10px;
    font-size: 13px;
  }
  .tc-edd-tab-btn i {
    font-size: 16px;
  }
}
/* EDD Form Styling */
.tc-edd-tab-content-inner .edd_profile_editor_form label {
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}

.tc-edd-tab-content-inner .edd_profile_editor_form input[type=text],
.tc-edd-tab-content-inner .edd_profile_editor_form input[type=email],
.tc-edd-tab-content-inner .edd_profile_editor_form input[type=password] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  margin-bottom: 15px;
}

.tc-edd-tab-content-inner .edd_profile_editor_form input[type=submit] {
  background: #0073aa;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.tc-edd-tab-content-inner .edd_profile_editor_form input[type=submit]:hover {
  background: #005a87;
}

.tc-edd-no-licenses, .tc-edd-no-purchases, .edd-no-purchases {
  text-align: center;
}

input.edd-submit.button {
  border-radius: 100px;
  border: 1px solid #D5D7DA;
  background: #FFF;
  box-shadow: 0 0 0 1px rgba(10, 13, 18, 0.18), 0 2px 0 0 rgba(10, 13, 18, 0.05), 0 1px 2px 0 rgba(10, 13, 18, 0.05);
  color: #3d3d3d;
  padding: 10px 24px;
  font-weight: 500;
}
input.edd-submit.button:hover {
  transform: translateY(0);
  background: #094ec0;
  border-color: #094ec0;
  color: #fff;
}

.edd-submit.button.blue:after {
  color: #3d3d3d;
}

.edd-template-wrapper {
  padding: 200px 0 150px;
  background-image: url("../images/bg_img.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 100%;
}

a.edd-manage-license-back {
  border-radius: 8px;
  border: 1px solid #E9EAEB !important;
  background: #FFF !important;
  box-shadow: 0 4px 6px -2px rgba(10, 13, 18, 0.03);
  display: inline-flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 27px;
}

a.manage-site-link {
  color: #094ec0;
  text-decoration: underline;
}

h5.edd-sl-manage-license-header {
  color: #3D3D3D;
  font-size: 32px;
  font-weight: 600;
}

p.edd-sl-manage-license-details {
  color: #6D6D6D;
  font-size: 20px;
  margin-bottom: 63px;
}

.edd_errors {
  max-width: 500px;
  margin: 0 auto 40px;
}

button.iti__selected-country {
  background-color: transparent !important;
  border: 0 !important;
  display: inline-block;
  padding: 0 !important;
}

span.edd_empty_cart {
  display: block;
  text-align: center;
  padding: 100px 0;
  font-size: 30px;
  font-weight: 500;
}
@media (max-width: 767px) {
  span.edd_empty_cart {
    font-size: 20px;
    padding: 50px 0;
  }
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  margin-top: -80px;
}
@media (min-width: 1024px) {
  .site-footer {
    margin-top: -50px;
  }
  .site-footer:after {
    content: "";
    position: absolute;
    top: 200px;
    height: 1px;
    width: 100%;
    background: #DFE1E5;
  }
}
@media (max-width: 767px) {
  .site-footer {
    margin-top: -28px;
  }
}
.site-footer .container {
  position: relative;
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  .site-footer .container {
    padding-top: 200px;
    padding-left: 30px !important;
    padding-right: 30px !important;
    border-right: 1px solid #DFE1E5;
    border-left: 1px solid #DFE1E5;
  }
  .site-footer .container:before, .site-footer .container:after {
    content: "";
    position: absolute;
    top: 196px;
    width: 10px;
    height: 10px;
    border: 1px solid #DFE1E5;
    background: #ffffff;
    z-index: 2;
  }
  .site-footer .container:before {
    left: -5.5px;
  }
  .site-footer .container:after {
    right: -5.5px;
  }
}
@media (max-width: 1024px) {
  .site-footer .container {
    padding-top: 142px;
  }
}
@media (max-width: 767px) {
  .site-footer .container {
    padding-bottom: 14px;
    padding-top: 74px;
  }
}
.site-footer .widget {
  position: relative;
  z-index: 2;
  padding: 0;
}
.site-footer .widget ul.footer-social-link {
  margin-top: 15px;
}
.site-footer .widget ul.footer-social-link li {
  display: inline-block;
}
.site-footer .widget ul.footer-social-link li:not(:last-child) {
  margin-right: 7px;
}
.site-footer .widget ul.footer-social-link li a {
  border: 2px solid rgba(255, 255, 255, 0.2);
  height: 44px;
  width: 44px;
  line-height: 41px;
  border-radius: 6px;
  color: #fff;
  text-align: center;
  font-size: 15px;
}
.site-footer .widget ul.footer-social-link li a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #094ec0;
}
.site-footer .tagcloud a {
  color: #3d3d3d;
  margin-bottom: 7px;
}
.site-footer .footer-wrapper {
  padding: 60px 0;
}
.site-footer .footer-wrapper .col-lg-3 {
  position: relative;
}
.site-footer .footer-wrapper .col-lg-3:not(:first-child) {
  border-left: 1px solid #dfe1e5;
  padding-left: 60px;
}
.site-footer .footer-wrapper .col-lg-3:not(:first-child):before, .site-footer .footer-wrapper .col-lg-3:not(:first-child):after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background: #ffffff;
  border: 1px solid #DFE1E5;
  left: 0;
  transform: translateX(-50%);
}
.site-footer .footer-wrapper .col-lg-3:before {
  top: -5px;
}
.site-footer .footer-wrapper .col-lg-3:after {
  bottom: -5px;
}
@media (max-width: 991px) {
  .site-footer .footer-wrapper .row > div:first-child > div {
    position: relative;
    border-bottom: 1px solid #DFE1E5;
    padding-bottom: 30px;
  }
  .site-footer .footer-wrapper .row > div:first-child > div:before, .site-footer .footer-wrapper .row > div:first-child > div:after {
    content: "";
    position: absolute;
    bottom: -5px;
    width: 10px;
    height: 10px;
    background: #ffffff;
    border: 1px solid #DFE1E5;
  }
  .site-footer .footer-wrapper .row > div:first-child > div:before {
    left: 0;
    transform: translateX(-50%);
  }
  .site-footer .footer-wrapper .row > div:first-child > div:after {
    right: 0;
    transform: translateX(50%);
  }
  .site-footer .footer-wrapper .row > div:nth-child(2), .site-footer .footer-wrapper .row > div:nth-child(4) {
    border-right: 1px solid #DFE1E5 !important;
  }
  .site-footer .footer-wrapper .row > div:nth-child(3) {
    padding-left: 32px !important;
  }
  .site-footer .footer-wrapper .row > div:nth-child(4) {
    padding-bottom: 30px;
  }
  .site-footer .footer-wrapper .row > div:before, .site-footer .footer-wrapper .row > div:after {
    border: none !important;
  }
  .site-footer .footer-wrapper .row > div:not(:first-child) {
    border: 0;
  }
}
.site-footer .site-info {
  border-top: 1px solid #DFE1E5;
  position: relative;
  z-index: 22;
  padding: 34px 32px;
}
.site-footer .site-info:before, .site-footer .site-info:after {
  content: "";
  position: absolute;
  top: -5px;
  width: 9px;
  height: 9px;
  background: #ffffff;
  border: 1px solid #DFE1E5;
}
.site-footer .site-info:before {
  left: 0;
  transform: translateX(-50%);
}
.site-footer .site-info:after {
  right: 0;
  transform: translateX(50%);
}
@media screen and (max-width: 767px) {
  .site-footer .site-info {
    padding: 36px 0 19px;
  }
}
.site-footer .site-info .site-info-inner {
  padding: 35px 0;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .site-footer .site-info .site-info-inner {
    display: block !important;
    text-align: center;
    padding: 20px 0;
  }
  .site-footer .site-info .site-info-inner .copyright {
    margin-bottom: 10px;
  }
}
.site-footer .site-info .copyright {
  text-align: center;
}
@media (max-width: 840px) {
  .site-footer .site-info .copyright {
    margin-bottom: 21px;
  }
}
.site-footer .site-info .copyright p {
  margin: 0;
}
.site-footer .site-info .copyright p a {
  color: #3d3d3d !important;
  font-weight: 500;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .site-footer .site-info .copyright p {
    font-size: 16px;
    line-height: 26px;
  }
}
.site-footer .site-info .copyright p a {
  color: #4C4CB3;
}
.site-footer .site-info .copyright p a:hover {
  color: #094ec0;
}

.footer-animated-text {
  border-bottom: 1px solid #DFE1E5;
  text-align: center;
  position: relative;
}
.footer-animated-text:before, .footer-animated-text:after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 10px;
  height: 10px;
  background: #ffffff;
  border: 1px solid #DFE1E5;
}
.footer-animated-text:before {
  left: 0;
  transform: translateX(-50%);
}
.footer-animated-text:after {
  right: 0;
  transform: translateX(50%);
}
.footer-animated-text svg {
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .footer-animated-text svg {
    max-width: 90%;
  }
}

.site-footer-top-wrapper {
  padding: 32px;
  border-bottom: 1px solid #DFE1E5;
  position: relative;
}
.site-footer-top-wrapper:before, .site-footer-top-wrapper:after {
  content: "";
  position: absolute;
  bottom: -5px;
  width: 10px;
  height: 10px;
  border: 1px solid #DFE1E5;
  background: #ffffff;
  z-index: 2;
}
@media (max-width: 991px) {
  .site-footer-top-wrapper:before, .site-footer-top-wrapper:after {
    bottom: auto;
    top: -5.5px;
  }
}
.site-footer-top-wrapper:before {
  left: 0;
}
.site-footer-top-wrapper:after {
  right: 0;
}
@media (max-width: 992px) {
  .site-footer-top-wrapper {
    padding: 42px 0 0;
    border-top: 1px solid #DFE1E5;
  }
}
@media (max-width: 991px) {
  .site-footer-top-wrapper {
    border-bottom: 0;
  }
}

.footer-middle-content {
  display: flex;
  gap: 36px;
  align-items: center;
}
@media (max-width: 767px) {
  .footer-middle-content {
    gap: 17px;
  }
}
@media (max-width: 576px) {
  .footer-middle-content {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  .footer-middle-content .footer-cta-button {
    width: 100%;
  }
  .footer-middle-content .footer-cta-button .tc-btn {
    width: 100%;
  }
}
.footer-middle-content .footer-description {
  max-width: 290px;
}

.facility-items {
  margin-bottom: 29px;
}

.tc-facility-widget .facility-item {
  display: flex;
  margin-bottom: 12px;
  color: #5D5D5D;
  font-size: 16px;
  gap: 12px;
  max-width: 256px;
}
.tc-facility-widget .facility-item .facility-icon {
  margin-top: 3px;
}
.tc-facility-widget .facility-item i {
  color: #094ec0;
}

.tc-facility-widget .payment-title {
  margin-bottom: 6px !important;
  font-weight: 400;
  font-size: 16px;
}

.site-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 991px) {
  .site-footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .site-footer-top {
    align-items: flex-start;
    gap: 17px;
  }
}

.footer-social-links {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 17px;
}
.footer-social-links li {
  display: inline-block;
}
.footer-social-links li a {
  display: block;
  color: #3d3d3d;
}
.footer-social-links li a:hover {
  color: #094ec0;
}

.footer-payment-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .footer-payment-icons {
    flex-direction: column;
  }
}
.footer-payment-icons .footer-payment-title {
  margin-bottom: 0;
  color: #5d5d5d;
  font-weight: 400;
  font-size: 16px;
}

.site-footer .widget .pps-block-social-link {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .widget .pps-block-social-link li {
  display: inline-block;
}
.site-footer .widget .pps-block-social-link li:not(:last-child) {
  margin-right: 7px !important;
}
.site-footer .widget .pps-block-social-link li a {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.302);
  border-radius: 30px;
  font-size: 14px;
}
.site-footer .widget .pps-block-social-link li a:hover {
  background-color: #fff;
  border-color: #fff;
  color: #094ec0;
}

.footer-social-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 840px) {
  .footer-social-wrap {
    flex-direction: column;
    text-align: center;
  }
  .footer-social-wrap .footer-social-wrapper {
    margin-bottom: 20px;
  }
}

.site-footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer-menu li {
  display: inline-block;
  margin-right: 20px;
  position: relative;
}
.site-footer-menu li:not(:last-child) {
  margin-right: 15px;
  padding-right: 15px;
}
.site-footer-menu li:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 15px;
  background-color: rgba(255, 255, 255, 0.2);
}
.site-footer-menu li a {
  color: #B4C4DF;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .site-footer-menu li a {
    font-size: 16px;
  }
}
.site-footer-menu li a:hover {
  color: #fff;
}

.footer-overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 520px;
  height: 100%;
}

.tc-product__page-header {
  background-color: #F3F3FB;
  padding: 118px 0;
}
@media (max-width: 767px) {
  .tc-product__page-header {
    padding: 60px 0;
  }
}
.tc-product__page-content {
  max-width: 600px;
}
.tc-product__page-title {
  font-size: clamp(2.2rem, 2.5vw, 3rem);
  font-weight: 700;
  margin-bottom: 15px;
}
.tc-product__page-description {
  margin-bottom: 55px;
}
@media (max-width: 767px) {
  .tc-product__page-description {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .tc-product__header-image {
    margin-top: 40px;
  }
}

.product-search__field-wrapper {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 6px 6px 6px 20px;
  border-radius: 6px;
}
.product-search__field-wrapper input {
  margin-bottom: 0 !important;
  border: 0 !important;
  height: 52px !important;
}
.product-search__field-wrapper input::placeholder {
  color: #667085 !important;
}
.product-search__field-wrapper input:focus {
  border: 0;
}
.product-search__field-wrapper button {
  padding: 13px 30px !important;
  border-radius: 4px !important;
}
.product-search__field-wrapper .product-search__icon {
  line-height: 1;
}

.tc-product__category-list {
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.tc-product__category-list li a {
  display: inline-block;
  border-radius: 6px;
  border: 1px solid #DFE1E5;
  padding: 11px 16px;
  line-height: 1;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}
.tc-product__category-list li a:hover {
  background-color: #F3F3FB;
  color: #3d3d3d;
}
.tc-product__category-list li a.active {
  background: #094ec0;
  color: #FFF;
  border-color: #094ec0;
}

.tc-product {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 4px 80px 0px rgba(21, 26, 49, 0.08);
  margin-bottom: 30px;
}
.tc-product__thumbnail {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.tc-product__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 5px;
}
.tc-product__content {
  padding: 17px 24px 24px;
}
@media (max-width: 767px) {
  .tc-product__content {
    padding: 14px 16px 20px;
  }
}
.tc-product__content .tc-btn {
  padding: 5px 16px;
  font-size: 13px;
}
.tc-product__short-description {
  margin-bottom: 29px;
}
.tc-product__short-description p {
  margin-bottom: 0;
}
.tc-product__button-container {
  display: flex;
  gap: 12px;
  align-items: center;
}
.tc-product__button-container .tc-btn {
  flex: 1;
}

.single-product .content-area {
  padding: 0;
}

.single-product .woocommerce-notices-wrapper {
  display: none;
}

.tc-product__single-header {
  padding: 100px 0;
  background: #F3F3FB;
}

.tc-product__single-header-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  max-width: 800px;
}

.tc-product__single-logo {
  min-width: 72px;
  height: 72px;
}

.tc-product__single-title {
  font-size: 40px;
  margin-bottom: 0;
}

.tc-product__single-inner {
  padding: 32px;
  border-radius: 12px;
  background: #FFF;
}

.tc-related-product-title {
  font-size: 40px;
  margin-bottom: 30px;
}

.product_meta {
  margin-bottom: 17px;
}
.product_meta .posted_in {
  font-size: 20px;
}
.product_meta .posted_in a {
  font-weight: 600;
}

.tc-product__single-meta {
  margin-bottom: 20px;
}
.tc-product__single-meta .tc-product__single-version {
  display: flex;
  gap: 20px;
}
.tc-product__single-meta .tc-product__single-version i {
  font-size: 16px;
}
.tc-product__single-meta span {
  font-size: 14px;
}

.tc-product__single-short-description {
  margin-bottom: 26px;
}
.tc-product__single-short-description p {
  margin-bottom: 0;
}

.tc-product__single-button-wrapper .tc-product__button-container {
  gap: 16px;
}

.tc-product__plugin-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 20px;
}
.tc-product__plugin-list li {
  border-radius: 6px;
  background: #FFF;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
}

.tc-product_product-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tc-product_product-info-list li {
  display: flex;
  font-size: 16px;
}
.tc-product_product-info-list li:not(:last-child) {
  margin-bottom: 22px;
}
.tc-product_product-info-list li .tc-product__info-label {
  font-weight: 600;
  color: #3d3d3d;
  min-width: 50%;
  font-size: 18px;
}

.product-details-content-wrapper {
  padding: 100px 0 70px;
}
.product-details-content-wrapper .tc-product__description-title {
  font-size: 32px;
  margin-bottom: 30px;
}
.product-details-content-wrapper .tc-product__description-subtitle {
  font-size: 20px;
  margin-bottom: 37px;
}
.product-details-content-wrapper .tc-product__description {
  padding: 32px;
  border: 1px solid #DFE1E5;
  border-radius: 8px;
  margin-bottom: 56px;
}
.product-details-content-wrapper .tc-product__description h3 {
  margin-top: 20px;
  margin-bottom: 30px;
}
.product-details-content-wrapper .tc-product__description ul {
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}
.product-details-content-wrapper .tc-product__description ul li {
  position: relative;
  padding-left: 25px;
}
.product-details-content-wrapper .tc-product__description ul li:not(:last-child) {
  margin-bottom: 10px;
}
.product-details-content-wrapper .tc-product__description ul li strong {
  font-weight: 600;
  color: #3d3d3d;
}
.product-details-content-wrapper .tc-product__description ul li:before {
  content: "\eb7b";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 50%;
  color: #2DC077;
  font-family: remixicon !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
}
.product-details-content-wrapper .tc-product__plugin-list {
  margin: 0 0 56px;
}

.tc-product_product-info {
  padding: 32px;
  background: #F9F9F9;
  border-radius: 8px;
  margin-bottom: 20px;
}

.tc-product__feature-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.tc-product__feature-boxes .tc-product__feature-box-item {
  border: 1px solid #DFE1E5;
  padding: 20px;
  border-radius: 8px;
}
.tc-product__feature-boxes .tc-product__feature-box-icon {
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #D4E1FF;
  border-radius: 4px;
  margin-bottom: 15px;
  color: #335DB3;
}
.tc-product__feature-boxes .tc-product__feature-box-title {
  font-size: 18px;
  font-weight: 600;
}
.tc-product__feature-boxes .tc-product__feature-box-description {
  margin-bottom: 0;
}

.tc-product__feature-gallery {
  margin-top: 60px;
}

.tc-product__gallery-image {
  margin-bottom: 32px;
}

span.tagged_as a {
  display: inline-block;
  padding: 6px 17px;
  background: #F7F7F7;
  border-radius: 6px;
  font-size: 14px;
  margin-right: 4px;
  margin-bottom: 7px;
}

.tc-product__tags-title {
  font-family: "Inter", serif;
  font-size: 18px;
}

/* Testimonial Section */
.testimonial-section {
  background: #F6F7F9;
  padding: 100px 0;
}
.testimonial-section .section-heading {
  margin-bottom: 40px;
}
.testimonial-section .tc-testimonial {
  background: #fff;
}

.section-related-products {
  padding: 100px 0 70px;
}

/* Quick View*/
.product_detail {
  display: flex;
}

.tc-quick-view.active {
  opacity: 1;
  visibility: visible;
}

.slider_img_productd {
  position: relative;
}

.slick-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  height: 36px;
  width: 36px;
  text-align: center;
  line-height: 34px;
  border: 1px solid #a7a7a7;
  border-radius: 4px;
  cursor: pointer;
}
.slick-arrow.feather-chevron-right {
  right: 20px;
}
.slick-arrow.feather-chevron-left {
  left: 20px;
}

.tc-quick-view {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: inline-block;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.tc-quick-view .woocommerce-notices-wrapper {
  margin-bottom: 0;
}
.tc-quick-view form.cart {
  display: flex;
  align-items: center;
}
.tc-quick-view .product_meta {
  margin-top: 30px;
}
.tc-quick-view .quickview-container {
  position: fixed;
  z-index: 10;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 1000px;
  transition: all 0.3s ease-in-out;
}
.tc-quick-view.active .quickview-container {
  transform: translate(-50%, -50%) scale(1);
}
.tc-quick-view .quickview-close {
  text-align: center;
  position: absolute;
  cursor: pointer;
  top: 20px;
  right: 15px;
  color: #3e4a5e;
  z-index: 10000;
  width: 36px;
  height: 36px;
  border: 1px solid lightgrey;
  font-size: 20px;
  line-height: 36px;
  border-radius: 4px;
}
.tc-quick-view .quickview-close:hover {
  background: #094ec0;
  color: #fff;
  border-color: #094ec0;
}
.tc-quick-view .product_detail {
  overflow: hidden;
  display: flex;
  background: #fff;
  color: #818995;
  border-radius: 10px;
  position: relative;
  height: 500px;
}
.tc-quick-view .slider_img_productd .slick-arrow {
  width: 25px;
  height: 25px;
  line-height: 25px;
  background: transparent;
  top: calc(50% - 12.5px);
  border: 0;
  color: #3e4a5e;
  font-size: 22px;
}
.tc-quick-view .slider_img_productd .slick-arrow.fa-angle-left {
  left: 15px;
}
.tc-quick-view .slick-dots {
  position: absolute;
  bottom: 35px;
}
.tc-quick-view .slick-dots li, .tc-quick-view .slick-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.tc-quick-view .slick-dots button {
  font-size: 0;
  width: 10px;
  height: 10px;
  background: #d4d4d4;
  padding: 0;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
}
.tc-quick-view .slick-dots li {
  display: inline-block;
  vertical-align: bottom;
  margin: 0 10px;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.tc-quick-view .quickview-container .tc-single-info .content_product_detail {
  padding: 50px 40px;
  width: 100%;
}

.tc-single-info {
  overflow-y: auto;
}

.tc-single-info, .img-quickview {
  width: 50%;
}

.img-quickview {
  height: 100%;
}

.tc-single-info::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.tc-single-info::-webkit-scrollbar-track {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
}

.tc-single-info::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
}

.tc-single-info::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}

.tc-single-info::-webkit-scrollbar-thumb:active {
  background: rgba(0, 0, 0, 0.9);
}

.wishlist_table thead {
  background: transparent;
}
.wishlist_table td {
  text-align: left;
}
.wishlist_table td.product-add-to-cart {
  text-align: right;
}
.wishlist_table td.product-remove {
  text-align: center;
}
.wishlist_table td.product-remove a {
  border: 1px solid #000;
  width: 20px;
  height: 20px;
  display: inline-block;
  line-height: 20px;
  border-radius: 30px;
}

.wishlist_table .product-add-to-cart a {
  display: inline-block !important;
  padding: 13px 30px;
  line-height: 1;
  border-radius: 30px;
  border: 1px solid #094ec0;
  background: #094ec0;
  color: #fff;
  font-weight: 500;
}
.wishlist_table .product-add-to-cart a .tooltip {
  display: none;
}
.wishlist_table .product-add-to-cart a:hover {
  color: #094ec0;
  background: transparent;
}

.wishlist_table .product-stock-status span.wishlist-in-stock {
  font-size: 16px;
  font-weight: 500;
}

table.wishlist_table tbody td, table.wishlist_table thead th {
  font-size: 16px;
  text-align: left;
}
table.wishlist_table tbody td ins, table.wishlist_table thead th ins {
  font-weight: 600;
}

td.product-name a {
  font-weight: 500;
  color: #3d3d3d;
}
td.product-name a:hover {
  color: #094ec0;
}

.wishlist_table tr td.product-thumbnail a img {
  width: 100%;
  border-radius: 6px;
}

.product_list_widget {
  padding: 0;
  margin: 0;
  list-style: none;
}
.product_list_widget li {
  padding-left: 85px !important;
  min-height: 70px;
}
.product_list_widget li:not(:last-child) {
  margin-bottom: 15px !important;
}
.product_list_widget li > a {
  display: block;
}
.product_list_widget li > a span {
  color: #3d3d3d;
  transition: all 0.3s ease-in-out;
}
.product_list_widget li > a span:hover {
  color: #094ec0;
}
.product_list_widget li .star-rating {
  display: block;
}
.product_list_widget li:before {
  display: none;
}
.product_list_widget li .woocommerce-Price-amount {
  font-size: 14px;
}
.product_list_widget li img {
  width: 70px;
  position: absolute;
  left: 0;
  height: 70px;
}

.wc-block-price-filter__range-input-wrapper input:not([type=checkbox]):not([type=submit]) {
  border: 0;
  padding: 0;
  height: auto;
}
.wc-block-price-filter__range-input-wrapper input:not([type=checkbox]):not([type=submit]):focus, .wc-block-price-filter__range-input-wrapper textarea:focus {
  border: 0 !important;
}

.wc-block-price-filter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.wc-block-components-price-slider__range-input-wrapper, .wc-block-components-price-slider__range-input-progress {
  width: 100%;
}

input.wc-block-components-price-slider__amount {
  padding: 0 !important;
  margin: 0;
  width: auto;
  background-color: transparent !important;
  height: max-content;
  border-radius: 0 !important;
}

.wc-block-components-price-slider__range-input-progress {
  --range-color: #00CFC8;
}

.wc-block-components-price-slider__range-input-wrapper,
.wc-block-components-price-slider__range-input-progress {
  height: 3px;
  box-shadow: none;
}

.wc-block-price-filter__controls input {
  margin-bottom: 0 !important;
}

.wc-block-components-price-slider__controls {
  display: inline-block;
}
.wc-block-components-price-slider__controls .wc-block-components-price-slider__amount {
  border: 0 !important;
  font-size: 14px;
  font-weight: 600 !important;
  box-shadow: none !important;
}

.wc-block-components-price-slider__range-input {
  padding: 0;
  border: 0;
  outline: none;
  background: transparent !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  height: 0;
  display: block;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 30px !important;
}
.wc-block-components-price-slider__range-input::-webkit-slider-runnable-track {
  cursor: default;
  height: 1px;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wc-block-components-price-slider__range-input::-webkit-slider-thumb {
  background-position: 0 0;
  width: 14px;
  height: 14px;
  vertical-align: top;
  cursor: pointer;
  z-index: 20;
  pointer-events: auto;
  background-image: none;
  -webkit-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: -6px 0 0;
  background-color: #094ec0;
  border: 0;
  border-radius: 30px;
  position: relative;
}

button.wc-block-components-filter-reset-button {
  background-color: #f0f2f4;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  padding: 10px 20px;
  line-height: 1;
  border-radius: 30px;
  color: #090b29;
  font-weight: 600;
  font-size: 14px;
}

.wc-block-components-price-slider__range-input::-webkit-slider-thumb:hover {
  background-position-y: -23px;
  background-color: #094ec0;
}

.wc-block-components-price-slider__range-input::-webkit-slider-progress {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.wc-block-components-price-slider__range-input::-moz-focus-outer {
  border: 0;
}
.wc-block-components-price-slider__range-input::-moz-range-track {
  cursor: default;
  height: 1px;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wc-block-components-price-slider__range-input::-moz-range-progress {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wc-block-components-price-slider__range-input::-moz-range-thumb {
  background-color: transparent;
  background-position: 0 0;
  width: 28px;
  height: 23px;
  border: 0;
  padding: 0;
  margin: 0;
  vertical-align: top;
  cursor: pointer;
  z-index: 20;
  pointer-events: auto;
  background-image: none;
  -moz-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wc-block-components-price-slider__range-input::-moz-range-thumb:hover {
  background-position-y: -23px;
  transform: scale(1.1);
}
.wc-block-components-price-slider__range-input::-ms-thumb {
  background-color: transparent;
  background-position: 0 0;
  width: 28px;
  height: 23px;
  border: 0;
  padding: 0;
  margin: 0;
  vertical-align: top;
  cursor: pointer;
  z-index: 20;
  pointer-events: auto;
  background-image: none;
  -ms-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.wc-block-components-price-slider__range-input::-ms-thumb:hover {
  background-position-y: -23px;
  transform: scale(1.1);
}
.wc-block-components-price-slider__range-input:focus::-webkit-slider-thumb {
  background-position-y: -23px;
  transform: scale(1.1);
}
.wc-block-components-price-slider__range-input:focus::-moz-range-thumb {
  background-position-y: -23px;
  transform: scale(1.1);
}
.wc-block-components-price-slider__range-input:focus::-ms-thumb {
  background-position-y: -23px;
  transform: scale(1.1);
}

.wc-block-components-price-slider__range-input.wc-block-components-price-slider__range-input--min {
  z-index: 21;
}

.wc-block-components-price-slider__range-input.wc-block-components-price-slider__range-input--min::-webkit-slider-thumb {
  margin-left: -2px;
  background-position-x: left;
}

.wc-block-components-price-slider__range-input.wc-block-components-price-slider__range-input--min::-moz-range-thumb {
  background-position-x: left;
  transform: translate(-2px, 4px);
}

.wc-block-components-price-slider__range-input.wc-block-components-price-slider__range-input--min::-ms-thumb {
  background-position-x: left;
}

.wc-block-components-price-slider__range-input.wc-block-components-price-slider__range-input--max {
  z-index: 20;
}

.wc-block-components-price-slider__range-input.wc-block-components-price-slider__range-input--max::-webkit-slider-thumb {
  background-position-x: right;
  margin-left: 2px;
}

.wc-block-components-price-slider__range-input.wc-block-components-price-slider__range-input--max::-moz-range-thumb {
  background-position-x: right;
  transform: translate(2px, 4px);
}

.wc-block-components-price-slider__range-input.wc-block-components-price-slider__range-input--max::-ms-thumb {
  background-position-x: right;
}

.wc-block-components-filter-reset-button:hover {
  background-color: #094ec0;
  color: #fff;
}

table.shop_table tbody tr:not(:last-child) {
  border-bottom: 1px solid #DFE1E5;
}

.woocommerce-cart table.shop_table td.product-thumbnail {
  padding-right: 10px;
  line-height: 1;
  width: 14%;
}

.woocommerce-cart table.shop_table td.product-thumbnail a {
  display: block;
  max-width: 100px;
  border-radius: 6px;
  overflow: hidden;
}

.woocommerce-cart table.shop_table td.product-thumbnail img {
  min-width: 100px;
}

h3.product-name {
  font-size: 18px;
}

.woocommerce-cart-form {
  border: 1px solid #DFE1E5;
  border-radius: 10px;
  padding: 15px;
}
.woocommerce-cart-form table {
  border: 0;
  margin-bottom: 0;
}
.woocommerce-cart-form table.shop_table tbody tr {
  border-top: 0;
}
.woocommerce-cart-form td:last-child {
  border-right: 0;
}
.woocommerce-cart-form .woocommerce-Price-amount {
  color: #3d3d3d;
  font-weight: 600;
}

.product-name-wrapper, .product-info-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-name-wrapper {
  margin-bottom: 10px;
}
.product-name-wrapper .product-name {
  margin-bottom: 0;
}

.product-info-bottom .quantity .qty {
  height: 40px;
}
.product-info-bottom a.remove {
  font-size: 14px;
  color: #919191;
  line-height: 1;
  display: inline-block;
}
.product-info-bottom a.remove i {
  margin-right: 3px;
  vertical-align: -1px;
}
.product-info-bottom a.remove:hover {
  color: #3d3d3d;
}

.cart_totals > h2 {
  display: none;
}

.checkout-button {
  display: block;
  background: #3d3d3d;
  color: #fff;
  padding: 15px 30px;
  line-height: 1.2;
  text-align: center;
  border-radius: 6px;
}
.checkout-button:hover {
  color: #fff;
  background: #094ec0;
}

.cart_totals {
  background: #f6f6f6;
  padding: 20px 20px 30px;
  border-radius: 10px;
}
.cart_totals .shop_table {
  border: 0;
}
.cart_totals .shop_table tbody > tr {
  border-top: 0;
}
.cart_totals .shop_table td:last-child {
  border-right: 0;
  font-size: 14px;
  color: #3d3d3d;
}
.cart_totals .shop_table td {
  text-align: right;
}
.cart_totals .shop_table td p strong {
  font-weight: 600;
  color: #3d3d3d;
}
.cart_totals .shop_table th:not(:last-child) {
  font-weight: 400;
}
.cart_totals .shop_table .order-total th {
  font-weight: 600;
}
.cart_totals .shop_table .order-total strong {
  font-weight: 600;
}
.cart_totals .shop_table .order-total .woocommerce-Price-amount {
  color: #3d3d3d;
  font-size: 16px;
}

.woocommerce-shipping-methods {
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-notices-wrapper {
  margin-bottom: 30px;
}

.woocommerce-info {
  padding: 20px 30px;
  background-color: #f6f6f6;
  border-radius: 6px;
  border-top: 3px solid #094ec0;
}
.woocommerce-info a {
  font-weight: 600;
}

.checkout_coupon p {
  margin-top: 20px;
}

.woocommerce-error {
  padding: 0.9em 1.5em;
  margin: 0 0 20px;
  position: relative;
  background-color: #f6f6f6;
  border-top: 3px solid #094ec0;
  list-style: none !important;
  width: auto;
  border-radius: 6px;
}
.woocommerce-error strong {
  color: #3d3d3d;
  font-weight: 600;
}

.wc_payment_methods {
  margin: 0;
  padding: 0;
  list-style: none;
}

#payment {
  padding: 30px;
  background-color: #f6f6f6;
  border-radius: 10px;
}

.shop-table-wrapper {
  padding: 30px;
  background-color: #f6f6f6;
  border-radius: 10px;
  margin-bottom: 30px;
}
.shop-table-wrapper table {
  border: 0;
  margin: 0;
}
.shop-table-wrapper table .product-total {
  text-align: right;
  font-size: 15px;
}
.shop-table-wrapper table .product-name {
  width: 60%;
  font-size: 15px;
}
.shop-table-wrapper table td, .shop-table-wrapper table th {
  padding: 10px 0;
}
.shop-table-wrapper table > tr {
  border-top: 0;
  border-bottom: 1px solid #d3d3d3;
}
.shop-table-wrapper table > tr th:last-child {
  text-align: right;
}
.shop-table-wrapper table td.product-name strong {
  font-weight: 600;
  color: #3d3d3d;
}
.shop-table-wrapper table td:last-child {
  text-align: right;
  border-right: 0;
}
.shop-table-wrapper table tfoot, .shop-table-wrapper table .woocommerce-shipping-totals, .shop-table-wrapper table .order-total {
  border-top: 1px solid #d3d3d3;
}
.shop-table-wrapper .woocommerce-Price-amount {
  color: #3d3d3d;
}
.shop-table-wrapper .shop-table-wrapper {
  padding: 0;
  margin: 0;
}

.payment_box p {
  font-size: 14px;
}

.wc_payment_method [type=radio]:checked + label {
  color: #3d3d3d;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
}

.select2-container .select2-selection--single {
  height: 44px;
  border-color: #DFE1E5;
  padding: 8px 10px;
  margin-bottom: 20px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 9px;
}

.woocommerce-billing-fields__field-wrapper > p, .woocommerce-shipping-fields__field-wrapper > p {
  margin-bottom: 0;
}

#ship-to-different-address {
  overflow: hidden;
}

#ship-to-different-address label input[type=checkbox] {
  display: none;
}

#ship-to-different-address label span {
  position: relative;
  display: block;
  margin: 0;
  padding-inline-end: 48px;
}

#ship-to-different-address label {
  font-weight: inherit;
  cursor: pointer;
  color: inherit;
  margin: 0;
  font-size: inherit;
}

#ship-to-different-address label input[type=checkbox]:checked + span:after {
  right: 3px;
}

#ship-to-different-address label input[type=checkbox]:checked + span:before {
  background-color: #094ec0;
}

#ship-to-different-address label span:before {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 0;
  height: 20px;
  width: 36px;
  margin: auto;
  background-color: #c2c2c2;
  border-radius: 90px;
  transition: 0.1s;
}

#ship-to-different-address label span:after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  width: 14px;
  height: 14px;
  margin: auto;
  background-color: #fff;
  border-radius: 90px;
  transition: 0.3s ease-in-out;
}

.box-form-login {
  padding: 50px;
  border: 1px solid #DFE1E5;
  border-radius: 10px;
}

.rememberme-lost {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.woocommerce-privacy-policy-text p {
  font-size: 15px;
}

.login .button, .register .button {
  width: 100%;
}

.woocommerce-privacy-policy-text {
  margin-bottom: 30px;
}

.woocommerce-account div.woocommerce {
  display: flex;
  flex-wrap: wrap;
}

.woocommerce-MyAccount-navigation {
  width: 25%;
}
@media (max-width: 767px) {
  .woocommerce-MyAccount-navigation {
    width: 100%;
  }
}
.woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-right: 1px solid #DFE1E5;
}
@media (max-width: 767px) {
  .woocommerce-MyAccount-navigation ul {
    border-right: 0;
    border-bottom: 1px solid #DFE1E5;
  }
}
.woocommerce-MyAccount-navigation ul li {
  display: block;
}
@media (max-width: 767px) {
  .woocommerce-MyAccount-navigation ul li {
    display: inline-block;
  }
}
.woocommerce-MyAccount-navigation ul li:not(:last-child) {
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .woocommerce-MyAccount-navigation ul li:not(:last-child) {
    margin-right: 17px;
  }
}
.woocommerce-MyAccount-navigation ul li a {
  font-size: 14px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .woocommerce-MyAccount-navigation ul li a {
    font-size: 13px;
  }
}
.woocommerce-MyAccount-navigation ul li.is-active a {
  color: #094ec0;
}

.woocommerce-MyAccount-content {
  flex: 2;
  padding-left: 65px;
}
@media (max-width: 767px) {
  .woocommerce-MyAccount-content {
    padding-left: 0;
    margin-top: 30px;
  }
}
.woocommerce-MyAccount-content .woocommerce-notices-wrapper {
  margin-bottom: 0;
}

.woocommerce-account .woocommerce-MyAccount-content .hello-customer {
  font-size: 24px;
  font-weight: 400;
  color: #3d3d3d;
}
.woocommerce-account .woocommerce-MyAccount-content .hello-customer .not-admin {
  font-size: 18px;
}
@media (max-width: 767px) {
  .woocommerce-account .woocommerce-MyAccount-content .hello-customer {
    font-size: 20px;
  }
  .woocommerce-account .woocommerce-MyAccount-content .hello-customer .not-admin {
    font-size: 16px;
  }
}

.addresses .woocommerce-Address {
  width: 100% !important;
  border: 1px solid #DFE1E5;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.addresses .woocommerce-Address-title.title {
  margin-bottom: 30px;
}
.addresses .woocommerce-Address-title.title h3 {
  font-size: 20px;
  margin: 0;
}
.addresses a.edit {
  padding: 12px 30px;
  color: #ffffff;
  font-size: 14px;
  background-color: #3d3d3d;
  border-radius: 4px;
  display: inline-block;
  line-height: 1;
  margin-top: 30px;
}
.addresses a.edit:hover {
  background-color: #094ec0;
}

.woocommerce-EditAccountForm p {
  margin-bottom: 0;
}
.woocommerce-EditAccountForm legend {
  font-size: 18px;
  color: #3d3d3d;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button:not(.tc-fancy-btn),
input[type=button],
input[type=reset],
input[type=submit],
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit {
  color: #fff;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  display: inline-block;
  padding: 11px 30px;
  height: auto;
  background-color: #094ec0;
  border: 1px solid #094ec0;
  font-weight: 500;
  border-radius: 6px;
}
button:not(.tc-fancy-btn):hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover,
.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover {
  background-color: transparent;
  color: #094ec0;
}

button.tc-fancy-btn {
  border: 0;
  background: transparent;
  outline: 0;
  padding: 0;
}
button.tc-fancy-btn span.tc-btn-text {
  padding: 10px 20px;
  color: #fff;
}
button.tc-fancy-btn svg {
  stroke: #fff;
}

.return-to-top {
  position: fixed;
  bottom: -30px;
  right: 20px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
  z-index: 998;
  border-radius: 50%;
  opacity: 0;
  transition: bottom 0.5s ease, opacity 0.5s ease;
}
.return-to-top:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: transparent;
  opacity: 1;
  display: block;
  transform: scale(1);
  border-radius: inherit;
  transition: transform 0.5s ease, opacity 0.6s ease;
}
.return-to-top:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 0 0 transparent;
  transform: scale(1);
  transition: all 0.3s ease;
  border-radius: inherit;
}
.return-to-top > i {
  position: relative;
  overflow: hidden;
  font-size: 12px;
  width: inherit;
  height: inherit;
  line-height: inherit;
  display: block;
  color: transparent;
  text-shadow: 0 0 #fff, 0 50px #fff;
  -webkit-transition: text-shadow 0.2s ease;
  -moz-transition: text-shadow 0.2s ease;
  transition: text-shadow 0.2s ease;
  z-index: 1;
}
.return-to-top:hover:after {
  transform: scale(1.07);
  background: #094ec0;
  box-shadow: 0 10px 20px 8px rgba(9, 78, 192, 0.15);
}
.home-analytics .return-to-top:hover:after {
  background: #094ec0;
  box-shadow: 0 10px 20px 8px rgba(9, 78, 192, 0.15);
}
.return-to-top:hover > i {
  text-shadow: 0 -50px #fff, 0 0 #fff;
}
.return-to-top.back-top {
  bottom: 20px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #3d3d3d;
  transition: all 0.3s ease-in-out;
}
a:hover, a:focus, a:active {
  color: #094ec0;
  text-decoration: none;
}
a:hover, a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Primary Menu
--------------------------------------------------------------*/
.site-header {
  position: absolute;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 0;
}
.admin-bar .site-header:not(.showed) {
  margin-top: 32px;
}
.site-header .site-logo .site-title {
  font-size: 34px;
  font-weight: 500;
  padding: 8px 0;
  margin: 0;
}
@media (max-width: 991px) {
  .site-header .site-logo {
    max-width: 150px;
  }
}
.site-header .site-logo img {
  min-height: 42px;
}
@media (max-width: 991px) {
  .site-header .site-logo img {
    min-height: 32px;
  }
}
.site-header .site-logo a {
  font-size: 30px;
  font-weight: 700;
  padding: 18px 32px;
  display: block;
  color: #3d3d3d;
  max-width: 242px;
}
@media (max-width: 1200px) {
  .site-header .site-logo a {
    max-width: 180px;
    padding: 19px 20px;
  }
}
@media (max-width: 991px) {
  .site-header .site-logo a {
    padding: 11px 12px;
  }
}
.site-header .site-logo a h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  color: #3d3d3d;
}
.site-header .site-logo .logo-sticky {
  display: none;
}
.site-header .add-menu {
  margin: 0;
  padding: 31px 0;
  list-style: none;
  font-weight: 500;
}
.site-header .add-menu li a {
  color: #3d3d3d;
}
.site-header .add-menu li a:hover {
  color: #094ec0;
}
.site-header .nav-button-container {
  display: flex;
  align-items: center;
  gap: 26px;
  padding-right: 24px;
}
@media (max-width: 1380px) {
  .site-header .nav-button-container {
    gap: 16px;
    padding-right: 16px;
  }
}
.site-header .nav-btn {
  padding: 8px 24px;
}
@media (max-width: 991px) {
  .site-header .nav-btn {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .site-header .main-nav-container {
    padding-left: 40px;
    flex: 2;
    display: flex;
    justify-content: space-between;
  }
}
.site-header a.nav-btn-link {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 1200px) {
  .site-header a.nav-btn-link {
    font-size: 14px;
  }
}
.site-header a.nav-btn-link i {
  color: #094ec0;
  font-size: 20px;
}
.site-header .tc-hamburger {
  width: 54px;
  cursor: pointer;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: #f6f6f6;
  box-shadow: 0 1.436px 2.154px 0px rgba(62, 62, 62, 0.16) inset;
}
.site-header .tc-hamburger.active {
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 992px) {
  .site-header .tc-hamburger {
    display: none;
  }
}
.site-header .tc-hamburger:focus {
  outline: 0;
}
.site-header .tc-hamburger .bar {
  background: #3d3d3d;
  height: 2px;
  display: block;
  margin-left: auto;
}
.site-header .tc-hamburger .bar:not(:last-child) {
  margin-bottom: 5px;
}
.site-header .tc-hamburger .bar:nth-child(2) {
  width: 20px;
}
.site-header .sidebar-menu-toggle {
  height: 46px;
  width: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border-radius: 50%;
}
.site-header.header_light .tc-hamburger .bar {
  background: #3d3d3d;
}
.site-header.header_transparent {
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.site-header.showed {
  width: 100%;
  position: fixed;
  z-index: 99999;
}
.site-header.showed .header-topber {
  display: none;
}
.site-header.showed .header-inner {
  margin-top: 0;
}
.header-position .site-header.showed {
  top: 48px;
}
.site-header.showed .site-logo .main-logo {
  display: none;
}
.site-header.showed .site-logo a {
  color: #3d3d3d;
}
.site-header.showed .site-logo h3 {
  color: #3d3d3d;
}
.site-header.showed .add-menu li a {
  color: #3d3d3d;
}
.site-header.showed .tc-hamburger .bar {
  background: #3d3d3d;
}
.site-header.showed .main-nav {
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px);
}
.site-header .header-inner {
  margin-top: 24px;
}
@media (max-width: 991px) {
  .site-header .header-inner {
    margin-top: 0;
  }
}
.site-header .header-topber {
  position: relative;
  padding: 9px 0;
  background-color: #094EC0;
  color: #EDF9FF;
}
.site-header .header-topber .topbar-close-btn {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.site-header .header-topber a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}
@media (max-width: 992px) {
  .site-header .header-topber {
    display: none;
  }
}
.site-header .header-topber .header-topbar-promotional-text span {
  font-weight: 600;
  color: #094ec0;
}
.site-header ul.icon-menu:before {
  display: none;
}
.site-header .nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.site-header .nav-right .nav-wishlist {
  padding-right: 23px;
  position: relative;
}
.site-header .nav-right .nav-wishlist:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: #e5e5e5;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .site-header .nav-right .tc-btn {
    font-size: 14px;
  }
}
.site-header .header-offcanvas-toggle {
  border-radius: 11px;
  background: #f6f6f6;
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.05) inset;
  height: 78px;
  width: 78px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  display: none;
}
.site-header .menu-wrapper {
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 34px;
  position: relative;
}
@media (max-width: 1200px) {
  .site-header .menu-wrapper {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .site-header .menu-wrapper {
    display: flex;
    height: calc(100% - 85px);
    flex-direction: column;
    justify-content: space-between;
    overflow-y: scroll;
  }
}
.site-header .main-nav {
  border-radius: 12px;
  border: 1px solid #DFE1E5;
  background: var(--White, #FFF);
  gap: 0;
}
.site-header .search-form {
  display: flex;
  align-items: center;
  max-width: 190px;
}
@media (max-width: 1380px) {
  .site-header .search-form {
    max-width: 180px;
  }
}
@media (max-width: 1280px) and (min-width: 992px) {
  .site-header .search-form {
    display: none;
  }
}
@media (max-width: 991px) {
  .site-header .search-form {
    padding: 0 15px;
  }
}
.site-header .search-form i {
  color: #094ec0;
  font-size: 20px;
}
.site-header .search-form .search-field {
  margin-bottom: 0 !important;
  border: 0 !important;
  padding: 10px;
  background: transparent !important;
}
.site-header .search-form .search-field:focus {
  background: transparent;
}
.site-header .site-main-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 992px) {
  .site-header .site-main-menu {
    display: flex;
    align-items: center;
    gap: 36px;
  }
}
@media (max-width: 1380px) {
  .site-header .site-main-menu {
    gap: 24px;
  }
}
.site-header .site-main-menu > li {
  position: relative;
}
.site-header .site-main-menu > li.menu_half_width {
  position: static;
}
.site-header .site-main-menu > li:after {
  content: "";
  height: 2px;
  width: 0;
  background: #094ec0;
  position: absolute;
  bottom: -1px;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: 3333;
}
@media (max-width: 991px) {
  .site-header .site-main-menu > li:after {
    display: none;
  }
}
@media (min-width: 992px) {
  .site-header .site-main-menu > li {
    padding: 25px 0;
  }
}
.site-header .site-main-menu > li > a {
  font-size: 16px;
  font-weight: 500;
  color: #3d3d3d;
  position: relative;
}
@media (min-width: 992px) and (max-width: 1200px) {
  .site-header .site-main-menu > li > a {
    font-size: 14px;
  }
}
.site-header .site-main-menu > li > a:hover {
  color: #094ec0;
}
.site-header .site-main-menu > li.current-menu-item:after {
  width: 20px;
  opacity: 1;
}
.site-header .site-main-menu > li.current-menu-item > a {
  color: #094ec0;
}
.site-header .site-main-menu > li.current-menu-item > a:before {
  width: 100%;
}
@media (max-width: 991px) {
  .site-header .site-main-menu > li.current-menu-item > i {
    color: #fff;
  }
}
@media (max-width: 991px) {
  .site-header .site-main-menu > li.current-menu-item.current_page_parent > a {
    background: #094ec0;
    color: #fff;
  }
}
.site-header .site-main-menu > li:not(.mega-menu) {
  position: relative;
}
.site-header .site-main-menu li {
  display: inline-block;
}
.site-header .site-main-menu li span.menu-after-text {
  font-weight: 400;
  border-radius: 4px;
  background: #EBF2FF;
  padding: 4px 6px;
  display: inline-block;
  line-height: 1;
  font-size: 14px;
  color: #4E5766;
  letter-spacing: -0.14px;
}
@media (max-width: 991px) {
  .site-header .site-main-menu li {
    display: block;
  }
}
.site-header .site-main-menu li.menu-item-has-children > a {
  position: relative;
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu {
  margin: 0;
}
@media (min-width: 992px) {
  .site-header .site-main-menu li.menu-item-has-children .sub-menu {
    padding: 8px;
    display: block;
    position: absolute;
    top: 115%;
    left: -40px;
    opacity: 0;
    visibility: hidden;
    min-width: 235px;
    z-index: 2222;
    border-radius: 12px;
    background: #FFF;
    box-shadow: 0 4px 12px 0 rgba(12, 18, 30, 0.12);
    transition: all 0.3s ease-in-out;
  }
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu li {
  display: block;
  position: relative;
  margin-right: 0;
  line-height: 36px;
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu li a {
  font-size: 18px;
  padding: 10px;
  display: flex;
  gap: 10px;
  border-radius: 8px;
  color: #5d5d5d;
  line-height: 1.334;
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu li a i {
  font-size: 18px;
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu li a:hover {
  color: #094ec0;
  background: #f6f6f6;
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu li a:hover i {
  color: #094ec0;
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu li.current-menu-item a {
  color: #094ec0;
  background: #f6f6f6;
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu li.has-submenu a:after {
  right: 8px;
  top: 7px;
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu li .sub-menu {
  position: absolute;
  left: 105%;
  top: 0;
  background: #fff;
  min-width: 200px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu li.menu-item-has-children:hover ul {
  opacity: 1;
  visibility: visible;
  top: -15px;
}
.site-header .site-main-menu li.menu-item-has-children:hover ul {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.site-header .site-main-menu li.mega-menu .sub-menu {
  padding: 0 !important;
  box-shadow: none;
  width: max-content !important;
}
.site-header .site-main-menu li.mega-menu .sub-menu li {
  line-height: 26px;
}
.site-header.header_transparent.header_light:not(.showed):not(.mobile-header) .site-main-menu > li > a {
  color: #fff;
}
.site-header.header_transparent.header_light:not(.showed):not(.mobile-header) .site-main-menu > li.menu-item-has-children > a:after {
  color: #fff;
}
.site-header.header_transparent.header_light:not(.showed):not(.mobile-header) .nav-right .nav-btn {
  background: #094ec0;
  color: #fff;
  border-color: #094ec0;
}
.site-header.header-fixed.showed:not(.mobile-header) .site-main-menu > li {
  padding: 20px 0;
}
.site-header.header-fixed.showed .header-offcanvas-toggle {
  display: none;
}
@media (min-width: 992px) {
  .site-header.header-fixed.showed .site-logo a {
    padding: 12px 32px;
  }
}
.site-header.header-fixed.showed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 12px;
  z-index: 9999;
  animation: stickySlideDown 0.65s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.header-position .site-header.header-fixed.showed {
  top: 48px;
}
.header-position .site-header.header-fixed.showed .fullscreen-menu {
  top: 0;
}
.site-header.header-fixed.showed .site-logo .main-logo {
  display: none;
}
.site-header.header-fixed.showed .site-logo .logo-sticky {
  display: block;
}
.site-header.header-fixed.showed .site-main-menu li a:hover {
  color: #094ec0;
}
.site-header.header-fixed.showed .site-main-menu li:after {
  display: none;
}
.site-header .elementor-widget .elementor-icon-list-icon {
  display: inline-flex;
}

.site-header .site-main-menu li.menu-item-has-children .sub-menu li .mega-menu-wrapper a {
  padding: 0;
}
.site-header .site-main-menu li.menu-item-has-children .sub-menu li .mega-menu-wrapper a:hover {
  background: transparent;
}

.header-inner {
  position: relative;
}

.offcanvas-desktop-toggle {
  position: absolute;
  right: 0;
  width: 32vw;
  display: none;
}

.offcanvas-nav-menu__wrapper {
  will-change: transform;
  max-width: 34.38vw;
  background: #fff;
  z-index: 1500;
  border-radius: 40px;
  border: 8px solid #ECECEC;
  padding: 40px;
  will-change: transform;
}

.offcanvas-desktop-toggle-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.offcanvas-desktop-toggle-header #current-time-display {
  color: #3d3d3d;
}

.offcanvas-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.offcanvas-menu li:not(:last-child) {
  margin-bottom: 22px;
}
.offcanvas-menu li a {
  font-size: 30px;
  color: #3d3d3d;
  outline: none;
}

.offcanvas-mask-overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.25s linear;
  width: 100vw;
  z-index: 993;
  pointer-events: all;
}

ul.offcanvas-social-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.menu-primary-menu-container {
  width: 100%;
}

.navbar-menu__footer {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  width: 100%;
}
@media (max-width: 991px) {
  .navbar-menu__footer {
    display: flex;
  }
}

@keyframes stickySlideDown {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.menu-trigger {
  overflow: hidden;
  display: flex;
  align-items: center;
  cursor: pointer;
  background-color: transparent;
  border: 0px solid transparent;
}
@media (max-width: 991px) {
  .menu-trigger {
    justify-content: center;
    display: block !important;
  }
}
.menu-trigger .dot_icon {
  display: flex;
  flex-wrap: wrap;
  width: 24px;
  height: 24px;
  margin: -2px;
  overflow: hidden;
}
.menu-trigger .dot_icon .dot {
  width: 4px;
  height: 4px;
  background: #3d3d3d;
  margin: 2px;
  transition: all 0.3s linear;
}
.menu-light .menu-trigger .dot_icon .dot {
  background: #fff;
}
.menu-trigger:hover .dot_icon .dot:nth-child(odd) {
  transform: translate(8px, 8px);
}
.menu-trigger:hover .dot_icon .dot:nth-child(5) {
  opacity: 0;
}

#site-navigation {
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  #site-navigation .site-logo {
    min-width: 170px;
    border-right: 1px solid #DFE1E5;
  }
}

@media (min-width: 992px) {
  .close-menu {
    display: none;
  }
}
.mobile-menu-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 15px;
  border-radius: 8px;
  border: 1px solid #DFE1E5;
  position: relative;
  z-index: 2;
}
.mobile-menu-header h3 {
  margin-bottom: 0;
}

.close-menu {
  height: 55px;
  width: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3d3d3d;
  font-size: 24px;
  border-radius: 7px;
  background: #F6F6F6;
  box-shadow: 0 1.436px 2.154px 0 rgba(62, 62, 62, 0.16) inset;
}

.site-main-menu {
  list-style: none;
}
.site-main-menu ul {
  list-style: none;
}

.mobile-menu-icon > span {
  display: block;
  width: 30px;
  height: 2px;
  background: #fff;
  margin-bottom: 5px;
}

/*--------------------------------------------------------------
### Main Nav Mobile
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .site-header {
    height: auto;
    top: 16px;
    /*--------------------------------------------------------------
    ### Main Nav
    --------------------------------------------------------------*/
  }
  .site-header .mobile-menu-header {
    display: flex;
  }
  .site-header .mobile-menu-header .main-logo {
    height: 25px;
  }
  .site-header .site-logo .logo-sticky {
    display: none;
  }
  .site-header .site-logo a {
    font-size: 20px;
  }
  .site-header.showed .logo-sticky {
    display: block;
  }
  .site-header.showed .main-nav-container .menu-item-depth-0 > a.active {
    color: #fff;
  }
  .site-header .nav-right {
    display: none;
  }
  .site-header .main-nav-container {
    position: fixed;
    top: 0;
    height: 100vh;
    background: #fff;
    max-width: 350px;
    width: 100%;
    text-align: left;
    padding: 16px 16px 50px;
    right: -100px;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: cubic-bezier(0.23, 1, 0.32, 1) all 0.3s;
    overflow: hidden;
  }
  .header-position .site-header .main-nav-container {
    top: 32px;
  }
}
@media (max-width: 991px) and (max-width: 420px) {
  .site-header .main-nav-container {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .site-header .main-nav-container.open {
    opacity: 1;
    right: 0;
    visibility: visible;
  }
  .site-header .main-nav-container li {
    position: relative !important;
  }
  .site-header .main-nav-container li a {
    font-size: 20px;
    color: #3d3d3d;
    position: relative;
    z-index: 1;
    padding: 6px 16px;
    display: block;
    align-items: center;
    font-weight: 500;
  }
  .site-header .main-nav-container li a:hover {
    display: block;
    background-color: #f5f5f5;
  }
  .site-header .main-nav-container li.is-open > a {
    color: #094ec0;
  }
  .site-header .main-nav-container li.is-open > i {
    color: #094ec0 !important;
    transform: rotate(180deg);
  }
  .site-header .main-nav-container li i.ri-arrow-down-s-line {
    position: absolute;
    right: 15px;
    top: 8px;
    font-size: 24px;
    z-index: 3;
    line-height: 1;
    color: #454545;
    transition: all 0.3s ease-in-out;
  }
  .site-header .main-nav-container li.menu-item-has-children > a {
    position: relative;
  }
  .site-header .main-nav-container li.menu-item-has-children > a.active:after {
    content: "\e622";
  }
  .site-header .main-nav-container li.menu-item-has-children .sub-menu li a {
    font-size: 18px;
    text-transform: capitalize;
    border-radius: 0;
    padding: 6px 20px 6px 30px;
  }
  .site-header .main-nav-container li.menu-item-has-children .sub-menu li.is-open > a {
    background-color: #094ec0;
    color: #fff;
  }
  .site-header .main-nav-container li.menu-item-has-children .sub-menu li.is-open > i {
    color: #fff;
  }
  .site-header .main-nav-container li.menu-item-has-children .sub-menu li .sub-menu {
    position: static;
    transition: none;
    box-shadow: none;
    visibility: visible;
    opacity: 1;
    padding: 0;
  }
  .site-header .main-nav-container li.menu-item-has-children .sub-menu li .sub-menu li a {
    padding-left: 30px;
  }
  .site-header .main-nav-container.current-menu-item.is-open > a {
    display: block;
    background-color: #f5f5f5;
  }
  .site-header .main-nav-container .menu-item-depth-0 > a.active {
    color: #fff;
    background: #094ec0;
  }
  .site-header .main-nav-container .site-vertical-menu li a {
    padding: 12px 15px;
    margin-bottom: 0;
  }
  .header-position .site-header.showed .main-nav-container {
    top: 0;
  }
  .site-header .main-nav {
    position: static;
    z-index: 3333;
    line-height: 1.2;
  }
  .site-header .main-nav .site-main-menu {
    padding-left: 0;
  }
  .site-header .main-nav .sub-menu {
    padding-left: 15px;
    margin-left: 0;
    margin-bottom: 0;
    display: none;
  }
  .site-header .main-nav .sub-menu > li {
    padding: 0;
  }
  .site-header .main-nav .sub-menu.active .main-item > .menu-link {
    background: #f8f9fa;
  }
  .site-header .main-nav .sub-menu li a {
    border-top: 0;
  }
  .site-header .main-nav .sub-menu li.is-open a.is-open .fa-chevron-down {
    color: #094ec0;
  }
  .site-header .main-nav .sub-menu li.current-menu-item a.active {
    color: #094ec0;
  }
  .site-header .main-nav .nav-item.active-main-item > .menu-link {
    color: #094ec0;
    background: #f8f9fa;
    border-color: #094ec0;
  }
  .site-header .main-nav .sub-menu {
    padding-left: 20px;
    margin-bottom: 0;
  }
  .site-header .main-nav .sub-menu li a {
    font-size: 14px;
  }
  .site-header .main-nav {
    cursor: default;
    position: relative;
    z-index: 10;
    text-align: left;
    font-weight: 500;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    border: 1px solid #DFE1E5;
  }
  .site-header .main-nav a:before,
  .site-header .main-nav .close-bar {
    display: none;
  }
  .site-header .main-nav .site-main-menu {
    margin-top: 20px;
  }
  .site-header .main-nav .site-main-menu,
  .site-header .main-nav .site-main-menu ul {
    list-style: none;
  }
  .site-header .main-nav .nav-item:before,
  .site-header .main-nav .nav-item.current-menu-item:before,
  .site-header .main-nav .nav-item.current-menu-ancestor:before {
    background-color: #094ec0;
  }
  .site-header .main-nav .nav-item.active-main-item > .menu-link {
    color: #094ec0;
  }
  .site-header .main-nav.hidden {
    display: none;
  }
}
@media screen and (max-width: 991px) and (max-width: 1024px) {
  .site-header .main-nav .close-menu {
    display: flex;
  }
}
@media (max-width: 991px) {
  .site-header .elementor-column.elementor-col-50, .site-header .elementor-column[data-col="50"] {
    width: 100% !important;
  }
}

.mask-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 222;
}

.mega-menu-wrapper > a {
  display: block !important;
}
@media (max-width: 991px) {
  .mega-menu-wrapper {
    max-width: 350px;
  }
  .mega-menu-wrapper .elementor-element > .elementor-element-populated {
    padding: 10px !important;
  }
  .mega-menu-wrapper .elementor-column {
    width: 100% !important;
  }
}

.close-header {
  background-color: #f84258;
  color: #fff;
  justify-content: end;
  padding: 20px;
  display: none;
}
@media (max-width: 991px) {
  .close-header {
    display: flex;
  }
}
.close-header .button-close i {
  font-weight: 700;
}

@media (max-width: 991px) {
  .admin-bar .header-categories {
    margin-top: 32px;
  }
}

/* Vertical Menu */
/* Sidebar Canvas menu */
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 1em;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
  margin-bottom: 10px;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
  margin-bottom: 40px;
}
.alignright.size-full {
  margin-bottom: 60px;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
}

.wp-block-image .alignright {
  float: right;
  margin: 0.5em 0 2em 1em;
}

.wp-block-media-text__media img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*--------------------------------------------------------------
# Layout
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Content
--------------------------------------------------------------*/
.content-area {
  padding: 60px 0;
  min-height: 35vh;
}

.post-type-archive-product .content-area {
  padding: 80px 0;
}

.sidebar_left {
  flex-direction: row-reverse;
}

.page_404_wrapper .banner_404_text {
  max-width: 500px;
  margin: 0 auto 40px;
}
.page_404_wrapper .search_result_form {
  max-width: 400px;
  margin: 0 auto 30px;
}

/*--------------------------------------------------------------
## Page Header
--------------------------------------------------------------*/
.page-header {
  min-height: 470px;
  height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 200px 0 80px;
  text-align: center;
}
.page-header:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/page_header_bg.png");
  background-repeat: no-repeat;
  z-index: 1;
}
@media (max-width: 991px) {
  .page-header {
    min-height: 200px !important;
  }
}
.page-header .page-header-shape-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  text-align: left;
}
.page-header .page-header-shape-right {
  position: absolute;
  right: 0;
  bottom: 0;
}
.page-header .page-header_wrapper, .page-header .breadcrumb-wrapper {
  position: relative;
  z-index: 2;
}
.page-header .page-header_title {
  position: relative;
  display: inline-block;
  z-index: 2;
  margin-bottom: 21px;
  font-size: clamp(40px, 2.5vw, 48px);
  line-height: 1;
}
.page-header p {
  margin-bottom: 0;
}
.page-header .breadcrumbs {
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .page-header .breadcrumbs {
    font-size: 14px;
  }
}
.page-header .breadcrumbs a {
  color: #3d3d3d;
}
.page-header .breadcrumbs a:hover {
  color: #094ec0;
}
.page-header .breadcrumbs .separator {
  display: inline-block;
}

.page-header_search {
  background: #fff;
  padding: 6px 6px 6px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.page-header_search i {
  font-size: 22px;
  color: #667085;
}
.page-header_search .search-form {
  flex: 2;
}
.page-header_search .search-form input[type=text] {
  padding: 10px;
}
.page-header_search .search-form button {
  border-radius: 4px !important;
}

.header_transparent ~ .page-header .page-header_wrapper,
.header_transparent ~ .event-page-header .page-header_wrapper {
  margin-top: 120px;
}
@media (max-width: 991px) {
  .header_transparent ~ .page-header .page-header_wrapper,
  .header_transparent ~ .event-page-header .page-header_wrapper {
    margin-top: 80px;
  }
}

/*--------------------------------------------------------------
## Middle Area
--------------------------------------------------------------*/
#header-middle-area > div {
  padding-top: 25px;
  padding-bottom: 25px;
}
@media (max-width: 991.98px) {
  #header-middle-area > div {
    padding: 10px 0;
  }
  #header-middle-area #middle-logo {
    margin-bottom: 15px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
## Sideber Content
--------------------------------------------------------------*/
.sidebar_left .col-lg-4 {
  order: 1;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget:not(:last-child) {
  margin-bottom: 50px;
}
.widget .widget-title {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  font-weight: 700;
  position: relative;
  color: #3d3d3d;
}
.widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget ul li {
  position: relative;
}
.widget ul li:not(:last-child) {
  margin-bottom: 8px;
}
.widget ul li a {
  font-size: 16px;
  color: #4f4f4f;
  font-weight: 400;
}
.widget ul li a .post_count {
  font-size: 14px;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.widget ul li a:hover {
  color: #094ec0;
}

.site-footer .widget_nav_menu ul li a:hover {
  color: #094ec0;
}

@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }
}
.sidebar select {
  background-color: #fff;
}
.sidebar .widget-title, .sidebar h2, .sidebar h3, .sidebar h4, .sidebar h5, .sidebar h6 {
  font-size: 24px;
  color: #3d3d3d;
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 20px;
  display: inline-block;
}
.sidebar .widget-title:after, .sidebar h2:after, .sidebar h3:after, .sidebar h4:after, .sidebar h5:after, .sidebar h6:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: #094ec0;
  bottom: 0;
  left: 0;
}
.sidebar .wp-block-latest-posts__list {
  margin-top: 7px;
}
.sidebar .widget_calendar caption {
  background-color: #f0f2f9;
}
.sidebar .wp-calendar-nav {
  background-color: #fff;
}
.sidebar .widget ul.wp-block-categories li, .sidebar .widget ul.wp-block-archives li, .sidebar .widget ul:not(.wp-block-latest-posts) li, .sidebar .widget.widget_archive ul.wp-block-categories li, .sidebar .widget.widget_archive ul.wp-block-archives li, .sidebar .widget.widget_archive ul:not(.wp-block-latest-posts) li {
  position: relative;
}
.sidebar .widget ul.wp-block-categories li a, .sidebar .widget ul.wp-block-archives li a, .sidebar .widget ul:not(.wp-block-latest-posts) li a, .sidebar .widget.widget_archive ul.wp-block-categories li a, .sidebar .widget.widget_archive ul.wp-block-archives li a, .sidebar .widget.widget_archive ul:not(.wp-block-latest-posts) li a {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-left: 20px;
}
.sidebar .widget ul.wp-block-categories li a:before, .sidebar .widget ul.wp-block-archives li a:before, .sidebar .widget ul:not(.wp-block-latest-posts) li a:before, .sidebar .widget.widget_archive ul.wp-block-categories li a:before, .sidebar .widget.widget_archive ul.wp-block-archives li a:before, .sidebar .widget.widget_archive ul:not(.wp-block-latest-posts) li a:before {
  content: "\ea6e";
  font-family: remixicon !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  left: 0;
}
.sidebar .widget ul.wp-block-categories li a:hover, .sidebar .widget ul.wp-block-archives li a:hover, .sidebar .widget ul:not(.wp-block-latest-posts) li a:hover, .sidebar .widget.widget_archive ul.wp-block-categories li a:hover, .sidebar .widget.widget_archive ul.wp-block-archives li a:hover, .sidebar .widget.widget_archive ul:not(.wp-block-latest-posts) li a:hover {
  color: #3d3d3d;
}

@media (max-width: 991px) {
  .sidebar-container {
    padding-left: 15px !important;
  }
}

.sidebar-widget-area .widget ul li:last-child a {
  border-bottom: 0;
}

.sidebar .widget-title {
  position: relative;
  display: inline-block;
}

.widget_recent_entries ul,
.widget_recent_comments ul,
.widget_archive ul,
.widget_categories ul,
.widget_meta ul,
.widget_product_categories ul,
.widget_rss ul,
.widget_pages ul,
.widget_nav_menu ul {
  margin: 0;
  padding: 0;
}
.widget_recent_entries li,
.widget_recent_comments li,
.widget_archive li,
.widget_categories li,
.widget_meta li,
.widget_product_categories li,
.widget_rss li,
.widget_pages li,
.widget_nav_menu li {
  transition: all 0.3s ease-in-out;
  display: block;
  margin: 0;
  list-style-type: none;
  position: relative;
}
.widget_recent_entries li:last-child,
.widget_recent_comments li:last-child,
.widget_archive li:last-child,
.widget_categories li:last-child,
.widget_meta li:last-child,
.widget_product_categories li:last-child,
.widget_rss li:last-child,
.widget_pages li:last-child,
.widget_nav_menu li:last-child {
  border-bottom: 0;
}
.widget_recent_entries li .children,
.widget_recent_comments li .children,
.widget_archive li .children,
.widget_categories li .children,
.widget_meta li .children,
.widget_product_categories li .children,
.widget_rss li .children,
.widget_pages li .children,
.widget_nav_menu li .children {
  margin-top: 5px;
  padding-left: 10px;
}
.widget_recent_entries li:last-child,
.widget_recent_comments li:last-child,
.widget_archive li:last-child,
.widget_categories li:last-child,
.widget_meta li:last-child,
.widget_product_categories li:last-child,
.widget_rss li:last-child,
.widget_pages li:last-child,
.widget_nav_menu li:last-child {
  margin-bottom: 0;
}
.widget_recent_entries a,
.widget_recent_comments a,
.widget_archive a,
.widget_categories a,
.widget_meta a,
.widget_product_categories a,
.widget_rss a,
.widget_pages a,
.widget_nav_menu a {
  display: block;
  font-size: inherit;
  font-family: inherit;
}
.widget_recent_entries a:hover,
.widget_recent_comments a:hover,
.widget_archive a:hover,
.widget_categories a:hover,
.widget_meta a:hover,
.widget_product_categories a:hover,
.widget_rss a:hover,
.widget_pages a:hover,
.widget_nav_menu a:hover {
  color: #094ec0;
}

.widget_recent_comments ul {
  margin-top: 10px;
}

.widget_rss ul li {
  padding-left: 0 !important;
  margin-bottom: 25px;
}
.widget_rss ul li:before {
  display: none;
}
.widget_rss ul li .rsswidget {
  font-weight: 600;
  color: #051441;
  line-height: 1.4;
}
.widget_rss ul li .rssSummary {
  color: #051441;
  line-height: 1.4;
}
.widget_rss ul li .rss-date {
  margin-bottom: 5px;
  display: block;
}
.widget_rss ul li cite {
  font-weight: 500;
  margin-top: 6px;
  display: inline-block;
}
.widget_rss a {
  border-bottom: 0 !important;
  display: inline-block;
  border: 0 !important;
  padding: 0 !important;
}

.post-count {
  color: #6A6A74;
  transition: all 0.3s ease-in-out;
  margin-left: 3px;
}

.widget_archive .post-count {
  margin-left: 3px;
}

.widget_pages .sub-menu,
.widget_nav_menu .sub-menu {
  margin-top: 7px;
}
.widget_pages .sub-menu > li,
.widget_nav_menu .sub-menu > li {
  border-bottom: 0;
}
.widget_pages .sub-menu > li .sub-menu,
.widget_nav_menu .sub-menu > li .sub-menu {
  padding-left: 0;
}
.widget_pages .sub-menu > li .sub-menu > li > a,
.widget_nav_menu .sub-menu > li .sub-menu > li > a {
  padding-left: 5px;
}

.widget_pages .sub-menu > li .sub-menu > li > a,
.widget_nav_menu .sub-menu > li .sub-menu > li > a {
  padding: 0;
}

.widget_categories li,
.widget_product_categories li {
  margin: 0;
  padding: 0;
  position: relative;
}
.widget_categories a,
.widget_product_categories a {
  display: block;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
.widget_recent_comments .recentcomments {
  padding-left: 35px;
  position: relative;
  margin-bottom: 20px;
  word-break: break-word;
  display: inline-block;
  border-top: 0 !important;
  width: 100%;
}
.widget_recent_comments .recentcomments a {
  line-height: 30px;
  border-bottom: 0 !important;
  padding-left: 0 !important;
  border: 0 !important;
  padding: 0 !important;
  display: inline-block !important;
}
.widget_recent_comments .recentcomments a:before {
  display: none;
}
.widget_recent_comments .recentcomments:before {
  position: absolute;
  top: 4px;
  left: 0;
  content: "\e645";
  font-family: "themify";
  color: #465675;
  font-size: 20px;
}
.widget_recent_comments .recentcomments:last-child {
  margin-bottom: 0;
}
.widget_recent_comments .recentcomments a {
  display: inline-block;
}

.widget_recent_entries .post-date {
  display: block;
  font-size: 14px;
}

.widget_calendar td,
.widget_calendar th {
  padding: 5px 0;
  text-align: center;
  min-width: auto;
  line-height: 1.8;
  font-size: 15px;
}

.widget_calendar td#today {
  background: #094ec0;
  color: #fff;
  border-radius: 3px;
}
.widget_calendar td#today a {
  color: #fff;
}

@media (max-width: 991.98px) {
  .page-content .widget {
    margin: 0 0 52px;
  }
}
@media (max-width: 767.98px) {
  .page-content .widget {
    margin: 0 0 32px;
  }
  .page-sidebar {
    margin-bottom: 50px;
  }
  .page-sidebar .page-sidebar-inner .page-sidebar-content {
    padding-right: 30px;
    border: 1px solid #eee;
  }
  .page-sidebar .page-sidebar-inner .page-sidebar-content:after {
    display: none;
  }
  .single-post .page-main-content {
    padding-bottom: 20px;
  }
}
.tagcloud a {
  font-size: inherit !important;
  display: inline-block;
  line-height: 1.7;
}
.tagcloud a:hover {
  color: #094ec0;
  border-color: #094ec0;
}
.tagcloud .tagcloud {
  margin-top: 20px;
}

/* Recent Post */
.tc-widget-recent-posts {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.tc-widget-recent-posts .recent-posts-image_wrapper {
  width: 85px;
  margin-right: 20px;
  border-radius: 6px;
  overflow: hidden;
}
.tc-widget-recent-posts .recent-posts-image_wrapper img {
  border-radius: 6px;
}
.tc-widget-recent-posts .recent-posts-content_wrapper {
  flex: 1;
}
.tc-widget-recent-posts .post-title {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
}
.tc-widget-recent-posts .post-title a {
  color: #3d3d3d;
  line-height: 1.2;
}
.tc-widget-recent-posts .post-title a:hover {
  color: #094ec0;
}
.tc-widget-recent-posts .date {
  color: #71717c;
  font-size: 16px;
}
.tc-widget-recent-posts .date i {
  margin-right: 5px;
}
.tc-widget-recent-posts .date a {
  color: #758598;
}

.about-widget_wrapper {
  max-width: 260px;
}
.about-widget_wrapper p {
  color: #c8c9d1;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 24px;
}
.about-widget_wrapper .footer-logo {
  margin-bottom: 28px;
}
.about-widget_wrapper .footer-logo a {
  display: block;
  max-width: 150px;
}
.about-widget_wrapper .footer-logo a img {
  height: 52px;
}

.tc-contact-widget .about_text {
  color: rgba(255, 255, 255, 0.702);
  margin-bottom: 20px;
}
.tc-contact-widget .footer-contact-info li {
  margin-bottom: 19px;
  display: flex;
  align-items: baseline;
  line-height: 26px;
}
.tc-contact-widget .footer-contact-info li i {
  margin-right: 10px;
}

.author-about-widget {
  text-align: center;
}
.author-about-widget .author-image {
  margin: 0 auto 23px;
  border: 3px solid rgba(240, 64, 55, 0.2);
  border-radius: 50%;
  max-width: 155px;
  height: 155px;
  padding: 8px;
}
.author-about-widget .author-image img {
  width: 100%;
  border-radius: 50%;
}
.author-about-widget .author_name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.author-about-widget .about_text {
  line-height: 1.3;
  margin-bottom: 27px;
}
.author-about-widget .author-social-link {
  margin: 0;
  padding: 0;
  list-style: none;
}
.author-about-widget .author-social-link li {
  display: inline-block;
}
.author-about-widget .author-social-link li:not(:last-child) {
  margin-right: 7px;
}
.author-about-widget .author-social-link li a {
  font-size: 15px;
  color: #fff;
  position: relative;
  height: 34px;
  width: 34px;
  line-height: 34px;
  text-align: center;
  display: block;
}
.author-about-widget .author-social-link li a i {
  display: block;
  line-height: 34px;
}
.author-about-widget .author-social-link li a i:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  background-color: #094ec0;
}
.author-about-widget .author-social-link li a i.fa-facebook:after {
  background-color: #405fa4;
}
.author-about-widget .author-social-link li a i.fa-twitter:after {
  background-color: #16aefd;
}
.author-about-widget .author-social-link li a i.fa-pinterest-p:after {
  background-color: #e60023;
}
.author-about-widget .author-social-link li a i.fa-fa-vimeo:after {
  background-color: #0a66c2;
}
.author-about-widget .author-social-link li a i:hover:after {
  transform: scale(1.2);
}
.author-about-widget .author-social-link li a:hover {
  color: #fff;
}

/* Tags */
.tagcloud {
  color: #2b2350;
  display: inline-block;
  margin-right: 15px;
  font-size: 20px;
  font-weight: 500;
}
.tagcloud a {
  display: inline-block;
  font-size: 14px !important;
  font-weight: 400;
  background: #E6E6E6;
  color: #636363;
  padding: 9px 13px;
  border-radius: 4px;
  margin-bottom: 10px;
  margin-right: 5px;
  line-height: 1;
}
.tagcloud a:hover {
  background-color: #094ec0;
  color: #fff;
  position: relative;
  z-index: 2;
}

.site-footer .widget-title, .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5, .site-footer h6 {
  font-size: 20px;
  font-weight: 700;
  color: #3d3d3d;
  margin-bottom: 23px;
  padding-bottom: 0;
}
@media (max-width: 575px) {
  .site-footer .widget-title, .site-footer h2, .site-footer h3, .site-footer h4, .site-footer h5, .site-footer h6 {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .site-footer .widget {
    padding-top: 36px;
  }
}
.site-footer .widget.widget_media_image {
  margin-bottom: 0;
}
.site-footer .widget ul li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  font-weight: 400;
  position: relative;
}
.site-footer .widget ul li a {
  color: #3d3d3d;
  font-size: 16px;
  position: relative;
  display: flex;
  gap: 16px;
  font-weight: 400;
  line-height: 1;
  align-items: center;
}
@media (max-width: 575px) {
  .site-footer .widget ul li a {
    justify-content: center;
  }
}
.site-footer .widget ul li a span.menu-after-text {
  font-weight: 400;
  border-radius: 4px;
  background: #EBF2FF;
  padding: 4px 6px;
  display: inline-block;
  line-height: 1;
  font-size: 14px;
  color: #4E5766;
  letter-spacing: -0.14px;
}
.site-footer .widget ul li a .post-count {
  color: #CDD0D3;
}
.site-footer .widget ul li a:hover {
  color: #094ec0;
}
.site-footer .widget ul li a:hover .post-count {
  color: #094ec0;
}
.site-footer .widget ul li .rsswidget {
  color: #fff;
}
.site-footer .widget ul.menu li:not(:last-child) {
  margin-bottom: 20px;
}
.site-footer .widget ul.menu li .sub-menu {
  padding-left: 15px;
}
.site-footer .widget ul.menu li .sub-menu li:not(:last-child) {
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .site-footer .footer-wrapper {
    padding: 0 !important;
  }
}
.site-footer .footer-wrapper .row .col-12:not(:last-child) .themecrave_widget {
  position: relative;
}
@media (max-width: 575px) {
  .site-footer .footer-wrapper .row .col-12:not(:last-child) .themecrave_widget {
    padding-bottom: 37px;
    border-bottom: 1px solid #eee;
  }
  .site-footer .footer-wrapper .row .col-12:not(:last-child) .themecrave_widget:before, .site-footer .footer-wrapper .row .col-12:not(:last-child) .themecrave_widget:after {
    content: "";
    position: absolute;
    bottom: -5px;
    width: 9px;
    height: 9px;
    background: #ffffff;
    border: 1px solid #DFE1E5;
  }
  .site-footer .footer-wrapper .row .col-12:not(:last-child) .themecrave_widget:after {
    right: 0;
  }
}
.site-footer .tc-newsletter-widget .newsletter-inner input {
  border: 0;
  border-radius: 4px;
  height: 46px;
  padding: 10px 15px;
  margin-bottom: 8px;
}
.site-footer .tc-newsletter-widget .newsletter-inner input::placeholder {
  color: #adadad;
}
.site-footer .tc-newsletter-widget .newsletter-inner .newsletter-submit {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  padding: 11px 33px 6px;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  letter-spacing: 1px;
  height: 46px;
  outline: 0;
  border: 1px solid #094ec0;
}
.site-footer .tc-newsletter-widget .newsletter-inner .newsletter-submit .fa-spin {
  display: none;
}
.site-footer .tc-newsletter-widget .newsletter-inner .newsletter-submit.clicked .fa-spin {
  display: block;
}
.site-footer .tc-newsletter-widget .newsletter-inner .newsletter-submit.clicked span {
  display: none;
}
.site-footer .tc-newsletter-widget .form-result {
  margin: 10px 0;
}
.site-footer.footer_dark .widget_calendar td {
  color: rgba(255, 255, 255, 0.6);
}
.site-footer.footer_dark table {
  border-color: rgba(255, 255, 255, 0.2);
  border-top-color: rgba(255, 255, 255, 0.2);
}
.site-footer.footer_dark .calendar_wrap caption {
  background: #094ec0;
  color: #ffffff;
}
.site-footer.footer_dark .widget_recent_comments .recentcomments:before, .site-footer.footer_dark .widget_rss a {
  color: #fff;
}
.site-footer.footer_dark .widget_rss ul li .rss-date {
  color: rgba(255, 255, 255, 0.8);
}
.site-footer.footer_dark .widget_rss ul li .rssSummary {
  color: rgba(255, 255, 255, 0.8);
}
.site-footer.footer_dark .textwidget {
  color: rgba(255, 255, 255, 0.8);
}
.site-footer.footer_dark table td:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.site-footer.footer_dark .wp-block-calendar tbody td, .site-footer.footer_dark .wp-block-calendar th {
  border-color: rgba(255, 255, 255, 0.6);
}
.site-footer.footer_dark .wp-block-calendar th {
  border: 0;
}

/* Widget Block */
.wp-block-latest-comments__comment-meta {
  line-height: 1.4;
}
.wp-block-latest-comments__comment-meta a {
  font-weight: 400;
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  padding: 0;
  position: relative;
  background: #F1F6FE;
  border: 1px solid #DFE1E5;
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
  margin-bottom: 0;
  background-color: transparent;
  padding: 0 15px;
  border: 0;
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input:focus {
  border-color: transparent;
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon {
  background-color: transparent;
  margin-left: 0;
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__button.has-icon svg {
  font-size: 20px;
  transform: rotate(-90deg);
  fill: #3d3d3d;
}
.wp-block-search.wp-block-search__button-inside.wp-block-search__text-button .wp-block-search__inside-wrapper {
  padding: 5px;
}
.wp-block-search.wp-block-search__button-inside.wp-block-search__text-button .wp-block-search__input {
  height: 46px;
}
.wp-block-search.wp-block-search__button-inside.wp-block-search__text-button .wp-block-search__button {
  height: 46px;
  padding: 10px 20px;
  margin-left: 0;
}
.wp-block-search.wp-block-search__button-outside.wp-block-search__icon-button .wp-block-search__button {
  padding: 0 15px;
}
.wp-block-search.wp-block-search__button-outside.wp-block-search__icon-button svg {
  fill: #fff;
  font-size: 20px;
  transform: rotate(-90deg);
}

/* Recent Post */
.widget .wp-block-latest-posts li > a {
  font-size: 16px;
  line-height: 1.3;
  display: block;
  margin-bottom: 4px;
}
.widget .wp-block-latest-posts li > a:hover {
  color: #094ec0;
}

.wp-block-latest-posts__featured-image img {
  border-radius: 6px;
}

.wp-block-latest-posts.wp-block-latest-posts__list li:not(:last-child) {
  margin-bottom: 20px;
}

.wp-block-latest-posts__post-author, .wp-block-latest-posts__post-date {
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
}

.wp-block-latest-posts__post-author {
  margin-right: 10px;
}

.wp-block-tag-cloud {
  margin-bottom: 0 !important;
}
.wp-block-tag-cloud a {
  display: inline-block;
  font-size: 12px !important;
  font-weight: 600;
  color: #4f4f4f;
  padding: 9px 13px;
  margin-bottom: 10px;
  margin-right: 5px;
  line-height: 1;
  border: 1px solid #DFE1E5;
}
.wp-block-tag-cloud a:hover {
  color: #fff;
  background-color: #094ec0;
  border-color: #094ec0;
}

.tc-block-social-link {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tc-block-social-link li {
  display: inline-block;
}
.tc-block-social-link li:not(:last-child) {
  margin-right: 10px;
}
.tc-block-social-link li a {
  height: 40px;
  width: 40px;
  line-height: 39px;
  font-size: 14px;
  border: 1px solid #d5dde8;
  display: block;
  border-radius: 50%;
  color: #9090a3;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.tc-block-social-link li a:hover {
  background: #094ec0;
  border-color: #094ec0;
  box-shadow: 0 20px 30px 0 rgba(9, 78, 192, 0.34);
  color: #fff;
}

.widget ~ .wp-block-spacer {
  margin-bottom: 0 !important;
}

.widget:has(.wp-block-spacer) {
  margin-bottom: 0 !important;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.blog-content-area {
  background: #F3F3F5;
  position: relative;
  z-index: 40;
  border-radius: 0 0 80px 80px;
  padding: 230px 0 160px;
}
@media (max-width: 1366px) {
  .blog-content-area {
    border-radius: 0 0 50px 50px;
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .blog-content-area {
    padding-top: 126px;
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .blog-content-area {
    border-radius: 0 0 28px 28px;
  }
}
.blog-content-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 517px;
  z-index: -1;
  background: url("../images/page_header_bg.png") no-repeat center center;
}

.blog-header-wrapper {
  display: flex;
  gap: 90px;
  margin-bottom: 53px;
}
@media (max-width: 767px) {
  .blog-header-wrapper {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
  }
}
.blog-header-wrapper .page-header-title {
  font-size: 48px;
  letter-spacing: -1.44px;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .blog-header-wrapper .page-header-title {
    font-size: 30px;
    letter-spacing: -0.9px;
    line-height: 38px;
  }
}
.blog-header-wrapper .page-header-title span {
  font-weight: 400;
  color: #888;
}
.blog-header-wrapper .page-header-subtitle {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .blog-header-wrapper .page-header-subtitle {
    font-size: 16px;
  }
}
.blog-header-wrapper .page-header-inner {
  flex-basis: 680px;
}
@media (max-width: 1200px) {
  .blog-header-wrapper .page-header-inner {
    flex-basis: 100%;
  }
}

.updated:not(.published) {
  display: none;
}

.no-results .page-content {
  padding: 50px 0 120px;
  text-align: left;
}
@media (max-width: 991px) {
  .no-results .page-content {
    padding: 50px 0 80px;
  }
}

.page-content,
.entry-content,
.entry-summary {
  word-break: break-word;
}
.page-content:after,
.entry-content:after,
.entry-summary:after {
  content: "";
  clear: both;
  display: block;
}

.page-header .page-title {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 50px;
}

.page-content {
  padding: 120px 0;
}

.page-template-default .page-content {
  padding: 114px 0 97px;
}
.page-template-default .page-content .comments-area {
  padding: 34px 0 23px;
}
.page-template-default .page-content .page-links {
  margin-bottom: 20px;
}

.blog-post-archive {
  padding: 120px 0;
}

.search-no-results .page-content .page-content {
  padding: 20px 0 0;
}

.post-author {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: max-content;
  margin: 0 auto;
}
.post-author img {
  border-radius: 50% !important;
  border: 3px solid #ffffff;
  mix-blend-mode: luminosity;
  box-shadow: -4px 4px 8px 0px rgba(0, 0, 0, 0.12);
  margin-bottom: 11px;
}
.post-author .author-name {
  font-size: 18px;
  font-weight: 600;
  color: #3d3d3d;
}
.post-author .author-designation {
  font-size: 14px;
  color: #6D6D6D;
  line-height: 1;
  display: inline-block;
  margin-top: 3px;
}
.post-author:hover {
  color: #094ec0;
}

.post-wrapper .blog-post-list,
.blog-posts .blog-post-list {
  margin-bottom: 70px;
}

.post-wrapper.blog-masonry {
  width: calc(100% + 30px);
}
.post-wrapper.blog-masonry .post-item {
  width: calc(50% - 30px);
  margin-right: 30px;
  margin-bottom: 50px;
}
.post-wrapper.blog-masonry.column-3 .post-item {
  width: calc(33.33% - 30px);
}
.post-wrapper .post-item {
  margin-bottom: 60px;
}

/* Post Grid */
.post-grid {
  position: relative;
  background: #fff;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}
.post-grid .meta-category-wrapper a {
  display: inline-block !important;
  border: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 6px 15px;
  background-color: rgba(23, 92, 255, 0.15);
}
.post-grid .meta-category-wrapper a:hover {
  color: #fff;
  background: #094ec0;
}
.post-grid .meta-category-wrapper a:not(:last-child) {
  margin-right: 7px;
}
.post-grid .feature-image {
  position: relative;
  overflow: visible;
}
.post-grid .feature-image:hover img {
  transform: scale(1);
}
.post-grid .blog-content {
  padding: 19px 30px 40px;
}
.post-grid .blog-content .entry-title {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  margin: 14px 0 9px;
}
.post-grid .blog-content .author span {
  display: inline-block;
  margin-right: 5px;
}
.post-grid .blog-content .author-simple a {
  color: #5c5c60;
}
.post-grid .blog-content .author-simple a:hover {
  color: #094ec0;
}
.post-grid .blog-content p {
  margin-bottom: 26px;
}
.post-grid .blog-content .read_more_btn {
  display: inline-flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
}
.post-grid .blog-content .read_more_btn i {
  margin-left: 5px;
  color: #3d3d3d;
}
.post-grid .blog-content .read_more_btn:hover i {
  margin-left: 8px;
  transition: all 0.3s ease-in-out;
  color: #094ec0;
}
.post-grid:hover {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 30px 50px 0px rgba(1, 4, 45, 0.08);
}
.post-grid:hover .feature-image img {
  transform: scale(1);
}

.post-meta {
  color: #4f4f4f;
  font-size: 16px;
  line-height: 1;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  column-gap: 20px;
  row-gap: 10px;
  flex-wrap: wrap;
}
.post-meta li {
  font-size: 16px;
  font-weight: 500;
  color: #4f4f4f;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.post-meta li .post_view_count, .post-meta li .posted-on {
  display: inline-block;
  margin-bottom: 0;
  vertical-align: middle;
}
.post-meta li .author {
  margin-left: 0;
}
.post-meta i {
  display: inline-block;
  line-height: 1;
  color: #094ec0;
  font-size: 18px;
}
.post-meta i.ri-calendar-2-line {
  color: #17B26A;
}
.post-meta i.ri-time-line {
  color: #FB7045;
}
.post-meta a {
  margin: 0;
  color: #4f4f4f;
}
.post-meta a:hover {
  color: #094ec0;
}
.post-meta .meta-category-wrapper a {
  font-size: 14px;
  display: inline-block;
  color: #4f4f4f;
  position: relative;
  border: 0;
}
.post-meta .meta-category-wrapper a:not(:last-child) {
  margin-right: 7px;
}
.post-meta .meta-category-wrapper a:hover {
  color: #094ec0;
}
.post-meta.post-single-meta {
  column-gap: 12px;
  margin-bottom: 17px;
}
.post-meta.post-single-meta li {
  color: #4f4f4f;
  font-size: 13px;
  font-weight: 400;
  gap: 8px;
}
.post-meta.post-single-meta li a, .post-meta.post-single-meta li.meta-read-time, .post-meta.post-single-meta li .posted-on {
  display: inline-block;
  padding: 4px 8px 4px 8px;
  border-radius: 4px;
  border: 1px solid #E9EAEB;
  background: #FFF;
  font-size: 13px;
  font-weight: 500;
  color: #4f4f4f;
}

.post-meta-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.post-meta-list li {
  display: inline-block;
  margin-right: 20px;
  font-size: 16px;
  color: #696969;
  font-weight: 400;
}
.post-meta-list li i {
  margin-right: 10px;
  color: #5c6f96;
  font-size: 14px;
}
.post-meta-list li a {
  color: #696969;
  font-weight: 400;
  font-size: 16px;
}
.post-meta-list li a:hover {
  color: #094ec0;
}

.post-categories {
  margin: 0;
  padding: 0;
  list-style: none;
}
.post-categories li {
  display: inline-block;
  position: relative;
}
.post-categories li:not(:last-child) a:after {
  content: "/";
  position: absolute;
  right: -15px;
  top: 0;
}

.entry-meta a,
.post-categories a {
  color: #094ec0;
  font-size: 12px;
  display: inline-block;
  text-transform: uppercase;
  margin-right: 20px;
  position: relative;
  line-height: 1.2;
  font-weight: 400;
}
.entry-meta a:not(:last-child):after,
.post-categories a:not(:last-child):after {
  content: "/";
  position: absolute;
  right: -15px;
  top: 0;
}

.blog-categories {
  margin: 0 0 60px 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.blog-categories li a {
  padding: 18px 32px;
  background: #F7F7F7;
  border-radius: 8px;
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
}
.blog-categories li a.active, .blog-categories li a:hover {
  background: #094ec0;
  color: #fff;
}

/** Blog List */
.blog-post-list {
  overflow: hidden;
}
.blog-post-list.tag-title:after {
  display: none;
}
.blog-post-list.sticky {
  box-shadow: none;
}
.blog-post-list.sticky .entry-title a {
  color: #094ec0;
}
.blog-post-list .post-thumbnail-wrapper {
  position: relative;
  margin-bottom: 24px;
}
.blog-post-list .post-thumbnail {
  position: relative;
  display: block;
  overflow: hidden;
}
.blog-post-list .entry-header {
  padding: 50px 50px 0;
}
.blog-post-list .entry-header .entry-title {
  font-size: 24px;
  font-weight: 700;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.blog-post-list .entry-title {
  font-size: 28px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 10px;
  word-wrap: break-word;
  word-break: break-all;
}
.blog-post-list .entry-title a {
  color: #3d3d3d;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}
.blog-post-list .entry-title a:hover {
  color: #094ec0;
}
.blog-post-list .entry-content p {
  margin-bottom: 0;
  color: #52525C;
}
.blog-post-list .entry-content .tc-btn {
  margin-top: 24px;
}
.blog-post-list.sticky .post-thumbnail {
  margin-bottom: 0;
}
.blog-post-list.sticky .entry-header .entry-title a {
  color: #094ec0;
}
.blog-post-list.sticky .entry-header .entry-title a:hover {
  color: #094ec0;
}
.blog-post-list .blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-post-list .blog-footer .tc-btn {
  padding: 6px 27px;
}
.blog-post-list .blog-footer .tc-btn i {
  margin-left: 7px;
  font-size: 13px;
  line-height: 1;
  margin-top: 1px;
}
.blog-post-list .post-meta-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-single-content-area .entry-content p {
  font-size: 18px;
  line-height: 28px;
}

.single-page-header {
  margin-bottom: 62px;
}
@media (max-width: 991px) {
  .single-page-header {
    margin-bottom: 30px;
  }
}

a.read_more_link {
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  position: absolute;
  left: 16px;
  top: -5px;
}
@media (max-width: 767px) {
  a.read_more_link {
    position: static;
    margin-bottom: 24px;
  }
}
a.read_more_link i {
  font-size: 18px;
  font-weight: 600;
}

.single-post .container.no-sidebar {
  max-width: 970px !important;
}

.blog-single-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.related-post-slider {
  position: relative;
}
.related-post-slider .tc-blog__next.slider-nav {
  right: 0;
}

.related-post-wrapper {
  padding-top: 73px;
}
.related-post-wrapper .tc-post-item {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .related-post-wrapper {
    padding-top: 55px;
  }
}
.related-post-wrapper .related-post-title {
  margin-bottom: 27px;
  font-size: 36px;
}
@media (max-width: 767px) {
  .related-post-wrapper .related-post-title {
    font-size: 30px;
    letter-spacing: -0.9px;
  }
}
.related-post-wrapper .related-post-title .highlight {
  font-weight: 400;
  color: #888888;
}

.related-post {
  overflow: hidden;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 30px 50px 0 rgba(9, 4, 48, 0.08);
  transition: all 0.4s cubic-bezier(0.72, 0.16, 0.345, 0.875) 0s;
  margin-bottom: 30px;
}
.related-post .feature-image img {
  min-height: 260px;
  width: 100%;
  object-fit: cover;
}
.related-post .post-meta {
  margin-bottom: 17px;
  padding-top: 0;
}
.related-post .post-meta li a {
  font-size: 13px;
  border-radius: 4px;
  padding: 6px 13px;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background-color: #094ec0;
}
.related-post .post-meta li a:hover {
  background-color: #094ec0;
  color: #fff;
}
.related-post .post-meta li a:not(:last-child) {
  margin-right: 10px;
}
.related-post .post-footer-meta {
  margin: 0;
  padding: 0;
  list-style: none;
}
.related-post .post-footer-meta li {
  display: inline-block;
  position: relative;
  color: #5c5c60;
}
.related-post .post-footer-meta li:not(:last-child) {
  margin-right: 25px;
}
.related-post .post-footer-meta li a {
  color: #5c5c60;
  font-size: 15px;
  font-weight: 400;
}
.related-post .post-footer-meta li a:hover {
  color: #094ec0;
}
.related-post .post-footer-meta li i {
  color: #094ec0;
  margin-right: 10px;
}
.related-post .blog-content {
  padding: 30px 30px 34px;
}
.related-post .blog-content .post-title {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  margin: 15px 0 22px;
}
.related-post .blog-content .post-title a {
  color: #212d46;
}
.related-post .blog-content .post-title a:hover {
  color: #094ec0;
}

.blog-single-sidebar-meta {
  position: sticky;
  top: 120px;
}
.blog-single-sidebar-meta .blog-single-meta-count {
  border-bottom: 1px solid rgba(16, 16, 16, 0.14);
  margin-bottom: 15px;
  font-size: 18px;
}
.blog-single-sidebar-meta .blog-single-meta-count svg {
  margin-bottom: 5px;
}
.blog-single-sidebar-meta .blog-single-meta-count .post_view_count {
  margin-bottom: 13px;
}
.blog-single-sidebar-meta .blog-single-meta-count span {
  display: block;
  text-align: center;
}

.share_social-wrapper {
  display: flex;
  padding: 0;
  align-items: center;
  justify-content: center;
}

span.post-share-title {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-top: 4px;
  color: #3d3d3d;
}

.social-share-link {
  margin: 0;
  padding: 0;
  list-style: none;
}
.social-share-link li {
  display: block;
  font-size: 16px;
}
.social-share-link li:not(:last-child) {
  margin-bottom: 7px;
}
.social-share-link li a {
  display: inline-block;
  align-items: center;
  justify-content: center;
  color: #3d3d3d;
  font-size: 20px;
  transition: all 0.3s ease-in-out;
}
.social-share-link li a:hover {
  color: #094ec0;
}

.tc-blog-share-link-wrapper {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  flex-direction: column;
}
@media (max-width: 767px) {
  .tc-blog-share-link-wrapper {
    align-items: center;
  }
  .tc-blog-share-link-wrapper .tag-title {
    margin-bottom: 3px !important;
  }
}
.tc-blog-share-link-wrapper .social-share-link {
  display: flex;
  gap: 16px;
}
.tc-blog-share-link-wrapper .social-share-link li {
  margin-bottom: 0;
}

.blog-single-sidebar-meta {
  width: 110px;
  text-align: center;
  border-right: 1px solid rgba(16, 16, 16, 0.14);
}

.tc-btn-link {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 600;
  color: #3d3d3d;
}
.tc-btn-link i {
  font-size: 80%;
  margin-left: 7px;
}

.tag_list {
  margin-top: 30px;
}
.tag_list .tags {
  color: #051441;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 10px;
  font-weight: 600;
}

.single-post-navigation {
  margin-top: 32px;
}

.single-post-nav {
  max-width: 90%;
  display: flex;
  align-items: center;
}
@media (max-width: 576px) {
  .single-post-nav {
    width: 100%;
  }
}
.single-post-nav .post-nav-thumbnail {
  width: 74px;
  height: 74px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  margin-right: 16px;
  border-radius: 4px;
}
.single-post-nav .post-nav-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-post-nav .post-nav-wrapper {
  flex: 2;
}
.single-post-nav .post-nav-title {
  font-size: 14px;
  font-weight: 400;
  color: #667085;
  margin-bottom: 10px;
  line-height: 1;
  display: flex;
  gap: 5px;
}
.single-post-nav .post-title {
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .single-post-nav .post-title {
    font-size: 14px;
  }
}
.single-post-nav:hover .post-title {
  color: #094ec0;
}

@media (max-width: 767px) {
  .post-next {
    margin-top: 30px;
  }
}
.post-next .post-nav-title {
  justify-content: flex-end;
}
.post-next .single-post-nav {
  margin-left: auto;
}
.post-next .post-nav-thumbnail {
  margin: 0 0 0 20px;
}
.post-next .post-nav-wrapper {
  text-align: right;
}

.portfolio-post-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
  border-top: 1px solid #DFE1E5;
  border-bottom: 1px solid #DFE1E5;
  margin-top: 60px;
}
@media (max-width: 576px) {
  .portfolio-post-navigation {
    display: block;
  }
}
.portfolio-post-navigation .middle-icon {
  color: #dadada;
  font-size: 30px;
  text-align: center;
}
.portfolio-post-navigation > div {
  width: 40%;
}
@media (max-width: 576px) {
  .portfolio-post-navigation > div {
    width: 100%;
  }
}
.portfolio-post-navigation .middle-icon {
  width: 20%;
}
@media (max-width: 576px) {
  .portfolio-post-navigation .middle-icon {
    width: 100%;
    margin: 20px 0;
  }
}

blockquote, .wp-block-quote {
  padding: 42px 56px;
  border-left: 0;
  overflow: hidden;
  position: relative;
  background: #D6EFFF;
  border-radius: 12px;
  z-index: 1;
  margin: 1.75em 0;
}
@media (max-width: 576px) {
  blockquote, .wp-block-quote {
    padding: 24px 16px;
    border-radius: 16px;
  }
}
blockquote:after, .wp-block-quote:after {
  content: "";
  position: absolute;
  width: 104px;
  height: 80px;
  right: 24px;
  top: 24px;
  background: url("../images/quote.svg") no-repeat center center;
  background-size: cover;
  z-index: -1;
}
@media (max-width: 576px) {
  blockquote:after, .wp-block-quote:after {
    width: 40px;
    height: 30px;
    top: 12px;
    right: 12px;
  }
}
blockquote p, .wp-block-quote p {
  font-size: 24px !important;
  color: #3d3d3d;
  font-style: normal;
  margin-bottom: 4px;
  font-weight: 600;
  position: relative;
  max-width: 550px;
  line-height: 32px !important;
  letter-spacing: -0.48px;
}
@media (max-width: 576px) {
  blockquote p, .wp-block-quote p {
    font-size: 18px !important;
    line-height: 28px !important;
    max-width: 80%;
  }
}
blockquote p cite, .wp-block-quote p cite {
  margin-left: 0;
}
blockquote cite, .wp-block-quote cite {
  font-size: 18px;
  font-weight: 500;
  color: #3d3d3d;
  display: inline-block;
  position: relative;
  margin-top: 34px;
}
@media (max-width: 480px) {
  blockquote cite, .wp-block-quote cite {
    font-size: 16px;
    margin-top: 24px;
  }
}

.blog-container {
  padding: 100px 0;
}

.single-post .page-content {
  padding: 0;
}

.blog .page-content {
  padding: 120px 0;
}

.blog-archive-wrapper .tc-post-newsletter {
  background: #fff;
  margin-top: 150px;
  margin-bottom: 0;
}
@media (max-width: 1366px) {
  .blog-archive-wrapper .tc-post-newsletter {
    margin-top: 100px;
  }
}
@media (max-width: 991px) {
  .blog-archive-wrapper .tc-post-newsletter {
    margin-top: 100px;
  }
}
@media (max-width: 767px) {
  .blog-archive-wrapper .tc-post-newsletter {
    margin-top: 40px;
  }
}

.blog-single-content-area {
  padding: 230px 0 110px;
  position: relative;
  z-index: 40;
  background: #fff;
  border-radius: 0 0 80px 80px;
}
@media (max-width: 1366px) {
  .blog-single-content-area {
    border-radius: 0 0 50px 50px;
    padding-bottom: 80px;
  }
}
@media (max-width: 991px) {
  .blog-single-content-area {
    padding-top: 126px;
    padding-bottom: 80px;
  }
  .blog-single-content-area .entry-content p {
    font-size: 16px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .blog-single-content-area {
    border-radius: 0 0 28px 28px;
  }
}
.blog-single-content-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 517px;
  z-index: -1;
  background: url("../images/page_header_bg.png") no-repeat center center;
  background-size: cover;
}

.post-single-header {
  padding-top: 200px;
}
.post-single-header .post-single-header-title {
  font-size: clamp(38px, 2.5vw, 50px);
  line-height: 1.1;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 45px;
}

.post-single-feature-image {
  text-align: center;
  margin-bottom: 62px;
}
@media (max-width: 991px) {
  .post-single-feature-image {
    margin-bottom: 23px;
  }
}
.post-single-feature-image img {
  border-radius: 16px;
}

.post-single-excerpt {
  font-size: 14px;
  color: #454545;
  margin-top: 12px;
}

.post-single {
  margin-bottom: 0;
}
.post-single .entry-header {
  padding-bottom: 25px;
  text-align: center;
}
.post-single .wp-block-heading {
  font-weight: 500;
}
.post-single h2.wp-block-heading {
  font-size: 36px;
}
@media (max-width: 767px) {
  .post-single h2.wp-block-heading {
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -0.9px;
  }
}
@media (max-width: 767px) {
  .post-single h4.wp-block-heading {
    font-size: 18px;
    line-height: 28px;
  }
}
.post-single .post-single-title {
  font-size: 48px;
  letter-spacing: -1.44px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .post-single .post-single-title {
    font-size: 36px;
    line-height: 42px; /* 116.667% */
    letter-spacing: -1.08px;
    margin-bottom: 22px;
  }
}
.post-single .blocks-gallery-grid li img {
  border-radius: 10px;
}
.post-single blockquote p {
  margin: 0;
}
.post-single .wp-block-image {
  text-align: center;
}
.post-single .wp-block-column .wp-block-image {
  margin-bottom: 0;
}
.post-single .edit-link {
  margin-left: 15px;
}
.post-single .single-post-title {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 32px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  line-height: 1.3;
}
.post-single .post-meta-cat {
  margin-bottom: 20px;
}
.post-single .post-meta-cat a {
  height: 30px;
  line-height: 30px;
  padding: 0 30px;
  font-size: 18px;
  text-transform: capitalize;
  color: #fff;
  border-radius: 5px;
  background-color: #37a45d;
  min-width: auto;
  font-weight: 400;
  margin: 0 5px;
  border: 0px solid transparent;
  display: inline-block;
}
.post-single .post-meta-cat a:first-child {
  background-color: #e9683e;
}
.post-single .meta-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-single .feature-image {
  text-align: center;
}
.post-single .entry-footer {
  margin-top: 125px;
  padding-top: 80px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.post-single .entry-footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  max-width: 1320px;
  width: 100%;
  height: 1px;
  background: #DFE1E5;
  transform: translateX(-50%);
}
@media (min-width: 1200px) {
  .post-single .entry-footer:before {
    width: 150%;
  }
}
@media (max-width: 1200px) {
  .post-single .entry-footer {
    margin-top: 80px;
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .post-single .entry-footer {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding-top: 32px;
    margin-top: 32px;
  }
}
.post-single .entry-footer .tag_list {
  padding-bottom: 10px;
  border-bottom: 1px solid #e8ebf4;
}
.post-single .tag-title {
  display: block;
  margin-bottom: 15px;
  color: #3d3d3d;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .post-single .tag-title {
    text-align: center;
  }
}
.post-single .single-tagcloud {
  max-width: 370px;
}
.post-single .single-tagcloud a {
  border-radius: 4px;
  border: 1px solid #E9EAEB;
  background: #FFF;
  font-size: 13px;
  font-weight: 500;
  color: #4f4f4f;
  padding: 4px 8px;
  display: inline-block;
  line-height: 1;
}
.post-single .single-tagcloud a:hover {
  color: #3d3d3d;
  background: #DDDDE5;
  border-color: #DDDDE5;
}

.single-page-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .single-page-tags {
    justify-content: center;
  }
}

.blog-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.blog-share .share-title p {
  color: #2b2350;
  display: inline-block;
  margin: 0;
  font-weight: 500;
  font-size: 20px;
}

.share-link {
  margin: 0;
  padding: 0;
  list-style: none;
}
.share-link li {
  display: inline-block;
  margin-right: 5px;
  padding-left: 0 !important;
}
.share-link li:before {
  display: none;
}
.share-link li:last-child {
  margin-right: 0;
}
.share-link li a {
  display: block;
  height: 44px;
  width: 44px;
  text-align: center;
  line-height: 43px;
  color: #aba8a4;
  border-radius: 50%;
  font-size: 14px;
  border: 1px solid #e5dada;
}
.share-link li a:hover {
  background: #094ec0;
  color: #fff;
  border-color: #094ec0;
}

.post-single .wp-block-search {
  margin-bottom: 20px;
}
.post-single.tag-title:after {
  display: none;
}

.tc-post-newsletter {
  border-radius: 16px;
  background: #F3F3F5;
  padding: 56px 70px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 157px;
  gap: 30px;
}
@media (max-width: 1366px) {
  .tc-post-newsletter {
    margin-bottom: 50px;
  }
}
@media (max-width: 991px) {
  .tc-post-newsletter {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px;
    gap: 38px;
    margin-bottom: 0;
  }
}
.tc-post-newsletter__content {
  max-width: 565px;
  flex: 2;
}
@media (max-width: 991px) {
  .tc-post-newsletter__content {
    max-width: 100%;
  }
}
.tc-post-newsletter__title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .tc-post-newsletter__title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.48px;
  }
}
.tc-post-newsletter__title .highlight {
  font-weight: 400;
  color: #888888;
}
.tc-post-newsletter__form {
  flex-basis: 450px;
}
@media (max-width: 991px) {
  .tc-post-newsletter__form {
    flex-basis: 100%;
    width: 100%;
  }
}
.tc-post-newsletter__form .tc-newsletter {
  width: 100%;
}

@media (max-width: 991px) {
  .post-wrapper.blog-masonry.column-3 .post-item {
    width: calc(50% - 30px);
  }
}
@media (max-width: 768px) {
  .post-wrapper.blog-masonry.column-3 .post-item {
    width: 100%;
    margin-right: 0;
  }
  .comment-list .comment .comment-body.menu-comments .comment-author {
    height: 60px;
    width: 60px;
    margin-right: 15px;
  }
  .comment-list .comment .comment-body .comment-author {
    height: 60px;
    width: 60px;
    margin-right: 15px;
  }
  .comment-list .comment .comment-body .comment-content {
    padding-bottom: 20px;
  }
  .comment-list .comment .comment-body .comment-content h4 {
    font-size: 18px;
  }
  .comment-list .comment .comment-body .comment-content p {
    font-size: 16px;
    line-height: 26px;
  }
  .comment-list .children {
    padding-left: 70px;
  }
  .comment-respond .comment-reply-title {
    font-size: 35px;
    margin-bottom: 30px;
  }
}
@media (max-width: 420px) {
  .comment-list .comment .comment-body .comment-content .ratings {
    position: static;
  }
}
.page-links {
  clear: both;
  margin: 0 0 1.5em;
  padding-top: 20px;
}
.page-links a,
.page-links .current {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #f8f6f2;
  color: #3d3d3d;
  display: inline-block;
  text-align: center;
  line-height: 31px;
  font-size: 16px;
  margin-left: 5px;
}
.page-links a:hover,
.page-links .current:hover {
  background: #094ec0;
  color: #fff;
}
.page-links .current {
  background: #094ec0;
  color: #fff;
}

.post-navigation {
  margin-bottom: 50px;
}
.post-navigation .nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  position: relative;
  width: 102%;
}
.post-navigation .nav-links .nav-previous,
.post-navigation .nav-links .nav-next {
  width: 48%;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  background: #333;
  margin-right: 2%;
  flex: 1;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.post-navigation .nav-links .nav-previous a,
.post-navigation .nav-links .nav-next a {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  display: block;
  outline: 0;
}
.post-navigation .nav-links .nav-previous a:hover,
.post-navigation .nav-links .nav-next a:hover {
  color: #fff;
}
.post-navigation .nav-links .nav-previous:hover,
.post-navigation .nav-links .nav-next:hover {
  background: #094ec0;
}
.post-navigation .nav-links .nav-previous {
  padding-right: 30px;
}
.post-navigation .nav-links .nav-next {
  padding-left: 30px;
}

.first-lg {
  -webkit-order: -1;
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}

/* Author Box */
.post-share {
  display: inline-block;
  flex: 1;
}

.share-trigger .share-items {
  float: right;
}
.share-trigger .share-items a {
  height: 35px;
  width: 35px;
  display: inline-block;
  background: #f5f5f5;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  margin-right: 5px;
  color: #fff;
}
.share-trigger .share-items a.facebook-bg {
  background: #3b5998;
}
.share-trigger .share-items a.facebook-bg:hover {
  background: rgb(37.6090047393, 56.7322274882, 96.8909952607);
}
.share-trigger .share-items a.twitter-bg {
  background: #3cf;
}
.share-trigger .share-items a.twitter-bg:hover {
  background: rgb(0, 172.125, 229.5);
}
.share-trigger .share-items a.google-plus-bg {
  background: #dc4a38;
}
.share-trigger .share-items a.google-plus-bg:hover {
  background: rgb(169.6602564103, 45.1858974359, 29.8397435897);
}
.share-trigger .share-items a.linkedin-bg {
  background: #0077B5;
}
.share-trigger .share-items a.linkedin-bg:hover {
  background: rgb(0, 68.7044198895, 104.5);
}

@media (max-width: 991px) {
  .blog-container {
    padding: 80px 0;
  }
  #secondary {
    margin-top: 40px;
  }
}
@media (max-width: 768px) {
  .blog-container {
    padding: 50px 0;
  }
}
.search-header {
  margin-bottom: 30px;
}

.search_page_404_wrapper {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.search_page_404_wrapper .page-title {
  margin-bottom: 14px;
}
.search_page_404_wrapper .banner_404_text {
  margin-bottom: 30px;
}

.search_result_form .search-form {
  display: flex;
  border: 0;
  margin-bottom: 20px;
  background-color: #eff1f5;
  border-radius: 6px;
  height: 60px;
}
.search_result_form .search-form input {
  border: none;
  border-radius: 0;
  padding: 20px;
  margin: 0;
  background: transparent;
}
.search_result_form .search-form input::placeholder {
  color: #878793;
}
.search_result_form .search-form .search-submit {
  border: 0;
  background: transparent;
  padding: 10px 20px;
  color: #094ec0;
  font-size: 22px;
}

.no-results .page-content {
  padding: 0 0 120px;
}
@media (max-width: 991px) {
  .no-results .page-content {
    padding: 0 0 80px;
  }
}

.pagination-wrapper ~ .sidebar {
  margin-bottom: 0;
}

.section-call-to-action {
  background: #3D3D3D;
  position: relative;
  padding-top: 144px;
  margin-top: -80px;
  border-radius: 0 0 80px 80px;
  overflow: hidden;
  z-index: 30;
}
@media (max-width: 1366px) {
  .section-call-to-action {
    border-radius: 0 0 50px 50px;
    margin-top: -50px;
  }
}
@media (max-width: 767px) {
  .section-call-to-action {
    border-radius: 0 0 28px 28px;
    margin-top: -28px;
    padding-top: 100px;
  }
}
.section-call-to-action:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/pattern.png") repeat;
  z-index: -1;
  opacity: 0.32;
}
.section-call-to-action .tc-call-to-action {
  margin-top: 0;
  background: transparent;
  align-items: center;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .section-call-to-action .tc-call-to-action {
    align-items: flex-start;
    gap: 32px;
  }
  .section-call-to-action .tc-call-to-action .tc-call-to-action__image-wrapper {
    padding: 0 0 80px;
  }
}
@media (max-width: 767px) {
  .section-call-to-action .tc-call-to-action .tc-call-to-action__image-wrapper {
    flex-basis: auto !important;
  }
}
.section-call-to-action .tc-call-to-action:before {
  display: none;
}
.section-call-to-action .tc-call-to-action .tc-call-to-action__content {
  padding: 0;
  max-width: 530px;
}
.section-call-to-action .tc-call-to-action .tc-call-to-action__title {
  color: #fff;
  font-size: 60px;
  line-height: 1.1;
}
@media (max-width: 1366px) {
  .section-call-to-action .tc-call-to-action .tc-call-to-action__title {
    font-size: 50px;
  }
}
@media (max-width: 1200px) {
  .section-call-to-action .tc-call-to-action .tc-call-to-action__title {
    font-size: 40px;
  }
}
@media (max-width: 480px) {
  .section-call-to-action .tc-call-to-action .tc-call-to-action__title {
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -0.9px;
  }
}
.section-call-to-action .tc-call-to-action .tc-call-to-action__title .highlight {
  color: rgba(255, 255, 255, 0.64);
}
.section-call-to-action .tc-call-to-action .tc-call-to-action__description {
  color: rgba(255, 255, 255, 0.8);
}
.section-call-to-action .tc-call-to-action .tc-call-to-action__image-wrapper {
  padding-right: 0;
  flex-basis: 644px;
}
.section-call-to-action .tc-call-to-action .tc-call-to-action__image-inner {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pb-128 {
  padding-bottom: 128px;
}
@media (max-width: 1200px) {
  .pb-128 {
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .pb-128 {
    padding-bottom: 80px;
  }
}
@media (max-width: 767px) {
  .pb-128 {
    padding-bottom: 40px;
  }
}

/*--------------------------------------------------------------
## Pagination
--------------------------------------------------------------*/
.pagination-wrapper {
  margin-top: 30px;
}

#post-pagination {
  border-radius: 12px;
  background: #ECECEC;
  padding: 8px 36px;
  width: max-content;
  margin: 0 auto;
}
.blog-archive-wrapper #post-pagination {
  text-align: center;
}
#post-pagination .page-numbers {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
}
#post-pagination .page-numbers li {
  display: inline-block;
}
#post-pagination .page-numbers li a.page-numbers:not(.prev):not(.next), #post-pagination .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  line-height: 48px;
  border-radius: 8px;
  border: 1px solid #E9EAEB;
  background: var(--White, #FFF);
  box-shadow: 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04);
  transition: all 0.3s ease-in-out;
}
#post-pagination .page-numbers li a.page-numbers:not(.prev):not(.next):hover a,
#post-pagination .page-numbers li a.page-numbers:not(.prev):not(.next) .current a, #post-pagination .page-numbers li span:hover a,
#post-pagination .page-numbers li span .current a {
  color: #fff;
}
#post-pagination .page-numbers li a.page-numbers:not(.prev):not(.next).current, #post-pagination .page-numbers li span.current {
  background: linear-gradient(180deg, #474747 0%, #000 100%);
  box-shadow: 0 2px 2px 0 #000 inset, 0 12px 16px -4px rgba(10, 13, 18, 0.08), 0px 4px 6px -2px rgba(10, 13, 18, 0.03), 0px 2px 2px -1px rgba(10, 13, 18, 0.04);
  color: #fff;
}
#post-pagination .page-numbers li i {
  font-size: 20px;
}
#post-pagination .page-numbers li a.next, #post-pagination .page-numbers li a.prev {
  color: #888888;
  font-weight: 500;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 30px;
}
.woocommerce nav.woocommerce-pagination .page-numbers {
  margin: 0;
  padding: 0;
  list-style: none;
  border: 0;
  text-align: center;
}
.woocommerce nav.woocommerce-pagination .page-numbers li {
  display: inline-block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 16px;
  margin-right: 5px !important;
  text-align: center;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  border: 1px solid #DDDDE5;
  border-radius: 4px;
}
.woocommerce nav.woocommerce-pagination .page-numbers li a,
.woocommerce nav.woocommerce-pagination .page-numbers li span {
  display: block;
  line-height: 39px;
  font-size: 16px;
}
.woocommerce nav.woocommerce-pagination .page-numbers li a i,
.woocommerce nav.woocommerce-pagination .page-numbers li span i {
  font-size: 18px;
}
.woocommerce nav.woocommerce-pagination .page-numbers li a.current, .woocommerce nav.woocommerce-pagination .page-numbers li a:hover,
.woocommerce nav.woocommerce-pagination .page-numbers li span.current,
.woocommerce nav.woocommerce-pagination .page-numbers li span:hover {
  background: #094ec0;
  border-color: #094ec0;
}
.woocommerce nav.woocommerce-pagination .page-numbers li i {
  font-size: 14px;
}
.woocommerce nav.woocommerce-pagination .page-numbers li svg {
  height: 20px;
  width: 20px;
  transition: all 0.3s ease-in-out;
}
.woocommerce nav.woocommerce-pagination .page-numbers li.next, .woocommerce nav.woocommerce-pagination .page-numbers li.prev {
  line-height: 45px;
}
.woocommerce nav.woocommerce-pagination .page-numbers li a.prev, .woocommerce nav.woocommerce-pagination .page-numbers li a.next {
  line-height: 38px;
}
.woocommerce nav.woocommerce-pagination .page-numbers li a.prev:hover svg path, .woocommerce nav.woocommerce-pagination .page-numbers li a.next:hover svg path {
  fill: #fff !important;
}
.woocommerce nav.woocommerce-pagination .page-numbers li:hover,
.woocommerce nav.woocommerce-pagination .page-numbers li .current {
  background: #094ec0;
  color: #fff;
  border-color: #094ec0;
}
.woocommerce nav.woocommerce-pagination .page-numbers li:hover a,
.woocommerce nav.woocommerce-pagination .page-numbers li .current a {
  color: #fff;
}
.woocommerce nav.woocommerce-pagination .page-numbers li.current {
  background: #094ec0;
  color: #fff;
  border-color: #094ec0;
}
.woocommerce .pprefix-post-navigation {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  align-items: center;
  padding: 20px;
  border: 1px solid #eee;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper {
  width: 50%;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper a, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper a, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper a, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper a .next_title, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper a .prev_title, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper a .next_title, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper a .prev_title, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper a .next_title, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper a .prev_title, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper a .next_title, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper a .prev_title {
  font-size: 16px;
  font-weight: 600;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper a .date_post, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper a .date_post, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper a .date_post, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper a .date_post {
  font-size: 14px;
  font-weight: 500;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .meta-wrapper, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .meta-wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .meta-wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .meta-wrapper {
  display: block;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist {
  display: block;
  width: 100px;
  position: relative;
  overflow: hidden;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist i, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist i, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist i, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist:before, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist:before, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist:before, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(9, 78, 192, 0.8);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist:hover:before, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist:hover:before, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist:hover:before, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist:hover:before {
  opacity: 1;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_exist:hover i, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .image_exist:hover i, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .image_exist:hover i, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_exist:hover i {
  opacity: 1;
  visibility: visible;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .prev-link-info_wrapper, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .next-link-info_wrapper, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .prev-link-info_wrapper, .woocommerce .pprefix-post-navigation .prev-link_wrapper .info_next-link_wrapper .next-link-info_wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .prev-link-info_wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_prev-link_wrapper .next-link-info_wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .prev-link-info_wrapper, .woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .next-link-info_wrapper {
  flex: 2;
}
.woocommerce .pprefix-post-navigation .prev-link_wrapper .info_prev-link_wrapper .image_prev {
  margin-right: 20px;
}
.woocommerce .pprefix-post-navigation .next-link_wrapper {
  width: 50%;
}
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper {
  justify-content: flex-end;
  text-align: right;
}
.woocommerce .pprefix-post-navigation .next-link_wrapper .info_next-link_wrapper .image_next {
  margin-left: 20px;
}
.woocommerce .gp-slider-nav-wrapper {
  position: absolute;
  width: 100%;
  height: 50px;
  z-index: 22;
  top: 50%;
  transform: translateY(-50%);
}
.woocommerce .gp-slider-nav-wrapper .gp-slider-prev,
.woocommerce .gp-slider-nav-wrapper .gp-slider-next {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  background: #fff;
  color: #094ec0;
  cursor: pointer;
  outline: 0;
  border-radius: 50%;
}
.woocommerce .gp-slider-nav-wrapper .gp-slider-next {
  position: absolute;
  right: 0;
}
.woocommerce .format-gallery .gp-slider-nav-wrapper {
  position: absolute;
  width: 100%;
  height: 50px;
  z-index: 22;
  top: 50%;
  transform: translateY(-50%);
}
.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-prev,
.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-next {
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: left;
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-prev {
  left: -80px;
  text-align: right;
}
.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-prev i {
  margin-right: 20px;
}
.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-next {
  right: -80px;
  text-align: left;
}
.woocommerce .format-gallery .gp-slider-nav-wrapper .gp-slider-next i {
  margin-left: 20px;
}
.woocommerce .format-gallery:hover .gp-slider-prev,
.woocommerce .format-gallery:hover .gp-slider-next {
  opacity: 1;
  visibility: visible;
}
.woocommerce .format-gallery:hover .gp-slider-prev {
  left: -40px;
  text-align: right;
}
.woocommerce .format-gallery:hover .gp-slider-next {
  right: -40px;
}
.woocommerce .pagination-wrapper #post-pagination .page-numbers.current,
.woocommerce .pagination-wrapper #post-pagination span.page-numbers.current {
  background: #0073aa; /* Example: WordPress blue, adjust as needed */
  color: #fff;
  border-color: #0073aa;
  font-weight: bold;
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

/*--------------------------------------------------------------
## Search Form
--------------------------------------------------------------*/
.widget_search .search-form {
  border-radius: 6px;
  position: relative;
  background-color: #eff1f5;
  display: flex;
  overflow: hidden;
}
.widget_search .search-form label {
  margin: 0;
  width: 100%;
}
.widget_search .search-form input {
  padding: 11px 20px;
  border-radius: 0;
  border: 0;
  width: 100%;
  color: #696969;
  height: 54px;
  margin: 0;
  background: transparent;
}
.widget_search .search-form input::placeholder {
  color: #878793;
}
.widget_search .search-form input:focus {
  border-color: #094ec0;
}
.widget_search .search-form .search-submit {
  background-color: #094ec0;
  border: 0;
  padding: 12px 18px 10px 20px;
  color: #fff;
  font-size: 22px;
  border-radius: 0;
}
.widget_search .search-form .search-submit:focus {
  outline: 0;
}
.widget_search .search-form .search-submit:hover {
  background-color: #4C4CB3;
}

#search-menu-wrapper {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s ease;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #fff;
}
#search-menu-wrapper .close-search {
  height: 60px;
  width: 60px;
  line-height: 65px;
  border-radius: 50%;
  background-color: #094ec0;
  color: #fff;
  z-index: 9999999;
  opacity: 5;
  position: absolute;
  right: 15px;
  top: 40px;
  font-size: 26px;
  cursor: pointer;
  text-align: center;
}
@media (max-width: 576px) {
  #search-menu-wrapper .close-search {
    height: 50px;
    width: 50px;
    line-height: 50px;
  }
}
#search-menu-wrapper .overlay-bg {
  transition: -webkit-filter 0.2s;
  transition: filter 0.2s;
  -webkit-filter: blur(4px);
  filter: blur(4px);
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#search-menu-wrapper.toggled {
  opacity: 1;
  visibility: visible;
}
#search-menu-wrapper .wrapper {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#search-menu-wrapper .search-form {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #b9b8b8;
}
#search-menu-wrapper .search-form input {
  font-family: "Hanken Grotesk", sans-serif;
  border-radius: 0;
  border: 0;
  background: transparent;
  height: 100px;
  padding: 0;
  color: #000;
  font-size: 60px;
  font-weight: 600;
  margin: 0;
  line-height: 2.5;
}
@media (max-width: 991px) {
  #search-menu-wrapper .search-form input {
    height: 60px;
    font-size: 40px;
  }
}
#search-menu-wrapper .search-form input::placeholder {
  color: #b1b1b1;
}
#search-menu-wrapper .search-form button {
  background-color: #fff;
  color: #b1b1b1;
  border: 0;
  padding: 0;
  height: 80px;
  transition: all 0.3s ease-in-out;
  font-size: 40px;
}
@media (max-width: 991px) {
  #search-menu-wrapper .search-form button {
    font-size: 32px;
  }
}
#search-menu-wrapper .search-form button:hover {
  color: #094ec0;
}

.no-results h1.page-title {
  font-size: 40px;
  margin-bottom: 0;
}

.sea-wrapper .search-form {
  display: flex;
  align-items: center;
}
.sea-wrapper .search-form label {
  margin: 0;
  width: 100%;
}
.sea-wrapper .search-form input {
  margin: 0;
  height: 55px;
  border: 1px solid #d1d1d1;
  padding: 10px 20px;
  border-radius: 4px;
}
.sea-wrapper .search-form .search-submit {
  background: #094ec0;
  color: #fff;
  border: 0;
  height: 54px;
  border-radius: 4px;
  margin-left: 20px;
}
.sea-wrapper .search-form .search-submit:hover {
  background: #004ce5;
  color: #fff;
}

/*--------------------------------------------------------------
## Author Box
--------------------------------------------------------------*/
.tc-author-box {
  display: flex;
  padding: 32px;
  background: #F6F7F9;
  gap: 20px;
  border-radius: 12px;
  margin-top: 32px;
}
@media (max-width: 480px) {
  .tc-author-box {
    padding: 20px 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .tc-author-box {
    padding: 20px 15px;
  }
}
.tc-author-box__avatar {
  height: max-content;
  border-radius: 6px;
  overflow: hidden;
}
@media (max-width: 480px) {
  .tc-author-box__avatar {
    width: 80px;
    margin-right: 0;
  }
}
.tc-author-box__content {
  flex: 2;
  color: #414452;
}
@media (max-width: 480px) {
  .tc-author-box__content {
    text-align: center;
  }
}
.tc-author-box__name {
  color: #3d3d3d;
  font-size: 20px;
  margin-bottom: 0;
}
.tc-author-box__name span {
  margin-right: 7px;
  font-size: 14px;
  display: block;
}
.tc-author-box__designation {
  color: #414452;
  font-size: 14px;
  font-weight: 400;
  margin-top: 5px;
}
.tc-author-box__description {
  color: #414452;
  margin-top: 17px;
}
.tc-author-box__description p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
  color: #414452;
}
.tc-author-box__social-wrapper {
  line-height: 1;
  margin-top: 25px;
}
.tc-author-box__social-wrapper a {
  color: #3d3d3d;
  height: 32px;
  width: 32px;
  display: inline-block;
  line-height: 32px;
  text-align: center;
  border: 1px solid #DFE1E5;
  border-radius: 50%;
}
.tc-author-box__social-wrapper a:hover {
  background: #094ec0;
  color: #ffffff;
}
.tc-author-box__social-link {
  display: inline-block;
  margin-right: 8px;
  color: #CFCFCF;
  font-size: 15px;
}
.tc-author-box__title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 14px;
  margin-top: 50px;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-section {
  padding: 100px 0;
  background: #F6F7F9;
}

.comment-content a {
  word-wrap: break-word;
}

.bypostauthor {
  display: block;
}

.comment-wrapper {
  padding: 32px;
  background: #fff;
  border-radius: 12px;
}

#comments .comments-title {
  font-size: 24px;
  margin-bottom: 32px;
  font-weight: 700;
}

.comments-area .comment-inner {
  margin-bottom: 50px;
}
.comments-area .reply-title {
  font-size: 24px;
  font-weight: 600;
  color: #3d3d3d;
  margin-bottom: 30px;
}
.comments-area .no-comments {
  margin: 0;
  line-height: 11px;
}

.page .comment-list-wrapper {
  margin-top: 40px;
}
.page .comment-respond .comment-reply-title,
.page .comment-respond .comment-notes, .page .comment-respond .logged-in-as {
  text-align: left;
}
.page .comment-list {
  margin-bottom: 0;
}
.page .comment-respond {
  margin-top: 60px;
}
.page .comment-list .comment .comment-body .comment_info .meta-wrapper {
  color: #bbb;
}

.comments-section .comment-list-wrapper {
  padding-top: 0;
  border: 0;
}

.comment-list {
  list-style: none;
  overflow: auto;
  margin-bottom: 60px;
  padding-left: 0;
}
.comment-list > li {
  margin-bottom: 20px;
}
.comment-list .comment-meta-wrapper .comment-meta {
  position: relative;
  font-size: 14px;
  margin-top: 7px;
}
.comment-list .comment .comment-body {
  overflow: auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.comment-list .comment .comment-body:not(:last-child) .comment_info {
  margin-bottom: 30px;
  border-bottom: 1px dashed #DFE1E5;
  padding-bottom: 30px;
}
.comment-list .comment .comment-body .comment-avatar {
  margin-right: 20px;
  height: 60px;
  width: 60px;
}
.comment-list .comment .comment-body .comment-avatar img {
  border-radius: 8px;
}
.comment-list .comment .comment-body .comment_content {
  margin-top: 14px;
}
.comment-list .comment .comment-body .comment_info {
  position: relative;
  overflow: auto;
  flex: 2;
}
.comment-list .comment .comment-body .comment_info .comment_author_says {
  font-family: "Hanken Grotesk", sans-serif;
  color: #3d3d3d;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}
.comment-list .comment .comment-body .comment_info .meta-wrapper {
  font-family: "Hanken Grotesk", sans-serif;
  font-size: 14px;
  color: #777777;
  display: block;
  font-weight: 400;
  margin-bottom: 15px;
}
.comment-list .comment .comment-body .comment_info .comment-reply-wrapper {
  position: absolute;
  right: 0;
  top: 0;
}
.comment-list .comment .comment-body .comment_info p img {
  margin: 15px 0 5px;
}
.comment-list .comment .comment-body .comment-reply-link {
  font-size: 14px;
  color: #4f4f4f;
  text-decoration: none !important;
  display: inline-flex;
  gap: 5px;
  margin-top: 12px;
  border-radius: 6px;
  border: 1px solid #DFE1E5;
  padding: 10px 20px;
  line-height: 1;
}
.comment-list .comment .comment-body .comment-reply-link:hover {
  background: #094ec0;
  color: #ffffff;
  border-color: #094ec0;
}
.comment-list .comment .children {
  margin: 0;
  padding-left: 80px;
  list-style: none;
}
.comment-list .comment .children .comment {
  margin-bottom: 20px;
}
.comment-list .comment .children .comment-avatar {
  height: 60px;
  width: 60px;
}
#comments .comment-list .comment-respond {
  margin: 20px 0 40px;
  max-width: 100%;
}
#comments .comment-list .comment-respond #cancel-comment-reply-link {
  font-size: 15px;
  color: #094ec0;
  margin-left: 10px;
  font-weight: 600;
}

.children .comment-respond {
  margin-left: 80px !important;
}

.comment-respond .comment-reply-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 20px;
}
.comment-respond .comment-notes,
.comment-respond .logged-in-as {
  margin-bottom: 30px;
}
#review_form .comment-respond .comment-notes,
#review_form .comment-respond .logged-in-as {
  text-align: left;
}

.comment-form .comment-form-author,
.comment-form .comment-form-email {
  width: 50%;
  display: inline-block;
  margin-bottom: 0;
}
@media (max-width: 575px) {
  .comment-form .comment-form-author,
  .comment-form .comment-form-email {
    width: 100%;
  }
}
.comment-form .comment-form-author {
  padding-right: 10px;
}
@media (max-width: 575px) {
  .comment-form .comment-form-author {
    padding-right: 0;
  }
}
.comment-form .comment-form-email {
  padding-left: 10px;
  float: right;
}
@media (max-width: 575px) {
  .comment-form .comment-form-email {
    padding-left: 0;
  }
}
.comment-form textarea {
  height: 150px;
  margin-bottom: 20px;
}
.comment-form #submit {
  margin-bottom: 0;
  background-color: #094ec0;
  color: #ffffff;
  border: 1px solid #094ec0;
  padding: 11px 20px;
  width: 100%;
  max-width: max-content;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  border-radius: 4px;
}
.comment-form #submit:hover {
  color: #094ec0;
  border-color: #094ec0;
  background: transparent;
}
.comment-form .comment-form-cookies-consent {
  margin-bottom: 20px !important;
  font-size: 18px;
  color: #797986;
  position: relative;
}
.comment-form .comment-form-cookies-consent:after {
  content: "";
  display: block;
  clear: both;
}
.comment-form .comment-form-cookies-consent #wp-comment-cookies-consent {
  width: auto;
  height: auto;
}
.comment-form .comment-form-cookies-consent label {
  cursor: pointer;
  display: inline;
  line-height: 1.25em;
  vertical-align: top;
  clear: both;
  padding-left: 1px;
  font-size: 16px;
}
.comment-form .comment-form-cookies-consent label:not(:empty) {
  padding-left: 0.75em;
}
.comment-form .comment-form-cookies-consent label:before, .comment-form .comment-form-cookies-consent label:after {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
}
.comment-form .comment-form-cookies-consent label:before {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(5, 20, 65, 0.2);
  cursor: pointer;
  transition: background 0.3s;
}
.comment-form .comment-form-cookies-consent input[type=checkbox] {
  outline: 0;
  visibility: hidden;
  width: 1.25em;
  margin: 0;
  display: block;
  float: left;
  font-size: inherit;
}
.comment-form .comment-form-cookies-consent input[type=checkbox]:checked + label:before {
  background: #094ec0;
  border: none;
}
.comment-form .comment-form-cookies-consent input[type=checkbox]:checked + label:after {
  transform: translate(0.17em, 0.25em) rotate(-45deg);
  width: 0.6em;
  height: 0.25em;
  border: 0.125em solid #fff;
  border-top-style: none;
  border-right-style: none;
}

#review_form input[type=text],
#review_form textarea {
  border: 1px solid rgba(5, 20, 65, 0.2);
}
#review_form input[type=text]::placeholder,
#review_form textarea::placeholder {
  color: #75757d;
}
#review_form input[type=text]:focus,
#review_form textarea:focus {
  border-color: rgba(9, 78, 192, 0.5);
}

@media (max-width: 991px) {
  .comment-list .comment .children {
    padding-left: 50px;
  }
}
@media (max-width: 576px) {
  .comment-list .comment .comment-body .comment-avatar {
    width: 55px;
    height: 55px;
  }
  .comment-list .comment .children {
    padding-left: 20px;
  }
  .comment-list .comment .children .comment .comment-body .comment-avatar {
    width: 40px;
    height: 40px;
  }
}
/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
  display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}

iframe {
  border-width: 0;
}

.entry-content iframe {
  max-height: 500px;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
  display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

.wp-caption-text {
  text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.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;
}

.blog-content .gallery {
  padding: 0;
  margin: 0;
}

/*--------------------------------------------------------------
## Block
--------------------------------------------------------------*/
.wp-block-button .wp-block-button__link {
  background: #3d3d3d;
  border-radius: 5px;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.2;
}
.wp-block-button .wp-block-button__link:hover {
  background: #094ec0;
  color: #fff;
}
.wp-block-button .wp-block-button__link br {
  display: none;
}
.wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: #3d3d3d;
  border-color: #3d3d3d;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  border-color: #094ec0;
  color: #094ec0;
}
.wp-block-button.is-style-squared .wp-block-button__link {
  border-radius: 0;
}

.blocks-gallery-grid .blocks-gallery-image, .blocks-gallery-grid .blocks-gallery-item, .wp-block-gallery .blocks-gallery-image, .wp-block-gallery .blocks-gallery-item {
  width: calc(50% - 30px);
}

.blocks-gallery-grid .blocks-gallery-image, .blocks-gallery-grid .blocks-gallery-item, .wp-block-gallery .blocks-gallery-image, .wp-block-gallery .blocks-gallery-item {
  margin: 0 30px 16px 0;
}

.wp-block-cover .wp-block-cover-text {
  padding: 30px;
}

.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
  padding-left: 0;
}
.wp-block-gallery .blocks-gallery-image:before,
.wp-block-gallery .blocks-gallery-item:before {
  display: none;
}

:where(.wp-block-columns.is-layout-flex) {
  gap: 1.7em;
}

.wp-block-cover p:not(.has-text-color) {
  color: #fff !important;
  line-height: 1.8;
}

.wp-block-quote.is-large, .wp-block-quote.is-style-large {
  background-color: transparent;
}
.wp-block-quote.is-large p, .wp-block-quote.is-style-large p {
  font-size: 1.6em;
  font-weight: 300;
}
.wp-block-quote.is-large:before, .wp-block-quote.is-large:after, .wp-block-quote.is-style-large:before, .wp-block-quote.is-style-large:after {
  display: none;
}

.wp-block-pullquote {
  border-top: 4px solid #F3F3F3;
  border-bottom: 4px solid #F3F3F3;
  color: #40464d;
}

.entry .entry-content .wp-block-pullquote.is-style-solid-color {
  background-color: #0073aa;
  padding-left: 0;
  padding-right: 0;
}

.entry .entry-content .wp-block-pullquote {
  border-color: transparent;
  border-width: 2px;
  padding: 1rem;
}
.entry .entry-content .wp-block-pullquote blockquote {
  background-color: transparent;
}
.entry .entry-content .wp-block-pullquote blockquote:before, .entry .entry-content .wp-block-pullquote blockquote:after {
  display: none;
}

.wp-block-pullquote.is-style-solid-color blockquote p {
  line-height: 1;
}

.entry .entry-content .wp-block-pullquote.is-style-solid-color blockquote {
  max-width: 100%;
  color: #fff;
  padding-left: 0;
  margin-left: 1rem;
  margin-right: 1rem;
}

.entry .entry-content .wp-block-pullquote blockquote {
  color: #111;
  border: none;
  margin-top: 4rem;
  margin-bottom: 4.33rem;
  margin-right: 0;
  padding-left: 0;
}

.entry .entry-content .wp-block-pullquote.is-style-solid-color p {
  font-size: 1.6875em;
  line-height: 1.3;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

.entry .entry-content .wp-block-pullquote p {
  font-size: 1.6875em;
  font-style: italic;
  line-height: 1.3;
  margin-bottom: 0.5em;
  margin-top: 0.5em;
}

.entry .entry-content .wp-block-archives li,
.entry .entry-content .wp-block-categories li,
.entry .entry-content .wp-block-latest-posts li {
  margin-bottom: 7px;
  padding-left: 15px;
  position: relative;
}
.entry .entry-content .wp-block-archives li time,
.entry .entry-content .wp-block-categories li time,
.entry .entry-content .wp-block-latest-posts li time {
  line-height: 1;
}
.entry .entry-content .wp-block-archives li:before,
.entry .entry-content .wp-block-categories li:before,
.entry .entry-content .wp-block-latest-posts li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #7d92bb;
}
.entry .entry-content .wp-block-archives li a,
.entry .entry-content .wp-block-categories li a,
.entry .entry-content .wp-block-latest-posts li a {
  font-size: 16px;
  color: #465675;
}
.entry .entry-content .wp-block-archives li a:hover,
.entry .entry-content .wp-block-categories li a:hover,
.entry .entry-content .wp-block-latest-posts li a:hover {
  color: #094ec0;
}
.entry .entry-content .wp-block-archives li .children,
.entry .entry-content .wp-block-categories li .children,
.entry .entry-content .wp-block-latest-posts li .children {
  padding-left: 30px;
}

.entry .entry-content .wp-block-categories-list .children li {
  padding-left: 0;
}
.entry .entry-content .wp-block-categories-list .children li:before {
  display: none;
}

.wp-block-latest-posts.wp-block-latest-posts__list,
.wp-block-latest-comments {
  padding-left: 0;
  margin-bottom: 0;
}

.wp-block-media-text.alignfull.has-media-on-the-right.has-background.is-stacked-on-mobile {
  margin-bottom: 15px;
}

pre.wp-block-preformatted {
  margin-top: 20px;
}

.post_format-post-format-quote blockquote {
  margin-top: 0;
}

.wp-block-archives,
.wp-block-categories-list {
  padding: 0;
  list-style: none;
}
.wp-block-archives li:not(:last-clild),
.wp-block-categories-list li:not(:last-clild) {
  margin-bottom: 10px;
}

.wp-block-archives-dropdown select {
  height: 50px;
  width: 100%;
  padding: 7px 10px;
  margin-bottom: 20px;
}

.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta a {
  color: #656575;
  font-weight: 400;
  font-size: 16px;
  display: inline-block;
}
.wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta a:hover {
  color: #094ec0;
}

.wp-block-separator:not(.is-style-wide):not(.is-style-dots) {
  max-width: 100px;
}

.entry .entry-content .wp-block-separator, .entry .entry-content hr {
  background-color: #767676;
  border: 0;
  height: 2px;
  margin-bottom: 2rem;
  margin-top: 2rem;
  max-width: 2.25em;
  text-align: left;
  margin-left: 0;
}

.wp-block-calendar .wp-calendar-nav {
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
}

.wp-block-categories-dropdown .postform {
  margin-bottom: 20px;
}

.wp-block-search .wp-block-search__label {
  font-family: "Hanken Grotesk", sans-serif;
  display: block;
  font-size: 22px;
  font-weight: 700;
  position: relative;
  padding-bottom: 7px;
  margin-bottom: 30px;
  color: #3d3d3d;
}
.wp-block-search input[type=search] {
  margin-bottom: 0;
  background: #F1F6FE;
  box-shadow: none;
  height: 54px;
}
.wp-block-search input[type=search]:focus {
  box-shadow: none;
  background: #F1F6FE;
}
.wp-block-search .wp-block-search__button {
  height: 54px;
  border: 0;
  font-weight: 500;
  padding: 0 15px;
  color: #fff;
}
.wp-block-search .wp-block-search__button:hover {
  background: #3d3d3d;
  color: #fff;
}

.wp-block-gallery.is-cropped .blocks-gallery-caption:last-child,
.wp-block-gallery.is-cropped {
  margin-bottom: 1rem;
}

@media only screen and (min-width: 768px) {
  .entry .entry-content .wp-block-pullquote.is-style-solid-color {
    padding-left: 10%;
    padding-right: 10%;
  }
  .entry .entry-content .wp-block-pullquote.is-style-solid-color p {
    font-size: 2.22em;
    color: #fff;
  }
  .entry .entry-content .wp-block-pullquote p {
    font-size: 2.25em;
  }
  .entry .entry-content .wp-block-separator.is-style-wide, .entry .entry-content hr.is-style-wide {
    max-width: calc(66.6666666667vw - 28px);
  }
  .entry .entry-content .wp-block-separator.is-style-dots, .entry .entry-content hr.is-style-dots {
    max-width: calc(66.6666666667vw - 28px);
  }
}
@media only screen and (min-width: 1168px) {
  .entry .entry-content .wp-block-separator.is-style-wide, .entry .entry-content hr.is-style-wide {
    max-width: calc(50vw - 28px);
  }
  .entry .entry-content .wp-block-separator.is-style-dots, .entry .entry-content hr.is-style-dots {
    max-width: calc(50vw - 28px);
  }
}
.entry .entry-content .wp-block-separator.is-style-dots, .entry .entry-content hr.is-style-dots {
  max-width: 100%;
  background-color: inherit;
  border: inherit;
  height: inherit;
  text-align: center;
}

.entry .entry-content .wp-block-separator.is-style-dots:before, .entry .entry-content hr.is-style-dots:before {
  color: #767676;
  font-size: 1.6875em;
  letter-spacing: 0.88889em;
  padding-left: 0.88889em;
}

.wp-block-separator.is-style-dots:before {
  content: "···";
  color: #191e23;
  font-size: 20px;
  letter-spacing: 2em;
  padding-left: 2em;
  font-family: serif;
}

.wp-block-table.is-style-stripes {
  border-collapse: collapse;
}
.wp-block-table.is-style-stripes td {
  border-color: #F3F3F3;
  border-bottom-width: 1px;
}
.wp-block-table.is-style-stripes td:not(:first-child) {
  border-left-width: 1px;
}
.wp-block-table.is-style-stripes tr {
  border-top: 1px solid #F3F3F3;
}
.wp-block-table.is-style-stripes tr:last-child td {
  border-bottom-width: 1px;
}

.wp-block-calendar a {
  text-decoration: none;
}

.wp-block-archives-list li {
  margin-bottom: 8px;
}

.wp-block-gallery.wp-block-gallery-2 {
  --wp--style--unstable-gallery-gap: var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 2em ) ) ) !important;
  gap: var(--wp--style--gallery-gap-default, var(--gallery-block--gutter-size, var(--wp--style--block-gap, 2em))) !important;
}
/*# sourceMappingURL=app.css.map */
