.tm-widget-search-form .search-form-default {
  position: relative;
  margin: 0px;
}
.tm-widget-search-form .search-form-default input[type=search] {
  position: relative;
  padding-left: 1.5em;
  padding-right: 4em;
  border-radius: 50px;
  background: var(--theme-color-white);
  border: 1px solid var(--theme-color-silver);
  color: var(--theme-color-dark);
  font-size: 15px;
  display: block;
  width: 100%;
  height: 55px;
  transition: all 500ms ease;
}
.tm-widget-search-form .search-form-default input:focus {
  border-color: var(--theme-color-dark2);
  box-shadow: none;
}
.tm-widget-search-form .search-form-default button {
  position: absolute;
  right: 0;
  top: 0px;
  border: none;
  outline: none;
  padding: 0;
  height: 100%;
  width: 55px;
  line-height: 0;
  display: block;
  font-size: 20px;
  color: #aaa;
  background: none;
  font-weight: normal;
  transition: all 0.3s ease;
}
.tm-widget-search-form .search-form-default button:hover {
  color: var(--theme-color-dark);
}

.search-form-cat {
  max-width: 650px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border: 2px solid #e7e7e7;
  border-radius: 57px;
}
.search-form-cat .product-search-category .nice-select {
  border: none;
  background-color: #f5f5f5;
  border-radius: 50px 0 0 50px;
  color: #1a2428;
  min-width: auto;
  padding-left: 20px;
  font-size: 12px;
  height: 55px;
  box-shadow: none;
}
.search-form-cat .product-search-category .nice-select:after {
  border-bottom: 1px solid #111;
  border-right: 1px solid #111;
}
.search-form-cat .product-search-category .nice-select span.current {
  line-height: 39px;
}
.search-form-cat .product-search-meta {
  display: flex;
  flex-grow: 1;
}
.search-form-cat .product-search-meta input {
  background-color: var(--theme-color-white);
  border: none;
  border-radius: 0;
  font-size: 12px;
  color: var(--theme-color-silver);
  height: 55px;
  width: auto;
  flex-grow: 1;
}
.search-form-cat .product-search-meta input:hover, .search-form-cat .product-search-meta input:focus {
  color: #888;
}
.search-form-cat .product-search-meta button {
  font-size: 14px;
  padding: 0 48px;
  color: var(--theme-color1-text-color);
  background-color: var(--theme-color1);
  border-color: var(--theme-color1);
  border: 0;
  box-shadow: none;
  border-radius: 0 50px 50px 0;
  transition: all 0.3s ease;
}
.search-form-cat .product-search-meta button:before {
  border-radius: inherit;
}
.search-form-cat .product-search-meta button:hover, .search-form-cat .product-search-meta button:focus {
  color: var(--theme-color2-text-color);
  background-color: var(--theme-color2);
  border-color: var(--theme-color2);
}

.tm-widget-search-form .icon-search-popup {
  font-size: 22px;
  color: #2f382f;
  line-height: 1;
}
.tm-widget-search-form .icon-search-popup:hover {
  color: var(--theme-color1);
}
.tm-widget-search-form .icon-search-popup i {
  line-height: 1;
  vertical-align: middle;
}

.site-search-popup {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 99998;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all ease-in-out 0.3s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.site-search-popup .site-search-popup-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 40px;
  background-color: var(--theme-color-white);
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  transition: all ease-in-out 0.3s;
}
@media (min-width: 992px) {
  .site-search-popup .site-search-popup-wrap {
    padding: 80px;
  }
}
.site-search-popup .site-search-popup-wrap .site-search-popup-close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
  line-height: 1;
  width: 26px;
  height: 26px;
}
@media (min-width: 992px) {
  .site-search-popup .site-search-popup-wrap .site-search-popup-close {
    top: 20px;
    right: 30px;
  }
}
.site-search-popup .site-search-popup-wrap .site-search-popup-close:before, .site-search-popup .site-search-popup-wrap .site-search-popup-close:after {
  content: " ";
  position: absolute;
  top: 50%;
  display: inline-block;
  margin-top: -1px;
  width: 26px;
  height: 2px;
  background-color: #222;
  transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out, width 0.2s ease-in-out;
  right: 0;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.site-search-popup .site-search-popup-wrap .site-search-popup-close:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.site-search-popup .site-search-popup-wrap .site-search-popup-close:hover:before, .site-search-popup .site-search-popup-wrap .site-search-popup-close:hover:after {
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.site-search-popup .site-search-popup-wrap input[type=search] {
  width: 600px;
}
@media (max-width: 767.98px) {
  .site-search-popup .site-search-popup-wrap input[type=search] {
    max-width: 300px;
  }
}
.search-popup-active .site-search-popup {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.search-popup-active .site-search-popup .site-search-popup-wrap {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
/*
 * shortcode.scss
 * -----------------------------------------------
*/
/*
 * Shortcode: animated-layer-images.scss
 * -----------------------------------------------
*/
.tm-sc-animated-layer-images {
  position: relative;
  line-height: 0;
  max-width: 100%;
}
.tm-sc-animated-layer-images .layer-image-wrapper {
  position: relative;
  line-height: 0;
  display: block;
  width: inherit;
  max-width: 100%;
  height: inherit;
  max-height: 100%;
}
.tm-sc-animated-layer-images .layer-image-wrapper:not(:first-child) {
  position: absolute;
  top: 0;
}
.tm-sc-animated-layer-images .layer-image-wrapper .layer-image {
  transition: all 1s ease;
}

/*
 * Shortcode: Icon Boxes
 * -----------------------------------------------
*/
.icon-box {
  position: relative;
  z-index: 0;
  transition: all 0.4s ease;
}
.icon-box .icon-wrapper {
  position: relative;
  z-index: 0;
}
.icon-box .icon-wrapper .icon-bg-img {
  position: absolute;
  width: 100px;
  z-index: -1;
  transition: all 0.3s ease;
}
.icon-box .icon-wrapper .icon-bg-img img {
  width: 100%;
  transition: all 0.3s ease;
}
.icon-box .icon {
  display: inline-block;
  margin-bottom: 0;
  transition: all 0.3s ease;
  text-align: center;
  font-weight: normal;
  line-height: 70px;
}
.icon-box .icon i,
.icon-box .icon svg {
  display: inline-flex;
  font-size: 30px;
  line-height: 70px;
  transition: all 0.3s ease;
}
.icon-box .icon svg {
  width: 1em;
  height: 1em;
  line-height: 70px;
}
.icon-box .icon svg:before {
  line-height: 1;
}
.icon-box .icon.icon-default {
  margin-bottom: 5px;
}
.icon-box .icon.icon-bordered {
  border: 3px solid #eee;
}
.icon-box:hover .icon.icon-bordered {
  background-color: #eee;
  color: #111;
}

.icon-box .icon.icon-rounded {
  border-radius: 3px;
}
.icon-box .icon.icon-round {
  border-radius: 50%;
}
.icon-box .icon.icon-type-image.icon-bordered {
  padding: 5px;
}
.icon-box .icon.icon-type-icon-text .icon-text {
  transition: all 0.3s ease;
}
.icon-box .icon.icon-xs {
  height: 30px;
  width: 30px;
  line-height: 30px;
}
.icon-box .icon.icon-xs i,
.icon-box .icon.icon-xs svg {
  font-size: 18px;
  line-height: 30px;
}
.icon-box .icon.icon-sm {
  height: 50px;
  width: 50px;
  line-height: 50px;
}
.icon-box .icon.icon-sm i,
.icon-box .icon.icon-sm svg {
  font-size: 22px;
  line-height: 50px;
}
.icon-box .icon.icon-md {
  height: 75px;
  width: 75px;
  line-height: 75px;
}
.icon-box .icon.icon-md i,
.icon-box .icon.icon-md svg {
  font-size: 36px;
  line-height: 75px;
}
.icon-box .icon.icon-lg {
  height: 90px;
  width: 90px;
  line-height: 90px;
}
.icon-box .icon.icon-lg i,
.icon-box .icon.icon-lg svg {
  font-size: 48px;
  line-height: 90px;
}
.icon-box .icon.icon-xl {
  height: 120px;
  width: 120px;
  line-height: 120px;
}
.icon-box .icon.icon-xl i,
.icon-box .icon.icon-xl svg {
  font-size: 60px;
  line-height: 120px;
}
.icon-box .icon.icon-top {
  left: 0;
  margin: 0 auto;
  position: absolute;
  right: 0;
  top: -32px;
}
.icon-box.text-center .icon.icon-type-image {
  text-align: center;
  display: inline-block;
}
.icon-box.text-right .icon.icon-type-image {
  text-align: right;
  display: inline-block;
}
.icon-box.iconbox-border {
  border: 3px solid #dcdcdc;
}
.icon-box.iconbox-bg {
  background-color: #fafafa;
}
.icon-box.iconbox-bg.iconbox-bg-dark {
  background-color: #333;
}
.icon-box .content {
  transition: all 0.3s ease;
}
.icon-box .content p {
  transition: all 0.3s ease;
  margin-bottom: 0;
}
.icon-box .content a {
  color: var(--text-color);
  font-weight: var(--body-font-weight);
}
.icon-box.icon-left .icon-box-wrapper {
  display: flex;
}
.icon-box.icon-left .icon {
  margin-right: 20px;
  display: flex;
  justify-content: center;
}
.icon-box.icon-left .icon.no-bg {
  width: auto;
  height: auto;
}
.icon-box.icon-left .icon-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.icon-box.icon-right .icon-box-wrapper {
  display: flex;
  flex-direction: row-reverse;
}
.icon-box.icon-right .icon {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .icon-box.icon-right .icon {
    margin-left: 20px;
  }
}
.icon-box.icon-right .icon.no-bg {
  width: auto;
  height: auto;
}
.icon-box.icon-right .icon.icon-default {
  margin-left: 10px;
}
.icon-box.icon-right .icon-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  flex: 1 0 0;
}
.icon-box.icon-left-style2 .icon-box-wrapper {
  display: block;
}
@media (min-width: 768px) {
  .icon-box.icon-left-style2 .icon-left-block {
    align-items: center;
    display: flex;
  }
}
.icon-box.icon-left-style2 .icon.icon-default {
  height: auto;
  width: auto;
  margin-bottom: 5px;
  margin-right: 20px;
}
.icon-box.icon-left-style2 .icon.icon-default i {
  line-height: 1;
}
.icon-box.icon-right-style2 .icon-box-wrapper {
  display: block;
}
@media (min-width: 768px) {
  .icon-box.icon-right-style2 .icon-right-block {
    display: flex;
    flex-direction: inherit;
    justify-content: space-between;
    align-items: center;
  }
}
.icon-box.icon-right-style2 .icon.icon-default {
  height: auto;
  width: auto;
  margin-bottom: 5px;
  margin-right: 20px;
}
.icon-box.icon-right-style2 .icon.icon-default i {
  line-height: 1;
}
.icon-box .icon-box-title,
.icon-box .icon-box-title a {
  transition: all 0.3s ease;
  font-family: var(--heading-font-family);
  font-weight: var(--headings-font-weight-h6);
  line-height: var(--section-title-subtitle-line-height);
}
.icon-box .btn-view-details {
  transition: all 0.3s ease;
  margin-top: 15px;
}
.icon-box.iconbox-box-shadow {
  box-shadow: 0px 0px 50px rgba(5, 5, 5, 0.08);
}
.icon-box.iconbox-box-shadow:hover {
  box-shadow: 0px 0px 50px rgba(5, 5, 5, 0.15);
}
.icon-box.iconbox-box-shadow-on-hover:hover {
  box-shadow: 0px 0px 50px rgba(5, 5, 5, 0.15);
}
@media (max-width: 1024px) {
  .icon-box.responsive-tablet {
    text-align: center !important;
  }
  .icon-box.responsive-tablet .icon {
    margin-left: auto;
    margin-right: auto;
  }
  .icon-box.responsive-tablet .icon.icon-type-image {
    text-align: center !important;
  }
  .icon-box.responsive-tablet.icon-left .icon-box-wrapper {
    display: block;
  }
  .icon-box.responsive-tablet.icon-left .icon.icon-default {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 1024px) and (min-width: 768px) {
  .icon-box.responsive-tablet.icon-left-style2 .icon-left-block {
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  .icon-box.responsive-tablet.icon-left-style2 .icon {
    margin-bottom: 15px;
  }
}
@media (max-width: 1024px) {
  .icon-box.responsive-tablet.icon-right .icon-box-wrapper {
    display: block;
  }
  .icon-box.responsive-tablet.icon-right .icon.icon-default {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 767.98px) {
  .icon-box.responsive-mobile {
    text-align: center !important;
  }
  .icon-box.responsive-mobile .icon {
    margin-left: auto;
    margin-right: auto;
  }
  .icon-box.responsive-mobile .icon.icon-type-image {
    text-align: center !important;
  }
  .icon-box.responsive-mobile.icon-left .icon-box-wrapper {
    display: block;
  }
  .icon-box.responsive-mobile.icon-left .icon.icon-default {
    margin-right: auto;
    margin-left: auto;
  }
}
@media (max-width: 767.98px) and (min-width: 768px) {
  .icon-box.responsive-mobile.icon-left-style2 .icon-left-block {
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 767.98px) {
  .icon-box.responsive-mobile.icon-left-style2 .icon {
    margin-bottom: 15px;
  }
}
@media (max-width: 767.98px) {
  .icon-box.responsive-mobile.icon-right .icon-box-wrapper {
    display: block;
  }
  .icon-box.responsive-mobile.icon-right .icon.icon-default {
    margin-right: auto;
    margin-left: auto;
  }
}
.icon-box.iconbox-border-radius {
  border-radius: 10px;
}
.icon-box.animate-hover:hover.icon-rotate .icon-wrapper .icon {
  transform: rotate(360deg);
}
.icon-box.animate-hover:hover.icon-rotate-x .icon-wrapper .icon {
  transform: rotateX(360deg);
}
.icon-box.animate-hover:hover.icon-rotate-y .icon-wrapper .icon {
  transform: rotateY(180deg);
}
.icon-box.animate-hover:hover.icon-translate .icon-wrapper .icon {
  transform: translate(-10px, 10px);
}
.icon-box.animate-hover:hover.icon-translate-x .icon-wrapper .icon {
  transform: translateX(-10px);
}
.icon-box.animate-hover:hover.icon-translate-y .icon-wrapper .icon {
  transform: translateY(-10px);
}
.icon-box.animate-hover:hover.icon-scale .icon-wrapper .icon {
  transform: scale(1.1);
}
.icon-box.icon-area-box-shadow .icon-wrapper .icon {
  box-shadow: 0px 0px 50px rgba(5, 5, 5, 0.08);
}
.icon-box .bg-shadow-icon {
  position: absolute;
  right: -30px;
  bottom: 0px;
  font-size: 8rem;
  line-height: 1;
  color: #687f9b;
  opacity: 0.25;
  transition: all 0.3s ease;
}
.icon-box.iconbox-bg-img-on-hover {
  overflow: hidden;
}
.icon-box.iconbox-bg-img-on-hover .bg-img-wrapper {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: all 0.3s ease;
}
.icon-box.iconbox-bg-img-on-hover .bg-img-wrapper:before, .icon-box.iconbox-bg-img-on-hover .bg-img-wrapper:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.icon-box.iconbox-bg-img-on-hover .bg-img-wrapper:before {
  background-position: center bottom;
  z-index: 1;
  background-repeat: no-repeat;
}
.icon-box.iconbox-bg-img-on-hover .bg-img-wrapper:after {
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 2;
}
.icon-box.iconbox-bg-img-on-hover:hover .bg-img-wrapper {
  opacity: 1;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.icon-box.iconbox-bg-img-on-hover:hover .icon {
  color: #fff;
}
.icon-box.iconbox-bg-img-on-hover:hover .icon i {
  color: #fff;
}
.icon-box.iconbox-bg-img-on-hover:hover .icon-box-title,
.icon-box.iconbox-bg-img-on-hover:hover .icon-box-title a {
  color: #fff;
}
.icon-box.iconbox-bg-img-on-hover:hover .content {
  color: #fff;
}
.icon-box.iconbox-bg-img-on-hover:hover .content p {
  color: #fff;
}

.icon-box.iconbox-bg-img-on-hover .icon-box-wrapper {
  position: relative;
  z-index: 99;
}
.icon-box.iconbox-bg-img-on-hover.bg-img-hover-always-visible .bg-img-wrapper {
  opacity: 1;
}

/*
 * Shortcode: line-with-text.scss
 * -----------------------------------------------
*/
.tm-sc-line-with-text .horizontal-line {
  display: inline-block;
  vertical-align: middle;
  height: 2px;
  width: 50px;
  background-color: #fac400;
}
.tm-sc-line-with-text .horizontal-text {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 0.09em;
  padding-left: 15px;
}
.tm-sc-line-with-text.line-after-title .horizontal-text {
  padding-left: 0;
  padding-right: 15px;
}
.tm-sc-line-with-text.line-above-title .horizontal-line {
  display: block;
}
.tm-sc-line-with-text.line-above-title .horizontal-text {
  display: block;
  padding-left: 0;
  padding-top: 15px;
}
.tm-sc-line-with-text.line-below-title .horizontal-line {
  display: block;
}
.tm-sc-line-with-text.line-below-title .horizontal-text {
  display: block;
  padding-left: 0;
  padding-bottom: 15px;
}

.tm-section-box-bg {
  position: absolute;
  top: -150px;
  left: 225px;
  bottom: -150px;
  right: -100000px;
  background-color: var(--theme-color1);
}

.tm-header-top-info ul {
  list-style: none;
}
.tm-header-top-info ul li {
  display: inline-block;
  margin-right: 20px;
}
.tm-header-top-info ul li > *,
.tm-header-top-info ul li a {
  display: inline-block;
  color: #fff;
  font-weight: var(--body-font-weight);
}
.tm-header-top-info ul li i,
.tm-header-top-info ul li svg {
  margin-right: 5px;
}
.tm-header-top-info ul li svg {
  width: 16px;
}
.tm-header-top-info ul li:last-child {
  margin-right: 0;
}
.tm-header-top-info ul li .prefix {
  margin-right: 5px;
}
.tm-header-top-info.border-style ul {
  list-style: none;
}
.tm-header-top-info.border-style ul li {
  display: inline-block;
  padding-right: 20px;
  border-right: 1px solid rgba(200, 200, 200, 0.7);
}
@media (max-width: 767.98px) {
  .tm-header-top-info.border-style ul li {
    padding-left: 0;
    padding-right: 0;
    border: none;
  }
}
.tm-header-top-info.border-style ul li > *,
.tm-header-top-info.border-style ul li a {
  display: inline-block;
  color: #fff;
}
.tm-header-top-info.border-style ul li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}
.tm-header-top-info.align-center {
  text-align: center;
}
.tm-header-top-info.align-right {
  text-align: right;
}
.tm-header-top-info.align-right ul li {
  margin-right: 0;
  margin-left: 20px;
}
.tm-header-top-info.align-right.border-style ul li {
  margin-left: 0;
  padding-left: 0;
  border-left: none;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid rgba(200, 200, 200, 0.7);
}
@media (max-width: 767.98px) {
  .tm-header-top-info.align-right.border-style ul li {
    padding-left: 0;
    padding-right: 0;
    border: none;
  }
}
.tm-header-top-info.align-right.border-style ul li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/*
 * social-links.scss
 * -----------------------------------------------
*/
.tm-sc-social-links {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
}
.tm-sc-social-links li {
  font-size: 1rem;
}
.tm-sc-social-links li a.social-link {
  position: relative;
  display: block;
  background: #333;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 18px;
  text-align: center;
  color: #fff;
  z-index: 1;
  transition: all 0.3s;
}
.tm-sc-social-links li a.social-link:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  z-index: -1;
  transition: all 0.3s;
}
.tm-sc-social-links li a.social-link:hover {
  background: #eee;
  color: #31354c;
}
.tm-sc-social-links li:not(:last-child) {
  margin-right: 10px;
}
.tm-sc-social-links.icon-light li a.social-link {
  background: #f5f5f5;
  color: #333;
  border: 1px solid #fff;
}
.tm-sc-social-links.icon-light li a.social-link:hover {
  background: #333;
  color: #fff;
  border: 1px solid #333;
}
.tm-sc-social-links.icon-rounded li a {
  border-radius: 5px;
}
.tm-sc-social-links.icon-square li a {
  border-radius: 0;
}
.tm-sc-social-links.icon-xs li a {
  font-size: 10px;
  height: 26px;
  width: 26px;
  line-height: 26px;
}
.tm-sc-social-links.icon-sm li a {
  font-size: 14px;
  height: 32px;
  width: 32px;
  line-height: 32px;
}
.tm-sc-social-links.icon-md li a {
  font-size: 18px;
  height: 40px;
  width: 40px;
  line-height: 40px;
}
.tm-sc-social-links.icon-lg li a {
  font-size: 23px;
  height: 50px;
  width: 50px;
  line-height: 50px;
}
.tm-sc-social-links.icon-xl li a {
  font-size: 28px;
  height: 60px;
  width: 60px;
  line-height: 60px;
}

.tm-sc-social-links.links-theme-colored1 li a {
  background: var(--theme-color1);
}
.tm-sc-social-links.links-theme-colored2 li a {
  background: var(--theme-color2);
}
.tm-sc-social-links.links-theme-colored3 li a {
  background: var(--theme-color3);
}
.tm-sc-social-links.links-theme-colored4 li a {
  background: var(--theme-color4);
}

/*
 * Shortcode: unordered-list.scss
 * -----------------------------------------------
*/
.list-style-none {
  list-style: none;
}

.tm-ordered-list ol {
  list-style: none;
  counter-reset: li;
}
.tm-ordered-list ol li {
  position: relative;
  counter-increment: li;
}
.tm-ordered-list ol li:before {
  content: "." counter(li);
  color: #333;
  display: inline-block;
  width: 1em;
  margin-left: -1.5em;
  margin-right: 0.5em;
  font-weight: 600;
  direction: rtl;
}
.tm-sc-unordered-list ul li:before {
  color: var(--theme-color1);
  display: inline-block;
}
.tm-sc-unordered-list.list-style1 ul {
  list-style: none;
}
.tm-sc-unordered-list.list-style1 ul > li {
  position: relative;
}
.tm-sc-unordered-list.list-style1 ul li {
  list-style-type: none;
}
.tm-sc-unordered-list.list-style1 ul li:before {
  z-index: 0;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 95%;
  padding-right: 13px;
  vertical-align: middle;
}
.tm-sc-unordered-list.list-style1 ul li li {
  padding-left: 15px;
}
.tm-sc-unordered-list.list-style1 ul li:before {
  content: "\f058";
}
.tm-sc-unordered-list.list-style2 ul {
  list-style: none;
}
.tm-sc-unordered-list.list-style2 ul > li {
  position: relative;
}
.tm-sc-unordered-list.list-style2 ul li {
  list-style-type: none;
}
.tm-sc-unordered-list.list-style2 ul li:before {
  z-index: 0;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 95%;
  padding-right: 13px;
  vertical-align: middle;
}
.tm-sc-unordered-list.list-style2 ul li li {
  padding-left: 15px;
}
.tm-sc-unordered-list.list-style2 ul li:before {
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}
.tm-sc-unordered-list.list-style3 ul {
  list-style: none;
}
.tm-sc-unordered-list.list-style3 ul > li {
  position: relative;
}
.tm-sc-unordered-list.list-style3 ul li {
  list-style-type: none;
}
.tm-sc-unordered-list.list-style3 ul li:before {
  z-index: 0;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 95%;
  padding-right: 13px;
  vertical-align: middle;
}
.tm-sc-unordered-list.list-style3 ul li li {
  padding-left: 15px;
}
.tm-sc-unordered-list.list-style3 ul li:before {
  content: "\f14a";
}
.tm-sc-unordered-list.list-style4 ul {
  list-style: none;
}
.tm-sc-unordered-list.list-style4 ul > li {
  position: relative;
}
.tm-sc-unordered-list.list-style4 ul li {
  list-style-type: none;
}
.tm-sc-unordered-list.list-style4 ul li:before {
  z-index: 0;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 95%;
  padding-right: 13px;
  vertical-align: middle;
}
.tm-sc-unordered-list.list-style4 ul li li {
  padding-left: 15px;
}
.tm-sc-unordered-list.list-style4 ul li:before {
  content: "\f14a";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}
.tm-sc-unordered-list.list-style5 ul {
  list-style: none;
}
.tm-sc-unordered-list.list-style5 ul > li {
  position: relative;
}
.tm-sc-unordered-list.list-style5 ul li {
  list-style-type: none;
}
.tm-sc-unordered-list.list-style5 ul li:before {
  z-index: 0;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 95%;
  padding-right: 13px;
  vertical-align: middle;
}
.tm-sc-unordered-list.list-style5 ul li li {
  padding-left: 15px;
}
.tm-sc-unordered-list.list-style5 ul li:before {
  content: "\f00c";
}
.tm-sc-unordered-list.list-style6 ul {
  list-style: none;
}
.tm-sc-unordered-list.list-style6 ul > li {
  position: relative;
}
.tm-sc-unordered-list.list-style6 ul li {
  list-style-type: none;
}
.tm-sc-unordered-list.list-style6 ul li:before {
  z-index: 0;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 95%;
  padding-right: 13px;
  vertical-align: middle;
}
.tm-sc-unordered-list.list-style6 ul li li {
  padding-left: 15px;
}
.tm-sc-unordered-list.list-style6 ul li:before {
  content: "\f560";
}
.tm-sc-unordered-list.list-style7 ul {
  list-style: none;
}
.tm-sc-unordered-list.list-style7 ul > li {
  position: relative;
}
.tm-sc-unordered-list.list-style7 ul li {
  list-style-type: none;
}
.tm-sc-unordered-list.list-style7 ul li:before {
  z-index: 0;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 95%;
  padding-right: 13px;
  vertical-align: middle;
}
.tm-sc-unordered-list.list-style7 ul li li {
  padding-left: 15px;
}
.tm-sc-unordered-list.list-style7 ul li:before {
  content: "\f35a";
}
.tm-sc-unordered-list.list-style8 ul {
  list-style: none;
}
.tm-sc-unordered-list.list-style8 ul > li {
  position: relative;
}
.tm-sc-unordered-list.list-style8 ul li {
  list-style-type: none;
}
.tm-sc-unordered-list.list-style8 ul li:before {
  z-index: 0;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 95%;
  padding-right: 13px;
  vertical-align: middle;
}
.tm-sc-unordered-list.list-style8 ul li li {
  padding-left: 15px;
}
.tm-sc-unordered-list.list-style8 ul li:before {
  content: "\f30b";
}
.tm-sc-unordered-list.list-style9 ul {
  list-style: none;
}
.tm-sc-unordered-list.list-style9 ul > li {
  position: relative;
}
.tm-sc-unordered-list.list-style9 ul li {
  list-style-type: none;
}
.tm-sc-unordered-list.list-style9 ul li:before {
  z-index: 0;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 95%;
  padding-right: 13px;
  vertical-align: middle;
}
.tm-sc-unordered-list.list-style9 ul li li {
  padding-left: 15px;
}
.tm-sc-unordered-list.list-style9 ul li:before {
  content: "\f054";
}
.tm-sc-unordered-list.list-style10 ul {
  list-style: none;
}
.tm-sc-unordered-list.list-style10 ul > li {
  position: relative;
}
.tm-sc-unordered-list.list-style10 ul li {
  list-style-type: none;
}
.tm-sc-unordered-list.list-style10 ul li:before {
  z-index: 0;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 95%;
  padding-right: 13px;
  vertical-align: middle;
}
.tm-sc-unordered-list.list-style10 ul li li {
  padding-left: 15px;
}
.tm-sc-unordered-list.list-style10 ul li:before {
  content: "\f138";
}
.tm-sc-unordered-list.list-style11 ul {
  list-style: none;
}
.tm-sc-unordered-list.list-style11 ul > li {
  position: relative;
}
.tm-sc-unordered-list.list-style11 ul li {
  list-style-type: none;
}
.tm-sc-unordered-list.list-style11 ul li:before {
  z-index: 0;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 95%;
  padding-right: 13px;
  vertical-align: middle;
}
.tm-sc-unordered-list.list-style11 ul li li {
  padding-left: 15px;
}
.tm-sc-unordered-list.list-style11 ul li:before {
  content: "\f152";
}
.tm-sc-unordered-list.list-style12 ul {
  list-style: none;
}
.tm-sc-unordered-list.list-style12 ul > li {
  position: relative;
}
.tm-sc-unordered-list.list-style12 ul li {
  list-style-type: none;
}
.tm-sc-unordered-list.list-style12 ul li:before {
  z-index: 0;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 95%;
  padding-right: 13px;
  vertical-align: middle;
}
.tm-sc-unordered-list.list-style12 ul li li {
  padding-left: 15px;
}
.tm-sc-unordered-list.list-style12 ul li:before {
  content: "\f0da";
}
.tm-sc-unordered-list.list-style11 ul {
  list-style: none;
}
.tm-sc-unordered-list.list-style11 ul > li {
  position: relative;
}
.tm-sc-unordered-list.list-style11 ul li {
  list-style-type: none;
}
.tm-sc-unordered-list.list-style11 ul li:before {
  z-index: 0;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 95%;
  padding-right: 13px;
  vertical-align: middle;
}
.tm-sc-unordered-list.list-style11 ul li li {
  padding-left: 15px;
}
.tm-sc-unordered-list.list-style11 ul li:before {
  content: "\f105";
}
.tm-sc-unordered-list.list-style13 ul {
  list-style: none;
}
.tm-sc-unordered-list.list-style13 ul > li {
  position: relative;
}
.tm-sc-unordered-list.list-style13 ul li {
  list-style-type: none;
}
.tm-sc-unordered-list.list-style13 ul li:before {
  z-index: 0;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 95%;
  padding-right: 13px;
  vertical-align: middle;
}
.tm-sc-unordered-list.list-style13 ul li li {
  padding-left: 15px;
}
.tm-sc-unordered-list.list-style13 ul li:before {
  content: "\f101";
}
.tm-sc-unordered-list.list-style14 ul {
  list-style: none;
}
.tm-sc-unordered-list.list-style14 ul > li {
  position: relative;
}
.tm-sc-unordered-list.list-style14 ul li {
  list-style-type: none;
}
.tm-sc-unordered-list.list-style14 ul li:before {
  z-index: 0;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 95%;
  padding-right: 13px;
  vertical-align: middle;
}
.tm-sc-unordered-list.list-style14 ul li li {
  padding-left: 15px;
}
.tm-sc-unordered-list.list-style14 ul li:before {
  content: "\f152";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}
.tm-sc-unordered-list.list-style15 ul {
  list-style: none;
}
.tm-sc-unordered-list.list-style15 ul > li {
  position: relative;
}
.tm-sc-unordered-list.list-style15 ul li {
  list-style-type: none;
}
.tm-sc-unordered-list.list-style15 ul li:before {
  z-index: 0;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 95%;
  padding-right: 13px;
  vertical-align: middle;
}
.tm-sc-unordered-list.list-style15 ul li li {
  padding-left: 15px;
}
.tm-sc-unordered-list.list-style15 ul li:before {
  content: "\f152";
}
.tm-sc-unordered-list.list-style16 ul {
  list-style: none;
}
.tm-sc-unordered-list.list-style16 ul > li {
  position: relative;
}
.tm-sc-unordered-list.list-style16 ul li {
  list-style-type: none;
}
.tm-sc-unordered-list.list-style16 ul li:before {
  z-index: 0;
  content: "\f058";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 95%;
  padding-right: 13px;
  vertical-align: middle;
}
.tm-sc-unordered-list.list-style16 ul li li {
  padding-left: 15px;
}
.tm-sc-unordered-list.list-style16 ul li:before {
  content: "\f140";
}

.list-with-image ul {
  list-style: none;
}
.list-with-image li img {
  float: left;
}
.list-with-image li strong {
  font-weight: 600;
  color: #111c16;
  margin-top: 8px;
  display: block;
  width: calc(100% - 64px);
  float: left;
}
/**
 * Swiper 8.4.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 21, 2022
 */

 @font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual .swiper-slide{-webkit-backface-visibility:hidden;transform:translateZ(0)}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next.swiper-button-hidden,.swiper-button-prev.swiper-button-hidden{opacity:0;cursor:auto;pointer-events:none}.swiper-navigation-disabled .swiper-button-next,.swiper-navigation-disabled .swiper-button-prev{display:none!important}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-pagination-disabled>.swiper-pagination,.swiper-pagination.swiper-pagination-disabled{display:none!important}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-scrollbar-disabled>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-disabled{display:none!important}.swiper-horizontal>.swiper-scrollbar,.swiper-scrollbar.swiper-scrollbar-horizontal{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.98; }

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044; }
  .mfp-preloader a {
    color: #CCC; }
    .mfp-preloader a:hover {
      color: #FFF; }

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  touch-action: manipulation; }

button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover,
  .mfp-close:focus {
    opacity: 1; }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333; }

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent; }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover,
  .mfp-arrow:focus {
    opacity: 1; }
  .mfp-arrow:before,
  .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px; }
  .mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px; }
  .mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -45px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444; }
  .mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px; }

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

/* -------- magnific popup custom by ismail ---------- */
.mfp-close-btn-in .mfp-close {
  color: #eee;
  font-size: 44px;
}
html.html-magnific-popup-active {
  overflow:hidden;
}
.elementor-widget-tm-ele-header-cart.hide-cart-count-yes .mini-cart-icon .cart-quick-info {
  display: none;
}
.elementor-widget-tm-ele-header-cart.hide-cart-price-yes .mini-cart-icon .cart-quick-info .amount {
  display: none;
}
.elementor-widget-tm-ele-header-cart.hide-cart-mini-count-yes .mini-cart-icon .items-count {
  display: none;
}
.elementor-widget-tm-ele-header-cart.hide-cart-dropdown-yes .dropdown-content {
  display: none;
}
.elementor-widget-tm-ele-header-cart.tm-header-search-content-style-side-panel .dropdown-content, .elementor-widget-tm-ele-header-cart.tm-header-search-content-style-no-dropdown .dropdown-content {
  display: none;
}
.elementor-widget-tm-ele-header-cart .top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.wpcf7 .screen-reader-response {
	position: absolute;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	word-wrap: normal !important;
	word-break: normal !important;
}

.wpcf7 .hidden-fields-container {
	display: none;
}

.wpcf7 form .wpcf7-response-output {
	margin: 2em 0.5em 1em;
	padding: 0.2em 1em;
	border: 2px solid #00a0d2; /* Blue */
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
	display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
	border-color: #46b450; /* Green */
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
	border-color: #dc3232; /* Red */
}

.wpcf7 form.spam .wpcf7-response-output {
	border-color: #f56e28; /* Orange */
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	border-color: #ffb900; /* Yellow */
}

.wpcf7-form-control-wrap {
	position: relative;
}

.wpcf7-not-valid-tip {
	color: #dc3232; /* Red */
	font-size: 1em;
	font-weight: normal;
	display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
	position: relative;
	top: -2ex;
	left: 1em;
	z-index: 100;
	border: 1px solid #dc3232;
	background: #fff;
	padding: .2em .8em;
	width: 24em;
}

.wpcf7-list-item {
	display: inline-block;
	margin: 0 0 0 1em;
}

.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after {
	content: " ";
}

.wpcf7-spinner {
	visibility: hidden;
	display: inline-block;
	background-color: #23282d; /* Dark Gray 800 */
	opacity: 0.75;
	width: 24px;
	height: 24px;
	border: none;
	border-radius: 100%;
	padding: 0;
	margin: 0 24px;
	position: relative;
}

form.submitting .wpcf7-spinner {
	visibility: visible;
}

.wpcf7-spinner::before {
	content: '';
	position: absolute;
	background-color: #fbfbfc; /* Light Gray 100 */
	top: 4px;
	left: 4px;
	width: 6px;
	height: 6px;
	border: none;
	border-radius: 100%;
	transform-origin: 8px 8px;
	animation-name: spin;
	animation-duration: 1000ms;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
	.wpcf7-spinner::before {
		animation-name: blink;
		animation-duration: 2000ms;
	}
}

@keyframes spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes blink {
	from {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.wpcf7 [inert] {
	opacity: 0.5;
}

.wpcf7 input[type="file"] {
	cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
	cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
	cursor: not-allowed;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	direction: ltr;
}

.wpcf7-reflection > output {
	display: list-item;
	list-style: none;
}

.wpcf7-reflection > output[hidden] {
	display: none;
}

/*!
              - C S S -
        VERSION 1.0.0 - DATE: 2023-01-06
	@author: Krisztian Horvath ThemePunch OHG.
        - Slider Revolution 7.0 -

        GET LICENSE AT:
https://www.themepunch.com/links/slider_revolution_wordpress_regular_license

LICENSE:
Copyright (c) 2023, ThemePunch. All rights reserved.
This work is subject to the terms at https://www.themepunch.com/links/slider_revolution_wordpress_regular_license (Regular / Extended)
*/.rs-p-wp-fix{display:none!important;margin:0!important;height:0!important}body{--sr-7-css-loaded:1}.wp-block-themepunch-revslider{position:relative}.wp-block-themepunch-revslider.revslider{margin:0}canvas.sr7-pbar{z-index:500;position:absolute;pointer-events:none}sr7-module{display:block;position:relative;overflow-x:visible;-webkit-tap-highlight-color:transparent}sr7-module.sr-keepflow-force{display:inline-block}sr7-adjuster{position:relative;display:block;width:100%}sr7-content{position:absolute;top:0;height:100%;contain:size layout style;z-index:1;overflow-x:visible}sr7-carousel{position:absolute;top:0;left:0;width:100%;height:100%;overflow:hidden;z-index:1}sr7-slide{position:absolute;width:100%;height:100%;contain:strict;top:0;left:0;z-index:1;visibility:hidden;pointer-events:none}.sr7-overflow-force sr7-slide,sr7-carousel sr7-slide{contain:layout style}sr7-module-bg{top:0;z-index:0;position:absolute}.sr--force--untouchable,.sr--force--untouchable *{pointer-events:none!important}sr7-3dwrap{pointer-events:none;position:absolute;top:0;left:0;width:100%;height:100%;z-index:2}sr7-overlay{display:block;width:100%;height:100%;top:0;left:0;position:absolute;z-index:3;background-repeat:repeat}sr7-btn,sr7-col,sr7-content .sr7-layer,sr7-grp,sr7-img,sr7-layer,sr7-linebrk,sr7-row,sr7-shp,sr7-svg,sr7-txt,sr7-zone{user-select:none;visibility:hidden;display:none;box-sizing:border-box;backface-visibility:hidden}sr7-lb-after{display:block!important;width:100%;height:0;position:relative}sr7-col-bg.sr7-img-col-bg{position:absolute;top:0;left:0;width:100%;height:100%;z-index:-1;pointer-events:none}.sr7-layer[data-subtype=slidebg],sr7bg{pointer-events:none}a.sr7-layer[data-subtype=slidebg]{pointer-events:auto!important}sr7-content .sr7-layer.sr7-withclip,sr7-content .sr7-layer.sr7-withclip .sr7-layer{backface-visibility:visible}.sr--force--overflow--hidden{overflow:hidden!important}.sr7-layernav-hide{visibility:hidden!important;pointer-events:none!important;position:absolute!important}sr7-grp.sr7-clear:after{content:"";clear:both;display:block;height:0}sr7-zone{pointer-events:none}sr7-row.sr7-layer.sr7-galign{box-sizing:border-box}.sr7-layer[data-type=svg]>svg,sr7-layer[data-type=svg]>svg{width:100%;height:100%}sr7-row-con{table-layout:fixed;font-size:0;display:table}sr7-module .sr7-layer,sr7-module sr7-layer{-webkit-font-smoothing:antialiased!important;-webkit-tap-highlight-color:transparent;-moz-osx-font-smoothing:grayscale;font-display:swap}sr7-slide.sr7-staticslide-low{z-index:0!important}sr7-slide.sr7-staticslide-high{z-index:105!important}@-moz-document url-prefix(){sr7-slide.sr7-staticslide{transform:scale(1)}}sr7-slide a{transition:none}sr7-module.sr7-top-fixed{width:100%;height:auto!important;backface-visibility:hidden}sr7-module.sr7-top-fixed sr7-adjuster{height:auto!important}sr7-module.sr7-top-fixed sr7-content,sr7-module.sr7-top-fixed sr7-content .sr7-layer:not(.sr7-ignore-pe) *{pointer-events:none}sr7-prl{top:50%;left:50%;z-index:10000;position:absolute}sr7-prl.off{display:none!important}sr7-prl.sr7-fade-in{animation:tp-fade-in 1s linear}.sr-force-hidden{display:none!important}.sr-force-nointeraction,.sr-force-nointeraction *{pointer-events:none!important}@keyframes tp-rotateplane{0%{transform:perspective(120px) rotateX(0) rotateY(0)}50%{transform:perspective(120px) rotateX(-180.1deg) rotateY(0)}100%{transform:perspective(120px) rotateX(-180deg) rotateY(-179.9deg)}}@keyframes tp-fade-in{0%{opacity:0}20%{opacity:0}100%{opacity:100}}@keyframes tp-rotate{100%{transform:rotate(360deg)}}sr7-fonttest{width:auto;display:inline-block;white-space:nowrap;font-size:12px;color:#000}sr7-fonttest-wrap{position:absolute;contain:strict;top:-1500px;left:-1500px;width:1500px;height:1000px;pointer-events:none;opacity:0}.fn-wrap{display:flex;position:fixed;width:100px;height:50px;z-index:100;background-color:rgba(66,66,66,.2);justify-content:space-around;align-items:center;bottom:0;left:50%;transform:translateX(-50%)}.fn-left,.fn-right{display:flex;width:40px;height:40px;justify-content:center;align-items:center;background-color:gray;color:#fff;font-weight:700;font-size:20px;cursor:pointer}.sr7-layer .materical-icons,sr7-module .material-icons,sr7-txt .material-icons{font-size:inherit;vertical-align:top;line-height:inherit}#sr-announcer{position:absolute!important;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.chaty *,.chaty-chat-view *,.chaty-outer-forms *{box-sizing:border-box}.chaty-agent-data,.chaty-whatsapp-field input[type=text],.chaty-whatsapp-message,.chaty-whatsapp-message p{font-family:Segoe UI,Helvetica Neue,Helvetica,Lucida Grande,Arial,Ubuntu,Cantarell,Fira Sans,sans-serif}.chaty-agent-header,.chaty-channel,.chaty-channels,.chaty-form-body,.chaty-tooltip{position:relative}.chaty-tooltip .on-hover-text,.chaty-tooltip .on-hover-text:before,.chaty-tooltip:after,.chaty-tooltip:before{text-transform:none;font-size:.9em;line-height:1;user-select:none;pointer-events:none;position:absolute;display:none;opacity:0}.chaty-i-trigger .chaty-tooltip .on-hover-text,.chaty-i-trigger .chaty-tooltip .on-hover-text:before,.chaty-i-trigger .chaty-tooltip:after,.chaty-tooltip:before{pointer-events:auto}.on-hover-text p{white-space:nowrap;font-size:unset;line-height:unset;letter-spacing:inherit;font-weight:400}.on-hover-text{font-weight:400;display:none}.on-hover-text img.emoji{max-width:none}.chaty-tooltip .on-hover-text:before,.chaty-tooltip:before{content:"";border:5px solid transparent;z-index:1001}.chaty-tooltip:after{content:attr(data-hover)}.chaty-tooltip .on-hover-text,.chaty-tooltip:after{text-align:center;min-width:1em;max-width:21em;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;padding:5px 15px;border-radius:10px;background:#fff;color:#333;z-index:1000;box-shadow:0 1.93465px 7.73859px rgb(0 0 0 / 15%);font-size:17px;line-height:21px}.chaty-animation-shockwave:after,.chaty-animation-shockwave:before{content:"";border-radius:50%;position:absolute;top:0;right:0;bottom:0}.chaty-tooltip .on-hover-text{overflow:visible;white-space:pre}.chaty-tooltip.active .on-hover-text,.chaty-tooltip.active .on-hover-text:before,.chaty-tooltip.active:after,.chaty-tooltip.active:before,.chaty-tooltip:hover .on-hover-text,.chaty-tooltip:hover .on-hover-text:before,.chaty-tooltip:hover:after,.chaty-tooltip:hover:before{display:block;opacity:1}.chaty-tooltip.active .on-hover-text,.chaty-tooltip.active .on-hover-text:before,.chaty-tooltip.active:after,.chaty-tooltip.active:before,.chaty-tooltip.pos-left:hover .on-hover-text,.chaty-tooltip.pos-left:hover .on-hover-text:before,.chaty-tooltip.pos-left:hover:after,.chaty-tooltip.pos-left:hover:before,.chaty-tooltip.pos-right:hover .on-hover-text,.chaty-tooltip.pos-right:hover .on-hover-text:before,.chaty-tooltip.pos-right:hover:after,.chaty-tooltip.pos-right:hover:before{animation:ease-out forwards tooltips-horz}.chaty-tooltip.has-on-hover:after,.chaty-tooltip.has-on-hover:before,.chaty-widget .chaty-i-trigger .chaty-cta-close.chaty-tooltip.chaty-tooltip:hover:after,.chaty-widget .chaty-i-trigger .chaty-cta-close.chaty-tooltip:hover:before,.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-main.chaty-tooltip:after,.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-main.chaty-tooltip:before,.chaty-widget.cssas-no-close-button.default-open .chaty-i-trigger,.on-hover-text:empty,[data-hover=""]:after,[data-hover=""]:before{display:none!important}.chaty-tooltip.pos-top .on-hover-text:before,.chaty-tooltip.pos-top:before{border-bottom-width:0;border-top-color:#fff;bottom:calc(100% + 5px)}.chaty-tooltip.pos-top .on-hover-text:after,.chaty-tooltip.pos-top:after{bottom:calc(100% + 10px)}.chaty-tooltip.pos-top .on-hover-text,.chaty-tooltip.pos-top:after,.chaty-tooltip.pos-top:before{left:50%;transform:translate(-50%,-.5em)}.chaty-tooltip.pos-down:before{top:100%;border-top-width:0;border-bottom-color:#fff}.chaty-tooltip.pos-down:after{top:calc(100% + 5px)}.chaty-tooltip.pos-down:after,.chaty-tooltip.pos-down:before{left:50%;transform:translate(-50%,.5em)}.chaty-tooltip.pos-left .on-hover-text:before,.chaty-tooltip.pos-left:before{top:50%;border-right-width:0;border-left-color:#fff;left:calc(0em - 10px);transform:translate(-.5em,-50%)}.chaty-tooltip.pos-left .on-hover-text:before{left:auto;right:calc(0em - 5px)}.chaty-tooltip.pos-left .on-hover-text,.chaty-tooltip.pos-left:after{top:50%;right:calc(100% + 10px);transform:translate(-.5em,-50%)}.chaty-tooltip.pos-right .on-hover-text:before,.chaty-tooltip.pos-right:before{top:50%;border-left-width:0;border-right-color:#fff;right:calc(0em - 10px);transform:translate(.5em,-50%)}.chaty-tooltip.pos-right .on-hover-text:before{left:calc(0em - 5px);right:auto}.chaty-tooltip.pos-right .on-hover-text,.chaty-tooltip.pos-right:after{top:50%;left:calc(100% + 10px);transform:translate(.5em,-50%)}@keyframes tooltips-vert{to{opacity:1;transform:translate(-50%,0)}}@keyframes tooltips-horz{to{opacity:1;transform:translate(0,-50%)}}.chaty-tooltip.pos-down:hover:after,.chaty-tooltip.pos-down:hover:before,.chaty-tooltip.pos-top:hover:after,.chaty-tooltip.pos-top:hover:before{animation:ease-out forwards tooltips-vert}@-webkit-keyframes chaty-animation-shockwave{0%{transform:scale(1);box-shadow:0 0 2px rgba(0,0,0,.3),inset 0 0 1px rgba(0,0,0,.3)}95%{box-shadow:0 0 50px transparent,inset 0 0 30px transparent}100%{transform:scale(2.25)}}@keyframes chaty-animation-shockwave{0%{transform:scale(1);box-shadow:0 0 2px rgba(0,0,0,.3),inset 0 0 1px rgba(0,0,0,.3)}95%{box-shadow:0 0 50px transparent,inset 0 0 30px transparent}100%{transform:scale(2.25)}}@-webkit-keyframes chaty-animation-blink{0%,100%{opacity:1}20%{opacity:.5}}@keyframes chaty-animation-blink{0%,100%{opacity:1}20%{opacity:.5}}@-webkit-keyframes chaty-animation-pulse{0%{transform:scale(1);box-shadow:0 2px 2px rgba(0,0,0,.2);border-radius:50%}100%{transform:scale(1.1);box-shadow:0 2px 2px rgba(0,0,0,.2);border-radius:45%}}@keyframes chaty-animation-pulse{0%{transform:scale(1);border-radius:50%}100%{transform:scale(1.1);border-radius:45%}}.chaty-animation-shockwave:after{left:0;-webkit-animation:2s ease-out 1.3s infinite chaty-animation-shockwave;animation:2s ease-out 1.3s infinite chaty-animation-shockwave}.chaty-animation-shockwave:before{left:0;-webkit-animation:2s ease-out .8s infinite chaty-animation-shockwave;animation:2s ease-out .8s infinite chaty-animation-shockwave}.chaty-animation-blink{-webkit-animation:1.33s ease-out infinite chaty-animation-blink;animation:1.33s ease-out infinite chaty-animation-blink}.chaty-animation-pulse,.chaty-animation-pulse-icon{-webkit-animation:.4s infinite alternate chaty-animation-pulse;animation:.4s infinite alternate chaty-animation-pulse}.chaty-animation-sheen{position:relative;overflow:hidden}.chaty-animation-sheen:after{animation:5s infinite chaty-animation-sheen;content:'';position:absolute;top:0;right:0;bottom:0;left:0;background:linear-gradient(to bottom,transparent,rgba(255,255,255,.5) 50%,transparent);transform:rotateZ(60deg) translate(0,5em)}@keyframes chaty-animation-sheen{100%,20%{transform:rotateZ(60deg) translate(0,-80px)}}.chaty-animation-fade{animation:5s infinite chaty-animation-fade}.chaty-animation-spin{animation:5s cubic-bezier(.56,-.35,.22,1.5) infinite chaty-animation-spin}@keyframes chaty-animation-fade{15%,5%{opacity:.25}10%,100%,20%{opacity:1}}@keyframes chaty-animation-spin{10%{transform:rotateZ(-20deg);animation-timing-function:ease}100%,20%{transform:rotateZ(360deg)}}.chaty-animation-bounce,.chaty-animation-jump{animation:5s cubic-bezier(.84,-.54,.31,1.19) infinite chaty-animation-bounce}@keyframes chaty-animation-bounce{0%,100%,20%{transform:none}10%{transform:translateY(-1em)}}@keyframes chaty-animation-waggle{0%{transform:none}10%{transform:rotateZ(-20deg) scale(1.2)}13%{transform:rotateZ(25deg) scale(1.2)}15%{transform:rotateZ(-15deg) scale(1.2)}17%{transform:rotateZ(15deg) scale(1.2)}20%{transform:rotateZ(-12deg) scale(1.2)}22%{transform:rotateZ(0) scale(1.2)}100%,24%{transform:rotateZ(0) scale(1)}}.chaty-animation-waggle{animation:5s infinite chaty-animation-waggle}.chaty-animation-floating{-webkit-animation:chaty-animation-floating 3s ease infinite;animation:chaty-animation-floating 3s ease infinite}@keyframes chaty-animation-floating{0%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}50%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}100%{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.chaty{display:none;z-index:99999}.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-close.chaty-tooltip.chaty-tooltip:hover:after,.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-close.chaty-tooltip:hover:before,.chaty.active,.chaty.form-open .chaty-widget.cssas-no-close-button.default-open .chaty-i-trigger{display:block!important}.chaty *{margin:0;padding:0}.chaty .sr-only,.chaty-outer-forms .sr-only,.hide-cht-svg-bg{position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;border:0!important;outline:0!important}.chaty a,.chaty a:focus,.chaty a:hover,.chaty button{border:none;text-decoration:none;outline:0;box-shadow:none}.chaty-widget{position:fixed;bottom:25px;right:25px;z-index:997}.chaty-widget.left-position{left:25px;right:auto}.chaty-channel-list{display:flex;width:62px;height:124px;position:absolute;bottom:-4px;right:0;flex-direction:column;align-items:flex-start;pointer-events:none}.chaty-widget.left-position .chaty-channel-list{left:0;right:auto}.chaty-widget.chaty-open .chaty-channel-list,.chaty-widget.has-single .chaty-i-trigger .Phone-channel:after,.chaty-widget.has-single .chaty-i-trigger .Phone-channel:before{pointer-events:auto}.chaty-channel-list .chaty-channel,.chaty-channel.single .chaty-svg{display:inline-block;width:54px;height:54px;border-radius:50%;margin:4px;cursor:pointer;box-shadow:0 16px 24px 0 rgb(73 104 126 / 16%)}.chaty-channel-list .chaty-channel{position:absolute;bottom:0;opacity:0;transition:.5s;-webkit-transition:.5s}.chaty-channel.single .chaty-svg{margin:0}.chaty-widget.chaty-open .chaty-channel-list .chaty-channel{opacity:1}.chaty-channel a,.chaty-channel button,.chaty-svg{display:block;width:54px;height:54px;border-radius:50%;cursor:pointer;position:relative;outline:0;min-width:unset}* .chaty-channel button{min-width:unset;max-width:unset}.chaty-channel button{background:0 0;border-radius:50%}.chaty-channel a .chaty-custom-icon,.chaty-channel button .chaty-custom-icon,.chaty-svg .chaty-custom-icon{width:54px;height:54px;border-radius:50%;text-align:center;font-size:27px;line-height:54px;color:#fff}.chaty-channel a:focus,.chaty-channel button:focus,.chaty-contact-form-box button.chaty-submit-button{outline:0}.chaty-contact-form-box button.chaty-submit-button:disabled .chaty-loader{display:inline-block}.chaty-agent-icon svg,.chaty-channel svg,.chaty-view-channels .chaty-channel span svg{width:100%;height:100%}.chaty-channel img{width:54px;height:54px;object-fit:cover;border-radius:50%}.chaty-i-trigger .chaty-channel{position:absolute;bottom:0;right:4px;transition:.5s;border-radius:50%;cursor:pointer}.chaty-cta-button{transition:.5s;box-shadow:0 16px 24px 0 rgb(73 104 126 / 16%);border-radius:50%}.chaty-widget.left-position .chaty-i-trigger .chaty-channel{left:4px;right:auto}.chaty-widget .chaty-cta-main .chaty-cta-button{z-index:1099;opacity:1;position:relative}.chaty-widget.chaty-open .chaty-cta-main .chaty-cta-button{z-index:999;opacity:0;transform:rotate(540deg);visibility:hidden}.chaty-widget .chaty-i-trigger .chaty-cta-close{pointer-events:none}.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-close{pointer-events:auto;z-index:101}.chaty-widget .chaty-i-trigger .chaty-cta-close .chaty-cta-button{z-index:999;opacity:0;visibility:hidden}.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-close .chaty-cta-button{z-index:1099;opacity:1;transform:rotate(180deg);visibility:visible}.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-main.chaty-tooltip{z-index:91}.chaty-channel button.open-chaty-channel,.chaty-widget.chaty-no-close-button:not(.has-single) .chaty-i-trigger:not(.single-channel),.chaty-widget.chaty-open .chaty-i-trigger .chaty-cta-main.chaty-tooltip .on-hover-text,.chaty.form-open .chaty-channel button.open-chaty,.chaty.form-open .chaty-i-trigger .chaty-cta-main.chaty-tooltip .on-hover-text,.chaty.form-open .chaty-i-trigger .chaty-tooltip:after,.chaty.form-open .chaty-i-trigger .chaty-tooltip:before,.chaty.form-open .chaty-widget.has-single .chaty-i-trigger .on-hover-text{display:none}.chaty.form-open.active .chaty-widget .chaty-i-trigger{display:block}.chaty.form-open.active .chaty-widget .chaty-i-trigger .chaty-cta-main{display:none}.chaty.form-open.active .chaty-widget .chaty-i-trigger .chaty-cta-close .chaty-cta-button{opacity:1;visibility:visible;pointer-events:auto}.chaty-widget .ch-pending-msg{position:absolute;right:-4px;top:-4px;width:16px;height:16px;text-align:center;background:red;color:#fff;font-size:10px;line-height:16px;border-radius:50%;z-index:1101}.chaty-widget.left-position.hor-mode .chaty-channel-list{width:136px;height:62px;left:0;bottom:0}.chaty-widget.right-position.hor-mode .chaty-channel-list{width:136px;height:62px;right:0;left:auto;bottom:0}.chaty-widget.hor-mode .chaty-channel-list .chaty-channel{margin-top:0;margin-bottom:0}.chaty-widget.hor-mode.left-position .chaty-channel-list .chaty-channel{left:0}.chaty-widget.hor-mode.right-position .chaty-channel-list .chaty-channel{right:0;left:auto}.chaty-chat-view,.chaty-outer-forms{vertical-align:bottom;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;position:fixed!important;bottom:-25px;left:25px;padding:0;width:320px;max-width:90%;-moz-transition:.5s linear;box-shadow:rgba(0,0,0,.16) 0 5px 40px;-webkit-box-shadow:rgba(0,0,0,.16) 0 5px 40px;-moz-box-shadow:rgba(0,0,0,.16) 0 5px 40px;opacity:0;visibility:hidden;pointer-events:none;z-index:-1;transition:.5s;-webkit-transition:.5s;animation-delay:-2s;-webkit-animation-delay:-2s}.chaty-chat-view.pos-left,.chaty-outer-forms.pos-left{left:25px}.chaty-chat-view.pos-right,.chaty-outer-forms.pos-right{right:25px;left:auto}.chaty-outer-forms.active,.chaty:not(.form-open) .chaty-widget.chaty-open+.chaty-chat-view{-webkit-transform:translateY(-93px);transform:translateY(-93px);opacity:1;z-index:999999;visibility:visible;bottom:0;pointer-events:auto}.chaty-whatsapp-body{padding:0;min-height:260px;position:relative;z-index:2}.chaty-whatsapp-content{padding:20px}.chaty-popup-whatsapp-form .chaty-whatsapp-body{height:260px;min-height:auto}.chaty-popup-whatsapp-form .chaty-whatsapp-content{display:flex;align-items:flex-start}.chaty-form-body{background:#fff;z-index:99999;min-height:75px;border-radius:10px}.chaty-form-body form{margin:0;padding:0}.qr-code-image{padding:10px;text-align:center;border:solid 1px silver;border-radius:4px}.qr-code-image img{max-width:100%;max-height:360px;margin:0 auto;display:block;width:100%;height:auto}.chaty-whatsapp-form{position:relative;background-color:#f0ede7;border-radius:8px;margin:0}.chaty-whatsapp-form:before{display:block;position:absolute;content:"";left:0;top:0;height:100%;width:100%;z-index:0;opacity:.035}.chaty-popup-whatsapp-form .chaty-whatsapp-body:before,.chaty-popup-whatsapp-form .chaty-whatsapp-footer:before{opacity:.7}.chaty-whatsapp-message{padding:7px 14px 6px;background-color:#fff;border-radius:0 10px 10px;position:relative;transform-origin:center top;z-index:2;margin-top:0;margin-left:0;max-width:calc(100% - 40px);font-family:Segoe UI,Helvetica Neue,Helvetica,Lucida Grande,Arial,Ubuntu,Cantarell,Fira Sans,sans-serif;font-size:14px;line-height:18px;border:1px solid rgba(34,17,71,.08)}.chaty-whatsapp-message:before{content:"";display:none;width:0;height:0;border-top:0 solid transparent;border-bottom:10px solid transparent;border-right:12px solid #fff;position:absolute;left:-12px;top:0}.wp-profile-img+.chaty-whatsapp-message:before{display:block}.chaty-whatsapp-message p{margin:0;padding:0;color:#111b21;font-weight:400;word-wrap:break-word}.chaty-whatsapp-footer{position:relative;padding:20px 15px}.whatsapp-chaty-form{display:flex;margin:0;padding:0}button.chaty-whatsapp-button-button,button.chaty-whatsapp-button-button:focus,button.chaty-whatsapp-button-button:hover{text-align:center!important;height:40px!important;width:40px!important;padding:0!important;background:#c6d7e3!important;border-radius:20px!important;outline:0!important;box-shadow:none!important;cursor:pointer!important;margin:0 0 0 10px!important;text-decoration:none!important;border:none!important;min-width:1px!important;flex:0 0 40px}button.chaty-whatsapp-button-button{background:#c6d7e3!important}button.chaty-whatsapp-button-button:focus,button.chaty-whatsapp-button-button:hover{background:#a8c5da!important}.chaty-whatsapp-input:not(:placeholder-shown)+button.chaty-whatsapp-button-button{background:#25d366!important}.chaty-whatsapp-input:not(:placeholder-shown)+button.chaty-whatsapp-button-button:focus,.chaty-whatsapp-input:not(:placeholder-shown)+button.chaty-whatsapp-button-button:hover{background:#22bf5b!important}.chaty-whatsapp-data{display:flex;flex:1;z-index:1}.chaty-whatsapp-field{padding-right:0;flex:1;position:relative;display:flex;align-items:center}.chaty-whatsapp-button{flex:0 0 48px}.chaty-whatsapp-button svg{width:100%;height:100%;margin:0;padding:0}.chaty-whatsapp-field input[type=text]{height:40px!important;line-height:normal;padding:0 10px 0 15px;font-size:16px;resize:none;width:100%;border:none!important;border-radius:24px;outline:0;box-shadow:none!important;background:#fff!important;margin:0;color:#111b21;flex:1}.chaty-whatsapp-field input[type=text]:focus{outline:0!important;border:none!important;margin:0;color:#111b21;box-shadow:none!important}.chaty-whatsapp-button-button:active,.chaty-whatsapp-button-button:focus,.chaty-whatsapp-button-button:hover{background:#a8c5da!important}.chaty.form-open .chaty-channel button.open-chaty-channel,.chaty.form-open .chaty-no-close-button.has-single .chaty-i-trigger{display:block}.chaty-agent-data{font-size:16px}.chaty-agent-header{font-size:18px;padding:20px 15px;background:#22bf5b;color:#fff;-webkit-border-top-left-radius:10px;-webkit-border-top-right-radius:10px;-moz-border-radius-topleft:10px;-moz-border-radius-topright:10px;border-top-left-radius:10px;border-top-right-radius:10px}.chaty-agent-data .close-chaty-form{right:10px;top:12px}.chaty-agent-data .chaty-agent{display:flex;align-items:center;padding:15px}.chaty-agent-data .chaty-agent a{color:#49687e;font-size:16px;text-decoration:none;display:flex;width:100%;align-items:center;outline:0;font-weight:400}.chaty-contact-input input.chaty-input-field,.chaty-contact-input input[type=email].chaty-input-field,.chaty-contact-input input[type=text].chaty-input-field,.chaty-contact-input select.chaty-input-field,.chaty-contact-input textarea.chaty-textarea-field{color:#28303d;font-family:BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",sans-sans;margin:0;background:#fff;outline:0}.chaty-agent-data .chaty-agent+.chaty-agent{border-top:2px solid #f6f8f9}.chaty-agent-img{width:36px;height:36px;object-fit:cover;border-radius:50%}.chaty-agent-icon{width:48px;height:48px;margin:0 15px 0 0}.chaty-agent-data .chaty-custom-icon{width:48px;height:48px;text-align:center;display:block;line-height:48px;background:silver;border-radius:50%;color:#fff;font-size:28px}.chaty-close-agent-list{position:absolute;right:15px;top:10px;width:26px;height:26px;cursor:pointer;z-index:10;padding:0 0 10px 10px}.chaty-agent-icon img{width:48px;height:48px;object-fit:cover}.chaty-close-agent-list svg{fill:#ffffff}.agent-sub-header{font-size:14px;line-height:20px;font-weight:400}.agent-main-header{font-size:20px;line-height:32px;font-weight:700;position:relative}.chaty-agent-header:before,.chaty-view-header:before{content:"";width:215px;height:41px;position:absolute;top:0;left:0;z-index:1}.chaty-agent-header:after,.chaty-view-header:after{content:"";width:44px;height:41px;position:absolute;bottom:0;right:0;z-index:1}.chaty-custom-channel-icon{display:block;border-radius:50%;color:#fff;text-align:center;line-height:54px}.chaty-contact-form-title{padding:10px 15px;text-align:left;font-size:18px;color:#fff;border-radius:8px 8px 0 0;justify-content:space-between;display:flex}.chaty-contact-inputs{padding:15px}.chaty-contact-input{display:block}.chaty-contact-input label.chaty-form-label{font-size:14px;margin:0;padding:0 0 4px 0;line-height:20px;display:flex;color:#28303d}.chaty-contact-input+.chaty-contact-input{margin:10px 0 0}.chaty-contact-input input.chaty-input-field,.chaty-contact-input input[type=email].chaty-input-field,.chaty-contact-input input[type=text].chaty-input-field,.chaty-contact-input select.chaty-input-field{width:100%;height:36px;line-height:36px;font-size:16px;padding:0 10px;border:1px solid #ccc;border-radius:4px}.chaty-contact-input .has-chaty-error:focus,.chaty-contact-input input.chaty-input-field:focus,.chaty-contact-input input[type=email].chaty-input-field:focus,.chaty-contact-input input[type=tel].chaty-input-field:focus,.chaty-contact-input input[type=text].chaty-input-field:focus,.chaty-contact-input select.chaty-input-field:focus,.chaty-contact-input textarea.chaty-textarea-field:focus{outline:0;box-shadow:none;border-color:#898989;background-color:#fff}.chaty-contact-input textarea.chaty-textarea-field{width:100%;height:100px;line-height:20px;font-size:16px;padding:10px;border:1px solid #ccc;border-radius:4px;display:block}.chaty-contact-form-box .close-chaty-form{right:9px;top:9px}.chaty-contact-form-box button.chaty-submit-button[type=submit],button#chaty-submit-button-0{border:none;border-radius:4px;color:#fff;background:#a886cd;width:100%;height:36px;line-height:36px;font-size:18px;padding:0;margin:0;cursor:pointer;text-align:center;display:block}.chaty-contact-input input.chaty-input-field.has-chaty-error,.chaty-contact-input select.chaty-input-field.has-chaty-error,.chaty-contact-input textarea.has-chaty-error{border:1px solid #d20000}.chaty-contact-form-button{padding:15px}.chaty-ajax-error-message,.chaty-ajax-success-message{color:#00a700;padding:10px 0 0;text-align:center;font-size:16px}.chaty-ajax-error-message{color:#da0000}.chaty-view-header,.chaty-view-header a,.chaty-view-header a:focus,.chaty-view-header a:hover{font-weight:500;color:#fff;font-size:24px}.chaty-exit-intent{position:fixed;z-index:-1}.chaty-exit-intent:before{display:block;position:fixed;top:0;left:0;content:'';width:100vw;height:100vh;background:rgba(0,0,0,.8);visibility:hidden;z-index:100;transition:.5s ease-in-out;-webkit-transition:.5s ease-in-out;-moz-transition:.5s ease-in-out}.chaty .chaty-widget.left-position .chaty-exit-intent:before{clip-path:circle(15px at 60px calc(100% - 60px))}.chaty .chaty-widget.right-position .chaty-exit-intent:before{clip-path:circle(15px at calc(100% - 60px) calc(100% - 60px))}.chaty .chaty-widget .chaty-exit-intent.animate:before{visibility:visible;clip-path:circle(100%)}.chaty-widget.has-single .chaty-i-trigger .chaty-channel:not(.chaty-agent-button).Phone-channel .chaty-tooltip:after,.chaty-widget.has-single .chaty-i-trigger .chaty-channel:not(.chaty-agent-button).Phone-channel .chaty-tooltip:before{pointer-events:inherit}body.cht-in-mobile .chaty-outer-forms.chaty-agent-data.custom-cht-pos,body.cht-in-mobile .chaty-outer-forms.chaty-contact-form-box.custom-cht-pos,body.cht-in-mobile .chaty-outer-forms.chaty-wechat-form.custom-cht-pos,body.cht-in-mobile .chaty-outer-forms.chaty-whatsapp-form.custom-cht-pos{top:50%;left:0;right:0;margin:0 auto;transform:translate(0,-50%);bottom:auto}body.cht-in-mobile .chaty-outer-forms.chaty-agent-data.custom-cht-pos .chaty-agent-body{max-height:calc(100vh - 164px)!important}.chaty-whatsapp-message p+p{margin-top:10px}body.cht-in-mobile .chaty-outer-forms.chaty-whatsapp-form.custom-cht-pos .chaty-whatsapp-content{max-height:calc(100vh - 122px)!important;overflow-y:auto}body.cht-in-mobile .chaty-outer-forms.chaty-whatsapp-form:not(.custom-cht-pos) .chaty-whatsapp-content{overflow-y:auto}.chaty.has-custom-pos.form-open .chaty-i-trigger{opacity:0;visibility:hidden}body.cht-in-mobile .chaty-outer-forms.chaty-contact-form-box.custom-cht-pos .chaty-contact-inputs{max-height:calc(100vh - 150px)!important;overflow-y:auto}body.cht-in-mobile .chaty-outer-forms{max-width:calc(100vw - 50px)!important}.chaty-view-body{background:#fff;border-radius:8px}.chaty-view-header{background:#b78deb;border-radius:7px 7px 0 0;padding:10px 15px;position:relative;word-break:break-word}.chaty-top-content{padding:15px 15px 0;font-size:16px}.chaty-view-content p,.chaty-view-content p a,.chaty-view-content p a:focus,.chaty-view-content p a:hover{margin:0;padding:0;font-size:16px;line-height:150%;color:#49687e;word-break:break-word}.chaty-view-content p a{display:inline-block}.chaty-view-content p a:focus,.chaty-view-content p a:hover,.chaty-view-header a:focus,.chaty-view-header a:hover{outline:0;text-decoration:none}.chaty-view-content p+p{margin-top:10px}.chaty-close-view-list{position:absolute;right:15px;top:10px;width:12px;cursor:pointer;z-index:11}.chaty-close-view-list svg{fill:#ffffff;display:inline-block;width:100%}.chaty-view-channels .chaty-channel{height:48px;display:inline-block;margin:6px 0;width:20%;text-align:center;vertical-align:top}.chaty-view-channels .chaty-channel a,.chaty-view-channels .chaty-channel img,.chaty-view-channels .chaty-channel span:not(.on-hover-text){display:block;width:48px;height:48px;margin:0 auto}.chaty-view-channels{padding:10px 8px}.chaty-view-channels .chaty-custom-channel-icon{font-size:24px}.front-google-captcha{width:100%!important;overflow:hidden}.front-google-captcha>div{width:100%}.front-google-captcha iframe{transform:scaleX(.9);position:relative;left:-15px}.widget-fa-icon{width:100%;height:100%;display:inline-block;vertical-align:middle;color:#fff}span.chaty-loader{display:none;vertical-align:middle;color:#fff;animation:rotation 1s infinite linear;width:24px;height:24px;text-align:center;line-height:24px;margin-left:5px}span.chaty-loader span.dashicons{width:24px;height:24px;text-align:center;line-height:24px;font-size:24px}@keyframes rotation{from{transform:rotate(0)}to{transform:rotate(359deg)}}span.chaty-loader.active{display:inline-block;vertical-align:baseline}.chaty-i-trigger.single-channel>.chaty-channel>.on-hover-text{display:none!important}html[dir=rtl] .chaty-input-field,html[dir=rtl] .chaty-submit-button,html[dir=rtl] .chaty-tooltip,html[dir=rtl] .chaty-tooltip:after,html[dir=rtl] .chaty-whatsapp-message,html[dir=rtl] .on-hover-text{direction:rtl}.add-bg-blur-effect{background-color:rgba(0,0,0,.4);overflow-x:hidden}.add-bg-blur-effect>:not(.chaty,.chaty-outer-forms,.picmo__popupContainer){filter:blur(6px)}.email_suggestion,.wp_email_suggestion{margin:0;padding:0;font-size:14px;color:#970029}.email_suggestion i,.wp_email_suggestion i{color:#2596be;font-weight:700;cursor:pointer}.chaty-custom-whatsapp-form .eac-sugg,.chaty-form .eac-sugg{color:#c1c1c1;line-height:34px!important}.chaty-form .eac-input-wrap{width:100%;overflow:hidden}.chaty-custom-whatsapp-form .chaty-whatsapp-body:before{opacity:.05}.chaty-custom-whatsapp-form .chaty-whatsapp-body{border-radius:0}.chaty-custom-whatsapp-form .chaty-whatsapp-footer{border-top:1px solid #e1e1e1;min-height:70px}.chaty-custom-whatsapp-form .chaty-whatsapp-data{display:block;z-index:1}.chaty-custom-whatsapp-form .chaty-whatsapp-button-button{width:100%!important;z-index:1;position:relative}.chaty-custom-whatsapp-form .header-text{display:flex;align-items:center}.chaty-custom-whatsapp-form .header-text span{display:inline-block;vertical-align:super;padding-left:5px}.chaty-custom-whatsapp-form .chaty-whatsapp-button svg{width:26px;height:26px;fill:#ffffff;margin-right:3px}.chaty-custom-whatsapp-form .chaty-whatsapp-button span{font-size:15px;padding-left:5px}.chaty-custom-whatsapp-form .chaty-whatsapp-button{display:flex;align-items:center;justify-content:center;border-radius:6px!important}.chaty-custom-whatsapp-form .chaty-whatsapp-content{padding:15px;z-index:101111;position:relative}.chaty-custom-whatsapp-form .chaty-whatsapp-body{min-height:auto}.chaty-outer-forms input[type=number]::-webkit-inner-spin-button,.chaty-outer-forms input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;margin:0}.chaty-whatsapp-header{display:flex;align-items:center;background-color:#4aa485;border-top-left-radius:6px;border-top-right-radius:6px;padding:10px 15px;position:relative;justify-content:space-between;box-shadow:0 16px 32px 0 #1a0E3529}.chaty-whatsapp-header .header-wp-icon{height:30px;width:30px;margin-right:7px}.chaty-whatsapp-header .header-wp-title{color:#fff;font-size:15px;flex:1;padding-right:8px}.whatsapp-form-close-btn{flex:0 0 16px;cursor:pointer}.whatsapp-form-close-btn svg{width:16px;height:16px}.chaty-form,.chaty-whatsapp-form{font-family:Segoe UI,Helvetica Neue,Helvetica,Lucida Grande,Arial,Ubuntu,Cantarell,Fira Sans,sans-serif}.chaty-whatsapp-body .wp-profile-img{height:30px;width:30px;margin-right:15px}.chaty-whatsapp-body .wp-profile-img img{height:30px;width:30px;border-radius:50%;object-fit:cover}.chaty-whatsapp-message-nickname{color:#489d81;font-size:10px;font-weight:500;line-height:14px}.chaty-whatsapp-message-time{color:#a1a1a9;font-size:10px;line-height:12px}.chaty-whatsapp-input::placeholder{color:#83a1b7;opacity:40%}.chaty-whatsapp-input::-ms-input-placeholder{color:#83a1b7;opacity:40%}button[type=button].chaty-wp-emoji-input,button[type=button].chaty-wp-emoji-input:focus,button[type=button].chaty-wp-emoji-input:hover{position:absolute!important;top:9px;left:8px;background:0 0!important;border:none!important;cursor:pointer;height:24px!important;width:24px!important;padding:0!important;min-width:1px!important;margin:0!important;outline:0!important}.chaty-whatsapp-field:not(.has_emoji) .chaty-wp-emoji-input{display:none!important}.chaty-whatsapp-input{padding-left:38px!important}.chaty-whatsapp-field:not(.has_emoji) .chaty-whatsapp-input{padding-left:15px!important}.picmo__popupContainer{z-index:1000000}body .picmo__emojiButton span{font-size:24px;line-height:24px;display:inline-block;vertical-align:middle}body .picmo__picker .picmo__categoryButtons .picmo__categoryTab button.picmo__categoryButton{color:#8f8f8f;border:solid 1px transparent}body .picmo__picker .picmo__categoryButtons .picmo__categoryTab.picmo__categoryTabActive .picmo__categoryButton{border:1px solid #a886cd;color:#a071d3;background:#fff}body .picmo__picker .picmo__emojiCategory .picmo__categoryName{display:flex;height:auto;padding:10px 17px;border-bottom:solid 1px #e2e8f0;font-weight:700;background:#f3f3f3}body .picmo__picker .picmo__categoryButtons .picmo__categoryTab button.picmo__categoryButton:hover{background:#fff}body .picmo__emojiButton{border-radius:4px}body .picmo__emojiButton:focus{outline:0;border-radius:5px}.chaty-channel span.chaty-icon{display:block}.chaty.form-open .chaty-widget.has-single .chaty-cta-close .chaty-cta-button{opacity:1;visibility:visible;transform:rotate(360deg);z-index:999}.chaty-custom-whatsapp-form .eac-input-wrap{width:100%;overflow:hidden}.chaty-custom-whatsapp-form .chaty-whatsapp-button button{width:100%;border:none;border-radius:6px;padding:8px;display:flex;align-items:center;justify-content:center;cursor:pointer}.chaty-contact-input input[type=file].chaty-input-field{line-height:32px}.eac-cval:empty,.eac-sugg:empty{display:none!important}.qr-code-header{display:flex;align-items:center;background-color:#a886cd;border-top-left-radius:6px;border-top-right-radius:6px;padding:10px 15px;position:relative;justify-content:space-between;color:#fff;box-shadow:0 16px 32px 0 #1a0E3529;z-index:999999}.chaty-close-button{cursor:pointer}.qr-code-title{line-height:1;padding:15px 15px 0;font-size:14px;color:#83a1b7}.qr-code-box{margin-top:10px;padding:0 15px 15px}.qr-code-head-title{display:inline-flex;align-items:center}.qr-code-head-title svg{margin-right:5px}.mce-error{border:1px solid #d00!important}.required_indicate{color:red;font-size:18px;margin-left:2px}.chaty-whatsapp-button-button svg{display:inline-block;vertical-align:sub}.chaty-wp-emoji-input:hover{background-color:transparent;border-color:transparent}.chaty-wp-emoji-input:focus{outline:0}.chaty-whatsapp-input[placeholder]:focus::-webkit-input-placeholder{-webkit-transition:opacity .5s .5s ease;transition:opacity .5s .5s ease;opacity:40%!important}[placeholder]:focus::-webkit-input-placeholder{-webkit-transition:opacity .5s .5s ease;transition:opacity .5s .5s ease;opacity:1!important}.chaty-outer-forms form{margin:0}.chaty,.chaty *,.chaty-form,.chaty-form *,.chaty-whatsapp-form,.chaty-whatsapp-form *{-webkit-tap-highlight-color:transparent}body.csaas-has-chatway:not(.chatway-is-open) .chatway--trigger-container{display:none!important}body.csaas-has-chatway:not(.chatway-is-open) .chatway--frame-container{opacity:0;visibility:hidden}body.csaas-has-chatway.chatway-is-open .chaty{display:none!important}.chaty-widget.has-chatway .Chatway-channel-link{opacity:1;visibility:visible;pointer-events:auto}.has-chat-view.active .chaty-widget.has-chatway.chaty-open .chaty-channel-list{display:none!important}.chaty-channel.Chatway-channel-link.has-unread-message:after,.chaty-widget:not(.has-chatway):not(.chaty-open) .csaas-widget-trigger.has-unread-message:after{content:attr(data-unread-message);width:20px;height:20px;background:#ff4545;position:absolute;border-radius:50%;font-size:12px;font-weight:600;color:#fff;display:inline-flex;align-items:center;justify-content:center;bottom:44px;z-index:1111;right:-4px}body:not(.chatway--active) .chaty-widget.has-chatway.above-chaty .Chatway-channel-link{display:none!important}body:not(.chatway--active) .chaty-widget.inside-chaty .chaty-channels .Chatway-channel-link{display:none!important}body.csaas-has-chatway.has--chaty.chatway--active:not(.chatway--visible) .chatway--container{display:block}.chaty.chaty-has-chat-view .has-chatway.chaty-open .Chatway-channel-link{display:none!important}.chaty-view-channels .chaty-channel.Chatway-channel.has-unread-message:after{right:0;top:-8px;bottom:auto}html[dir=rtl] button[type=button].chaty-wp-emoji-input,html[dir=rtl] button[type=button].chaty-wp-emoji-input:focus,html[dir=rtl] button[type=button].chaty-wp-emoji-input:hover{right:8px}html[dir=rtl] .chaty-whatsapp-field input[type=text]{padding:0 35px 0 00px}html[dir=rtl] button.chaty-whatsapp-button-button,html[dir=rtl] button.chaty-whatsapp-button-button:focus,html[dir=rtl] button.chaty-whatsapp-button-button:hover{margin:0 10px 0 0!important}html[dir=rtl] button.chaty-whatsapp-button-button svg{transform:rotate(180deg)}

/*========================================== Row / Colum Background Base Css ==========================================*/
.tm-col-stretched-yes .tm-stretched-div{
    position: absolute;
    height: 100%;
    width: 100%;
    top:0;
    left: 0;    
    width: auto;
    z-index: 0;
    overflow: hidden;
}

.tm-col-stretched-yes .tm-stretched-div:before {
    content: var(--background-overlay);
    display: block;
    position: absolute;
    mix-blend-mode: var(--overlay-mix-blend-mode);
    opacity: var(--overlay-opacity);
    transition: var(--overlay-transition,.3s);
    border-radius: var(--border-radius);
    border-style: var(--border-style);
    border-color: var(--border-color);
    border-block-start-width: var(--border-block-start-width);
    border-inline-end-width: var(--border-inline-end-width);
    border-block-end-width: var(--border-block-end-width);
    border-inline-start-width: var(--border-inline-start-width);
    top: calc(0px - var(--border-block-start-width));
    left: calc(0px - var(--border-inline-start-width));
    width: max(100% + var(--border-inline-end-width) + var(--border-inline-start-width),100%);
    height: max(100% + var(--border-block-start-width) + var(--border-block-end-width),100%);
}


.tm-col-stretched-right .tm-stretched-div,
.tm-col-stretched-left .tm-stretched-div{   
    right: 0;
}
.elementor-top-column.tm-col-stretched-left:not(.elementor-col-100) .tm-stretched-div{
    margin-left: -500px;
}
.elementor-top-column.tm-col-stretched-right:not(.elementor-col-100) .tm-stretched-div{
    margin-right: -500px;  
}

.elementor-section.elementor-top-section.tm-bg-image-over-color.tm-bgimage-yes:before,
.elementor-column.elementor-top-column.tm-bgimage-yes.tm-bg-image-over-color > .tm-stretched-div:before,

.elementor-column.elementor-top-column.tm-bg-image-over-color > .elementor-widget-wrap:before,
.elementor-column.elementor-top-column.tm-bg-image-over-color > .elementor-column-wrap:before{ 
	background-color: transparent !important;
}
.elementor-column.tm-col-stretched-yes.tm-bgimage-yes{
    background-image: none;
    background-color: transparent;
}
.tm-bgimage-over-bgcolor.tm-bgimage-yes .tm-stretched-div:before,
.tm-bgimage-over-bgcolor.tm-bgimage-yes:before{
   background-color: transparent !important
}


.elementor-top-section:before, 
.tm-col-stretched-yes .tm-stretched-div:before,

.elementor-column.elementor-top-column .elementor-widget-wrap:before,
.elementor-column.elementor-top-column .elementor-column-wrap:before,

.elementor-inner-column > div:before,
.elementor-inner-section:before{
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	content: "";
	display: block;
	z-index: 0;
}


/* --------------------------------------
 * Row Colum - Global BG Color
 * ---------------------------------------*/


/*--- Main RoW BG ---*/
.elementor-section.elementor-top-section.tm-elementor-bg-color-globalcolor, 
.elementor-section.elementor-top-section.tm-elementor-bg-color-globalcolor:before, 
.elementor-section.elementor-inner-section.tm-elementor-bg-color-globalcolor {
    background-color: var(--tm-colza-global-color);
}

/*--- Main Row BG - with image ---*/
.elementor-section.elementor-top-section.tm-elementor-bg-color-globalcolor.tm-bgimage-yes:before{
	background-color: rgba( var(--tm-colza-global-color-rgb) , 0.60 );
}



/*--- Main Colum BG - ---*/
.elementor-column.elementor-top-column.tm-elementor-bg-color-globalcolor:not(.tm-bgimage-yes) .elementor-widget-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-globalcolor.tm-bg-image-over-color .elementor-widget-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-globalcolor:not(.tm-col-stretched-yes) > .elementor-widget-wrap, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-globalcolor.tm-bg-image-over-color:not(.tm-col-stretched-yes) > .elementor-widget-wrap,

.elementor-column.elementor-top-column.tm-elementor-bg-color-globalcolor:not(.tm-bgimage-yes) .elementor-column-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-globalcolor.tm-bg-image-over-color .elementor-column-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-globalcolor:not(.tm-col-stretched-yes) > .elementor-column-wrap, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-globalcolor.tm-bg-image-over-color:not(.tm-col-stretched-yes) > .elementor-column-wrap{
	background-color: var(--tm-colza-global-color) !important;
}


/*--- Main Colum BG - with image ---*/
.elementor-column.elementor-top-column.tm-elementor-bg-color-globalcolor.tm-bgimage-yes:not(.tm-col-stretched-yes) > .elementor-widget-wrap:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-globalcolor.tm-bgimage-yes:not(.tm-bg-image-over-color) .elementor-widget-wrap .tm-stretched-div:before,
.elementor-column.elementor-top-column.tm-elementor-bg-color-globalcolor .elementor-widget-wrap .tm-bgimage-yes.tm-stretched-div:before,

.elementor-column.elementor-top-column.tm-elementor-bg-color-globalcolor.tm-bgimage-yes:not(.tm-col-stretched-yes) > .elementor-column-wrap:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-globalcolor.tm-bgimage-yes:not(.tm-bg-image-over-color) .elementor-column-wrap .tm-stretched-div:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-globalcolor .elementor-column-wrap .tm-bgimage-yes.tm-stretched-div:before{
	background-color: rgba( var(--tm-colza-global-color-rgb) , 0.60 );
}


/*--- Inner Colum BG  ---*/
.elementor-inner-section.tm-elementor-bg-color-globalcolor{ 
	background-color: var(--tm-colza-global-color) !important;
}

/*--- Inner Row - without image ---*/
.elementor-inner-section.tm-elementor-bg-color-globalcolor:not(.tm-bg-image-over-color):before{
	background-color: rgba( var(--tm-colza-global-color-rgb) , 0.60 );
}


/*--- Inner Colum BG ---*/
.elementor-inner-column.tm-elementor-bg-color-globalcolor > div.elementor-column-wrap,
.elementor-inner-column.tm-elementor-bg-color-globalcolor > div.elementor-widget-wrap{ 
	background-color: var(--tm-colza-global-color) !important;
}

/*--- Inner Colum BG - with image ---*/
.elementor-inner-column.tm-elementor-bg-color-globalcolor:not(.tm-bg-image-over-color) > div.elementor-column-wrap:before,
.elementor-inner-column.tm-elementor-bg-color-globalcolor:not(.tm-bg-image-over-color) > div.elementor-widget-wrap:before{
	background-color: rgba( var(--tm-colza-global-color-rgb) , 0.60 );
}


/*====== End --- Row Colum - Global BG Color ======*/

/* --------------------------------------
 * Row Colum - Light BG Color
 * ---------------------------------------*/


/*--- Main RoW BG ---*/
.elementor-section.elementor-top-section.tm-elementor-bg-color-light, 
.elementor-section.elementor-top-section.tm-elementor-bg-color-light:before, 
.elementor-section.elementor-inner-section.tm-elementor-bg-color-light {
    background-color: var(--tm-colza-light-bg-color);
}

/*--- Main Row BG - with image ---*/
.elementor-section.elementor-top-section.tm-elementor-bg-color-light.tm-bgimage-yes:before{
	background-color: rgba( var(--tm-colza-light-bg-color-rgb) , 0.60 );
}

/*--- Main Colum BG - ---*/
.elementor-column.elementor-top-column.tm-elementor-bg-color-light:not(.tm-bgimage-yes) .elementor-widget-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-light.tm-bg-image-over-color .elementor-widget-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-light:not(.tm-col-stretched-yes) > .elementor-widget-wrap, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-light.tm-bg-image-over-color:not(.tm-col-stretched-yes) > .elementor-widget-wrap,

.elementor-column.elementor-top-column.tm-elementor-bg-color-light:not(.tm-bgimage-yes) .elementor-column-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-light.tm-bg-image-over-color .elementor-column-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-light:not(.tm-col-stretched-yes) > .elementor-column-wrap, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-light.tm-bg-image-over-color:not(.tm-col-stretched-yes) > .elementor-column-wrap{
	background-color: var(--tm-colza-light-bg-color) !important;
}


/*--- Main Colum BG - with image ---*/
.elementor-column.elementor-top-column.tm-elementor-bg-color-light.tm-bgimage-yes:not(.tm-col-stretched-yes) > .elementor-widget-wrap:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-light.tm-bgimage-yes:not(.tm-bg-image-over-color) .elementor-widget-wrap .tm-stretched-div:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-light .elementor-widget-wrap .tm-bgimage-yes.tm-stretched-div:before,

.elementor-column.elementor-top-column.tm-elementor-bg-color-light.tm-bgimage-yes:not(.tm-col-stretched-yes) > .elementor-column-wrap:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-light.tm-bgimage-yes:not(.tm-bg-image-over-color) .elementor-column-wrap .tm-stretched-div:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-light .elementor-column-wrap .tm-bgimage-yes.tm-stretched-div:before{
	background-color: rgba( var(--tm-colza-light-bg-color-rgb) , 0.60 );
}


/*--- Inner Colum BG  ---*/
.elementor-inner-section.tm-elementor-bg-color-light{ 
	background-color: var(--tm-colza-light-bg-color) !important;
}

/*--- Inner Row - without image ---*/
.elementor-inner-section.tm-elementor-bg-color-light:not(.tm-bg-image-over-color):before{
	background-color: rgba( var(--tm-colza-light-bg-color-rgb) , 0.60 );
}


/*--- Inner Colum BG ---*/
.elementor-inner-column.tm-elementor-bg-color-light > div.elementor-column-wrap,
.elementor-inner-column.tm-elementor-bg-color-light > div.elementor-widget-wrap{ 
	background-color: var(--tm-colza-light-bg-color) !important;
}

/*--- Inner Colum BG - with image ---*/
.elementor-inner-column.tm-elementor-bg-color-light:not(.tm-bg-image-over-color) > div.elementor-column-wrap:before,
.elementor-inner-column.tm-elementor-bg-color-light:not(.tm-bg-image-over-color) > div.elementor-widget-wrap:before{
	background-color: rgba( var(--tm-colza-light-bg-color-rgb) , 0.60 );
}


/*====== End --- Row Colum - Light BG Color ======*/

/* --------------------------------------
 * Row Colum - Secondary BG Color
 * ---------------------------------------*/


/*--- Main RoW BG ---*/
.elementor-section.elementor-top-section.tm-elementor-bg-color-secondary, 
.elementor-section.elementor-top-section.tm-elementor-bg-color-secondary:before, 
.elementor-section.elementor-inner-section.tm-elementor-bg-color-secondary {
    background-color: var(--tm-colza-secondary-color);
}

/*--- Main Row BG - with image ---*/
.elementor-section.elementor-top-section.tm-elementor-bg-color-secondary.tm-bgimage-yes:before{
	background-color: rgba( var(--tm-colza-secondary-color-rgb) , 0.60 );
}

/*--- Main Colum BG - ---*/
.elementor-column.elementor-top-column.tm-elementor-bg-color-secondary:not(.tm-bgimage-yes) .elementor-widget-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-secondary.tm-bg-image-over-color .elementor-widget-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-secondary:not(.tm-col-stretched-yes) > .elementor-widget-wrap, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-secondary.tm-bg-image-over-color:not(.tm-col-stretched-yes) > .elementor-widget-wrap,

.elementor-column.elementor-top-column.tm-elementor-bg-color-secondary:not(.tm-bgimage-yes) .elementor-column-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-secondary.tm-bg-image-over-color .elementor-column-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-secondary:not(.tm-col-stretched-yes) > .elementor-column-wrap, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-secondary.tm-bg-image-over-color:not(.tm-col-stretched-yes) > .elementor-column-wrap{
	background-color: var(--tm-colza-secondary-color) !important;
}


/*--- Main Colum BG - with image ---*/
.elementor-column.elementor-top-column.tm-elementor-bg-color-secondary.tm-bgimage-yes:not(.tm-col-stretched-yes) > .elementor-widget-wrap:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-secondary.tm-bgimage-yes:not(.tm-bg-image-over-color) .elementor-widget-wrap .tm-stretched-div:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-secondary .elementor-widget-wrap .tm-bgimage-yes.tm-stretched-div:before,

.elementor-column.elementor-top-column.tm-elementor-bg-color-secondary.tm-bgimage-yes:not(.tm-col-stretched-yes) > .elementor-column-wrap:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-secondary.tm-bgimage-yes:not(.tm-bg-image-over-color) .elementor-column-wrap .tm-stretched-div:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-secondary .elementor-column-wrap .tm-bgimage-yes.tm-stretched-div:before{
	background-color: rgba( var(--tm-colza-secondary-color-rgb) , 0.60 );
}


/*--- Inner Colum BG  ---*/
.elementor-inner-section.tm-elementor-bg-color-secondary{ 
	background-color: var(--tm-colza-secondary-color) !important;
}

/*--- Inner Row - without image ---*/
.elementor-inner-section.tm-elementor-bg-color-secondary:not(.tm-bg-image-over-color):before{
	background-color: rgba( var(--tm-colza-secondary-color-rgb) , 0.60 );
}


/*--- Inner Colum BG ---*/
.elementor-inner-column.tm-elementor-bg-color-secondary > div.elementor-column-wrap,
.elementor-inner-column.tm-elementor-bg-color-secondary > div.elementor-widget-wrap{ 
	background-color: var(--tm-colza-secondary-color) !important;
}

/*--- Inner Colum BG - with image ---*/
.elementor-inner-column.tm-elementor-bg-color-secondary:not(.tm-bg-image-over-color) > div.elementor-column-wrap:before,
.elementor-inner-column.tm-elementor-bg-color-secondary:not(.tm-bg-image-over-color) > div.elementor-widget-wrap:before{
	background-color: rgba( var(--tm-colza-secondary-color-rgb) , 0.60 );
}



/*====== End --- Row Colum - Secondary BG Color ======*/

/* --------------------------------------
 * Row Colum - Blackish BG Color
 * ---------------------------------------*/


/*--- Main RoW BG ---*/
.elementor-section.elementor-top-section.tm-elementor-bg-color-blackish, 
.elementor-section.elementor-top-section.tm-elementor-bg-color-blackish:before, 
.elementor-section.elementor-inner-section.tm-elementor-bg-color-blackish {
    background-color: var(--tm-colza-blackish-color);
}

/*--- Main Row BG - with image ---*/
.elementor-section.elementor-top-section.tm-elementor-bg-color-blackish.tm-bgimage-yes:before{
	background-color: rgba( var(--tm-colza-blackish-color-rgb) , 0.60 );
}

/*--- Main Colum BG - ---*/
.elementor-column.elementor-top-column.tm-elementor-bg-color-blackish:not(.tm-bgimage-yes) .elementor-widget-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-blackish.tm-bg-image-over-color .elementor-widget-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-blackish:not(.tm-col-stretched-yes) > .elementor-widget-wrap, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-blackish.tm-bg-image-over-color:not(.tm-col-stretched-yes) > .elementor-widget-wrap,

.elementor-column.elementor-top-column.tm-elementor-bg-color-blackish:not(.tm-bgimage-yes) .elementor-column-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-blackish.tm-bg-image-over-color .elementor-column-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-blackish:not(.tm-col-stretched-yes) > .elementor-column-wrap, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-blackish.tm-bg-image-over-color:not(.tm-col-stretched-yes) > .elementor-column-wrap{
	background-color: var(--tm-colza-blackish-color) !important;
}


/*--- Main Colum BG - with image ---*/
.elementor-column.elementor-top-column.tm-elementor-bg-color-blackish.tm-bgimage-yes:not(.tm-col-stretched-yes) > .elementor-widget-wrap:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-blackish.tm-bgimage-yes:not(.tm-bg-image-over-color) .elementor-widget-wrap .tm-stretched-div:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-blackish .elementor-widget-wrap .tm-bgimage-yes.tm-stretched-div:before,

.elementor-column.elementor-top-column.tm-elementor-bg-color-blackish.tm-bgimage-yes:not(.tm-col-stretched-yes) > .elementor-column-wrap:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-blackish.tm-bgimage-yes:not(.tm-bg-image-over-color) .elementor-column-wrap .tm-stretched-div:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-blackish .elementor-column-wrap .tm-bgimage-yes.tm-stretched-div:before{
	background-color: rgba( var(--tm-colza-blackish-color-rgb) , 0.60 );
}


/*--- Inner Colum BG  ---*/
.elementor-inner-section.tm-elementor-bg-color-blackish{ 
	background-color: var(--tm-colza-blackish-color) !important;
}

/*--- Inner Row - without image ---*/
.elementor-inner-section.tm-elementor-bg-color-blackish:not(.tm-bg-image-over-color):before{
	background-color: rgba( var(--tm-colza-blackish-color-rgb) , 0.60 );
}


/*--- Inner Colum BG ---*/
.elementor-inner-column.tm-elementor-bg-color-blackish > div.elementor-column-wrap,
.elementor-inner-column.tm-elementor-bg-color-blackish > div.elementor-widget-wrap{ 
	background-color: var(--tm-colza-blackish-color) !important;
}

/*--- Inner Colum BG - with image ---*/
.elementor-inner-column.tm-elementor-bg-color-blackish:not(.tm-bg-image-over-color) > div.elementor-column-wrap:before,
.elementor-inner-column.tm-elementor-bg-color-blackish:not(.tm-bg-image-over-color) > div.elementor-widget-wrap:before{
	background-color: rgba( var(--tm-colza-blackish-color-rgb) , 0.60 );
}


/*====== End --- Row Colum - Blackish BG Color ======*/

/* --------------------------------------
 * Row Colum - White BG Color
 * ---------------------------------------*/



/*--- Main RoW BG ---*/
.elementor-section.elementor-top-section.tm-elementor-bg-color-white, 
.elementor-section.elementor-top-section.tm-elementor-bg-color-white:before, 
.elementor-section.elementor-inner-section.tm-elementor-bg-color-white {
    background-color: var(--tm-colza-white-color);
}

/*--- Main Row BG - with image ---*/
.elementor-section.elementor-top-section.tm-elementor-bg-color-white.tm-bgimage-yes:before{
	background-color: rgba( var(--tm-colza-white-color-rgb) , 0.60 );
}

/*--- Main Colum BG - ---*/
.elementor-column.elementor-top-column.tm-elementor-bg-color-white:not(.tm-bgimage-yes) .elementor-widget-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-white.tm-bg-image-over-color .elementor-widget-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-white:not(.tm-col-stretched-yes) > .elementor-widget-wrap, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-white.tm-bg-image-over-color:not(.tm-col-stretched-yes) > .elementor-widget-wrap,

.elementor-column.elementor-top-column.tm-elementor-bg-color-white:not(.tm-bgimage-yes) .elementor-column-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-white.tm-bg-image-over-color .elementor-column-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-white:not(.tm-col-stretched-yes) > .elementor-column-wrap, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-white.tm-bg-image-over-color:not(.tm-col-stretched-yes) > .elementor-column-wrap{
	background-color: var(--tm-colza-white-color) !important;
}


/*--- Main Colum BG - with image ---*/
.elementor-column.elementor-top-column.tm-elementor-bg-color-white.tm-bgimage-yes:not(.tm-col-stretched-yes) > .elementor-widget-wrap:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-white.tm-bgimage-yes:not(.tm-bg-image-over-color) .elementor-widget-wrap .tm-stretched-div:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-white .elementor-widget-wrap .tm-bgimage-yes.tm-stretched-div:before,

.elementor-column.elementor-top-column.tm-elementor-bg-color-white.tm-bgimage-yes:not(.tm-col-stretched-yes) > .elementor-column-wrap:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-white.tm-bgimage-yes:not(.tm-bg-image-over-color) .elementor-column-wrap .tm-stretched-div:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-white .elementor-column-wrap .tm-bgimage-yes.tm-stretched-div:before{
	background-color: rgba( var(--tm-colza-white-color-rgb) , 0.60 );
}


/*--- Inner Colum BG  ---*/
.elementor-inner-section.tm-elementor-bg-color-white{ 
	background-color: var(--tm-colza-white-color) !important;
}

/*--- Inner Row - without image ---*/
.elementor-inner-section.tm-elementor-bg-color-white:not(.tm-bg-image-over-color):before{
	background-color: rgba( var(--tm-colza-white-color-rgb) , 0.60 );
}


/*--- Inner Colum BG ---*/
.elementor-inner-column.tm-elementor-bg-color-white > div.elementor-column-wrap,
.elementor-inner-column.tm-elementor-bg-color-white > div.elementor-widget-wrap{ 
	background-color: var(--tm-colza-white-color) !important;
}

/*--- Inner Colum BG - with image ---*/
.elementor-inner-column.tm-elementor-bg-color-white:not(.tm-bg-image-over-color) > div.elementor-column-wrap:before,
.elementor-inner-column.tm-elementor-bg-color-white:not(.tm-bg-image-over-color) > div.elementor-widget-wrap:before{
	background-color: rgba( var(--tm-colza-white-color-rgb) , 0.60 );
}


/*====== End --- Row Colum - White BG Color ======*/


/* --------------------------------------
 * Row Colum - Gradient BG Color
 * ---------------------------------------*/

/*--- Main RoW BG ---*/
.elementor-section.elementor-top-section.tm-elementor-bg-color-gradient, 
.elementor-section.elementor-top-section.tm-elementor-bg-color-gradient:before, 
.elementor-section.elementor-inner-section.tm-elementor-bg-color-gradient {
    background-image: -ms-linear-gradient(right, var(--tm-colza-gradient-color-first) 0%, var(--tm-colza-gradient-color-last) 100%);
	background-image: linear-gradient(to right, var(--tm-colza-gradient-color-first) , var(--tm-colza-gradient-color-last) );
}

/*--- Main Row BG - with image ---*/
.elementor-section.elementor-top-section.tm-elementor-bg-color-gradient.tm-bgimage-yes:before{
    background-image: -ms-linear-gradient(right, var(--tm-colza-gradient-color-first) 0%, var(--tm-colza-gradient-color-last) 100%);
	background-image: linear-gradient(to right, var(--tm-colza-gradient-color-first) , var(--tm-colza-gradient-color-last) );
    opacity: 0.5;
}

/*--- Main Colum BG - ---*/
.elementor-column.elementor-top-column.tm-elementor-bg-color-gradient:not(.tm-bgimage-yes) .elementor-widget-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-gradient.tm-bg-image-over-color .elementor-widget-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-gradient:not(.tm-col-stretched-yes) > .elementor-widget-wrap, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-gradient.tm-bg-image-over-color:not(.tm-col-stretched-yes) > .elementor-widget-wrap,

.elementor-column.elementor-top-column.tm-elementor-bg-color-gradient:not(.tm-bgimage-yes) .elementor-column-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-gradient.tm-bg-image-over-color .elementor-column-wrap > .tm-stretched-div, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-gradient:not(.tm-col-stretched-yes) > .elementor-column-wrap, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-gradient.tm-bg-image-over-color:not(.tm-col-stretched-yes) > .elementor-column-wrap{
    background-image: -ms-linear-gradient(right, var(--tm-colza-gradient-color-first) 0%, var(--tm-colza-gradient-color-last) 100%);
	background-image: linear-gradient(to right, var(--tm-colza-gradient-color-first) , var(--tm-colza-gradient-color-last) );
}


/*--- Main Colum BG - with image ---*/
.elementor-column.elementor-top-column.tm-elementor-bg-color-gradient.tm-bgimage-yes:not(.tm-col-stretched-yes) > .elementor-widget-wrap:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-gradient.tm-bgimage-yes:not(.tm-bg-image-over-color) .elementor-widget-wrap .tm-stretched-div:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-gradient .elementor-widget-wrap .tm-bgimage-yes.tm-stretched-div:before,

.elementor-column.elementor-top-column.tm-elementor-bg-color-gradient.tm-bgimage-yes:not(.tm-col-stretched-yes) > .elementor-column-wrap:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-gradient.tm-bgimage-yes:not(.tm-bg-image-over-color) .elementor-column-wrap .tm-stretched-div:before, 
.elementor-column.elementor-top-column.tm-elementor-bg-color-gradient .elementor-column-wrap .tm-bgimage-yes.tm-stretched-div:before{
    background-image: -ms-linear-gradient(right, var(--tm-colza-gradient-color-first) 0%, var(--tm-colza-gradient-color-last) 80%);
	background-image: linear-gradient(to right, var(--tm-colza-gradient-color-first) , var(--tm-colza-gradient-color-last) );
    opacity: 0.5;
}


/*--- Inner Colum BG  ---*/
.elementor-inner-section.tm-elementor-bg-color-gradient{ 
    background-image: -ms-linear-gradient(right, var(--tm-colza-gradient-color-first) 0%, var(--tm-colza-gradient-color-last) 100%);
	background-image: linear-gradient(to right, var(--tm-colza-gradient-color-first) , var(--tm-colza-gradient-color-last) );
}

/*--- Inner Row - without image ---*/
.elementor-inner-section.tm-elementor-bg-color-gradient:not(.tm-bg-image-over-color):before{
    background-image: -ms-linear-gradient(right, var(--tm-colza-gradient-color-first) 0%, var(--tm-colza-gradient-color-last) 100%);
	background-image: linear-gradient(to right, var(--tm-colza-gradient-color-first) , var(--tm-colza-gradient-color-last) );
    opacity: 0.5;
}


/*--- Inner Colum BG ---*/
.elementor-inner-column.tm-elementor-bg-color-gradient > div.elementor-column-wrap,
.elementor-inner-column.tm-elementor-bg-color-gradient > div.elementor-widget-wrap{ 
	background-image: -ms-linear-gradient(right, var(--tm-colza-gradient-color-first) 0%, var(--tm-colza-gradient-color-last) 100%);
	background-image: linear-gradient(to right, var(--tm-colza-gradient-color-first) , var(--tm-colza-gradient-color-last) );
}

/*--- Inner Colum BG - with image ---*/
.elementor-inner-column.tm-elementor-bg-color-gradient:not(.tm-bg-image-over-color) > div.elementor-column-wrap:before,
.elementor-inner-column.tm-elementor-bg-color-gradient:not(.tm-bg-image-over-color) > div.elementor-widget-wrap:before{
    background-image: -ms-linear-gradient(right, var(--tm-colza-gradient-color-first) 0%, var(--tm-colza-gradient-color-last) 100%);
	background-image: linear-gradient(to right, var(--tm-colza-gradient-color-first) , var(--tm-colza-gradient-color-last) );
}


/*====== End --- Row Colum - Gradient BG Color ======*/


























/*!
 * Bootstrap  v5.3.6 (https://getbootstrap.com/)
 * Copyright 2011-2025 The Bootstrap Authors
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */dl,ol,p,pre,ul{margin-top:0}dd,legend{margin-bottom:.5rem}progress,sub,sup{vertical-align:baseline}.img-fluid,.img-thumbnail{max-width:100%;height:auto}.g-0,.gy-0,.row{--bs-gutter-y:0}.btn,.btn-link{--bs-btn-font-weight:400}.collapsing,.form-control[type=file]{overflow:hidden}.alert,sub,sup{position:relative}.btn-close-white,[data-bs-theme=dark]{--bs-btn-close-filter:invert(1) grayscale(100%) brightness(200%)}:root,[data-bs-theme=light]{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-black:#000;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-primary-text-emphasis:#052c65;--bs-secondary-text-emphasis:#2b2f32;--bs-success-text-emphasis:#0a3622;--bs-info-text-emphasis:#055160;--bs-warning-text-emphasis:#664d03;--bs-danger-text-emphasis:#58151c;--bs-light-text-emphasis:#495057;--bs-dark-text-emphasis:#495057;--bs-primary-bg-subtle:#cfe2ff;--bs-secondary-bg-subtle:#e2e3e5;--bs-success-bg-subtle:#d1e7dd;--bs-info-bg-subtle:#cff4fc;--bs-warning-bg-subtle:#fff3cd;--bs-danger-bg-subtle:#f8d7da;--bs-light-bg-subtle:#fcfcfd;--bs-dark-bg-subtle:#ced4da;--bs-primary-border-subtle:#9ec5fe;--bs-secondary-border-subtle:#c4c8cb;--bs-success-border-subtle:#a3cfbb;--bs-info-border-subtle:#9eeaf9;--bs-warning-border-subtle:#ffe69c;--bs-danger-border-subtle:#f1aeb5;--bs-light-border-subtle:#e9ecef;--bs-dark-border-subtle:#adb5bd;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue","Noto Sans","Liberation Sans",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-color-rgb:33,37,41;--bs-body-bg:#fff;--bs-body-bg-rgb:255,255,255;--bs-emphasis-color:#000;--bs-emphasis-color-rgb:0,0,0;--bs-secondary-color:rgba(33, 37, 41, 0.75);--bs-secondary-color-rgb:33,37,41;--bs-secondary-bg:#e9ecef;--bs-secondary-bg-rgb:233,236,239;--bs-tertiary-color:rgba(33, 37, 41, 0.5);--bs-tertiary-color-rgb:33,37,41;--bs-tertiary-bg:#f8f9fa;--bs-tertiary-bg-rgb:248,249,250;--bs-heading-color:inherit;--bs-link-color:#0d6efd;--bs-link-color-rgb:13,110,253;--bs-link-decoration:underline;--bs-link-hover-color:#0a58ca;--bs-link-hover-color-rgb:10,88,202;--bs-code-color:#d63384;--bs-highlight-color:#212529;--bs-highlight-bg:#fff3cd;--bs-border-width:1px;--bs-border-style:solid;--bs-border-color:#dee2e6;--bs-border-color-translucent:rgba(0, 0, 0, 0.175);--bs-border-radius:0.375rem;--bs-border-radius-sm:0.25rem;--bs-border-radius-lg:0.5rem;--bs-border-radius-xl:1rem;--bs-border-radius-xxl:2rem;--bs-border-radius-2xl:var(--bs-border-radius-xxl);--bs-border-radius-pill:50rem;--bs-box-shadow:0 0.5rem 1rem rgba(0, 0, 0, 0.15);--bs-box-shadow-sm:0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);--bs-box-shadow-lg:0 1rem 3rem rgba(0, 0, 0, 0.175);--bs-box-shadow-inset:inset 0 1px 2px rgba(0, 0, 0, 0.075);--bs-focus-ring-width:0.25rem;--bs-focus-ring-opacity:0.25;--bs-focus-ring-color:rgba(13, 110, 253, 0.25);--bs-form-valid-color:#198754;--bs-form-valid-border-color:#198754;--bs-form-invalid-color:#dc3545;--bs-form-invalid-border-color:#dc3545}[data-bs-theme=dark]{color-scheme:dark;--bs-body-color:#dee2e6;--bs-body-color-rgb:222,226,230;--bs-body-bg:#212529;--bs-body-bg-rgb:33,37,41;--bs-emphasis-color:#fff;--bs-emphasis-color-rgb:255,255,255;--bs-secondary-color:rgba(222, 226, 230, 0.75);--bs-secondary-color-rgb:222,226,230;--bs-secondary-bg:#343a40;--bs-secondary-bg-rgb:52,58,64;--bs-tertiary-color:rgba(222, 226, 230, 0.5);--bs-tertiary-color-rgb:222,226,230;--bs-tertiary-bg:#2b3035;--bs-tertiary-bg-rgb:43,48,53;--bs-primary-text-emphasis:#6ea8fe;--bs-secondary-text-emphasis:#a7acb1;--bs-success-text-emphasis:#75b798;--bs-info-text-emphasis:#6edff6;--bs-warning-text-emphasis:#ffda6a;--bs-danger-text-emphasis:#ea868f;--bs-light-text-emphasis:#f8f9fa;--bs-dark-text-emphasis:#dee2e6;--bs-primary-bg-subtle:#031633;--bs-secondary-bg-subtle:#161719;--bs-success-bg-subtle:#051b11;--bs-info-bg-subtle:#032830;--bs-warning-bg-subtle:#332701;--bs-danger-bg-subtle:#2c0b0e;--bs-light-bg-subtle:#343a40;--bs-dark-bg-subtle:#1a1d20;--bs-primary-border-subtle:#084298;--bs-secondary-border-subtle:#41464b;--bs-success-border-subtle:#0f5132;--bs-info-border-subtle:#087990;--bs-warning-border-subtle:#997404;--bs-danger-border-subtle:#842029;--bs-light-border-subtle:#495057;--bs-dark-border-subtle:#343a40;--bs-heading-color:inherit;--bs-link-color:#6ea8fe;--bs-link-hover-color:#8bb9fe;--bs-link-color-rgb:110,168,254;--bs-link-hover-color-rgb:139,185,254;--bs-code-color:#e685b5;--bs-highlight-color:#dee2e6;--bs-highlight-bg:#664d03;--bs-border-color:#495057;--bs-border-color-translucent:rgba(255, 255, 255, 0.15);--bs-form-valid-color:#75b798;--bs-form-valid-border-color:#75b798;--bs-form-invalid-color:#ea868f;--bs-form-invalid-border-color:#ea868f}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;border:0;border-top:var(--bs-border-width) solid;opacity:.25}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2;color:var(--bs-heading-color)}address,dl,ol,p,ul{margin-bottom:1rem}address,legend{line-height:inherit}.h1,h1{font-size:calc(1.375rem + 1.5vw)}.h2,h2{font-size:calc(1.325rem + .9vw)}.h3,h3{font-size:calc(1.3rem + .6vw)}.h4,h4{font-size:calc(1.275rem + .3vw)}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}abbr[title]{text-decoration:underline dotted;cursor:help;text-decoration-skip-ink:none}.btn,.form-control-color:not(:disabled):not([readonly]),.form-control[type=file]:not(:disabled):not([readonly]),[role=button],[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled),summary{cursor:pointer}address{font-style:normal}ol,ul{padding-left:2rem}.blockquote>:last-child,ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-left:0}blockquote,figure{margin:0 0 1rem}.blockquote,.blockquote-footer,pre{margin-bottom:1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.1875em;color:var(--bs-highlight-color);background-color:var(--bs-highlight-bg)}.alert-heading,a>code,pre code{color:inherit}sub,sup{font-size:.75em;line-height:0}.btn,img,svg{vertical-align:middle}sub{bottom:-.25em}sup{top:-.5em}a{color:rgba(var(--bs-link-color-rgb),var(--bs-link-opacity,1));text-decoration:underline}a:hover{--bs-link-color-rgb:var(--bs-link-hover-color-rgb)}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em}code,kbd,pre{font-size:.875em}pre{display:block;overflow:auto}pre code{font-size:inherit;word-break:normal}code{color:var(--bs-code-color);word-wrap:break-word}kbd{padding:.1875rem .375rem;color:var(--bs-body-bg);background-color:var(--bs-body-color);border-radius:.25rem}kbd kbd{padding:0;font-size:1em}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:var(--bs-secondary-color);text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border:0 solid;border-color:inherit}.figure,.list-inline-item,label,output{display:inline-block}button{border-radius:0}fieldset,iframe{border:0}.form-control-plaintext:focus,button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}select{word-wrap:normal}select:disabled{opacity:1}[list]:not([type=date]):not([type=datetime-local]):not([type=month]):not([type=week]):not([type=time])::-webkit-calendar-picker-indicator{display:none!important}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0}legend{float:left;width:100%;padding:0;font-size:calc(1.275rem + .3vw)}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::file-selector-button{font:inherit;-webkit-appearance:button}.display-1,.display-2,.display-3,.display-4,.display-5,.display-6{font-weight:300;line-height:1.2}summary{display:list-item}.d-none,[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw)}.display-2{font-size:calc(1.575rem + 3.9vw)}.display-3{font-size:calc(1.525rem + 3.3vw)}.display-4{font-size:calc(1.475rem + 2.7vw)}.display-5{font-size:calc(1.425rem + 2.1vw)}.display-6{font-size:calc(1.375rem + 1.5vw)}.list-inline,.list-unstyled{padding-left:0;list-style:none}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{font-size:1.25rem}.blockquote-footer{margin-top:-1rem;font-size:.875em;color:#6c757d}.figure-img,.form-label{margin-bottom:.5rem}.blockquote-footer::before{content:"— "}.img-thumbnail{padding:.25rem;background-color:var(--bs-body-bg);border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius)}.figure-img{line-height:1}.form-control,.form-control-plaintext{line-height:1.5;display:block;width:100%}.figure-caption{font-size:.875em;color:var(--bs-secondary-color)}.form-control,.form-control:focus{color:var(--bs-body-color);background-color:var(--bs-body-bg)}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{--bs-gutter-x:1.5rem;--bs-gutter-y:0;width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-right:auto;margin-left:auto}:root{--bs-breakpoint-xs:0;--bs-breakpoint-sm:576px;--bs-breakpoint-md:768px;--bs-breakpoint-lg:992px;--bs-breakpoint-xl:1200px;--bs-breakpoint-xxl:1400px}.row{--bs-gutter-x:1.5rem;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0}.col-auto,.row-cols-auto>*{flex:0 0 auto;width:auto}.col-12,.row-cols-1>*{flex:0 0 auto;width:100%}.col-6,.row-cols-2>*{flex:0 0 auto;width:50%}.col-4,.row-cols-3>*{flex:0 0 auto;width:33.33333333%}.col-3,.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.col-2,.row-cols-6>*{flex:0 0 auto;width:16.66666667%}.col-1,.col-5{flex:0 0 auto}.col-1{width:8.33333333%}.col-5{width:41.66666667%}.col-7,.col-8{flex:0 0 auto}.col-7{width:58.33333333%}.col-8{width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}.col-form-label{padding-top:calc(.375rem + var(--bs-border-width));padding-bottom:calc(.375rem + var(--bs-border-width));margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + var(--bs-border-width));padding-bottom:calc(.5rem + var(--bs-border-width));font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + var(--bs-border-width));padding-bottom:calc(.25rem + var(--bs-border-width));font-size:.875rem}.form-control{padding:.375rem .75rem;font-size:1rem;font-weight:400;appearance:none;background-clip:padding-box;border:var(--bs-border-width) solid var(--bs-border-color);border-radius:var(--bs-border-radius);transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{min-width:85px;height:1.5em;margin:0}.form-control::-webkit-datetime-edit{display:block;padding:0}.form-control::placeholder{color:var(--bs-secondary-color);opacity:1}.form-control:disabled{background-color:var(--bs-secondary-bg);opacity:1}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;margin-inline-end:.75rem;color:var(--bs-body-color);background-color:var(--bs-tertiary-bg);pointer-events:none;border:0 solid;border-inline-end-width:var(--bs-border-width);border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;border-color:inherit}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:var(--bs-secondary-bg)}.form-control-plaintext{padding:.375rem 0;margin-bottom:0;color:var(--bs-body-color);background-color:transparent;border:solid transparent;border-width:var(--bs-border-width) 0}.btn,.btn-check+.btn:hover{color:var(--bs-btn-color);background-color:var(--bs-btn-bg)}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2));padding:.25rem .5rem;font-size:.875rem;border-radius:var(--bs-border-radius-sm)}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));padding:.5rem 1rem;font-size:1.25rem;border-radius:var(--bs-border-radius-lg)}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2))}textarea.form-control-sm{min-height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}textarea.form-control-lg{min-height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.form-control-color{width:3rem;height:calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));padding:.375rem}.form-control-color::-moz-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color::-webkit-color-swatch{border:0!important;border-radius:var(--bs-border-radius)}.form-control-color.form-control-sm{height:calc(1.5em + .5rem + calc(var(--bs-border-width) * 2))}.form-control-color.form-control-lg{height:calc(1.5em + 1rem + calc(var(--bs-border-width) * 2))}.btn{--bs-btn-padding-x:0.75rem;--bs-btn-padding-y:0.375rem;--bs-btn-font-family: ;--bs-btn-font-size:1rem;--bs-btn-line-height:1.5;--bs-btn-color:var(--bs-body-color);--bs-btn-bg:transparent;--bs-btn-border-width:var(--bs-border-width);--bs-btn-border-color:transparent;--bs-btn-border-radius:var(--bs-border-radius);--bs-btn-hover-border-color:transparent;--bs-btn-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);--bs-btn-disabled-opacity:0.65;--bs-btn-focus-box-shadow:0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);display:inline-block;padding:var(--bs-btn-padding-y) var(--bs-btn-padding-x);font-family:var(--bs-btn-font-family);font-size:var(--bs-btn-font-size);font-weight:var(--bs-btn-font-weight);line-height:var(--bs-btn-line-height);text-align:center;text-decoration:none;user-select:none;border:var(--bs-btn-border-width) solid var(--bs-btn-border-color);border-radius:var(--bs-btn-border-radius);transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.btn-primary,.btn-secondary,.btn-success{--bs-btn-color:#fff;--bs-btn-hover-color:#fff;--bs-btn-active-color:#fff;--bs-btn-disabled-color:#fff;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125)}.btn:hover{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color)}.btn-check+.btn:hover{border-color:var(--bs-btn-border-color)}.btn:focus-visible{color:var(--bs-btn-hover-color);background-color:var(--bs-btn-hover-bg);border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:focus-visible+.btn{border-color:var(--bs-btn-hover-border-color);outline:0;box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked+.btn,.btn.active,.btn.show,.btn:first-child:active,:not(.btn-check)+.btn:active{color:var(--bs-btn-active-color);background-color:var(--bs-btn-active-bg);border-color:var(--bs-btn-active-border-color)}.btn-check:checked+.btn:focus-visible,.btn.active:focus-visible,.btn.show:focus-visible,.btn:first-child:active:focus-visible,:not(.btn-check)+.btn:active:focus-visible{box-shadow:var(--bs-btn-focus-box-shadow)}.btn-check:checked:focus-visible+.btn{box-shadow:var(--bs-btn-focus-box-shadow)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{color:var(--bs-btn-disabled-color);pointer-events:none;background-color:var(--bs-btn-disabled-bg);border-color:var(--bs-btn-disabled-border-color);opacity:var(--bs-btn-disabled-opacity)}.btn-primary{--bs-btn-bg:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-bg:#0b5ed7;--bs-btn-hover-border-color:#0a58ca;--bs-btn-focus-shadow-rgb:49,132,253;--bs-btn-active-bg:#0a58ca;--bs-btn-active-border-color:#0a53be;--bs-btn-disabled-bg:#0d6efd;--bs-btn-disabled-border-color:#0d6efd}.btn-secondary{--bs-btn-bg:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-bg:#5c636a;--bs-btn-hover-border-color:#565e64;--bs-btn-focus-shadow-rgb:130,138,145;--bs-btn-active-bg:#565e64;--bs-btn-active-border-color:#51585e;--bs-btn-disabled-bg:#6c757d;--bs-btn-disabled-border-color:#6c757d}.btn-success{--bs-btn-bg:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-bg:#157347;--bs-btn-hover-border-color:#146c43;--bs-btn-focus-shadow-rgb:60,153,110;--bs-btn-active-bg:#146c43;--bs-btn-active-border-color:#13653f;--bs-btn-disabled-bg:#198754;--bs-btn-disabled-border-color:#198754}.btn-info,.btn-warning{--bs-btn-color:#000;--bs-btn-hover-color:#000;--bs-btn-active-color:#000;--bs-btn-disabled-color:#000}.btn-info{--bs-btn-bg:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-bg:#31d2f2;--bs-btn-hover-border-color:#25cff2;--bs-btn-focus-shadow-rgb:11,172,204;--bs-btn-active-bg:#3dd5f3;--bs-btn-active-border-color:#25cff2;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-bg:#0dcaf0;--bs-btn-disabled-border-color:#0dcaf0}.btn-warning{--bs-btn-bg:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-bg:#ffca2c;--bs-btn-hover-border-color:#ffc720;--bs-btn-focus-shadow-rgb:217,164,6;--bs-btn-active-bg:#ffcd39;--bs-btn-active-border-color:#ffc720;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-bg:#ffc107;--bs-btn-disabled-border-color:#ffc107}.btn-danger,.btn-dark{--bs-btn-hover-color:#fff;--bs-btn-active-color:#fff;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125)}.btn-danger{--bs-btn-color:#fff;--bs-btn-bg:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-bg:#bb2d3b;--bs-btn-hover-border-color:#b02a37;--bs-btn-focus-shadow-rgb:225,83,97;--bs-btn-active-bg:#b02a37;--bs-btn-active-border-color:#a52834;--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#dc3545;--bs-btn-disabled-border-color:#dc3545}.btn-light{--bs-btn-color:#000;--bs-btn-bg:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#d3d4d5;--bs-btn-hover-border-color:#c6c7c8;--bs-btn-focus-shadow-rgb:211,212,213;--bs-btn-active-color:#000;--bs-btn-active-bg:#c6c7c8;--bs-btn-active-border-color:#babbbc;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#000;--bs-btn-disabled-bg:#f8f9fa;--bs-btn-disabled-border-color:#f8f9fa}.btn-dark{--bs-btn-color:#fff;--bs-btn-bg:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-bg:#424649;--bs-btn-hover-border-color:#373b3e;--bs-btn-focus-shadow-rgb:66,70,73;--bs-btn-active-bg:#4d5154;--bs-btn-active-border-color:#373b3e;--bs-btn-disabled-color:#fff;--bs-btn-disabled-bg:#212529;--bs-btn-disabled-border-color:#212529}.btn-outline-primary,.btn-outline-secondary{--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-bg:transparent;--bs-gradient:none;--bs-btn-hover-color:#fff;--bs-btn-active-color:#fff}.btn-outline-primary{--bs-btn-color:#0d6efd;--bs-btn-border-color:#0d6efd;--bs-btn-hover-bg:#0d6efd;--bs-btn-hover-border-color:#0d6efd;--bs-btn-focus-shadow-rgb:13,110,253;--bs-btn-active-bg:#0d6efd;--bs-btn-active-border-color:#0d6efd;--bs-btn-disabled-color:#0d6efd;--bs-btn-disabled-border-color:#0d6efd}.btn-outline-secondary{--bs-btn-color:#6c757d;--bs-btn-border-color:#6c757d;--bs-btn-hover-bg:#6c757d;--bs-btn-hover-border-color:#6c757d;--bs-btn-focus-shadow-rgb:108,117,125;--bs-btn-active-bg:#6c757d;--bs-btn-active-border-color:#6c757d;--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-border-color:#6c757d}.btn-outline-success{--bs-btn-color:#198754;--bs-btn-border-color:#198754;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#198754;--bs-btn-hover-border-color:#198754;--bs-btn-focus-shadow-rgb:25,135,84;--bs-btn-active-color:#fff;--bs-btn-active-bg:#198754;--bs-btn-active-border-color:#198754;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#198754;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#198754;--bs-gradient:none}.btn-outline-info,.btn-outline-warning{--bs-btn-hover-color:#000;--bs-btn-active-color:#000;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-bg:transparent;--bs-gradient:none}.btn-outline-info{--bs-btn-color:#0dcaf0;--bs-btn-border-color:#0dcaf0;--bs-btn-hover-bg:#0dcaf0;--bs-btn-hover-border-color:#0dcaf0;--bs-btn-focus-shadow-rgb:13,202,240;--bs-btn-active-bg:#0dcaf0;--bs-btn-active-border-color:#0dcaf0;--bs-btn-disabled-color:#0dcaf0;--bs-btn-disabled-border-color:#0dcaf0}.btn-outline-warning{--bs-btn-color:#ffc107;--bs-btn-border-color:#ffc107;--bs-btn-hover-bg:#ffc107;--bs-btn-hover-border-color:#ffc107;--bs-btn-focus-shadow-rgb:255,193,7;--bs-btn-active-bg:#ffc107;--bs-btn-active-border-color:#ffc107;--bs-btn-disabled-color:#ffc107;--bs-btn-disabled-border-color:#ffc107}.btn-outline-danger{--bs-btn-color:#dc3545;--bs-btn-border-color:#dc3545;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#dc3545;--bs-btn-hover-border-color:#dc3545;--bs-btn-focus-shadow-rgb:220,53,69;--bs-btn-active-color:#fff;--bs-btn-active-bg:#dc3545;--bs-btn-active-border-color:#dc3545;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#dc3545;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#dc3545;--bs-gradient:none}.btn-outline-light{--bs-btn-color:#f8f9fa;--bs-btn-border-color:#f8f9fa;--bs-btn-hover-color:#000;--bs-btn-hover-bg:#f8f9fa;--bs-btn-hover-border-color:#f8f9fa;--bs-btn-focus-shadow-rgb:248,249,250;--bs-btn-active-color:#000;--bs-btn-active-bg:#f8f9fa;--bs-btn-active-border-color:#f8f9fa;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#f8f9fa;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#f8f9fa;--bs-gradient:none}.btn-outline-dark{--bs-btn-color:#212529;--bs-btn-border-color:#212529;--bs-btn-hover-color:#fff;--bs-btn-hover-bg:#212529;--bs-btn-hover-border-color:#212529;--bs-btn-focus-shadow-rgb:33,37,41;--bs-btn-active-color:#fff;--bs-btn-active-bg:#212529;--bs-btn-active-border-color:#212529;--bs-btn-active-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);--bs-btn-disabled-color:#212529;--bs-btn-disabled-bg:transparent;--bs-btn-disabled-border-color:#212529;--bs-gradient:none}.btn-link{--bs-btn-color:var(--bs-link-color);--bs-btn-bg:transparent;--bs-btn-border-color:transparent;--bs-btn-hover-color:var(--bs-link-hover-color);--bs-btn-hover-border-color:transparent;--bs-btn-active-color:var(--bs-link-hover-color);--bs-btn-active-border-color:transparent;--bs-btn-disabled-color:#6c757d;--bs-btn-disabled-border-color:transparent;--bs-btn-box-shadow:0 0 0 #000;--bs-btn-focus-shadow-rgb:49,132,253;text-decoration:underline}.btn-link:focus-visible{color:var(--bs-btn-color)}.btn-link:hover{color:var(--bs-btn-hover-color)}.btn-lg{--bs-btn-padding-y:0.5rem;--bs-btn-padding-x:1rem;--bs-btn-font-size:1.25rem;--bs-btn-border-radius:var(--bs-border-radius-lg)}.btn-sm{--bs-btn-padding-y:0.25rem;--bs-btn-padding-x:0.5rem;--bs-btn-font-size:0.875rem;--bs-btn-border-radius:var(--bs-border-radius-sm)}.fade{transition:opacity .15s linear}.fade:not(.show){opacity:0}.collapse:not(.show),.tab-content>.tab-pane{display:none}.collapsing{height:0;transition:height .35s}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s}.alert{--bs-alert-bg:transparent;--bs-alert-padding-x:1rem;--bs-alert-padding-y:1rem;--bs-alert-margin-bottom:1rem;--bs-alert-color:inherit;--bs-alert-border-color:transparent;--bs-alert-border:var(--bs-border-width) solid var(--bs-alert-border-color);--bs-alert-border-radius:var(--bs-border-radius);--bs-alert-link-color:inherit;padding:var(--bs-alert-padding-y) var(--bs-alert-padding-x);margin-bottom:var(--bs-alert-margin-bottom);color:var(--bs-alert-color);background-color:var(--bs-alert-bg);border:var(--bs-alert-border);border-radius:var(--bs-alert-border-radius)}.alert-link{font-weight:700;color:var(--bs-alert-link-color)}.btn-close,.btn-close:hover{color:var(--bs-btn-close-color)}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{--bs-alert-color:var(--bs-primary-text-emphasis);--bs-alert-bg:var(--bs-primary-bg-subtle);--bs-alert-border-color:var(--bs-primary-border-subtle);--bs-alert-link-color:var(--bs-primary-text-emphasis)}.alert-secondary{--bs-alert-color:var(--bs-secondary-text-emphasis);--bs-alert-bg:var(--bs-secondary-bg-subtle);--bs-alert-border-color:var(--bs-secondary-border-subtle);--bs-alert-link-color:var(--bs-secondary-text-emphasis)}.alert-success{--bs-alert-color:var(--bs-success-text-emphasis);--bs-alert-bg:var(--bs-success-bg-subtle);--bs-alert-border-color:var(--bs-success-border-subtle);--bs-alert-link-color:var(--bs-success-text-emphasis)}.alert-info{--bs-alert-color:var(--bs-info-text-emphasis);--bs-alert-bg:var(--bs-info-bg-subtle);--bs-alert-border-color:var(--bs-info-border-subtle);--bs-alert-link-color:var(--bs-info-text-emphasis)}.alert-warning{--bs-alert-color:var(--bs-warning-text-emphasis);--bs-alert-bg:var(--bs-warning-bg-subtle);--bs-alert-border-color:var(--bs-warning-border-subtle);--bs-alert-link-color:var(--bs-warning-text-emphasis)}.alert-danger{--bs-alert-color:var(--bs-danger-text-emphasis);--bs-alert-bg:var(--bs-danger-bg-subtle);--bs-alert-border-color:var(--bs-danger-border-subtle);--bs-alert-link-color:var(--bs-danger-text-emphasis)}.alert-light{--bs-alert-color:var(--bs-light-text-emphasis);--bs-alert-bg:var(--bs-light-bg-subtle);--bs-alert-border-color:var(--bs-light-border-subtle);--bs-alert-link-color:var(--bs-light-text-emphasis)}.alert-dark{--bs-alert-color:var(--bs-dark-text-emphasis);--bs-alert-bg:var(--bs-dark-bg-subtle);--bs-alert-border-color:var(--bs-dark-border-subtle);--bs-alert-link-color:var(--bs-dark-text-emphasis)}.btn-close{--bs-btn-close-color:#000;--bs-btn-close-bg:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414'/%3e%3c/svg%3e");--bs-btn-close-opacity:0.5;--bs-btn-close-hover-opacity:0.75;--bs-btn-close-focus-shadow:0 0 0 0.25rem rgba(13, 110, 253, 0.25);--bs-btn-close-focus-opacity:1;--bs-btn-close-disabled-opacity:0.25;box-sizing:content-box;width:1em;height:1em;padding:.25em;background:transparent var(--bs-btn-close-bg) center/1em auto no-repeat;filter:var(--bs-btn-close-filter);border:0;border-radius:.375rem;opacity:var(--bs-btn-close-opacity)}.btn-close:hover{text-decoration:none;opacity:var(--bs-btn-close-hover-opacity)}.btn-close:focus{outline:0;box-shadow:var(--bs-btn-close-focus-shadow);opacity:var(--bs-btn-close-focus-opacity)}.btn-close.disabled,.btn-close:disabled{pointer-events:none;user-select:none;opacity:var(--bs-btn-close-disabled-opacity)}:root,[data-bs-theme=light]{--bs-btn-close-filter: }.nav{--bs-nav-link-padding-x:1rem;--bs-nav-link-padding-y:0.5rem;--bs-nav-link-font-weight: ;--bs-nav-link-color:var(--bs-link-color);--bs-nav-link-hover-color:var(--bs-link-hover-color);--bs-nav-link-disabled-color:var(--bs-secondary-color);display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link,.tab-content>.active{display:block}.nav-link{padding:var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);font-size:var(--bs-nav-link-font-size);font-weight:var(--bs-nav-link-font-weight);color:var(--bs-nav-link-color);text-decoration:none;background:0 0;border:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}.nav-link:focus,.nav-link:hover{color:var(--bs-nav-link-hover-color)}.nav-link:focus-visible{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.nav-link.disabled,.nav-link:disabled{color:var(--bs-nav-link-disabled-color);pointer-events:none;cursor:default}.nav-tabs{--bs-nav-tabs-border-width:var(--bs-border-width);--bs-nav-tabs-border-color:var(--bs-border-color);--bs-nav-tabs-border-radius:var(--bs-border-radius);--bs-nav-tabs-link-hover-border-color:var(--bs-secondary-bg) var(--bs-secondary-bg) var(--bs-border-color);--bs-nav-tabs-link-active-color:var(--bs-emphasis-color);--bs-nav-tabs-link-active-bg:var(--bs-body-bg);--bs-nav-tabs-link-active-border-color:var(--bs-border-color) var(--bs-border-color) var(--bs-body-bg);border-bottom:var(--bs-nav-tabs-border-width) solid var(--bs-nav-tabs-border-color)}.nav-tabs .nav-link{margin-bottom:calc(-1 * var(--bs-nav-tabs-border-width));border:var(--bs-nav-tabs-border-width) solid transparent;border-top-left-radius:var(--bs-nav-tabs-border-radius);border-top-right-radius:var(--bs-nav-tabs-border-radius)}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{isolation:isolate;border-color:var(--bs-nav-tabs-link-hover-border-color)}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:var(--bs-nav-tabs-link-active-color);background-color:var(--bs-nav-tabs-link-active-bg);border-color:var(--bs-nav-tabs-link-active-border-color)}.nav-tabs .dropdown-menu{margin-top:calc(-1 * var(--bs-nav-tabs-border-width));border-top-left-radius:0;border-top-right-radius:0}.nav-pills{--bs-nav-pills-border-radius:var(--bs-border-radius);--bs-nav-pills-link-active-color:#fff;--bs-nav-pills-link-active-bg:#0d6efd}.nav-pills .nav-link{border-radius:var(--bs-nav-pills-border-radius)}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:var(--bs-nav-pills-link-active-color);background-color:var(--bs-nav-pills-link-active-bg)}.nav-underline{--bs-nav-underline-gap:1rem;--bs-nav-underline-border-width:0.125rem;--bs-nav-underline-link-active-color:var(--bs-emphasis-color);gap:var(--bs-nav-underline-gap)}.nav-underline .nav-link{padding-right:0;padding-left:0;border-bottom:var(--bs-nav-underline-border-width) solid transparent}.nav-underline .nav-link:focus,.nav-underline .nav-link:hover{border-bottom-color:currentcolor}.nav-underline .nav-link.active,.nav-underline .show>.nav-link{font-weight:700;color:var(--bs-nav-underline-link-active-color);border-bottom-color:currentcolor}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-grow:1;flex-basis:0;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.clearfix::after{display:block;clear:both;content:""}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-inline-grid{display:inline-grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.row-gap-0{row-gap:0!important}.row-gap-1{row-gap:.25rem!important}.row-gap-2{row-gap:.5rem!important}.row-gap-3{row-gap:1rem!important}.row-gap-4{row-gap:1.5rem!important}.row-gap-5{row-gap:3rem!important}.column-gap-0{column-gap:0!important}.column-gap-1{column-gap:.25rem!important}.column-gap-2{column-gap:.5rem!important}.column-gap-3{column-gap:1rem!important}.column-gap-4{column-gap:1.5rem!important}.column-gap-5{column-gap:3rem!important}@media (min-width:576px){.container,.container-sm{max-width:540px}.col-sm{flex:1 0 0}.col-sm-auto,.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.col-sm-12,.row-cols-sm-1>*{flex:0 0 auto;width:100%}.col-sm-6,.row-cols-sm-2>*{flex:0 0 auto;width:50%}.col-sm-4,.row-cols-sm-3>*{flex:0 0 auto;width:33.33333333%}.col-sm-3,.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.col-sm-2,.row-cols-sm-6>*{flex:0 0 auto;width:16.66666667%}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-inline-grid{display:inline-grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.row-gap-sm-0{row-gap:0!important}.row-gap-sm-1{row-gap:.25rem!important}.row-gap-sm-2{row-gap:.5rem!important}.row-gap-sm-3{row-gap:1rem!important}.row-gap-sm-4{row-gap:1.5rem!important}.row-gap-sm-5{row-gap:3rem!important}.column-gap-sm-0{column-gap:0!important}.column-gap-sm-1{column-gap:.25rem!important}.column-gap-sm-2{column-gap:.5rem!important}.column-gap-sm-3{column-gap:1rem!important}.column-gap-sm-4{column-gap:1.5rem!important}.column-gap-sm-5{column-gap:3rem!important}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}.col-md{flex:1 0 0}.col-md-auto,.row-cols-md-auto>*{flex:0 0 auto;width:auto}.col-md-12,.row-cols-md-1>*{flex:0 0 auto;width:100%}.col-md-6,.row-cols-md-2>*{flex:0 0 auto;width:50%}.col-md-4,.row-cols-md-3>*{flex:0 0 auto;width:33.33333333%}.col-md-3,.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.col-md-2,.row-cols-md-6>*{flex:0 0 auto;width:16.66666667%}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-inline-grid{display:inline-grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.row-gap-md-0{row-gap:0!important}.row-gap-md-1{row-gap:.25rem!important}.row-gap-md-2{row-gap:.5rem!important}.row-gap-md-3{row-gap:1rem!important}.row-gap-md-4{row-gap:1.5rem!important}.row-gap-md-5{row-gap:3rem!important}.column-gap-md-0{column-gap:0!important}.column-gap-md-1{column-gap:.25rem!important}.column-gap-md-2{column-gap:.5rem!important}.column-gap-md-3{column-gap:1rem!important}.column-gap-md-4{column-gap:1.5rem!important}.column-gap-md-5{column-gap:3rem!important}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}.col-lg{flex:1 0 0}.col-lg-auto,.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.col-lg-12,.row-cols-lg-1>*{flex:0 0 auto;width:100%}.col-lg-6,.row-cols-lg-2>*{flex:0 0 auto;width:50%}.col-lg-4,.row-cols-lg-3>*{flex:0 0 auto;width:33.33333333%}.col-lg-3,.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.col-lg-2,.row-cols-lg-6>*{flex:0 0 auto;width:16.66666667%}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-inline-grid{display:inline-grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.row-gap-lg-0{row-gap:0!important}.row-gap-lg-1{row-gap:.25rem!important}.row-gap-lg-2{row-gap:.5rem!important}.row-gap-lg-3{row-gap:1rem!important}.row-gap-lg-4{row-gap:1.5rem!important}.row-gap-lg-5{row-gap:3rem!important}.column-gap-lg-0{column-gap:0!important}.column-gap-lg-1{column-gap:.25rem!important}.column-gap-lg-2{column-gap:.5rem!important}.column-gap-lg-3{column-gap:1rem!important}.column-gap-lg-4{column-gap:1.5rem!important}.column-gap-lg-5{column-gap:3rem!important}}@media (min-width:1200px){.display-6,.h1,h1{font-size:2.5rem}.h2,h2{font-size:2rem}.h3,h3{font-size:1.75rem}.h4,h4,legend{font-size:1.5rem}.display-1{font-size:5rem}.display-2{font-size:4.5rem}.display-3{font-size:4rem}.display-4{font-size:3.5rem}.display-5{font-size:3rem}.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}.col-xl{flex:1 0 0}.col-xl-auto,.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.col-xl-12,.row-cols-xl-1>*{flex:0 0 auto;width:100%}.col-xl-6,.row-cols-xl-2>*{flex:0 0 auto;width:50%}.col-xl-4,.row-cols-xl-3>*{flex:0 0 auto;width:33.33333333%}.col-xl-3,.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.col-xl-2,.row-cols-xl-6>*{flex:0 0 auto;width:16.66666667%}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-inline-grid{display:inline-grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.row-gap-xl-0{row-gap:0!important}.row-gap-xl-1{row-gap:.25rem!important}.row-gap-xl-2{row-gap:.5rem!important}.row-gap-xl-3{row-gap:1rem!important}.row-gap-xl-4{row-gap:1.5rem!important}.row-gap-xl-5{row-gap:3rem!important}.column-gap-xl-0{column-gap:0!important}.column-gap-xl-1{column-gap:.25rem!important}.column-gap-xl-2{column-gap:.5rem!important}.column-gap-xl-3{column-gap:1rem!important}.column-gap-xl-4{column-gap:1.5rem!important}.column-gap-xl-5{column-gap:3rem!important}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}.col-xxl{flex:1 0 0}.col-xxl-auto,.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.col-xxl-12,.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.col-xxl-6,.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.col-xxl-4,.row-cols-xxl-3>*{flex:0 0 auto;width:33.33333333%}.col-xxl-3,.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.col-xxl-2,.row-cols-xxl-6>*{flex:0 0 auto;width:16.66666667%}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-inline-grid{display:inline-grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.row-gap-xxl-0{row-gap:0!important}.row-gap-xxl-1{row-gap:.25rem!important}.row-gap-xxl-2{row-gap:.5rem!important}.row-gap-xxl-3{row-gap:1rem!important}.row-gap-xxl-4{row-gap:1.5rem!important}.row-gap-xxl-5{row-gap:3rem!important}.column-gap-xxl-0{column-gap:0!important}.column-gap-xxl-1{column-gap:.25rem!important}.column-gap-xxl-2{column-gap:.5rem!important}.column-gap-xxl-3{column-gap:1rem!important}.column-gap-xxl-4{column-gap:1.5rem!important}.column-gap-xxl-5{column-gap:3rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-inline-grid{display:inline-grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}}
.elementor-widget-container .wow {
    visibility: hidden;
}
.elementor-widget-container .wow.animated {
    visibility: visible;
}
.animated {
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
}
@-webkit-keyframes tm-bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
@keyframes tm-bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        transform: translateY(-15px);
    }
}
.bounce.animated {
    -webkit-animation-name: tm-bounce;
    animation-name: tm-bounce;
}
@-webkit-keyframes tm-flash {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}
@keyframes tm-flash {
    0%, 50%, 100% {
        opacity: 1;
    }
    25%, 75% {
        opacity: 0;
    }
}
.flash.animated {
    -webkit-animation-name: tm-flash;
    animation-name: tm-flash;
}
@-webkit-keyframes tm-pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes tm-pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}
.pulse.animated {
    -webkit-animation-name: tm-pulse;
    animation-name: tm-pulse;
}
@-webkit-keyframes tm-shake {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
}
@keyframes tm-shake {
    0%, 100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
}
.shake.animated {
    -webkit-animation-name: tm-shake;
    animation-name: tm-shake;
}
@-webkit-keyframes tm-swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
@keyframes tm-swing {
    20% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    40% {
        -webkit-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
        transform: rotate(-10deg);
    }
    60% {
        -webkit-transform: rotate(5deg);
        -ms-transform: rotate(5deg);
        transform: rotate(5deg);
    }
    80% {
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}
.swing.animated {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: tm-swing;
    animation-name: tm-swing;
}
@-webkit-keyframes tm-tada {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    10%, 20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
    }
    40%, 60%, 80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}
@keyframes tm-tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    10%, 20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        -ms-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        -ms-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg);
    }
    40%, 60%, 80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        -ms-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0);
    }
}
.tada.animated {
    -webkit-animation-name: tm-tada;
    animation-name: tm-tada;
}
@-webkit-keyframes tm-wobble {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg);
    }
    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg);
    }
    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
    }
}
@keyframes tm-wobble {
    0% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        -ms-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg);
    }
    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        -ms-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg);
    }
    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        -ms-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg);
    }
    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        -ms-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg);
    }
    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        -ms-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg);
    }
    100% {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
}
.wobble.animated {
    -webkit-animation-name: tm-wobble;
    animation-name: tm-wobble;
}
@-webkit-keyframes tm-bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
    }
    70% {
        -webkit-transform: scale(.9);
        transform: scale(.9);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes tm-bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
        transform: scale(1.05);
    }
    70% {
        -webkit-transform: scale(.9);
        -ms-transform: scale(.9);
        transform: scale(.9);
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}
.bounceIn.animated {
    -webkit-animation-name: tm-bounceIn;
    animation-name: tm-bounceIn;
}
@-webkit-keyframes tm-bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }
    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes tm-bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        -ms-transform: translateY(30px);
        transform: translateY(30px);
    }
    80% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px);
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
.bounceInDown.animated {
    -webkit-animation-name: tm-bounceInDown;
    animation-name: tm-bounceInDown;
}
@-webkit-keyframes tm-bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        transform: translateX(30px);
    }
    80% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes tm-bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        -ms-transform: translateX(30px);
        transform: translateX(30px);
    }
    80% {
        -webkit-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        transform: translateX(-10px);
    }
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}
.bounceInLeft.animated {
    -webkit-animation-name: tm-bounceInLeft;
    animation-name: tm-bounceInLeft;
}
@-webkit-keyframes tm-bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes tm-bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    80% {
        -webkit-transform: translateX(10px);
        -ms-transform: translateX(10px);
        transform: translateX(10px);
    }
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}
.bounceInRight.animated {
    -webkit-animation-name: tm-bounceInRight;
    animation-name: tm-bounceInRight;
}
@-webkit-keyframes tm-bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes tm-bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        transform: translateY(-30px);
    }
    80% {
        -webkit-transform: translateY(10px);
        -ms-transform: translateY(10px);
        transform: translateY(10px);
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
.bounceInUp.animated {
    -webkit-animation-name: tm-bounceInUp;
    animation-name: tm-bounceInUp;
}
@-webkit-keyframes tm-bounceOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    25% {
        -webkit-transform: scale(.95);
        transform: scale(.95);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3);
    }
}
@keyframes tm-bounceOut {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
    25% {
        -webkit-transform: scale(.95);
        -ms-transform: scale(.95);
        transform: scale(.95);
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        -ms-transform: scale(.3);
        transform: scale(.3);
    }
}
.bounceOut.animated {
    -webkit-animation-name: tm-bounceOut;
    animation-name: tm-bounceOut;
}
@-webkit-keyframes tm-bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}
@keyframes tm-bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}
.bounceOutDown.animated {
    -webkit-animation-name: tm-bounceOutDown;
    animation-name: tm-bounceOutDown;
}
@-webkit-keyframes tm-bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}
@keyframes tm-bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}
.bounceOutLeft.animated {
    -webkit-animation-name: tm-bounceOutLeft;
    animation-name: tm-bounceOutLeft;
}
@-webkit-keyframes tm-bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}
@keyframes tm-bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}
.bounceOutRight.animated {
    -webkit-animation-name: tm-bounceOutRight;
    animation-name: tm-bounceOutRight;
}
@-webkit-keyframes tm-bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}
@keyframes tm-bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}
.bounceOutUp.animated {
    -webkit-animation-name: tm-bounceOutUp;
    animation-name: tm-bounceOutUp;
}
@-webkit-keyframes tm-fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes tm-fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.fadeIn.animated {
    -webkit-animation-name: tm-fadeIn;
    animation-name: tm-fadeIn;
}
@-webkit-keyframes tm-fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes tm-fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
.fadeInDown.animated {
    -webkit-animation-name: tm-fadeInDown;
    animation-name: tm-fadeInDown;
}
@-webkit-keyframes tm-fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes tm-fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
.fadeInDownBig.animated {
    -webkit-animation-name: tm-fadeInDownBig;
    animation-name: tm-fadeInDownBig;
}
@-webkit-keyframes tm-fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-40px);
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes tm-fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-40px);
        -ms-transform: translateX(-40px);
        transform: translateX(-40px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}
.fadeInLeft.animated {
    -webkit-animation-name: tm-fadeInLeft;
    animation-name: tm-fadeInLeft;
}
@-webkit-keyframes tm-fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes tm-fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}
.fadeInLeftBig.animated {
    -webkit-animation-name: tm-fadeInLeftBig;
    animation-name: tm-fadeInLeftBig;
}
@-webkit-keyframes tm-fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(40px);
        transform: translateX(40px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes tm-fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(40px);
        -ms-transform: translateX(40px);
        transform: translateX(40px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}
.fadeInRight.animated {
    -webkit-animation-name: tm-fadeInRight;
    animation-name: tm-fadeInRight;
}
@-webkit-keyframes tm-fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes tm-fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}
.fadeInRightBig.animated {
    -webkit-animation-name: tm-fadeInRightBig;
    animation-name: tm-fadeInRightBig;
}
@-webkit-keyframes tm-fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes tm-fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -ms-transform: translateY(40px);
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
.fadeInUp.animated {
    -webkit-animation-name: tm-fadeInUp;
    animation-name: tm-fadeInUp;
}
@-webkit-keyframes tm-fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes tm-fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
.fadeInUpBig.animated {
    -webkit-animation-name: tm-fadeInUpBig;
    animation-name: tm-fadeInUpBig;
}
@-webkit-keyframes tm-fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes tm-fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
.fadeOut.animated {
    -webkit-animation-name: tm-fadeOut;
    animation-name: tm-fadeOut;
}
@-webkit-keyframes tm-fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }
}
@keyframes tm-fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        -ms-transform: translateY(20px);
        transform: translateY(20px);
    }
}
.fadeOutDown.animated {
    -webkit-animation-name: tm-fadeOutDown;
    animation-name: tm-fadeOutDown;
}
@-webkit-keyframes tm-fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}
@keyframes tm-fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        -ms-transform: translateY(2000px);
        transform: translateY(2000px);
    }
}
.fadeOutDownBig.animated {
    -webkit-animation-name: tm-fadeOutDownBig;
    animation-name: tm-fadeOutDownBig;
}
@-webkit-keyframes tm-fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}
@keyframes tm-fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        transform: translateX(-20px);
    }
}
.fadeOutLeft.animated {
    -webkit-animation-name: tm-fadeOutLeft;
    animation-name: tm-fadeOutLeft;
}
@-webkit-keyframes tm-fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}
@keyframes tm-fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}
.fadeOutLeftBig.animated {
    -webkit-animation-name: tm-fadeOutLeftBig;
    animation-name: tm-fadeOutLeftBig;
}
@-webkit-keyframes tm-fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px);
    }
}
@keyframes tm-fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        -ms-transform: translateX(20px);
        transform: translateX(20px);
    }
}
.fadeOutRight.animated {
    -webkit-animation-name: tm-fadeOutRight;
    animation-name: tm-fadeOutRight;
}
@-webkit-keyframes tm-fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}
@keyframes tm-fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}
.fadeOutRightBig.animated {
    -webkit-animation-name: tm-fadeOutRightBig;
    animation-name: tm-fadeOutRightBig;
}
@-webkit-keyframes tm-fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}
@keyframes tm-fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        transform: translateY(-20px);
    }
}
.fadeOutUp.animated {
    -webkit-animation-name: tm-fadeOutUp;
    animation-name: tm-fadeOutUp;
}
@-webkit-keyframes tm-fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}
@keyframes tm-fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}
.fadeOutUpBig.animated {
    -webkit-animation-name: tm-fadeOutUpBig;
    animation-name: tm-fadeOutUpBig;
}
@-webkit-keyframes tm-flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}
@keyframes tm-flip {
    0% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
    }
    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    80% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
    100% {
        -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
    }
}
.animated.flip {
    -webkit-backface-visibility: visible;
    -ms-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: tm-flip;
    animation-name: tm-flip;
}
@-webkit-keyframes tm-flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}
@keyframes tm-flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        -ms-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        -ms-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}
.flipInX.animated {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: tm-flipInX;
    animation-name: tm-flipInX;
}
@-webkit-keyframes tm-flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}
@keyframes tm-flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        -ms-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg);
    }
    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        -ms-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg);
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
}
.flipInY.animated {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: tm-flipInY;
    animation-name: tm-flipInY;
}
@-webkit-keyframes tm-flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}
@keyframes tm-flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        -ms-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        -ms-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}
.flipOutX.animated {
    -webkit-animation-name: tm-flipOutX;
    animation-name: tm-flipOutX;
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
}
@-webkit-keyframes tm-flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}
@keyframes tm-flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        -ms-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}
.flipOutY.animated {
    -webkit-backface-visibility: visible !important;
    -ms-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: tm-flipOutY;
    animation-name: tm-flipOutY;
}
@-webkit-keyframes tm-lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}
@keyframes tm-lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        -ms-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
    }
    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        -ms-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
}
.lightSpeedIn.animated {
    -webkit-animation-name: tm-lightSpeedIn;
    animation-name: tm-lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}
@-webkit-keyframes tm-lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}
@keyframes tm-lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        -ms-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        -ms-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
    }
}
.lightSpeedOut.animated {
    -webkit-animation-name: tm-lightSpeedOut;
    animation-name: tm-lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}
@-webkit-keyframes tm-rotateIn {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}
@keyframes tm-rotateIn {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        -ms-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}
.rotateIn.animated {
    -webkit-animation-name: tm-rotateIn;
    animation-name: tm-rotateIn;
}
@-webkit-keyframes tm-rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}
@keyframes tm-rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}
.rotateInDownLeft.animated {
    -webkit-animation-name: tm-rotateInDownLeft;
    animation-name: tm-rotateInDownLeft;
}
@-webkit-keyframes tm-rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}
@keyframes tm-rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}
.rotateInDownRight.animated {
    -webkit-animation-name: tm-rotateInDownRight;
    animation-name: tm-rotateInDownRight;
}
@-webkit-keyframes tm-rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}
@keyframes tm-rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}
.rotateInUpLeft.animated {
    -webkit-animation-name: tm-rotateInUpLeft;
    animation-name: tm-rotateInUpLeft;
}
@-webkit-keyframes tm-rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}
@keyframes tm-rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
}
.rotateInUpRight.animated {
    -webkit-animation-name: tm-rotateInUpRight;
    animation-name: tm-rotateInUpRight;
}
@-webkit-keyframes tm-rotateOut {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}
@keyframes tm-rotateOut {
    0% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: center center;
        -ms-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        -ms-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0;
    }
}
.rotateOut.animated {
    -webkit-animation-name: tm-rotateOut;
    animation-name: tm-rotateOut;
}
@-webkit-keyframes tm-rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}
@keyframes tm-rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}
.rotateOutDownLeft.animated {
    -webkit-animation-name: tm-rotateOutDownLeft;
    animation-name: tm-rotateOutDownLeft;
}
@-webkit-keyframes tm-rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}
@keyframes tm-rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}
.rotateOutDownRight.animated {
    -webkit-animation-name: tm-rotateOutDownRight;
    animation-name: tm-rotateOutDownRight;
}
@-webkit-keyframes tm-rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}
@keyframes tm-rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: left bottom;
        -ms-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0;
    }
}
.rotateOutUpLeft.animated {
    -webkit-animation-name: tm-rotateOutUpLeft;
    animation-name: tm-rotateOutUpLeft;
}
@-webkit-keyframes tm-rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}
@keyframes tm-rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        opacity: 1;
    }
    100% {
        -webkit-transform-origin: right bottom;
        -ms-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0;
    }
}
.rotateOutUpRight.animated {
    -webkit-animation-name: tm-rotateOutUpRight;
    animation-name: tm-rotateOutUpRight;
}
@-webkit-keyframes tm-slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}
@keyframes tm-slideInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
    100% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
}
.slideInDown.animated {
    -webkit-animation-name: tm-slideInDown;
    animation-name: tm-slideInDown;
}
@-webkit-keyframes tm-slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes tm-slideInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}
.slideInLeft.animated {
    -webkit-animation-name: tm-slideInLeft;
    animation-name: tm-slideInLeft;
}
@-webkit-keyframes tm-slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes tm-slideInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
    100% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
}
.slideInRight.animated {
    -webkit-animation-name: tm-slideInRight;
    animation-name: tm-slideInRight;
}
@-webkit-keyframes tm-slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}
@keyframes tm-slideOutLeft {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        -ms-transform: translateX(-2000px);
        transform: translateX(-2000px);
    }
}
.slideOutLeft.animated {
    -webkit-animation-name: tm-slideOutLeft;
    animation-name: tm-slideOutLeft;
}
@-webkit-keyframes tm-slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}
@keyframes tm-slideOutRight {
    0% {
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        -ms-transform: translateX(2000px);
        transform: translateX(2000px);
    }
}
.slideOutRight.animated {
    -webkit-animation-name: tm-slideOutRight;
    animation-name: tm-slideOutRight;
}
@-webkit-keyframes tm-slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}
@keyframes tm-slideOutUp {
    0% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        -ms-transform: translateY(-2000px);
        transform: translateY(-2000px);
    }
}
.slideOutUp.animated {
    -webkit-animation-name: tm-slideOutUp;
    animation-name: tm-slideOutUp;
}
@-webkit-keyframes tm-hinge {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%, 60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    100% {
        -webkit-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}
@keyframes tm-hinge {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    20%, 60% {
        -webkit-transform: rotate(80deg);
        -ms-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    40% {
        -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        -ms-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        -webkit-transform-origin: top left;
        -ms-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }
    100% {
        -webkit-transform: translateY(700px);
        -ms-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0;
    }
}
.hinge.animated {
    -webkit-animation-name: tm-hinge;
    animation-name: tm-hinge;
}
@-webkit-keyframes tm-rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}
@keyframes tm-rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        -ms-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
}
.rollIn.animated {
    -webkit-animation-name: tm-rollIn;
    animation-name: tm-rollIn;
}
@-webkit-keyframes tm-rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg);
    }
}
@keyframes tm-rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        -ms-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg);
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        -ms-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg);
    }
}
.rollOut.animated {
    -webkit-animation-name: tm-rollOut;
    animation-name: tm-rollOut;
}

.wow.zoomIn.animated {
	-webkit-animation-name: tm-pxl-zoom-in;
    animation-name: tm-pxl-zoom-in;
}
@keyframes tm-pxl-zoom-in {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.wow.zoomInSmall.animated {
	-webkit-animation-name: tm-pxl-zoom-in-small;
    animation-name: tm-pxl-zoom-in-small;
}
@keyframes tm-pxl-zoom-in-small {
  0% {
    transform: scale(0.67);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.wow.zoomOut.animated {
	-webkit-animation-name: tm-pxl-zoom-out;
    animation-name: tm-pxl-zoom-out;
}
@keyframes tm-pxl-zoom-out {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.wow.flipCase.animated {
	-webkit-animation-name: tm-pxl-flip-case;
    animation-name: tm-pxl-flip-case;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
}
@keyframes tm-pxl-flip-case {
    0% {
        transform: perspective(600px) rotateY(60deg) translate3d(-20px,40px,40px);
        opacity: 0;
    }
    100% {
        transform: perspective(0px) rotateY(0deg) translate3d(0,0px,0px);
        opacity: 1;
    }
}

.wow.skewIn.animated {
	-webkit-animation-name: tm-pxlSkewIn;
    animation-name:pxlSkewIn;
    -webkit-animation-fill-mode:both;
    animation-fill-mode:both;
    -webkit-animation-duration:.8s;
    animation-duration:.8s;
    -webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);
    animation-timing-function:cubic-bezier(.4,0,.2,1);
    will-change:transform;
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden
}
@-webkit-keyframes tm-pxlSkewIn{
    0%{
        -webkit-clip-path:inset(0 100% 0 0);
        clip-path:inset(0 100% 0 0);
        -webkit-transform:translateX(30px);
        transform:translateX(30px)
    }
    100%{
        -webkit-clip-path:inset(0 0 0 0);
        clip-path:inset(0 0 0 0);
        -webkit-transform:translateX(0);
        transform:translateX(0)
    }
}
@keyframes tm-pxlSkewIn {
    0%{
        -webkit-clip-path:inset(0 100% 0 0);
        clip-path:inset(0 100% 0 0);
        -webkit-transform:translateX(30px);
        transform:translateX(30px)
    }
    100%{
        -webkit-clip-path:inset(0 0 0 0);
        clip-path:inset(0 0 0 0);
        -webkit-transform:translateX(0);
        transform:translateX(0)
    }
}

.pxl-el-divider.wow.skewIn.animated, .pxl-post--line.wow.skewIn.animated {
    -webkit-animation-name: tm-pxlSkewInDivider;
    animation-name:pxlSkewInDivider;
}
@-webkit-keyframes tm-pxlSkewInDivider{
    0%{
        -webkit-clip-path:inset(0 100% 0 0);
        clip-path:inset(0 100% 0 0);
        -webkit-transform:translateX(0px);
        transform:translateX(0px)
    }
    100%{
        -webkit-clip-path:inset(0 0 0 0);
        clip-path:inset(0 0 0 0);
        -webkit-transform:translateX(0);
        transform:translateX(0)
    }
}
@keyframes tm-pxlSkewInDivider {
    0%{
        -webkit-clip-path:inset(0 100% 0 0);
        clip-path:inset(0 100% 0 0);
        -webkit-transform:translateX(0px);
        transform:translateX(0px)
    }
    100%{
        -webkit-clip-path:inset(0 0 0 0);
        clip-path:inset(0 0 0 0);
        -webkit-transform:translateX(0);
        transform:translateX(0)
    }
}

.wow.skewInRight.animated {
    -webkit-animation-name: tm-pxlSkewInRight;
    animation-name:pxlSkewInRight;
    -webkit-animation-fill-mode:both;
    animation-fill-mode:both;
    -webkit-animation-duration:.8s;
    animation-duration:.8s;
    -webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);
    animation-timing-function:cubic-bezier(.4,0,.2,1);
    will-change:transform;
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden
}
@-webkit-keyframes tm-pxlSkewInRight{
    0%{
        -webkit-clip-path:inset(0 0 0 100%);
        clip-path:inset(0 0 0 100%);
        -webkit-transform:translateX(30px);
        transform:translateX(30px)
    }
    100%{
        -webkit-clip-path:inset(0 0 0 0);
        clip-path:inset(0 0 0 0);
        -webkit-transform:translateX(0);
        transform:translateX(0)
    }
}
@keyframes tm-pxlSkewInRight {
    0%{
        -webkit-clip-path:inset(0 0 0 100%);
        clip-path:inset(0 0 0 100%);
        -webkit-transform:translateX(30px);
        transform:translateX(30px)
    }
    100%{
        -webkit-clip-path:inset(0 0 0 0);
        clip-path:inset(0 0 0 0);
        -webkit-transform:translateX(0);
        transform:translateX(0)
    }
}

.wow.RotatingY.animated {
	-webkit-animation-name: tm-RotatingY;
    animation-name: tm-RotatingY;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
}
@-webkit-keyframes tm-RotatingY{
    0%{
        opacity: 0;
        transform: perspective(500px) rotateX(-20deg);
        -webkit-transform: perspective(500px) rotateX(-20deg);
    }
    100%{
        opacity: 1;
        transform: perspective(500px) rotateX(0deg);
        -webkit-transform: perspective(500px) rotateX(0deg);
    }
}

.wow.PXLfadeInUp.animated {
	-webkit-animation-name: tm-PXLfadeInUp;
    animation-name: tm-PXLfadeInUp;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
}
@-webkit-keyframes tm-PXLfadeInUp {
    0%{
        opacity: 0;
        transform: translate3d(0px,45px,0px);
        -webkit-transform: translate3d(0px,45px,0px);
    }
    100%{
        opacity: 1;
        transform: translate3d(0px,0px,0px);
        -webkit-transform: translate3d(0px,0px,0px);
    }
}

.wow.PXLrotateIn.animated {
    -webkit-animation-name: tm-PXLrotateIn;
    animation-name: tm-PXLrotateIn;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
}
@-webkit-keyframes tm-PXLrotateIn {
    0%{
        transform: rotate(-90deg);
    }
    100%{
        transform: rotate(0deg);
    }
}

.wow.PXLrotateIn.pxl-invisible {
    -webkit-animation-name: tm-PXLrotateOut !important;
    animation-name: tm-PXLrotateOut !important;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
}

.wow.PXLrotateOut.animated {
    -webkit-animation-name: tm-PXLrotateOut;
    animation-name: tm-PXLrotateOut;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
}
@-webkit-keyframes tm-PXLrotateOut {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(90deg);
    }
}

.wow.pxl-invisible {
    animation-name: tm-none !important;
    visibility: visible
}

@-webkit-keyframes tm-PXLfadeInMove {
  0% {
    -webkit-transform: scale3d(0, 1, 1);
  }
  10% {
    -webkit-transform: scale3d(0.1, 1, 1);
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
  }
}
@keyframes tm-PXLfadeInMove {
  0% {
    transform: scale3d(0, 1, 1);
  }
  10% {
    transform: scale3d(0.1, 1, 1);
  }
  100% {
    transform: scale3d(1, 1, 1);
  }
}

.PXLfadeInMove {
    webkit-animation-name: tm-PXLfadeInMove;
    animation-name: tm-PXLfadeInMove;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    visibility: visible;
}

@-webkit-keyframes tm-PXLfadeOutMove {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
  }
  100% {
    -webkit-transform: scale3d(0, 1, 1);
  }
}
@keyframes tm-PXLfadeOutMove {
  0% {
    transform: scale3d(1, 1, 1);
  }
  100% {
    transform: scale3d(0, 1, 1);
  }
}

.PXLfadeOutMove {
    webkit-animation-name: tm-PXLfadeOutMove;
    animation-name: tm-PXLfadeOutMove;
    -webkit-animation-duration: 0.7s;
    animation-duration: 0.7s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    visibility: visible;
}

.pxl-hidden-panel-popup.active .fadeInPopup:not(.pxl-nav-menu),
.pxl-hidden-panel-popup.active .fadeInPopup .pxl-menu-primary > li {
    -webkit-animation-name: tm-fadeInPopup;
    animation-name: tm-fadeInPopup;
    -webkit-animation-duration: 0.6s;
    animation-duration: 0.6s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    visibility: visible;
}

.pxl-hidden-panel-popup .fadeInPopup .pxl-menu-primary > li {
    animation-delay: 0.5s;
}
.pxl-hidden-panel-popup .fadeInPopup .pxl-menu-primary > li:nth-child(2) {
    animation-delay: 0.6s;
}
.pxl-hidden-panel-popup .fadeInPopup .pxl-menu-primary > li:nth-child(3) {
    animation-delay: 0.7s;
}
.pxl-hidden-panel-popup .fadeInPopup .pxl-menu-primary > li:nth-child(4) {
    animation-delay: 0.8s;
}
.pxl-hidden-panel-popup .fadeInPopup .pxl-menu-primary > li:nth-child(5) {
    animation-delay: 0.9s;
}
.pxl-hidden-panel-popup .fadeInPopup .pxl-menu-primary > li:nth-child(6) {
    animation-delay: 1s;
}
.pxl-hidden-panel-popup .fadeInPopup .pxl-menu-primary > li:nth-child(7) {
    animation-delay: 1.1s;
}
.pxl-hidden-panel-popup .fadeInPopup .pxl-menu-primary > li:nth-child(8) {
    animation-delay: 1.2s;
}
.pxl-hidden-panel-popup .fadeInPopup .pxl-menu-primary > li:nth-child(9) {
    animation-delay: 1.3s;
}

.wow.skewInBottom.animated {
    -webkit-animation-name: tm-skewInBottom;
    animation-name: tm-skewInBottom;
    -webkit-animation-fill-mode:both;
    animation-fill-mode:both;
    -webkit-animation-duration:.8s;
    animation-duration:.8s;
    -webkit-animation-timing-function:cubic-bezier(.4,0,.2,1);
    animation-timing-function:cubic-bezier(.4,0,.2,1);
    will-change:transform;
    -webkit-backface-visibility:hidden;
    backface-visibility:hidden
}

.pxl-hidden-panel-popup .wow.aniOut, .pxl-hidden-panel-popup .fadeInPopup.aniOut {
    animation-name: tm-none !important;
    animation-delay: 0ms !important;
    opacity: 0 !important;
    transition: all 300ms linear 0ms;
    transition-delay: 300ms;
}

@keyframes tm-skewInTop {
    0%{
        -webkit-clip-path:inset(100% 0 0 0);
        clip-path:inset(100% 0 0 0);
        -webkit-transform:translateY(30px);
        transform:translateY(30px)
    }
    100%{
        -webkit-clip-path:inset(0 0 0 0);
        clip-path:inset(0 0 0 0);
        -webkit-transform:translateY(0);
        transform:translateY(0)
    }
}


@keyframes tm-skewInBottom {
    0%{
        -webkit-clip-path:inset(0 0 100% 0);
        clip-path:inset(0 0 100% 0);
        -webkit-transform:translateY(-30px);
        transform:translateY(-30px)
    }
    100%{
        -webkit-clip-path:inset(0 0 0 0);
        clip-path:inset(0 0 0 0);
        -webkit-transform:translateY(0);
        transform:translateY(0)
    }
}

@-webkit-keyframes tm-fadeInPopup {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes tm-fadeInPopup {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes tm-pxlFullwidth {
    0%{

        width: 0;
    }
    100%{
        width: 100%;
    }
}

.wow.pxlFullwidth.animated {
    -webkit-animation-name: tm-pxlFullwidth;
    animation-name: tm-pxlFullwidth;
}

@keyframes tm-pxlFullheight {
    0%{

        height: 0;
    }
    100%{
        height: 100%;
    }
}

.wow.pxlFullheight.animated {
    -webkit-animation-name: tm-pxlFullheight;
    animation-name: tm-pxlFullheight;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
}
@font-face {
  font-family: 'linearicons-free';
  src:  url("/wp-content/themes/solarixia/assets/fonts/linear-icons/fonts/linearicons-free.eot?273577");
  src:  url("/wp-content/themes/solarixia/assets/fonts/linear-icons/fonts/linearicons-free.eot?273577#iefix") format('embedded-opentype'),
    url("/wp-content/themes/solarixia/assets/fonts/linear-icons/fonts/linearicons-free.ttf?273577") format('truetype'),
    url("/wp-content/themes/solarixia/assets/fonts/linear-icons/fonts/linearicons-free.woff?273577") format('woff'),
    url("/wp-content/themes/solarixia/assets/fonts/linear-icons/fonts/linearicons-free.svg?273577#linearicons-free") format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

[class^="lnr-icon-"], [class*=" lnr-icon-"] {
  font-family: 'linearicons-free' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.lnr-icon-comments:before {
  content: "\e035";
}
.lnr-icon-quote:before {
  content: "\e052";
}
.lnr-icon-spinner:before {
  content: "\e05a";
}
.lnr-icon-truck:before {
  content: "\e065";
}
.lnr-icon-sync:before {
  content: "\e862";
}
.lnr-icon-cart:before {
  content: "\e003";
}
.lnr-icon-close:before {
  content: "\e005";
}
.lnr-icon-copy:before {
  content: "\e007";
}
.lnr-icon-dropdown:before {
  content: "\e00a";
}
.lnr-icon-favourite:before {
  content: "\e00c";
}
.lnr-icon-search:before {
  content: "\e01d";
}
.lnr-icon-user:before {
  content: "\e023";
}
.lnr-icon-arrow-left:before {
  content: "\e029";
}
.lnr-icon-arrow-right:before {
  content: "\e02a";
}
.lnr-icon-bars:before {
  content: "\e02b";
}
.lnr-icon-envelope:before {
  content: "\e037";
}
.lnr-icon-external-link-alt:before {
  content: "\e039";
}
.lnr-icon-file-alt:before {
  content: "\e03b";
}
.lnr-icon-gift:before {
  content: "\e040";
}
.lnr-icon-heart-fill:before {
  content: "\e042";
}
.lnr-icon-heart:before {
  content: "\e043";
}
.lnr-icon-home:before {
  content: "\e044";
}
.lnr-icon-map-marker-check:before {
  content: "\e04c";
}
.lnr-icon-minus:before {
  content: "\e04e";
}
.lnr-icon-plus:before {
  content: "\e051";
}
.lnr-icon-shopping-cart:before {
  content: "\e057";
}
.lnr-icon-times:before {
  content: "\e064";
}
.lnr-icon-cog:before {
  content: "\e810";
}
.lnr-icon-star:before {
  content: "\e814";
}
.lnr-icon-star-half:before {
  content: "\e815";
}
.lnr-icon-star-empty:before {
  content: "\e816";
}
.lnr-icon-cart1:before {
  content: "\e82e";
}
.lnr-icon-phone-handset:before {
  content: "\e830";
}
.lnr-icon-phone:before {
  content: "\e831";
}
.lnr-icon-map-marker:before {
  content: "\e833";
}
.lnr-icon-map:before {
  content: "\e834";
}
.lnr-icon-rocket:before {
  content: "\e84b";
}
.lnr-icon-magnifier:before {
  content: "\e86f";
}
.lnr-icon-cross:before {
  content: "\e870";
}
.lnr-icon-chevron-up:before {
  content: "\e873";
}
.lnr-icon-chevron-down:before {
  content: "\e874";
}
.lnr-icon-chevron-left:before {
  content: "\e875";
}
.lnr-icon-chevron-right:before {
  content: "\e876";
}
.lnr-icon-arrow-up:before {
  content: "\e877";
}
.lnr-icon-arrow-down:before {
  content: "\e878";
}
.lnr-icon-arrow-left1:before {
  content: "\e879";
}
.lnr-icon-arrow-right1:before {
  content: "\e87a";
}
.lnr-icon-arrow-up-circle:before {
  content: "\e883";
}
.lnr-icon-arrow-down-circle:before {
  content: "\e884";
}
.lnr-icon-chevron-up-circle:before {
  content: "\e887";
}
.lnr-icon-chevron-down-circle:before {
  content: "\e888";
}
.lnr-icon-text-align-justify:before {
  content: "\e89b";
}
.lnr-icon-sort-amount-asc:before {
  content: "\e8a4";
}

@font-face {
  font-family: 'mascot-arrow';
  src:  url('/wp-content/themes/solarixia/assets/fonts/mascot-arrow/fonts/mascot-arrow.eot?u5i1zo');
  src:  url('/wp-content/themes/solarixia/assets/fonts/mascot-arrow/fonts/mascot-arrow.eot?u5i1zo#iefix') format('embedded-opentype'),
    url('/wp-content/themes/solarixia/assets/fonts/mascot-arrow/fonts/mascot-arrow.ttf?u5i1zo') format('truetype'),
    url('/wp-content/themes/solarixia/assets/fonts/mascot-arrow/fonts/mascot-arrow.woff?u5i1zo') format('woff'),
    url('/wp-content/themes/solarixia/assets/fonts/mascot-arrow/fonts/mascot-arrow.svg?u5i1zo#mascot-arrow') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="mascot-arrow-"], [class*=" mascot-arrow-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'mascot-arrow' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.mascot-arrow-double:before {
  content: "\f150";
}
.mascot-arrow-double2:before {
  content: "\f13d";
}
.mascot-arrow-three:before {
  content: "\f14b";
}
.mascot-arrow-up4:before {
  content: "\f144";
}
.mascot-arrow-circle-up:before {
  content: "\f110";
}
.mascot-arrow-circle-right:before {
  content: "\f129";
}
.mascot-arrow-triangle-right:before {
  content: "\f12d";
}
.mascot-arrow-down4:before {
  content: "\f15a";
}
.mascot-arrow-triangle-up:before {
  content: "\f111";
}
.mascot-arrow-triangle-left:before {
  content: "\f148";
}
.mascot-arrow-swap:before {
  content: "\f14f";
}
.mascot-arrow-left4:before {
  content: "\f145";
}
.mascot-arrow-refresh:before {
  content: "\f131";
}
.mascot-arrow-right4:before {
  content: "\f126";
}
.mascot-arrow-left-right2:before {
  content: "\f13f";
}
.mascot-arrow-triangle-down:before {
  content: "\f15d";
}
.mascot-arrow-uniF164:before {
  content: "\f164";
}
.mascot-arrow-circle-down:before {
  content: "\f15e";
}
.mascot-arrow-circle-left:before {
  content: "\f149";
}
.mascot-arrow-down-left:before {
  content: "\f100";
}
.mascot-arrow-down-right:before {
  content: "\f101";
}
.mascot-arrow-down:before {
  content: "\f102";
}
.mascot-arrow-left:before {
  content: "\f103";
}
.mascot-arrow-right:before {
  content: "\f104";
}
.mascot-arrow-upper-left:before {
  content: "\f109";
}
.mascot-arrow-upper-right:before {
  content: "\f10a";
}
.mascot-arrow-upper:before {
  content: "\f10b";
}
.mascot-arrow-chevron-down:before {
  content: "\f116";
}
.mascot-arrow-chevron-left:before {
  content: "\f117";
}
.mascot-arrow-chevron-right:before {
  content: "\f118";
}
.mascot-arrow-chevron-upper-left:before {
  content: "\f119";
}
.mascot-arrow-chevron-upper-right:before {
  content: "\f11a";
}
.mascot-arrow-chevron-upper:before {
  content: "\f11b";
}
.mascot-arrow-chevron-double-down:before {
  content: "\f11e";
}
.mascot-arrow-chevron-double-left:before {
  content: "\f11f";
}
.mascot-arrow-chevron-double-right:before {
  content: "\f120";
}
.mascot-arrow-chevron-double-upperleft:before {
  content: "\f121";
}
.mascot-arrow-chevron-double-upperright:before {
  content: "\f122";
}
.mascot-arrow-chevron-double-up:before {
  content: "\f123";
}
.mascot-arrow-swap1:before {
  content: "\f140";
}
.mascot-arrow-swap2:before {
  content: "\f147";
}
.mascot-arrow-turn:before {
  content: "\f105";
}
.mascot-arrow-upper-left2:before {
  content: "\f106";
}
.mascot-arrow-5010644:before {
  content: "\f107";
}
.mascot-arrow-down-right2:before {
  content: "\f108";
}
.mascot-arrow-upper-right2:before {
  content: "\f10c";
}
.mascot-arrow-down2:before {
  content: "\f10d";
}
.mascot-arrow-download1:before {
  content: "\f10e";
}
.mascot-arrow-download2:before {
  content: "\f10f";
}
.mascot-arrow-left-right:before {
  content: "\f112";
}
.mascot-arrow-right-long:before {
  content: "\f11c";
}
.mascot-arrow-left-long:before {
  content: "\f11d";
}
.mascot-arrow-right-short:before {
  content: "\f175";
}
.mascot-arrow-chevron-up3:before {
  content: "\f115";
}
.mascot-arrow-left-short:before {
  content: "\f178";
}
.mascot-arrow-uniF176:before {
  content: "\f176";
}
.mascot-arrow-chevron-left3:before {
  content: "\f143";
}
.mascot-arrow-chevron-right3:before {
  content: "\f125";
}
.mascot-arrow-down-short:before {
  content: "\f17b";
}
.mascot-arrow-right-down2:before {
  content: "\f177";
}
.mascot-arrow-uniF159:before {
  content: "\f159";
}
.mascot-arrow-uniF152:before {
  content: "\f152";
}
.mascot-arrow-up-left3:before {
  content: "\f179";
}
.mascot-arrow-up-short:before {
  content: "\f174";
}
.mascot-arrow-right-left2:before {
  content: "\f17a";
}
.mascot-arrow-up-right2:before {
  content: "\f128";
}
.mascot-arrow-chevron-right2:before {
  content: "\f192";
}
.mascot-arrow-left-short2:before {
  content: "\f12a";
}
.mascot-arrow-right-down:before {
  content: "\f14c";
}
.mascot-arrow-down-short2:before {
  content: "\f1a4";
}
.mascot-arrow-chevron-left2:before {
  content: "\f12b";
}
.mascot-arrow-chevron-double-right2:before {
  content: "\f162";
}
.mascot-arrow-up-left:before {
  content: "\f12c";
}
.mascot-arrow-chevron-down2:before {
  content: "\f12e";
}
.mascot-arrow-right-left:before {
  content: "\f12f";
}
.mascot-arrow-right-short2:before {
  content: "\f130";
}
.mascot-arrow-up-short2:before {
  content: "\f1a6";
}

@font-face {
    font-family: 'GT Walsheim Pro';
    src: url('/wp-content/themes/solarixia/assets/fonts/GTWalsheimPro/GTWalsheimPro-Regular.eot');
    src: url('/wp-content/themes/solarixia/assets/fonts/GTWalsheimPro/GTWalsheimPro-Regular.eot?#iefix') format('embedded-opentype'),
        url('/wp-content/themes/solarixia/assets/fonts/GTWalsheimPro/GTWalsheimPro-Regular.woff2') format('woff2'),
        url('/wp-content/themes/solarixia/assets/fonts/GTWalsheimPro/GTWalsheimPro-Regular.woff') format('woff'),
        url('/wp-content/themes/solarixia/assets/fonts/GTWalsheimPro/GTWalsheimPro-Regular.ttf') format('truetype'),
        url('/wp-content/themes/solarixia/assets/fonts/GTWalsheimPro/GTWalsheimPro-Regular.svg#GTWalsheimPro-Regular') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT Walsheim Pro';
    src: url('/wp-content/themes/solarixia/assets/fonts/GTWalsheimPro/GTWalsheimPro-Medium.eot');
    src: url('/wp-content/themes/solarixia/assets/fonts/GTWalsheimPro/GTWalsheimPro-Medium.eot?#iefix') format('embedded-opentype'),
        url('/wp-content/themes/solarixia/assets/fonts/GTWalsheimPro/GTWalsheimPro-Medium.woff2') format('woff2'),
        url('/wp-content/themes/solarixia/assets/fonts/GTWalsheimPro/GTWalsheimPro-Medium.woff') format('woff'),
        url('/wp-content/themes/solarixia/assets/fonts/GTWalsheimPro/GTWalsheimPro-Medium.ttf') format('truetype'),
        url('/wp-content/themes/solarixia/assets/fonts/GTWalsheimPro/GTWalsheimPro-Medium.svg#GTWalsheimPro-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'GT Walsheim Pro';
    src: url('/wp-content/themes/solarixia/assets/fonts/GTWalsheimPro/GTWalsheimPro-Bold.eot');
    src: url('/wp-content/themes/solarixia/assets/fonts/GTWalsheimPro/GTWalsheimPro-Bold.eot?#iefix') format('embedded-opentype'),
        url('/wp-content/themes/solarixia/assets/fonts/GTWalsheimPro/GTWalsheimPro-Bold.woff2') format('woff2'),
        url('/wp-content/themes/solarixia/assets/fonts/GTWalsheimPro/GTWalsheimPro-Bold.woff') format('woff'),
        url('/wp-content/themes/solarixia/assets/fonts/GTWalsheimPro/GTWalsheimPro-Bold.ttf') format('truetype'),
        url('/wp-content/themes/solarixia/assets/fonts/GTWalsheimPro/GTWalsheimPro-Bold.svg#GTWalsheimPro-Bold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: flex;
  align-items: center;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 20px;
  padding-right: 38px;
  position: relative;


  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: auto; }



  .nice-select:hover {
    border-color: #dbdbdb; }
  .nice-select:active, .nice-select.open, .nice-select:focus {
    border-color: #999; }
  .nice-select:after {
    border-bottom: 2px solid #999;
    border-right: 2px solid #999;
    content: '';
    display: block;
    height: 5px;
    margin-top: -4px;
    pointer-events: none;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform-origin: 66% 66%;
        -ms-transform-origin: 66% 66%;
            transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 5px; }
  .nice-select.open:after {
    -webkit-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
            transform: rotate(-135deg); }
  .nice-select.open .list {
    opacity: 1;
    padding-left: 0!important;
    pointer-events: auto;
    -webkit-transform: scale(1) translateY(0);
        -ms-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0); }
  .nice-select.disabled {
    border-color: #ededed;
    color: #999;
    pointer-events: none; }
    .nice-select.disabled:after {
      border-color: #cccccc; }
  .nice-select.wide {
    width: 100%; }
    .nice-select.wide .list {
      left: 0 !important;
      right: 0 !important; }
  .nice-select.right {
    float: right; }
    .nice-select.right .list {
      left: auto;
      right: 0; }
  .nice-select.small {
    font-size: 12px;
    height: 36px;
    line-height: 34px; }
    .nice-select.small:after {
      height: 4px;
      width: 4px; }
    .nice-select.small .option {
      line-height: 34px;
      min-height: 34px; }
  .nice-select .list {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
    box-sizing: border-box;
    margin-top: 4px;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
    -webkit-transform: scale(0.75) translateY(-21px);
        -ms-transform: scale(0.75) translateY(-21px);
            transform: scale(0.75) translateY(-21px);
    -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
    z-index: 9; }
    .nice-select .list:hover .option:not(:hover) {
      background-color: transparent !important; }
  .nice-select .option {
    color: #222 !important;
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: none;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s; }
    .nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
      background-color: #f6f6f6; }
    .nice-select .option.selected {
      font-weight: bold; }
    .nice-select .option.disabled {
      background-color: transparent;
      color: #999;
      cursor: default; }

.no-csspointerevents .nice-select .list {
  display: none; }

.no-csspointerevents .nice-select.open .list {
  display: block; }
.nice-select span.current {
  color: #222 !important;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nice-select .list li:before{
  display: none;
}
.nice-select .list > li {
  padding-left: 14px !important;
}
:root{--direction-multiplier:1}body.rtl,html[dir=rtl]{--direction-multiplier:-1}.elementor-hidden{display:none}.elementor-visibility-hidden{visibility:hidden}.elementor-screen-only,.screen-reader-text,.screen-reader-text span,.ui-helper-hidden-accessible{height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;top:-10000em;width:1px;clip:rect(0,0,0,0);border:0}.elementor-clearfix:after{clear:both;content:"";display:block;height:0;width:0}.e-logo-wrapper{display:inline-block;line-height:1}.e-logo-wrapper i{color:var(--e-a-color-circle-logo);font-size:2.5em}.elementor *,.elementor :after,.elementor :before{box-sizing:border-box}.elementor a{box-shadow:none;text-decoration:none}.elementor hr{background-color:transparent;margin:0}.elementor img{border:none;border-radius:0;box-shadow:none;height:auto;max-width:100%}.elementor .elementor-widget:not(.elementor-widget-text-editor):not(.elementor-widget-theme-post-content) figure{margin:0}.elementor embed,.elementor iframe,.elementor object,.elementor video{border:none;line-height:1;margin:0;max-width:100%;width:100%}.elementor .elementor-background,.elementor .elementor-background-holder,.elementor .elementor-background-video-container{direction:ltr;inset:0;overflow:hidden;position:absolute;z-index:0}.elementor .elementor-background-video-container{pointer-events:none;transition:opacity 1s}.elementor .elementor-background-video-container.elementor-loading{opacity:0}.elementor .elementor-background-video,.elementor .elementor-background-video-embed{max-width:none}.elementor .elementor-background-video,.elementor .elementor-background-video-embed,.elementor .elementor-background-video-hosted{inset-block-start:50%;inset-inline-start:50%;position:absolute;transform:translate(-50%,-50%)}.elementor .elementor-background-video-hosted{-o-object-fit:cover;object-fit:cover}.elementor .elementor-background-overlay{inset:0;position:absolute}.elementor .elementor-background-slideshow{inset:0;position:absolute;z-index:0}.elementor .elementor-background-slideshow__slide__image{background-position:50%;background-size:cover;height:100%;width:100%}.e-con-inner>.elementor-element.elementor-absolute,.e-con>.elementor-element.elementor-absolute,.elementor-widget-wrap>.elementor-element.elementor-absolute{position:absolute}.e-con-inner>.elementor-element.elementor-fixed,.e-con>.elementor-element.elementor-fixed,.elementor-widget-wrap>.elementor-element.elementor-fixed{position:fixed}.elementor-widget-wrap .elementor-element.elementor-widget__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget__width-initial{max-width:100%}@media (max-width:1024px){.elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget-tablet__width-initial{max-width:100%}}@media (max-width:767px){.elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-auto,.elementor-widget-wrap .elementor-element.elementor-widget-mobile__width-initial{max-width:100%}}.elementor-element.elementor-absolute,.elementor-element.elementor-fixed{z-index:1}.elementor-element{--flex-direction:initial;--flex-wrap:initial;--justify-content:initial;--align-items:initial;--align-content:initial;--gap:initial;--flex-basis:initial;--flex-grow:initial;--flex-shrink:initial;--order:initial;--align-self:initial;align-self:var(--align-self);flex-basis:var(--flex-basis);flex-grow:var(--flex-grow);flex-shrink:var(--flex-shrink);order:var(--order)}.elementor-element:where(.e-con-full,.elementor-widget){align-content:var(--align-content);align-items:var(--align-items);flex-direction:var(--flex-direction);flex-wrap:var(--flex-wrap);gap:var(--row-gap) var(--column-gap);justify-content:var(--justify-content)}.elementor-invisible{visibility:hidden}.elementor-custom-embed-play{inset-block-start:50%;inset-inline-start:50%;position:absolute;transform:translate(calc(-50% * var(--direction-multiplier)),-50%)}.elementor-custom-embed-play i{color:#fff;font-size:100px;text-shadow:1px 0 6px rgba(0,0,0,.3)}.elementor-custom-embed-play svg{fill:#fff;filter:drop-shadow(1px 0 6px rgba(0,0,0,.3));height:100px;width:100px}.elementor-custom-embed-play i,.elementor-custom-embed-play svg{opacity:.8;transition:all .5s}.elementor-custom-embed-play.elementor-playing i{font-family:eicons}.elementor-custom-embed-play.elementor-playing i:before{content:"\e8fb"}.elementor-custom-embed-play.elementor-playing i,.elementor-custom-embed-play.elementor-playing svg{animation:eicon-spin 2s linear infinite}.elementor-tag{display:inline-flex}.elementor-ken-burns{transition-duration:10s;transition-property:transform;transition-timing-function:linear}.elementor-ken-burns--out{transform:scale(1.3)}.elementor-ken-burns--active{transition-duration:20s}.elementor-ken-burns--active.elementor-ken-burns--out{transform:scale(1)}.elementor-ken-burns--active.elementor-ken-burns--in{transform:scale(1.3)}.elementor-align-center{text-align:center}.elementor-align-right{text-align:right}.elementor-align-left{text-align:left}.elementor-align-center .elementor-button,.elementor-align-left .elementor-button,.elementor-align-right .elementor-button{width:auto}.elementor-align-justify .elementor-button{width:100%}@media (min-width:-1){.elementor-widescreen-align-center{text-align:center}.elementor-widescreen-align-right{text-align:right}.elementor-widescreen-align-left{text-align:left}.elementor-widescreen-align-center .elementor-button,.elementor-widescreen-align-left .elementor-button,.elementor-widescreen-align-right .elementor-button{width:auto}.elementor-widescreen-align-justify .elementor-button{width:100%}}@media (max-width:-1){.elementor-laptop-align-center{text-align:center}.elementor-laptop-align-right{text-align:right}.elementor-laptop-align-left{text-align:left}.elementor-laptop-align-center .elementor-button,.elementor-laptop-align-left .elementor-button,.elementor-laptop-align-right .elementor-button{width:auto}.elementor-laptop-align-justify .elementor-button{width:100%}.elementor-tablet_extra-align-center{text-align:center}.elementor-tablet_extra-align-right{text-align:right}.elementor-tablet_extra-align-left{text-align:left}.elementor-tablet_extra-align-center .elementor-button,.elementor-tablet_extra-align-left .elementor-button,.elementor-tablet_extra-align-right .elementor-button{width:auto}.elementor-tablet_extra-align-justify .elementor-button{width:100%}}@media (max-width:1024px){.elementor-tablet-align-center{text-align:center}.elementor-tablet-align-right{text-align:right}.elementor-tablet-align-left{text-align:left}.elementor-tablet-align-center .elementor-button,.elementor-tablet-align-left .elementor-button,.elementor-tablet-align-right .elementor-button{width:auto}.elementor-tablet-align-justify .elementor-button{width:100%}}@media (max-width:-1){.elementor-mobile_extra-align-center{text-align:center}.elementor-mobile_extra-align-right{text-align:right}.elementor-mobile_extra-align-left{text-align:left}.elementor-mobile_extra-align-center .elementor-button,.elementor-mobile_extra-align-left .elementor-button,.elementor-mobile_extra-align-right .elementor-button{width:auto}.elementor-mobile_extra-align-justify .elementor-button{width:100%}}@media (max-width:767px){.elementor-mobile-align-center{text-align:center}.elementor-mobile-align-right{text-align:right}.elementor-mobile-align-left{text-align:left}.elementor-mobile-align-center .elementor-button,.elementor-mobile-align-left .elementor-button,.elementor-mobile-align-right .elementor-button{width:auto}.elementor-mobile-align-justify .elementor-button{width:100%}}:root{--page-title-display:block}.elementor-page-title,h1.entry-title{display:var(--page-title-display)}@keyframes eicon-spin{0%{transform:rotate(0deg)}to{transform:rotate(359deg)}}.eicon-animation-spin{animation:eicon-spin 2s linear infinite}.elementor-section{position:relative}.elementor-section .elementor-container{display:flex;margin-inline:auto;position:relative}@media (max-width:1024px){.elementor-section .elementor-container{flex-wrap:wrap}}.elementor-section.elementor-section-boxed>.elementor-container{max-width:1140px}.elementor-section.elementor-section-stretched{position:relative;width:100%}.elementor-section.elementor-section-items-top>.elementor-container{align-items:flex-start}.elementor-section.elementor-section-items-middle>.elementor-container{align-items:center}.elementor-section.elementor-section-items-bottom>.elementor-container{align-items:flex-end}@media (min-width:768px){.elementor-section.elementor-section-height-full{height:100vh}.elementor-section.elementor-section-height-full>.elementor-container{height:100%}}.elementor-bc-flex-widget .elementor-section-content-top>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:flex-start}.elementor-bc-flex-widget .elementor-section-content-middle>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:center}.elementor-bc-flex-widget .elementor-section-content-bottom>.elementor-container>.elementor-column>.elementor-widget-wrap{align-items:flex-end}.elementor-widget-wrap{align-content:flex-start;flex-wrap:wrap;position:relative;width:100%}.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap{display:flex}.elementor-widget-wrap>.elementor-element{width:100%}.elementor-widget-wrap.e-swiper-container{width:calc(100% - (var(--e-column-margin-left, 0px) + var(--e-column-margin-right, 0px)))}.elementor-widget{position:relative}.elementor-widget:not(:last-child){margin-block-end:var(--kit-widget-spacing,20px)}.elementor-widget:not(:last-child).elementor-absolute,.elementor-widget:not(:last-child).elementor-widget__width-auto,.elementor-widget:not(:last-child).elementor-widget__width-initial{margin-block-end:0}.elementor-column{display:flex;min-height:1px;position:relative}.elementor-column-gap-narrow>.elementor-column>.elementor-element-populated{padding:5px}.elementor-column-gap-default>.elementor-column>.elementor-element-populated{padding:10px}.elementor-column-gap-extended>.elementor-column>.elementor-element-populated{padding:15px}.elementor-column-gap-wide>.elementor-column>.elementor-element-populated{padding:20px}.elementor-column-gap-wider>.elementor-column>.elementor-element-populated{padding:30px}.elementor-inner-section .elementor-column-gap-no .elementor-element-populated{padding:0}@media (min-width:768px){.elementor-column.elementor-col-10,.elementor-column[data-col="10"]{width:10%}.elementor-column.elementor-col-11,.elementor-column[data-col="11"]{width:11.111%}.elementor-column.elementor-col-12,.elementor-column[data-col="12"]{width:12.5%}.elementor-column.elementor-col-14,.elementor-column[data-col="14"]{width:14.285%}.elementor-column.elementor-col-16,.elementor-column[data-col="16"]{width:16.666%}.elementor-column.elementor-col-20,.elementor-column[data-col="20"]{width:20%}.elementor-column.elementor-col-25,.elementor-column[data-col="25"]{width:25%}.elementor-column.elementor-col-30,.elementor-column[data-col="30"]{width:30%}.elementor-column.elementor-col-33,.elementor-column[data-col="33"]{width:33.333%}.elementor-column.elementor-col-40,.elementor-column[data-col="40"]{width:40%}.elementor-column.elementor-col-50,.elementor-column[data-col="50"]{width:50%}.elementor-column.elementor-col-60,.elementor-column[data-col="60"]{width:60%}.elementor-column.elementor-col-66,.elementor-column[data-col="66"]{width:66.666%}.elementor-column.elementor-col-70,.elementor-column[data-col="70"]{width:70%}.elementor-column.elementor-col-75,.elementor-column[data-col="75"]{width:75%}.elementor-column.elementor-col-80,.elementor-column[data-col="80"]{width:80%}.elementor-column.elementor-col-83,.elementor-column[data-col="83"]{width:83.333%}.elementor-column.elementor-col-90,.elementor-column[data-col="90"]{width:90%}.elementor-column.elementor-col-100,.elementor-column[data-col="100"]{width:100%}}@media (max-width:479px){.elementor-column.elementor-xs-10{width:10%}.elementor-column.elementor-xs-11{width:11.111%}.elementor-column.elementor-xs-12{width:12.5%}.elementor-column.elementor-xs-14{width:14.285%}.elementor-column.elementor-xs-16{width:16.666%}.elementor-column.elementor-xs-20{width:20%}.elementor-column.elementor-xs-25{width:25%}.elementor-column.elementor-xs-30{width:30%}.elementor-column.elementor-xs-33{width:33.333%}.elementor-column.elementor-xs-40{width:40%}.elementor-column.elementor-xs-50{width:50%}.elementor-column.elementor-xs-60{width:60%}.elementor-column.elementor-xs-66{width:66.666%}.elementor-column.elementor-xs-70{width:70%}.elementor-column.elementor-xs-75{width:75%}.elementor-column.elementor-xs-80{width:80%}.elementor-column.elementor-xs-83{width:83.333%}.elementor-column.elementor-xs-90{width:90%}.elementor-column.elementor-xs-100{width:100%}}@media (max-width:767px){.elementor-column.elementor-sm-10{width:10%}.elementor-column.elementor-sm-11{width:11.111%}.elementor-column.elementor-sm-12{width:12.5%}.elementor-column.elementor-sm-14{width:14.285%}.elementor-column.elementor-sm-16{width:16.666%}.elementor-column.elementor-sm-20{width:20%}.elementor-column.elementor-sm-25{width:25%}.elementor-column.elementor-sm-30{width:30%}.elementor-column.elementor-sm-33{width:33.333%}.elementor-column.elementor-sm-40{width:40%}.elementor-column.elementor-sm-50{width:50%}.elementor-column.elementor-sm-60{width:60%}.elementor-column.elementor-sm-66{width:66.666%}.elementor-column.elementor-sm-70{width:70%}.elementor-column.elementor-sm-75{width:75%}.elementor-column.elementor-sm-80{width:80%}.elementor-column.elementor-sm-83{width:83.333%}.elementor-column.elementor-sm-90{width:90%}.elementor-column.elementor-sm-100{width:100%}}@media (min-width:768px) and (max-width:1024px){.elementor-column.elementor-md-10{width:10%}.elementor-column.elementor-md-11{width:11.111%}.elementor-column.elementor-md-12{width:12.5%}.elementor-column.elementor-md-14{width:14.285%}.elementor-column.elementor-md-16{width:16.666%}.elementor-column.elementor-md-20{width:20%}.elementor-column.elementor-md-25{width:25%}.elementor-column.elementor-md-30{width:30%}.elementor-column.elementor-md-33{width:33.333%}.elementor-column.elementor-md-40{width:40%}.elementor-column.elementor-md-50{width:50%}.elementor-column.elementor-md-60{width:60%}.elementor-column.elementor-md-66{width:66.666%}.elementor-column.elementor-md-70{width:70%}.elementor-column.elementor-md-75{width:75%}.elementor-column.elementor-md-80{width:80%}.elementor-column.elementor-md-83{width:83.333%}.elementor-column.elementor-md-90{width:90%}.elementor-column.elementor-md-100{width:100%}}@media (min-width:-1){.elementor-reverse-widescreen>.elementor-container>:first-child{order:10}.elementor-reverse-widescreen>.elementor-container>:nth-child(2){order:9}.elementor-reverse-widescreen>.elementor-container>:nth-child(3){order:8}.elementor-reverse-widescreen>.elementor-container>:nth-child(4){order:7}.elementor-reverse-widescreen>.elementor-container>:nth-child(5){order:6}.elementor-reverse-widescreen>.elementor-container>:nth-child(6){order:5}.elementor-reverse-widescreen>.elementor-container>:nth-child(7){order:4}.elementor-reverse-widescreen>.elementor-container>:nth-child(8){order:3}.elementor-reverse-widescreen>.elementor-container>:nth-child(9){order:2}.elementor-reverse-widescreen>.elementor-container>:nth-child(10){order:1}}@media (min-width:1025px) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child{order:10}.elementor-reverse-laptop>.elementor-container>:nth-child(2){order:9}.elementor-reverse-laptop>.elementor-container>:nth-child(3){order:8}.elementor-reverse-laptop>.elementor-container>:nth-child(4){order:7}.elementor-reverse-laptop>.elementor-container>:nth-child(5){order:6}.elementor-reverse-laptop>.elementor-container>:nth-child(6){order:5}.elementor-reverse-laptop>.elementor-container>:nth-child(7){order:4}.elementor-reverse-laptop>.elementor-container>:nth-child(8){order:3}.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:2}.elementor-reverse-laptop>.elementor-container>:nth-child(10){order:1}}@media (min-width:-1) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child{order:10}.elementor-reverse-laptop>.elementor-container>:nth-child(2){order:9}.elementor-reverse-laptop>.elementor-container>:nth-child(3){order:8}.elementor-reverse-laptop>.elementor-container>:nth-child(4){order:7}.elementor-reverse-laptop>.elementor-container>:nth-child(5){order:6}.elementor-reverse-laptop>.elementor-container>:nth-child(6){order:5}.elementor-reverse-laptop>.elementor-container>:nth-child(7){order:4}.elementor-reverse-laptop>.elementor-container>:nth-child(8){order:3}.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:2}.elementor-reverse-laptop>.elementor-container>:nth-child(10){order:1}}@media (min-width:1025px) and (max-width:-1){.elementor-reverse-laptop>.elementor-container>:first-child,.elementor-reverse-laptop>.elementor-container>:nth-child(10),.elementor-reverse-laptop>.elementor-container>:nth-child(2),.elementor-reverse-laptop>.elementor-container>:nth-child(3),.elementor-reverse-laptop>.elementor-container>:nth-child(4),.elementor-reverse-laptop>.elementor-container>:nth-child(5),.elementor-reverse-laptop>.elementor-container>:nth-child(6),.elementor-reverse-laptop>.elementor-container>:nth-child(7),.elementor-reverse-laptop>.elementor-container>:nth-child(8),.elementor-reverse-laptop>.elementor-container>:nth-child(9){order:0}.elementor-reverse-tablet_extra>.elementor-container>:first-child{order:10}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet_extra>.elementor-container>:nth-child(10){order:1}}@media (min-width:768px) and (max-width:1024px){.elementor-reverse-tablet>.elementor-container>:first-child{order:10}.elementor-reverse-tablet>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet>.elementor-container>:nth-child(10){order:1}}@media (min-width:-1) and (max-width:1024px){.elementor-reverse-tablet>.elementor-container>:first-child{order:10}.elementor-reverse-tablet>.elementor-container>:nth-child(2){order:9}.elementor-reverse-tablet>.elementor-container>:nth-child(3){order:8}.elementor-reverse-tablet>.elementor-container>:nth-child(4){order:7}.elementor-reverse-tablet>.elementor-container>:nth-child(5){order:6}.elementor-reverse-tablet>.elementor-container>:nth-child(6){order:5}.elementor-reverse-tablet>.elementor-container>:nth-child(7){order:4}.elementor-reverse-tablet>.elementor-container>:nth-child(8){order:3}.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:2}.elementor-reverse-tablet>.elementor-container>:nth-child(10){order:1}}@media (min-width:768px) and (max-width:-1){.elementor-reverse-tablet>.elementor-container>:first-child,.elementor-reverse-tablet>.elementor-container>:nth-child(10),.elementor-reverse-tablet>.elementor-container>:nth-child(2),.elementor-reverse-tablet>.elementor-container>:nth-child(3),.elementor-reverse-tablet>.elementor-container>:nth-child(4),.elementor-reverse-tablet>.elementor-container>:nth-child(5),.elementor-reverse-tablet>.elementor-container>:nth-child(6),.elementor-reverse-tablet>.elementor-container>:nth-child(7),.elementor-reverse-tablet>.elementor-container>:nth-child(8),.elementor-reverse-tablet>.elementor-container>:nth-child(9){order:0}.elementor-reverse-mobile_extra>.elementor-container>:first-child{order:10}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(2){order:9}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(3){order:8}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(4){order:7}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(5){order:6}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(6){order:5}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(7){order:4}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(8){order:3}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(9){order:2}.elementor-reverse-mobile_extra>.elementor-container>:nth-child(10){order:1}}@media (max-width:767px){.elementor-reverse-mobile>.elementor-container>:first-child{order:10}.elementor-reverse-mobile>.elementor-container>:nth-child(2){order:9}.elementor-reverse-mobile>.elementor-container>:nth-child(3){order:8}.elementor-reverse-mobile>.elementor-container>:nth-child(4){order:7}.elementor-reverse-mobile>.elementor-container>:nth-child(5){order:6}.elementor-reverse-mobile>.elementor-container>:nth-child(6){order:5}.elementor-reverse-mobile>.elementor-container>:nth-child(7){order:4}.elementor-reverse-mobile>.elementor-container>:nth-child(8){order:3}.elementor-reverse-mobile>.elementor-container>:nth-child(9){order:2}.elementor-reverse-mobile>.elementor-container>:nth-child(10){order:1}.elementor-column{width:100%}}.elementor-grid{display:grid;grid-column-gap:var(--grid-column-gap);grid-row-gap:var(--grid-row-gap)}.elementor-grid .elementor-grid-item{min-width:0}.elementor-grid-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}@media (min-width:-1){.elementor-grid-widescreen-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-widescreen-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-widescreen-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-widescreen-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-widescreen-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-widescreen-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-widescreen-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-widescreen-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-widescreen-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-widescreen-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-widescreen-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-widescreen-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-widescreen-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-widescreen-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:-1){.elementor-grid-laptop-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-laptop-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-laptop-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-laptop-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-laptop-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-laptop-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-laptop-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-laptop-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-laptop-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-laptop-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-laptop-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-laptop-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-laptop-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-laptop-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}.elementor-grid-tablet_extra-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-tablet_extra-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-tablet_extra-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-tablet_extra-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-tablet_extra-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-tablet_extra-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-tablet_extra-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-tablet_extra-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-tablet_extra-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-tablet_extra-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-tablet_extra-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-tablet_extra-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-tablet_extra-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-tablet_extra-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:1024px){.elementor-grid-tablet-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-tablet-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-tablet-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-tablet-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-tablet-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-tablet-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-tablet-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-tablet-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-tablet-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-tablet-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-tablet-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-tablet-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-tablet-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-tablet-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:-1){.elementor-grid-mobile_extra-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-mobile_extra-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-mobile_extra-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-mobile_extra-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-mobile_extra-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-mobile_extra-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-mobile_extra-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-mobile_extra-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-mobile_extra-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-mobile_extra-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-mobile_extra-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-mobile_extra-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-mobile_extra-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-mobile_extra-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (max-width:767px){.elementor-grid-mobile-0 .elementor-grid{display:inline-block;margin-block-end:calc(-1 * var(--grid-row-gap));width:100%;word-spacing:var(--grid-column-gap)}.elementor-grid-mobile-0 .elementor-grid .elementor-grid-item{display:inline-block;margin-block-end:var(--grid-row-gap);word-break:break-word}.elementor-grid-mobile-1 .elementor-grid{grid-template-columns:repeat(1,1fr)}.elementor-grid-mobile-2 .elementor-grid{grid-template-columns:repeat(2,1fr)}.elementor-grid-mobile-3 .elementor-grid{grid-template-columns:repeat(3,1fr)}.elementor-grid-mobile-4 .elementor-grid{grid-template-columns:repeat(4,1fr)}.elementor-grid-mobile-5 .elementor-grid{grid-template-columns:repeat(5,1fr)}.elementor-grid-mobile-6 .elementor-grid{grid-template-columns:repeat(6,1fr)}.elementor-grid-mobile-7 .elementor-grid{grid-template-columns:repeat(7,1fr)}.elementor-grid-mobile-8 .elementor-grid{grid-template-columns:repeat(8,1fr)}.elementor-grid-mobile-9 .elementor-grid{grid-template-columns:repeat(9,1fr)}.elementor-grid-mobile-10 .elementor-grid{grid-template-columns:repeat(10,1fr)}.elementor-grid-mobile-11 .elementor-grid{grid-template-columns:repeat(11,1fr)}.elementor-grid-mobile-12 .elementor-grid{grid-template-columns:repeat(12,1fr)}}@media (min-width:1025px){#elementor-device-mode:after{content:"desktop"}}@media (min-width:-1){#elementor-device-mode:after{content:"widescreen"}}@media (max-width:-1){#elementor-device-mode:after{content:"laptop";content:"tablet_extra"}}@media (max-width:1024px){#elementor-device-mode:after{content:"tablet"}}@media (max-width:-1){#elementor-device-mode:after{content:"mobile_extra"}}@media (max-width:767px){#elementor-device-mode:after{content:"mobile"}}@media (prefers-reduced-motion:no-preference){html{scroll-behavior:smooth}}.e-con{--border-radius:0;--border-top-width:0px;--border-right-width:0px;--border-bottom-width:0px;--border-left-width:0px;--border-style:initial;--border-color:initial;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--content-width:min(100%,var(--container-max-width,1140px));--width:100%;--min-height:initial;--height:auto;--text-align:initial;--margin-top:0px;--margin-right:0px;--margin-bottom:0px;--margin-left:0px;--padding-top:var(--container-default-padding-top,10px);--padding-right:var(--container-default-padding-right,10px);--padding-bottom:var(--container-default-padding-bottom,10px);--padding-left:var(--container-default-padding-left,10px);--position:relative;--z-index:revert;--overflow:visible;--gap:var(--widgets-spacing,20px);--row-gap:var(--widgets-spacing-row,20px);--column-gap:var(--widgets-spacing-column,20px);--overlay-mix-blend-mode:initial;--overlay-opacity:1;--overlay-transition:0.3s;--e-con-grid-template-columns:repeat(3,1fr);--e-con-grid-template-rows:repeat(2,1fr);border-radius:var(--border-radius);height:var(--height);min-height:var(--min-height);min-width:0;overflow:var(--overflow);position:var(--position);width:var(--width);z-index:var(--z-index);--flex-wrap-mobile:wrap}.e-con:where(:not(.e-div-block-base)){transition:background var(--background-transition,.3s),border var(--border-transition,.3s),box-shadow var(--border-transition,.3s),transform var(--e-con-transform-transition-duration,.4s)}.e-con{--margin-block-start:var(--margin-top);--margin-block-end:var(--margin-bottom);--margin-inline-start:var(--margin-left);--margin-inline-end:var(--margin-right);--padding-inline-start:var(--padding-left);--padding-inline-end:var(--padding-right);--padding-block-start:var(--padding-top);--padding-block-end:var(--padding-bottom);--border-block-start-width:var(--border-top-width);--border-block-end-width:var(--border-bottom-width);--border-inline-start-width:var(--border-left-width);--border-inline-end-width:var(--border-right-width)}body.rtl .e-con{--padding-inline-start:var(--padding-right);--padding-inline-end:var(--padding-left);--margin-inline-start:var(--margin-right);--margin-inline-end:var(--margin-left);--border-inline-start-width:var(--border-right-width);--border-inline-end-width:var(--border-left-width)}.e-con{margin-block-end:var(--margin-block-end);margin-block-start:var(--margin-block-start);margin-inline-end:var(--margin-inline-end);margin-inline-start:var(--margin-inline-start);padding-inline-end:var(--padding-inline-end);padding-inline-start:var(--padding-inline-start)}.e-con.e-flex{--flex-direction:column;--flex-basis:auto;--flex-grow:0;--flex-shrink:1;flex:var(--flex-grow) var(--flex-shrink) var(--flex-basis)}.e-con-full,.e-con>.e-con-inner{padding-block-end:var(--padding-block-end);padding-block-start:var(--padding-block-start);text-align:var(--text-align)}.e-con-full.e-flex,.e-con.e-flex>.e-con-inner{flex-direction:var(--flex-direction)}.e-con,.e-con>.e-con-inner{display:var(--display)}.e-con.e-grid{--grid-justify-content:start;--grid-align-content:start;--grid-auto-flow:row}.e-con.e-grid,.e-con.e-grid>.e-con-inner{align-content:var(--grid-align-content);align-items:var(--align-items);grid-auto-flow:var(--grid-auto-flow);grid-template-columns:var(--e-con-grid-template-columns);grid-template-rows:var(--e-con-grid-template-rows);justify-content:var(--grid-justify-content);justify-items:var(--justify-items)}.e-con-boxed.e-flex{align-content:normal;align-items:normal;flex-direction:column;flex-wrap:nowrap;justify-content:normal}.e-con-boxed.e-grid{grid-template-columns:1fr;grid-template-rows:1fr;justify-items:legacy}.e-con-boxed{gap:initial;text-align:initial}.e-con.e-flex>.e-con-inner{align-content:var(--align-content);align-items:var(--align-items);align-self:auto;flex-basis:auto;flex-grow:1;flex-shrink:1;flex-wrap:var(--flex-wrap);justify-content:var(--justify-content)}.e-con.e-grid>.e-con-inner{align-items:var(--align-items);justify-items:var(--justify-items)}.e-con>.e-con-inner{gap:var(--row-gap) var(--column-gap);height:100%;margin:0 auto;max-width:var(--content-width);padding-inline-end:0;padding-inline-start:0;width:100%}:is(.elementor-section-wrap,[data-elementor-id])>.e-con{--margin-left:auto;--margin-right:auto;max-width:min(100%,var(--width))}:is([data-widget_type="e-component.default"],[data-widget_type="e-component.default"]>.elementor-section-wrap)>.e-con{--margin-right:0px;--margin-left:0px}.e-con .elementor-widget.elementor-widget{margin-block-end:0}.e-con:before,.e-con>.elementor-background-slideshow:before,.e-con>.elementor-motion-effects-container>.elementor-motion-effects-layer:before,:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container:before{border-block-end-width:var(--border-block-end-width);border-block-start-width:var(--border-block-start-width);border-color:var(--border-color);border-inline-end-width:var(--border-inline-end-width);border-inline-start-width:var(--border-inline-start-width);border-radius:var(--border-radius);border-style:var(--border-style);content:var(--background-overlay);display:block;height:max(100% + var(--border-top-width) + var(--border-bottom-width),100%);left:calc(0px - var(--border-left-width));mix-blend-mode:var(--overlay-mix-blend-mode);opacity:var(--overlay-opacity);position:absolute;top:calc(0px - var(--border-top-width));transition:var(--overlay-transition,.3s);width:max(100% + var(--border-left-width) + var(--border-right-width),100%)}.e-con:before{transition:background var(--overlay-transition,.3s),border-radius var(--border-transition,.3s),opacity var(--overlay-transition,.3s)}.e-con>.elementor-background-slideshow,:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container{border-block-end-width:var(--border-block-end-width);border-block-start-width:var(--border-block-start-width);border-color:var(--border-color);border-inline-end-width:var(--border-inline-end-width);border-inline-start-width:var(--border-inline-start-width);border-radius:var(--border-radius);border-style:var(--border-style);height:max(100% + var(--border-top-width) + var(--border-bottom-width),100%);left:calc(0px - var(--border-left-width));top:calc(0px - var(--border-top-width));width:max(100% + var(--border-left-width) + var(--border-right-width),100%)}@media (max-width:767px){:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container.elementor-hidden-mobile{display:none}}:is(.e-con,.e-con>.e-con-inner)>.elementor-background-video-container:before{z-index:1}:is(.e-con,.e-con>.e-con-inner)>.elementor-background-slideshow:before{z-index:2}.e-con .elementor-widget{min-width:0}.e-con .elementor-widget-empty,.e-con .elementor-widget-google_maps,.e-con .elementor-widget-video,.e-con .elementor-widget.e-widget-swiper{width:100%}.e-con>.e-con-inner>.elementor-widget>.elementor-widget-container,.e-con>.elementor-widget>.elementor-widget-container{height:100%}.e-con.e-con>.e-con-inner>.elementor-widget,.elementor.elementor .e-con>.elementor-widget{max-width:100%}.e-con .elementor-widget:not(:last-child){--kit-widget-spacing:0px}@media (max-width:767px){.e-con.e-flex{--width:100%;--flex-wrap:var(--flex-wrap-mobile)}.e-con.e-flex .elementor-widget-archive-posts{width:100%}}.elementor-form-fields-wrapper{display:flex;flex-wrap:wrap}.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group .elementor-field-subgroup,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>.elementor-select-wrapper,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>input,.elementor-form-fields-wrapper.elementor-labels-above .elementor-field-group>textarea{flex-basis:100%;max-width:100%}.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group .elementor-select-wrapper,.elementor-form-fields-wrapper.elementor-labels-inline>.elementor-field-group>input{flex-grow:1}.elementor-field-group{align-items:center;flex-wrap:wrap}.elementor-field-group.elementor-field-type-submit{align-items:flex-end}.elementor-field-group .elementor-field-textual{background-color:transparent;border:1px solid #69727d;color:#1f2124;flex-grow:1;max-width:100%;vertical-align:middle;width:100%}.elementor-field-group .elementor-field-textual:focus{box-shadow:inset 0 0 0 1px rgba(0,0,0,.1);outline:0}.elementor-field-group .elementor-field-textual::-moz-placeholder{color:inherit;font-family:inherit;opacity:.6}.elementor-field-group .elementor-field-textual::placeholder{color:inherit;font-family:inherit;opacity:.6}.elementor-field-group .elementor-select-wrapper{display:flex;position:relative;width:100%}.elementor-field-group .elementor-select-wrapper select{-webkit-appearance:none;-moz-appearance:none;appearance:none;color:inherit;flex-basis:100%;font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;letter-spacing:inherit;line-height:inherit;padding-inline-end:20px;text-transform:inherit}.elementor-field-group .elementor-select-wrapper:before{content:"\e92a";font-family:eicons;font-size:15px;inset-block-start:50%;inset-inline-end:10px;pointer-events:none;position:absolute;text-shadow:0 0 3px rgba(0,0,0,.3);transform:translateY(-50%)}.elementor-field-group.elementor-field-type-select-multiple .elementor-select-wrapper:before{content:""}.elementor-field-subgroup{display:flex;flex-wrap:wrap}.elementor-field-subgroup .elementor-field-option label{display:inline-block}.elementor-field-subgroup.elementor-subgroup-inline .elementor-field-option{padding-inline-end:10px}.elementor-field-subgroup:not(.elementor-subgroup-inline) .elementor-field-option{flex-basis:100%}.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-acceptance .elementor-field-subgroup .elementor-field-option label,.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-checkbox .elementor-field-subgroup .elementor-field-option label,.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option input,.elementor-field-type-radio .elementor-field-subgroup .elementor-field-option label{display:inline}.elementor-field-label{cursor:pointer}.elementor-mark-required .elementor-field-label:after{color:red;content:"*";padding-inline-start:.2em}.elementor-field-textual{border-radius:3px;font-size:15px;line-height:1.4;min-height:40px;padding:5px 14px}.elementor-field-textual.elementor-size-xs{border-radius:2px;font-size:13px;min-height:33px;padding:4px 12px}.elementor-field-textual.elementor-size-md{border-radius:4px;font-size:16px;min-height:47px;padding:6px 16px}.elementor-field-textual.elementor-size-lg{border-radius:5px;font-size:18px;min-height:59px;padding:7px 20px}.elementor-field-textual.elementor-size-xl{border-radius:6px;font-size:20px;min-height:72px;padding:8px 24px}.elementor-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-button-align-center .e-form__buttons,.elementor-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-button-align-start .e-form__buttons,.elementor-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-button-align-end .e-form__buttons,.elementor-button-align-end .elementor-field-type-submit,[dir=rtl] .elementor-button-align-start .e-form__buttons,[dir=rtl] .elementor-button-align-start .elementor-field-type-submit{justify-content:flex-end}[dir=rtl] .elementor-button-align-end .e-form__buttons,[dir=rtl] .elementor-button-align-end .elementor-field-type-submit{justify-content:flex-start}.elementor-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-button-align-center .e-form__buttons__wrapper,.elementor-button-align-end .e-form__buttons__wrapper,.elementor-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-button-align-center .e-form__buttons__wrapper,.elementor-button-align-center .e-form__buttons__wrapper__button,.elementor-button-align-end .e-form__buttons__wrapper,.elementor-button-align-end .e-form__buttons__wrapper__button,.elementor-button-align-start .e-form__buttons__wrapper,.elementor-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}@media screen and (max-width:1024px){.elementor-tablet-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-tablet-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-tablet-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-tablet-button-align-center .e-form__buttons,.elementor-tablet-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-tablet-button-align-start .e-form__buttons,.elementor-tablet-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-tablet-button-align-end .e-form__buttons,.elementor-tablet-button-align-end .elementor-field-type-submit,[dir=rtl] .elementor-tablet-button-align-start .e-form__buttons,[dir=rtl] .elementor-tablet-button-align-start .elementor-field-type-submit{justify-content:flex-end}[dir=rtl] .elementor-tablet-button-align-end .e-form__buttons,[dir=rtl] .elementor-tablet-button-align-end .elementor-field-type-submit{justify-content:flex-start}.elementor-tablet-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-tablet-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-tablet-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-tablet-button-align-center .e-form__buttons__wrapper,.elementor-tablet-button-align-end .e-form__buttons__wrapper,.elementor-tablet-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-tablet-button-align-center .e-form__buttons__wrapper,.elementor-tablet-button-align-center .e-form__buttons__wrapper__button,.elementor-tablet-button-align-end .e-form__buttons__wrapper,.elementor-tablet-button-align-end .e-form__buttons__wrapper__button,.elementor-tablet-button-align-start .e-form__buttons__wrapper,.elementor-tablet-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}}@media screen and (max-width:767px){.elementor-mobile-button-align-stretch .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:100%}.elementor-mobile-button-align-stretch .e-form__buttons__wrapper{flex-basis:50%;flex-grow:1}.elementor-mobile-button-align-stretch .e-form__buttons__wrapper__button{flex-basis:100%}.elementor-mobile-button-align-center .e-form__buttons,.elementor-mobile-button-align-center .elementor-field-type-submit{justify-content:center}.elementor-mobile-button-align-start .e-form__buttons,.elementor-mobile-button-align-start .elementor-field-type-submit{justify-content:flex-start}.elementor-mobile-button-align-end .e-form__buttons,.elementor-mobile-button-align-end .elementor-field-type-submit,[dir=rtl] .elementor-mobile-button-align-start .e-form__buttons,[dir=rtl] .elementor-mobile-button-align-start .elementor-field-type-submit{justify-content:flex-end}[dir=rtl] .elementor-mobile-button-align-end .e-form__buttons,[dir=rtl] .elementor-mobile-button-align-end .elementor-field-type-submit{justify-content:flex-start}.elementor-mobile-button-align-center .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-mobile-button-align-end .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button,.elementor-mobile-button-align-start .elementor-field-type-submit:not(.e-form__buttons__wrapper) .elementor-button{flex-basis:auto}.elementor-mobile-button-align-center .e-form__buttons__wrapper,.elementor-mobile-button-align-end .e-form__buttons__wrapper,.elementor-mobile-button-align-start .e-form__buttons__wrapper{flex-grow:0}.elementor-mobile-button-align-center .e-form__buttons__wrapper,.elementor-mobile-button-align-center .e-form__buttons__wrapper__button,.elementor-mobile-button-align-end .e-form__buttons__wrapper,.elementor-mobile-button-align-end .e-form__buttons__wrapper__button,.elementor-mobile-button-align-start .e-form__buttons__wrapper,.elementor-mobile-button-align-start .e-form__buttons__wrapper__button{flex-basis:auto}}.elementor-error .elementor-field{border-color:#d9534f}.elementor-error .help-inline{color:#d9534f;font-size:.9em}.elementor-message{font-size:1em;line-height:1;margin:10px 0}.elementor-message:before{content:"\e90e";display:inline-block;font-family:eicons;font-style:normal;font-weight:400;margin-inline-end:5px;vertical-align:middle}.elementor-message.elementor-message-danger{color:#d9534f}.elementor-message.elementor-message-danger:before{content:"\e87f"}.elementor-message.form-message-success{color:#5cb85c}.elementor-form .elementor-button{border:none;padding-block-end:0;padding-block-start:0}.elementor-form .elementor-button-content-wrapper,.elementor-form .elementor-button>span{display:flex;flex-direction:row;gap:5px;justify-content:center}.elementor-form .elementor-button.elementor-size-xs{min-height:33px}.elementor-form .elementor-button.elementor-size-sm{min-height:40px}.elementor-form .elementor-button.elementor-size-md{min-height:47px}.elementor-form .elementor-button.elementor-size-lg{min-height:59px}.elementor-form .elementor-button.elementor-size-xl{min-height:72px}.elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)) .elementor-widget-container,.elementor-element:where(:not(.e-con)):where(:not(.e-div-block-base)):not(:has(.elementor-widget-container)){transition:background .3s,border .3s,border-radius .3s,box-shadow .3s,transform var(--e-transform-transition-duration,.4s)}.elementor-heading-title{line-height:1;margin:0;padding:0}.elementor-button{background-color:#69727d;border-radius:3px;color:#fff;display:inline-block;fill:#fff;font-size:15px;line-height:1;padding:12px 24px;text-align:center;transition:all .3s}.elementor-button:focus,.elementor-button:hover,.elementor-button:visited{color:#fff}.elementor-button-content-wrapper{display:flex;flex-direction:row;gap:5px;justify-content:center}.elementor-button-icon{align-items:center;display:flex}.elementor-button-icon svg{height:auto;width:1em}.elementor-button-icon .e-font-icon-svg{height:1em}.elementor-button-text{display:inline-block}.elementor-button.elementor-size-xs{border-radius:2px;font-size:13px;padding:10px 20px}.elementor-button.elementor-size-md{border-radius:4px;font-size:16px;padding:15px 30px}.elementor-button.elementor-size-lg{border-radius:5px;font-size:18px;padding:20px 40px}.elementor-button.elementor-size-xl{border-radius:6px;font-size:20px;padding:25px 50px}.elementor-button span{text-decoration:inherit}.elementor-element.elementor-button-info .elementor-button{background-color:#5bc0de}.elementor-element.elementor-button-success .elementor-button{background-color:#5cb85c}.elementor-element.elementor-button-warning .elementor-button{background-color:#f0ad4e}.elementor-element.elementor-button-danger .elementor-button{background-color:#d9534f}.elementor-widget-button .elementor-button .elementor-button-info{background-color:#5bc0de}.elementor-widget-button .elementor-button .elementor-button-success{background-color:#5cb85c}.elementor-widget-button .elementor-button .elementor-button-warning{background-color:#f0ad4e}.elementor-widget-button .elementor-button .elementor-button-danger{background-color:#d9534f}.elementor-view-stacked .elementor-icon{background-color:#69727d;color:#fff;fill:#fff;padding:.5em}.elementor-view-framed .elementor-icon{background-color:transparent;border:3px solid #69727d;color:#69727d;padding:.5em}.elementor-icon{color:#69727d;display:inline-block;font-size:50px;line-height:1;text-align:center;transition:all .3s}.elementor-icon:hover{color:#69727d}.elementor-icon i,.elementor-icon svg{display:block;height:1em;position:relative;width:1em}.elementor-icon i:before,.elementor-icon svg:before{left:50%;position:absolute;transform:translateX(-50%)}.elementor-icon i.fad{width:auto}.elementor-shape-square .elementor-icon{border-radius:0}.elementor-shape-rounded .elementor-icon{border-radius:10%}.elementor-shape-circle .elementor-icon{border-radius:50%}.e-transform .elementor-widget-container,.e-transform:not(:has(.elementor-widget-container)){transform:perspective(var(--e-transform-perspective,0)) rotate(var(--e-transform-rotateZ,0)) rotateX(var(--e-transform-rotateX,0)) rotateY(var(--e-transform-rotateY,0)) translate(var(--e-transform-translate,0)) translateX(var(--e-transform-translateX,0)) translateY(var(--e-transform-translateY,0)) scaleX(calc(var(--e-transform-flipX, 1) * var(--e-transform-scaleX, var(--e-transform-scale, 1)))) scaleY(calc(var(--e-transform-flipY, 1) * var(--e-transform-scaleY, var(--e-transform-scale, 1)))) skewX(var(--e-transform-skewX,0)) skewY(var(--e-transform-skewY,0));transform-origin:var(--e-transform-origin-y) var(--e-transform-origin-x)}.e-con.e-transform{transform:perspective(var(--e-con-transform-perspective,0)) rotate(var(--e-con-transform-rotateZ,0)) rotateX(var(--e-con-transform-rotateX,0)) rotateY(var(--e-con-transform-rotateY,0)) translate(var(--e-con-transform-translate,0)) translateX(var(--e-con-transform-translateX,0)) translateY(var(--e-con-transform-translateY,0)) scaleX(calc(var(--e-con-transform-flipX, 1) * var(--e-con-transform-scaleX, var(--e-con-transform-scale, 1)))) scaleY(calc(var(--e-con-transform-flipY, 1) * var(--e-con-transform-scaleY, var(--e-con-transform-scale, 1)))) skewX(var(--e-con-transform-skewX,0)) skewY(var(--e-con-transform-skewY,0));transform-origin:var(--e-con-transform-origin-y) var(--e-con-transform-origin-x)}.animated{animation-duration:1.25s}.animated.animated-slow{animation-duration:2s}.animated.animated-fast{animation-duration:.75s}.animated.infinite{animation-iteration-count:infinite}.animated.reverse{animation-direction:reverse;animation-fill-mode:forwards}@media (prefers-reduced-motion:reduce){.animated{animation:none!important}html *{transition-delay:0s!important;transition-duration:0s!important}}@media (max-width:767px){.elementor .elementor-hidden-mobile,.elementor .elementor-hidden-phone{display:none}}@media (min-width:-1) and (max-width:-1){.elementor .elementor-hidden-mobile_extra{display:none}}@media (min-width:768px) and (max-width:1024px){.elementor .elementor-hidden-tablet{display:none}}@media (min-width:-1) and (max-width:-1){.elementor .elementor-hidden-laptop,.elementor .elementor-hidden-tablet_extra{display:none}}@media (min-width:1025px) and (max-width:99999px){.elementor .elementor-hidden-desktop{display:none}}@media (min-width:-1){.elementor .elementor-hidden-widescreen{display:none}}
/*------------------------------------------------------------------
[Master Stylesheet]

Project:        Solarixia
Version:        1.0
Last change:    08.06.2025
Primary use:    WordPress Theme
Author:         ThemeMascot
URL:            https://themeforest.net/user/ThemeMascot
-------------------------------------------------------------------*/
/*
This file contains the common styles of this theme.
*/
:root {
  --theme-color-white: #ffffff;
  --theme-color-light: #f8f5f0;
  --theme-color-gray: #f6f6f6;
  --theme-color-silver: #eee;
  --theme-color-dark: #333;
  --theme-color-dark2: #222;
  --tm-container-pt: 120px;
  --tm-container-pb: 120px;
  --body-font-family: "DM Sans","DM Sans Fallback", sans-serif;
  --heading-font-family: "DM Sans","DM Sans Fallback", sans-serif;
  --body-font-size: 1rem;
  --body-font-weight: 400;
  --body-font-bold: 600;
  --body-font-bold-color: #333;
  --body-bg: #fff;
  --text-color: #878787;
  --link-color: #352f27;
  --link-hover-color: #88ac43;
  --headings-color: #2a2a2c;
  --entry-meta-color: #819291;
  --entry-meta-color-light: #a1a1a1;
  --line-height-base: 1.7;
  --line-height-widget-li: 2.5rem;
  --headings-line-height: 1.3;
  --headings-line-height-smaller: 1.4;
  --btn-font-size: 14px;
  --h1-font-size: 3.8rem;
  --h1-font-size-mob: 2.5rem;
  --h2-font-size: 3rem;
  --h2-font-size-mob: 2.5rem;
  --h3-font-size: 1.95rem;
  --h4-font-size: 1.5rem;
  --h5-font-size: 1.25rem;
  --h6-font-size: 1.125rem;
  --headings-font-weight-h1: 500;
  --headings-font-weight-h2: 600;
  --headings-font-weight-h3: 600;
  --headings-font-weight-h4: 600;
  --headings-font-weight-h5: 600;
  --headings-font-weight-h6: 600;
  --section-title-color: #2a2a2c;
  --section-title-font-size: 50px;
  --section-title-line-height: 1.2em;
  --section-title-font-family: var(--heading-font-family);
  --section-title-font-weight: var(--headings-font-weight-h2);
  --section-title-subtitle-color: #b9b9b9;
  --section-title-subtitle-font-size: 14px;
  --section-title-subtitle-line-height: 1.4;
  --section-title-subtitle-font-family: var(--heading-font-family);
  --section-title-subtitle-font-weight: 400;
  --news-widget-archive-icon-color: var(--theme-color2);
  --mobile-menu-bg-color: var(--theme-color-white);
  --mobile-menu-hamburger-color: var(--theme-color-dark);
  --mobile-menu-item-link-text-color: var(--theme-color-dark);
  --mobile-menu-item-link-bg-color: transparent;
  --mobile-menu-item-link-bg-border-color: rgba(241, 241, 241, 0.24);
  --mobile-menu-item-link-text-color-hover: #111;
  --mobile-menu-item-indicator-bg-color: var(--theme-color2);
  --mobile-menu-item-indicator-text-color: var(--theme-color2-text-color);
  --menuzord-primary-nav-font-size: 14px;
  --menuzord-primary-nav-font-weight: 500;
  --menuzord-primary-nav-font-transform: uppercase;
  --menuzord-brand-width: 155px;
  --menuzord-brand-width-responsive: 100px;
  --default-header-bg-color: #fff;
  --default-header-menu-color: #222;
  --footer-bg-color: #111416;
  --footer-primary-text-color: #cccccc;
  --footer-link-color: #cccccc;
  --footer-link-color-hover: #fff;
  --footer-link-fontsize: 1rem;
  --footer-widget-title-color: #fff;
  --sidebar_link_color: #404040;
  --blockquote-text-color: #333;
  --blockquote-cite-color: #777;
  --pre-code-text-color: #000;
  --sidebar_widget_common_bg: var(--theme-color-light);
  --sidebar_widget_common_border: var(--theme-color-light);
  --sidebar_widget_search_bg: var(--theme-color-silver);
  --sidebar_widget_search_border: var(--theme-color-silver);
  --sidebar_widget_heading_border_color: var(--theme-color-white);
  --sidebar_widget_heading_border_color2: var(--theme-color1);
  --sidebar_widget_list_icon_color: var(--theme-color2);
  --form_control_common_bg: rgba(241, 238, 246, 0.5);
  --form_control_common_bg_focus: #fff;
  --form_control_common_border: rgba(241, 238, 246, 0.5);
  --r: 30px; /* radius */
  --s: 50px; /* size of the inner curve*/
  --_m: /calc(2 * var(--r)) calc(2 * var(--r)) radial-gradient(#000 70%, #0000 72%) no-repeat;
}

/*
 * reset.scss
 * -----------------------------------------------
*/
@media (prefers-reduced-motion: no-preference) {
  html.tm-html-enable-localscroll {
    scroll-behavior: smooth;
  }
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  line-height: 150%;
}

html {
  font-size: 100%; /*62.5%;*/ /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
  overflow-y: scroll; /* Keeps page centred in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

--dark-bg ::selection {
  background: var(--theme-color-dark);
  color: var(--theme-color-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--theme-color-dark); /* Firefox */
  color: var(--theme-color-white);
  text-shadow: none;
}

::-webkit-selection {
  background: var(--theme-color-dark); /* Safari */
  color: var(--theme-color-white);
  text-shadow: none;
}

:active,
:focus {
  outline: none !important;
}

body {
  line-height: var(--line-height-base);
  color: var(--text-color);
  font-size: var(--body-font-size);
  font-family: var(--body-font-family);
  font-weight: var(--body-font-weight);
  background-color: var(--body-bg);
  background-attachment: fixed;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  counter-reset: my-sec-counter;
}

a {
  color: var(--link-color);
  text-decoration: none;
  font-weight: var(--body-font-weight);
  transition: all 0.3s ease;
}
a:hover, a:focus {
  color: var(--hover-theme-color);
  text-decoration: none;
}
a b,
a strong {
  transition: all 0.3s ease;
}
a img {
  border: none;
}

b,
strong {
  color: var(--body-font-bold-color);
  font-weight: var(--body-font-bold);
}

img {
  max-width: 100%;
}

iframe {
  border: none !important;
}

/* -------- Headings ---------- */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--heading-font-family);
  color: var(--headings-color);
  margin-bottom: 1rem;
  margin-top: 0.75rem;
}
h1 small,
h1 .small,
h2 small,
h2 .small,
h3 small,
h3 .small,
h4 small,
h4 .small,
h5 small,
h5 .small,
h6 small,
h6 .small,
.h1 small,
.h1 .small,
.h2 small,
.h2 .small,
.h3 small,
.h3 .small,
.h4 small,
.h4 .small,
.h5 small,
.h5 .small,
.h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: var(--headings-color);
}
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
.h1 a,
.h2 a,
.h3 a,
.h4 a,
.h5 a,
.h6 a {
  color: inherit;
  font-weight: inherit;
}

.h1,
.h2,
.h3,
h1,
h2,
h3 {
  line-height: var(--headings-line-height);
  margin-bottom: 1rem;
  margin-top: 0.75rem;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
  line-height: var(--headings-line-height-smaller);
  margin-bottom: 1rem;
  margin-top: 0.75rem;
}

h1,
.h1 {
  font-size: var(--h1-font-size);
}

h2,
.h2 {
  font-size: var(--h2-font-size);
}
@media (max-width: 767.98px) {
  h2,
.h2 {
    font-size: var(--h2-font-size-mob);
  }
}

h3,
.h3 {
  font-size: var(--h3-font-size);
}

h4,
.h4 {
  font-size: var(--h4-font-size);
}

h5,
.h5 {
  font-size: var(--h5-font-size);
}

h6,
.h6 {
  font-size: var(--h6-font-size);
}

h1,
.h1 {
  font-weight: var(--headings-font-weight-h1);
}

h2,
.h2 {
  font-weight: var(--headings-font-weight-h2);
}

h3,
.h3 {
  font-weight: var(--headings-font-weight-h3);
}

h4,
.h4 {
  font-weight: var(--headings-font-weight-h4);
}

h5,
.h5 {
  font-weight: var(--headings-font-weight-h5);
}

h6,
.h6 {
  font-weight: var(--headings-font-weight-h6);
}

/* -------- Body Text ---------- */
p,
pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
  margin-bottom: 10px;
}

table p {
  margin-bottom: 0;
}

p {
  margin-bottom: 20px;
}
p a:not(.button):not(.btn):not(.added_to_cart):hover, p a:not(.button):not(.btn):not(.added_to_cart):focus {
  text-decoration: underline;
}

.wp-block-quote {
  margin: 20px 0;
}

caption {
  caption-side: top;
}

.main-content-area ul > li,
.main-content-area ol > li,
.page-content ul > li,
.page-content ol > li,
.post-content ul > li,
.post-content ol > li,
.post-excerpt ul > li,
.post-excerpt ol > li,
.wpb_text_column ul > li,
.wpb_text_column ol > li,
.comment-list ul > li,
.comment-list ol > li {
  margin-bottom: 10px;
}
.main-content-area ul > li > ul,
.main-content-area ul > li > ol,
.main-content-area ol > li > ul,
.main-content-area ol > li > ol,
.page-content ul > li > ul,
.page-content ul > li > ol,
.page-content ol > li > ul,
.page-content ol > li > ol,
.post-content ul > li > ul,
.post-content ul > li > ol,
.post-content ol > li > ul,
.post-content ol > li > ol,
.post-excerpt ul > li > ul,
.post-excerpt ul > li > ol,
.post-excerpt ol > li > ul,
.post-excerpt ol > li > ol,
.wpb_text_column ul > li > ul,
.wpb_text_column ul > li > ol,
.wpb_text_column ol > li > ul,
.wpb_text_column ol > li > ol,
.comment-list ul > li > ul,
.comment-list ul > li > ol,
.comment-list ol > li > ul,
.comment-list ol > li > ol {
  margin-top: 10px;
}

/*Drop Caps*/
.drop-caps > p {
  text-align: justify;
}
.drop-caps > p:first-child:first-letter {
  color: var(--theme-color-dark);
  display: block;
  float: left;
  font-size: 48px;
  line-height: 48px;
  margin: 6px 3px;
  padding: 10px 18px;
}

address {
  color: #777;
  font-style: italic;
}

ol,
ul {
  list-style-position: inside;
  margin: 0;
  padding: 0;
}

ol ol li,
ol ul li,
ul ol li,
ul ul li {
  padding-left: 20px;
}

/*
 * common.scss
 * -----------------------------------------------
*/
/* -------- Basic Structure ---------- */
html {
  font-size: 100%;
  max-width: 100%;
}
@media (max-width: 991.98px) {
  html {
    font-size: 98%;
  }
}
@media (max-width: 767.98px) {
  html {
    font-size: 96%;
  }
}
@media (max-width: 575.98px) {
  html {
    font-size: 94%;
  }
}

html,
html a {
  -webkit-font-smoothing: antialiased;
}

body {
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

img {
  height: auto;
  max-width: 100%;
}

iframe,
embed,
object {
  margin-bottom: 1.5em;
  max-width: 100%;
}

iframe {
  display: block;
  margin: 0;
  max-width: 100%;
}

ul,
ol {
  margin: 0 0 1.5em 0;
}

ul {
  list-style-type: disc;
}

.media-object {
  max-width: none;
}

/* -------- Line-Bottom ---------- */
.line-bottom-footer-widget {
  position: relative;
  padding-bottom: 10px;
}
.line-bottom-footer-widget:after {
  bottom: -5px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 54px;
  background: #555;
}

.line-bottom-centered {
  position: relative;
  margin: 10px 0 20px;
}
.line-bottom-centered:after {
  background: #2b96cc none repeat scroll 0 0;
  bottom: -8px;
  content: "";
  height: 1px;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0;
  position: absolute;
  right: 0;
  width: 30px;
}

/* -------- Scroll To Top ---------- */
.scroll-to-top {
  display: none;
}
.scroll-to-top a {
  background-size: 200% auto;
  box-shadow: 0 7px 30px rgba(0, 0, 0, 0.3);
  bottom: 15px;
  border-radius: 50%;
  height: 50px;
  padding: 2px;
  position: fixed;
  right: 15px;
  text-align: center;
  text-decoration: none;
  width: 50px;
  z-index: 99999;
  opacity: 0.4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll-to-top a i {
  color: var(--theme-color1-text-color);
  font-size: 28px;
}
.scroll-to-top a:hover {
  text-decoration: none;
  opacity: 1;
}

/* table */
.main-content-area table,
.comment-body .comment-text table {
  width: 100%;
  margin: 0 0 40px;
}

.main-content-area table td,
.main-content-area table th,
.comment-body .comment-text table td,
.comment-body .comment-text table th {
  padding: 10px 20px;
  border: 1px solid var(--theme-color-silver);
  text-transform: capitalize;
}

.main-content-area table th,
.comment-body .comment-text table th {
  color: var(--theme-color-dark);
  font-weight: var(--body-font-bold);
}

@media (max-width: 1199.98px) {
  .hidden-mobile-mode {
    display: none !important;
  }
}

.alert {
  padding: 1.25rem 1.25rem;
}

.alert-dismissible .close {
  padding: 1.5rem;
}

.alert-dismissible .btn-close {
  top: 50%;
  transform: translateY(-50%);
  filter: invert(1);
}
[data-tm-layout=dark] .alert-dismissible .btn-close {
  filter: invert(0);
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}

.nice-select {
  font-size: 0.95rem;
  padding-left: 20px;
  padding-right: 38px;
  background-color: var(--theme-color-white);
  color: var(--theme-color-dark);
  border: solid 1px var(--theme-color-silver);
  box-shadow: 0px 10px 20px rgba(5, 5, 5, 0.05);
}
[data-tm-layout=dark] .nice-select {
  background-color: var(--theme-color-gray);
}
.nice-select:after, .nice-select:before {
  height: 8px;
  width: 8px;
}
.nice-select:after {
  right: 18px;
  left: auto;
}
.nice-select:hover, .nice-select:focus {
  border: solid 1px var(--theme-color-silver);
}
[data-tm-layout=dark] .nice-select .option {
  color: #a9a9a9 !important;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: var(--theme-color-gray);
}
.nice-select .option.selected {
  font-weight: var(--body-font-bold);
}
[data-tm-layout=dark] .nice-select span.current {
  color: #a9a9a9 !important;
}
.nice-select .list {
  overflow-y: scroll;
  max-height: 300px;
  background-color: var(--theme-color-white);
}
[data-tm-layout=dark] .nice-select .list {
  box-shadow: 0 0 0 1px rgba(211, 211, 211, 0.16);
}

.description-list dt {
  color: var(--headings-color);
}

.tm-one-vertical-line:before {
  content: "";
  background-color: var(--theme-color1);
  height: 100px;
  width: 2px;
  position: absolute;
  top: -50px;
  left: 50%;
}

.tm-enable-four-vertical-line {
  z-index: 0;
}
.tm-enable-four-vertical-line .tm-four-vertical-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25px;
  right: 25px;
  z-index: -1;
}
.tm-enable-four-vertical-line .tm-four-vertical-line .line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(204, 204, 204, 0.25);
}
.tm-enable-four-vertical-line .tm-four-vertical-line .line-1 {
  left: 0;
}
.tm-enable-four-vertical-line .tm-four-vertical-line .line-2 {
  left: 33.33333%;
}
.tm-enable-four-vertical-line .tm-four-vertical-line .line-3 {
  left: 66.66666%;
}
.tm-enable-four-vertical-line .tm-four-vertical-line .line-4 {
  right: 0;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: var(--theme-color1);
  border-radius: 10px;
}

/*
 * container.scss
 * -----------------------------------------------
*/
.container .container {
  width: 100%;
}

.container .container,
.container .container-fluid,
.container-fluid .container,
.container-fluid .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
@media (min-width: 992px) {
  body.container-970px .container {
    width: 970px;
  }
  body.container-100pr .container {
    width: 100%;
  }
  body.container-100pr .container,
body.container-100pr .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
  body.container-100pr .container .container,
body.container-100pr .container .container-fluid,
body.container-100pr .container-fluid .container,
body.container-100pr .container-fluid .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
}
section {
  position: relative;
}

section > .container,
section > .container-fluid {
  padding-top: 0;
  padding-bottom: 0;
}

body .main-content-area,
body .sidebar-area {
  padding-top: var(--tm-container-pt);
  padding-bottom: var(--tm-container-pb);
}

body .main-content-area,
body .sidebar-area {
  padding-top: var(--tm-container-pt);
  padding-bottom: var(--tm-container-pb);
}
@media (max-width: 991.98px) {
  body .sidebar-area {
    padding-top: 0;
  }
}

body.elementor-page:not(.single-post):not(.single-room) .main-content-area,
body.elementor-page:not(.single-post):not(.single-room) .sidebar-area {
  padding-top: 0;
  padding-bottom: 0;
}

/*
 * elementor.scss
 * -----------------------------------------------
*/
/*
 * elementor.scss
 * -----------------------------------------------
*/
body.elementor-page:not(.single-post) .main-content-section-wrapper .container {
  max-width: 100% !important;
  width: 100% !important;
}

body.elementor-page:not(.single-post) .main-content > .main-content-section-wrapper > .container > .row > div {
  padding-left: 0;
  padding-right: 0;
}

.elementor * :last-child,
.elementor * p:last-child {
  margin-bottom: 0;
}

.main-content .elementor-section-stretched .elementor-container.elementor-column-gap-extended,
.site-footer-custom .elementor-container.elementor-column-gap-extended {
  margin: 0 -15px;
}

.main-content .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-default,
.site-footer-custom .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-default {
  margin: 0 auto;
}

.main-content .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-default .elementor-column .elementor-column-gap-extended,
.site-footer-custom .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-default .elementor-column .elementor-column-gap-extended {
  margin: 0 -10px;
}

.main-content .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-extended,
.site-footer-custom .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-extended {
  margin: 0 auto;
}

.main-content .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-extended .elementor-column .elementor-column-gap-extended,
.site-footer-custom .elementor-section-stretched.elementor-section-boxed .elementor-container.elementor-column-gap-extended .elementor-column .elementor-column-gap-extended {
  margin: 0 -15px;
}

.post-single .entry-content .elementor-widget-container p:last-of-type {
  margin-bottom: 0;
}

.elementor-widget-image a img[src$=".svg"] {
  max-width: 92% !important;
}

.elementor-editor-active #header .elementor:not(.elementor-edit-area-active),
.elementor-editor-active .main-content .elementor:not(.elementor-edit-area-active) {
  display: none;
}
.elementor-editor-active #header .elementor:has(.elementor.elementor-edit-area-active),
.elementor-editor-active .main-content .elementor:has(.elementor.elementor-edit-area-active) {
  display: block;
}
.elementor-editor-active #header .elementor-edit-area,
.elementor-editor-active .main-content .elementor-edit-area {
  display: block;
}
.elementor-editor-active #header .tab-content-inner .elementor,
.elementor-editor-active .main-content .tab-content-inner .elementor {
  display: block;
}
.elementor-editor-active #header #elementor-header-top-mobile .tm-header-branding,
.elementor-editor-active #header #elementor-header-top-mobile .tm-menu-close,
.elementor-editor-active .main-content #elementor-header-top-mobile .tm-header-branding,
.elementor-editor-active .main-content #elementor-header-top-mobile .tm-menu-close {
  display: none;
}

.elementor-editor-active .main-content .container {
  max-width: 100%;
  width: 100%;
}
.elementor-editor-active .main-content .container > .row > div {
  padding-left: 0;
  padding-right: 0;
}

.menuzord-menu > li > .megamenu .elementor {
  width: 100%;
}

body.single-post.elementor-editor-active .tm-blog-sidebar-row > div {
  padding: 0 16px !important;
}

.gsap-pin-fixed-fullwidth {
  position: relative;
}
.gsap-pin-fixed-fullwidth .pin-spacer {
  transition: var(--transition);
}
.gsap-pin-fixed-fullwidth .pin-spacer.spacer-before-active {
  opacity: 0;
}

.gsap-pin-fixed-boxed .pin-spacer > *,
.gsap-pin-fixed-fullwidth .pin-spacer > * {
  transition: unset !important;
}

/*
 * elementor.scss
 * -----------------------------------------------
*/
.elementor-editor-active .elementor-widget-tm-ele-floating-objects {
  min-height: 30px;
  background-color: #cb9494;
}

.tm-ele-floating-objects > .each-object {
  position: absolute;
  width: 100px;
  height: 100px;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
}

/*
 * overlays.scss
 * -----------------------------------------------
*/
.layer-overlay {
  position: relative;
}
.layer-overlay::before {
  background: rgba(17, 17, 17, 0.5) none repeat scroll 0 0;
  content: " ";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}

.layer-overlay {
  z-index: 0;
}
.layer-overlay:before {
  z-index: -1;
}

/*
 * header.scss
 * -----------------------------------------------
*/
/*
 * header-top.scss
 * -----------------------------------------------
*/
@media (min-width: 1025px) {
  body:not(.elementor-editor-active) header .elementor-header-top-transparent {
    z-index: 11;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
}
body:not(.elementor-editor-active) header #elementor-header-top-sticky {
  opacity: 0;
  z-index: -1;
  visibility: hidden;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  -webkit-transform: translate(0px, -140px);
  -moz-transform: translate(0px, -140px);
  -ms-transform: translate(0px, -140px);
  transform: translate(0px, -140px);
  transition: all 0.4s ease-out;
}
body:not(.elementor-editor-active) header #elementor-header-top-sticky.visible {
  opacity: 1;
  z-index: 11;
  visibility: visible;
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  -ms-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}
@media (min-width: 1025px) {
  body:not(.elementor-editor-active) header #elementor-header-top-mobile {
    display: none;
  }
}
body:not(.elementor-editor-active).tm-header-sticky-mobile header #elementor-header-top-mobile, body:not(.elementor-editor-active).tm-header-sticky-mobile-always header #elementor-header-top-mobile {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  opacity: 1;
  display: block;
  visibility: visible;
  transition: all 0.4s ease-out;
}
@media (min-width: 1025px) {
  body:not(.elementor-editor-active).tm-header-sticky-mobile header #elementor-header-top-mobile, body:not(.elementor-editor-active).tm-header-sticky-mobile-always header #elementor-header-top-mobile {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}
body:not(.elementor-editor-active).tm-header-sticky-mobile header #elementor-header-top-mobile.scrolling-down, body:not(.elementor-editor-active).tm-header-sticky-mobile-always header #elementor-header-top-mobile.scrolling-down {
  position: fixed;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
body:not(.elementor-editor-active).tm-header-sticky-mobile header #elementor-header-top-mobile.visible, body:not(.elementor-editor-active).tm-header-sticky-mobile-always header #elementor-header-top-mobile.visible {
  position: fixed;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/*
 * header-menuzord.scss
 * -----------------------------------------------
*/
/* 1 - MENU CONTAINER
======================================*/
.menuzord,
.menuzord * {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.menuzord {
  padding: 0 30px;
  position: relative;
}
.menuzord a {
  -o-transition: color 0.3s linear, background 0.3s linear;
  -moz-transition: color 0.3s linear, background 0.3s linear;
  -webkit-transition: color 0.3s linear, background 0.3s linear;
  transition: color 0.3s linear, background 0.3s linear;
}

.menuzord-menu.scrollable > .scrollable-fix {
  display: none;
}

/* 2 - BRAND
======================================*/
.menuzord-brand {
  display: inline-block;
  color: var(--headings-color);
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  font-family: var(--heading-font-family);
}

.menuzord-brand img {
  width: var(--menuzord-brand-width);
}

/* 3 - MENU
======================================*/
.menuzord-menu {
  margin: 0;
  padding: 0;
  float: left;
  list-style: none;
}
.menuzord-menu > li {
  display: inline-block;
  float: left;
}
@media (min-width: 1025px) {
  .menuzord-menu > li {
    padding: 20px 0;
  }
}
.menuzord-menu > li > a {
  padding: 7px 16px;
  display: inline-block;
  text-decoration: none;
  color: var(--default-header-menu-color);
  outline: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
.menuzord-menu > li > .megamenu {
  top: 100%;
}
.menuzord-menu ul.dropdown {
  top: 100%;
}
.menuzord-menu ul.dropdown li ul.dropdown {
  top: 0;
}

.menuzord-menu > li.active > a,
.menuzord-menu > li:hover > a {
  color: var(--theme-color-dark);
}

/* 4 - DROPDOWN
======================================*/
.menuzord-menu ul.dropdown,
.menuzord-menu ul.dropdown li ul.dropdown {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  position: absolute;
  z-index: 99;
  min-width: 230px;
  background: var(--theme-color-white);
}

.menuzord-menu ul.dropdown li {
  clear: both;
  width: 100%;
  border: 0 none;
  position: relative;
  display: block;
}
.menuzord-menu ul.dropdown li ul.dropdown {
  left: 100%;
}
.menuzord-menu ul.dropdown li ul.dropdown.dropdown-left {
  left: -100%;
}
.menuzord-menu ul.dropdown li a {
  width: 100%;
  background: none;
  text-decoration: none;
  display: inline-block;
  float: left;
  clear: both;
  position: relative;
  outline: 0;
}
.menuzord-menu ul.dropdown li:hover > a {
  padding-left: 28px;
  padding-right: 19px;
  color: var(--theme-color-dark);
}
.menuzord-menu ul.dropdown.dropdown-left {
  left: none;
}

/* 5 - DROPDOWN/MEGAMENU INDICATORS
======================================*/
.menuzord-menu li .indicator {
  margin-left: 0;
  margin-right: 0;
}
.menuzord-menu > li > a .indicator {
  display: none;
}

@media (min-width: 1025px) {
  .menuzord-menu li ul.dropdown li .indicator {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 15px;
    line-height: 1;
  }
}
/* 6 - MEGAMENU
======================================*/
.menuzord-menu > li > .megamenu {
  position: absolute;
  display: none;
  z-index: 99;
}
.menuzord-menu > li > .megamenu.megamenu-half-width {
  width: 50%;
  left: auto;
}
.menuzord-menu > li > .megamenu.megamenu-quarter-width {
  width: 25%;
  left: auto;
}
.menuzord-menu > li > .megamenu .megamenu-row {
  width: 100%;
  margin: 0 auto;
}
.menuzord-menu > li > .megamenu .megamenu-row:after {
  clear: both;
}
.menuzord-menu > li > .megamenu .megamenu-row [class*=col]:first-child {
  margin-left: 0;
}

.menuzord-menu > li > .megamenu .megamenu-row:before,
.menuzord-menu > li > .megamenu .megamenu-row:after {
  display: table;
  content: "";
  line-height: 0;
}

.menuzord-menu > li > .megamenu .megamenu-row .col1,
.menuzord-menu > li > .megamenu .megamenu-row .col2,
.menuzord-menu > li > .megamenu .megamenu-row .col3,
.menuzord-menu > li > .megamenu .megamenu-row .col4,
.menuzord-menu > li > .megamenu .megamenu-row .col5,
.menuzord-menu > li > .megamenu .megamenu-row .col6,
.menuzord-menu > li > .megamenu .megamenu-row .col7,
.menuzord-menu > li > .megamenu .megamenu-row .col8,
.menuzord-menu > li > .megamenu .megamenu-row .col9,
.menuzord-menu > li > .megamenu .megamenu-row .col10,
.menuzord-menu > li > .megamenu .megamenu-row .col11,
.menuzord-menu > li > .megamenu .megamenu-row .col12 {
  display: block;
  min-height: 20px;
}

/* 9 - SHOW/HIDE BUTTON (MOBILE MODE)
======================================*/
@media (min-width: 1025px) {
  .menuzord .showhide {
    display: none;
  }
}

/* Show/hide button icon */
/* 10 - ICONS (parent menu items)
======================================*/
.menuzord-menu > li > a > i {
  margin: 0 5px 0 0;
  font-size: 18px;
  display: inline-block;
  line-height: 1;
  font-family: "Font Awesome 5 Free";
}

/* 14 - MOBILE MODE (RESPONSIVE MODE)
======================================*/
@media (min-width: 1025px) {
  header#header.header .top-primary-nav-clone-parent {
    display: none !important;
  }
}
@media (max-width: 1024px) {
  /* Responsive menu container */
  .menuzord-responsive.menuzord {
    padding: 0;
  }
  header#header.header .nav-side-icon-parent {
    display: none;
  }
  /* Brand */
  .menuzord-responsive .menuzord-brand {
    margin: 8px 30px 10px 20px;
    font-size: 20px;
    line-height: 1.55;
  }
  .elementor-element .menuzord-responsive .showhide {
    margin-right: 5px;
  }
  /* Menu */
  .menuzord-responsive .menuzord-menu {
    width: 100%;
    float: left !important;
    margin-top: 5px;
    padding: 0;
    display: none;
  }
  .elementor-element .menuzord-responsive .menuzord-menu {
    padding: 0 5px 5px;
    display: block;
  }
  /* scrollable menu*/
  .menuzord-responsive .menuzord-menu.scrollable {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .menuzord-responsive .menuzord-menu.scrollable > .scrollable-fix {
    display: block;
  }
  /* Menu items */
  .menuzord-responsive .menuzord-menu > li {
    width: 100%;
    display: block;
    position: relative;
  }
  .menuzord-responsive .menuzord-menu > li > a {
    width: 100%;
    padding: 12px 20px;
    display: block;
    border-bottom: solid 1px var(--mobile-menu-item-link-bg-border-color);
  }
  .menuzord-responsive .menuzord-menu > li:first-child > a {
    border-top: solid 1px var(--mobile-menu-item-link-bg-border-color);
  }
  /* Dropdown */
  .menuzord-responsive .menuzord-menu ul.dropdown,
.menuzord-responsive .menuzord-menu ul.dropdown li ul.dropdown {
    width: 100%;
    left: 0;
    position: static;
    border: none;
    background: var(--theme-color-white);
    float: left;
  }
  /* Dropdown items */
  .menuzord-responsive .menuzord-menu ul.dropdown li {
    position: relative;
  }
  .menuzord-responsive .menuzord-menu ul.dropdown li a {
    border-bottom: solid 1px #f0f0f0;
  }
  .menuzord-responsive .menuzord-menu.menuzord-indented > li > ul.dropdown > li > a {
    padding-left: 30px !important;
  }
  .menuzord-responsive .menuzord-menu.menuzord-indented > li > ul.dropdown > li > ul.dropdown > li > a {
    padding-left: 50px !important;
  }
  .menuzord-responsive .menuzord-menu.menuzord-indented > li > ul.dropdown > li > ul.dropdown > li > ul.dropdown > li > a {
    padding-left: 70px !important;
  }
  /* Dropdown/megamenu indicators */
  .menuzord-responsive .menuzord-menu li .indicator {
    width: 27px;
    height: 27px;
    position: absolute;
    right: 15px;
    top: 13.5px;
    left: auto;
    font-size: 12px;
    text-align: center;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mobile-menu-item-indicator-bg-color);
    color: var(--mobile-menu-item-indicator-text-color);
    border-radius: 5px;
    transform: rotate(-90deg);
    transition: all 0.3s ease;
  }
  .menuzord-responsive .menuzord-menu li .indicator.active {
    background: var(--theme-color1);
    color: var(--theme-color1-text-color);
    transform: rotate(0deg);
  }
  .menuzord-responsive .menuzord-menu li ul.dropdown li .indicator {
    transform: rotate(0);
  }
  .menuzord-responsive .menuzord-menu li ul.dropdown li .indicator.active {
    transform: rotate(90deg);
  }
  /* Megamenu */
  .menuzord-responsive .menuzord-menu .megamenu .megamenu-row {
    display: block;
  }
  .menuzord-responsive .menuzord-menu > li > .megamenu {
    width: 100% !important;
    left: 0 !important;
    position: static;
    border-top: none;
    border-bottom: solid 1px #f0f0f0;
  }
  .menuzord-responsive .menuzord-menu > li > .megamenu .megamenu-row [class*=col] {
    float: none;
    display: block;
    width: 100% !important;
    margin-left: 0;
    margin-top: 15px;
  }
  /* Search field */
  .menuzord-responsive .menuzord-menu > li.search form {
    width: 100%;
    margin: 4px 0;
    padding: 10px 16px !important;
  }
  .menuzord-responsive .menuzord-menu > li.search form input[type=text] {
    width: 100%;
  }
  /* Tabs */
  .menuzord-responsive .menuzord-tabs-nav {
    width: 100%;
  }
  .menuzord-responsive .menuzord-tabs-content {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  header#header .header-nav .header-nav-container .top-primary-nav-clone-parent .menuzord-menu {
    padding-bottom: 10px;
  }
}
/*
 * header-other.scss
 * -----------------------------------------------
*/
header#header .header-nav .header-nav-container {
  background-color: var(--default-header-bg-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/*
 * header-nav.scss
 * -----------------------------------------------
*/
.header-nav .header-nav-wrapper .menuzord-container {
  transition: all 0.3s ease;
}
.header-nav .header-nav-wrapper.navbar-scrolltofixed {
  min-width: 100%;
  transition: all 0.3s ease;
}
.header-nav .header-nav-col-row > .menuzord-primary-nav .showhide {
  display: none !important;
}
.header-nav .header-nav-col-row > .menuzord-side-icon-list {
  display: none;
}
@media (max-width: 1024px) {
  .header-nav .header-nav-col-row > .menuzord-brand-parent {
    flex: 0 0 auto;
    width: auto;
  }
  .header-nav .header-nav-col-row > .menuzord-mobile-showhide {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: end;
  }
  .header-nav .header-nav-col-row > .menuzord-primary-nav {
    flex-basis: 100%;
  }
}

.menuzord-primary-nav {
  min-height: 1px;
}
.menuzord-primary-nav.menuzord {
  padding: 0;
}
.menuzord-primary-nav .menuzord-menu li a {
  transition: all 0.3s ease;
}
.menuzord-primary-nav .menuzord-menu > li {
  position: relative;
}
.menuzord-primary-nav .menuzord-menu > li > a {
  font-size: 1rem;
  padding-left: 16px;
  padding-right: 16px;
}
@media (max-width: 1199.98px) {
  .menuzord-primary-nav .menuzord-menu > li > a {
    padding-left: 0;
    padding-right: 16px;
  }
}
.menuzord-primary-nav .menuzord-menu > li > a .indicator {
  right: 0;
}
.menuzord-primary-nav .menuzord-menu ul.dropdown {
  border: 1px solid var(--theme-color-silver);
  box-shadow: 1px 1px 35px rgba(0, 0, 0, 0.08);
}
.menuzord-primary-nav .menuzord-menu ul.dropdown li {
  margin: 0;
  padding-left: 0;
}
@media (min-width: 1025px) {
  .menuzord-primary-nav .menuzord-menu ul.dropdown li {
    border-bottom: 1px solid var(--theme-color-silver);
  }
}
.menuzord-primary-nav .menuzord-menu ul.dropdown li a {
  color: var(--theme-color-dark);
  font-size: 1rem;
  padding: 12px 25px 12px 22px;
}
.menuzord-primary-nav .menuzord-menu ul.dropdown li a:hover {
  background-color: var(--theme-color-gray);
  padding-left: 25px;
}
.menuzord-primary-nav .menuzord-menu ul.dropdown li a:after {
  content: "";
  display: inline-block;
  height: 0;
  width: 4px;
  vertical-align: middle;
  margin-right: 0;
  opacity: 0;
  visibility: hidden;
  background: var(--theme-color1);
  -webkit-transition: height 0.4s, opacity 0.4s ease, top 0.4s ease;
  -o-transition: height 0.4s, opacity 0.4s ease, top 0.4s ease;
  -moz-transition: height 0.4s, opacity 0.4s ease, top 0.4s ease;
  transition: height 0.4s, opacity 0.4s ease, top 0.4s ease;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.menuzord-primary-nav .menuzord-menu ul.dropdown li:hover > a {
  background: var(--theme-color-gray) none repeat scroll 0 0;
  color: var(--theme-color-dark);
}
.menuzord-primary-nav .menuzord-menu ul.dropdown li:hover > a:after {
  top: 0;
  left: -1px;
  height: -webkit-calc(100% + 1px);
  height: -moz-calc(100% + 1px);
  height: calc(100% + 1px);
  opacity: 1;
  visibility: visible;
}
.menuzord-primary-nav .menuzord-menu ul.dropdown li a.tm-submenu-title {
  font-size: 1rem;
  font-family: var(--heading-font-family);
  font-weight: var(--headings-font-weight-h5);
  color: #222;
}
.menuzord-primary-nav .menuzord-menu > li > ul.dropdown {
  border-top: 0;
  background-color: var(--theme-color-white);
}
.menuzord-primary-nav .menuzord-menu .tm-menu-badge {
  display: inline;
  font-size: 65%;
  line-height: 1;
  text-transform: uppercase;
  padding: 0 4px 0px 4px;
  margin: 0 0 0 5px;
  background-color: #f44336;
  color: #fff;
}
@media (max-width: 1024px) {
  .menuzord-primary-nav.menuzord-responsive .menuzord-menu > li > a {
    color: var(--mobile-menu-item-link-text-color);
    background-color: var(--mobile-menu-item-link-bg-color);
    border-bottom-color: var(--mobile-menu-item-link-bg-border-color);
  }
  .menuzord-primary-nav.menuzord-responsive .menuzord-menu ul.dropdown {
    border-top: 0;
    border-bottom: 0;
    border-color: var(--mobile-menu-item-link-bg-border-color);
  }
  .menuzord-primary-nav.menuzord-responsive .menuzord-menu ul.dropdown li a {
    color: var(--mobile-menu-item-link-text-color);
    background-color: var(--mobile-menu-item-link-bg-color);
    border-bottom-color: var(--mobile-menu-item-link-bg-border-color);
  }
  .menuzord-primary-nav.menuzord-responsive .menuzord-menu .widget {
    margin-bottom: 15px;
  }
  .menuzord-primary-nav.menuzord-responsive .menuzord-menu .megamenu .megamenu-row [class*=col] {
    margin-top: 0;
  }
}

#top-primary-nav-clone .showhide,
#top-primary-nav-sticky-clone .showhide {
  display: none !important;
}
#top-primary-nav-clone .menuzord-menu,
#top-primary-nav-sticky-clone .menuzord-menu {
  display: none;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  #top-primary-nav-clone .menuzord-menu,
#top-primary-nav-sticky-clone .menuzord-menu {
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  #top-primary-nav-clone .menuzord-menu,
#top-primary-nav-sticky-clone .menuzord-menu {
    margin-bottom: 0;
  }
}

header#header .menuzord-brand {
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  header#header .menuzord-brand {
    margin-right: 20px;
    padding: 10px 0;
  }
}
@media (max-width: 767.98px) {
  header#header .menuzord-brand {
    margin-right: 0;
  }
}
header#header .menuzord-brand img {
  width: auto;
  transition: all 0.3s ease;
}

/* -------- Megamenu-Row ---------- */
.menuzord-menu > li > .megamenu {
  background: none;
  padding: 0;
}
@media (min-width: 1200px) {
  .menuzord-menu > li > .megamenu {
    min-width: 400px;
  }
}
.menuzord-menu > li > .megamenu.megamenu-three-quarter-width {
  left: auto;
  width: 75%;
}
.menuzord-menu > li > .megamenu .megamenu-row {
  border-top: 3px solid var(--theme-color1);
  background: #fcfcfc;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  display: flex;
}
.menuzord-menu > li > .megamenu .megamenu-row .col1 {
  width: 8.33333333%;
}
.menuzord-menu > li > .megamenu .megamenu-row .col2 {
  width: 16.66666667%;
}
.menuzord-menu > li > .megamenu .megamenu-row .col3 {
  width: 25%;
}
.menuzord-menu > li > .megamenu .megamenu-row .col4 {
  width: 33.333%;
}
.menuzord-menu > li > .megamenu .megamenu-row .col5 {
  width: 41.66666667%;
}
.menuzord-menu > li > .megamenu .megamenu-row .col6 {
  width: 50%;
}
.menuzord-menu > li > .megamenu .megamenu-row .col7 {
  width: 58.33333333%;
}
.menuzord-menu > li > .megamenu .megamenu-row .col8 {
  width: 66.66666667%;
}
.menuzord-menu > li > .megamenu .megamenu-row .col9 {
  width: 75%;
}
.menuzord-menu > li > .megamenu .megamenu-row .col10 {
  width: 83.33333333%;
}
.menuzord-menu > li > .megamenu .megamenu-row .col11 {
  width: 91.66666667%;
}
.menuzord-menu > li > .megamenu .megamenu-row .col12 {
  width: 100%;
}
.menuzord-menu > li > .megamenu .megamenu-row > [class^=col] {
  float: none;
  margin-left: 0;
  border-right: 1px solid #eee;
  background-repeat: no-repeat;
  background-position: bottom right;
}
@media (min-width: 1200px) {
  .menuzord-menu > li > .megamenu .megamenu-row > [class^=col] {
    padding: 15px 10px;
    border-right: 1px solid #eee;
  }
}
@media (max-width: 1199.98px) {
  .menuzord-menu > li > .megamenu .megamenu-row > [class^=col] {
    padding: 10px 10px;
    border-bottom: 1px solid #eee;
  }
}
.menuzord-menu > li > .megamenu .megamenu-row > [class^=col]:last-child {
  border-right: none;
}
.menuzord-menu > li > .megamenu .megamenu-row li {
  border: 0 none;
  clear: both;
  margin: 0;
  padding: 2px;
  position: relative;
  width: 100%;
}
.menuzord-menu > li > .megamenu .megamenu-row li a {
  color: #777;
  display: block;
  font-size: 1rem;
  line-height: 1.65;
  padding: 5px 12px 5px;
}
.menuzord-menu > li > .megamenu .megamenu-row li a i {
  color: #777;
  padding-right: 6px;
}
.menuzord-menu > li > .megamenu .megamenu-row li a.tm-submenu-title {
  font-size: 1rem;
  font-family: var(--heading-font-family);
  font-weight: var(--headings-font-weight-h5);
  color: #222;
}
.menuzord-menu > li > .megamenu .megamenu-row li.active > a:not(.tm-submenu-title), .menuzord-menu > li > .megamenu .megamenu-row li:hover > a:not(.tm-submenu-title) {
  color: #111;
  padding-left: 15px;
  background-color: #f5f5f5;
}
.menuzord-menu > li > .megamenu .megamenu-row li.active > a:not(.tm-submenu-title) i, .menuzord-menu > li > .megamenu .megamenu-row li:hover > a:not(.tm-submenu-title) i {
  color: #555;
  padding-right: 6px;
}
.menuzord-menu > li > .megamenu .megamenu-row .widget {
  margin-bottom: 0;
}

/*
 * header-nav.scss
 * -----------------------------------------------
*/
.admin-bar .tm-header-menu {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar .tm-header-menu {
    top: 46px;
  }
}

.tm-close {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 9px solid transparent;
  color: #777;
  width: 36px;
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.tm-close:before, .tm-close:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  transform-origin: 50% 50%;
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-color: #1b1b1b;
}
.tm-close:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tm-close:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.tm-close:hover:before, .tm-close:hover:after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

@media (max-width: 1024px) {
  #tm-header-default,
#elementor-header-top-mobile {
    position: relative;
    box-shadow: 0 0px 15px rgba(0, 0, 0, 0.08);
    background-color: var(--mobile-menu-bg-color);
  }
  [data-tm-layout=dark] #tm-header-default,
[data-tm-layout=dark] #elementor-header-top-mobile {
    box-shadow: 0 0px 15px rgba(255, 255, 255, 0.18);
  }
  #tm-header-default .tm-header-main,
#elementor-header-top-mobile .tm-header-main {
    position: relative;
  }
  #tm-header-default .tm-header-branding,
#elementor-header-top-mobile .tm-header-branding {
    min-height: 50px;
    align-items: center;
    display: flex;
  }
  #tm-header-default .tm-header-branding img,
#elementor-header-top-mobile .tm-header-branding img {
    height: 65px;
  }
  #tm-header-default #tm-nav-mobile,
#elementor-header-top-mobile #tm-nav-mobile {
    display: block;
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }
  #tm-header-default #tm-nav-mobile .tm-mobile-meta-item,
#elementor-header-top-mobile #tm-nav-mobile .tm-mobile-meta-item {
    margin-left: 10px;
  }
  .tm-nav-mobile-button {
    width: 34px;
    height: 20px;
    position: relative;
    cursor: pointer;
  }
  .tm-nav-mobile-button:before, .tm-nav-mobile-button:after,
.tm-nav-mobile-button span {
    content: "";
    background-color: var(--mobile-menu-hamburger-color);
    height: 2px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .tm-nav-mobile-button:before {
    top: 0;
    width: 24px;
  }
  .tm-nav-mobile-button:after {
    bottom: 0;
    width: 24px;
  }
  .tm-nav-mobile-button span {
    top: 9px;
    width: 100%;
  }
  .tm-nav-mobile-button.active:before, .tm-nav-mobile-button.active:after {
    width: 100%;
  }
  .tm-header-menu-backdrop {
    z-index: 998;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    opacity: 0;
    visibility: hidden;
  }
  body:not(.elementor-editor-active) .tm-header-menu {
    position: fixed;
    height: 100vh;
    width: 350px;
    top: 0;
    left: 0;
    bottom: 0;
    margin: 0;
    overflow: hidden;
    z-index: 999;
    transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    visibility: hidden;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    background-color: var(--theme-color-white);
    overflow-y: scroll;
  }
  body:not(.elementor-editor-active) .tm-header-menu.active {
    visibility: visible;
    opacity: 1;
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
  body:not(.elementor-editor-active) .tm-header-menu.active + .tm-header-menu-backdrop {
    opacity: 1;
    visibility: visible;
  }
  .tm-header-menu-scroll {
    padding: 55px 0 40px;
  }
  .tm-menu-close {
    background-color: rgba(0, 0, 0, 0.03);
    position: absolute;
    top: 0;
    right: 0;
    border-radius: 0px;
  }
  #elementor-header-top-mobile .tm-header-elementor-main,
#elementor-header-top-mobile .tm-header-elementor-sticky {
    display: none;
  }
  #elementor-header-top-mobile #tm-header-mobile {
    display: block;
    box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
    position: relative;
    z-index: 999;
  }
}
/*
 * header-type.scss
 * -----------------------------------------------
*/
@media (max-width: 1024px) {
  header#header.header-nav-left .header-nav-col-row {
    padding: 10px 0;
  }
  header#header.header-nav-left .header-nav-col-row :first-child {
    order: 1;
  }
}
header#header.header-layout-type-header-default .menuzord-brand, header#header.header-layout-type-header-side-panel-nav .menuzord-brand {
  margin-bottom: 15px;
  margin-top: 15px;
}
@media (max-width: 991.98px) {
  header#header.header-layout-type-header-default .menuzord-brand, header#header.header-layout-type-header-side-panel-nav .menuzord-brand {
    margin-bottom: 5px;
    margin-top: 5px;
  }
}
header#header.header-layout-type-header-default .menuzord-brand img, header#header.header-layout-type-header-side-panel-nav .menuzord-brand img {
  width: var(--menuzord-brand-width);
  height: auto;
}
@media (max-width: 991.98px) {
  header#header.header-layout-type-header-default .menuzord-brand img, header#header.header-layout-type-header-side-panel-nav .menuzord-brand img {
    width: var(--menuzord-brand-width-responsive);
  }
}
@media (max-width: 767.98px) {
  header#header.header-layout-type-header-side-panel-nav .header-nav-container {
    padding: 0 20px;
  }
}

[data-tm-layout=dark] body header#header .header-nav {
  border-top-color: #151515;
}

[data-tm-layout=dark] body header#header .header-nav {
  border-top-color: #151515;
}

/*
 * header-common.scss
 * -----------------------------------------------
*/
header#header .menuzord-brand .logo-mobile-version {
  display: none;
}
@media (max-width: 1024px) {
  header#header .tm-header-branding .menuzord-brand .logo-mobile-version {
    display: inline-block;
  }
  header#header .tm-header-branding .menuzord-brand .logo-default {
    display: none;
  }
}

body.switchable-logo header#header .menuzord-brand .logo-primary {
  display: inline-block;
}
body.switchable-logo header#header .menuzord-brand .logo-on-sticky {
  display: none;
}
body.switchable-logo header#header #elementor-header-top-sticky.visible .menuzord-brand .logo-primary {
  display: none;
}
body.switchable-logo header#header #elementor-header-top-sticky.visible .menuzord-brand .logo-on-sticky {
  display: inline-block;
}

/*
 * _header-elementor-megamenu.scss
 * -----------------------------------------------
*/
.menuzord-menu .tm-elementor-megamenu > ul.dropdown, .menuzord-menu .tm-elementor-megamenu > .megamenu:not(.elementor-megamenu-wrapper) {
  display: none !important;
}

/*
 *  side-push-panel.scss
 * -----------------------------------------------
*/
.side-push-panel {
  overflow-x: hidden;
  /* -------- Has Side Panel ---------- */
}
.side-push-panel.has-side-panel .menuzord .showhide {
  float: left;
}

/* -------- Body Overlay ---------- */
.has-side-panel .side-panel-body-overlay {
  background-color: rgba(17, 17, 17, 0.8);
  height: 100vh;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1111;
  transition: all 0.5s ease;
}

.has-side-panel.side-panel-open .side-panel-body-overlay {
  opacity: 1;
  pointer-events: auto;
}

.side-panel-open:not(.device-xxs):not(.device-xs):not(.device-sm) .side-panel-body-overlay:hover {
  cursor: url("/wp-content/themes/solarixia/assets/images/close.png") 15 15, default;
}

/* -------- Side Panel ---------- */
.side-panel-container {
  -webkit-backface-visibility: hidden;
  background-color: var(--theme-color-white);
  height: 100vh;
  overflow: hidden;
  position: fixed;
  right: -480px;
  top: 0;
  text-align: left;
  width: 480px;
  z-index: 1112;
  transition: all 0.4s ease;
}
@media (max-width: 991.98px) {
  .side-panel-container {
    width: 300px;
  }
}
.side-panel-container ul {
  padding-left: 0;
}
.side-panel-container .side-panel-wrap {
  bottom: 0;
  height: 100%;
  left: 0;
  overflow: auto;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.side-panel-container .widget.widget-side-push-panel {
  width: 100%;
}
.side-panel-container .widget.widget-side-push-panel .textwidget {
  color: var(--theme-color-dark);
}
.side-panel-container .widget.widget-side-push-panel.widget-horizontal-row {
  margin-top: 0;
  margin-bottom: 0;
}
.side-panel-container .widget.widget-side-push-panel.widget-image-widget .thumb {
  margin-bottom: 20px;
}

body.rtl .side-panel-container {
  left: auto !important;
}

.side-panel-open .side-panel-container {
  right: 0;
}

.side-panel-left .side-panel-container {
  left: -480px;
  right: auto;
}

.side-panel-left.side-panel-open .side-panel-container {
  left: 0;
  right: auto;
}

.device-touch .side-panel-container .side-panel-wrap {
  overflow-y: scroll;
}

/* -------- Side-Panel-Trigger And Close ---------- */
.side-panel-trigger {
  cursor: pointer;
  display: block;
  z-index: 11;
}
.side-panel-trigger-close {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
.side-panel-trigger-close .side-panel-trigger-icon {
  font-size: 18px;
  color: var(--theme-color-dark);
  margin-top: 20px;
  margin-right: 15px;
  background: var(--theme-color-silver);
  padding: 13px 16px 14px 16px;
  border-radius: 30px;
  transition: all 0.4s ease;
}
.side-panel-trigger-close .side-panel-trigger-icon:hover {
  color: var(--theme-color1-text-color);
  background: var(--theme-color1);
}

/* -------- Transition ---------- */
.side-push-panel.fullwidth-page #wrapper,
.side-push-panel.fullwidth-page header .header-nav-wrapper.tm-sticky-menu .container {
  transition: all 0.4s ease;
}

/* Hamburger Menu */
.hamburger-box {
  display: inline-block;
  height: 20px;
  position: relative;
  width: 40px;
  padding: 12px 15px;
}
.hamburger-box .hamburger-inner {
  margin-left: 3px;
  top: 16px;
}
.hamburger-box .hamburger-inner,
.hamburger-box .hamburger-inner:after,
.hamburger-box .hamburger-inner:before {
  background-color: #444;
  border-radius: 4px;
  height: 2px;
  position: absolute;
  width: 24px;
  transition: all 0.15s ease;
}
.hamburger-box .hamburger-inner:after,
.hamburger-box .hamburger-inner:before {
  display: block;
  content: "";
}
.hamburger-box .hamburger-inner:before {
  top: -9px;
}
.hamburger-box .hamburger-inner:after {
  bottom: -9px;
}
.hamburger-box .hamburger-inner {
  width: 16px;
}
.hamburger-box .hamburger-inner:after {
  width: 24px;
}
.hamburger-box .hamburger-inner:before {
  width: 24px;
}
.hamburger-box:hover .hamburger-inner,
.hamburger-box:hover .hamburger-inner:after,
.hamburger-box:hover .hamburger-inner:before {
  height: 2px;
  background-color: var(--theme-color-dark);
}
.hamburger-box:hover .hamburger-inner {
  width: 24px;
}
.hamburger-box:hover .hamburger-inner:after {
  width: 16px;
}
.hamburger-box:hover .hamburger-inner:before {
  width: 16px;
}

body.elementor-editor-active .side-panel-container {
  height: auto;
  position: relative;
  right: 0;
  top: 0;
  text-align: left;
  width: 480px;
  overflow: visible;
}
body.elementor-editor-active .side-panel-container .side-panel-wrap {
  position: relative;
  overflow: inherit;
}

/*
 * header-search-form.scss
 * -----------------------------------------------
*/
.top-nav-search-btn .search-icon {
  color: var(--theme-color-dark);
  font-size: 18px;
  line-height: 1;
  padding: 3px;
  transition: all 0.3s ease;
}
.top-nav-search-btn .search-icon:hover {
  color: var(--hover-theme-color);
}
@media (max-width: 1024px) {
  .top-nav-search-btn {
    margin-top: 12px;
  }
}

.top-nav-search-form {
  background: rgba(15, 15, 15, 0.993);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  visibility: hidden;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: scale(0.9);
  z-index: -1;
  transition: all 0.3s ease;
}
.top-nav-search-form.active {
  transform: scale(1);
  z-index: 111;
  opacity: 1;
  visibility: visible;
}
.top-nav-search-form .nav-search-inner {
  text-align: center;
}
.top-nav-search-form form {
  margin-bottom: 0;
}
.top-nav-search-form .input-group {
  color: #fff;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.1);
}
.top-nav-search-form input[type=text] {
  -webkit-appearance: none;
  display: inline-block;
  padding: 15px 20px 15px 0;
  box-shadow: none;
  outline: none;
  border: 0;
  background: transparent;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  position: relative;
  top: 1px;
  color: #fff;
  font-size: 36px;
  width: 450px;
}
@media (max-width: 767.98px) {
  .top-nav-search-form input[type=text] {
    font-size: 26px;
    width: 250px;
  }
}
.top-nav-search-form input[type=text]::-webkit-input-placeholder {
  color: #fff;
}
.top-nav-search-form input[type=text]::placeholder {
  color: #fff;
}
.top-nav-search-form button {
  position: relative;
  white-space: nowrap;
  margin-left: -1px;
  z-index: 2;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  -webkit-appearance: button;
  border: 0;
  background: transparent;
  cursor: pointer;
  outline: none;
  border-radius: 0;
  padding: 0 0 0 20px;
}
.top-nav-search-form button i {
  color: #fff;
  font-size: 28px;
  line-height: 0;
  transition: all 0.3s ease;
}
@media (max-width: 767.98px) {
  .top-nav-search-form button i {
    font-size: 20px;
  }
}
.top-nav-search-form button i:hover {
  color: var(--hover-theme-color);
}
.top-nav-search-form .close-search-btn {
  color: #eee;
  font-size: 28px;
  line-height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  position: fixed;
  right: 30px;
  top: 30px;
}
.top-nav-search-form .close-search-btn:hover {
  color: var(--hover-theme-color);
}

html.html-search-block-active {
  overflow: hidden;
}

/*
 * page-title.scss
 * -----------------------------------------------
*/
.tm-page-title {
  background-color: #0b0706;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
}
.tm-page-title:before {
  background-color: transparent;
  background-image: linear-gradient(310deg, rgba(30, 30, 30, 0) 0%, rgba(0, 0, 0, 0.9098039216) 100%);
  opacity: 0.9;
}
.tm-page-title .container,
.tm-page-title .container-fluid {
  padding-top: 50px;
  padding-bottom: 50px;
}
.tm-page-title .padding-medium {
  padding-top: 100px;
  padding-bottom: 120px;
}
.tm-page-title .title {
  color: #fff;
  margin-bottom: 20px;
  margin-top: 0;
  font-size: var(--h1-font-size);
  text-transform: capitalize;
}
@media (max-width: 767.98px) {
  .tm-page-title .title {
    font-size: var(--h1-font-size-mob);
    line-height: 1.3;
  }
}
.tm-page-title .title b,
.tm-page-title .title strong {
  color: #f5f5f5;
}
.tm-page-title .subtitle {
  color: #aaa;
  font-weight: 600;
  margin: 0;
  margin-top: 10px;
}
.tm-page-title.page-title-standard .breadcrumbs {
  margin-top: 10px;
}
.tm-page-title.page-title-standard .subtitle + .breadcrumbs {
  margin-top: 15px;
}

.tm-page-title-elementor .breadcrumbs,
.tm-page-title .breadcrumbs {
  display: inline-block;
  margin: 0;
  padding: 0;
  background-color: transparent;
  font-size: 18px;
}
.tm-page-title-elementor .breadcrumbs > li,
.tm-page-title .breadcrumbs > li {
  display: inline-block;
  padding: 0;
  float: none;
}
.tm-page-title-elementor .breadcrumbs .trail-item a:not(.btn),
.tm-page-title .breadcrumbs .trail-item a:not(.btn) {
  color: #fff;
}
.tm-page-title-elementor .breadcrumbs .trail-item a:not(.btn):hover,
.tm-page-title .breadcrumbs .trail-item a:not(.btn):hover {
  color: var(--theme-color1);
}
.tm-page-title-elementor .breadcrumbs .trail-item:not(:last-child),
.tm-page-title .breadcrumbs .trail-item:not(:last-child) {
  margin-right: 20px;
  padding-right: 20px;
  position: relative;
}
.tm-page-title-elementor .breadcrumbs .trail-item:not(:last-child) .tm-breadcrumb-arrow-icon,
.tm-page-title .breadcrumbs .trail-item:not(:last-child) .tm-breadcrumb-arrow-icon {
  color: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.tm-page-title-elementor .breadcrumbs .trail-item.trail-end,
.tm-page-title .breadcrumbs .trail-item.trail-end {
  color: #ddd;
}
.tm-page-title-elementor .breadcrumbs .trail-item.trail-end a,
.tm-page-title .breadcrumbs .trail-item.trail-end a {
  color: #ddd;
}
.tm-page-title-elementor .breadcrumbs .trail-item.trail-end .tm-breadcrumb-arrow-icon,
.tm-page-title .breadcrumbs .trail-item.trail-end .tm-breadcrumb-arrow-icon {
  display: none;
}

.tm-page-title .breadcrumbs {
  font-size: 18px;
  text-align: center;
  display: inline-block;
  color: var(--theme-color1);
}
.tm-page-title .breadcrumbs > li {
  font-family: var(--heading-font-family);
}
.tm-page-title .breadcrumbs .trail-item a:not(.btn):hover {
  color: var(--theme-color1);
}

/*
 *  boxed-layout.scss
 * -----------------------------------------------
*/
body.container-970px .e-con {
  --container-max-width: 970px;
}
@media (min-width: 1000px) {
  body.container-970px .container,
body.container-970px .megamenu-fullwidth .megamenu-row {
    max-width: 970px;
    width: 970px;
  }
}
body.container-1230px .e-con {
  --container-max-width: 1230px;
}
@media (min-width: 1300px) {
  body.container-1230px .container,
body.container-1230px .megamenu-fullwidth .megamenu-row {
    max-width: 1230px;
    width: 1230px;
  }
}
body.container-1300px .e-con {
  --container-max-width: 1300px;
}
@media (min-width: 1400px) {
  body.container-1300px .container,
body.container-1300px .megamenu-fullwidth .megamenu-row {
    max-width: 1300px;
    width: 1300px;
  }
}
body.container-1340px .e-con {
  --container-max-width: 1340px;
}
@media (min-width: 1400px) {
  body.container-1340px .container,
body.container-1340px .megamenu-fullwidth .megamenu-row {
    max-width: 1340px;
    width: 1340px;
  }
}
body.container-1440px .e-con {
  --container-max-width: 1440px;
}
@media (min-width: 1500px) {
  body.container-1440px .container,
body.container-1440px .megamenu-fullwidth .megamenu-row {
    max-width: 1440px;
    width: 1440px;
  }
}
body.container-1500px .e-con {
  --container-max-width: 1500px;
}
@media (min-width: 1560px) {
  body.container-1500px .container,
body.container-1500px .megamenu-fullwidth .megamenu-row {
    max-width: 1500px;
    width: 1500px;
  }
}
body.container-1600px .e-con {
  --container-max-width: 1600px;
}
@media (min-width: 1660px) {
  body.container-1600px .container,
body.container-1600px .megamenu-fullwidth .megamenu-row {
    max-width: 1600px;
    width: 1600px;
  }
}
body.container-100pr .e-con {
  --container-max-width: 100%;
}
body.container-100pr .container,
body.container-100pr .container-fluid,
body.container-100pr .megamenu-fullwidth .megamenu-row {
  max-width: 100%;
  width: 100%;
}

/*
 * form.scss
 * -----------------------------------------------
*/
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin-left: -10px;
}

.select2 .selection .select2-selection {
  background-color: var(--form_control_common_bg);
  border: 1px solid var(--form_control_common_border);
  height: calc(1.8rem + 32px);
  padding: 14px 20px;
}
.select2 .selection .select2-selection .select2-selection__rendered {
  color: #686a6f;
  line-height: 30px;
  padding-left: 0;
  font-weight: normal;
  font-size: 1rem;
}
.select2 .selection .select2-selection .select2-selection__arrow {
  height: 100%;
  position: absolute;
  right: 6px;
  top: 0;
  width: 20px;
}

.form-control,
.input-text,
.comment-respond textarea,
.comment-respond input[type=email],
.comment-respond input[type=url],
.comment-respond input[type=text] {
  height: calc(1.8rem + 32px);
  padding: 14px 20px;
  outline: 0;
  background-color: var(--form_control_common_bg);
  border: 1px solid var(--form_control_common_border);
  color: var(--text-color);
  font-size: 1rem;
  width: 100%;
}
.form-control::placeholder,
.input-text::placeholder,
.comment-respond textarea::placeholder,
.comment-respond input[type=email]::placeholder,
.comment-respond input[type=url]::placeholder,
.comment-respond input[type=text]::placeholder {
  color: #686a6f;
  opacity: 1;
}
.form-control:-ms-input-placeholder,
.input-text:-ms-input-placeholder,
.comment-respond textarea:-ms-input-placeholder,
.comment-respond input[type=email]:-ms-input-placeholder,
.comment-respond input[type=url]:-ms-input-placeholder,
.comment-respond input[type=text]:-ms-input-placeholder {
  color: #686a6f;
}
.form-control::-ms-input-placeholder,
.input-text::-ms-input-placeholder,
.comment-respond textarea::-ms-input-placeholder,
.comment-respond input[type=email]::-ms-input-placeholder,
.comment-respond input[type=url]::-ms-input-placeholder,
.comment-respond input[type=text]::-ms-input-placeholder {
  color: #686a6f;
}
.form-control:focus,
.input-text:focus,
.comment-respond textarea:focus,
.comment-respond input[type=email]:focus,
.comment-respond input[type=url]:focus,
.comment-respond input[type=text]:focus {
  color: var(--text-color);
  background-color: var(--form_control_common_bg);
}

.form-control:active, .form-control:focus,
.input-text:active,
.input-text:focus {
  box-shadow: 0 0 0 1px var(--theme-color1);
  border-color: var(--theme-color1);
}

textarea.form-control,
.comment-respond textarea {
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}

/*
 * isotope-layout.scss
 * -----------------------------------------------
*/
/* -------- Isotop Filter ---------- */
.isotope-layout-filter,
.carousel-layout-filter {
  margin-bottom: 30px;
}
.isotope-layout-filter a,
.carousel-layout-filter a {
  transition: all 0.3s ease-in-out 0s;
  color: #777;
  font-size: 15px;
  font-weight: 500;
  margin: 0 5px 10px;
  padding: 8px 20px 6px;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  border: 2px solid;
  border-color: transparent;
}
.isotope-layout-filter a.active, .isotope-layout-filter a:focus, .isotope-layout-filter a:hover,
.carousel-layout-filter a.active,
.carousel-layout-filter a:focus,
.carousel-layout-filter a:hover {
  color: #fff;
  background: #343434;
}
.isotope-layout-filter.filter-style-2 a,
.carousel-layout-filter.filter-style-2 a {
  border-color: #343434;
}
.isotope-layout-filter.filter-style-3 a,
.carousel-layout-filter.filter-style-3 a {
  border-color: #eee;
}
.isotope-layout-filter.filter-style-4 a,
.carousel-layout-filter.filter-style-4 a {
  background-color: #f7f7f7;
}
.isotope-layout-filter.filter-style-4 a.active, .isotope-layout-filter.filter-style-4 a:focus, .isotope-layout-filter.filter-style-4 a:hover,
.carousel-layout-filter.filter-style-4 a.active,
.carousel-layout-filter.filter-style-4 a:focus,
.carousel-layout-filter.filter-style-4 a:hover {
  background: #343434;
}
.isotope-layout-filter.filter-style-5 a,
.carousel-layout-filter.filter-style-5 a {
  border-radius: 7px;
}
.isotope-layout-filter.filter-style-6 a,
.carousel-layout-filter.filter-style-6 a {
  border-radius: 7px;
  border-color: #343434;
}
/* -------- Isotop Gallery ---------- */
.isotope-layout {
  /* by default 4 grids */
  /*portfolio 2 grids*/
  /*portfolio 2 grids*/
  /*portfolio 3 grids*/
  /*portfolio 4 grids*/
  /*portfolio 5 grids*/
  /*portfolio 6 grids*/
  /*gutter*/
}
.isotope-layout .isotope-layout-inner {
  position: relative;
}
.isotope-layout .isotope-item {
  padding: 0 15px;
  margin: 0 0 30px;
  float: left;
  width: 24.98%;
  /* item sizer */
}
.isotope-layout .isotope-item .isotope-item-inner {
  position: relative;
  height: 100%;
}
.isotope-layout .isotope-item.tm-masonry-large-wide, .isotope-layout .isotope-item.tm-masonry-large-width-height {
  width: 49.98%;
}
.isotope-layout .isotope-item.isotope-item-sizer {
  padding: 0 !important;
  margin-bottom: 0 !important;
  width: 24.98%;
}
.isotope-layout .isotope-item.isotope-item-sizer.tm-masonry-large-wide, .isotope-layout .isotope-item.isotope-item-sizer.tm-masonry-large-width-height {
  width: 49.98%;
}
.isotope-layout .isotope-item .thumb img {
  width: 100%;
}
.isotope-layout.isotope-layout-single-item:not(.shop-archive):not(.blog-archive) {
  margin-left: 0;
}
.isotope-layout.isotope-layout-single-item:not(.shop-archive):not(.blog-archive) .isotope-layout-inner {
  margin-left: 0;
  margin-right: 0;
}
.isotope-layout.isotope-layout-single-item:not(.shop-archive):not(.blog-archive) .isotope-item {
  padding-right: 0;
  padding-left: 0;
  margin-bottom: 0;
  width: 100% !important;
  position: relative !important;
}
.isotope-layout.isotope-layout-single-item:not(.shop-archive):not(.blog-archive) .isotope-item .hentry {
  margin-bottom: 0;
  padding-bottom: 0;
}
.isotope-layout.grid-1 .isotope-item {
  width: 100% !important;
}
.isotope-layout.grid-1 .isotope-item.tm-masonry-large-wide, .isotope-layout.grid-1 .isotope-item.tm-masonry-large-width-height {
  width: 100% !important;
}
.isotope-layout.grid-2 .isotope-item {
  width: 49.98%;
}
.isotope-layout.grid-2 .isotope-item.tm-masonry-large-wide, .isotope-layout.grid-2 .isotope-item.tm-masonry-large-width-height {
  width: 100%;
}
.isotope-layout.grid-3 .isotope-item {
  width: 33.2%;
}
.isotope-layout.grid-3 .isotope-item.tm-masonry-large-wide, .isotope-layout.grid-3 .isotope-item.tm-masonry-large-width-height {
  width: 66.4%;
}
.isotope-layout.grid-4 {
  width: 100.1%;
  width: calc(100% + 1px);
}
.isotope-layout.grid-4 .isotope-item {
  width: 24.98%;
}
.isotope-layout.grid-4 .isotope-item.tm-masonry-large-wide, .isotope-layout.grid-4 .isotope-item.tm-masonry-large-width-height {
  width: 49.98%;
}
.isotope-layout.grid-5 .isotope-item {
  width: 20%;
}
.isotope-layout.grid-5 .isotope-item.tm-masonry-large-wide, .isotope-layout.grid-5 .isotope-item.tm-masonry-large-width-height {
  width: 40%;
}
.isotope-layout.grid-6 .isotope-item {
  width: 16.5%;
}
.isotope-layout.grid-6 .isotope-item.tm-masonry-large-wide, .isotope-layout.grid-6 .isotope-item.tm-masonry-large-width-height {
  width: 33%;
}
.isotope-layout .isotope-layout-inner {
  margin: 0 -15px;
}
.isotope-layout .isotope-item {
  padding: 0 15px;
  margin: 0 0 30px;
}
.isotope-layout.gutter .isotope-layout-inner {
  margin: 0 -15px;
}
.isotope-layout.gutter .isotope-item {
  padding: 0 15px;
  margin: 0 0 30px;
}
.isotope-layout.gutter-0 .isotope-layout-inner {
  margin: 0;
}
.isotope-layout.gutter-0 .isotope-item {
  padding: 0;
  margin: 0;
}
.isotope-layout.gutter-5 .isotope-layout-inner {
  margin: 0 -5px;
}
.isotope-layout.gutter-5 .isotope-item {
  padding: 0 5px;
  margin: 0 0 10px;
}
.isotope-layout.gutter-10 .isotope-layout-inner {
  margin: 0 -10px;
}
.isotope-layout.gutter-10 .isotope-item {
  padding: 0 10px;
  margin: 0 0 20px;
}
.isotope-layout.gutter-15 .isotope-layout-inner {
  margin: 0 -15px;
}
.isotope-layout.gutter-15 .isotope-item {
  padding: 0 15px;
  margin: 0 0 30px;
}
.isotope-layout.gutter-20 .isotope-layout-inner {
  margin: 0 -20px;
}
.isotope-layout.gutter-20 .isotope-item {
  padding: 0 20px;
  margin: 0 0 40px;
}
.isotope-layout.gutter-30 .isotope-layout-inner {
  margin: 0 -30px;
}
.isotope-layout.gutter-30 .isotope-item {
  padding: 0 30px;
  margin: 0 0 60px;
}
.isotope-layout.gutter-40 .isotope-layout-inner {
  margin: 0 -40px;
}
.isotope-layout.gutter-40 .isotope-item {
  padding: 0 40px;
  margin: 0 0 80px;
}
.isotope-layout.gutter-50 .isotope-layout-inner {
  margin: 0 -50px;
}
.isotope-layout.gutter-50 .isotope-item {
  padding: 0 50px;
  margin: 0 0 100px;
}
.isotope-layout.gutter-60 .isotope-layout-inner {
  margin: 0 -60px;
}
.isotope-layout.gutter-60 .isotope-item {
  padding: 0 60px;
  margin: 0 0 120px;
}

/* -------- Isotop Item Media Query ---------- */
@media (max-width: 767px) {
  .isotope-layout .isotope-item {
    width: 33.2% !important;
  }
  .isotope-layout .isotope-item.tm-masonry-large-wide, .isotope-layout .isotope-item.tm-masonry-large-width-height {
    width: 100% !important;
  }
}
@media (max-width: 1024px) {
  .isotope-layout .isotope-item {
    width: 49.98% !important;
  }
  .isotope-layout .isotope-item.tm-masonry-large-wide, .isotope-layout .isotope-item.tm-masonry-large-width-height {
    width: 100% !important;
  }
}
@media (max-width: 991.98px) {
  .isotope-layout .isotope-item {
    width: 49.98% !important;
  }
  .isotope-layout .isotope-item.tm-masonry-large-wide, .isotope-layout .isotope-item.tm-masonry-large-width-height {
    width: 100% !important;
  }
}
@media (max-width: 767.98px) {
  .isotope-layout .isotope-item {
    width: 100% !important;
  }
  .isotope-layout .isotope-item.tm-masonry-large-wide, .isotope-layout .isotope-item.tm-masonry-large-width-height {
    width: 100% !important;
  }
}
@media (max-width: 575.98px) {
  .isotope-layout .isotope-item {
    width: 100% !important;
  }
  .isotope-layout .isotope-item.tm-masonry-large-wide, .isotope-layout .isotope-item.tm-masonry-large-width-height {
    width: 100% !important;
  }
}

.isotope-layout:not(.isotope-rendered) .isotope-item {
  float: left;
}
.isotope-layout:not(.isotope-rendered).grid-2 > .isotope-item {
  width: 50%;
}
.isotope-layout:not(.isotope-rendered).grid-3 > .isotope-item {
  width: 33%;
}
.isotope-layout:not(.isotope-rendered).grid-4 > .isotope-item {
  width: 25%;
}
.isotope-layout:not(.isotope-rendered).grid-5 > .isotope-item {
  width: 19%;
}
.isotope-layout:not(.isotope-rendered).grid-6 > .isotope-item {
  width: 16%;
}

.tm-swiper-container,
.tm-testimonial-single-carousel {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.tm-swiper-container .swiper-container-inner,
.tm-testimonial-single-carousel .swiper-container-inner {
  overflow: hidden;
}
.tm-swiper-container .tm-swiper-button-next,
.tm-swiper-container .tm-swiper-button-prev,
.tm-testimonial-single-carousel .tm-swiper-button-next,
.tm-testimonial-single-carousel .tm-swiper-button-prev {
  position: absolute;
  top: 50%;
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  cursor: pointer;
  width: 52px;
  height: 52px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.14);
}
.tm-swiper-container .tm-swiper-button-next i,
.tm-swiper-container .tm-swiper-button-prev i,
.tm-testimonial-single-carousel .tm-swiper-button-next i,
.tm-testimonial-single-carousel .tm-swiper-button-prev i {
  color: #000;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  -khtml-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.tm-swiper-container .tm-swiper-button-next:hover,
.tm-swiper-container .tm-swiper-button-prev:hover,
.tm-testimonial-single-carousel .tm-swiper-button-next:hover,
.tm-testimonial-single-carousel .tm-swiper-button-prev:hover {
  background-color: var(--theme-color1);
}
.tm-swiper-container .tm-swiper-button-next:hover i,
.tm-swiper-container .tm-swiper-button-prev:hover i,
.tm-testimonial-single-carousel .tm-swiper-button-next:hover i,
.tm-testimonial-single-carousel .tm-swiper-button-prev:hover i {
  color: var(--theme-color1-text-color);
}
.tm-swiper-container .tm-swiper-button-next,
.tm-swiper-container .swiper-rtl .tm-swiper-button-prev,
.tm-testimonial-single-carousel .tm-swiper-button-next,
.tm-testimonial-single-carousel .swiper-rtl .tm-swiper-button-prev {
  right: -26px;
  left: auto;
}
.tm-swiper-container .tm-swiper-button-prev,
.tm-swiper-container .swiper-rtl .tm-swiper-button-next,
.tm-testimonial-single-carousel .tm-swiper-button-prev,
.tm-testimonial-single-carousel .swiper-rtl .tm-swiper-button-next {
  left: -26px;
  right: auto;
}
.tm-swiper-container .tm-swiper-button-prev:hover i::before,
.tm-testimonial-single-carousel .tm-swiper-button-prev:hover i::before {
  content: "\e879";
}
.tm-swiper-container .tm-swiper-button-next:hover i::before,
.tm-testimonial-single-carousel .tm-swiper-button-next:hover i::before {
  content: "\e87a";
}
.tm-swiper-container .swiper-pagination,
.tm-swiper-container .swiper-pagination-fraction,
.tm-testimonial-single-carousel .swiper-pagination,
.tm-testimonial-single-carousel .swiper-pagination-fraction {
  position: relative;
  width: auto;
  left: 50%;
  bottom: 0;
  margin-top: 20px;
  transform: translateX(-50%);
}
.tm-swiper-container .swiper-pagination-bullet,
.tm-testimonial-single-carousel .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  opacity: 1;
  position: relative;
  background: #e7e7e7;
  border-radius: 10px;
  transition: all 0.3s ease-in-out 0s;
}
.tm-swiper-container .swiper-pagination-fraction,
.tm-testimonial-single-carousel .swiper-pagination-fraction {
  font-size: 20px;
}
.tm-swiper-container .swiper-pagination-progressbar,
.tm-testimonial-single-carousel .swiper-pagination-progressbar {
  background-color: #e1e1e1;
}
.tm-swiper-container .swiper-pagination-progressbar > span,
.tm-testimonial-single-carousel .swiper-pagination-progressbar > span {
  background-color: var(--theme-color1);
}
.tm-swiper-container .swiper-pagination-bullet.swiper-pagination-bullet-active,
.tm-testimonial-single-carousel .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-color1);
}

.tm-slider-overflow-visible-yes .tm-swiper-container .swiper-container-inner {
  overflow: visible;
}

[data-freemod=true] .swiper-wrapper {
  transition-timing-function: linear !important;
}

/*
 * slider.scss
 * -----------------------------------------------
*/
/*
 * 404.scss
 * -----------------------------------------------
*/
.page-404-wrapper {
  text-align: center;
}
.page-404-wrapper.page-404-wrapper-padding {
  padding-top: 100px;
  padding-bottom: 50px;
}
.page-404-wrapper .page-404-main-content {
  margin-bottom: 25px;
}
.page-404-wrapper .page-404-main-content .title {
  font-size: 11rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 2rem;
}
@media (max-width: 767.98px) {
  .page-404-wrapper .page-404-main-content .title {
    font-size: 8rem;
  }
}
.page-404-wrapper .page-404-main-content .sub-title {
  font-size: 2rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 1.7rem;
}
.page-404-wrapper .page-404-main-content .content,
.page-404-wrapper .page-404-main-content .content p {
  margin-bottom: 1.7rem;
}
.page-404-wrapper .search-box {
  margin-bottom: 2rem;
}
.page-404-wrapper .search-box .paragraph {
  margin-bottom: 1rem;
}
.page-404-wrapper .helpful-links {
  margin-bottom: 25px;
}
.page-404-wrapper .helpful-links ul {
  list-style: none;
}
.page-404-wrapper .helpful-links ul li {
  padding-left: 15px;
  position: relative;
  margin-bottom: 5px;
}
.page-404-wrapper .helpful-links ul li::before {
  content: "\f0da";
  left: 0;
  top: 0;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: #ccc;
}
.page-404-wrapper .helpful-links ul li a {
  color: var(--text-color);
}
.page-404-wrapper.page-404-layout-split .page-404-main-content .title {
  font-size: 8rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 1rem;
}
.page-404-wrapper.page-404-layout-split .page-404-main-content .sub-title {
  font-size: 1.7rem;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 1.2rem;
}
.page-404-wrapper.page-404-layout-split .page-404-main-content .content,
.page-404-wrapper.page-404-layout-split .page-404-main-content .content p {
  margin-bottom: 1rem;
}

.page-404-wrapper .page-404-main-content {
  text-align: center;
}
.page-404-wrapper .page-404-main-content .title {
  color: var(--theme-color1);
}
.page-404-wrapper .helpful-links ul li::before {
  color: var(--theme-color1);
}
.page-404-wrapper .helpful-links ul li a:hover {
  color: var(--hover-theme-color);
}

/*
 * menu-unit-test.scss
 * -----------------------------------------------
*/
.menuzord-primary-nav .menuzord-menu > li > a {
  font-size: var(--menuzord-primary-nav-font-size);
  font-weight: var(--menuzord-primary-nav-font-weight);
  text-transform: var(--menuzord-primary-nav-font-transform);
}

/*
 * archive.scss
 * -----------------------------------------------
*/
body.archive .main-content-area article:not(.type-post) {
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(240, 240, 240, 0.5);
}

/*
 * blog.scss
 * -----------------------------------------------
*/
/*
 * blog.scss
 * -----------------------------------------------
*/
article .entry-content .post-content ul:not(.tm-sc-list):not(.list):not(.blocks-gallery-grid):not(.wp-block-post-template):not(.wp-block-page-list),
article .entry-content .post-content ol,
article .entry-content .post-excerpt ul:not(.tm-sc-list):not(.list):not(.blocks-gallery-grid):not(.wp-block-post-template):not(.wp-block-page-list),
article .entry-content .post-excerpt ol {
  padding-left: 10px;
}
article .box-hover-effect .thumb {
  text-align: center;
}

.blog-posts .main-content-area .post .post-sticky-icon {
  display: none;
}

body.archive .blog-posts .main-content-area article,
body.blog .blog-posts .main-content-area article {
  margin-bottom: 3rem;
}
body.archive .blog-posts .main-content-area .row > div:last-child article,
body.blog .blog-posts .main-content-area .row > div:last-child article {
  margin-bottom: 0;
}
body.archive .blog-posts .main-content-area .post.sticky,
body.blog .blog-posts .main-content-area .post.sticky {
  box-shadow: none;
  position: relative;
  padding: 25px;
  padding-bottom: 0;
  border: 2px solid var(--theme-color1);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
body.archive .blog-posts .main-content-area .post.sticky .bottom-box .comments,
body.blog .blog-posts .main-content-area .post.sticky .bottom-box .comments {
  display: none;
}
body.archive .blog-posts .main-content-area .post.sticky .post-sticky-icon,
body.blog .blog-posts .main-content-area .post.sticky .post-sticky-icon {
  display: block;
  position: absolute;
  right: 12px;
  top: 8px;
  z-index: 1;
}
body.archive .blog-posts .main-content-area .post.sticky .post-sticky-icon i,
body.blog .blog-posts .main-content-area .post.sticky .post-sticky-icon i {
  font-size: 30px;
  color: #ccc;
  transform: rotate(45deg);
}

.main-content-area article .entry-meta {
  font-size: 14px;
  margin-bottom: 1rem;
  color: var(--entry-meta-color-light);
  text-transform: uppercase;
}
.main-content-area article .entry-meta li:first-child {
  padding-left: 0;
}
.main-content-area article .entry-meta li {
  padding-right: 5px;
  margin-bottom: 0;
}
.main-content-area article .entry-meta li:last-child {
  padding-right: 0;
}
.main-content-area article .entry-meta i {
  margin-right: 5px;
}
.main-content-area article .entry-meta .categories-links,
.main-content-area article .entry-meta a,
.main-content-area article .entry-meta span,
.main-content-area article .entry-meta .sl-wrapper span {
  color: var(--entry-meta-color-light);
  font-weight: normal;
}
.main-content-area article .entry-meta .categories-links a:hover,
.main-content-area article .entry-meta a:hover,
.main-content-area article .entry-meta .sl-wrapper span:hover {
  color: var(--hover-theme-color);
}
.main-content-area article .post-excerpt {
  margin-bottom: 20px;
}
.main-content-area article .post-excerpt p {
  margin-bottom: 28px;
}
.main-content-area .pagination {
  margin-top: 40px;
  list-style: none;
}

pre {
  font-family: "Courier 10 Pitch", courier, monospace;
  max-width: 100%;
  margin: 1.6em 0;
  padding: 1.6em;
  background-color: var(--theme-color-silver);
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: monospace;
  font-size: 1em;
  color: var(--pre-code-text-color);
}

code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  border-radius: 4px;
}

dt {
  font-weight: var(--body-font-bold);
  color: var(--headings-color);
}

dd {
  margin: 0 1.5em 1.5em;
}

@media (min-width: 768px) {
  .post-standard-1col-classic .entry-header {
    border-radius: 2px;
    float: left;
    margin-right: 25px;
    width: 45%;
  }
}
article .entry-content h1 a:hover,
article .entry-content h2 a:hover,
article .entry-content h3 a:hover,
article .entry-content h4 a:hover,
article .entry-content h5 a:hover,
article .entry-content h6 a:hover,
article .entry-content .h1 a:hover,
article .entry-content .h2 a:hover,
article .entry-content .h3 a:hover,
article .entry-content .h4 a:hover,
article .entry-content .h5 a:hover,
article .entry-content .h6 a:hover {
  color: var(--hover-theme-color);
}
article .entry-content h1 a:hover b,
article .entry-content h1 a:hover strong,
article .entry-content h2 a:hover b,
article .entry-content h2 a:hover strong,
article .entry-content h3 a:hover b,
article .entry-content h3 a:hover strong,
article .entry-content h4 a:hover b,
article .entry-content h4 a:hover strong,
article .entry-content h5 a:hover b,
article .entry-content h5 a:hover strong,
article .entry-content h6 a:hover b,
article .entry-content h6 a:hover strong,
article .entry-content .h1 a:hover b,
article .entry-content .h1 a:hover strong,
article .entry-content .h2 a:hover b,
article .entry-content .h2 a:hover strong,
article .entry-content .h3 a:hover b,
article .entry-content .h3 a:hover strong,
article .entry-content .h4 a:hover b,
article .entry-content .h4 a:hover strong,
article .entry-content .h5 a:hover b,
article .entry-content .h5 a:hover strong,
article .entry-content .h6 a:hover b,
article .entry-content .h6 a:hover strong {
  color: var(--hover-theme-color);
}
article .entry-meta a:hover {
  color: var(--hover-theme-color);
}

.blog-posts .main-content-area article {
  position: relative;
  transition: all 300ms ease;
  border-bottom: 3px solid var(--theme-color-light);
  overflow: hidden;
}
.blog-posts .main-content-area article:hover .entry-header {
  position: relative;
}
.blog-posts .main-content-area article:hover .entry-header .post-thumb:first-child {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.blog-posts .main-content-area article:hover .entry-header .post-thumb:nth-child(2) {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-posts .main-content-area article .entry-header {
  position: relative;
}
.blog-posts .main-content-area article .entry-header .thumb-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.blog-posts .main-content-area article .entry-header .post-thumb {
  position: relative;
  width: 100%;
  display: block;
  transition: all 500ms ease;
}
.blog-posts .main-content-area article .entry-header .post-thumb:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-posts .main-content-area article .entry-header .post-single-meta {
  position: absolute;
  left: 30px;
  bottom: 0;
  z-index: 1;
  text-align: center;
  line-height: 1;
  padding: 12px;
  background-color: var(--theme-color1);
}
.blog-posts .main-content-area article .entry-header .post-single-meta span {
  display: inline-block;
  text-align: center;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  color: var(--theme-color1-text-color);
}
.blog-posts .main-content-area article .entry-header .post-single-meta span.day {
  font-size: 30px;
  font-weight: 500;
  color: var(--theme-color1-text-color);
  font-family: var(--heading-font-family);
  display: block;
  margin-bottom: 3px;
  line-height: 1;
  padding: 0 10px;
}
.blog-posts .main-content-area article .entry-header .post-single-meta span.year {
  display: none;
}
.blog-posts .main-content-area article .entry-content {
  position: relative;
  padding: 0;
  padding-bottom: 20px;
  z-index: 1;
  transition: all 300ms ease;
}
.blog-posts .main-content-area article .entry-meta {
  position: relative;
  text-transform: capitalize !important;
  margin-bottom: 15px !important;
  background-color: var(--theme-color-light);
  padding: 5px 12px;
}
.blog-posts .main-content-area article .entry-meta li {
  position: relative;
  font-size: 14px;
}
.blog-posts .main-content-area article .entry-meta li i {
  margin-right: 5px;
  color: var(--theme-color1);
  font-size: 14px;
}
.blog-posts .main-content-area article .entry-title {
  margin-top: 0;
  margin-bottom: 10px;
}
.blog-posts .main-content-area article .entry-title:hover {
  color: var(--theme-color-dark);
}
.blog-posts .main-content-area article .mascot-post-excerpt {
  margin-top: 15px;
}
.blog-posts .main-content-area article .post-btn-readmore .btn-plain-text-with-arrow-right {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}
.blog-posts .main-content-area article .post-btn-readmore .btn-plain-text-with-arrow-right:after {
  font-size: 14px;
}
.blog-posts .main-content-area article .post-btn-readmore .btn-plain-text-with-arrow-right:hover {
  color: var(--theme-color1);
}
.blog-posts .main-content-area article .post-btn-readmore .btn-plain-text-with-arrow-right:hover:after {
  color: var(--theme-color1);
}

.blog-posts .main-content-area .isotope-layout .isotope-item article {
  margin-bottom: 0px;
}

@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
.blog-posts .main-content-area article.has-post-thumbnail .entry-content {
  padding: 0 28px 20px;
}

.btn-plain-text-with-arrow-right {
  text-transform: uppercase !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}
.btn-plain-text-with-arrow-right:after {
  font-size: 14px !important;
}
.btn-plain-text-with-arrow-right:hover {
  color: var(--theme-color1) !important;
}
.btn-plain-text-with-arrow-right:hover:after {
  color: var(--theme-color1) !important;
}

/*
 * blog-single.scss
 * -----------------------------------------------
*/
body.single-post .main-content-area article {
  margin-bottom: 0;
  border-bottom: none;
}
body.single-post .main-content-area article .entry-meta {
  padding: 0;
  margin-top: 60px;
  margin-bottom: 0;
}
body.single-post .main-content-area article .entry-meta li {
  position: relative;
  padding-right: 8px;
}
body.single-post .main-content-area article .entry-meta li a {
  font-weight: normal;
}
body.single-post .main-content-area article .entry-meta li i {
  margin: 0 5px 0 0;
  vertical-align: baseline;
}
body.single-post .main-content-area article .entry-meta li i,
body.single-post .main-content-area article .entry-meta li .sl-wrapper .sl-icon svg {
  color: var(--theme-color1);
}
body.single-post .main-content-area article .entry-meta li .sl-wrapper .sl-icon svg:hover {
  color: var(--hover-theme-color);
}
body.single-post .main-content-area article .entry-meta li:first-child:after {
  display: none;
}
body.single-post .main-content-area article .entry-meta li:last-child {
  padding-right: 0;
}
body.single-post .main-content-area article .entry-header .post-thumb {
  box-shadow: 0px 0px 50px rgba(5, 5, 5, 0.18);
  margin-bottom: 25px;
  border-radius: 5px;
  overflow: hidden;
  display: inline-block;
}
body.single-post .main-content-area article .entry-title {
  margin-top: 0;
}
body.single-post .main-content-area article .entry-content h1,
body.single-post .main-content-area article .entry-content h2,
body.single-post .main-content-area article .entry-content h3,
body.single-post .main-content-area article .entry-content h4,
body.single-post .main-content-area article .entry-content h5,
body.single-post .main-content-area article .entry-content h6,
body.single-post .main-content-area article .entry-content .h1,
body.single-post .main-content-area article .entry-content .h2,
body.single-post .main-content-area article .entry-content .h3,
body.single-post .main-content-area article .entry-content .h4,
body.single-post .main-content-area article .entry-content .h5,
body.single-post .main-content-area article .entry-content .h6 {
  margin-top: 30px;
}
body.single-post .main-content-area article .entry-content h1:first-child,
body.single-post .main-content-area article .entry-content h2:first-child,
body.single-post .main-content-area article .entry-content h3:first-child,
body.single-post .main-content-area article .entry-content h4:first-child,
body.single-post .main-content-area article .entry-content h5:first-child,
body.single-post .main-content-area article .entry-content h6:first-child,
body.single-post .main-content-area article .entry-content .h1:first-child,
body.single-post .main-content-area article .entry-content .h2:first-child,
body.single-post .main-content-area article .entry-content .h3:first-child,
body.single-post .main-content-area article .entry-content .h4:first-child,
body.single-post .main-content-area article .entry-content .h5:first-child,
body.single-post .main-content-area article .entry-content .h6:first-child {
  margin-top: 0;
}
body.single-post .single-post-tags-share {
  border-top: 1px solid #ececec;
  padding: 20px 0 0;
  margin-top: 55px;
  margin-left: 0;
  margin-right: 0;
}
@media (min-width: 1200px) {
  body.single-post .single-post-tags-share > div {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  body.single-post .single-post-tags-share > div.max-width-half {
    max-width: 50%;
  }
}
body.single-post .single-post-tags-share > div:first-child {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1199.98px) {
  body.single-post .single-post-tags-share > div:first-child {
    margin-bottom: 20px;
  }
}
body.single-post .single-post-tags-share > div:last-child {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1199.98px) {
  body.single-post .single-post-tags-share > div:last-child {
    margin-bottom: 0;
  }
}
body.single-post .single-post-tags {
  margin: 0;
}
body.single-post .single-post-tags span {
  color: var(--headings-color);
  font-size: 1rem;
  font-family: var(--heading-font-family);
  font-weight: var(--headings-font-weight-h4);
  line-height: var(--headings-line-height-smaller);
}
body.single-post .single-post-tags li:not(:first-child) {
  margin: 5px 7px 11px 0;
}
body.single-post .single-post-tags a {
  border-radius: 10px;
  font-size: 0.8rem;
  padding: 8px 25px;
  text-transform: capitalize;
  background-color: #f8f6f0;
}
body.single-post .single-post-tags a:hover {
  color: var(--theme-color2-text-color);
  background-color: var(--theme-color1);
}
body.single-post .pre-next-post-link {
  margin-top: 60px;
  vertical-align: middle;
}
body.single-post .pre-next-post-link .pre-post-link,
body.single-post .pre-next-post-link .next-post-link {
  cursor: pointer;
  display: table;
  height: 100%;
  position: relative;
  width: 100%;
}
body.single-post .pre-next-post-link .pre-post-link > *,
body.single-post .pre-next-post-link .next-post-link > * {
  display: table-cell;
  height: 100%;
  position: relative;
  vertical-align: middle;
}
body.single-post .pre-next-post-link .pre-post-link .title,
body.single-post .pre-next-post-link .next-post-link .title {
  margin-top: 0;
  margin-bottom: 0;
  font-style: italic;
  color: #9a9a9a;
  font-size: 0.875rem;
}
body.single-post .pre-next-post-link .pre-post-link .content,
body.single-post .pre-next-post-link .next-post-link .content {
  font-size: 1.25rem;
  word-break: break-all;
}
body.single-post .pre-next-post-link .pre-post-link .content a,
body.single-post .pre-next-post-link .next-post-link .content a {
  font-size: 1rem;
  font-family: var(--heading-font-family);
  font-weight: var(--headings-font-weight-h4);
  line-height: var(--headings-line-height-smaller);
}
body.single-post .pre-next-post-link .pre-post-link span,
body.single-post .pre-next-post-link .next-post-link span {
  color: #f5f5f5;
  font-size: 130px;
  line-height: 0;
  padding-top: 15px;
  transition: all 0.4s ease 0s;
}
body.single-post .pre-next-post-link .pre-post-link:hover a,
body.single-post .pre-next-post-link .next-post-link:hover a {
  color: var(--hover-theme-color);
}
body.single-post .pre-next-post-link .pre-post-link:hover span,
body.single-post .pre-next-post-link .next-post-link:hover span {
  color: #ddd;
}
body.single-post .pre-next-post-link .pre-post-link .link,
body.single-post .pre-next-post-link .next-post-link .link {
  margin-bottom: 0;
  margin-top: 0;
}
body.single-post .pre-next-post-link .next-post-link {
  text-align: right;
}
body.single-post .author-info {
  background: var(--theme-color-light);
  border: 1px solid var(--theme-color-silver);
  margin-top: 60px;
  padding: 40px;
}
body.single-post .author-info .author-thumb {
  float: left;
  margin-right: 30px;
}
body.single-post .author-info .author-thumb img {
  border-radius: 50%;
}
body.single-post .author-info .author-description {
  margin-left: 110px;
}
body.single-post .author-info .author-description .author-title {
  margin-bottom: 0;
  margin-top: 0;
}
body.single-post .author-info .author-description .author-title .author-title-label {
  display: none;
  font-weight: var(--body-font-bold);
}
body.single-post .author-info .author-description .author-email {
  font-size: 14px;
}
body.single-post .author-info .author-description .author-email a {
  color: #a1a1a1;
  font-weight: normal;
}
body.single-post .author-info .author-description .author-text p {
  margin-top: 10px;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  body.single-post .author-info .author-thumb {
    float: none;
  }
  body.single-post .author-info .author-description {
    margin-left: 0;
  }
  body.single-post .author-info .author-description .author-title {
    margin-top: 15px;
    margin-bottom: 7px;
  }
}
body.single-post .related-posts {
  margin-top: 60px;
}
body.single-post .related-posts .title {
  margin-bottom: 20px;
  font-weight: var(--body-font-bold);
  text-transform: uppercase;
}
body.single-post .related-posts article {
  background-color: #fefefe;
  box-shadow: 0px 0px 50px rgba(5, 5, 5, 0.08);
}
body.single-post .related-posts article .entry-header .post-thumb {
  margin-bottom: 0;
}
body.single-post .related-posts article .entry-content {
  padding: 20px;
}
body.single-post .related-posts article .entry-date {
  color: #999;
  font-size: 0.875rem;
}
body.single-post .related-posts article .post-excerpt {
  font-size: 0.875rem;
  margin-bottom: 10px;
}
body.single-post .related-posts article .entry-meta {
  padding: 5px 0;
  margin-bottom: 0;
  margin-top: 0;
}
body.single-post .related-posts article .post-btn-readmore {
  font-size: 11px;
  font-weight: var(--body-font-bold);
  text-transform: uppercase;
}

body.single-post.single-post .related-posts article .entry-title {
  margin-bottom: 0;
  margin-top: 10px;
}

body.single-post .post-single.drop-caps .entry-content .post-content > p:first-child:first-letter,
body.single-post .post-single.drop-caps .entry-content .post-excerpt > p:first-child:first-letter {
  color: #222;
  float: left;
  font-size: 75px;
  line-height: 0.85;
  padding-top: 4px;
  padding-right: 8px;
  padding-left: 0;
}

body.single-post .comments-no-password {
  margin-top: 1rem;
}
body.single-post .no-comments,
body.single-post .comments-no-password {
  background-color: var(--theme-color1);
  color: var(--theme-color1-text-color);
}
body.single-post .no-comments .close,
body.single-post .comments-no-password .close {
  color: var(--theme-color1-text-color);
}

.comments-area {
  margin-top: 60px;
}
.comments-area .comments-title .title {
  margin-bottom: 0;
  margin-top: 0;
}
.comments-area .comments-title p {
  display: none;
}
.comments-area .comment-list {
  margin: 0 0 60px;
  border-bottom: 1px solid var(--theme-color-silver);
}
.comments-area .comment-list .comment,
.comments-area .comment-list .pingback,
.comments-area .comment-list .trackback {
  border-top: 1px solid var(--theme-color-silver);
  background: var(--theme-color-white);
  box-shadow: 0px 0px 50px rgba(5, 5, 5, 0.08);
  padding: 30px 30px 30px;
  margin-top: 30px;
  margin-bottom: 0;
  list-style: none;
}
.comments-area .comment-list .comment .comment,
.comments-area .comment-list .comment .pingback,
.comments-area .comment-list .comment .trackback,
.comments-area .comment-list .pingback .comment,
.comments-area .comment-list .pingback .pingback,
.comments-area .comment-list .pingback .trackback,
.comments-area .comment-list .trackback .comment,
.comments-area .comment-list .trackback .pingback,
.comments-area .comment-list .trackback .trackback {
  padding-left: 20px;
  padding-right: 0;
  box-shadow: none;
}
.comments-area .comment-list .comment .children,
.comments-area .comment-list .pingback .children,
.comments-area .comment-list .trackback .children {
  margin: 20px 0 0 20px;
}
.comments-area .comment-list .comment .children > li,
.comments-area .comment-list .pingback .children > li,
.comments-area .comment-list .trackback .children > li {
  padding-bottom: 0;
  margin-bottom: 0;
}
.comments-area .comment-list .comment .comment-item-wrapper,
.comments-area .comment-list .pingback .comment-item-wrapper,
.comments-area .comment-list .trackback .comment-item-wrapper {
  position: relative;
}
@media (min-width: 768px) {
  .comments-area .comment-list .comment .comment-item-wrapper,
.comments-area .comment-list .pingback .comment-item-wrapper,
.comments-area .comment-list .trackback .comment-item-wrapper {
    padding-left: 110px;
  }
}
@media (max-width: 767.98px) {
  .comments-area .comment-list .comment .comment-item-wrapper .comment-thumb,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-thumb,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-thumb {
    margin-bottom: 20px;
  }
}
.comments-area .comment-list .comment .comment-item-wrapper .comment-thumb img,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-thumb img,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-thumb img {
  border-radius: 50%;
}
@media (min-width: 768px) {
  .comments-area .comment-list .comment .comment-item-wrapper .comment-thumb img,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-thumb img,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-thumb img {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.comments-area .comment-list .comment .comment-item-wrapper .comment-body,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body {
  display: block;
  padding: 0;
  width: auto;
}
.comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-reply-link-wrapper,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-reply-link-wrapper,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-reply-link-wrapper {
  position: absolute;
  top: 0;
  right: 0;
}
.comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-reply-link,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-reply-link,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-reply-link {
  text-align: right;
}
.comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-reply-link .list-inline-item,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-reply-link .list-inline-item,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-reply-link .list-inline-item {
  display: inline-block;
  margin-right: 0;
}
@media (min-width: 576px) {
  .comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-reply-link .list-inline-item,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-reply-link .list-inline-item,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-reply-link .list-inline-item {
    padding-left: 6px;
  }
}
@media (max-width: 575.98px) {
  .comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-reply-link .list-inline-item,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-reply-link .list-inline-item,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-reply-link .list-inline-item {
    padding-left: 0;
    padding-right: 6px;
  }
}
.comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-reply-link .comment-edit-link,
.comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-reply-link .comment-reply-link,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-reply-link .comment-edit-link,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-reply-link .comment-reply-link,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-reply-link .comment-edit-link,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-reply-link .comment-reply-link {
  display: inline-block;
  margin-bottom: 10px;
  line-height: 1;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: normal;
  padding: 12px 16px;
  background: var(--theme-color1);
  color: var(--theme-color1-text-color);
}
.comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-reply-link .comment-edit-link:hover, .comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-reply-link .comment-edit-link:focus,
.comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-reply-link .comment-reply-link:hover,
.comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-reply-link .comment-reply-link:focus,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-reply-link .comment-edit-link:hover,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-reply-link .comment-edit-link:focus,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-reply-link .comment-reply-link:hover,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-reply-link .comment-reply-link:focus,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-reply-link .comment-edit-link:hover,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-reply-link .comment-edit-link:focus,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-reply-link .comment-reply-link:hover,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-reply-link .comment-reply-link:focus {
  background-color: var(--theme-color-dark);
  color: var(--theme-color2-text-color);
}
.comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-author-name,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-author-name,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-author-name {
  margin-top: 0;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-author-name a,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-author-name a,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-author-name a {
  transition: all 0.2s ease-in-out;
}
.comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-author-name a:hover,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-author-name a:hover,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-author-name a:hover {
  text-decoration: underline;
}
.comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-metadata,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-metadata,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-metadata {
  margin-bottom: 25px;
}
.comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-metadata a,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-metadata a,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-metadata a {
  font-size: 0.95rem;
  color: #a1a1a1;
  font-weight: normal;
}
.comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-metadata a:hover,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-metadata a:hover,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-metadata a:hover {
  color: var(--hover-theme-color);
}
.comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-content p,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-content p,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-content p {
  margin-bottom: 30px;
}
.comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-content p:last-of-type,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-content p:last-of-type,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-content p:last-of-type {
  margin-bottom: 0;
}
.comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-content ul,
.comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-content ol,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-content ul,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-content ol,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-content ul,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-content ol {
  padding-left: 10px;
}
.comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-content > ul > li,
.comments-area .comment-list .comment .comment-item-wrapper .comment-body .comment-content > ol > li,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-content > ul > li,
.comments-area .comment-list .pingback .comment-item-wrapper .comment-body .comment-content > ol > li,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-content > ul > li,
.comments-area .comment-list .trackback .comment-item-wrapper .comment-body .comment-content > ol > li {
  padding-left: 0;
}
.comments-area .comment-list .pingback .comment-body a,
.comments-area .comment-list .trackback .comment-body a {
  color: var(--headings-color);
}
.comments-area .comment-list .pingback .comment-body a:hover,
.comments-area .comment-list .trackback .comment-body a:hover {
  color: var(--hover-theme-color);
}
.comments-area .comment-list .pingback .comment-body .edit-link a,
.comments-area .comment-list .trackback .comment-body .edit-link a {
  font-size: 1rem;
}
@media (max-width: 991.98px) {
  .comments-area .comment-list .comment .children,
.comments-area .comment-list .pingback .children,
.comments-area .comment-list .trackback .children {
    margin: 5px 0 0 5px;
  }
}
@media (max-width: 767.98px) {
  .comments-area .comment-list .comment .children,
.comments-area .comment-list .pingback .children,
.comments-area .comment-list .trackback .children {
    margin: 0;
  }
  .comments-area .comment-list .comment .children .comment,
.comments-area .comment-list .comment .children .pingback,
.comments-area .comment-list .comment .children .trackback,
.comments-area .comment-list .pingback .children .comment,
.comments-area .comment-list .pingback .children .pingback,
.comments-area .comment-list .pingback .children .trackback,
.comments-area .comment-list .trackback .children .comment,
.comments-area .comment-list .trackback .children .pingback,
.comments-area .comment-list .trackback .children .trackback {
    padding-left: 5px;
  }
}
.comments-area > .comment-respond {
  padding-left: 0;
  padding-right: 0;
}

.comment-respond {
  margin: 30px 0 0 0;
  width: 100%;
  padding-right: 15px;
}
.comment-respond .comment-reply-title {
  margin-bottom: 20px;
  text-transform: capitalize;
}
.comment-respond .comment-reply-title #cancel-comment-reply-link {
  font-size: 0.85rem;
  text-transform: capitalize;
  margin-left: 10px;
  color: var(--theme-color-dark);
}
.comment-respond .comment-reply-title #cancel-comment-reply-link:hover {
  color: var(--hover-theme-color);
}
.comment-respond .comment-form {
  margin-bottom: 0;
}
.comment-respond .comment-form .logged-in-as,
.comment-respond .comment-form .comment-notes {
  color: #888;
}
.comment-respond .comment-form .logged-in-as a,
.comment-respond .comment-form .comment-notes a {
  color: #888;
  font-weight: normal;
}
.comment-respond .comment-form .logged-in-as a:hover,
.comment-respond .comment-form .comment-notes a:hover {
  color: var(--hover-theme-color);
}
.comment-respond .comment-form .form-submit {
  margin-bottom: 0;
}
.comment-respond .comment-form .form-submit input[type=submit] {
  margin-top: 0;
  border-radius: 10px;
}
.comment-respond .comment-form .form-control {
  height: calc(1.8rem + 32px);
}
.comment-respond .comment-form textarea.form-control {
  height: auto;
}
.comment-respond .form-group label {
  display: none;
  font-size: 14px;
}
.comment-respond .form-group .required {
  display: none;
}
.comment-respond input[type=submit] {
  color: var(--theme-color1-text-color);
  background-color: var(--theme-color1);
  border-color: var(--theme-color1);
}
.comment-respond input[type=submit]:hover, .comment-respond input[type=submit]:focus {
  color: var(--theme-color2-text-color);
  background-color: var(--theme-color-dark);
}

.comment-form-cookies-consent label {
  color: #aaa;
  display: inline;
  font-weight: normal;
}
.comment-form-cookies-consent #wp-comment-cookies-consent {
  margin-right: 0.6rem;
}

.post-password-form {
  margin-bottom: 20px;
}
.post-password-form label {
  display: block;
  margin-bottom: 0;
}
.post-password-form input[type=password] {
  margin-bottom: 7px !important;
}
.post-password-form > :last-child {
  margin-bottom: 0;
}

body.single-post .post-password-form label {
  display: inline-block;
}
body.single-post .post-password-form input[type=password] {
  margin-bottom: 0 !important;
}
body.single-post .post-password-form input[type=submit] {
  margin-top: -3px;
  border-radius: 5px;
}

.page-links {
  clear: both;
  padding: 20px 0 20px;
  display: flex;
  align-items: center;
}
.page-links a,
.page-links > span {
  border: 0;
  border-radius: 50%;
  font-size: 15px;
  line-height: 1.9;
  width: 40px;
  height: 40px;
  padding: 3px 10px;
  margin-right: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-links > span {
  color: var(--theme-color1-text-color);
  background-color: var(--theme-color1);
}
.page-links a {
  background-color: var(--theme-color-light);
  border-color: #ddd;
  color: var(--headings-color);
}
.page-links a:hover, .page-links a:focus {
  border-color: transparent;
  color: var(--theme-color1-text-color);
  background-color: var(--theme-color1);
  text-decoration: none;
}
.page-links > .page-links-title {
  border: 0;
  background: none;
  color: var(--theme-color-dark);
  height: auto;
  margin: 0 7px 0 0;
  padding: 0;
  width: auto;
}

.gallery {
  margin-bottom: 30px;
}
.gallery .isotope-item {
  display: inline-block;
  padding: 1.79104477%;
  text-align: center;
  vertical-align: top;
  width: 100%;
  margin: 0;
}
.gallery.gallery-columns-2 .isotope-item {
  max-width: 50%;
}
.gallery.gallery-columns-3 .isotope-item {
  max-width: 33.33%;
}
.gallery.gallery-columns-4 .isotope-item {
  max-width: 25%;
}
.gallery.gallery-columns-5 .isotope-item {
  max-width: 20%;
}
.gallery.gallery-columns-6 .isotope-item {
  max-width: 16.66%;
}
.gallery.gallery-columns-7 .isotope-item {
  max-width: 14.28%;
}
.gallery.gallery-columns-8 .isotope-item {
  max-width: 12.5%;
}
.gallery.gallery-columns-9 .isotope-item {
  max-width: 11.11%;
}
.gallery .gallery-icon img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.gallery .gallery-caption {
  display: block;
  font-size: 0.95rem;
  line-height: 1.5;
  padding: 0.5em 0;
}
.video-player-wrapper video {
  width: 100% !important;
}

@media (min-width: 1200px) {
  .tm-social-share-icons {
    text-align: right;
  }
}
.tm-social-share-icons .title {
  display: inline-block;
  margin-right: 10px;
  font-size: 1rem;
  font-family: var(--heading-font-family);
  color: var(--headings-color);
  font-weight: var(--headings-font-weight-h4);
  line-height: var(--headings-line-height-smaller);
}
.tm-social-share-icons .title i {
  color: var(--theme-color1);
}
.tm-social-share-icons .styled-icons {
  display: inline-block;
  margin-bottom: 0;
}
.tm-social-share-icons .styled-icons a {
  float: none;
}
.tm-social-share-icons .social-share-icons-text {
  display: inline-block;
}

.news-details-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 0 30px;
  margin-top: 56px;
  border-top: 1px solid var(--theme-color-silver);
  gap: 10px;
}
.news-details-bottom p {
  margin: 0;
}

.news-details__categories span,
.news-details__tags span {
  color: var(--headings-color);
  font-size: var(--h5-font-size);
  font-family: var(--heading-font-family);
  font-weight: var(--headings-font-weight-h5);
  margin-right: 15px;
}
.news-details__categories a,
.news-details__tags a {
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  transition: all 300ms ease;
  margin-bottom: 10px;
  line-height: 1;
  font-size: 0.8rem;
  font-weight: normal;
  padding: 12px 16px;
  border-radius: 10px;
  background: var(--theme-color1);
  color: var(--theme-color1-text-color);
}
.news-details__categories a:hover, .news-details__categories a:focus,
.news-details__tags a:hover,
.news-details__tags a:focus {
  background-color: var(--theme-color-dark);
  color: var(--theme-color2-text-color);
}
.news-details__categories a + a,
.news-details__tags a + a {
  margin-left: 6px;
}

.news-details__tags a {
  background: transparent;
  border: 1px solid var(--theme-color1);
  color: var(--headings-color);
}
.news-details__tags a:hover, .news-details__tags a:focus {
  background-color: var(--theme-color1);
  color: var(--theme-color1-text-color);
}

/* Nav Links */
.nav-links {
  margin: 0 0;
  display: flex;
  justify-content: space-between !important;
  background: var(--theme-color-silver);
  position: relative;
}
@media (max-width: 767.98px) {
  .nav-links {
    display: inline-block;
  }
}
.nav-links:after {
  content: "";
  position: absolute;
  background: #e7e3e3;
  height: 46%;
  width: 3px;
  left: 50%;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transform: translateX(-10px);
}
@media (max-width: 767.98px) {
  .nav-links:after {
    content: none;
  }
}
.nav-links .prev {
  flex: 1;
}
.nav-links .prev a {
  padding: 30px 30px 30px 90px;
}
@media (max-width: 575.98px) {
  .nav-links .prev a {
    padding: 30px 30px 30px 90px;
  }
}
.nav-links .prev a:after {
  content: "\f060";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  left: 30px;
  top: 50%;
  bottom: 0;
  transform: translateY(-20px);
  background: var(--theme-color1);
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
}
.nav-links .prev a:hover:after {
  background: var(--theme-color3);
  transition: all 300ms ease;
}
.nav-links .prev .thumb {
  margin-right: 20px;
}
.nav-links .next {
  flex: 1;
  text-align: right;
}
@media (max-width: 767.98px) {
  .nav-links .next {
    border-top: 1px solid rgba(222, 222, 222, 0.6);
  }
}
.nav-links .next a {
  padding: 30px 90px 30px 30px;
}
@media (max-width: 575.98px) {
  .nav-links .next a {
    padding: 30px 90px 30px 30px;
  }
}
.nav-links .next a:after {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: 30px;
  top: 50%;
  bottom: 0;
  transform: translateY(-20px);
  background: var(--theme-color1);
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 40px;
  color: #fff;
}
.nav-links .next a:hover:after {
  background: var(--theme-color3);
  transition: all 300ms ease;
}
.nav-links .next .thumb {
  margin-left: 20px;
}
.nav-links > div .thumb {
  display: inline-block;
  min-width: 60px;
  width: 60px;
  height: 60px;
  overflow: hidden;
}
.nav-links > div .thumb a {
  display: inline-block;
}
.nav-links > div > a {
  display: inline-block;
  word-wrap: break-word;
  white-space: -moz-pre-wrap;
  white-space: pre-wrap;
  font-size: 16px;
  line-height: 1.637;
  font-weight: 600;
  background-color: var(--theme-color-silver);
  padding: 30px;
  width: 100%;
  position: relative;
}
.nav-links > div > a:hover {
  color: var(--link-color);
}

/*
 * blog-sidebar.scss
 * -----------------------------------------------
*/
.sidebar-area .widget_search .widget-inner {
  padding: 0;
  background: none;
}

@media (min-width: 992px) {
  .has-sidebar-left {
    flex-direction: row-reverse;
  }
}

/*
 * likes.scss (Simple Like Plugin)
 * -----------------------------------------------
*/ /* SL Wrapper */
.sl-wrapper {
  /* Colors */
  /* Icon */
  /* Count */
  /* Loader */
}
.sl-wrapper a {
  border-bottom: 0 !important;
  text-decoration: none !important;
}
.sl-wrapper .sl-button {
  font-size: 1em;
  line-height: 1;
  font-weight: normal;
}
.sl-wrapper a.liked {
  color: #da1b1b;
}
.sl-wrapper a.liked:hover,
.sl-wrapper a.liked:active,
.sl-wrapper a.liked:focus {
  color: #666666;
}
.sl-wrapper .sl-icon {
  margin-right: 0.3125em;
  vertical-align: initial;
}
.sl-wrapper .sl-icon svg {
  fill: currentColor;
  width: 1em;
  height: 1em;
}
.sl-wrapper .sl-icon svg:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.sl-wrapper .loader,
.sl-wrapper .loader:before,
.sl-wrapper .loader:after {
  background: rgba(0, 0, 0, 0.2);
  -webkit-animation: slloader 1s infinite ease-in-out;
  animation: slloader 1s infinite ease-in-out;
  width: 0.2em;
  height: 0.6em;
}
.sl-wrapper .loader:before,
.sl-wrapper .loader:after {
  position: absolute;
  top: 0;
  content: "";
}
.sl-wrapper .loader:before {
  left: -0.375em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.sl-wrapper .loader {
  text-indent: -9999em;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  font-size: 1em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.sl-wrapper .loader:after {
  left: 0.375em;
}
@-webkit-keyframes slloader {
  0%, 80%, 100% {
    box-shadow: 0 0 rgba(0, 0, 0, 0.2);
    height: 0.6em;
  }
  40% {
    box-shadow: 0 -0.3em rgba(0, 0, 0, 0.2);
    height: 1em;
  }
}
@keyframes slloader {
  0%, 80%, 100% {
    box-shadow: 0 0 rgba(0, 0, 0, 0.2);
    height: 0.6em;
  }
  40% {
    box-shadow: 0 -0.3em rgba(0, 0, 0, 0.2);
    height: 1em;
  }
}

/*
 * post-format.scss
 * -----------------------------------------------
*/
body:not(.single) article.format-link {
  padding: 50px 30px;
  background-color: var(--theme-color-light);
  text-align: center;
  border: 1px solid rgba(222, 222, 222, 0.3);
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
}
body:not(.single) article.format-link .link-content {
  height: 100%;
  display: table;
}
body:not(.single) article.format-link .link-content .link-content-wrapper {
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
body:not(.single) article.format-link .link-content .link-content-wrapper .title {
  font-size: 1.6rem;
  margin-bottom: 20px;
  line-height: 1.5;
}
body:not(.single) article.format-link .link-content .link-content-wrapper .post-excerpt {
  margin-bottom: 0;
}
body:not(.single) article.format-link .link-content .link-content-wrapper .link {
  color: #999;
}
body:not(.single) article.format-link .link-content .link-content-wrapper .link-url {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
body:not(.single) article.format-link:after {
  content: "";
  opacity: 0.1;
  position: absolute;
  right: 0;
  top: 30px;
  margin: 0 auto;
  left: 0;
  width: 100px;
  height: 100px;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
body:not(.single) article.format-quote {
  background-color: var(--theme-color-light);
  padding: 50px 30px;
  text-align: center;
  border: 1px solid rgba(222, 222, 222, 0.3);
  position: relative;
  z-index: 0;
  display: flex;
  justify-content: center;
}
body:not(.single) article.format-quote .quote-content {
  height: 100%;
  display: table;
}
body:not(.single) article.format-quote .quote-content .quote-content-wrapper {
  height: 100%;
  display: table-cell;
  vertical-align: middle;
}
body:not(.single) article.format-quote .quote-content .quote-content-wrapper blockquote {
  border: none;
}
body:not(.single) article.format-quote .quote-content .quote-content-wrapper blockquote .title {
  font-size: 1.6rem;
}
body:not(.single) article.format-quote .quote-content .quote-content-wrapper blockquote .post-excerpt {
  margin-bottom: 0;
}
body:not(.single) article.format-quote .quote-content .quote-content-wrapper blockquote .quote {
  margin-bottom: 20px;
  line-height: 1.5;
}
body:not(.single) article.format-quote .quote-content .quote-content-wrapper blockquote footer {
  font-size: 0.9rem;
  color: #999;
}
body:not(.single) article.format-quote .quote-content .quote-content-wrapper blockquote:before {
  color: rgba(250, 250, 250, 0.7);
  content: "\f067";
  display: none;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 7rem;
  line-height: 1;
  opacity: 0.2;
  position: absolute;
  bottom: 0;
  right: 7px;
  transform: rotate(180deg);
}
body:not(.single) article.format-quote:after {
  content: "";
  opacity: 0.1;
  position: absolute;
  right: 0;
  top: 30px;
  margin: 0 auto;
  left: 0;
  width: 100px;
  height: 100px;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
[data-tm-layout=dark] body:not(.single) article.format-link, [data-tm-layout=dark] body:not(.single) article.format-quote {
  border: 1px solid rgba(39, 39, 39, 0.3);
}

/*
 * search-results.scss
 * -----------------------------------------------
*/
body.search-results .main-content-area article {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f5f5f5;
}

/*
 * page.scss
 * -----------------------------------------------
*/
table {
  margin: 0 0 40px;
  width: 100%;
}
table td, table th {
  padding: 5px;
}

.main-content-area {
  min-height: 0;
}

/*
 * animations.scss
 * -----------------------------------------------
*/
.tm-item-appear-clip-path-right {
  clip-path: inset(0 0 0 100%);
  -webkit-clip-path: inset(0 0 0 100%);
  -webkit-transition: 1s cubic-bezier(0.85, 0.15, 0.25, 1) !important;
  -moz-transition: 1s cubic-bezier(0.85, 0.15, 0.25, 1) !important;
  transition: 1s cubic-bezier(0.85, 0.15, 0.25, 1) !important;
}
.tm-item-appear-clip-path-right.tm-item-appeared {
  clip-path: inset(-20% -20% -20% -20%);
  -webkit-clip-path: inset(-20% -20% -20% -20%);
}

.tm-item-appear-clip-path {
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  -webkit-transition: 1s cubic-bezier(0.85, 0.15, 0.25, 1) !important;
  -moz-transition: 1s cubic-bezier(0.85, 0.15, 0.25, 1) !important;
  transition: 1s cubic-bezier(0.85, 0.15, 0.25, 1) !important;
}
.tm-item-appear-clip-path.tm-item-appeared {
  clip-path: inset(-20% -20% -20% -20%);
  -webkit-clip-path: inset(-20% -20% -20% -20%);
}

.tm-appear-block-holder {
  position: relative;
  overflow: hidden;
}
.tm-appear-block-holder:after, .tm-appear-block-holder:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.tm-appear-block-holder:after {
  background-color: var(--theme-color-dark);
  z-index: 2;
  -webkit-transform: translateX(-101%);
  -ms-transform: translateX(-101%);
  transform: translateX(-101%);
}
.tm-appear-block-holder:before {
  background-color: var(--theme-color1);
  z-index: 1;
  -webkit-transform: translateX(-101%);
  -ms-transform: translateX(-101%);
  transform: translateX(-101%);
}
.tm-appear-block-holder.tm-item-appeared:after {
  -webkit-animation: tm-appear-block-holder-animation 1.2s 0.2s cubic-bezier(1, 0, 0.54, 0.99) forwards;
  animation: tm-appear-block-holder-animation 1.2s 0.2s cubic-bezier(1, 0, 0.54, 0.99) forwards;
}
.tm-appear-block-holder.tm-item-appeared:before {
  -webkit-animation: tm-appear-block-holder-animation 1.5s cubic-bezier(0.86, 0, 0.07, 1) forwards;
  animation: tm-appear-block-holder-animation 1.5s cubic-bezier(0.86, 0, 0.07, 1) forwards;
}

@-webkit-keyframes tm-appear-block-holder-animation {
  0% {
    -webkit-transform: translateX(-101%);
    transform: translateX(-101%);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
  }
}
@keyframes tm-appear-block-holder-animation {
  0% {
    -webkit-transform: translateX(-101%);
    transform: translateX(-101%);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(101%);
    transform: translateX(101%);
  }
}
.elementor-editor-active .elementor-column.tm-appear-block-holder:after, .elementor-editor-active .elementor-widget-mkdf_single_image.tm-appear-block-holder:after {
  -webkit-animation: tm-appear-block-holder-animation 1.2s 0.2s cubic-bezier(1, 0, 0.54, 0.99) forwards;
  animation: tm-appear-block-holder-animation 1.2s 0.2s cubic-bezier(1, 0, 0.54, 0.99) forwards;
}

.elementor-editor-active .elementor-column.tm-appear-block-holder:before, .elementor-editor-active .elementor-widget-mkdf_single_image.tm-appear-block-holder:before {
  -webkit-animation: tm-appear-block-holder-animation 1.5s cubic-bezier(0.86, 0, 0.07, 1) forwards;
  animation: tm-appear-block-holder-animation 1.5s cubic-bezier(0.86, 0, 0.07, 1) forwards;
}

.fadeInUp {
  animation-name: fadeInUp;
  animation-duration: 1.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 25%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
  animation-duration: 1s;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-15%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
  animation-duration: 1s;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(15%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.tm-animation-floating {
  -webkit-animation-name: tm-animation-floating;
  -webkit-animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-name: Floating;
  -moz-animation-duration: 3s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: ease-in-out;
}

@-webkit-keyframes tm-animation-floating {
  from {
    -webkit-transform: translate(0, 0px);
  }
  65% {
    -webkit-transform: translate(0, 15px);
  }
  to {
    -webkit-transform: translate(0, 0px);
  }
}
@-moz-keyframes tm-animation-floating {
  from {
    -moz-transform: translate(0, 0px);
  }
  65% {
    -moz-transform: translate(0, 15px);
  }
  to {
    -moz-transform: translate(0, 0px);
  }
}
.tm-animation-slide-horizontal {
  -webkit-animation: tm-animation-slide-horizontal 3s linear infinite alternate-reverse both;
  animation: tm-animation-slide-horizontal 3s linear infinite alternate-reverse both;
}

@-webkit-keyframes tm-animation-slide-horizontal {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
@keyframes tm-animation-slide-horizontal {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px);
  }
}
.tm-animation-flicker {
  -webkit-animation: tm-animation-flicker 3s infinite;
  -moz-animation: tm-animation-flicker 3s infinite;
  -o-animation: tm-animation-flicker 3s infinite;
  animation: tm-animation-flicker 3s infinite;
}

@keyframes tm-animation-flicker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes tm-animation-flicker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes tm-animation-flicker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes tm-animation-flicker {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
  }
}
.tm-animation-spin {
  -webkit-animation: tm-animation-spin 10s linear infinite;
  -moz-animation: tm-animation-spin 10s linear infinite;
  animation: tm-animation-spin 10s linear infinite;
}

@-moz-keyframes tm-animation-spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes tm-animation-spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes tm-animation-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.tm-animation-random-animation1 {
  -webkit-animation: random-animation1 20s linear infinite alternate;
  -moz-animation: random-animation1 20s linear infinite alternate;
  animation: random-animation1 20s linear infinite alternate;
}

@keyframes random-animation1 {
  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);
  }
}
@-webkit-keyframes random-animation1 {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}
.tm-animation-random-animation2 {
  -webkit-animation: random-animation2 20s linear infinite alternate;
  -moz-animation: random-animation2 20s linear infinite alternate;
  animation: random-animation2 20s linear infinite alternate;
}

@keyframes random-animation2 {
  0% {
    transform: translate(61px, -99px) rotate(0deg);
  }
  21% {
    transform: translate(4px, -190px) rotate(38deg);
  }
  41% {
    transform: translate(-139px, -200px) rotate(74deg);
  }
  60% {
    transform: translate(-263px, -164px) rotate(108deg);
  }
  80% {
    transform: translate(-195px, -49px) rotate(144deg);
  }
  100% {
    transform: translate(-1px, 0px) rotate(180deg);
  }
}
@-webkit-keyframes random-animation2 {
  0% {
    -webkit-transform: translate(61px, -99px) rotate(0deg);
  }
  21% {
    -webkit-transform: translate(4px, -190px) rotate(38deg);
  }
  41% {
    -webkit-transform: translate(-139px, -200px) rotate(74deg);
  }
  60% {
    -webkit-transform: translate(-263px, -164px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-195px, -49px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(-1px, 0px) rotate(180deg);
  }
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/*
 * pagination.scss
 * -----------------------------------------------
*/
.pagination-wrapper {
  text-align: center;
}

.pagination {
  margin-top: 40px;
  display: inline-flex;
}
.pagination > .page-item {
  padding-left: 0 !important;
  margin-right: 10px;
}
.pagination > .page-item .page-link {
  color: var(--headings-color);
  border-color: #ddd;
  background-color: var(--theme-color-light);
  border: 0;
  border-radius: 50%;
  text-align: center;
  height: 50px;
  width: 50px;
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 991.98px) {
  .pagination > .page-item .page-link {
    height: 45px;
    width: 45px;
  }
}
.pagination > .page-item .page-link:hover:not(.dots) {
  background-color: var(--theme-color1);
  color: var(--theme-color1-text-color);
}
.pagination > .page-item .page-link.dots {
  background-color: transparent;
}
.pagination > .page-item.active .page-link {
  background-color: var(--theme-color1);
  color: var(--theme-color1-text-color);
}

/*
 *  box-hover-effect.scss
 * -----------------------------------------------
*/
.box-hover-effect {
  display: block;
  vertical-align: middle;
}
.box-hover-effect .effect-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0;
  width: 100%;
  /* Text Holder */
}
.box-hover-effect .effect-wrapper .thumb {
  position: relative;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: all 0.4s ease;
}
.box-hover-effect .effect-wrapper .thumb.gradient-effect:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50%;
  width: 100%;
  background: #181818;
  background: -moz-linear-gradient(top, #000000, rgba(0, 0, 0, 0.55), transparent);
  background: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0.55), transparent);
  background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0.55), transparent);
  content: "";
  z-index: 1;
}
.box-hover-effect .effect-wrapper .hover-link {
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  background: none !important;
  color: transparent !important;
  z-index: 9;
}
.box-hover-effect .effect-wrapper .text-holder {
  display: inline-block;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  transition: all 0.3s ease 0s;
  z-index: 13;
}
.box-hover-effect .effect-wrapper .text-holder .title {
  color: #fff;
}
.box-hover-effect:hover .effect-wrapper .thumb {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.box-hover-effect:hover .effect-wrapper .overlay-shade {
  opacity: 0.7;
  filter: alpha(opacity=90);
}

/*
 * shortcode.scss
 * -----------------------------------------------
*/
/*
 * Shortcode: blockquote.scss
 * -----------------------------------------------
*/
.post-excerpt blockquote:not([class*=has-]),
.comment-content blockquote,
.page-content blockquote,
.post-excerpt .wp-block-quote,
.widget_block .wp-block-quote,
.main-content-area article .post-excerpt .wp-block-quote,
.tm-sc-blockquote {
  color: var(--blockquote-text-color);
  background-color: var(--theme-color-light);
  border-left: 2px solid #333;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 7px;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  margin-bottom: 25px;
  margin-left: 0;
  margin-right: 0;
  transition: all 0.3s ease;
}
.post-excerpt blockquote:not([class*=has-]):before,
.comment-content blockquote:before,
.page-content blockquote:before,
.post-excerpt .wp-block-quote:before,
.widget_block .wp-block-quote:before,
.main-content-area article .post-excerpt .wp-block-quote:before,
.tm-sc-blockquote:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  bottom: 0;
  font-size: 4rem;
  line-height: 1;
  color: var(--theme-color-dark);
  opacity: 0.07;
  right: 30px;
  transition: all 0.3s ease;
}
.post-excerpt blockquote:not([class*=has-]):after,
.comment-content blockquote:after,
.page-content blockquote:after,
.post-excerpt .wp-block-quote:after,
.widget_block .wp-block-quote:after,
.main-content-area article .post-excerpt .wp-block-quote:after,
.tm-sc-blockquote:after {
  content: "";
  position: absolute;
  transition: all 0.3s ease;
}
.post-excerpt blockquote:not([class*=has-]) p,
.comment-content blockquote p,
.page-content blockquote p,
.post-excerpt .wp-block-quote p,
.widget_block .wp-block-quote p,
.main-content-area article .post-excerpt .wp-block-quote p,
.tm-sc-blockquote p {
  margin-bottom: 15px;
}
.post-excerpt blockquote:not([class*=has-]) cite,
.comment-content blockquote cite,
.page-content blockquote cite,
.post-excerpt .wp-block-quote cite,
.widget_block .wp-block-quote cite,
.main-content-area article .post-excerpt .wp-block-quote cite,
.tm-sc-blockquote cite {
  transition: all 0.3s ease;
  color: var(--blockquote-cite-color);
  display: block;
}
.post-excerpt blockquote:not([class*=has-]) cite a,
.comment-content blockquote cite a,
.page-content blockquote cite a,
.post-excerpt .wp-block-quote cite a,
.widget_block .wp-block-quote cite a,
.main-content-area article .post-excerpt .wp-block-quote cite a,
.tm-sc-blockquote cite a {
  color: var(--blockquote-cite-color);
}
.post-excerpt blockquote:not([class*=has-]) > :last-child,
.comment-content blockquote > :last-child,
.page-content blockquote > :last-child,
.post-excerpt .wp-block-quote > :last-child,
.widget_block .wp-block-quote > :last-child,
.main-content-area article .post-excerpt .wp-block-quote > :last-child,
.tm-sc-blockquote > :last-child {
  margin-bottom: 0;
}
.post-excerpt blockquote:not([class*=has-]).has-text-align-right,
.comment-content blockquote.has-text-align-right,
.page-content blockquote.has-text-align-right,
.post-excerpt .wp-block-quote.has-text-align-right,
.widget_block .wp-block-quote.has-text-align-right,
.main-content-area article .post-excerpt .wp-block-quote.has-text-align-right,
.tm-sc-blockquote.has-text-align-right {
  border-right: 2px solid #333;
  border-left: 0;
}
.post-excerpt blockquote:not([class*=has-]).has-text-align-right:before,
.comment-content blockquote.has-text-align-right:before,
.page-content blockquote.has-text-align-right:before,
.post-excerpt .wp-block-quote.has-text-align-right:before,
.widget_block .wp-block-quote.has-text-align-right:before,
.main-content-area article .post-excerpt .wp-block-quote.has-text-align-right:before,
.tm-sc-blockquote.has-text-align-right:before {
  right: auto;
  left: 30px;
  transform: rotateX(-180deg);
}

.post-excerpt .elementor-element blockquote {
  margin-bottom: 0;
}

.wp-block-group .wp-block-group__inner-container .wp-block-quote p:last-of-type {
  margin-bottom: 15px;
}

/*
 * Shortcode: button.scss
 * -----------------------------------------------
*/
.btn-gray {
  --bs-btn-color: #fff;
  --bs-btn-bg: #666;
  --bs-btn-border-color: #666;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #575757;
  --bs-btn-hover-border-color: #525252;
  --bs-btn-focus-shadow-rgb: 125, 125, 125;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #525252;
  --bs-btn-active-border-color: #4d4d4d;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #666;
  --bs-btn-disabled-border-color: #666;
}

.btn-light-gray {
  --bs-btn-color: #000;
  --bs-btn-bg: #e9e9e9;
  --bs-btn-border-color: #e9e9e9;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #ececec;
  --bs-btn-hover-border-color: #ebebeb;
  --bs-btn-focus-shadow-rgb: 198, 198, 198;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #ededed;
  --bs-btn-active-border-color: #ebebeb;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #e9e9e9;
  --bs-btn-disabled-border-color: #e9e9e9;
}

.btn-outline-gray {
  --bs-btn-color: #666;
  --bs-btn-border-color: #666;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #666;
  --bs-btn-hover-border-color: #666;
  --bs-btn-focus-shadow-rgb: 102, 102, 102;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #666;
  --bs-btn-active-border-color: #666;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #666;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #666;
  --bs-gradient: none;
}

.btn-outline-light-gray {
  --bs-btn-color: #e9e9e9;
  --bs-btn-border-color: #e9e9e9;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #e9e9e9;
  --bs-btn-hover-border-color: #e9e9e9;
  --bs-btn-focus-shadow-rgb: 233, 233, 233;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #e9e9e9;
  --bs-btn-active-border-color: #e9e9e9;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #e9e9e9;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #e9e9e9;
  --bs-gradient: none;
}

.btn-xs {
  --bs-btn-padding-y: 0.5rem;
  --bs-btn-padding-x: 1rem;
  --bs-btn-font-size: 0.8rem;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}

.btn,
.woocommerce .button:not(.compare):not(.tm-btn-add-to-cart):not([name=apply_coupon]),
.wc-forward,
.single_add_to_cart_button,
.woosw-item .button,
.woosw-item .added_to_cart,
.woosc_table .button,
.woosc_table .added_to_cart,
.comment-respond .comment-form .form-submit input[type=submit] {
  font-size: var(--btn-font-size);
  padding: 1.2rem 3.2rem;
  font-family: var(--body-font-family);
  font-weight: 600;
  letter-spacing: 0.05em;
  overflow: hidden;
  text-align: center;
  border-radius: 0;
  border-width: 0;
  overflow: hidden;
  display: inline-block;
  text-transform: uppercase;
  background-color: var(--theme-color1);
  color: var(--theme-color1-text-color);
  transition: all 0.2s ease-in-out;
}
.btn.focus, .btn:focus,
.woocommerce .button:not(.compare):not(.tm-btn-add-to-cart):not([name=apply_coupon]).focus,
.woocommerce .button:not(.compare):not(.tm-btn-add-to-cart):not([name=apply_coupon]):focus,
.wc-forward.focus,
.wc-forward:focus,
.single_add_to_cart_button.focus,
.single_add_to_cart_button:focus,
.woosw-item .button.focus,
.woosw-item .button:focus,
.woosw-item .added_to_cart.focus,
.woosw-item .added_to_cart:focus,
.woosc_table .button.focus,
.woosc_table .button:focus,
.woosc_table .added_to_cart.focus,
.woosc_table .added_to_cart:focus,
.comment-respond .comment-form .form-submit input[type=submit].focus,
.comment-respond .comment-form .form-submit input[type=submit]:focus {
  box-shadow: none !important;
}
.btn:hover,
.woocommerce .button:not(.compare):not(.tm-btn-add-to-cart):not([name=apply_coupon]):hover,
.wc-forward:hover,
.single_add_to_cart_button:hover,
.woosw-item .button:hover,
.woosw-item .added_to_cart:hover,
.woosc_table .button:hover,
.woosc_table .added_to_cart:hover,
.comment-respond .comment-form .form-submit input[type=submit]:hover {
  background-color: var(--theme-color3);
  color: var(--theme-color3-text-color);
}
.btn i,
.woocommerce .button:not(.compare):not(.tm-btn-add-to-cart):not([name=apply_coupon]) i,
.wc-forward i,
.single_add_to_cart_button i,
.woosw-item .button i,
.woosw-item .added_to_cart i,
.woosc_table .button i,
.woosc_table .added_to_cart i,
.comment-respond .comment-form .form-submit input[type=submit] i {
  margin-right: 5px;
}

.btn-theme-colored1,
.btn-theme-colored2,
.btn-theme-colored3,
.btn-theme-colored4,
.btn-outline-theme-colored1,
.btn-outline-theme-colored2,
.btn-outline-theme-colored3,
.btn-outline-theme-colored3,
.btn-light,
.btn-outline-light,
.btn-dark,
.btn-outline-dark,
.woocommerce .button:not(.compare):not(.tm-btn-add-to-cart):not([name=apply_coupon]),
.woosw-item .button,
.wc-forward,
.single_add_to_cart_button,
.woosw-item .added_to_cart,
.woosc_table .button,
.woosc_table .added_to_cart {
  position: relative;
  z-index: 0;
}

.btn-xs {
  padding: 0.5rem 1.2rem;
  font-size: 0.75rem;
}

.btn-sm {
  padding: 1rem 2.4rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 1.3rem 3rem;
}

[class*=" btn-outline-"] {
  border-width: 1px;
  padding: 1rem 2.5rem;
}
[class*=" btn-outline-"].btn-xs {
  padding: 0.55rem 1.2rem;
}
[class*=" btn-outline-"].btn-sm {
  padding: 0.8rem 1.7rem;
}
[class*=" btn-outline-"].btn-lg {
  padding: 1.1rem 3rem;
}

.btn-light,
.btn-outline-light {
  background-color: #f7f4ed;
  border-color: #f7f4ed;
  box-shadow: none;
  font-family: var(--body-font-family);
  font-weight: 600;
  font-size: var(--btn-font-size);
  color: var(--theme-color-dark);
}
.btn-light:hover,
.btn-outline-light:hover {
  background-color: #f7f4ed;
  border-color: #f7f4ed;
  box-shadow: none;
}

.btn-outline-light {
  background-color: transparent;
}
.btn-outline-light:hover {
  background-color: transparent;
}

.btn-dark,
.btn-outline-dark {
  box-shadow: 0 7px 20px rgba(33, 37, 41, 0.2);
}
.btn-dark:hover,
.btn-outline-dark:hover {
  box-shadow: 0 1px 20px rgba(33, 37, 41, 0.5);
}

.btn-outline-light {
  background-color: transparent;
}

.btn-gray:hover {
  color: #666;
  border-color: #666;
  background-color: transparent;
}

/* button 3D */
.btn-3d {
  box-shadow: 0 4px 1px #999999;
  margin-bottom: 4px;
}

.btn-round {
  border-radius: 3rem;
}

.btn-flat {
  border-radius: 0;
}

/* btn-plain-text*/
.btn-plain-text {
  color: #aaa;
  font-size: 1rem;
  padding: 0;
  border: 0;
  padding-bottom: 3px;
  background-color: transparent;
}
.btn-plain-text.focus, .btn-plain-text:focus {
  box-shadow: none;
  background-color: transparent;
}
.btn-plain-text:hover {
  background-color: transparent;
}

.btn-plain-text-with-arrow {
  color: #31333e;
  font-size: 14px;
  padding: 0;
  border: 0;
  text-transform: uppercase;
  background-color: transparent;
  font-weight: 800;
}
[data-tm-layout=dark] .btn-plain-text-with-arrow {
  color: #777;
}
.btn-plain-text-with-arrow:before {
  color: var(--theme-color-dark);
  display: inline-block;
  content: "\f35a";
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-variant: normal;
  font-weight: 600;
  line-height: 1;
  margin-right: 8px;
  position: relative;
  text-shadow: none;
  text-transform: none;
  transition: all 0.3s ease 0s;
}
[data-tm-layout=dark] .btn-plain-text-with-arrow:before {
  color: #939393;
}
.btn-plain-text-with-arrow:focus, .btn-plain-text-with-arrow:hover {
  color: var(--theme-color-dark);
  background-color: transparent;
}
.btn-plain-text-with-arrow:focus:before, .btn-plain-text-with-arrow:hover:before {
  color: var(--theme-color-dark);
  transform: rotateX(180deg);
  -webkit-animation: moveArrow 1s;
  -moz-animation: moveArrow 1s;
  animation: moveArrow 1s;
}
.btn-plain-text-with-arrow.focus, .btn-plain-text-with-arrow:focus {
  box-shadow: none;
}
.btn-plain-text-with-arrow.text-white:after {
  color: #fff !important;
}

.btn-plain-text-with-arrow-right {
  color: #31333e;
  font-size: 1rem;
  padding: 0;
  border: 0;
  text-transform: capitalize;
  background-color: transparent;
}
.btn-plain-text-with-arrow-right:after {
  color: var(--theme-color1);
  display: inline-block;
  content: "\f35a";
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-variant: normal;
  font-weight: 600;
  line-height: 1;
  margin-left: 10px;
  position: relative;
  text-shadow: none;
  text-transform: none;
  transition: all 0.3s ease 0s;
}
.btn-plain-text-with-arrow-right:focus, .btn-plain-text-with-arrow-right:hover {
  color: var(--theme-color3);
  background-color: transparent;
}
.btn-plain-text-with-arrow-right:focus:after, .btn-plain-text-with-arrow-right:hover:after {
  color: var(--theme-color3);
  -webkit-animation: moveArrow 1s;
  -moz-animation: moveArrow 1s;
  animation: moveArrow 1s;
}
.btn-plain-text-with-arrow-right.focus, .btn-plain-text-with-arrow-right:focus {
  box-shadow: none;
}

@keyframes moveArrow {
  0%, 55% {
    opacity: 1;
    -webkit-transform: translateX(0) scale(1);
    -moz-transform: translateX(0) scale(1);
    transform: translateX(0) scale(1);
  }
  25% {
    opacity: 0;
    -webkit-transform: translateX(13px) scale(0.9);
    -moz-transform: translateX(13px) scale(0.9);
    transform: translateX(13px) scale(0.9);
  }
  26% {
    opacity: 0;
    -webkit-transform: translateX(-13px) scale(0.9);
    -moz-transform: translateX(-13px) scale(0.9);
    transform: translateX(-13px) scale(0.9);
  }
}
.btn-hover-bg-white:hover, .btn-hover-bg-white:focus {
  color: var(--theme-color-dark) !important;
}

.btn-circle-arrow {
  border: 0;
  padding: 0;
  border-radius: 50%;
  font-size: 1.2rem;
  height: 55px;
  line-height: 55px;
  text-align: center;
  width: 55px;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  background-color: #f1f1f1;
  position: relative;
  transition: all 0.3s ease;
}
.btn-circle-arrow:after {
  position: absolute;
  content: "\f30b";
  left: 50%;
  font-size: 25px;
  top: 50%;
  font-weight: bold;
  color: #111;
  font-family: "Font Awesome 5 Free";
  transform: translate(-50%, -50%);
  border-radius: 50%;
  text-align: center;
  z-index: 9;
  color: var(--theme-color-dark);
}

.btn .btn-icon,
.btn .btn-icon svg {
  transition: all 0.3s ease;
}

/*Btn Style One*/
.theme-btn-style-one {
  position: relative;
  font-size: 16px;
  line-height: 20px;
  padding: 24px 90px 20px 60px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: capitalize;
  color: var(--theme-color1-text-color);
  background-color: var(--theme-color1);
  -webkit-clip-path: polygon(0 0, 100% 0, 89% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 89% 100%, 0 100%);
  transition: all 300ms ease;
  z-index: 1;
}
.theme-btn-style-one:focus {
  color: var(--headings-color);
}
.theme-btn-style-one:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
.theme-btn-style-one span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
}
.theme-btn-style-one::before {
  content: "";
  position: absolute;
  top: 0;
  right: 25px;
  width: 7px;
  height: 100%;
  -webkit-transform: skewX(-21deg);
  -moz-transform: skewX(-21deg);
  -ms-transform: skewX(-21deg);
  transform: skewX(-21deg);
  background-color: #fff;
  transition: all 300ms ease;
  z-index: 1;
}
.theme-btn-style-one:hover {
  color: #fff;
}

/*Btn Style Two*/
.theme-btn-style-two {
  position: relative;
  font-size: 16px;
  line-height: 20px;
  padding: 24px 90px 20px 60px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
  text-transform: capitalize;
  background-color: var(--headings-color);
  -webkit-clip-path: polygon(0 0, 100% 0, 89% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 89% 100%, 0 100%);
  transition: all 300ms ease;
  z-index: 1;
}
.theme-btn-style-two:focus {
  color: var(--headings-color);
}
.theme-btn-style-two:active {
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}
.theme-btn-style-two span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
}
.theme-btn-style-two:hover {
  color: var(--headings-color);
}

/*Btn Style Three*/
.theme-btn-style-three {
  position: relative;
  font-size: 16px;
  line-height: 20px;
  padding: 24px 90px 20px 60px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: capitalize;
  color: var(--theme-color1-text-color);
  background-color: var(--theme-color1);
  -webkit-clip-path: polygon(0 0, 100% 0, 89% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 89% 100%, 0 100%);
  transition: all 300ms ease;
  z-index: 1;
}
.theme-btn-style-three:focus {
  color: var(--headings-color);
}
.theme-btn-style-three span {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 1;
}
.theme-btn-style-three:hover {
  color: var(--theme-color-dark);
}

/*
 * Shortcode: common.scss
 * -----------------------------------------------
*/
.tm-sc .excerpt {
  margin-bottom: 20px;
}

.tm-loadmore-container {
  text-align: center;
  margin-top: 50px;
}

/*
 * Shortcode: section-title.scss
 * -----------------------------------------------
*/
.tm-sc-section-title {
  margin-bottom: 60px;
}
.tm-sc-section-title .title-wrapper {
  margin-bottom: 0;
  position: relative;
}
.tm-sc-section-title .title-wrapper .title {
  margin-top: -6px;
  margin-bottom: 10px;
  position: relative;
  z-index: 0;
  font-family: var(--section-title-font-family);
  font-weight: var(--section-title-font-weight);
  color: var(--section-title-color);
  line-height: var(--section-title-line-height);
  transition: all 0.3s ease;
}
.tm-sc-section-title .title-wrapper .title .title-shadow-text {
  position: absolute;
  left: 0;
  right: 0;
  z-index: -1;
  color: #ddd;
  font-size: 6rem;
  opacity: 0.4;
  top: -40px;
}
@media (max-width: 767.98px) {
  .tm-sc-section-title .title-wrapper .title .title-shadow-text {
    font-size: 4rem;
    top: -20px;
  }
}
.tm-sc-section-title .title-wrapper .title span {
  line-height: 1;
  display: inline;
}
.tm-sc-section-title .title-wrapper h2.title {
  font-size: var(--section-title-font-size);
}
@media (max-width: 767.98px) {
  .tm-sc-section-title .title-wrapper h2.title {
    font-size: var(--h2-font-size-mob);
  }
}
.tm-sc-section-title .title-wrapper .sub-title-outer {
  position: relative;
  margin-bottom: 5px;
  display: inline-block;
}
.tm-sc-section-title .title-wrapper .sub-title-outer .subtitle {
  position: relative;
  display: block;
  z-index: 1;
  color: var(--section-title-subtitle-color);
  font-size: var(--section-title-subtitle-font-size);
  line-height: var(--section-title-subtitle-line-height);
  font-family: var(--section-title-subtitle-font-family);
  font-weight: var(--section-title-subtitle-font-weight);
  text-transform: uppercase;
  margin-bottom: 10px;
  padding-top: 12px;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.tm-sc-section-title .title-wrapper .sub-title-outer .divider {
  position: relative;
  display: inline-block;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  height: 15px;
}
.tm-sc-section-title .title-wrapper .sub-title-outer .divider:after {
  position: absolute;
  left: 50%;
  top: 50%;
  border-bottom: 1px solid var(--theme-color1);
  content: "";
  width: 50%;
  margin-left: 11px;
}
.tm-sc-section-title .title-wrapper .sub-title-outer .divider:before {
  position: absolute;
  top: 50%;
  border-bottom: 1px solid var(--theme-color1);
  content: "";
  width: 50%;
  margin-left: 11px;
  right: 50%;
  left: auto;
  margin-right: 11px;
  margin-left: 0;
}
.tm-sc-section-title .title-wrapper :first-child {
  margin-top: 0;
}
.tm-sc-section-title .title-wrapper .paragraph {
  position: relative;
  transition: all 0.3s ease;
}
.tm-sc-section-title .title-wrapper .paragraph > * {
  transition: all 0.3s ease;
}
.tm-sc-section-title.subtitle-current-style1.dark .title-wrapper .sub-title-outer .subtitle::before {
  filter: brightness(0);
}
.tm-sc-section-title.subtitle-current-style1 .title-wrapper .sub-title-outer .subtitle {
  position: relative;
  color: #000;
  border: 3px solid #eee9e3;
  display: inline-block;
  padding: 2px 24px;
  letter-spacing: 0.2em;
  line-height: 30px;
  font-family: var(--heading-font-family);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}
.tm-sc-section-title.subtitle-current-style1 .title-wrapper .sub-title-outer .subtitle::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 19px;
  height: 14px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.tm-sc-section-title.title-icon-pos-icon-top .title-wrapper .subtitle {
  display: block;
}

.elementor-widget-tm-ele-section-title.horizontal-line-align-center .tm-sc-section-title .title-wrapper:before, .elementor-widget-tm-ele-section-title.horizontal-line-align-center .tm-sc-section-title .title-wrapper:after {
  left: 50%;
  transform: translate(-50%, 0);
}
.elementor-widget-tm-ele-section-title.horizontal-line-align-right .tm-sc-section-title .title-wrapper:before, .elementor-widget-tm-ele-section-title.horizontal-line-align-right .tm-sc-section-title .title-wrapper:after {
  left: auto;
  right: 0;
}
.elementor-widget-tm-ele-section-title.vertical-line-align-top .tm-sc-section-title .title-wrapper:before, .elementor-widget-tm-ele-section-title.vertical-line-align-top .tm-sc-section-title .title-wrapper:after {
  bottom: auto;
  top: -20px;
}

/*
 * Shortcode: stretched-bg.scss
 * -----------------------------------------------
*/
/*
 * Shortcode: styled-icons.scss
 * -----------------------------------------------
*/
/*
 * Shortcode: instagram-feed.scss
 * -----------------------------------------------
*/
#sb_instagram {
  padding-bottom: 0 !important;
  position: relative;
}
#sb_instagram .sbi_follow_btn {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
#sb_instagram .sbi_follow_btn a {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: top;
  zoom: 1;
  padding: 15px 25px;
  margin: 5px auto 0;
  background: var(--theme-color-dark);
  border: none;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.5;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  transition: all 0.1s ease-in;
}
#sb_instagram .sbi_follow_btn a:hover, #sb_instagram .sbi_follow_btn a:focus {
  box-shadow: none;
}
#sb_instagram #sbi_load {
  padding: 0 !important;
}
#sb_instagram .sbi_photo_wrap .sbi_photo {
  position: relative;
  transition: all 0.5s ease;
}
#sb_instagram .sbi_photo_wrap .sbi_photo:before {
  color: var(--theme-color1-text-color);
  content: "\f16d";
  font-family: "Font Awesome 5 Brands";
  font-weight: 600;
  font-size: 30px;
  position: absolute;
  top: 40%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-out;
  z-index: 3;
}
#sb_instagram .sbi_photo_wrap .sbi_photo:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  background-color: rgba(var(--theme-color1-rgb), 0.8);
  transition: all 0.3s ease-out;
}
#sb_instagram .sbi_photo_wrap .sbi_photo:hover:before {
  top: 50%;
  opacity: 1;
  visibility: visible;
}
#sb_instagram .sbi_photo_wrap .sbi_photo:hover:after {
  opacity: 1;
  visibility: visible;
}

#sb_instagram .sbi_follow_btn a {
  color: var(--theme-color2-text-color);
  background: rgba(var(--theme-color2-rgb), 0.99) !important;
  box-shadow: none !important;
}
#sb_instagram .sbi_follow_btn a:hover {
  color: var(--theme-color1-text-color);
  background: rgba(var(--theme-color1-rgb), 0.99) !important;
}

/*
 * widgets.scss
 * -----------------------------------------------
*/
.wp-block-calendar table,
.wp-block-calendar th,
.wp-block-calendar td,
.widget_calendar table,
.widget_calendar th,
.widget_calendar td {
  border: 1px solid rgba(51, 51, 51, 0.1);
}
[data-tm-layout=dark] .wp-block-calendar table,
[data-tm-layout=dark] .wp-block-calendar th,
[data-tm-layout=dark] .wp-block-calendar td,
[data-tm-layout=dark] .widget_calendar table,
[data-tm-layout=dark] .widget_calendar th,
[data-tm-layout=dark] .widget_calendar td {
  border: 1px solid rgba(221, 221, 221, 0.1);
}
.wp-block-calendar .wp-calendar-table,
.widget_calendar .wp-calendar-table {
  margin-bottom: 10px;
}
.wp-block-calendar .wp-calendar-table thead,
.widget_calendar .wp-calendar-table thead {
  background-color: var(--theme-color1);
}
.wp-block-calendar .wp-calendar-table thead th,
.widget_calendar .wp-calendar-table thead th {
  background-color: transparent;
  color: var(--theme-color1-text-color);
  text-align: center;
  padding-top: 15px;
  padding-bottom: 10px;
}
[data-tm-layout=dark] .wp-block-calendar .wp-calendar-table thead th,
[data-tm-layout=dark] .widget_calendar .wp-calendar-table thead th {
  border: 1px solid rgba(51, 51, 51, 0.1);
}
.wp-block-calendar .wp-calendar-table tbody,
.widget_calendar .wp-calendar-table tbody {
  background-color: var(--theme-color-white);
}
.wp-block-calendar .wp-calendar-table tbody td,
.widget_calendar .wp-calendar-table tbody td {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 8px;
}
.wp-block-calendar .wp-calendar-table caption,
.widget_calendar .wp-calendar-table caption {
  text-align: center;
  color: var(--theme-color1);
  padding-bottom: 0;
  padding-top: 20px;
  caption-side: bottom;
}
.wp-block-calendar a,
.widget_calendar a {
  text-decoration: none;
}
.wp-block-calendar .calendar_wrap nav,
.widget_calendar .calendar_wrap nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wp-block-calendar .calendar_wrap nav a,
.widget_calendar .calendar_wrap nav a {
  color: var(--theme-color-dark);
  transition: all 500ms ease;
}
.wp-block-calendar .calendar_wrap nav a:hover,
.widget_calendar .calendar_wrap nav a:hover {
  color: var(--hover-theme-color);
}

.wp-block-calendar {
  margin-bottom: 28px;
}

.widget .wp-block-calendar {
  margin-bottom: 0;
}

.wp-block-group .wp-block-group__inner-container > .wp-block-calendar {
  margin-bottom: 35px;
}

/*
 * gallery-images.scss
 * -----------------------------------------------
*/
.widget-gallery-images .isotope-layout .isotope-item {
  margin-bottom: 0;
}
.widget-gallery-images .isotope-layout.grid-3 .isotope-item {
  width: 33.2% !important;
}

/*
 * search.scss
 * -----------------------------------------------
*/
body.error404 .search-box .search-form,
.sidebar-area .widget_search .search-form,
.footer-widget-area .widget_search .search-form,
body.search .new-search-form .search-form {
  position: relative;
  margin: 0px;
}
body.error404 .search-box .search-form input[type=text],
.sidebar-area .widget_search .search-form input[type=text],
.footer-widget-area .widget_search .search-form input[type=text],
body.search .new-search-form .search-form input[type=text] {
  position: relative;
  line-height: 40px;
  padding: 19px 80px 19px 35px;
  background: var(--sidebar_widget_search_bg);
  border: 1px solid var(--sidebar_widget_search_border);
  border-radius: 7px;
  color: var(--theme-color-dark);
  display: block;
  letter-spacing: 0px;
  width: 100%;
  height: 80px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
body.error404 .search-box .search-form input[type=search],
.sidebar-area .widget_search .search-form input[type=search],
.footer-widget-area .widget_search .search-form input[type=search],
body.search .new-search-form .search-form input[type=search] {
  position: relative;
  line-height: 40px;
  padding: 15px 80px 15px 25px;
  background: var(--sidebar_widget_search_bg);
  border: 1px solid var(--sidebar_widget_search_border);
  border-radius: 7px;
  color: var(--theme-color-dark);
  display: block;
  font-weight: 300;
  letter-spacing: 0px;
  width: 100%;
  height: 67px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
body.error404 .search-box .search-form input:focus,
.sidebar-area .widget_search .search-form input:focus,
.footer-widget-area .widget_search .search-form input:focus,
body.search .new-search-form .search-form input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--theme-color1);
}
body.error404 .search-box .search-form button,
.sidebar-area .widget_search .search-form button,
.footer-widget-area .widget_search .search-form button,
body.search .new-search-form .search-form button {
  position: absolute;
  right: 0;
  top: 0px;
  border: none;
  border-radius: 0 7px 7px 0;
  outline: none;
  padding: 0;
  height: 67px;
  width: 60px;
  line-height: 67px;
  display: block;
  font-size: 1.1rem;
  color: var(--theme-color1-text-color);
  background-color: var(--theme-color1);
  font-weight: normal;
  transition: all 0.3s ease;
}
body.error404 .search-box .search-form button:hover,
.sidebar-area .widget_search .search-form button:hover,
.footer-widget-area .widget_search .search-form button:hover,
body.search .new-search-form .search-form button:hover {
  background-color: var(--theme-color-dark);
  color: var(--theme-color2-text-color);
}

body.search .new-search-form {
  margin-bottom: 60px;
}
body.search .new-search-form .search-title {
  margin-top: 0;
}
body.search .new-search-form .search-form input[type=search] {
  margin-top: 20px;
  border-radius: 0;
  border: 1px solid var(--theme-color-silver);
  border-radius: 10px;
}
body.search .new-search-form .search-form button {
  border-radius: 0 10px 10px 0;
}

body.search-results .main-content-area .entry-title {
  margin-top: 0;
}

.wp-block-search {
  position: relative;
  margin: 0px;
  margin-bottom: 20px;
}
.wp-block-search .wp-block-search__label {
  display: none;
}
.wp-block-search .wp-block-search__input {
  position: relative;
  line-height: 40px;
  padding: 15px 80px 15px 25px;
  background: var(--sidebar_widget_search_bg);
  border: 1px solid var(--theme-color-silver);
  border-radius: 10px;
  color: var(--theme-color-dark);
  display: block;
  letter-spacing: 0px;
  width: 100%;
  height: 67px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}
.wp-block-search input:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--theme-color1);
}
.wp-block-search .wp-block-search__button {
  position: absolute;
  right: 0px;
  top: 0px;
  border: none;
  border-radius: 0 10px 10px 0;
  outline: none;
  padding: 0;
  height: 67px;
  width: 60px;
  line-height: 67px;
  display: block;
  font-size: 0;
  color: transparent;
  background-color: var(--theme-color1);
  font-weight: normal;
  transition: all 0.3s ease;
}
.wp-block-search .wp-block-search__button:before {
  content: "\f002";
  left: 50%;
  top: 50%;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--theme-color1-text-color);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.wp-block-search .wp-block-search__button:hover {
  background-color: var(--theme-color-dark);
}
.wp-block-search .wp-block-search__button:hover:before {
  color: var(--theme-color2-text-color);
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__button {
  top: 5px;
  right: 5px;
}

/*
 * sidebar-nav-menu.scss
 * -----------------------------------------------
*/
.tm-sidebar-nav-menu-style1 .widget.widget_nav_menu ul > li {
  margin: 0;
  padding: 0;
}
.tm-sidebar-nav-menu-style1 .widget.widget_nav_menu ul > li::before {
  content: "";
}
.tm-sidebar-nav-menu-style1 .widget.widget_nav_menu ul > li > a {
  color: #012446;
  background: #f5f5f5;
  font-weight: 700;
  text-decoration: none !important;
  border-left: 5px solid transparent;
  border-bottom: 1px solid #fff;
  display: block;
  padding: 16px;
  transition: all 0.3s ease;
}
.tm-sidebar-nav-menu-style1 .widget.widget_nav_menu ul > li > a:hover {
  border-left-color: #b798e0;
}
.tm-sidebar-nav-menu-style1 .widget.widget_nav_menu ul > li.current-menu-item a {
  border-left-color: #b798e0;
}

.tm-sidebar-nav-menu-style2 .widget.widget_nav_menu ul > li {
  padding: 0;
  transition: all 100ms ease-in-out 0s;
}
.tm-sidebar-nav-menu-style2 .widget.widget_nav_menu ul > li::before {
  left: auto;
  right: 18px;
  top: 15px;
  font-size: 18px;
}
.tm-sidebar-nav-menu-style2 .widget.widget_nav_menu ul > li a {
  background: #eef0f3;
  border-left: 1px solid #eef0f3;
  border-bottom: 1px solid #fff;
  color: var(--theme-color-dark);
  font-weight: 700;
  display: block;
  padding: 16px;
}
.tm-sidebar-nav-menu-style2 .widget.widget_nav_menu ul > li a:hover {
  background: #fff;
  border-left: 5px solid #eee;
}
.tm-sidebar-nav-menu-style2 .widget.widget_nav_menu ul > li.current-menu-item a {
  background: #fff;
  border-left: 5px solid #eee;
}
.tm-sidebar-nav-menu-style2 .widget.widget_nav_menu ul > li:first-child a {
  border-top: 1px solid #f5f5f5;
}

.tm-sidebar-nav-menu-style1 .widget.widget_nav_menu ul > li a:hover {
  border-left-color: var(--theme-color1);
}
.tm-sidebar-nav-menu-style1 .widget.widget_nav_menu ul > li.current-menu-item > a {
  border-left-color: var(--theme-color1);
}

.tm-sidebar-nav-menu-style2 .widget.widget_nav_menu ul > li a:hover {
  border-left-color: var(--theme-color1);
}
.tm-sidebar-nav-menu-style2 .widget.widget_nav_menu ul > li.current-menu-item > a {
  border-left-color: var(--theme-color1);
}

/*
 * widgets-common.scss
 * -----------------------------------------------
*/
body:not(.elementor-editor-active) .main-content .widget:not(.widget_search) .widget-inner {
  position: relative;
  display: block;
  padding: 35px;
  background-color: var(--sidebar_widget_common_bg);
  border: 1px solid var(--sidebar_widget_common_border);
  border-radius: 7px;
}
@media (max-width: 767.98px) {
  body:not(.elementor-editor-active) .main-content .widget:not(.widget_search) .widget-inner {
    padding: 30px;
  }
}

.widget {
  margin-bottom: 35px;
}
.widget:last-child {
  margin-bottom: 0;
}
.widget ul,
.widget ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget ul li {
  list-style: none;
  padding-bottom: 0;
  padding-top: 0;
  margin-bottom: 0;
  line-height: var(--line-height-widget-li);
}
.widget > ul li:last-child,
.widget ul.menu li:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.widget .widget-title, .widget.widget_block h2 {
  margin-bottom: 25px;
  margin-top: 0;
  font-size: var(--h4-font-size);
  font-weight: var(--headings-font-weight-h5);
  line-height: var(--headings-line-height-smaller);
  letter-spacing: inherit;
}
.widget .widget-title.widget-title-line-bottom, .widget.widget_block h2.widget-title-line-bottom {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.widget .widget-title.widget-title-line-bottom:after, .widget .widget-title.widget-title-line-bottom:before, .widget.widget_block h2.widget-title-line-bottom:after, .widget.widget_block h2.widget-title-line-bottom:before {
  background: var(--sidebar_widget_heading_border_color2);
  border-radius: 10px;
  bottom: -1px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 50px;
}
.widget .widget-title.widget-title-line-bottom:before, .widget.widget_block h2.widget-title-line-bottom:before {
  background: var(--sidebar_widget_heading_border_color);
  width: 100%;
}
.widget .widget-title.line-bottom-theme-colored1:after, .widget.widget_block h2.line-bottom-theme-colored1:after {
  background: var(--theme-color1);
}
.widget.widget_block .wp-block-group__inner-container h2 {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.widget.widget_block .wp-block-group__inner-container h2:after, .widget.widget_block .wp-block-group__inner-container h2:before {
  background: var(--sidebar_widget_heading_border_color2);
  border-radius: 10px;
  bottom: -1px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 50px;
}
.widget.widget_block .wp-block-group__inner-container h2:before {
  background: var(--sidebar_widget_heading_border_color);
  width: 100%;
}
.widget.tm-widget-sticky-sidebar-in-parent {
  display: none;
}
.widget.widget_recent_entries ul > li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(150, 150, 150, 0.3);
  line-height: var(--line-height-base);
}
.widget.widget_recent_entries ul > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.widget.widget_recent_entries ul > li a {
  color: var(--sidebar_link_color);
}
.widget.widget_recent_entries ul > li a:hover {
  color: var(--hover-theme-color);
}
.widget.widget_recent_entries ul > li > span {
  display: block;
  color: var(--sidebar_link_color);
  font-size: 14px;
  font-weight: 300;
  line-height: 12px;
  padding: 4px 0;
}
.widget.widget_archive ul > li, .widget.widget_categories ul > li, .widget.widget_pages ul > li, .widget.widget_meta ul > li, .widget.widget_recent_comments ul > li, .widget.widget_rss ul > li, .widget.widget_nav_menu ul > li {
  padding-left: 15px;
  position: relative;
  transition: all 0.3s ease;
}
.widget.widget_archive ul > li::before, .widget.widget_categories ul > li::before, .widget.widget_pages ul > li::before, .widget.widget_meta ul > li::before, .widget.widget_recent_comments ul > li::before, .widget.widget_rss ul > li::before, .widget.widget_nav_menu ul > li::before {
  content: "\f0da";
  left: 0;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: #ccc;
  transition: all 0.3s ease;
}
.widget.widget_archive ul > li::before, .widget.widget_categories ul > li::before, .widget.widget_pages ul > li::before, .widget.widget_meta ul > li::before, .widget.widget_recent_comments ul > li::before, .widget.widget_rss ul > li::before, .widget.widget_nav_menu ul > li::before {
  color: var(--sidebar_widget_list_icon_color);
}
.widget.widget_archive ul > li a, .widget.widget_categories ul > li a, .widget.widget_pages ul > li a, .widget.widget_meta ul > li a, .widget.widget_recent_comments ul > li a, .widget.widget_rss ul > li a, .widget.widget_nav_menu ul > li a {
  color: var(--sidebar_link_color);
  font-weight: normal;
  font-size: var(--body-font-size);
}
.widget.widget_archive ul > li > a:hover, .widget.widget_categories ul > li > a:hover, .widget.widget_pages ul > li > a:hover, .widget.widget_meta ul > li > a:hover, .widget.widget_recent_comments ul > li > a:hover, .widget.widget_rss ul > li > a:hover, .widget.widget_nav_menu ul > li > a:hover {
  color: var(--hover-theme-color);
}
.widget.widget_categories ul > li, .widget.widget_archive ul > li {
  padding-left: 24px;
  color: #999;
}
.widget.widget_categories ul > li::before, .widget.widget_archive ul > li::before {
  content: "\f07b";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
}
.widget.widget_categories ul > li a, .widget.widget_archive ul > li a {
  margin-left: 5px;
}
.widget.widget_recent_comments ul > li {
  line-height: var(--line-height-base);
  margin-bottom: 7px;
  padding-bottom: 7px;
}
.widget.widget_recent_comments ul > li .comment-author-link,
.widget.widget_recent_comments ul > li .comment-author-link a {
  color: var(--sidebar_link_color);
  font-size: var(--h6-font-size);
  font-weight: var(--headings-font-weight-h6);
  font-family: var(--heading-font-family);
  transition: all 0.3s ease;
}
.widget.widget_recent_comments ul > li .comment-author-link a:hover {
  color: var(--hover-theme-color);
}
.widget.widget_recent_comments ul > li a {
  font-style: italic;
}
.widget.widget_recent_comments ul > li .comment-author-link a {
  font-style: normal;
}
.widget.widget_nav_menu .sub-menu {
  /* padding-left: 10px; */
}
.widget.widget_nav_menu ul > li::before {
  content: "\f0da";
  font-size: 14px;
  font-weight: 600;
}
.widget.widget_nav_menu ul > li.current-menu-item:before {
  color: var(--theme-color-dark);
}
.widget.widget_tag_cloud .tagcloud > a {
  background: var(--theme-color-white);
  border: 1px solid var(--theme-color-gray);
  border-radius: 2px;
  color: var(--sidebar_link_color);
  display: inline-block;
  font-size: 13px !important;
  margin: 8px 5px 0 0 !important;
  padding: 8px 25px !important;
  border-radius: 10px;
  text-transform: capitalize;
  display: inline-block;
  transition: all 0.3s ease;
}
.widget.widget_tag_cloud .tagcloud > a:hover {
  background: var(--theme-color-dark);
  color: #fff;
}
.widget .wp-block-tag-cloud > a {
  background: var(--theme-color-white);
  border: 1px solid var(--theme-color-gray);
  color: var(--sidebar_link_color);
  display: inline-block;
  font-size: 13px !important;
  margin: 8px 5px 0 0 !important;
  padding: 8px 25px !important;
  border-radius: 10px;
  text-transform: capitalize;
  display: inline-block;
  transition: all 0.3s ease;
}
.widget .wp-block-tag-cloud > a:hover {
  text-decoration: none !important;
  background: var(--theme-color1);
  color: var(--theme-color1-text-color);
}
.widget select {
  border: 1px solid rgba(51, 51, 51, 0.1);
  max-width: 100%;
  padding: 7px 10px;
  width: 100%;
}
.widget.widget_rss ul li {
  margin-bottom: 25px;
}
.widget.widget_rss ul li:last-child {
  margin-bottom: 0;
}
.widget.widget_rss ul li .rsswidget {
  display: block;
  color: var(--headings-color);
  font-size: var(--h5-font-size);
  font-family: var(--heading-font-family);
  font-weight: var(--headings-font-weight-h5);
  line-height: var(--headings-line-height-smaller);
}
.widget.widget_rss ul li .rss-date {
  color: var(--theme-color1);
  font-size: 0.9rem;
}
.widget.widget_rss ul li .rssSummary {
  color: #777;
  line-height: var(--line-height-base);
}
.widget.widget_rss ul li cite {
  color: var(--theme-color-dark);
  font-size: 0.9rem;
}
[data-tm-layout=dark] .widget.widget_rss ul li cite {
  color: #bbb;
}
.widget.widget_rss ul li:before, .widget.widget_rss ul li:after,
.widget.widget_rss ul li a {
  line-height: 1.5;
}
.widget.widget_text img {
  display: block;
}
.widget.widget_tag_cloud .tagcloud > a:hover, .widget.widget_product_tag_cloud .tagcloud > a:hover {
  background: var(--theme-color1);
  color: var(--theme-color1-text-color);
}

.widget .name {
  margin-top: 0;
}

.widget .nice-select {
  float: none;
}
.widget.widget_archive .nice-select ul > li:before {
  content: "";
}

.post-single .entry-content .nice-select {
  float: none;
}

.text-center .widget .widget-title.widget-title-line-bottom:after {
  left: 0;
  right: 0;
  margin: 0 auto;
}

.wp-block-categories > li {
  padding-left: 15px;
  position: relative;
  transition: all 0.3s ease;
}
.wp-block-categories > li::before {
  content: "\f0da";
  left: 0;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: #ccc;
  transition: all 0.3s ease;
}
.wp-block-categories > li {
  padding-left: 24px;
  color: #bbb;
}
.wp-block-categories > li::before {
  content: "\f07b";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  color: var(--sidebar_widget_list_icon_color);
}
.wp-block-categories > li a {
  margin-left: 5px;
  color: var(--sidebar_link_color);
  font-weight: normal;
  font-size: var(--body-font-size);
}
.wp-block-categories > li > a:hover {
  color: var(--hover-theme-color);
}

.wp-block-latest-comments:not(.has-avatar):not(.has-dates) li {
  position: relative;
  padding-left: 60px;
  min-height: 44px;
}
.wp-block-latest-comments:not(.has-avatar):not(.has-dates) li::before {
  content: "\f075";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color1, #ffffff);
  width: 44px;
  height: 44px;
  color: var(--theme-color1-text-color, #04000b);
  margin-right: 20px;
  transition: all 500ms ease;
  position: absolute;
  top: 0;
  left: 0;
}
.wp-block-latest-comments:not(.has-avatar):not(.has-dates) li:hover::before {
  background-color: var(--theme-color-dark);
  color: var(--theme-color2-text-color);
}

/*
 * blog-list.scss
 * -----------------------------------------------
*/
.tm-widget-blog-list .post {
  border-bottom: none;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .tm-widget-blog-list .post {
    align-items: start;
  }
}
.tm-widget-blog-list .post:not(:last-child) {
  margin-bottom: 13px;
  padding-bottom: 13px;
}
.tm-widget-blog-list .post .post-thumb {
  float: left;
  margin-right: 15px;
  margin-top: 1px;
  width: 75px;
  flex-shrink: 0;
}
.tm-widget-blog-list .post .post-thumb img {
  border-radius: 50%;
}
.tm-widget-blog-list .post .post-right {
  overflow: hidden;
}
.tm-widget-blog-list .post .post-right .post-title {
  margin-top: 0;
  margin-bottom: 7px;
}
.tm-widget-blog-list .post .post-right .post-title a {
  text-transform: capitalize;
}
.tm-widget-blog-list .post .post-right .entry-date {
  display: block;
  color: var(--entry-meta-color-light);
  font-size: 14px;
  line-height: 12px;
  padding: 4px 0;
}

.tm-onappear-slide-animation {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-10px);
  -ms-transform: translateX(-10px);
  transform: translateX(-10px);
  -webkit-transition: 0.5s ease;
  -o-transition: 0.5s ease;
  transition: 0.5s ease;
}
.tm-onappear-slide-animation:nth-of-type(2) {
  -webkit-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.tm-onappear-slide-animation:nth-of-type(3) {
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.tm-onappear-slide-animation:nth-of-type(4) {
  -webkit-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  transition-delay: 0.4s;
}
.tm-onappear-slide-animation:nth-of-type(5) {
  -webkit-transition-delay: 0.5s;
  -o-transition-delay: 0.5s;
  transition-delay: 0.5s;
}
.tm-onappear-slide-animation:nth-of-type(6) {
  -webkit-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
  transition-delay: 0.6s;
}
.tm-onappear-slide-animation:nth-of-type(7) {
  -webkit-transition-delay: 0.7s;
  -o-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.tm-onappear-slide-animation:nth-of-type(8) {
  -webkit-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
  transition-delay: 0.8s;
}
.tm-onappear-slide-animation.tm-item-appeared {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.tm_cursor_mouse_helper {
  font-size: 16px;
  text-indent: 0;
  --mouse-helper-width: 11px;
  --mouse-helper-height: 11px;
  --mouse-helper-left: 15px;
  --mouse-helper-top: 15px;
  border: none;
  mix-blend-mode: exclusion;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -ms-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  -webkit-transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease, left 0.3s ease, top 0.3s ease, border-radius 0.1s ease, box-shadow 0.2s ease;
  -ms-transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease, left 0.3s ease, top 0.3s ease, border-radius 0.1s ease, box-shadow 0.2s ease;
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease, left 0.3s ease, top 0.3s ease, border-radius 0.1s ease, box-shadow 0.2s ease;
}
.tm_cursor_mouse_helper .tm_cursor_mouse_helper_image {
  background-size: cover;
  background-position: center center;
}
.tm_cursor_mouse_helper .tm_cursor_mouse_helper_image:before {
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
  content: " ";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
}
.tm_cursor_mouse_helper.tm_cursor_mouse_helper_top:not(.tm_cursor_mouse_helper_centered) {
  top: var(--mouse-helper-top) !important;
}
.tm_cursor_mouse_helper.tm_cursor_mouse_helper_left:not(.tm_cursor_mouse_helper_centered) {
  left: var(--mouse-helper-left) !important;
}
.tm_cursor_mouse_helper.tm_cursor_mouse_helper_permanent {
  opacity: 1;
}
.tm_cursor_mouse_helper.tm_cursor_mouse_helper_with_image.tm_cursor_mouse_helper_with_text {
  -webkit-box-shadow: 0 3px 46px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 46px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 46px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.tm_cursor_mouse_helper.tm_cursor_mouse_helper_with_image {
  -webkit-box-shadow: 0 3px 46px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 3px 46px rgba(0, 0, 0, 0.1);
  box-shadow: 0 3px 46px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 0;
  -ms-border-radius: 0;
  border-radius: 0;
}
.tm_cursor_mouse_helper.tm_cursor_mouse_helper_active.tm_cursor_mouse_helper_with_image.tm_cursor_mouse_helper_with_text {
  --mouse-helper-width: 288px;
  --mouse-helper-height: 288px;
  padding: 0;
  -webkit-box-sizing: "border-box";
  -ms-box-sizing: "border-box";
  box-sizing: "border-box";
}
.tm_cursor_mouse_helper.tm_cursor_mouse_helper_active.tm_cursor_mouse_helper_with_image {
  --mouse-helper-width: 288px;
  --mouse-helper-height: 288px;
  padding: 0;
  -webkit-box-sizing: "border-box";
  -ms-box-sizing: "border-box";
  box-sizing: "border-box";
}
.tm_cursor_mouse_helper.tm_cursor_mouse_helper_with_layout {
  --mouse-helper-width: 66px;
  --mouse-helper-height: 66px;
}
.tm_cursor_mouse_helper.tm_cursor_mouse_helper_with_layout.tm_cursor_mouse_helper_click {
  --mouse-helper-width: 30px;
  --mouse-helper-height: 30px;
  overflow: visible;
}
.tm_cursor_mouse_helper.tm_cursor_mouse_helper_with_layout.tm_cursor_mouse_helper_click .swiper-mouse-cursor span {
  color: #000;
  font-size: 14px;
  font-weight: bold;
}
.tm_cursor_mouse_helper.tm_cursor_mouse_helper_with_layout.tm_cursor_mouse_helper_click .swiper-mouse-cursor span:after {
  transform: translateX(30px);
}
.tm_cursor_mouse_helper.tm_cursor_mouse_helper_with_layout.tm_cursor_mouse_helper_click .swiper-mouse-cursor span:before {
  transform: translateX(-30px);
}
.tm_cursor_mouse_helper.tm_cursor_mouse_helper_link_active {
  --mouse-helper-width: 80px;
  --mouse-helper-height: 80px;
  width: var(--mouse-helper-width);
  height: var(--mouse-helper-height);
  opacity: 0.08;
}

[data-mouse-helper=highlight] {
  color: rgba(29, 29, 29, 0.3);
  background-image: -webkit-radial-gradient(closest-side, #111 78%, transparent 0);
  background-image: -o-radial-gradient(closest-side, #111 78%, transparent 0);
  background-image: radial-gradient(closest-side, #111 78%, transparent 0);
}

[data-mouse-helper=highlight] .sc_typed_entry {
  color: inherit;
}

.tm-mouse-follow-floating-info-holder {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  pointer-events: none;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: -webkit-clip-path 0.4s ease;
  transition: clip-path 0.4s ease;
  transition: clip-path 0.4s ease, -webkit-clip-path 0.4s ease;
}
.tm-mouse-follow-floating-info-holder .mouse-follow-floating-info-inner {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  background-color: #000;
  padding: 16px 24px 18px;
}
.tm-mouse-follow-floating-info-holder .floating-title {
  font-family: var(--heading-font-family);
  font-size: var(--h4-font-size);
  display: block;
  position: relative;
  color: #fff;
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 0;
  z-index: 8;
  opacity: 0;
  transform: translateX(20px);
  will-change: transform;
}
.tm-mouse-follow-floating-info-holder .floating-subtitle {
  font-family: var(--heading-font-family);
  font-size: var(--h6-font-size);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  display: inline-block;
  white-space: nowrap;
  z-index: 9;
  opacity: 0;
  transform: translateX(20px);
  will-change: transform;
}
.tm-mouse-follow-floating-info-holder .floating-subtitle ul {
  list-style: none;
  margin: 0;
}
.tm-mouse-follow-floating-info-holder a {
  color: #fff;
}
.tm-mouse-follow-floating-info-holder.floating-info-right {
  text-align: right;
  transform: translateX(-100%);
}
.tm-mouse-follow-floating-info-holder.floating-info-active {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transition: -webkit-clip-path 0.4s ease;
  transition: clip-path 0.4s ease;
  transition: clip-path 0.4s ease, -webkit-clip-path 0.4s ease;
}
.tm-mouse-follow-floating-info-holder.floating-info-active .floating-title {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.4s ease 0.2s, opacity 0.2s ease-out 0.2s;
}
.tm-mouse-follow-floating-info-holder.floating-info-active .floating-subtitle {
  opacity: 1;
  transform: translateX(0);
  transition: transform 0.4s ease 0.2s, opacity 0.2s ease-out 0.2s;
  transition: transform 0.4s ease 0.15s, opacity 0.2s ease-out 0.15s;
}
@media only screen and (max-width: 1024px) {
  .tm-mouse-follow-floating-info-holder {
    display: none;
  }
}

.tm-mouse-follow-floating-image-holder {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  pointer-events: none;
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: -webkit-clip-path 0.4s ease;
  transition: clip-path 0.4s ease;
  transition: clip-path 0.4s ease, -webkit-clip-path 0.4s ease;
}
.tm-mouse-follow-floating-image-holder .mouse-follow-floating-image-inner {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.tm-mouse-follow-floating-image-holder a {
  color: #fff;
}
.tm-mouse-follow-floating-image-holder.floating-info-right {
  text-align: right;
  transform: translateX(-100%);
}
.tm-mouse-follow-floating-image-holder.floating-info-active {
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  transition: -webkit-clip-path 0.4s ease;
  transition: clip-path 0.4s ease;
  transition: clip-path 0.4s ease, -webkit-clip-path 0.4s ease;
}
@media only screen and (max-width: 1024px) {
  .tm-mouse-follow-floating-image-holder {
    display: none;
  }
}

/*= WordPress Core
-------------------------------------------------------------- */
.alignnone {
  clear: both;
  margin: 5px 1.5em 1.5em 0;
}

p .alignnone:last-child {
  margin-bottom: 0;
}

.aligncenter,
div.aligncenter {
  text-align: center;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

.alignright {
  float: right;
  margin: 5px 0 1.5em 1.5em;
  clear: right;
}

.alignleft {
  float: left;
  margin: 5px 1.5em 1.5em 0;
  clear: left;
}

a img.alignright {
  float: right;
  margin: 5px 0 1.5em 1.5em;
}

a img.alignnone {
  margin: 5px 1.5em 1.5em 0;
}

a img.alignleft {
  float: left;
  margin: 5px 1.5em 1.5em 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5em;
}

.wp-caption {
  background: var(--theme-color-white);
  border: 1px solid var(--theme-color-silver);
  max-width: 96%; /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}

.wp-caption.alignnone {
  margin: 5px 1.5em 1.5em 0;
}

.wp-caption.alignleft {
  margin: 5px 1.5em 1.5em 0;
}

.wp-caption.alignright {
  margin: 5px 0 1.5em 1.5em;
}

.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}

.wp-caption p, .wp-caption .wp-caption-text {
  margin: 10px;
  padding: 0;
}

/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  white-space: nowrap;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.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: 0.875rem;
  font-weight: var(--body-font-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. */
}

blockquote.left {
  margin-right: 20px;
  text-align: right;
  margin-left: 0;
  width: 33%;
  float: left;
}

blockquote.right {
  margin-left: 20px;
  text-align: left;
  margin-right: 0;
  width: 33%;
  float: right;
}

.bypostauthor {
  opacity: 1;
}

.alignfull, .alignwide {
  width: 100%;
  position: relative;
  background-color: var(--theme-color-white);
}

figcaption, .wp-caption-text {
  color: var(--text-color);
  display: block;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0 0 5px;
}

.wp-block-latest-comments__comment-date {
  font-weight: normal;
  color: #999;
}

.wp-block-media-text {
  margin-top: 1.5em;
}

.wp-block-group,
.wp-block-media-text {
  margin-bottom: 1.5em;
}

.main-content-area .entry-content .post-excerpt > *.alignwide,
.main-content-area .entry-summary .post-excerpt > *.alignwide {
  margin-left: auto;
  margin-right: auto;
  clear: both;
}

@media only screen and (min-width: 768px) {
  .main-content-area .entry-content .post-excerpt > *.alignwide,
.main-content-area .entry-summary .post-excerpt > *.alignwide {
    width: 100%;
    max-width: 100%;
  }
}
.wp-block-quote[style*="text-align:right"],
.wp-block-quote[style*="text-align: right"] {
  border-left: none;
  border-right: 2px solid var(--theme-color-dark);
  padding-left: 0;
  padding-right: 1em;
}

.wp-block-quote.is-large cite,
.wp-block-quote.is-large footer,
.wp-block-quote.is-style-large cite,
.wp-block-quote.is-style-large footer {
  text-align: left;
}

:root .has-very-dark-gray-color {
  color: #222;
}

.main-content-area .entry-content .wp-block-separator {
  background-color: #767676;
  border: 0;
  height: 2px;
  margin-bottom: 2rem;
  margin-top: 2rem;
  max-width: 2.25em;
  text-align: left;
}
.main-content-area .entry-content .wp-block-separator.is-style-wide {
  max-width: 100%;
}
.main-content-area .entry-content .wp-block-separator.is-style-dots {
  max-width: 100%;
  background-color: inherit;
  border: inherit;
  height: inherit;
  text-align: center;
}

.tm-responsive-video {
  position: relative;
  padding-bottom: 56.25%;
  margin-bottom: 30px;
  padding-top: 0;
  height: 0;
  overflow: hidden;
}
.tm-responsive-video iframe,
.tm-responsive-video object,
.tm-responsive-video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wp-block-embed-wordpress-tv.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper .tm-responsive-video {
  width: 100%;
  position: relative;
  padding: 0;
  padding-top: 56.25%;
}
.wp-block-embed-wordpress-tv.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper .tm-responsive-video > iframe,
.wp-block-embed-wordpress-tv.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper .tm-responsive-video > object,
.wp-block-embed-wordpress-tv.wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper .tm-responsive-video > embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wp-block-embed-wordpress-tv {
  border: 0;
  padding: 0;
}
.wp-block-embed-wordpress-tv .tm-responsive-video {
  margin-bottom: 20px;
}
.wp-block-embed-wordpress-tv figcaption {
  margin-bottom: 0;
}

.wp-block-embed-twitter {
  border: 0;
  padding: 0;
}

.wp-block-cover-image-text,
.wp-block-cover-text,
section.wp-block-cover-image h2 {
  color: #fff !important;
}

.wp-block-cover :not(.has-text-color):not(.has-inline-color):not(a) {
  color: #fff !important;
}

.wp-caption {
  padding-bottom: 0;
}

.wp-block-button {
  float: none;
  margin: 1.5em 0;
}
.wp-block-button .wp-block-button__link {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: auto;
  margin: 0;
  font-size: var(--btn-font-size);
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0;
  outline: 0;
  -webkit-transition: all, background-color 0.2s ease-out, border-color 0.2s ease-out;
  -o-transition: all, background-color 0.2s ease-out, border-color 0.2s ease-out;
  transition: all, background-color 0.2s ease-out, border-color 0.2s ease-out;
  padding: 15px 36px;
  color: var(--theme-color1-text-color);
  background-color: var(--theme-color1);
  border: 1px solid transparent;
  border-radius: 28px;
  cursor: pointer;
}
.wp-block-button .wp-block-button__link:hover {
  color: var(--theme-color3-text-color);
  background-color: var(--theme-color3);
  border: 1px solid var(--theme-color1);
}
.wp-block-button.is-style-outline .wp-block-button__link {
  color: var(--text-color);
  border: 2px solid var(--theme-color1);
  background-color: transparent;
  border-width: 2px;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: var(--theme-color1-text-color);
  background-color: var(--theme-color1);
  border-color: transparent;
}
.wp-block-button.wp-block-button.is-style-squared .wp-block-button__link {
  border-radius: 0;
}
.wp-block-button.alignright {
  text-align: right;
  margin-top: 0;
  margin-left: 2rem;
}
.wp-block-button.alignleft {
  text-align: left;
  margin-top: 0;
  margin-right: 2rem;
}
.wp-block-button a:hover {
  background-color: var(--theme-color-dark);
  border-color: var(--theme-color-dark);
  color: var(--theme-color-dark-text-color);
}

.wp-block-cover,
.wp-block-cover-image {
  position: relative;
  background-size: cover;
  background-position: 50%;
  min-height: 430px;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  box-sizing: border-box;
}

.main-content-area article p,
.main-content-area article p.wp-block-cover-text {
  margin-bottom: 0;
}

.wp-block-columns.alignfull, .wp-block-columns.alignwide {
  padding: 30px;
}

.wp-block-gallery {
  margin-bottom: 30px;
}
.wp-block-gallery figcaption,
.wp-block-gallery .wp-caption-text {
  margin-top: 0;
  margin-bottom: 20px;
}

.widget .wp-block-gallery {
  margin-bottom: 0;
}

.wp-block-categories-dropdown,
.wp-block-archives-dropdown {
  margin-bottom: 30px;
}

.wp-block-archives-list {
  margin-bottom: 30px;
  padding-left: 0 !important;
}

.wp-block-group.has-background {
  padding: 20px 30px;
}

.wp-block-media-text.alignfull, .wp-block-media-text.alignwide {
  padding: 0;
}

figure {
  margin: 1em 0;
}

.wp-block-table.is-style-stripes {
  border-bottom: 1px solid var(--theme-color-light);
}
.wp-block-table.is-style-stripes td,
.wp-block-table.is-style-stripes th {
  border: 1px solid var(--theme-color-silver);
}
.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: var(--theme-color-silver);
}

.wp-block-columns .wp-block-column p:last-of-type,
.wp-block-group .wp-block-group__inner-container p:last-of-type {
  margin-bottom: 0;
}

.wp-block-image {
  margin: 0.5em 0 1em;
}

.wp-block-file__button:hover {
  color: #777;
}

.post-excerpt .wp-block-archives {
  margin-bottom: 30px;
}
.post-excerpt .wp-block-archives li {
  margin-bottom: 10px;
}

.wp-block-categories-list, .wp-block-page-list, .wp-block-page-list li {
  list-style: none;
}

/* == WordPress 5.8 new Widgets == */
.wp-block-group .wp-block-group__inner-container > * {
  margin-bottom: 35px;
}

.wp-block-group .wp-block-group__inner-container > :last-child {
  margin-bottom: 0;
}

.wp-block-group .wp-block-group__inner-container p.wp-block-tag-cloud {
  margin-bottom: 0;
}

.widget_block > ul:not([class]) {
  margin-left: 15px;
  list-style: circle;
}
.widget_block > ul:not([class]) li {
  list-style: circle;
}
.widget_block .wp-block-group,
.widget_block .wp-block-media-text {
  margin-bottom: 0;
}
.widget_block .wp-block-group .wp-block-group__inner-container > *:first-child {
  margin-top: 0;
}
.widget_block .widget-inner > ul:not([class]) {
  margin-left: 15px;
  list-style: circle;
}
.widget_block .widget-inner > ul:not([class]) li {
  list-style: circle;
}
.widget_block.widget_text .widget-inner p:last-of-type {
  margin-bottom: 0;
}
.widget_block .wp-block-pullquote {
  margin: 0;
  padding: 3em 0 2rem;
}
.widget_block .wp-block-pullquote blockquote {
  padding: 0;
  position: relative;
}
.widget_block .wp-block-pullquote blockquote:before, .widget_block .wp-block-pullquote blockquote:after {
  content: "";
  opacity: 0.1;
  position: absolute;
  margin: 0 auto;
  width: 100px;
  height: 100px;
  transition: all 0.3s ease-in-out;
}
.widget_block .wp-block-pullquote blockquote:before {
  top: -80px;
  left: 0;
  transform: rotate(180deg);
}
.widget_block .wp-block-pullquote blockquote:after {
  bottom: -40px;
  right: 0;
}
.widget_block .wp-block-pullquote blockquote p {
  font-size: var(--h4-font-size);
  font-family: var(--heading-font-family);
  font-weight: var(--headings-font-weight-h4);
  line-height: var(--headings-line-height-smaller);
}
.widget_block .wp-block-pullquote blockquote cite {
  font-size: 1rem;
  font-family: var(--body-font-family);
}
.widget_block .wp-block-pullquote blockquote:not(.has-text-color) p {
  color: var(--footer-primary-text-color);
  color: var(--headings-color);
}
.widget_block .wp-block-pullquote blockquote:not(.has-text-color) cite {
  color: var(--theme-color1);
}
.widget_block .wp-block-pullquote blockquote:not(.has-text-color) cite a {
  color: var(--news-widget-archive-icon-color);
}

.wp-block-rss {
  padding-left: 0 !important;
}
.wp-block-rss .wp-block-rss__item .wp-block-rss__item-title {
  display: inline-block;
  font-size: var(--body-font-size);
}

.wp-block-latest-posts.wp-block-latest-posts__list {
  padding-left: 0 !important;
}
.wp-block-latest-posts.wp-block-latest-posts__list li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(150, 150, 150, 0.2);
  line-height: var(--line-height-base);
}
.wp-block-latest-posts.wp-block-latest-posts__list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.wp-block-latest-posts.wp-block-latest-posts__list li:after {
  display: block;
  clear: both;
  content: "";
}
.wp-block-latest-posts.wp-block-latest-posts__list .wp-block-latest-posts__post-author,
.wp-block-latest-posts.wp-block-latest-posts__list .wp-block-latest-posts__post-date {
  line-height: var(--line-height-base);
  color: #999;
  font-size: 14px;
  font-weight: var(--body-font-weight);
}
.wp-block-latest-posts.wp-block-latest-posts__list.has-dates li {
  position: relative;
  padding-left: 60px;
  color: #717178;
}
.wp-block-latest-posts.wp-block-latest-posts__list.has-dates li:before {
  content: "\f302";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1e1e22;
  width: 40px;
  height: 40px;
  color: #ffffff;
  transition: all 500ms ease;
  position: absolute;
  top: 3px;
  left: 0;
}
.wp-block-latest-posts.wp-block-latest-posts__list.has-dates li:hover::before {
  background-color: var(--news-widget-archive-icon-color);
  color: var(--theme-color-dark-text-color);
}

.wp-block-latest-posts__list.is-grid li::before {
  top: auto;
  font-size: 13px;
  width: 35px;
  height: 35px;
}
.wp-block-latest-posts__list.is-grid.has-dates li {
  padding-left: 0;
}
.wp-block-latest-posts__list.is-grid.has-dates li::before {
  position: relative;
  top: auto;
  left: 0;
  margin-bottom: 10px;
}

.wp-block-latest-posts {
  margin-bottom: 10px;
}
.wp-block-latest-posts .wp-block-latest-posts__featured-image {
  width: 70px;
  margin-bottom: 0;
}
.wp-block-latest-posts a {
  color: var(--sidebar_link_color);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  font-family: var(--body-font-family);
}
.wp-block-latest-posts a:hover {
  color: var(--hover-theme-color);
}
.wp-block-latest-posts .wp-block-latest-posts__post-excerpt {
  font-size: 1rem;
}

.wp-block-tag-cloud .tag-cloud-link {
  color: var(--sidebar_link_color);
  font-weight: normal;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.wp-block-tag-cloud .tag-cloud-link:hover {
  color: var(--hover-theme-color);
}

.widget_rss ul li {
  margin-bottom: 25px;
}

.wp-block-page-list li {
  padding-left: 15px;
  position: relative;
  transition: all 0.3s ease;
}
.wp-block-page-list li::before {
  content: "\f0da";
  left: 0;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: #ccc;
  transition: all 0.3s ease;
}
.wp-block-page-list li::before {
  color: var(--news-widget-archive-icon-color);
}
.wp-block-page-list li a {
  color: var(--sidebar_link_color);
  font-weight: normal;
  font-size: var(--body-font-size);
}
.wp-block-page-list li > a:hover {
  color: var(--hover-theme-color);
  text-shadow: 0 0 1px var(--theme-color1);
}
.wp-block-navigation .wp-block-page-list li {
  margin-bottom: 0;
}
.wp-block-navigation .wp-block-page-list li:before {
  display: none;
}
.wp-block-navigation .wp-block-page-list li ul {
  margin-top: 0;
}

.wp-block-latest-comments {
  padding-left: 0 !important;
  margin-bottom: 20px;
}
.wp-block-latest-comments .wp-block-latest-comments__comment {
  margin-bottom: 20px;
  line-height: var(--line-height-base);
  display: flex;
}
.wp-block-latest-comments .wp-block-latest-comments__comment:last-child {
  margin-bottom: 0;
}
.wp-block-latest-comments .wp-block-latest-comments__comment-meta a {
  color: var(--sidebar_link_color);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  font-family: var(--body-font-family);
}
.wp-block-latest-comments .wp-block-latest-comments__comment-meta a:hover {
  color: var(--hover-theme-color);
}
.wp-block-latest-comments .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-date {
  font-size: 0.9rem;
}

.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
  margin-left: 1em;
}

.wp-calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.wp-calendar-nav .wp-calendar-nav-prev a {
  color: var(--news-widget-archive-icon-color);
  text-decoration: none;
  transition: all 500ms ease;
}
.wp-calendar-nav .wp-calendar-nav-prev a:hover {
  color: var(--hover-theme-color);
}

.wp-block-verse {
  background: none;
  padding: 0;
}

.wp-block-table {
  margin-bottom: 0;
}
.wp-block-table table {
  width: 100%;
  margin: 0;
}
.wp-block-table table td,
.wp-block-table table th {
  padding: 10px 20px;
  border: 1px solid var(--theme-color-silver);
}

.wp-block-archives {
  margin: 0;
  padding: 0;
  list-style: none;
}
.wp-block-archives > li {
  color: #bbb;
  font-weight: normal;
  font-size: var(--body-font-size);
}
.wp-block-archives > li::before {
  content: "\f07b";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  color: var(--news-widget-archive-icon-color);
  margin-right: 5px;
}
.wp-block-archives > li a {
  margin-left: 5px;
  color: var(--sidebar_link_color);
  font-weight: normal;
  font-size: var(--body-font-size);
}
.wp-block-archives > li > a:hover {
  color: var(--hover-theme-color);
  text-shadow: 0 0 1px var(--theme-color1);
}

.wp-block-preformatted,
.wp-block-code {
  padding: 0;
}
.wp-block-preformatted:not(.has-background),
.wp-block-code:not(.has-background) {
  background-color: transparent;
}

/* == WordPress 5.8 new Widgets footer == */
footer#footer .widget_block h2 {
  color: var(footer-widget-title-color);
}
footer#footer .widget_block .wp-block-preformatted:not(.has-text-color),
footer#footer .widget_block .wp-block-code:not(.has-text-color) {
  color: var(--footer-primary-text-color);
}
footer#footer .widget_block .wp-block-latest-comments:not(.has-avatar):not(.has-dates) li:hover::before {
  background-color: var(--theme-color3, #6222cc);
  color: var(--theme-color3-text-color, #ffffff);
}
footer#footer .widget_block .wp-block-latest-comments .wp-block-latest-comments__comment-meta a {
  color: var(--footer-link-color);
}
footer#footer .widget_block .wp-block-latest-comments .wp-block-latest-comments__comment-meta a:hover {
  color: var(--footer-default-theme-color);
}
footer#footer .widget_block .wp-block-latest-comments .wp-block-latest-comments__comment-meta .wp-block-latest-comments__comment-date {
  color: var(--footer-default-theme-color);
}
footer#footer .widget_block .wp-block-pullquote blockquote:not(.has-text-color) p {
  color: var(--footer-primary-text-color);
}
footer#footer .widget_block .wp-block-page-list li::before {
  color: var(--footer-default-theme-color);
}
footer#footer .widget_block .wp-block-page-list li a {
  color: var(--footer-link-color);
}
footer#footer .widget_block .wp-block-page-list li a:hover {
  color: var(--footer-link-color-hover);
}
footer#footer .widget_block .wp-block-latest-posts.wp-block-latest-posts__list .wp-block-latest-posts__post-author,
footer#footer .widget_block .wp-block-latest-posts.wp-block-latest-posts__list .wp-block-latest-posts__post-date {
  color: var(--footer-default-theme-color);
}
footer#footer .widget_block .wp-block-latest-posts.wp-block-latest-posts__list .wp-block-latest-posts__post-excerpt {
  color: var(--footer-primary-text-color);
}
footer#footer .widget_block .wp-block-latest-posts.wp-block-latest-posts__list.has-dates li {
  color: #717178;
}
footer#footer .widget_block .wp-block-latest-posts.wp-block-latest-posts__list.has-dates li:before {
  background-color: var(--footer-default-theme-color);
  color: var(--footer-default-text-color-on-bg-theme-color);
}
footer#footer .widget_block .wp-block-latest-posts a {
  color: var(--footer-link-color);
}
footer#footer .widget_block .wp-block-latest-posts a:hover {
  color: var(--footer-link-color-hover);
}
footer#footer .widget_block .wp-block-table table td,
footer#footer .widget_block .wp-block-table table th {
  border-color: rgba(var(--footer-primary-text-color), 0.4);
}
footer#footer .widget_block .wp-block-verse {
  color: var(--footer-primary-text-color);
}
footer#footer .wp-block-calendar .wp-calendar-table caption,
footer#footer .widget_calendar .wp-calendar-table caption {
  color: var(--footer-default-theme-color);
}
footer#footer .wp-block-calendar .wp-calendar-table thead,
footer#footer .widget_calendar .wp-calendar-table thead {
  background-color: var(--footer-default-theme-color);
}
footer#footer .wp-block-calendar .wp-calendar-table thead th,
footer#footer .widget_calendar .wp-calendar-table thead th {
  color: var(--footer-default-text-color-on-bg-theme-color);
}
footer#footer .wp-block-calendar .wp-calendar-table tbody,
footer#footer .widget_calendar .wp-calendar-table tbody {
  background-color: var(--theme-color-white);
}
footer#footer .wp-block-calendar .wp-calendar-table tbody td,
footer#footer .widget_calendar .wp-calendar-table tbody td {
  color: #555;
}
footer#footer .wp-block-calendar .wp-calendar-nav a,
footer#footer .widget_calendar .wp-calendar-nav a {
  color: var(--footer-link-color);
}
footer#footer .wp-block-calendar .wp-calendar-nav a:hover,
footer#footer .widget_calendar .wp-calendar-nav a:hover {
  color: var(--footer-default-hover-theme-color);
}

/* == WordPress CSS - gallery layouts == */
.gallery {
  margin-bottom: 1.5em;
  display: grid;
  grid-gap: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  width: 100%;
}

.gallery-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
  grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
  grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
  grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
  display: block;
}

.gallery-item a,
.gallery-item a:hover,
.gallery-item a:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  background: none;
  display: inline-block;
  max-width: 100%;
}

.gallery-item a img {
  display: block;
  -webkit-transition: -webkit-filter 0.2s ease-in;
  transition: -webkit-filter 0.2s ease-in;
  transition: filter 0.2s ease-in;
  transition: filter 0.2s ease-in, -webkit-filter 0.2s ease-in;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.gallery-item a:hover img,
.gallery-item a:focus img {
  -webkit-filter: opacity(60%);
  filter: opacity(60%);
}

.gallery-caption {
  display: block;
  text-align: center;
  padding: 0 10px 0 0;
  margin-bottom: 0;
}

/*
 * footer loader.scss
 * -----------------------------------------------
*/
/*
 * footer.scss
 * -----------------------------------------------
*/
footer#footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-primary-text-color);
}
body.elementor-page footer#footer {
  --footer-bg-color: transparent;
}
footer#footer b,
footer#footer strong {
  color: var(--footer-primary-text-color);
}
footer#footer .footer-widget-area .default-footer-padding {
  padding-bottom: 50px;
  padding-top: 100px;
}
footer#footer .footer-widget-area .widget {
  margin-bottom: 45px;
}
footer#footer .footer-widget-area .widget .widget-title {
  color: var(footer-widget-title-color);
  margin-bottom: 35px;
}
footer#footer .footer-widget-area .widget .widget-title.widget-title-line-bottom:after, footer#footer .footer-widget-area .widget .widget-title.widget-title-line-bottom:before {
  background: #666;
}
footer#footer .footer-widget-area .widget .widget-title.widget-title-line-bottom:before {
  background: rgba(240, 240, 240, 0.1);
}
footer#footer .footer-widget-area .widget .widget-title.line-bottom-theme-colored1:after {
  background: var(--theme-color1);
}
footer#footer .footer-widget-area .elementor-element .elementor-widget-container .widget:last-child {
  margin-bottom: 0;
}

/* Footer Inverted*/
/*
 * footer footer-nav.scss
 * -----------------------------------------------
*/
.widget_nav_menu.split-nav-menu ul li {
  margin-bottom: 4px !important;
  width: 50%;
  float: left;
  padding-right: 3px;
}

/*
 * footer-widgets.scss
 * -----------------------------------------------
*/
footer#footer .footer-widget-area .widget .widget-title {
  margin-bottom: 20px;
}
footer#footer .footer-widget-area .widget .widget-title.widget-title-line-bottom {
  padding-bottom: 20px;
}
footer#footer .widget.widget_archive ul li::before, footer#footer .widget.widget_categories ul li::before, footer#footer .widget.widget_pages ul li::before, footer#footer .widget.widget_meta ul li::before, footer#footer .widget.widget_recent_comments ul li::before, footer#footer .widget.widget_rss ul li::before, footer#footer .widget.widget_links ul li::before, footer#footer .widget.widget_recent_entries ul li::before, footer#footer .widget.widget_nav_menu ul li::before {
  color: var(--footer-default-theme-color);
}
footer#footer .widget.widget_archive ul li a, footer#footer .widget.widget_categories ul li a, footer#footer .widget.widget_pages ul li a, footer#footer .widget.widget_meta ul li a, footer#footer .widget.widget_recent_comments ul li a, footer#footer .widget.widget_rss ul li a, footer#footer .widget.widget_links ul li a, footer#footer .widget.widget_recent_entries ul li a, footer#footer .widget.widget_nav_menu ul li a {
  color: var(--footer-link-color);
}
footer#footer .widget.widget_archive ul li a:focus, footer#footer .widget.widget_archive ul li a:hover, footer#footer .widget.widget_archive ul li a:active, footer#footer .widget.widget_categories ul li a:focus, footer#footer .widget.widget_categories ul li a:hover, footer#footer .widget.widget_categories ul li a:active, footer#footer .widget.widget_pages ul li a:focus, footer#footer .widget.widget_pages ul li a:hover, footer#footer .widget.widget_pages ul li a:active, footer#footer .widget.widget_meta ul li a:focus, footer#footer .widget.widget_meta ul li a:hover, footer#footer .widget.widget_meta ul li a:active, footer#footer .widget.widget_recent_comments ul li a:focus, footer#footer .widget.widget_recent_comments ul li a:hover, footer#footer .widget.widget_recent_comments ul li a:active, footer#footer .widget.widget_rss ul li a:focus, footer#footer .widget.widget_rss ul li a:hover, footer#footer .widget.widget_rss ul li a:active, footer#footer .widget.widget_links ul li a:focus, footer#footer .widget.widget_links ul li a:hover, footer#footer .widget.widget_links ul li a:active, footer#footer .widget.widget_recent_entries ul li a:focus, footer#footer .widget.widget_recent_entries ul li a:hover, footer#footer .widget.widget_recent_entries ul li a:active, footer#footer .widget.widget_nav_menu ul li a:focus, footer#footer .widget.widget_nav_menu ul li a:hover, footer#footer .widget.widget_nav_menu ul li a:active {
  color: var(--footer-link-color-hover);
}
footer#footer .widget.widget_rss ul li .rsswidget {
  color: #fff;
}
footer#footer .widget.widget_rss ul li .rss-date {
  color: var(--footer-default-theme-color);
}
footer#footer .widget.widget_rss ul li .rssSummary {
  color: var(--footer-link-color);
}
footer#footer .widget.widget_rss ul li cite {
  color: #aaa;
}
footer#footer .widget.widget_recent_comments ul > li {
  color: #aaa;
}
footer#footer .widget.widget_recent_comments ul > li a {
  color: var(--footer-link-color);
  font-style: italic;
}
footer#footer .widget.widget_recent_comments ul > li a:hover {
  color: var(--footer-default-theme-color);
}
footer#footer .widget.widget_recent_comments ul > li .comment-author-link,
footer#footer .widget.widget_recent_comments ul > li .comment-author-link a {
  color: var(--theme-color1);
  font-style: normal;
}
footer#footer .widget.widget_recent_comments ul > li .comment-author-link:hover,
footer#footer .widget.widget_recent_comments ul > li .comment-author-link a:hover {
  color: var(--footer-default-hover-theme-color);
}
footer#footer .widget.widget_tag_cloud .tagcloud > a:hover {
  background: var(--footer-default-theme-color);
  color: var(--footer-default-text-color-on-bg-theme-color);
}
footer#footer .widget .wp-block-tag-cloud > a:hover {
  background: var(--footer-default-theme-color);
  color: var(--footer-default-text-color-on-bg-theme-color);
}
footer#footer .widget.widget-blog-list .tm-widget-blog-list .post .post-right .post-title a {
  color: #ddd;
}
footer#footer .widget.widget-blog-list .tm-widget-blog-list .post .post-right .post-title a:hover {
  color: var(--footer-default-hover-theme-color);
}
footer#footer .widget.widget-blog-list .tm-widget-blog-list .post .post-right .entry-date {
  color: #aaa;
}
footer#footer .wp-block-archives li::before,
footer#footer .wp-block-categories li::before {
  color: var(--footer-default-theme-color);
}
footer#footer .wp-block-archives li a,
footer#footer .wp-block-categories li a {
  color: var(--footer-link-color);
}
footer#footer .wp-block-archives li a:focus, footer#footer .wp-block-archives li a:hover, footer#footer .wp-block-archives li a:active,
footer#footer .wp-block-categories li a:focus,
footer#footer .wp-block-categories li a:hover,
footer#footer .wp-block-categories li a:active {
  color: var(--footer-link-color-hover);
}

footer#footer .footer-widget-area .widget.widget_block .wp-block-group__inner-container h2:after, footer#footer .footer-widget-area .widget.widget_block .wp-block-group__inner-container h2:before {
  background: var(--footer-default-theme-color);
}
footer#footer .footer-widget-area .widget.widget_block .wp-block-group__inner-container h2:before {
  background: rgba(240, 240, 240, 0.1);
}

/*
 * shortcode.scss
 * -----------------------------------------------
*/
/*
 * Shortcode: section-title.scss
 * -----------------------------------------------
*/
.tm-sc-section-title.line-left-current-theme .title-wrapper .subtitle {
  position: relative;
  display: inline-block;
}
.tm-sc-section-title.line-left-current-theme .title-wrapper .subtitle:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 43px;
  height: 5px;
  border-radius: 5px;
  background: var(--gradient-1);
  content: "";
}
.tm-sc-section-title.line-left-current-theme-white .title-wrapper .subtitle {
  position: relative;
  display: inline-block;
}
.tm-sc-section-title.line-left-current-theme-white .title-wrapper .subtitle::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 43px;
  height: 5px;
  border-radius: 5px;
  content: "";
  background-color: #fff;
}
.tm-sc-section-title.line-right-current-theme .title-wrapper .subtitle {
  position: relative;
  display: inline-block;
}
.tm-sc-section-title.line-right-current-theme .title-wrapper .subtitle::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 43px;
  height: 5px;
  border-radius: 5px;
  background: var(--gradient-1);
  content: "";
}
.tm-sc-section-title.line-right-current-theme-white .title-wrapper .subtitle {
  position: relative;
  display: inline-block;
}
.tm-sc-section-title.line-right-current-theme-white .title-wrapper .subtitle::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 43px;
  height: 5px;
  border-radius: 5px;
  content: "";
  background-color: #fff;
}
.tm-sc-section-title.line-center-current-theme .title-wrapper .subtitle {
  padding-left: 45px;
  padding-right: 45px;
  position: relative;
  display: inline-block;
}
.tm-sc-section-title.line-center-current-theme .title-wrapper .subtitle::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 43px;
  height: 5px;
  border-radius: 5px;
  margin: 0 auto;
  background: var(--gradient-1);
  content: "";
}
.tm-sc-section-title.line-center-current-theme-white .title-wrapper .subtitle {
  padding-left: 45px;
  padding-right: 45px;
  position: relative;
  display: inline-block;
}
.tm-sc-section-title.line-center-current-theme-white .title-wrapper .subtitle::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 43px;
  height: 5px;
  border-radius: 5px;
  margin: 0 auto;
  background: #fff;
  content: "";
}

/*
 * Current Theme Style
 * -----------------------------------------------
*/
.btn-style-one {
  background-color: var(--theme-color1);
  color: var(--theme-color1-text-color);
  padding: 17px 30px;
  font-weight: 600;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--heading-font-family);
  line-height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  z-index: 0;
  gap: 15px;
  transition: all 300ms ease;
}
.btn-style-one:before {
  background-color: var(--theme-color3);
  border-radius: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  transform: scale(0, 1);
  transform-origin: top right;
  transition: -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1), -webkit-transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
  z-index: -1;
}
.btn-style-one .btn-title {
  transition: all 300ms ease;
}
.btn-style-one .icon {
  line-height: 1;
  transition: all 300ms ease;
}
.btn-style-one:hover {
  color: var(--theme-color1-text-color);
}
.btn-style-one:hover:before {
  transform: scale(1, 1);
  transform-origin: bottom left;
}
.btn-style-one:hover .icon {
  color: var(--theme-color3-text-color);
}
.btn-style-one.btn-hover-light:hover .btn-title {
  color: var(--theme-color1);
}
.btn-style-one.btn-hover-light:before {
  background-color: var(--theme-color-white);
}

.e-font-icon-svg {
  width: 14px;
}

.blur-effect {
  backdrop-filter: blur(10px);
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  100% {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

/*
 * Animation Theme Style
 * -----------------------------------------------
*/
.spin-border-animation {
  border-radius: 40px;
  padding: 1px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  transition: all 400ms ease;
}
.spin-border-animation:before {
  background-image: conic-gradient(rgba(0, 0, 0, 0), var(--theme-color1), rgba(0, 0, 0, 0) 25%);
  background-repeat: no-repeat;
  background-position: 0 0;
  content: "";
  width: 9999px;
  height: 9999px;
  top: 50%;
  left: 50%;
  position: absolute;
  text-align: center;
  transform: translate(-50%, -50%) rotate(0deg);
  z-index: -2;
  animation: spinrotate 4s linear infinite;
}

@keyframes spinrotate {
  100% {
    transform: translate(-50%, -50%) rotate(1turn);
  }
}
/*==================================================
=            Bootstrap 5 Media Queries             =
$grid-breakpoints: (
  xs: 0,
  sm: 576px,
  md: 768px,
  lg: 992px,
  xl: 1200px,
  xxl: 1400px
);
==================================================*/
/*==========  Mobile First Method  ==========*/
/*==========  Non-Mobile First Method  ==========*/
/*==========  minimum and maximum breakpoint Method  ==========*/
@media (min-width: 992px) and (max-width: 1199.98px) {
  h1 {
    font-size: 3.3rem;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  h1 {
    font-size: 3.1rem;
  }
}
@media (max-width: 575.98px) {
  h1 {
    font-size: 3rem;
  }
}
/*
 * shop-mini-cart.scss
 * -----------------------------------------------
*/
/**
 * WooCommerce CSS Variables
 */
.widget_shopping_cart .widget_shopping_cart_content .woocommerce-mini-cart__empty-message {
  margin-bottom: 0;
}
.widget_shopping_cart .widget_shopping_cart_content .cart_list {
  list-style: none;
}
.widget_shopping_cart .widget_shopping_cart_content .cart_list .mini_cart_item {
  line-height: 1.5;
}
.widget_shopping_cart .widget_shopping_cart_content .cart_list .mini_cart_item a {
  color: var(--headings-color);
  font-family: var(--heading-font-family);
  font-size: 14px;
  font-weight: var(--headings-font-weight-h6);
}
.widget_shopping_cart .widget_shopping_cart_content .cart_list .mini_cart_item a.remove {
  color: #e81123;
  float: left;
  font-size: 16px;
  font-weight: 800;
  margin-left: 0;
  margin-right: 6px;
  margin-bottom: 30px;
  position: relative;
  top: 0;
}
.widget_shopping_cart .widget_shopping_cart_content .cart_list .mini_cart_item img {
  width: 56px;
  float: right;
  border-radius: 5px;
  margin-left: 10px;
}
.widget_shopping_cart .widget_shopping_cart_content .cart_list .mini_cart_item .quantity {
  display: block;
  font-size: 13px;
  margin-top: 5px;
}
.widget_shopping_cart .widget_shopping_cart_content .total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding-top: 20px;
  margin-top: 20px;
  color: #777;
  font-family: var(--heading-font-family);
  font-weight: normal;
  font-size: 13px;
}
.widget_shopping_cart .widget_shopping_cart_content .buttons {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  flex-direction: column;
  background-color: var(--theme-color-light);
}
.widget_shopping_cart .widget_shopping_cart_content .buttons .button.wc-forward {
  margin: 0;
  padding: 0.6rem 0.9rem;
  font-size: 12px;
  line-height: 2;
  border-radius: 0.2rem;
  width: 100%;
  text-decoration: none;
  text-align: center;
}
.widget_shopping_cart .widget_shopping_cart_content .buttons .button.wc-forward:first-child {
  border-color: var(--theme-color1);
  background-color: var(--theme-color1);
  color: var(--theme-color1-text-color);
}
.widget_shopping_cart .widget_shopping_cart_content .buttons .button.wc-forward:first-child:hover {
  color: var(--theme-color3-text-color);
}
.widget_shopping_cart .widget_shopping_cart_content .buttons .button.wc-forward:last-child {
  border-color: var(--theme-color1);
  background-color: var(--theme-color3);
  color: var(--theme-color3-text-color);
}
.widget_shopping_cart .widget_shopping_cart_content .buttons .button.wc-forward:last-child:hover {
  color: var(--theme-color3-text-color);
}

.top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents {
  position: relative;
  display: inline-block;
}
.top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents .mini-cart-icon {
  color: var(--theme-color-dark);
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  padding: 5px;
  position: relative;
}
.top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents .mini-cart-icon .items-count {
  background-color: var(--theme-color1);
  border-radius: 50%;
  color: var(--theme-color1-text-color);
  font-size: 11px;
  font-weight: 500;
  height: 18px;
  line-height: 18px;
  margin-right: -2px;
  position: absolute;
  left: -3px;
  text-align: center;
  bottom: -2px;
  width: 18px;
  transition: all 0.3s ease;
}
.top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents .mini-cart-icon .cart-quick-info {
  font-size: 15px;
}
.top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents:hover {
  color: #888;
}

.tm-header-search-content-style-dropdown .top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents {
  position: relative;
  display: inline-block;
}
.tm-header-search-content-style-dropdown .top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents .dropdown-content {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  font-size: 14px;
  left: auto;
  opacity: 0;
  padding: 30px 30px 30px;
  position: absolute;
  right: 0;
  text-align: left;
  top: 100%;
  visibility: hidden;
  width: 300px;
  z-index: 1000;
  box-shadow: 0px 10px 30px rgba(5, 5, 5, 0.08);
  transition: all 0.2s ease;
}
@media (max-width: 1199.98px) {
  .tm-header-search-content-style-dropdown .top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents .dropdown-content {
    top: 100%;
  }
}
.tm-header-search-content-style-dropdown .top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents .dropdown-content .woocommerce-mini-cart__empty-message {
  margin-bottom: 0;
}
.tm-header-search-content-style-dropdown .top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents .dropdown-content .buttons {
  display: flex;
  justify-content: space-between;
}
.tm-header-search-content-style-dropdown .top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents .dropdown-content .buttons .button {
  font-size: 11px;
  padding: 10px 20px;
}
.tm-header-search-content-style-dropdown .top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents .dropdown-content ul {
  list-style: none;
}
.tm-header-search-content-style-dropdown .top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents .dropdown-content .cart_list .mini_cart_item a {
  font-size: 14px;
}
.tm-header-search-content-style-dropdown .top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents .dropdown-content .cart_list .mini_cart_item img {
  width: 56px;
  float: right;
  border-radius: 5px;
}
.tm-header-search-content-style-dropdown .top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents .dropdown-content .cart_list .mini_cart_item .quantity {
  display: block;
}
.tm-header-search-content-style-dropdown .top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents .dropdown-content .total {
  padding-top: 10px;
  margin-top: 10px;
}
.tm-header-search-content-style-dropdown .top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents:hover {
  color: #888;
}
.tm-header-search-content-style-dropdown .top-nav-mini-cart-icon-container .top-nav-mini-cart-icon-contents:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
}
.tm-floating-woocart-wrapper .floating-woocart-overlay {
  background-color: rgba(17, 17, 17, 0);
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1029;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  transform-origin: 100% 50%;
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  -o-transform-origin: 100% 50%;
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  transition: transform 0.4s ease 0s;
}
.tm-floating-woocart-wrapper .floating-woocart-sidebar {
  -webkit-transition: transform 0.8s ease 0s;
  -khtml-transition: transform 0.8s ease 0s;
  -moz-transition: transform 0.8s ease 0s;
  -ms-transition: transform 0.8s ease 0s;
  -o-transition: transform 0.8s ease 0s;
  transition: transform 0.8s ease 0s;
  -webkit-transform: translateX(100%);
  -khtml-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 9999;
  width: 350px;
  max-width: 100%;
  overflow: hidden;
}
.tm-floating-woocart-wrapper .floating-woocart-sidebar .woocart-close {
  background-color: var(--theme-color1);
  color: var(--theme-color1-text-color);
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 56px;
  align-items: center;
  display: flex;
  justify-content: center;
  text-align: center;
  cursor: pointer;
}
.tm-floating-woocart-wrapper .floating-woocart-sidebar .woocart-close .woocart-close-icon {
  font-size: 0px;
  width: 36px;
  height: 36px;
  background-color: var(--theme-color1);
  border-radius: 100%;
  position: relative;
  display: block;
  text-align: center;
  line-height: 1;
  margin: 0 auto;
}
.tm-floating-woocart-wrapper .floating-woocart-sidebar .woocart-close .woocart-close-icon:before, .tm-floating-woocart-wrapper .floating-woocart-sidebar .woocart-close .woocart-close-icon:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 55%;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--theme-color1-text-color);
  transform-origin: 50% 50%;
  opacity: 1;
  transition: transform ease 0.25s;
}
.tm-floating-woocart-wrapper .floating-woocart-sidebar .woocart-close .woocart-close-icon:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tm-floating-woocart-wrapper .floating-woocart-sidebar .woocart-close .woocart-close-icon:after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.tm-floating-woocart-wrapper .floating-woocart-sidebar .woocart-close .woocart-close-icon:hover:before, .tm-floating-woocart-wrapper .floating-woocart-sidebar .woocart-close .woocart-close-icon:hover:after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.tm-floating-woocart-wrapper .floating-woocart-sidebar .widget_shopping_head {
  display: flex;
  background-color: #f5f5f5;
  padding: 12px 30px;
  margin-top: -30px;
  align-items: center;
  position: relative;
}
.tm-floating-woocart-wrapper .floating-woocart-sidebar .widget_shopping_head .widget_shopping_title {
  color: var(--headings-color);
  font-family: var(--heading-font-family);
  font-size: var(--h5-font-size);
  font-weight: var(--headings-font-weight-h5);
}
.tm-floating-woocart-wrapper .floating-woocart-sidebar .widget_shopping_cart {
  padding: 30px 45px 0 30px;
  height: 100%;
  overflow-y: scroll;
  width: 350px;
  max-width: 100%;
}
.tm-floating-woocart-wrapper.open .floating-woocart-overlay {
  background-color: rgba(17, 17, 17, 0.9);
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}
.tm-floating-woocart-wrapper.open .floating-woocart-sidebar {
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  transform: translateX(0px);
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  box-shadow: 0 2px 20px rgba(33, 33, 33, 0.22);
}

@media screen and (min-width: 992px) {
  .admin-bar .tm-floating-woocart-wrapper .floating-woocart-sidebar {
    top: 32px;
    padding-bottom: 70px;
  }
}
/* --------------------------------------
$Author: ThemeMascot
$URL: https://themeforest.net/user/ThemeMascot

----------------------------------------- */
:root {
  --theme-color1: #68c723;
  --theme-color1-rgb: 104, 199, 35;
  --theme-color1-lighter: #85de44;
  --theme-color1-darker: #4f971b;
  --theme-color2: #dd9933;
  --theme-color2-rgb: 221, 153, 51;
  --theme-color2-lighter: #e5b163;
  --theme-color2-darker: #b97b1f;
  --theme-color3: #68c723;
  --theme-color3-rgb: 104, 199, 35;
  --theme-color3-lighter: #85de44;
  --theme-color3-darker: #4f971b;
  --theme-color4: #dd9933;
  --theme-color4-rgb: 221, 153, 51;
  --theme-color4-lighter: #e5b163;
  --theme-color4-darker: #b97b1f;
  --gradient-1: linear-gradient(to right, rgba(var(--theme-color1-rgb), 1) 0%, rgba(var(--theme-color1-rgb), 0.37) 100%);
  --gradient-2: linear-gradient(to left, rgba(var(--theme-color1-rgb), 1) 0%, rgba(var(--theme-color1-rgb), 0.7) 100%);
  --gradient-3: linear-gradient(-135deg, rgba(23, 23, 23, 0) 50%, var(--theme-color1) 100%);
  --theme-color1-text-color: #fff;
  --theme-color2-text-color: #fff;
  --theme-color3-text-color: #fff;
  --theme-color4-text-color: #fff;
  --hover-theme-color: #68c723;
  --footer-default-theme-color: var(--theme-color3);
  --footer-default-hover-theme-color: var(--theme-color3);
  --footer-default-text-color-on-bg-theme-color: var(--theme-color3-text-color);
}
/*
 * border: theme-color
 * -----------------------------------------------
*/
.widget .line-bottom:after, .pager.theme-colored a {
  border: 1px solid var(--theme-color1);
}
.hr-divider {
  border-top-color: rgba(104, 199, 35, 0.2) !important;
}
/* -------- Text Theme Color ---------- */
.text-theme-colored1 {
  color: var(--theme-color1) !important;
}
.text-theme-colored2 {
  color: var(--theme-color2) !important;
}
.text-theme-colored3 {
  color: var(--theme-color3) !important;
}
.text-theme-colored4 {
  color: var(--theme-color4) !important;
}
.bg-theme-colored1 {
  background-color: var(--theme-color1) !important;
}
.bg-theme-colored2 {
  background-color: var(--theme-color2) !important;
}
.bg-theme-colored3 {
  background-color: var(--theme-color3) !important;
}
.bg-theme-colored4 {
  background-color: var(--theme-color4) !important;
}
.border-theme-colored1 {
  border-color: var(--theme-color1) !important;
}
.border-theme-colored2 {
  border-color: var(--theme-color2) !important;
}
.border-theme-colored3 {
  border-color: var(--theme-color3) !important;
}
.border-theme-colored4 {
  border-color: var(--theme-color4) !important;
}
/*
 * blog-single.scss
 * -----------------------------------------------
*/
/*
 * Shortcode: blog.scss
 * -----------------------------------------------
*/
.tm-sc-blog.blog-classic article .entry-header .post-single-meta {
  background: var(--theme-color1);
}
.tm-sc-blog.blog-modern article .entry-header .post-single-meta {
  background: var(--theme-color1);
}
.tm-sc-blog.blog-modern article .entry-content .post-btn-readmore {
  border-color: var(--theme-color1);
  background-color: #fff;
}
.tm-sc-blog.blog-modern article:hover .entry-content .post-btn-readmore {
  background-color: var(--theme-color1);
}
.tm-sc-blog.blog-modern article:hover .entry-content .post-btn-readmore .btn-plain-text-with-arrow:after {
  color: #fff;
}
.tm-sc-blog.blog-alternative-design .isotope-layout-inner .isotope-item:not(.isotope-item-sizer):nth-child(8n + 1) article .post-thumb .post-thumb-inner .thumb:after, .tm-sc-blog.blog-alternative-design .isotope-layout-inner .isotope-item:not(.isotope-item-sizer):nth-child(8n + 3) article .post-thumb .post-thumb-inner .thumb:after, .tm-sc-blog.blog-alternative-design .isotope-layout-inner .isotope-item:not(.isotope-item-sizer):nth-child(8n + 6) article .post-thumb .post-thumb-inner .thumb:after, .tm-sc-blog.blog-alternative-design .isotope-layout-inner .isotope-item:not(.isotope-item-sizer):nth-child(8n + 8) article .post-thumb .post-thumb-inner .thumb:after {
  background-color: rgba(104, 199, 35, 0.94);
}
/*
 * Shortcode: buttons.scss
 * -----------------------------------------------
*/
.btn-theme-colored1 {
  --bs-btn-color: #000;
  --bs-btn-bg: #68c723;
  --bs-btn-border-color: #68c723;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #7fcf44;
  --bs-btn-hover-border-color: #77cd39;
  --bs-btn-focus-shadow-rgb: 88, 169, 30;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #86d24f;
  --bs-btn-active-border-color: #77cd39;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #68c723;
  --bs-btn-disabled-border-color: #68c723;
}
.btn-theme-colored2 {
  --bs-btn-color: #000;
  --bs-btn-bg: #dd9933;
  --bs-btn-border-color: #dd9933;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #e2a852;
  --bs-btn-hover-border-color: #e0a347;
  --bs-btn-focus-shadow-rgb: 188, 130, 43;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #e4ad5c;
  --bs-btn-active-border-color: #e0a347;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #dd9933;
  --bs-btn-disabled-border-color: #dd9933;
}
.btn-theme-colored3 {
  --bs-btn-color: #000;
  --bs-btn-bg: #68c723;
  --bs-btn-border-color: #68c723;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #7fcf44;
  --bs-btn-hover-border-color: #77cd39;
  --bs-btn-focus-shadow-rgb: 88, 169, 30;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #86d24f;
  --bs-btn-active-border-color: #77cd39;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #68c723;
  --bs-btn-disabled-border-color: #68c723;
}
.btn-theme-colored4 {
  --bs-btn-color: #000;
  --bs-btn-bg: #dd9933;
  --bs-btn-border-color: #dd9933;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #e2a852;
  --bs-btn-hover-border-color: #e0a347;
  --bs-btn-focus-shadow-rgb: 188, 130, 43;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #e4ad5c;
  --bs-btn-active-border-color: #e0a347;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #dd9933;
  --bs-btn-disabled-border-color: #dd9933;
}
.btn-outline-theme-colored1 {
  --bs-btn-color: #68c723;
  --bs-btn-border-color: #68c723;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #68c723;
  --bs-btn-hover-border-color: #68c723;
  --bs-btn-focus-shadow-rgb: 104, 199, 35;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #68c723;
  --bs-btn-active-border-color: #68c723;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #68c723;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #68c723;
  --bs-gradient: none;
}
.btn-outline-theme-colored2 {
  --bs-btn-color: #dd9933;
  --bs-btn-border-color: #dd9933;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #dd9933;
  --bs-btn-hover-border-color: #dd9933;
  --bs-btn-focus-shadow-rgb: 221, 153, 51;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #dd9933;
  --bs-btn-active-border-color: #dd9933;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #dd9933;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #dd9933;
  --bs-gradient: none;
}
.btn-outline-theme-colored3 {
  --bs-btn-color: #68c723;
  --bs-btn-border-color: #68c723;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #68c723;
  --bs-btn-hover-border-color: #68c723;
  --bs-btn-focus-shadow-rgb: 104, 199, 35;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #68c723;
  --bs-btn-active-border-color: #68c723;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #68c723;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #68c723;
  --bs-gradient: none;
}
.btn-outline-theme-colored4 {
  --bs-btn-color: #dd9933;
  --bs-btn-border-color: #dd9933;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #dd9933;
  --bs-btn-hover-border-color: #dd9933;
  --bs-btn-focus-shadow-rgb: 221, 153, 51;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #dd9933;
  --bs-btn-active-border-color: #dd9933;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #dd9933;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: #dd9933;
  --bs-gradient: none;
}
.btn-theme-colored1 {
  color: var(--theme-color1-text-color);
  background-color: var(--theme-color1);
  border-color: var(--theme-color1);
}
.btn-theme-colored1:hover, .btn-theme-colored1:focus {
  color: var(--theme-color2-text-color);
  background-color: var(--theme-color1);
  border-color: var(--theme-color1);
}
.btn-theme-colored2 {
  color: var(--theme-color2-text-color);
  background-color: var(--theme-color2);
  border-color: var(--theme-color2);
}
.btn-theme-colored2:hover, .btn-theme-colored2:focus {
  color: var(--theme-color1-text-color);
  background-color: var(--theme-color2);
  border-color: var(--theme-color2);
}
.btn-theme-colored3 {
  color: var(--theme-color3-text-color);
  background-color: var(--theme-color3);
  border-color: var(--theme-color3);
}
.btn-theme-colored3:hover, .btn-theme-colored3:focus {
  color: var(--theme-color1-text-color);
  background-color: var(--theme-color3);
  border-color: var(--theme-color3);
}
.btn-theme-colored4 {
  color: var(--theme-color4-text-color);
  background-color: var(--theme-color4);
  border-color: var(--theme-color4);
}
.btn-theme-colored4:hover, .btn-theme-colored4:focus {
  color: var(--theme-color1-text-color);
  background-color: var(--theme-color4);
  border-color: var(--theme-color4);
}
.btn-outline-theme-colored1 {
  color: var(--theme-color1);
  border-color: var(--theme-color1);
}
.btn-outline-theme-colored1:hover {
  border-color: var(--theme-color3) !important;
  color: #fff !important;
}
.btn-outline-theme-colored2 {
  color: var(--theme-color2);
  border-color: var(--theme-color2);
}
.btn-outline-theme-colored2:hover {
  border-color: var(--theme-color3) !important;
  color: #fff !important;
}
.btn-outline-theme-colored3 {
  color: var(--theme-color3);
  border-color: var(--theme-color3);
}
.btn-outline-theme-colored3:hover {
  border-color: var(--theme-color3) !important;
  color: #fff !important;
}
input[type="submit"].btn-theme-colored1:hover, input[type="submit"].btn-theme-colored1:focus {
  color: var(--theme-color2-text-color);
  background-color: var(--theme-color2);
}
input[type="submit"].btn-theme-colored2:hover, input[type="submit"].btn-theme-colored2:focus {
  color: var(--theme-color1-text-color);
  background-color: var(--theme-color1);
}
input[type="submit"].btn-theme-colored3:hover, input[type="submit"].btn-theme-colored3:focus {
  color: var(--theme-color1-text-color);
  background-color: var(--theme-color1);
}
input[type="submit"].btn-theme-colored4:hover, input[type="submit"].btn-theme-colored4:focus {
  color: var(--theme-color1-text-color);
  background-color: var(--theme-color1);
}
.btn-light:hover, .btn-light:focus, .btn-dark:hover, .btn-dark:focus {
  color: var(--theme-color2-text-color);
}
.btn-outline-light {
  color: #fff;
}
.btn-outline-light:hover, .btn-outline-dark:hover {
  background-color: transparent;
}
.btn-outline-light:hover, .btn-outline-light:focus, .btn-outline-dark:hover, .btn-outline-dark:focus {
  color: var(--theme-color2-text-color);
}
/*
 * shop.scss
 * -----------------------------------------------
*/
/*
 * shop-common
 * -----------------------------------------------
*/
.woocommerce .button:not(.compare):not(.yith-wcqv-button):not([name="apply_coupon"]), .woosc_table .button, .woosc_table .added_to_cart, .woosw-item .added_to_cart {
  --bs-btn-color: #000;
  --bs-btn-bg: #68c723;
  --bs-btn-border-color: #68c723;
  --bs-btn-hover-color: #000;
  --bs-btn-hover-bg: #7fcf44;
  --bs-btn-hover-border-color: #77cd39;
  --bs-btn-focus-shadow-rgb: 88, 169, 30;
  --bs-btn-active-color: #000;
  --bs-btn-active-bg: #86d24f;
  --bs-btn-active-border-color: #77cd39;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #000;
  --bs-btn-disabled-bg: #68c723;
  --bs-btn-disabled-border-color: #68c723;
  color: var(--theme-color1-text-color);
}
.woocommerce .button:not(.compare):not(.yith-wcqv-button):not([name="apply_coupon"]):hover, .woosc_table .button:hover, .woosc_table .added_to_cart:hover, .woosw-item .added_to_cart:hover {
  color: var(--theme-color3-text-color);
}
.woocommerce .button:not(.compare):not(.yith-wcqv-button):not([name="apply_coupon"]):focus, .woosc_table .button:focus, .woosc_table .added_to_cart:focus, .woosw-item .added_to_cart:focus {
  color: var(--theme-color3-text-color);
  box-shadow: none;
}
.woocommerce .button:not(.compare):not(.yith-wcqv-button):not([name="apply_coupon"]):disabled, .woocommerce .button:not(.compare):not(.yith-wcqv-button):not([name="apply_coupon"]).disabled, .woosc_table .button:disabled, .woosc_table .button.disabled, .woosc_table .added_to_cart:disabled, .woosc_table .added_to_cart.disabled, .woosw-item .added_to_cart:disabled, .woosw-item .added_to_cart.disabled {
  color: var(--theme-color1-text-color);
  opacity: 0.5;
}
.woocommerce .button:not(.compare):not(.yith-wcqv-button):not([name="apply_coupon"]):disabled:hover, .woocommerce .button:not(.compare):not(.yith-wcqv-button):not([name="apply_coupon"]).disabled:hover, .woosc_table .button:disabled:hover, .woosc_table .button.disabled:hover, .woosc_table .added_to_cart:disabled:hover, .woosc_table .added_to_cart.disabled:hover, .woosw-item .added_to_cart:disabled:hover, .woosw-item .added_to_cart.disabled:hover {
  color: var(--theme-color3-text-color);
}
/*
 *  common.scss
 * -----------------------------------------------
*/
.scroll-to-top a {
  background-image: linear-gradient(to right, #68c723 0%, #8ce04f 51%, #68c723 100%);
}
.scroll-to-top a:hover {
  box-shadow: 0 10px 20px rgba(104, 199, 35, 0.5);
  background-position: right center;
}

header#header .menuzord-brand img {--menuzord-brand-width-responsive: 120px;}header#header .header-nav-wrapper.tm-sticky-menu .menuzord-brand img {max-width: 20px;}.menuzord-menu ul.dropdown, .menuzord-menu ul.dropdown li ul.dropdown {min-width: 260px;}@media (min-width: 1200px){.side-panel-container {width: 380px;}.side-panel-container {right: -380px;}}.side-panel-container {background-repeat: no-repeat;background-size: cover;background-position: left bottom;}body.tm-boxed-layout {background-color: #444;}.maintenance-mode .logo img {max-width: 200px;}.tm-page-title {background-repeat: no-repeat;background-size: cover;background-position: center center;}.isotope-layout.shop-archive .isotope-item {padding-left: 20px;padding-right: 20px;margin-bottom: 40px;}.isotope-layout.shop-archive .isotope-layout-inner {margin-left: -20px;margin-right: -20px;}
.tm-sc-simple-nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tm-sc-simple-nav-menu ul li {
  list-style: none;
  transition: all 0.3s ease;
}
.tm-sc-simple-nav-menu ul li a {
  display: block;
  position: relative;
  padding-bottom: 0;
  padding-top: 0;
  padding-left: 18px;
  margin-bottom: 0;
  line-height: 2.5rem;
  transition: all 0.3s ease;
  color: #777;
  overflow: hidden;
}
.tm-sc-simple-nav-menu ul li a:hover {
  color: #aaa;
}
.tm-sc-simple-nav-menu ul li .tm-nav-arrow-icon {
  color: var(--theme-color1);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 14px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.tm-sc-simple-nav-menu ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.tm-sc-simple-nav-menu ul.split-nav-menu li {
  margin-bottom: 4px !important;
  width: 50%;
  float: left;
  padding-right: 3px;
}
.tm-sc-simple-nav-menu .tm-animate-hover.icon-rotate li:hover i {
  transform: translateY(-50%) rotate(360deg);
}
.tm-sc-simple-nav-menu .tm-animate-hover.icon-rotate-x li:hover i {
  transform: translateY(-50%) rotateX(360deg);
}
.tm-sc-simple-nav-menu .tm-animate-hover.icon-rotate-y li:hover i {
  transform: translateY(-50%) rotateY(180deg);
}
.tm-sc-simple-nav-menu .tm-animate-hover.icon-translate li:hover i {
  transform: translate(-10px, -45%);
}
.tm-sc-simple-nav-menu .tm-animate-hover.icon-translate-x li:hover i {
  transform: translateY(-50%) translateX(-7px);
}
.tm-sc-simple-nav-menu .tm-animate-hover.icon-translate-x-right li:hover i {
  transform: translateY(-50%) translateX(7px);
}
.tm-sc-simple-nav-menu .tm-animate-hover.icon-translate-y li:hover i {
  transform: translateY(-45%);
}
.tm-sc-simple-nav-menu .tm-animate-hover.icon-scale li:hover i {
  transform: translateY(-50%) scale(1.1);
}
@font-face {
  font-family: 'FlaticonCommon';
  src:  url('/wp-content/plugins/mascot-core-solarixia/assets/flaticons-common/fonts/flaticons-common.eot?wmnaxx');
  src:  url('/wp-content/plugins/mascot-core-solarixia/assets/flaticons-common/fonts/flaticons-common.eot?wmnaxx#iefix') format('embedded-opentype'),
    url('/wp-content/plugins/mascot-core-solarixia/assets/flaticons-common/fonts/flaticons-common.ttf?wmnaxx') format('truetype'),
    url('/wp-content/plugins/mascot-core-solarixia/assets/flaticons-common/fonts/flaticons-common.woff?wmnaxx') format('woff'),
    url('/wp-content/plugins/mascot-core-solarixia/assets/flaticons-common/fonts/flaticons-common.svg?wmnaxx#FlaticonCommon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

[class^="flaticon-common-"], [class*=" flaticon-common-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'FlaticonCommon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.flaticon-common-cart:before {
  content: "\e003";
}
.flaticon-common-close:before {
  content: "\e005";
}
.flaticon-common-dropdown:before {
  content: "\e00a";
}
.flaticon-common-favourite:before {
  content: "\e00c";
}
.flaticon-common-rocket:before {
  content: "\e01c";
}
.flaticon-common-search:before {
  content: "\e01d";
}
.flaticon-common-arrow-left:before {
  content: "\e029";
}
.flaticon-common-arrow-right:before {
  content: "\e02a";
}
.flaticon-common-comments:before {
  content: "\e035";
}
.flaticon-common-envelope:before {
  content: "\e037";
}
.flaticon-common-folder-open:before {
  content: "\e03d";
}
.flaticon-common-gift:before {
  content: "\e040";
}
.flaticon-common-home:before {
  content: "\e044";
}
.flaticon-common-map-marker-check:before {
  content: "\e04c";
}
.flaticon-common-minus:before {
  content: "\e04e";
}
.flaticon-common-plus:before {
  content: "\e051";
}
.flaticon-common-quote:before {
  content: "\e052";
}
.flaticon-common-shopping-cart:before {
  content: "\e057";
}
.flaticon-common-star:before {
  content: "\e05c";
}
.flaticon-common-tachometer-alt:before {
  content: "\e05f";
}
.flaticon-common-times:before {
  content: "\e064";
}
.flaticon-common-cloud-upload:before {
  content: "\e80a";
}
.flaticon-common-cog:before {
  content: "\e810";
}
.flaticon-common-heart:before {
  content: "\e813";
}
.flaticon-common-user:before {
  content: "\e82a";
}
.flaticon-common-users:before {
  content: "\e82b";
}
.flaticon-common-store:before {
  content: "\e82d";
}
.flaticon-common-cart1:before {
  content: "\e82e";
}
.flaticon-common-phone-handset:before {
  content: "\e830";
}
.flaticon-common-map-marker:before {
  content: "\e833";
}
.flaticon-common-map:before {
  content: "\e834";
}
.flaticon-common-screen:before {
  content: "\e839";
}
.flaticon-common-smartphone:before {
  content: "\e83a";
}
.flaticon-common-tablet:before {
  content: "\e83b";
}
.flaticon-common-bubble:before {
  content: "\e83f";
}
.flaticon-common-pie-chart:before {
  content: "\e842";
}
.flaticon-common-gift1:before {
  content: "\e844";
}
.flaticon-common-diamond:before {
  content: "\e845";
}
.flaticon-common-rocket1:before {
  content: "\e84b";
}
.flaticon-common-briefcase:before {
  content: "\e84c";
}
.flaticon-common-alarm:before {
  content: "\e858";
}
.flaticon-common-thumbs-up:before {
  content: "\e86d";
}
.flaticon-common-magnifier:before {
  content: "\e86f";
}
.flaticon-common-cross:before {
  content: "\e870";
}
.flaticon-common-chevron-up:before {
  content: "\e873";
}
.flaticon-common-chevron-down:before {
  content: "\e874";
}
.flaticon-common-chevron-left:before {
  content: "\e875";
}
.flaticon-common-chevron-right:before {
  content: "\e876";
}
.flaticon-common-arrow-up:before {
  content: "\e877";
}
.flaticon-common-arrow-down:before {
  content: "\e878";
}
.flaticon-common-arrow-left1:before {
  content: "\e879";
}
.flaticon-common-arrow-right1:before {
  content: "\e87a";
}
.flaticon-common-checkmark-circle:before {
  content: "\e87f";
}
.flaticon-common-cross-circle:before {
  content: "\e880";
}
.flaticon-common-plus-circle:before {
  content: "\e881";
}
.flaticon-common-circle-minus:before {
  content: "\e882";
}
.flaticon-common-arrow-up-circle:before {
  content: "\e883";
}
.flaticon-common-arrow-down-circle:before {
  content: "\e884";
}
.flaticon-common-arrow-left-circle:before {
  content: "\e885";
}
.flaticon-common-arrow-right-circle:before {
  content: "\e886";
}
.flaticon-common-chevron-up-circle:before {
  content: "\e887";
}
.flaticon-common-chevron-down-circle:before {
  content: "\e888";
}
.flaticon-common-chevron-left-circle:before {
  content: "\e889";
}
.flaticon-common-chevron-right-circle:before {
  content: "\e88a";
}
.flaticon-common-diamond1:before {
  content: "\e917";
}
.flaticon-common-line:before {
  content: "\f104";
}
.flaticon-common-sign:before {
  content: "\f105";
}
.flaticon-common-delete:before {
  content: "\f106";
}
.flaticon-common-check-symbol:before {
  content: "\f107";
}
.flaticon-common-round:before {
  content: "\f108";
}
.flaticon-common-delete-cross:before {
  content: "\f109";
}
.flaticon-common-location:before {
  content: "\f10a";
}
.flaticon-common-shelter:before {
  content: "\f10c";
}
.flaticon-common-technology:before {
  content: "\f10d";
}
.flaticon-common-support:before {
  content: "\f111";
}
.flaticon-common-arrows:before {
  content: "\f114";
}
.flaticon-common-home1:before {
  content: "\f115";
}
.flaticon-common-cross1:before {
  content: "\f116";
}
.flaticon-common-line-1:before {
  content: "\f117";
}
.flaticon-common-right-arrow:before {
  content: "\f118";
}
.flaticon-common-arrows-1:before {
  content: "\f119";
}
.flaticon-common-correct:before {
  content: "\f11d";
}
.flaticon-common-arrows-2:before {
  content: "\f11f";
}
.flaticon-common-arrows-3:before {
  content: "\f120";
}
.flaticon-common-arrows-4:before {
  content: "\f121";
}
.flaticon-common-arrows-5:before {
  content: "\f122";
}
.flaticon-common-checked:before {
  content: "\f123";
}
.flaticon-common-line-2:before {
  content: "\f124";
}
.flaticon-common-headphones:before {
  content: "\f126";
}
.flaticon-common-heart1:before {
  content: "\f128";
}
.flaticon-common-settings:before {
  content: "\f129";
}
.flaticon-common-phone-call:before {
  content: "\f12c";
}
.flaticon-common-shopping-bag:before {
  content: "\f12d";
}
.flaticon-common-remove:before {
  content: "\f130";
}
.flaticon-common-check:before {
  content: "\f131";
}
.flaticon-common-bar-chart:before {
  content: "\f141";
}
.flaticon-common-speech-bubble:before {
  content: "\f142";
}
.flaticon-common-maps-and-flags:before {
  content: "\f14b";
}
.flaticon-common-arrows-10:before {
  content: "\f151";
}
.flaticon-common-quote1:before {
  content: "\f159";
}
.flaticon-common-right-quote:before {
  content: "\f15a";
}
.flaticon-common-chat:before {
  content: "\f15c";
}
.flaticon-common-next:before {
  content: "\f15d";
}
.flaticon-common-back:before {
  content: "\f15e";
}
.flaticon-common-placeholder-1:before {
  content: "\f163";
}
.flaticon-common-worldwide:before {
  content: "\f16e";
}
.flaticon-common-left-arrow-1:before {
  content: "\f172";
}
.flaticon-common-right-1:before {
  content: "\f174";
}
.flaticon-common-right-2:before {
  content: "\f17e";
}
.flaticon-common-left-1:before {
  content: "\f17f";
}
.flaticon-common-case:before {
  content: "\f184";
}
.flaticon-common-settings-1:before {
  content: "\f187";
}
.flaticon-common-worldwide-1:before {
  content: "\f188";
}
.flaticon-common-139-tick:before {
  content: "\f189";
}
.flaticon-common-tick-1:before {
  content: "\f18a";
}
.flaticon-common-shopping-bag-1:before {
  content: "\f18b";
}
.flaticon-common-confirmation:before {
  content: "\f18c";
}
.flaticon-common-mobile-phone:before {
  content: "\f190";
}
.flaticon-common-down-arrow:before {
  content: "\f191";
}
.flaticon-common-down-arrow-1:before {
  content: "\f192";
}
.flaticon-common-down-chevron:before {
  content: "\f193";
}
.flaticon-common-email-1:before {
  content: "\f199";
}
.flaticon-common-smartphone-3:before {
  content: "\f19e";
}
.flaticon-common-call:before {
  content: "\f1b0";
}
.flaticon-common-call-1:before {
  content: "\f1b1";
}
.flaticon-common-chat-1:before {
  content: "\f1c3";
}
.flaticon-common-plus1:before {
  content: "\f1e2";
}
.flaticon-common-minus-1:before {
  content: "\f1e3";
}
.flaticon-common-clock:before {
  content: "\f125";
}
.flaticon-common-call-2:before {
  content: "\f112";
}
.flaticon-common-envelope2:before {
  content: "\f127";
}
.flaticon-common-call-3:before {
  content: "\f12e";
}
.flaticon-common-call-4:before {
  content: "\f12b";
}
.flaticon-common-call-5:before {
  content: "\f12a";
}
.flaticon-common-map2:before {
  content: "\f12f";
}
.flaticon-common-envelope3:before {
  content: "\f132";
}
.flaticon-common-call-6:before {
  content: "\f10b";
}
.flaticon-common-call-7:before {
  content: "\f11e";
}
.flaticon-common-tag:before {
  content: "\f15f";
}
.flaticon-common-secure:before {
  content: "\f15b";
}
.flaticon-common-bag:before {
  content: "\f10e";
}
.flaticon-common-wallet:before {
  content: "\f11a";
}
.flaticon-common-box:before {
  content: "\f150";
}
.flaticon-common-support-24:before {
  content: "\f13d";
}
.flaticon-common-tag2:before {
  content: "\f13e";
}
.flaticon-common-bag-star:before {
  content: "\f14c";
}
.flaticon-common-box3:before {
  content: "\f14a";
}
.flaticon-common-cart2:before {
  content: "\f164";
}
.flaticon-common-cart3:before {
  content: "\f157";
}
.flaticon-common-box4:before {
  content: "\f14d";
}
.flaticon-common-call-8:before {
  content: "\f13b";
}
.flaticon-common-box-deliver:before {
  content: "\f143";
}
.flaticon-common-box5:before {
  content: "\f14f";
}
.flaticon-common-discount:before {
  content: "\f144";
}
.flaticon-common-box6:before {
  content: "\f14e";
}
.flaticon-common-call-9:before {
  content: "\f133";
}

:where(html.wpc-bgl255) .icon-box.iconbox-bg-img-on-hover .bg-img-wrapper:before{background-image: url("/wp-content/plugins/mascot-core-solarixia/assets/css/images/shadow-overlay2.png")}:where(html.wpc-bgl255) .chaty-whatsapp-form:before{background-image:url("/wp-content/plugins/chaty/images/whatsapp.png")}:where(html.wpc-bgl255) .chaty-popup-whatsapp-form .chaty-whatsapp-body:before,:where(html.wpc-bgl255) .chaty-popup-whatsapp-form .chaty-whatsapp-footer:before{background-image:url("/wp-content/plugins/chaty/images/whatsapp-welcome-popup.png")}:where(html.wpc-bgl255) .chaty-agent-header:before,:where(html.wpc-bgl255) .chaty-view-header:before{background:url(/wp-content/plugins/chaty/images/header-top.png) no-repeat}:where(html.wpc-bgl255) .chaty-agent-header:after,:where(html.wpc-bgl255) .chaty-view-header:after{background:url(/wp-content/plugins/chaty/images/header-bottom.png) no-repeat}:where(html.wpc-bgl255) .btn-close{background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat}:where(html.wpc-bgl255) body:not(.single) article.format-link:after{background: url("/wp-content/themes/solarixia/assets/images/blog/link.png") no-repeat}:where(html.wpc-bgl255) body:not(.single) article.format-quote:after{background: url("/wp-content/themes/solarixia/assets/images/blog/quote.png") no-repeat}:where(html.wpc-bgl255) .tm-sc-section-title .title-wrapper .sub-title-outer .divider{background-image: url(/wp-content/themes/solarixia/assets/images/current-theme/icon-power.png)}:where(html.wpc-bgl255) .tm-sc-section-title.subtitle-current-style1 .title-wrapper .sub-title-outer .subtitle::before{background-image: url(/wp-content/themes/solarixia/assets/images/current-theme/subtitle-before.png)}:where(html.wpc-bgl255) .widget_block .wp-block-pullquote blockquote:before,:where(html.wpc-bgl255) .widget_block .wp-block-pullquote blockquote:after{background: url("/wp-content/themes/solarixia/assets/images/blog/quote.png") no-repeat}