.rkit-offcanvas button.menu-button-rometheme {
  transition: all 0.5;
  background-color: #00cea6;
  padding: 20px;
  display: flex;
  align-items: center;
  border: none;
}

.rkit-offcanvas button.menu-button-rometheme:hover {
    border: none;
    background-color: #00cea6;
}

.rkit-offcanvas-icon {
  color: rgb(255, 255, 255);
  fill: rgb(255, 255, 255);
}

li.submenu-item {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

div.header {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

div.mobile-header {
  display: none;
}

nav.off-canvas {
  display: none;
}

div.menu-offcanvas {
  display: none;
}

.menu-offcanvas-rometheme button.rkit-offcanvas-close {
  position: relative;
  float: right;
  z-index: 9999;
  display: flex;
  align-items: center;
  border: none;
  background: transparent;
  color: black;
  fill: black;
  padding: 0px;
  border-radius: 0px;
}

.menu-offcanvas-rometheme button.rkit-offcanvas-close .offcanvas-close-icon {
  fill: black;
  color: black;
}

.menu-offcanvas-rometheme button.rkit-offcanvas-close:hover {
  background: #00cea6;
  color: black;
  /* border-radius: 0px; */
  border: none;
}

a.menu-button {
  text-decoration: none;
  border-bottom: none;
}

.dropdown-content {
  opacity: 0;
  margin-top: 20px;
  animation: fade_in 1s;
}

.offcanvas-navmenu-rometheme {
  width: 100%;
  position: fixed;
  display: flex;
  top: 0;
  height: 100%;
  z-index: 999;
  visibility: hidden;
}

.overlay-rometheme {
  background-color: rgba(0, 0, 0, 0.328);
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 998;
  transition: all 0.7s ease-in-out;
  /* opacity: 0; */
}

.menu-offcanvas-rometheme {
  z-index: 9999;
  background-color: white;
  width: 60%;
  height: 100vh;
  transition: all 0.7s ease-in-out;
  /* opacity: 0; */
  overflow: auto;
}

.rkit-btn-container {
  display: flex;
}

.rkit-offcanvas-header {
  width: 100%;
}

.rkit-offcanvas.offcanvas-show .offcanvas-navmenu-rometheme {
  visibility: visible;
}

.rkit-offcanvas.offcanvas-left .offcanvas-navmenu-rometheme {
  left: 0;
}

.rkit-offcanvas.offcanvas-right .offcanvas-navmenu-rometheme {
  right: 0;
  justify-content: end;
}

.rkit-offcanvas.offcanvas-left .menu-offcanvas-rometheme,
.rkit-offcanvas.offcanvas-left .overlay-rometheme {
  transform: translateX(-100%);
}

.rkit-offcanvas.offcanvas-right .menu-offcanvas-rometheme,
.rkit-offcanvas.offcanvas-right .overlay-rometheme {
  transform: translateX(100%);
}

.rkit-offcanvas.offcanvas-show.offcanvas-right .menu-offcanvas-rometheme,
.rkit-offcanvas.offcanvas-show.offcanvas-left .menu-offcanvas-rometheme,
.rkit-offcanvas.offcanvas-show.offcanvas-right .overlay-rometheme,
.rkit-offcanvas.offcanvas-show.offcanvas-left .overlay-rometheme {
  transform: translateX(0);
  /* opacity: 1;   */
}
.menu-horizontal {
    display: flex;
    flex-direction: row;
}

.menu-vertical {
    display: flex;
    flex-direction: column;
}

a.submenu-item-text {
    width: 100%;
    display: inline-block;
    border-bottom: none;
    height: 100%;
}

.expand-content{
    overflow: hidden;
    height: auto;
}
.rkit-headerinfo {
  display: flex;
  flex-wrap: wrap;
}

.rkit-list-headerinfo {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.rkit-hamburger-tablet,
.rkit-hamburger-mobile {
  display: none;
}

.rkit-btn-hamburger {
  display: flex;
}

.rkit-btn-hamburger {
  background: #00cea6;
  color: black;
}

.rkit-navmenu {
  background: rgba(255, 255, 255, 0);
}

.rkit-nav-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: black;
  z-index: 1;
  position: relative;
}

.rkit-menu-item:hover {
  /* background-color: gray; */
  color: black;
}

.rkit-submenu-item {
  background-color: #eeeeee;
  color: #000;
}

.rkit-submenu-item:hover {
  background-color: rgb(169, 169, 169);
  color: black;
}

.rkit-menu-item .rkit-nav-link  {
  padding: 12px 24px;
}

.rkit-submenu-icon {
  display: inline-block;
  color: currentColor;
  fill: currentColor;
}

.rkit-submenu-item .rkit-submenu-icon {
  transform: rotate(-90deg);
}

.rkit-navmenu-container ul {
  list-style: none;
  margin: 0;
  padding: 0;
  /* transition: all 1s; */
}

.rkit-menu-container {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}

.rkit-menu-container li {
  position: relative;
  /* transition: all 1s; */
  cursor: pointer;
}

.rkit-navmenu-dropdown {
  position: absolute;
  width: max-content;
  max-height: 0px;
  transition: all 0.5s;
  /* transform: scaleY(0); */
  transform-origin: top;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
}

.rkit-submenu-item .rkit-navmenu-dropdown {
  left: 100%;
  top: 0;
}

.rkit-dropdown-hover:hover > .rkit-navmenu-dropdown {
  /* transform: scaleY(1); */
  max-height: var(--height);
  opacity: 1;
  animation: slideDown 0.5s;
  visibility: visible;
}

.rkit-dropdown-click.rkit-dropdown-show > .rkit-navmenu-dropdown {
  /* transform: scaleY(1); */
  max-height: var(--height);
  opacity: 1;
  animation: slideDown 0.5s;
  visibility: visible;
}

.rkit-icon-close,
.rkit-icon-open {
  transition: all 0.5s;
  display: block;
  position: relative;
}

.rkit-hamburger .rkit-icon-close {
  opacity: 0;
  transform: rotate(90deg);
  position: absolute;
}

.rkit-hamburger-show .rkit-icon-open {
  opacity: 0;
  transform: rotate(90deg);
  position: absolute;
}

.rkit-hamburger-show .rkit-icon-close {
  opacity: 1;
  transform: rotate(0deg);
  position: relative;
}

.rkit-responsive-tablet.rkit-menu-show,
.rkit-responsive-mobile.rkit-menu-show {
  /* height: fit-content;     */
  transform: scaleY(1);
  opacity: 1;
  max-height: var(--height);
  transition: all 0.5s;
}

.pointer-underline,
.pointer-overline,
.pointer-doubleline,
.pointer-framed,
.pointer-bg
{
  position: relative;
  --pointer-width:2px;
  --pointer-color : #00cea6;
}

.pointer-underline::after,
.pointer-overline::after,
.pointer-doubleline::after,
.pointer-framed::after,
.pointer-framed::before,
.pointer-bg::after {
  border-radius: inherit;
}

.pointer-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 0;
  transform: translateX(-50%);
  left: 50%;
  transition: all 0.5s;
  border-bottom-width: var(--pointer-width) ;
  border-bottom-color: var(--pointer-color);
  border-bottom-style: solid;
}

.pointer-overline::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 0;
  transform: translateX(-50%);
  left: 50%;
  transition: all 0.5s;
  border-top-width: var(--pointer-width) ;
  border-top-color: var(--pointer-color);
  border-top-style: solid;
}


.pointer-doubleline::after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 100%;
  width: 0;
  transform: translateX(-50%);
  left: 50%;
  transition: all 0.5s;
  border-top-width: var(--pointer-width) ;
  border-top-color: var(--pointer-color);
  border-top-style: solid;
  border-bottom-width: var(--pointer-width) ;
  border-bottom-color: var(--pointer-color);
  border-bottom-style: solid;
}

.pointer-underline:hover::after, 
.pointer-overline:hover::after,
.pointer-doubleline:hover::after
{
  width: 100%;
}

.pointer-framed:before {
  content: "";
  position: absolute;
  border-top-width: var(--pointer-width);
  border-bottom-width: 0px;
  border-left-width: var(--pointer-width);
  border-right-width: var(--pointer-width);
  border-color: var(--pointer-color);
  border-style: solid;
  width: 0;
  height: 0;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  opacity: 0;
  transition: height 0.3s , width 0.2s 0.3s , opacity 0.1s 0.5s;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.pointer-framed::after {
  content : "";
  position : absolute;
  border-bottom-width : var(--pointer-width);
  border-top-width : 0px;
  border-left-width : var(--pointer-width);
  border-right-width : var(--pointer-width);
  border-color : var(--pointer-color);
  border-style : solid;
  width : 0;
  height :0;
  left : 50%;
  transform : translateX(-50%);
  bottom : 0;
  opacity: 0;
  transition : height 0.3s , width 0.2s 0.3s , opacity 0.1s 0.5s;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.pointer-framed:hover::after, .pointer-framed:hover::before {
  width : 100%;
  height : 50%;
  opacity : 1;
  transition : width 0.2s , height 0.3s 0.2s;
}

.pointer-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 50%;
  background: var(--pointer-color);
  transform: translateX(-50%);
  transition: height 0.5s;
}

.pointer-bg:hover::after {
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .rkit-hamburger-tablet {
    display: flex;
  }

  .rkit-responsive-tablet {
    position: absolute;
    /* height: 0; */
    max-height: 0px;
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    z-index: 999;
    margin-top: var(--menu-distance);
  }

  .rkit-responsive-tablet .pointer-underline::after,
  .rkit-responsive-tablet .pointer-overline::after,
  .rkit-responsive-tablet .pointer-doubleline::after,
  .rkit-responsive-tablet .pointer-framed::after,
  .rkit-responsive-tablet .pointer-framed::before,
  .rkit-responsive-tablet .pointer-bg::after{
    content: none;
  }

  .rkit-responsive-tablet .rkit-menu-container {
    flex-direction: column;
  }

  .rkit-responsive-tablet .rkit-navmenu-dropdown {
    position: static;
    width: 100%;
  }

  .rkit-responsive-tablet .rkit-submenu-item .rkit-submenu-icon {
    transform: rotate(0deg);
  }
}

@media screen and (max-width: 767px) {
  .rkit-hamburger-mobile {
    display: flex;
  }

  .rkit-responsive-mobile {
    position: absolute;
    /* height: 0; */
    max-height: 0px;
    overflow: hidden;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    z-index: 999;
    margin-top: var(--menu-distance);
  }

  .rkit-responsive-mobile .rkit-menu-container {
    flex-direction: column;
  }

  .rkit-responsive-mobile .rkit-navmenu-dropdown {
    position: static;
    width: 100%;
  }

  .rkit-responsive-mobile .rkit-submenu-item .rkit-submenu-icon {
    transform: rotate(0deg);
  }

  .rkit-responsive-mobile .pointer-underline::after,
  .rkit-responsive-mobile .pointer-overline::after,
  .rkit-responsive-mobile .pointer-doubleline::after,
  .rkit-responsive-mobile .pointer-framed::after,
  .rkit-responsive-mobile .pointer-framed::before,
  .rkit-responsive-mobile .pointer-bg::after
  
  {
    content: none;
  }

}

@keyframes slideDown {
  from {
    transform: translateY(-0.5rem);
  }
  to {
    transform: translateY(0rem);
  }
}
.rkit-search .rkit-search-button {
    background-color: #00cea6;
    padding: 18px;
    display: flex !important;
    align-items: center;
    border: none;
    gap: 0.5rem;
}

.rkit-search .rkit-search-button:hover {
    background-color: #009678;
}

.rkit-search .rkit-search-input {
    outline: none;
    width: 100%;
    border: none;
    border-radius: 0px;
    background: #f1f1f1;
    padding: 18px;
}

.rkit-search .rkit-search-input:focus {
    outline: none;
}

.rkit-search {
    /* overflow: hidden; */
    display: flex;
    flex-direction: row;
}

.rkit-search-icon {
    font-size: 20px;
}.rkit-image {
    display: flex;
    flex-direction: column;
}

.rkit-image .site-caption {
    width: 100%;
}.rkit-post-grid-body {
    padding: 20px 30px 30px 30px;
    z-index: 2;
    position: relative;
    width: 100%;
}

.rkit-post-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.rkit-image-link {
    display: block;
    width: 100%;
}

.rkit-post-grid-card {
    background-color: #e9e9e9;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.rkit-w-50 {
    width: 50%;
}

.rkit-image-container {
    position: relative;
} 

.rkit-post-grid-img {
    transition: all 0.5s;
    object-fit: cover;
    object-position: center;
    width: 100% !important  ;
    height: 100% !important;
}

.rkit-post-grid-card:hover .rkit-post-grid-img {
    transform: scale(1.1);
    overflow:   hidden ;
}

.rkit-metadata,
.rkit-metadata a {
    color: gray;
}

.rkit-metadata {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;

}

.rkit-float-metawrapper-date {
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
    width: 3rem;
    background-color: #00cea6;
}

.rkit-float-metawrapper-date>span {
    display: flex;
    justify-content: center;
    flex-direction: column;
    line-height: 1;

}

.rkit-float-metawrapper-date>span>strong {
    font-size: large;
}

.rkit-floating-category {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    font-size: 12px;
    z-index: 2;
    gap: 0.5rem;
}


.rkit-post-block-card .rkit-floating-category-btn {
    background-color: #535353;
    padding-inline: 15px;
    border-radius: 0;
    color: #ffffff;
    border: none;
}

.rkit-post-block-card .rkit-floating-category-btn:hover {
    background-color: #00cea6;
    color: black;
}

.rkit-post-block-card .rkit-readmore-btn {
    background-color: #535353;
    border-radius: 0;
    padding: 16px 32px 16px 32px;
    text-align: center;
    font-size: 15px;
    color: white;
    transition: all 0.5s;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rkit-post-block-card .rkit-readmore-btn:hover {
    background-color: #00cea6;
    color: black;
}

.rkit-readmore-div {
    display: flex;
}

.rkit-metadata-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}


.rkit-post-grid .rkit-post-grid-body.rkit-post-grid-highlight-border::before {
    content: "";
    display: block;
    height: 50%;
    width: 2px;
    background: #ff712b;
    position: absolute;
    z-index: 999;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    left: 0;
}

.rkit-post-grid-title-container {
    margin : 10px 0px 10px 0px;
}

.rkit-post-grid-title{
    font-size: 20px;
    font-weight: 700;
    color :black;
}

.rkit-post-grid-paragraph {
    margin: 0px 0px 30px 0px;
}

@media only screen and (max-width:1024px) {
    .rkit-post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width:767px) {
    .rkit-post-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .rkit-post-grid-card {
        flex-direction: column !important;
    }

    .rkit-w-50 {
        width: 100%;
    }
}.rkit-post-block-body {
    padding: 20px 30px 30px 30px;
    z-index: 2;
    position: relative;
    width: 100%;
}

.rkit-post-block {
    display: flex;
    flex-direction: column;
}

.rkit-image-link {
    display: block;
    width: 100%;
}

.rkit-post-block-card {
    background-color: #e9e9e9;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
}

.rkit-w-50 {
    width: 50%;
}

.rkit-post-block .rkit-image-container {
    position: relative;
    width: 100%;
}

.rkit-post-block-img {
    transition: all 0.5s;
    object-fit: cover;
    object-position: center;
    width: 100% !important  ;
    height: 100% !important;
}

.rkit-post-block-card:hover .rkit-post-block-img {
    transform: scale(1.1);
}

.rkit-metadata,
.rkit-metadata a {
    color: gray;
}

.rkit-metadata {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;

}

.rkit-float-metawrapper-date {
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
    width: 3rem;
    background-color: #00cea6;
}

.rkit-float-metawrapper-date>span {
    display: flex;
    justify-content: center;
    flex-direction: column;
    line-height: 1;

}

.rkit-float-metawrapper-date>span>strong {
    font-size: large;
}

.rkit-floating-category {
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    font-size: 12px;
    z-index: 2;
    gap: 0.5rem;
}


.rkit-post-grid-card .rkit-floating-category-btn {
    background-color: #535353;
    padding-inline: 15px;
    border-radius: 0;
    color: #ffffff;
    border: none;
}

.rkit-post-grid-card .rkit-floating-category-btn:hover {
    background-color: #00cea6;
    color: black;
}

.rkit-post-grid-card .rkit-readmore-btn {
    background-color: #535353;
    border-radius: 0;
    padding: 16px 32px 16px 32px;
    text-align: center;
    font-size: 15px;
    color: white;
    transition: all 0.5s;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rkit-post-grid-card .rkit-readmore-btn:hover {
    background-color: #00cea6;
    color: black;
}

.rkit-readmore-div {
    display: flex;
}

.rkit-metadata-item {
    display: flex;
    align-items: center;
    cursor: pointer;
}


.rkit-post-block .rkit-post-block-body.rkit-post-block-highlight-border::before {
    content: "";
    display: block;
    height: 50%;
    width: 2px;
    background: #ff712b;
    position: absolute;
    z-index: 999;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
    left: 0;
}

.rkit-post-block-title-container {
    margin : 10px 0px 10px 0px;
}

.rkit-post-block-title{
    font-size: 20px;
    font-weight: 700;
    color :black;
}

.rkit-post-block-paragraph {
    margin: 0px 0px 30px 0px;
}

@media only screen and (max-width:1024px) {
    .rkit-post-block {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width:767px) {
    .rkit-post-block {
        grid-template-columns: repeat(1, 1fr);
    }

    .rkit-post-block-card {
        flex-direction: column !important;
    }

    .rkit-w-50 {
        width: 100%;
    }
}.rkit-cta {
    overflow: hidden;
    position: relative;
    background: white;
    transition: all 0.5s;
}

.rkit-cta-container-classic {
    display: flex;
}

.rkit-cta-container-cover {
    display: block;
}

.rkit-cta-img__wrapper {
    background-size: cover;
    background-position: 50%;
    min-width: 50%;
    position: relative;
    overflow: hidden;
}

.rkit-cta-img__image {
    transition: all 1.5s;
    object-fit: cover;
    object-position: center;
    display: block;
    background-size: cover;
    background-position: 50%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.rkit-cta-container-cover .rkit-cta-img__wrapper {
    min-height: 350px;
}

.rkit-cta-container-classic .rkit-cta-img__wrapper {
    min-height: 350px;
}


.rkit-cta-container-cover .rkit-cta-content__wrapper {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.rkit-cta-description {
    margin-bottom: 1rem;
}

.rkit-cta-container-classic .rkit-cta-content__wrapper {
    min-height: 350px;
}

.rkit-cta-ribbon {
    position: absolute;
    z-index: 1;
    top: 0;
    left: auto;
    right: 0;
    transform: rotate(90deg);
    width: 150px;
    overflow: hidden;
    height: 150px;
}

.rkit-cta-ribbon.rkit-cta-ribbon__left {
    transform: rotate(0);
    left: 0;
    right: auto;
}

.rkit-cta-ribbon.rkit-cta-ribbon__right {
    transform: rotate(90deg);
    left: auto;
    right: 0;
}

.rkit-cta-ribbon__inner {
    text-align: center;
    left: 0;
    width: 200%;
    transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
    margin-top: 35px;
    font-size: 13px;
    background: #00cea6;
    color: #000;
    line-height: 2;
    font-weight: 700;
}

.rkit-cta-content__wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding : 30px;
}

.rkit-cta .rkit-cta-title {
    transition: all 0.5s;
}

.rkit-cta-img__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: all 0.5s;
}

.rkit-cta:hover .rkit-cta-img__overlay {
    background-color: rgba(0, 0, 0, 0.25);
}

.rkit-cta:hover .zoom-in {
    transform: scale(1.2);
}

.zoom-out {
    transform: scale(1.2);
}

.rkit-cta:hover .zoom-out {
    transform: scale(1);
}

.rkit-cta-icon__graphic_element {
    font-size: 70px;
}

.rkit-cta-img__image.move-left {
    transform: scale(1.2) translateX(8%);
}

.rkit-cta-img__image.move-right {
    transform: scale(1.2) translateX(-8%);
}

.rkit-cta-img__image.move-up {
    transform: scale(1.2) translateY(8%);
}

.rkit-cta-img__image.move-down {
    transform: scale(1.2) translateY(-8%);
}

.rkit-cta:hover .rkit-cta-img__image.move-left,
.rkit-cta:hover .rkit-cta-img__image.move-right,
.rkit-cta:hover .rkit-cta-img__image.move-up,
.rkit-cta:hover .rkit-cta-img__image.move-down {
    transform: scale(1.2) translateX(0%);
}

.rkit-cta__graphic_element {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.rkit-cta__graphic_element:has(.rkit-cta-icon__graphic_element) {
    aspect-ratio: 1/1;
}

.rkit-cta-text {
    display: flex;
    flex-direction: column;
}

.rkit-cta a.rkit-cta-button {
    background-color: #535353;
    border-radius: 5px;
    padding: 16px 32px 16px 32px;
    text-align: center;
    font-size: 15px;
    color: white;
    transition: all 0.5s;
    border: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.rkit-cta-button.fullwidth {
    width: 100%;
}

.rkit-cta a.rkit-cta-button:hover {
    background-color: #00cea6;
    color: #535353;
}.rkit-blockquote{
    display: flex;
    position: relative;
}

.blockquote-top{
    flex-direction: column;
}

.rkit-quote-icon{
    font-size: 4rem;
    margin : 0px 0px 20px 0px;
}

.rkit-blockquote__icon {
    color: #00cea6;
}

.blockquote-top .rkit-quote-icon{
    display: flex;  
    align-items: center;
}

.blockquote-inline .rkit-quote-icon {
    float: left;
    line-height: 1em;
    width: 1em;
    height: 1em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 .5em 0 0;
}

.blockquote-inline , .blockquote-absolute {
    flex-direction: column;
}

.rkit-quote-author {
    font-weight: 700;
}

.blockquote-absolute .rkit-quote-icon {
    position: absolute;
    z-index: 1;
    left : 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    margin: 0;
}
.rkit-social-media__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.54rem;
}

.rkit-social-media__list .rkit-social-share__link {
  width: fit-content;
  border: none;
  display: flex;
  align-items: center;
  height: 100%;
  line-height: 1;
  border-radius: 0;
  padding: 10px;
}

.rkit-social-share.fullwidth .rkit-social-share__link {
  width: 100%;
  justify-content: center;
}

.facebook {
  --color: #1877f2; /* Facebook Blue */
}

.twitter {
  --color: #000000; /* X (Twitter) Black */
}

.pinterest {
  --color: #e60023; /* Pinterest Red */
}

.linkedin {
  --color: #0a66c2; /* LinkedIn Blue */
}

.quora {
  --color: #b92b27; /* Quora Red */
}

.reddit {
  --color: #ff4500; /* Reddit Orange */
}

.telegram {
  --color: #26a5e4; /* Telegram Blue */
}

.viber {
  --color: #665cac; /* Viber Purple */
}

.whatsapp {
  --color: #25d366; /* WhatsApp Green */
}

.line {
  --color: #00b900; /* LINE Green */
}

.facebook:hover {
  --color: #145dbf; /* Facebook Darker Blue */
}

.twitter:hover {
  --color: #1c1c1c; /* X (Twitter) Darker Black */
}

.pinterest:hover {
  --color: #b8001b; /* Pinterest Darker Red */
}

.linkedin:hover {
  --color: #004182; /* LinkedIn Darker Blue */
}

.quora:hover {
  --color: #8a211d; /* Quora Darker Red */
}

.reddit:hover {
  --color: #cc3700; /* Reddit Darker Orange */
}

.telegram:hover {
  --color: #007ba7; /* Telegram Darker Blue */
}

.viber:hover {
  --color: #514483; /* Viber Darker Purple */
}

.whatsapp:hover {
  --color: #1ebe5c; /* WhatsApp Darker Green */
}

.line:hover {
  --color: #009900; /* LINE Darker Green */
}

.rkit-social-share.flat .rkit-social-share__link {
  background-color: var(--color);
  color: white;
  fill: white;
}

.rkit-social-share.flat .rkit-social-share__link:hover {
  color: white;
  fill: white;
}

.rkit-social-share.outline .rkit-social-share__link,
.rkit-social-share.framed .rkit-social-share__link {
  border-width: 2px;
  border-style: solid;
  border-color: var(--color);
  color: var(--color);
  fill: var(--color);
  background: transparent;
}

.rkit-social-share.framed .rkit-social-share__link:hover {
  background: transparent;
  color: var(--color);
  fill: var(--color);
}

.rkit-social-share.outline .rkit-social-share__link:hover {
  background-color: var(--color);
  color: white;
  fill: white;
}

.rkit-social-share.flat-on-hover .rkit-social-share__link {
  background: transparent;
  color: var(--color);
  fill: var(--color);
}

.rkit-social-share.flat-on-hover .rkit-social-share__link:hover {
  background-color: var(--color);
  color: white;
  fill: white;
}

.rkit-social-share.pointer .rkit-social-share__link,
.rkit-social-share.pointer .rkit-social-share__link:hover,
.rkit-social-share.pointer-on-hover .rkit-social-share__link,
.rkit-social-share.pointer-on-hover .rkit-social-share__link:hover {
  --pointer-width: 3px;
  position: relative;
  background: transparent;
  color: var(--color);
  fill: var(--color);
}

.rkit-social-share.pointer .rkit-social-share__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: var(--pointer-width);
  background-color: var(--color);
  transform: translateY(50%);
}

.rkit-social-share.pointer-on-hover .rkit-social-share__link::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  width: 0%;
  height: var(--pointer-width);
  background-color: var(--color);
  transition: width 0.5s;
  transform: translateX(-50%);
}

.rkit-social-share.pointer-on-hover .rkit-social-share__link:hover::after {
  width: 100%;
}
.rkit-team-card {
    background-color: white;
    transition: all 0.5s;
    overflow: hidden;
    position: relative;
}

.pointer {
    --pointer-size : 5px;
}

.rkit-team-card.pointer::before {
    content: "";
    height: var(--pointer-size);
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    background: blue;
    position: absolute;
    z-index: 9999;
}

.rkit-team-card.pointer::after {
    content: "";
    position: absolute;
    width: 0%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: var(--pointer-size);
    transition: width 0.5s ease;
    background: #00cea6;
    z-index: 99999;
}

.rkit-team-card:hover.pointer::after {
    width: 100%;
}

.rkit-team__detail {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    transition: all 0.5s;
}

.rkit-team__detail h4 {
    margin-bottom: 0;
    margin-top: 0;
}

.rkit-team__img {
    display: flex;
    transition: all 1s;
    overflow: hidden;
}

.rkit-team__img img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    transition: transform 0.5s;
}


.rkit-team__img.move-left img {
    transform: scale(1.2) translateX(8%);
}

.rkit-team__img.move-right img {
    transform: scale(1.2) translateX(-8%);
}

.rkit-team__img.move-up img {
    transform: scale(1.2) translateY(8%);
}

.rkit-team__img.move-down img {
    transform: scale(1.2) translateY(-8%);
}

.rkit-team-card:hover .rkit-team__img.move-left img,
.rkit-team-card:hover .rkit-team__img.move-right img,
.rkit-team-card:hover .rkit-team__img.move-up img,
.rkit-team-card:hover .rkit-team__img.move-down img {
    transform: scale(1.2) translateX(0%);
}

.rkit-team-card:hover .rkit-team__img.zoom-in img {
    transform: scale(1.2);
}

.rkit-team__img.zoom-out img {
    transform: scale(1.2);
}

.rkit-team-card:hover .rkit-team__img.zoom-out img {
    transform: scale(1);
}

.rkit-team__role {
    color: gray;
    font-size: 15px;
    margin-bottom: 0.5rem;
}

.rkit-team__description {
    margin-bottom: 0.5rem;
}

.rkit-team__overlay {
    overflow: hidden;
}

.rkit-team__overlay .rkit-team-card {
    position: relative;
}

.rkit-team__overlay .rkit-team__detail {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translateY(100%);
    transition: all 0.5s;
    /* background-color: rgba(0, 0, 0, 0.5); */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.rkit-team__overlay .rkit-team__detail::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    bottom: 0;
    /* transform: translateY(10%); */
    transition: all 0.5s;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    z-index: -1;
}

.rkit-team__overlay:hover .rkit-team__detail,
.rkit-team__overlay:hover .rkit-team__detail::after
{
    visibility: visible;
    transform: translateY(0%);
    opacity: 1;
}

.rkit-team__overlay:hover .rkit-team__img {
    filter: blur(5px);
}


.rkit-team__social {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

.rkit-team__social_item {
    padding: 20px;
    aspect-ratio: 1/1;
    /* width: 35px; */
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color);
    transition: all 0.5s;
}

.rkit-team__social_icon {
    color: var(--icon-color);
    fill: var(--icon-color);
}

.rkit-team__social_on_hover_top .rkit-team-card,
.rkit-team__social_on_hover_left .rkit-team-card,
.rkit-team__social_on_hover_right .rkit-team-card,
.rkit-team__social_on_hover_bottom .rkit-team-card {
    position: relative;
    overflow: hidden;
}

.rkit-team__social_on_hover_top .rkit-team__social,
.rkit-team__social_on_hover_left .rkit-team__social,
.rkit-team__social_on_hover_right .rkit-team__social,
.rkit-team__social_on_hover_bottom .rkit-team__social {
    position: absolute;
    display: flex;
    opacity: 0;
    transition: all 0.5s;
}

.rkit-team__social_on_hover_top .rkit-team__social ,
.rkit-team__social_on_hover_bottom .rkit-team__social {
    flex-direction: row;
}

.rkit-team__social_on_hover_left .rkit-team__social, 
.rkit-team__social_on_hover_right .rkit-team__social {
    flex-direction: column;
    top: 0;
    bottom: 0;
    align-items: center;
}

.rkit-team__social_on_hover_top .rkit-team__social, 
.rkit-team__social_on_hover_bottom .rkit-team__social {
    flex-direction: row;
    left: 0;
    right: 0;
    justify-content: center;

}

.rkit-team__social_on_hover_left .rkit-team__social {
    left: -50px;
}

.rkit-team__social_on_hover_left:hover .rkit-team__social {
    left: 0;
    opacity: 1;
}

.rkit-team__social_on_hover_right .rkit-team__social {
    right: -50px;
}

.rkit-team__social_on_hover_right:hover .rkit-team__social {
    right: 0;
    opacity: 1;
}

.rkit-team__social_on_hover_top .rkit-team__social {
    top: -50px;
}

.rkit-team__social_on_hover_top:hover .rkit-team__social {
    top: 0;
    opacity: 1;
}

.rkit-team__social_on_hover_bottom .rkit-team__social {
    bottom: -50px;
}

.rkit-team__social_on_hover_bottom:hover .rkit-team__social {
    bottom: 0;
    opacity: 1;
}


.rkit-team__centered .rkit-team-card{
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rkit-team__centered .rkit-team__img {
    border-radius: 50%;
    overflow: hidden;
    width: 50%;
    min-width: 180px;

}

.rkit-team__centered .rkit-team__img img {
    aspect-ratio: 1/1;
}

.rkit-team__centered .rkit-team__detail {
    text-align: center;
    justify-content: center;
    align-items: center;
}


.facebook {
    --color: #1877F2; /* Facebook Blue */
    --icon-color : #ffffff;
}

.twitter {
    --color: #000000; /* X (Twitter) Black */
    --icon-color : #ffffff;
}

.pinterest {
    --color: #E60023; /* Pinterest Red */
    --icon-color : #ffffff;
}

.linkedin {
    --color: #0A66C2; /* LinkedIn Blue */
    --icon-color : #ffffff;
}

.quora {
    --color: #B92B27; /* Quora Red */
    --icon-color : #ffffff;
}

.reddit {
    --color: #FF4500; /* Reddit Orange */
    --icon-color : #ffffff;
}

.telegram {
    --color: #26A5E4; /* Telegram Blue */
    --icon-color : #ffffff;
}

.viber {
    --color: #665CAC; /* Viber Purple */
    --icon-color : #ffffff;
}

.whatsapp {
    --color: #25D366; /* WhatsApp Green */
    --icon-color : #ffffff;
}

.line {
    --color: #00B900; /* LINE Green */
    --icon-color : #ffffff;
}

.facebook:hover {
    --color: #145DBF; /* Facebook Darker Blue */
    --icon-color : #ffffff;
}

.twitter:hover {
    --color: #1C1C1C; /* X (Twitter) Darker Black */
    --icon-color : #ffffff;
}

.pinterest:hover {
    --color: #B8001B; /* Pinterest Darker Red */
    --icon-color : #ffffff;
}

.linkedin:hover {
    --color: #004182; /* LinkedIn Darker Blue */
    --icon-color : #ffffff;
}

.quora:hover {
    --color: #8A211D; /* Quora Darker Red */
    --icon-color : #ffffff;
}

.reddit:hover {
    --color: #CC3700; /* Reddit Darker Orange */
    --icon-color : #ffffff;
}

.telegram:hover {
    --color: #007BA7; /* Telegram Darker Blue */
    --icon-color : #ffffff;
}

.viber:hover {
    --color: #514483; /* Viber Darker Purple */
    --icon-color : #ffffff;
}

.whatsapp:hover {
    --color: #1EBE5C; /* WhatsApp Darker Green */
    --icon-color : #ffffff;
}

.line:hover {
    --color: #009900; /* LINE Darker Green */
    --icon-color : #ffffff;
}

.tiktok {
    --color : #000000;
    --icon-color : #ffffff;
}

.tiktok:hover {
    --color : #1C1C1C;
    --icon-color : #ffffff;
}

.github {
    --color : #333333;
    --icon-color : #ffffff;
}

.github:hover {
    --color : #000000;
    --icon-color : #ffffff;
}

.youtube {
    --color : #ff0000;
    --icon-color : #ffffff;
}

.youtube:hover {
    --color : #CD201F;
    --icon-color : #ffffff;
}

.instagram {
    --color : #E1306C;
    --icon-color : #ffffff;
}

.instagram:hover {
    --color : #c13584;
    --icon-color : #ffffff;
}

.dribbble {
    --color :  #ea4c89;
    --icon-color : #ffffff;
}

.dribbble:hover {
    --color : #ca2e6a;
    --icon-color : #ffffff;
}

.behance {
    --color : #1769ff;
    --icon-color :#ffffff;
}

.behance:hover {
    --color:#153bbb;
    --icon-color : #ffffff;
}.rkit-text-marquee {
  overflow: hidden;
}

.rkit-marquee-container {
  overflow: hidden;
  /*   white-space: nowrap; */
  width: 100%;
  display: flex;
  flex-direction: row;
  --gap: 5rem;
  --speed: 20;
  /*   gap: var(--gap); */
}

.rkit-marquee {
  animation: marquee calc(100s / var(--speed)) infinite linear;
}

.rkit-marquee-container:hover .pause-hover {
  animation-play-state: paused;
}

.rkit-marquee-content {
  display: inline-flex;
  align-items: center;
}

.rkit-marquee-item {
  text-wrap: nowrap;
  padding-right: var(--gap);
}

.rkit-marquee-item-content {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.rkit-running-text__text {
  background: black;
  font-size: 3rem;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rkit-running-text__icon {
  font-size: 3rem;
  width: 3rem;
  color: black;
  fill: black;
}

.image-running img{
  display: block;
  width: auto;
  height: 100%;
  overflow: hidden;
  object-fit: contain;
}

.image-running { 
  display : flex;
width: 100px;
height: 100px;
overflow: hidden;
opacity : 1;
  align-items : center;
}



@keyframes marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes blink-caret {
  to {
    opacity: 0;
  }
}

.rkit-animated-heading p {
  position: relative;
  /* Menentukan posisi relatif untuk memposisikan pseudo-elemen */
}

.rkit-animated-heading {
  position: relative;
}

.text-writing {
  display: inline-block;
}

.text-writing::after {
  content: "|";
  display: inline-block;
  vertical-align: top;
  animation: blink-caret 600ms infinite alternate;
}

.rkit-animated-heading p {
  margin-bottom: 0;
}

@keyframes typing-cursor {
  from,
  to {
    border-color: transparent;
  }

  50% {
    border-color: #000000;
  }
}

.text-flipping {
  transition: 0.5s;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  display: inline-block;
}

.flip-out {
  transform: perspective(400px) rotateX(90deg);
  animation-name: flipOut;
  transform-origin: bottom;
  opacity: 0;
}

.flip-in {
  transform: perspective(400px) rotateX(0deg);
  animation-name: flipIn;
  transform-origin: bottom;
  opacity: 1;
}

@keyframes flipOut {
  0% {
    transform: perspective(400px) rotateX(0deg);
    transform-origin: bottom;
    opacity: 1;
  }

  40% {
    transform: perspective(400px) rotateX(-20deg);
    transform-origin: bottom;
  }

  100% {
    transform: perspective(400px) rotateX(90deg);
    transform-origin: bottom;
    opacity: 0;
  }
}

@keyframes flipIn {
  0% {
    transform: perspective(400px) rotateX(-90deg);
    transform-origin: bottom;
    opacity: 0;
  }

  60% {
    transform: perspective(400px) rotateX(-20deg);
    transform-origin: bottom;
  }

  100% {
    transform: perspective(400px) rotateX(0deg);
    transform-origin: bottom;
    opacity: 1;
  }
}

.text-sliding_up,
.text-sliding_down {
  overflow: hidden;
  transition: opacity 0.5s;
  display: inline-flex;
}

.text-sliding_down.slide-down_in {
  height: auto;
  animation: slideDown_In 0.5s;
}

.text-sliding_down.slide-down_out {
  height: auto;
  animation: slideDown_Out 0.5s;
}

.text-sliding_up.slide-up_in {
  height: auto;
  animation: slideUp_In 0.5s;
}

.text-sliding_up.slide-up_out {
  height: auto;
  animation: slideUp_Out 0.5s;
}

@keyframes slideUp_In {
  0% {
    transform: translateY(15px);
    opacity: 0;
  }

  60% {
    transform: translateY(-5px);
    opacity: 0.8;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes slideUp_Out {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }

  100% {
    transform: translateY(-15px);
    opacity: 0;
  }
}

@keyframes slideDown_In {
  0% {
    transform: translateY(-15px);
    opacity: 0;
  }

  60% {
    transform: translateY(5px);
    opacity: 0.8;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes slideDown_Out {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }

  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}

@keyframes handdrawn {
  0% {
    stroke-dashoffset: 1500;
    opacity: 0;
  }

  100% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes opacity {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.rkit-animated-heading__text svg {
  fill: none;
  stroke: black;
  stroke-width: 12px;
  stroke-miterlimit: 10;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  stroke-linecap: round;
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 20px);
  opacity: 0;
  transform: translate(-50%, -50%);
  z-index: -1;
  height: calc(100% + 15px);
  overflow: visible;
}

.rkit-animated-heading__text {
  color: #00cea6;
}

.rkit-highlighted.in_front svg {
  z-index: 2 !important;
}
 


.highlighted_in svg {
  animation: handdrawn 1s forwards;
}

.highlighted_out svg {
  stroke-dashoffset: 0;
  animation: opacity 1s;
}

.rkit-highlighted {
  display: inline-flex;
}

.text-drop-in,
.text-drop-out {
  overflow: hidden;
  display: inline-flex;
}

.text-drop-in.drop-in_out {
  animation: dropIn_Out 0.5s;
  opacity: 0;
}

.text-drop-in.drop-in_in {
  animation: dropIn_In 0.5s;
  opacity: 1;
}

@keyframes dropIn_Out {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(0.4);
    opacity: 0;
  }
}

@keyframes dropIn_In {
  0% {
    transform: scale(1.3);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.text-drop-out.drop-out_out {
  animation: dropOut_Out 0.5s;
  opacity: 0;
}

.text-drop-out.drop-out_in {
  animation: dropOut_In 0.5s;
  opacity: 1;
}

@keyframes dropOut_Out {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

@keyframes dropOut_In {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.rkit-swiper {
  position: relative;
  overflow: visible;
}

.rkit-card {
  background-color: #fafafa;
  overflow: hidden;
}

.rkit-card-slider {
  padding: 0px;
  overflow: hidden;
}

.rkit-cardslider-pagination {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  padding: 1rem;
  justify-content: center;
  align-items: center;
}

.rkit-swiper-button-prev {
  left: 0;
  top: 50%;
}

.rkit-swiper-button-next {
  right: 0;
  top: 50%;
}

.rkit-swiper-button-next,
.rkit-swiper-button-prev {
  position: absolute;
  z-index: 999;
  cursor: pointer;
  width: 45px;
  height: 45px;
  background-color: #00cea6;
  transform: translateY(-50%);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  border-radius: 5px;
  --swiper-navigation-size: 44px;
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
}

.card-image {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.rkit-card .card-image img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.rkit-cardslider-bullet {
  width: 8px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #aaaaaa;
  transition: all 0.5s ease;
}

.rkit-cardslider-bullet-active {
  background-color: #161616;
}

.rkit-cardslider-bullet-clickable .rkit-cardslider-bullet {
  cursor: pointer;
}

.rkit-card .card-body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.rkit-card .card-body::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.5s;
  background: #aaaaaa;
}

.card-title {
  margin: 0;
}

.card-title a {
  text-decoration: none;
  color: #161616;
}

.card-heading {
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
}

.rkit-swiper-button-prev.swiper-button-disabled,
.rkit-swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.rkit-card .card-button a {
  background-color: #00cea6;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  color: white;
  transition: all 0.5s;
  border-radius: 5px;
}

.rkit-card .card-button {
  display: flex;
  justify-content: start;
}

.rkit-card .card-button a .button-icon {
  transition: color 0.5s;
}

.rkit-card.rkit-cc-overlay {
  position: relative;
}

.rkit-card.rkit-cc-overlay .card-body {
  opacity: 0;
  transform: translateY(-20%);
  transform-origin: bottom;
  transition: all 0.5s;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  color: white;
  padding: 40px;
}

.rkit-card.rkit-cc-overlay .card-image img {
  aspect-ratio: 1 / 1;
}

.rkit-card.rkit-cc-overlay .card-button {
  justify-content: center;
}

.rkit-card.rkit-cc-overlay:hover .card-body {
  opacity: 1;
  transform: translateY(0);
}

.rkit-card.rkit-cc-overlay:hover .card-body::before {
  transform: translateY(0);
  opacity: 1;
}

.rkit-card-slider .swiper-slide {
  overflow: unset;
}

.card-button.fullwidth a {
  width: 100%;
}
.rkit-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.rkit-accordion-header {
    padding: 10px;
    background-color: #ebebeb;
    color: #000000;
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center ;
    transition: all 0.5s;
    position: relative;
}

.rkit-accordion-header:hover {
    z-index: 2;
}

.rkit-accordion-item.open .rkit-accordion__title{
    color: rgb(1, 57, 242);
}

.rkit-accordion-content {
    max-height: 0vmax;
    height: auto;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.3s;
}

.rkit-accordion__icon{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 20px 0px 20px;
    transition: all 0.5s;
}

.rkit-accordion__title{
    width:100%;
    text-align: left;
    padding: 0px 0px 0px 20px;
    transition: all 0.5s;
}

.rkit-accordion__content{
    padding: 30px 30px 30px 30px;
    text-align: left;
}

.rkit-accordion-item.open .rkit-accordion-content {
    visibility: visible;
    max-height: 100vmax;
    transition: all 1.5s;
}


.rkit-accordion-item .rkit-accordion__icon .icon_open {
    display: none;
}

.rkit-accordion-item.open .rkit-accordion__icon .icon_close {
    display: none;
}

.rkit-accordion-item.open .rkit-accordion__icon .icon_open {
    display: block;
}.rkit-testimonial-carousel {
  overflow: hidden;
  padding: 10px;
}

.rkit-testimonial-carousel .rkit-testimonial-card {
  width: 100%;
  height: auto;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}

.rkit-pagination-bullet {
  width: 8px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #aaaaaa;
  transition: all 0.5s ease;
}

.rkit-pagination-bullet-active {
  background-color: #161616;
}

.rkit-pagination-bullet-clickable .rkit-pagination-bullet {
  cursor: pointer;
}

.rkit-testimonial-wrapper.style_1 .rkit-testimonial-card {
  background-color: aliceblue;
}

.rkit-testimonial-wrapper.style_2 .rkit-testimonial-card {
  flex-direction: column;
}

.rkit-testimonial-wrapper.style_3 .rkit-testimonial-card {
  background-color: aliceblue;
  padding: 1rem;
  display: flex;
  flex-direction: row;
}

.rkit-testimonial-wrapper.style_4 .rkit-testimonial-card {
  flex-direction: column;
  background-color: aliceblue;
  padding: 1rem;
}

.rkit-testimonial-wrapper.style_5 .rkit-testimonial-card {
  /* height: 324px; */
  position: relative;
}

.testimonial_header {
  display: flex;
}

.testimonial_body {
  padding: 0.5rem;
}

.testimonial_quote {
  padding: 0px 0px 20px 0px;
}

.testimonial-client-img img {
  height: auto;
  object-fit: cover;
  display: flex;
}

.testimonial_quote_wrapper {
  display: flex;
}

.rkit-testimonial-carousel .testimonial-container {
  overflow: visible;
}

.rkit-testimonial-wrapper.style_1 .testimonial-client-img {
  width: 100%;
}

.rkit-testimonial-wrapper.style_1 .testimonial-client-img img {
  width: 100%;
  aspect-ratio: 16/9;
}

.rkit-testimonial-wrapper.style_2 .testimonial-client-img img {
  width: 100px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.rkit-testimonial-wrapper.style_3 .testimonial-client-img img {
  width: 400px;
  aspect-ratio: 1/1;
  border-radius: 50%;
}

.rkit-testimonial-wrapper.style_5 .testimonial-client-img img {
  width: 100%;
  height: 100%;
}

.rkit-testimonial-wrapper.style_2 .testimonial-client-img {
  display: flex;
  justify-content: center;
}

.rkit-testimonial-wrapper.style_5 .testimonial-client-img {
  width: 100%;
  height: 100%;
}

.rkit-testimonial-wrapper.style_1 .rkit-testimonial-card {
  flex-direction: column;
}

.rkit-testimonial-carousel .rkit-testimonial-pagination {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  padding-block: 0.5rem;
  justify-content: center;
  align-items: center;
  margin: 30px 0px 0px 0px;
}

.rkit-testimonial-wrapper.style_1 .testimonial_body {
  padding: 1.5rem;
}

.rkit-testimonial-wrapper.style_2 .testimonial_body {
  padding: 20px 20px 50px 20px;
  background-color: aliceblue;
}

.rkit-testimonial-wrapper.style_5 .testimonial_body {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  color: white;
}

.rkit-testimonial-wrapper.style_5 .testimonial_header {
  width: 100%;
}

.rkit-testimonial-wrapper.style_2 .testimonial_header {
  flex-direction: column;
  margin-top: -50px;
}

.rkit-testimonial-wrapper.style_1 .testimonial_header {
  position: relative;
}

.rkit-testimonial-wrapper.style_1 .testimonial_quote_wrapper {
  position: absolute;
  margin: 0px 0px -25px 25px;
}

.rkit-testimonial-wrapper.style_1 .testimonial_quote {
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(54, 133, 236);
  border-radius: 50%;
  color: white;
  padding: 1rem;
}

.rkit-testimonial-wrapper.style_3 .testimonial_header {
  display: flex;
  justify-content: center;
  align-items: center;
}

.rkit-testimonial-wrapper.style_2 .testimonial_quote {
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rkit-testimonial-wrapper.style_2 .testimonial_description {
  margin-bottom: 20px;
}

.rkit-testimonial-wrapper.style_4 .testimonial_header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.rkit-testimonial-wrapper.style_4 .testimonial-client-img img {
  border-radius: 50%;
  width: 60px;
  aspect-ratio: 1/1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.rkit-testimonial-wrapper.style_4 .testimonial-author {
  margin-top: 0;
}

.testimonial-author span {
  font-weight: 400;
  font-size: 13px;
}

.testimonial-rating {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  margin: 0px 0px 0px 0px;
}

.rkit-testimonial-rate_icon {
  font-size: 13px;
  width: 13px;
  height: 13px;
}

.rated .rkit-testimonial-rate_icon {
  color: rgb(255, 196, 0);
  fill: rgb(255, 196, 0);
}

.unrated .rkit-testimonial-rate_icon {
  color: #7b7b7b;
  fill: #7b7b7b;
}

.rkit-testimonial-wrapper.style_2 .testimonial-author,
.rkit-testimonial-wrapper.style_2 .testimonial-rating {
  text-align: center;
  justify-content: center;
}

.testimonial-prev-wrapper,
.testimonial-next-wrapper {
  position: absolute;
  top: 50%;
  z-index: 2;
  cursor: pointer;
  transform: translateY(-50%);
}

.testimonial-prev-wrapper {
  left: 0;
}

.testimonial-next-wrapper {
  right: 0;
}

.rkit-testimonial-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  padding: 1rem;
  border-radius: 5px;
  transition: all 0.5s ease;
}

.rkit-testimonial-navigation.rkit-testimonial-button-next,
.rkit-testimonial-navigation.rkit-testimonial-button-prev {
  background-color: #00cea6;
  background-image: none;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  margin: 0;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.rkit-testimonial-navigation.rkit-testimonial-button-next::after,
.rkit-testimonial-navigation.rkit-testimonial-button-prev::after {
  content: none !important;
}

.rkit-testimonial-navigation .navigation-icon {
  color: white;
}
/**
 * Swiper 11.0.5
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 22, 2023
 */

 @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}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.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-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.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-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.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-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-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:var(--swiper-navigation-top-offset,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 svg,.swiper-button-prev svg{width:100%;height:100%;object-fit:contain;transform-origin:center}.swiper-rtl .swiper-button-next svg,.swiper-rtl .swiper-button-prev svg{transform:rotate(180deg)}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:var(--swiper-navigation-sides-offset,10px);right:auto}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-lock{display:none}.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:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:var(--swiper-navigation-sides-offset,10px);left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.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:var(--swiper-pagination-bottom,8px);top:var(--swiper-pagination-top,auto);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:var(--swiper-pagination-bullet-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:var(--swiper-pagination-right,8px);left:var(--swiper-pagination-left,auto);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-fraction{color:var(--swiper-pagination-fraction-color,inherit)}.swiper-pagination-progressbar{background:var(--swiper-pagination-progressbar-bg-color,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:var(--swiper-pagination-progressbar-size,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:var(--swiper-pagination-progressbar-size,4px);height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:var(--swiper-scrollbar-border-radius,10px);position:relative;touch-action:none;background:var(--swiper-scrollbar-bg-color,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:var(--swiper-scrollbar-sides-offset,1%);bottom:var(--swiper-scrollbar-bottom,4px);top:var(--swiper-scrollbar-top,auto);z-index:50;height:var(--swiper-scrollbar-size,4px);width:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar.swiper-scrollbar-vertical,.swiper-vertical>.swiper-scrollbar{position:absolute;left:var(--swiper-scrollbar-left,auto);right:var(--swiper-scrollbar-right,4px);top:var(--swiper-scrollbar-sides-offset,1%);z-index:50;width:var(--swiper-scrollbar-size,4px);height:calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%))}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,.5));border-radius:var(--swiper-scrollbar-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;touch-action:none}.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{pointer-events:auto}.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-prev{pointer-events:auto;visibility:visible}.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-cube .swiper-slide-next+.swiper-slide{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.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-flip.swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-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}.rkit-tab-nav {
  list-style: none;
  padding: 0;
}

.rkit-tab-container {
  display: flex;
}

.rkit-tab-container.horizontal {
  flex-direction: column;
}

.rkit-tab-container.vertical {
  flex-direction: row;
}

.rkit-tab-nav {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

.rkit-tab-nav.bordered {
  border-bottom: 1px solid #929292;
}

.rkit-tab-nav.bordered .rkit-tab-btn-item{
  margin-bottom: -1px;
  background-color: transparent;
}

.rkit-tab-nav.bordered .rkit-tab-btn-item.active {
  background-color: #fff;
  color: inherit;
  border: 1px solid #929292;
  border-bottom: 0;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.rkit-tab-container.vertical .rkit-tab-nav.bordered {
  border-bottom: 0;
}

.rkit-tab-container.vertical .rkit-tab-nav.bordered .rkit-tab-btn-item.active {
  border-bottom: 1px solid #929292;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.rkit-tab-nav.bordered .rkit-tab-btn-item.active .tab-title-icon {
  color: inherit;
  fill: inherit;
}

.rkit-tab-container.horizontal .rkit-tab-nav {
  flex-direction: row;
}

.rkit-tab-container.vertical .rkit-tab-nav {
  flex-direction: column;
}

.rkit-tab-btn-item {
  width: auto;
  background-color: gray;
  text-align: center;
  cursor: pointer;
  padding: 1rem;
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.rkit-tab-btn-item.shrink {
  flex: 0 0 auto;
}

.rkit-tab-btn-item.active {
  background-color: rgb(32, 32, 32);
  color: white;
}

.rkit-tab-btn-item.active .tab-title-icon {
  color: white;
  fill: white;
}

.tab-title-icon {
  font-size: 18px;
  width: 18px;
  display: flex;
}

.rkit-tab-container.vertical .rkit-tab-content-wrapper {
  flex: 1;
  width: 0;
}

.rkit-tab-container.horizontal .rkit-tab-content-wrapper {
  width: 100%;
}

.rkit-tab-content {
  display: none;
  /* margin: 20px 0px 0px 0px; */
  /* padding: 20px; */
  opacity: 0;
  transition: all 0.5s;
}

.rkit-tab-content.active {
  display: block;
  opacity: 1;
  animation: fade 0.5s ease-in-out;
}

.rkit-tab-content-container {
  flex: 1;
  padding: 20px;
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
    .rkit-tab-container.vertical {
        flex-direction: column;
      }
  .rkit-tab-btn-item,
  .rkit-tab-btn-item.shrink {
    flex: 1 1 auto !important;
  }

  .rkit-tab-container.vertical .rkit-tab-content-wrapper {
    width: 100%;
  }
}

@keyframes fade {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@property --progress {
  syntax: '<integer>';
  inherits: true;
  initial-value: 0;
}

@keyframes load {
  to {
    --progress: var(--value)
  }
}

.rkit-progress {
  --value: 17;
  --progress-color: #00cea6;
  --secondary-progress-color: #e3efff;
}

.progress-bar-container{
  display: flex;
  width: 100%;
}

.rkit-progress-animation,
.rkit-progress-animation::after {
  animation: load;
  animation-fill-mode: forwards;
  animation-duration: calc(var(--animation-duration) * 1ms);
  animation-timing-function: linear;
  animation-delay: 500ms;
}

.circular-progress {
  position: relative;
  width: 12rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: conic-gradient(var(--progress-color) calc(var(--progress) * 3.6deg), var(--secondary-progress-color) 0deg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.circular-progress .progress-value {
  background-color: #d6d6d6;
  position: absolute;
  width: 85%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  flex-direction: column-reverse;
}

.percentage-label::after,
.progress-bar-inline .percentage-label::after {
  counter-reset: percentage var(--progress);
  content: counter(percentage) '%';
}
.progress-bar-container .progress-bar-inline .progress-value,
.progress-bar-inline.percentage-label::after{
  font-size: 1rem;
}

.circular-progress .progress-value::before {
  content: var(--title);
}

.progress-bar,
.progress-bar-inline {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: var(--secondary-progress-color);
  display: flex;
  border-radius: 50px;
}

.progress-bar-inline .progress-value::before {
  height: 100%;
  display: flex;
  align-items: center;
  content: var(--title);
}


.progress-bar .progress-value,
.progress-bar-inline .progress-value
 {
  height: 100%;
  width: calc(var(--progress) * 1%);
  background-color: var(--progress-color);
  position: relative;
  border-radius: 50px;
}

.progress-bar.percentage-label::after
 {
  display: inline-block;
  position: absolute;
  left: calc(var(--progress) * 1% - 2rem)
}

.progress-bar-inline.percentage-label::after{
  display: flex;
  justify-content: end;
  align-items: center;
  position: absolute;
}
.progress-bar-inline{
  position: relative;
}

.progress-bar-inline.percentage-label::after{
  right:20px ;
  left: 80%;
  bottom: 0;
  top: 0;
  display: flex;
  align-items: center;
}

.half-circular-progress {
  position: relative;
  width: 12rem;
  aspect-ratio: 2/1;
  border-radius: 50% / 100% 100% 0 0;
  background: conic-gradient(from 0.75turn at 50% 100%, var(--progress-color) calc(var(--progress) * 3.6deg / 2), var(--secondary-progress-color) 0deg);
  display: flex;
  justify-content: center;
  align-items: center;
}

.half-circular-progress .progress-value {
  background-color: #d6d6d6;
  position: absolute;
  width: 75%;
  aspect-ratio: 2/1;
  border-radius: 50% / 100% 100% 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  flex-direction: column-reverse;
  bottom: 0;
}

.half-circular-progress .progress-value::before {
  content: var(--title);
}

.prefix-postfix {
  width: 12rem;
  display: flex;
  justify-content: space-between
}

.progress-title {
  padding-block: 0.5rem;
  display: block;
}.counter-suffix {
    white-space: pre-wrap;
}

.rkit-counter .counter {
    display: flex;
    font-size: 69px;
    font-weight: 600;
    line-height: 1;
    justify-content: center;
}

.rkit-counter {
    display: flex;
}

.rkit-counter .counter-container {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}.rkit-countdown-widget {
    background-color: var(--section-background, transparent);
    color: var(--text-color, #000);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-family: 'Digital-7', sans-serif;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

/*  */
 
#countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px; /* kasih jarak antar elemen */
}

.countdown-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown-top-row {
  /* font-size: 32px; */
  font-weight: bold;
  display: flex;
  justify-content: center;
}

.countdown-label {
  font-size: 14px;
  margin-top: 5px;
}

.countdown-separator {
  font-size: 32px;
  font-weight: bold;
  align-self: center;
  line-height: 1;
  margin: 0 5px;
}

/*  */
.countdown-title-wrapper{
    margin-bottom : -20px;
}

.rkit-countdown-widget .countdown-title {
    color: var(--title-color, #000);
    /* font-size: 2em;m */
}
 

.countdown_contain {
    display: flex;    
    flex-wrap: wrap;
    gap : 20px;
}


.rkit-countdown-widget .countdown-section {
    background-color: var(--section-background, transparent);
    padding: 20px 10px;
    border-radius: 5px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;  
    text-align: center;  
}

.rkit-countdown-widget  .countdown-section-row {
    background-color: var(--section-background, transparent);
    padding: 20px 10px;
    border-radius: 5px;
    display: flex; 
    justify-content: center;
    align-items: center;  
    gap: 2.5px; 
}

.rkit-countdown-widget .countdown-label {
    font-size: 1em;
    color: #00CEA6;  
    height: 100%; 
    display: flex; 
    align-self: center !important;
    align-items: center;
}
.time_sett{
    line-height: 1;
    display: flex;
    align-items: center;
    color: #000;
    font-size: 90px;
}

.hidden {
    display: none;
}

.countdown-section-container {
    display: flex;
}

.rkit-countdown-separator .countdown_contain .countdown-section-container:not(:first-child)::before {
    content: ":";
    font-size: 90px;
    display: inline-flex;
    line-height: 1;
    align-items: center;
    margin: -40px 0px 0px 0px;
}

@media (max-width: 600px) {
    #countdown {
        flex-wrap: wrap; 
        justify-content: center; 
    }
}


.rkit-pricelisttable-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    position: relative; 
    padding: 0px 0px 0px 0px ;
    align-items: center;
    justify-content: center; 
    border-radius: 5px 5px 5px 5px;
    overflow: hidden;
    background-color : #EEEEEE;
}

.icon-list-button-pt{
    color : #ffffff;
}

.icon-list-button-pt i:hover{
    color : rgb(255, 255, 255);
}
 

.rkit-pricelisttable-item {
    width: calc(50% - 10px); /* Agar item memiliki lebar yang sama dan muat di satu baris */
}


.rkit-pricelisttable-item {
    /* flex: 1 1 calc(100% - 20px); 3 items per row with 20px gap */
    flex: 1 1 auto;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    border-radius: 0px;
    overflow: hidden;
    background: transparent;
    display: flex;
    flex-direction: column;
    position: relative; /* Ensure positioning for ribbon */
}

.rkit-pricelisttable-item-inner {
    background-color : transparent;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    height: 100%;
    /* overflow: hidden; */
}

.rkit-pricelisttable-item-inner-price {
    background-color :transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.rkit-pricelisttable-item-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rkit-pricelisttable-item-title {
    /* font-size: 1.5em; */
    color: #000000; 
    /* font-weight: 800;
    font-style: normal;   */
    text-align: center;
    margin : 0px;
}

.rkit-pricelisttable-item-sub-heading{
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;  
    text-align: center;  
}


.rkit-pricelisttable-item-footer{
    justify-content: center;
    text-align: center;
    color: #9e9d9d;
    font-size: 12px;
    padding : 10px 10px 10px 10px;
}
.rkit-pricelist-item-footer-span{
    padding : 0px;
}


.rkit-pricelisttable-item-subheading {
    /* font-size: 1.5em; */
    color: #626665;
    font-size: 28px;
    font-weight: 500;
    font-style: normal; 
    letter-spacing: 0.5px;
    word-spacing: 15px;
    text-align: center;
    margin-bottom: 8px;
    padding-bottom: 20px;
}

.rkit-pricelisttable-item-price {
    /* font-size: 1.5em;
    margin-bottom: 0px; */

    /* font-family: "Verdana", Sans-serif; */
    font-size: 41px;
    letter-spacing: -1.1px;
    text-align: center;
    margin-bottom: 0px;
}


.rkit-pricelisttable-item-sale-price {
    /* font-family: "Verdana", Sans-serif; */
    font-size: 24px;
    letter-spacing: -1.1px;
    text-align: center;
    margin-bottom: -15px;
    text-decoration: line-through;
    color: #818e8e;
    
    
}
.rkit-pricelisttable-item-currency { 
    font-size: 18px;
    letter-spacing: -1.1px;
    text-align: center;
    margin-bottom: 0px; 
}

.rkit-pricelisttable-item-price-section-row {
    display: flex;
    align-items: center;
}

.price-container-row {
    display: flex;
    flex-direction: column;
}

.sale-price-container {
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: center;  
    padding-top: 0px;   
    margin-bottom: -30px;
}

.sale-price-container-inline {
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: center;
    margin : 0;
    padding : 0px;
}

.price-container {
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: center;   
}

.rkit-pricelisttable-item-currency,
.rkit-pricelisttable-item-price {
    margin: 0;   
    padding: 0 0px;  
}



.rkit-pricelisttable-item-sub-title {
    color: #777;
    margin-bottom: 15px;
}

.rkit-pricelisttable-item-sub-title-center {
    margin-left: 5px;   
    letter-spacing: -1.1px;
}

.rkit-pricelisttable-item-description {
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-grow: 1; 
    color: #000000; 
    padding: 16px 32px 16px 32px;
}

.rkit-pricelisttable-item-button .button-element-price-table {
    display: flex;
    align-self: center;
    margin-top: auto;
    background-color:  #00cea6;
    color :  #ffffff;
    max-width: none;
    padding : 16px 32px 16px 32px;
    justify-content: center;  
    gap : 10px;
    
    /* box-shadow: 0px 6px 10px 5px rgba(0, 0, 0, 0.20)  ; */
}

.rkit-pricelisttable-item-button{
    display: flex;
}
 

.currency-option{
    display: flex;
    flex-direction: row;
}

.period-option{
    display: flex;
}


.rkit-pricelisttable-item-description-icon{
    color: #56d4c4;  
}

.rkit-pricelisttable-item-button-icon{
    color: #ffff;  
}

.rkit-pricelisttable-item-title-section {
    background-color: transparent;
    display: flex;
    flex-direction: column;
    padding : 15px 32px 16px 32px;
}
.rkit-pricelisttable-item-price-section {
    display : flex;
    flex-direction: column;
    background-color: transparent;
    padding : 16px 32px 16px 32px;
    justify-content:  center;
    /* box-shadow: 0px 4px 20px 1px rgba(0, 0, 0, 0.20)   */
}

.icon-list-feature-pt { 
    display: flex;
    align-items: center; 
    align-self : center;
    justify-content: center;
    line-height : 0px !important;
    margin-top  :12px;
    margin-bottom : 12px;
}

.icon-list-button-pt{  
    display: flex;
    align-items: center; 
    align-self : center;
    justify-content: center;
    line-height : 0px !important;
}
 

.no-icon-hidden {
    list-style-type: none; 
}
 
.rkit-wrap {
    width: 100%;
    height: 188px;
    position: absolute;
    top: -8px;
    left: 0px;
    overflow: hidden;
}


.rkit-wrap .content {
    position: relative; 
    color: #fff;  
}

.rkit-wrap:before, .wrap:after {
    content: ""; 
    position: absolute;
}

.rkit-wrap:before {
    width: 40px;
    height: 8px;
    right: 100px;
    background: #4D6530;
    border-radius: 8px 8px 0px 0px;
}

.rkit-wrap:after {
    width: 8px;
    height: 40px;
    right: 0px;
    top: 100px;
    background: #4D6530;
    border-radius: 0px 8px 8px 0px;
}


.rkit-ribbon-right{
    width: 200px;
    height: 35px;
    line-height: 33px;
    position: absolute;
    top: 30px;
    right: -38px;
    z-index: 0;
    overflow: hidden;
    -webkit-transform: rotate(95deg);
    transform: rotate(42deg); 
    background: #95a5a1;
    text-align: center;
}

/* left ribbon */

.rkit-ribbon-left{
    width: 200px;
    height: 35px;
    line-height: 33px;
    position: absolute;
    top: 30px;
    left: -38px;
    z-index: 0;
    overflow: hidden; 
    transform: rotate(315deg); 
    background: #95a5a1;
    text-align: center;
}



.rkit-pricelisttable-ribbon {
    position: absolute;
    z-index: 1;
    top: 0;
    left: auto;
    right: -10px;
    transform: rotate(90deg);
    width: 150px;
    overflow: hidden;
    height: 150px;
}

.rkit-pricelisttable-ribbon.rkit-pricelisttable-ribbon__left {
    transform: rotate(0);
    left: 0;
    right: auto;
}

.rkit-pricelisttable-ribbon.rkit-pricelisttable-ribbon__right {
    transform: rotate(90deg);
    left: auto;
    right: 0;
}

.rkit-pricelisttable-ribbon__inner {
    text-align: center;
    left: 0;
    width: 200%;
    transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
    margin-top: 35px;
    font-size: 13px;
    background: #00cea6;
    color: #000;
    line-height: 2;
    font-weight: 700;
  padding : 10px;
}

/* end ribbon */
        
.rkit-item-list-desc{
    display: flex;
    flex-direction: row;
    padding : 16px 32px;
    justify-content: center;
    text-align: center;
    width: 100%;
}
 

.divider_desc:not(:last-child)
{
    display: flex;
    flex-direction: row;
    gap : 5px;
    border-bottom : 1px;
    border-bottom-style : solid;
    border-color :#726b6b;
}

.divider_desc.noline{
    border-width: 0px;
}

     
    .divider_desc:last-child{
        display: flex;
        flex-direction: row;
        gap : 5px; 
        border-bottom: 0px;  
        list-style: none; 
    }

    @media (max-width: 1200px) {
        /* .rkit-pricelisttable-item {
            flex: 1 1 calc(33.333% - 20px); 
        } */
        .rkit-pricelisttable-container {
            flex: 1 1 calc(33.333% - 20px); 
        }
    }

    @media (max-width: 768px) {
        .rkit-pricelisttable-container {
            flex: 1 1 calc(50% - 20px); 
        }
    }

    @media (max-width: 576px) {
        .rkit-pricelisttable-container {
            flex: 1 1 100%;  
        } 
   
        

    }
  
  .rkit-advanced-heading p {
    position: relative; 
  }
 
 
  .rkit-advanced-heading {
    position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    
  } 

   
  .rkit-advanced-heading p {
    margin-bottom: 0;
  }

  .combined-text { 
    border-radius: 5px; 
    gap: 10px;
    justify-content : center;
  }
  
  
  .rkit-trp-text{ 
    font-weight: bold;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; 
    display: flex;
    flex-wrap: wrap;
}
  
.rkit-trp-text .headline_text{ 
  -webkit-background-clip: text;
  background-clip: text;
  background-color: #00cea6;  
  z-index: 1;
}

.std-text{ 
  background-color:  black; 
}


.bg-headline{
  background-color: transparent;  
  display: inline-flex;
}

.bg-std{
  background-color: transparent;  
  display: inline-flex;
}
 

/* Style untuk semua heading */
 

@media only screen and (max-width: 1024px) {
  .combined-text {
      gap: 20px;  
  }
}

 
@media only screen and (max-width: 768px) {
  .combined-text { 
    font-size: 2rem;  
  }

}

 
@media only screen and (max-width: 480px) {
  /* .combined-text { 
    font-size: 1rem;  
  }

  .before_text{
    font-size: 1rem; 
  }

  .center_text{
    font-size: 1rem; 
  }

  .after_text{
    font-size: 1rem; 
  } */

  .headline_text{
    /* font-size: 1rem; */
     display: inline-flex;
  }

  .wrap_text{
    font-size: 1rem; 
  }
}   .con-wrap{ 
	margin: auto; 
  display: flex;   
  flex-wrap: wrap;
  flex-direction: row;  
  justify-content: center; 
  align-items: center;  
  overflow: hidden;
}

.img-comp-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;  
}

.img-comp-img {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden; 
}

.img-comp-container img{
  object-fit: cover;
  max-width: none !important;  
}
  
.img-comp-img img {
  display: block;  
}

.img-comp-slider {
  position: absolute;
  z-index: 9;
  cursor: ew-resize;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;  
  border: none;  
  box-shadow: 0 0 0 2px #ffffff;
}

 /* ini testing */
 .img-comp-slider::before,
  .img-comp-slider::after {
     content: '';
     position: absolute;
     width: 1500px;
     height: 2px; 
     background-color: white; 
     left: 0;
     z-index: 1;
    transform: rotate(90deg)
 }
 
 .img-comp-slider::before {
  top: -752px;
  left : -730px
}

.img-comp-slider::after {
  bottom: -752px; 
   left : -730px;
}



/* vertical */
.img-comp-slider.vertical::before,
.img-comp-slider.vertical::after {
  content: '';
  position: absolute;
  width: 1800px;  
  height: 2px; 
  background-color: white;  
  top: 50%; 
  transform: translateY(-50%);  
  z-index: 1;
}

.img-comp-slider.vertical::before {
  left: -1800px;  
}

.img-comp-slider.vertical::after {
  left: 40px;  
}





 /* ini tessting */
.img-comp-slider i {
  font-size: 14px;
  color: #ffffff;
  padding: 2px; 

}

.img-comp-slider.vertical {
  position: absolute;
  z-index: 9;
  cursor: ns-resize;
  width: 40px; 
  height: 40px; 
  background-color: transparent; 
  display: flex;
  flex-direction: column;  
  align-items: center;
  justify-content: space-between;  
  transform: translatex(-50%, -50%);
    box-shadow: 0 0 0 2px #ffffff;
}

.img-comp-slider.vertical i {
  font-size: 14px;
  color: #ffffff;
  padding: 2px; 

}


  /* caption css style */
  /* caption left */
  .caption-bottom-left {
    position: absolute;
    bottom: 8px;
    left: 16px;
  }
  
  .caption-top-left {
    position: absolute;
    top: 8px;
    left: 16px;
  }

  .caption-center-left { 
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    /* Tambahan opsional untuk styling */
    text-align: right;
    white-space: nowrap;
  }
/* caption left */

/* caption right */
  .caption-top-right {
    position: absolute;
    top: 8px;
    right: 16px;
  }
  
  .caption-bottom-right {
    position: absolute;
    bottom: 8px;
    right: 16px;
  }


  .caption-center-right {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    /* Tambahan opsional untuk styling */
    text-align: right;
    white-space: nowrap;
  }
  /* caption right */
  

  /* filter image */
  .filter-blur img {
    filter: blur(5px);
}

.filter-greyscale img {
    filter: grayscale(100%);
}

.filter-contrast img {
    filter: contrast(150%);
}

.filter-brightness img {
    filter: brightness(120%);
}


  .popular-posts{
  padding: 0px 0px 0px 0px;
}

.rkit-item-postlist {
    display: flex;
    /* align-items: flex-start; */ 
    align-items: stretch;
    gap: 10px;
    padding: 10px 10px 10px 10px;
}

  .rkit-item-thumbnail {
    flex: 0 0 auto;  
    display: flex;
    height: 100%;
    /* align-items: center;  
    justify-content: center;   */
}

.rkit-item-thumbnail img { 
    max-height: 100%;  
    width: 125px;  
}
  .rkit-item-content {
    flex-grow: 1; /* Konten memenuhi sisa ruang */
  }

  .rkit-content-reverse{
    justify-items : end;
  }

  .rkit-content-normal{
    justify-items : start;
  }


  .rkit-title-postlist {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .rkit-metadata-postlist-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .rkit-metadata-item-postlist {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .content_descripson {
    /* display: flex; */
    color: #666;
  }
  
  li {
    list-style-type: none;
    margin-bottom: 2px;
  } 

  
a.rkit-readmore-postlist-btn {
  background-color: #b0e7e0;
  border-radius: 5px;
  text-align: center;
  padding: 12px 20px 12px 20px;
  font-size: 15px;
  color: white;
  transition: all 0.5s;
  border: none;
  /* display: flex; */
  align-items: left;
  gap: 0.5rem;
  display: inline-flex;  
  align-items: center;   
  justify-content: center;  
  text-decoration: none;  
  padding: 10px 20px;
}

a.rkit-readmore-postlist-btn:hover {
  background-color: #33e4c0;
  color: black;
} 

.rkit-readmore-postlist-div {
  display: flex;
}

.rkit-icon-readmore {
  font-size: 16px;  
  margin-right: 8px;  
  display: inline-block;
}

.div_test{
  border-bottom : 1px;
  border-bottom-style : solid;
  border-color :#726b6b;
}

.divider_line:first-child{
  padding-block-start: 10px !important;
}


.divider_line:not(:last-child){
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: #C5B9B9;
}

.divider_line:last-child{
  border-bottom: 0px;  
  list-style: none; 
}

.category_post{
  display: flex;
}


  /* Default styles (untuk layar desktop dan tablet) sudah diatur seperti sebelumnya */

@media (max-width: 926px) { 
    .rkit-item-postlist {
      flex-direction: column;  
      align-items: center; 
      text-align: center;  
    }
  
    .rkit-item-thumbnail {
      margin-bottom: 15px;  
    }
  
    .rkit-item-thumbnail img {
      max-width: 100%;  
      height: auto;
    }
  
    .rkit-item-content {
      flex-grow: 0;  
      width: 100%;  
    }
  
    .rkit-metadata-postlist-row {
      justify-content: center; 
      flex-wrap: wrap;  
      gap: 15px; 
    }
  
    .rkit-metadata-item-postlist {
      justify-content: center;  
    }
  
    .rkit-title-postlist {
      font-size: 16px;
    }
  
    .content_descripson {
      /* display: flex; */
      font-size: 14px; 
    }
  
    li {
      margin-bottom: 2px;
    }
  }
  
.rkit-pricebox-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    position: relative; 
    padding: 0px 0px 0px 0px ;
    
    /* ox-shadowb: 0px 6px 10px 5px rgba(0, 0, 0, 0.20)  ; */
}

.rkit-pricebox-item {
    /* flex: 1 1 calc(100% - 20px); 3 items per row with 20px gap */
    flex: 1 1 auto;
    /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
    border-radius: 0px;
    overflow: hidden;
    background: #fff;
    display: flex;
    flex-direction: column;
    position: relative; /* Ensure positioning for ribbon */
}

.rkit-pricebox-item-inner {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
    height: 100%;
    overflow: hidden; 
}

.rkit-pricebox-item-inner-price {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.image_pricing_box{
    max-height: 100%;
    height: auto;
    width: 100%; 
    display: flex;
    flex-direction: row;
    justify-content: center;
    object-fit: contain; 
    padding: 16px 32px 16px 32px;

}

.image_load_box img{ 
    width: 70%;
    display: flex; 
    justify-content: center;
    object-fit: contain;
}


.rkit-pricebox-item-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rkit-pricebox-item-title {
    /* font-size: 1.5em; */
    color: #000000;
    font-size: 24px;
    font-weight: 800;
    font-style: normal;  
    text-align: left;
    margin : 0px;
}

.rkit-pricebox-item-sub-heading{
    color: #383838;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;  
    text-align: left;  
}


.rkit-pricebox-item-footer{
    color: #9e9d9d;
    font-size: 12px;
    padding : 16px 32px 16px 32px;
}

.rkit-pricebox-item-subheading {
    /* font-size: 1.5em; */
    color: #626665;
    font-size: 24px;
    font-weight: 500;
    font-style: normal; 
    letter-spacing: 0.5px;
    word-spacing: 15px;
    text-align: center;
    margin-bottom: 8px;
    padding-bottom: 20px;
}

.rkit-pricebox-item-price {
    /* font-size: 1.5em;
    margin-bottom: 0px; */

    font-family: "Verdana", Sans-serif;
    font-size: 24px;
    letter-spacing: -1.1px;
    text-align: center;
    margin-bottom: 0px;
}


.rkit-pricebox-item-sale-price-pricebox {
    font-family: "Verdana", Sans-serif;
    font-size: 14px;
    letter-spacing: -1.1px;
    text-align: center;
    margin-bottom: 0px;
    text-decoration: line-through;
    color: #818e8e;
    
    
}
.rkit-pricebox-item-currency {
    font-family: "Verdana", Sans-serif;
    font-size: 14px;
    letter-spacing: -1.1px;
    text-align: center;
    margin-bottom: 0px;
}

.rkit-pricebox-item-price-section-row {
    display: flex;
    align-items: center;
}

.price-container-row {
    display: flex;
    flex-direction: column;
}

.sale-price-pricebox-container {
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: center;  
    padding-top: 0px;   
    margin-bottom: -30px;
}

.sale-price-pricebox-container-inline {
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: center;
    margin : 0;
    padding : 0px;
}

.price-container {
    display: flex;
    flex-direction: row;
    /* align-items: flex-start;  */
    justify-content: center;   

}

.rkit-pricebox-item-currency,
.rkit-pricebox-item-price {
    margin: 0;  
    padding: 0 0px;  
}



.rkit-pricebox-item-sub-title {
    color: #777;
    margin-bottom: 15px;
}
.rkit-pricebox-item-sub-title-center {
    display: flex;
    flex-direction: row;
    align-items: center; 
    justify-content: center;
    margin : 0px;
    padding : 0px;
}

.rkit-pricebox-item-description {
    display: flex;
    flex-direction: column; 
    color: #000000;
    font-family: "Amiko", Sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 27px;
    letter-spacing: -0.1px;
    word-spacing: 2px;
    gap : 18px;
    padding: 16px 32px 16px 32px;
}

.rkit-pricebox-item-button .new-rkit-elementor-button {
    display: inline-flex; /* Gunakan flexbox untuk centering */
    align-items: center;  /* Vertical alignment */
    justify-content: center; /* Horizontal alignment */
    text-decoration: none; /* Hilangkan underline */
    padding: 10px 20px;
    align-self: flex-start;
    margin-top: auto;
    background-color:  #000000;
    color: white;
    max-width: none;
    padding : 16px 32px 16px 32px;
    /* box-shadow: 0px 6px 10px 5px rgba(0, 0, 0, 0.20)  ; */
}

.rkit-pricebox-item-button.button-full-size .new-rkit-elementor-button{ 
    width: 100%; 
}

.currency-option{
    display: flex;
    flex-direction: row;
}


/* .rkit-pricebox-item-button-full .new-rkit-elementor-button {
    align-self: flex-start; 
    background-color:  #00cea6;
    max-width: none;
    padding : 16px 32px 16px 32px;
    width: 100%;
    
    box-shadow: 0px 6px 10px 5px rgba(0, 0, 0, 0.20)  ;
    /* color :#00cea6;  */
/* }  */

.rkit-pricebox-item-description-icon{
    color: #56d4c4;  
}

.rkit-pricebox-item-button-icon{
    color: #56d4c4;  
}

.rkit-pricebox-item-title-section {
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    padding : 16px 32px 16px 32px;
}
.rkit-pricebox-item-price-section {
    display: flex;
    flex-direction: column; 
    padding : 16px 32px 16px 32px;
    /* box-shadow: 0px 4px 20px 1px rgba(0, 0, 0, 0.20)   */
}

 

.no-icon-hidden {
    list-style-type: none; 
}
 
.rkit-wrap {
    width: 100%;
    height: 188px;
    position: absolute;
    top: -8px;
    left: 0px;
    overflow: hidden;
}

.rkit-pricebox-ribbon {
    position: absolute;
    z-index: 1;
    top: 0;
    left: auto;
    right: -10px;
    transform: rotate(90deg);
    width: 150px;
    overflow: hidden;
    height: 150px;
}

.rkit-pricebox-ribbon.rkit-pricebox-ribbon__left {
    transform: rotate(0);
    left: 0;
    right: auto;
}

.rkit-pricebox-ribbon.rkit-pricebox-ribbon__right {
    transform: rotate(90deg);
    left: auto;
    right: 0;
}

.rkit-pricebox-ribbon__inner {
    text-align: center;
    left: 0;
    width: 200%;
    transform: translateY(-50%) translateX(-50%) translateX(35px) rotate(-45deg);
    margin-top: 35px;
    font-size: 13px;
    background: #000000;
    color: #ffffff;
    line-height: 2;
    font-weight: 700;
    padding : 10px;
    /* box-shadow: 0px 4px 20px 1px rgba(0, 0, 0, 0.20)   */
}

/* end ribbon */





.divider_desc:not(:last-child)
{
    display: flex;
    flex-direction: row;
    gap : 5px;
    border-bottom : 1px;
    border-bottom-style : solid;
    border-color :#726b6b;
}

.divider_desc.noline{
    border-bottom: 0px;
}

     
    .divider_desc:last-child{
        display: flex;
        flex-direction: row;
        gap : 5px;
        
        border-bottom: 0px;  
        list-style: none; 
    }
        

    @media (max-width: 1200px) {
        .rkit-pricebox-item {
            flex: 1 1 calc(33.333% - 20px); 
        }
    }

    @media (max-width: 768px) {
        .rkit-pricebox-item {
            flex: 1 1 calc(50% - 20px); 
        }
    }

    @media (max-width: 576px) {
        .rkit-pricebox-item {
            flex: 1 1 100%;  
        } 
   
        

    }
.rkit-image_box-card {
    display: flex;
    flex-direction: column;
    background-color: transparent;
    transition: all 0.3s;
    overflow: hidden;
    /* padding: 16px 32px 16px 32px; */
}

.rkit-image_box-card.rkit-direction {
    flex-direction: column;
}


.rkit-icon-top {
    font-size: 45px;
    width: 45px;
    height: 45px;
}

.rkit-icon-readmore {
    font-size: 25px;
    width: 25px;
    height: 25px;
}

.rkit-container-top {
    display: flex;
    flex-direction: row;
    padding: 0px;
}

.rkit-container-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.left {
    width: 45%;
    text-align: left;
}

.right {
    position: relative;
    text-align: right;
    /* width: 45%;     */
}



.rkit-image_box_det {
    width: 100%;
    display: flex;
    justify-content: center;
}


.rkit-image_box__detail {
    height: 100%;
    width: 100%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    overflow: hidden;
}

.image-box-item-desc {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.rkit-image_box__detail h4 {
    margin-bottom: 0;
}

.rkit-image_box__img {
    display: flex;
    justify-content: center;
    object-fit: contain;
    padding: 0px 0px 0px 0px;
     transition: transform 0.5s ease-in-out;
        position: relative; 
}

.rkit-image_box__img {
    overflow: hidden;
}

.rkit-image_box__img img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    overflow: hidden;
}

.rkit-image_box__description {
    width: 100%;
    margin-bottom: 0.5rem;
    /* padding : 16px 32px 16px 32px; */
    text-align: center;
}

.rkit-image_box__title {
    width: 100%;
    font-weight: 500;
    margin-bottom: 0.5rem;
    /* padding : 16px 32px 16px 32px; */
    text-align: center;
}



/* css style float card */
.rkit-image_box_det {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.float-card {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.float-detail {
    position: relative;
    background-color: #ffffff;
    width: 90%;
    padding: 1rem;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1px;
    border-radius: 0px;
    margin-top: -75px;
    /* box-shadow: 0px 4px 24px rgba(8, 8, 8, 0.479); */
    /* border-style: solid;
      border-color:#33e4c16b; */
}

.float-detail {
    position: relative;
    overflow: hidden;
    max-height: 300px;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.float-card-desc-ext {
    opacity: 0;
    max-height: 0;
    transition: opacity 0.5s ease, max-height 0.5s ease;
}

/* Menampilkan deskripsi dan tombol saat hover */
.rkit-image_box-card:hover .float-card-desc-ext {
    opacity: 1;
    max-height: 200px;
}

.float-card:hover {
    max-height: 300px;
}





/* css style overlay */
/* .rkit-image_box__overlay .rkit-image_box_det {
    visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all;
    color: white;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding : 16px 32px 16px 32px; 
    z-index: 2;
}
 
.rkit-image_box__overlay:hover .rkit-image_box_det .bg_overlay{
    visibility: visible;
    animation: overlay_animation_in 0.3s ease-in;
}

.rkit-image_box__overlay:not(:hover) .rkit-image_box_det .bg_overlay{
    transform: scaleY(0);    
    opacity: 0;
    animation: overlay_animation_out 0.3s ease-out;
} */
.rkit-image_box__overlay {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.rkit-image_box__overlay .rkit-image_box_det {
    visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    color: white;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px 32px;
    opacity: 0;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 2;
}

/* .bg_overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #00CEA6;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1;
} */



.rkit-image_box__img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000000;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1;
}


.rkit-image_box__overlay:hover .rkit-image_box__img{
    /* transform: scale(1.2);    */
     
  }

.rkit-image_box__overlay:hover .rkit-image_box_det {
    visibility: visible;
    animation: hs-animation-overlay 1s ease forwards;
    opacity: 1;
}

@keyframes hs-animation-overlay {
    0% {
        transform: translateY(-300px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.rkit-image_box__overlay:hover .rkit-image_box__img::after  {
    visibility: visible;
    transform: scaleY(1);
    opacity: 0.2;
}

.rkit-image_box__overlay:not(:hover) .rkit-image_box__img::after  {
    transform: scaleY(0);
    opacity: 0;
    visibility: hidden;
}




/* overlay fade in */

.rkit-image_box_detaa {
    max-width: 100%;
    height: 100%;
    padding: 0px;
    background: rgba(0, 0, 0, 0.75);
    border-radius: 0px;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);  */
    text-align: center;
    overflow: hidden;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

.fade_in .rkit-image_box_detaa {
    transform: none;
}

.fade_in:hover .rkit-image_box_detaa {
    opacity: 1;
    transition: opacity 0.3s ease;
    transform: translateX(0);
}


/* new default css */

.rkit-image_box_det {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.def-card {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.def-detail {
    position: relative;
    background-color: #ffffff;
    width: 90%;
    padding: 1rem;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 1px;
    border-radius: 0px;
    margin-top: -75px;
}

.def-detail {
    position: relative;
    overflow: hidden;
    max-height: 100%;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}

.def-card-desc-ext {
    opacity: 0;
    max-height: 0;
    transition: opacity 0.5s ease, max-height 0.5s ease;
}

/* Menampilkan deskripsi dan tombol saat hover */
.rkit-image_box-card .def-card-desc-ext {
    opacity: 1;
    max-height: 200px;
}





/* centered image css */
.rkit-image_box__centered .rkit-image_box-card {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.rkit-image_box__centered .rkit-image_box__img {
    border-radius: 0%;
    overflow: hidden;
    width: 50%;
    min-width: 180px;

}

.rkit-image_box__centered .rkit-image_box__img img {
    aspect-ratio: 1/1;
}

.rkit-image_box__centered .rkit-image_box__detail {
    text-align: center;
    justify-content: center;
    align-items: center;
}





a.rkit-readmore-imagebox-btn {
    display: inline-flex;
    align-items: center;
    /* Posisikan ikon dan teks vertikal sejajar */
    justify-content: center;
    background-color: #00CEA6;
    border-radius: 0px;
    padding: 12px 20px 12px 20px;
    font-size: 15px;
    color: white;
    transition: all 0.5s;
    border: none;
    gap: 0.5rem;
}

a.rkit-readmore-imagebox-btn:hover {
    background-color: #33e4c0;
    color: black;
}


.rkit-readmore-imagebox-div {
    display: flex;
    justify-content: center;
}

/*  */


a.rkit-button-top {
    background-color: #00CEA6;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 15px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    border: 0px;
}


a.rkit-button-top:hover {
    background-color: #33e4c0;
    color: black;
}





@keyframes overlay_animation_in {
    from {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: center;
    }

    to {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: center;
    }
}

@keyframes overlay_animation_out {
    from {
        opacity: 1;
        transform: scaleY(1);
        transform-origin: center;
    }

    to {
        opacity: 0;
        transform: scaleY(0);
        transform-origin: center;
    }
}

.fade-in {
    animation: overlay_animation_in 0.5s ease-in-out forwards;
    /* Animasi fade in */
}

.fade-out {
    animation: overlay_animation_out 0.5s ease-in-out forwards;
    /* Animasi fade out */
}.container-image-accordion{
  display : flex;
  width : auto;
  overflow : hidden;
  position : relative;
}

.gallery-wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.item-ia {
  flex: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  transition: flex 0.8s ease;
  overflow: hidden;
  &:hover{
    flex: 5;
  }
}

.item-text{ 
  opacity: 0;
  display: flex;
  overflow: hidden;
}


.text-title-ia {
  display: flex;
  justify-content: center;
  opacity: 0;
  z-index: 999;
  transform: translateY(20px);
  transition: all 1s ease;
}

.hs-animation-text-title-ia {
  animation: hs-animation-text-title-ia 1s ease forwards;
}

@keyframes hs-animation-text-title-ia {
  0% {
    transform: translateY(-500px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Sama untuk .text-description jika ingin efek serupa */
.text-description {
  display: flex;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}
.hs-animation-text {
  animation: hs-animation-text 1s ease forwards;
}
@keyframes hs-animation-text {
  0% {
    transform: translateY(500px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.item-ia-hover.active .text-title-ia  {
    transform: translateY(0);
    opacity: 1;
}

.item-ia-hover.active .text-description {
    transform: translateY(0);
    opacity: 1;
}

.item-ia-click.active .text-title-ia  {
  transform: translateY(0);
  opacity: 1;
}

.item-ia-click.active .text-description {
  transform: translateY(0);
  opacity: 1;
}


/* button */

.icon-button{
  color : red;
}

.icon-button i:hover{
  color : rgb(255, 255, 255);
}

.rkit-image-accordion-item-button{
  display : flex;
  justify-content : center;
  z-index: 999;
}

.button-element-image-accordion {
  position: relative;
  z-index: 1;
  display: flex;
  align-self: center;
  align-items: center; 
  width : auto;
  background-color:  #000000;
  color :  #ffffff;
  max-width: none;
  padding : 16px 32px 16px 32px;
  justify-content: center;  
    opacity: 0; 
   transform: translateY(20px);
  transition: all 1s ease;
  overflow: hidden;
   animation: hs-animation-button 1s ease forwards;

  /* box-shadow: 0px 6px 10px 5px rgba(0, 0, 0, 0.20)  ; */
}
 

.rkit-image-accordion-item-button-icon{
  color: #56d4c4;  
}

 .hs-animation-button {
  animation: hs-animation-button 1s ease forwards;
}

 
 

@keyframes hs-animation-button {
  0% {
    transform: translateY(500px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


/* hover mode */
.item-ia-hover {
  flex: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  transition: flex 1s ease;
  overflow : hidden;
  position: relative;
} 

.item-ia-hover.active{
  flex : 3;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.item-ia-hover.active .item-text {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;   
  opacity: 0;  
  padding: 0px;
  overflow: hidden;
  transition-delay : 2s;
  animation: fadeIn 2s ease-in-out forwards;  
}

.background-item-text{
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  overflow: hidden;
  background-color: #9A9191;
  opacity: 20%;
}

/* .item-ia-hover.active .item-text{
  height: 100%;
  width: 100%;
  display: flex;  
  flex-direction: column;
  justify-content: center;
  opacity: 1;  
  padding: 0px;   
  overflow: hidden;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;  
} */



/* klik mode */
.item-ia-click {
  flex: 1;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: none;
  transition: flex 1s ease;
  overflow : hidden;
} 

.item-ia-click.active{
  flex : 3;
}

@keyframes fadeInClick {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.item-ia-click.active .item-text {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;  
  padding: 0px;
  overflow: hidden;
  transition-delay : 1s;
  animation: fadeIn 1s ease-in-out forwards;  
}

/* .item-ia-click.active .item-text{
  height: 100%;
  width: 100%;
  display: flex;  
  flex-direction: column;
  justify-content: center;
  opacity: 1;  
  padding: 0px;     
  overflow: hidden;
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;  
} */


 

 
@media only screen and (max-width: 480px) {

  .gallery-wrap { 
    flex-direction: column !important; 
  }

}
 .dual-button-outer-wrapper {
	display: flex; 
	justify-content: center;  
	
  }
  .dual-button-inner-wrapper {
	display:flex;
	flex-direction : row;
	position: relative;
	height:  auto; 
	background-color: transparent;
	vertical-align: middle;
	align-items: center;
	align-self: center;
	overflow: hidden;
	}

	.dual-button-inner-wrapper .column{
		gap : 1px;
	}
  
  .dual-button{
	display:flex;
	width: 180px;
	height:  auto;
	float: left;
	box-sizing: border-box; 
	    
  }
  .dual-left {
   	background-color: #333;   
	border-radius:   0px;
  }
  
  .dual-right {
   	background-color: #00cea6;  
	border-radius: 0px;
  }
  
  .dual-text{
	font-size: 18px;
	display: flex;
	font-family: arial;
	font-weight: bold;
  	text-align : center;
	justify-content : center;
  	color: white; 
	width: 100%;
	position: relative;
	z-index: 0;
	
  }

  .left_button{
	display: flex;
	gap : 5px;
	align-self:center;
	padding: 12px 30px 12px 30px;
  }

 
  .right_button{
	display: flex;
	gap : 5px;
	align-self:center;
	padding: 12px 30px 12px 30px;
  }
 
  .dual-button:hover { 
	background-color: #4a4a4a;
  }
  
  .dual-text:hover {
	color: #ffffff;
	
  }
  
  .dual-right:hover {
	background-color: #5eebcf;
  }
 
 
 

  .middle-button{
	display: flex;
	justify-content : center;
	align-items : center;
	align-self: center;
	text-align : center; 
	z-index: 9999;
}

.middle{
	display : flex;
	justify-content : center;
	align-items : center;
	align-self: center;
	text-align : center; 
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background-color: white;
	position: absolute;
	font-size: 15px;
    line-height: 1px;
}

.rkit-icon-left-button{
	display: inline-flex;
	position: relative; 
	align-self: center;  
}

.rkit-icon-right-button{
	display: inline-flex;
	position: relative; 
	align-self: center;  
}

.rkit-icon-middle-button{
	display: inline-flex;
	position: relative; 
	align-self: center;  
}.rkit-gallery-masonry-container {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.rkit-gallery-masonry {

  column-count: 3;
  column-gap: 5px;

  @media (min-width: 768px) {
    column-count: 3;
  }

  @media (min-width: 992px) {
    column-count: 4;
  }

  @media (min-width: 1199px) {
    column-count: 5;
  }

}

.rkit-gallery-masonry.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  background-color: transparent;
  justify-content: center;
}




.brick {
  box-sizing: border-box;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
  counter-increment: brick-counter;
  overflow: hidden;
  position: relative;
}



/* Placeholder Skeleton */
/* Gambar Lazy Load */
.gallery_image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-duration: 900ms;
  transition: transform 0.8s ease;
  left: 0;
}

/* Skeleton Placeholder */
.skeleton {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  opacity: 1;
  position: relative;
}


/* Keyframe Animasi Placeholder */
@keyframes loading {
  from {
    background-position: 200% 0;
  }

  to {
    background-position: -200% 0;
  }
}


/* .gallery_image  {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
 transition-duration: 900ms; 
  transition: transform 0.8s ease;  
} */

.gallery_image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition-duration: 900ms;
  transition: transform 0.6s ease;
}

.zoom:hover img {
  transform: scale(1.1);
  transition-duration: 900ms;
}



.overlay:hover {
  background-color: rgba(0, 0, 0, 0.5);
  /* semi-transparent black */
  opacity: 0.6;
  transition: opacity 0.6s ease;
}.rkit-swiper-hs {
  position: relative;
  overflow: hidden;
}

.rkit-homeslider {
  background-color: transparent;
  overflow: hidden; 
}

.container-image-hsl{
  overflow: hidden;
  background-color: transparent; 
}

.rkit-hs-client {
  width: 100%;
  height: 90vh; 
 overflow: hidden;
}

.rkit-homeslider-slider {
  padding: 0px 0px 0px 0px;
}

.rkit-homeslider-pagination {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  padding: 1rem;
  justify-content: center;
  align-items: center;
}

/* Image container (ensure the image is contained properly) */
.image-container-hsl {
  position: relative;
  width: 100%;
  height: 100%;   
  overflow: hidden;
}
.image-cover-hsl{
  height : 100% !important;
}

.image-container-hsl img {
  transform: scale(1.1);
  opacity: 1;
  transition: transform 0.5s, opacity 0.5s;
  width: 100%;
  height: 100%;
  object-fit: cover;  
  overflow: hidden;
}
 
.swiper-slide-active > .image-container-hsl {
  transform: scale(1);
  opacity: 1;
}

.image-container-hsl.animate-zoom-out {
  animation: zoomOut  5s ease-out forwards;
}

@keyframes zoomOut {
  0% { 
    transform: scale(1.1);  
  }
  100% { 
    transform: scale(1);  
  }
}





/* Content overlay */
.hs-content {
  display: flex;  
  text-wrap: wrap;
  flex-direction: column;  
  justify-content: center;
  align-items: center; 
  gap: 20px;   
  width: 100%;  
  height: 100%;   
  max-width: 100%;
  position: absolute;   
  top: 0;
  left: 0;
  padding: 10%;  
  background-color: transparent;
  z-index: 0;  
}
 
.hs-content-background{
  display: flex;  
  flex-direction: column;  
  justify-content: center;
  align-items: center; 
  gap: 20px;   
  width: 100%;  
  height: 100%;   
  max-width: 100%;
  position: absolute;   
  top: 0;
  left: 0;
  padding: 10%; 
  background-color: #000000; 
  z-index: 0;  
}

.icon-subtitle-hs{
  display: flex;
  align-self: center;
  z-index: 3;  
}

.hs-subtitle-section{
  display : inline-flex;
  flex-direction: row; 
  color: #ffffff; 
  gap : 10px;
  width: fit-content;
  z-index: 3;  
}
.hs-sub-title{
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;  
  z-index: 3;  
  /* text-align: center; */
  align-self: center;
  width: 100%;
  display: block; 
  text-wrap: auto; 
  max-width: fit-content;
}

.hs-title {
  font-size: 40px;
  font-weight: bold;
  color: #ffffff;  
  z-index: 3;    
  /* text-align: center; */
  display: block; 
  text-wrap: auto; 
}

.hs-description {
  font-size: 20px;
  color: #ffffff;   
  z-index: 3;  
  display: block;
  text-wrap: auto;  
}

/* .hs-mw{
  max-width: 50%;
} */

/* text animate */
.hs-animation-1-subtitle span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUpSubtitle 0.5s ease forwards;
}
.hs-animation-1-title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUpTitle 0.5s ease forwards;
}

.hs-animation-1-desc span {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUpDesc 0.5s ease forwards;
}

@keyframes fadeInUpSubtitle {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUpTitle {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUpDesc {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hs-animation-2-subtitle {
  display: inline-block;
  overflow: hidden;       
  animation: typewritersubtitle 4s steps(30) 1s forwards, blink 0.7s ;
  white-space: nowrap;
}

.hs-animation-2-title {
  display: inline-block;
  overflow: hidden;      
  animation: typewritertitle 4s steps(30) 1s forwards, blinks 0.7s ;
  white-space: wrap;
}

.hs-animation-2-desc {
  display: inline-block; 
  overflow: hidden;      
  animation: typewriterdesc 4s steps(30) 1s forwards, blinkz 0.7s ;
  white-space: wrap;
}
@keyframes typewritersubtitle {
  0% {
    width: 30%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  } 
  100% {
    width: 50%;
    opacity: 1;
  }
}

@keyframes typewritertitle {
  0% {
    width: 30%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    width: 50%;
    opacity: 1;
  }
}

@keyframes typewriterdesc {
  0% {
    width: 30%;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    width: 50%;
    opacity: 1;
  }
}

 
@keyframes blink {
  from {
    border-color: transparent;
  }
  to {
    border-color: #ffffff;
  }
}

@keyframes blinks {
  from {
    border-color: transparent;
  }
  to {
    border-color: #ffffff;
  }
}
@keyframes blinkz {
  from {
    border-color: transparent;
  }
  to {
    border-color: #ffffff;
  }
}

/* Navigation buttons */
.swiper-nav-cont{
  display: flex;
  gap : 15px;
  position: absolute; 
  cursor: pointer;
  padding: 10px;
  top: 2%;
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.swiper-bullet-cont{
  display: flex;
  gap : 15px;
  position: absolute;
  z-index: 5;
  cursor: pointer;
  left: 48%;
  top: 95%;
}


.rkit-swiper-hs-button-next,
.rkit-swiper-hs-button-prev { 
  position : relative;
  z-index: 1;
  width: 45px;
  height: 45px;
  background-color: transparent;
  transform: translateY(-50%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  border-radius: 0%;
  border-style : solid;
  border-width : 1px;
  border-color : #fff;
  --swiper-navigation-size: 44px;
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
}

/* 
.rkit-swiper-hs-button-next:hover{  
  width: 75px;
  height: 45px;
  background-color: #ff0000;
  transform: translateY(-50%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  border-radius: 0% 50% 50% 0%; 
  }
  
  .rkit-swiper-hs-button-prev:hover{  
  width: 75px;
  height: 45px;
  background-color: #ff0000;
  transform: translateY(-50%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  border-radius: 50% 0% 0% 50%; 
  } */

/* Dots and overlay style */
.rkit-homeslider-bullet {
  width: 8px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #aaaaaa;
  transition: all 0.5s ease;
}

.rkit-homeslider-bullet-active {
  background-color: #161616;
}

.rkit-homeslider-bullet-clickable .rkit-homeslider-bullet {
  cursor: pointer;
}

.card-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.card-body::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.card-title {
  margin: 0;
}

.card-title a {
  text-decoration: none;
  color: #161616;
}

.card-heading {
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
}

.rkit-swiper-hs-button-prev.swiper-button-disabled,
.rkit-swiper-hs-button-next.swiper-button-disabled {
  opacity: .35;
  cursor: auto;
  pointer-events: none;
}

/* .rkit-homeslider .card-button a {
  background-color: #33e4c0;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  color: white;
  transition: all 0.5s;
  border-radius: 0px;
} */

/* .rkit-homeslider .card-button {
  display: flex;
  justify-content: start;
}

.rkit-homeslider .card-button a .button-icon {
  transition: color 0.5s;
}

.rkit-homeslider.overlay {
  position: relative;
}

.rkit-homeslider.overlay .card-body {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: all 0.5s;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.rkit-homeslider.overlay .card-button {
  justify-content: center;
}

.rkit-homeslider.overlay:hover .card-body {
  opacity: 1;
  transform: scaleY(1);
}

.rkit-homeslider-slider .swiper-slide {
  overflow: unset;
}

.card-button.fullwidth a {
  width: 100%;
}
 */



/* button */

.text-button{
  display : flex;
  align-items : center;
}

.icon-list-button-hs{ 
  color : red;
  align-self: center;
}

.icon-subtitle-hs{ 
  color : #ffffff;
  align-self: center;
}

.icon-list-button-hs i:hover{
  color : rgb(255, 255, 255);
}

.rkit-homeslider-item-button .button-element-homeslider {
  display: flex;
  align-self: center;
  margin-top: auto;
  background-color:  #333333;
  color :  #ffffff;
  max-width: none;
  padding : 16px 32px 16px 32px;
  justify-content: center;  
  position: relative;
  
  /* box-shadow: 0px 6px 10px 5px rgba(0, 0, 0, 0.20)  ; */
}

.rkit-homeslider-item-button.button-full-size .button-element-homeslider { 
  display: flex;
  justify-content: center;  
  width :100%
}

.rkit-homeslider-item-button-icon{
  color: #56d4c4;  
}/* Minimalist design option css */
.rkit-product-grid-wpg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  background-color: transparent;
  justify-content: center;
}

@media only screen and (max-width: 1024px) {
  .rkit-product-grid-wpg {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .rkit-product-grid-wpg-pro {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media only screen and (max-width: 767px) {
  .rkit-product-grid-wpg {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .rkit-product-grid-wpg-pro {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

.rkit-icon-readmore-wpg {
  align-content: center;
}

.rkit-product-card-wpg {
  background-color: #ffffff;
  /* border: 1px solid #e0e0e0; */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 10px;
  position: relative;
  height: min-content;
  width: -webkit-fill-available;
}

.rkit-addcart-wrap-button-wpg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
}

.rkit-product-card-wpg:hover {
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.rkit-product-image-wpg {
  position: relative;
  overflow: hidden;
}

.rkit-product-image-wpg img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.3s ease;
  display: block;
}

.rkit-product-image-wpg:hover img {
  transform: scale(1.1);
  filter: brightness(40%);
}
/* 
.rkit-product-image-wpg:hover::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #575555;
  opacity: 0.3;
  transition: width 0.6s ease;
  z-index: 0;
} */

.rkit-product-details-wpg {
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  align-self: flex-start;
}

.rkit-product-info-wpg {
  display: flex;
  flex-direction: column;
  flex: 1 0 50%;
  width: 100%;
}

.rkit-product-title-wpg {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin: 0;
  text-wrap: wrap;
  text-wrap-style: stable;
}

.rkit-product-category-wpg {
  font-size: 14px;
  color: #888888;
  margin-top: 4px;
}

.rkit-product-price-wpg {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
}

.rkit-product-feat-wpg {
  display: flex;
  flex-direction: column;
  justify-content: right;
  /* text-align: end; */
  align-self: self-start;
}

.rkit-addcart-wrap-button-wpg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.rkit-product-image-wpg:hover .rkit-addcart-wrap-button-wpg {
  transform: translate(-50%, -50%);
  opacity: 1;
  visibility: visible;
  z-index: 99;
  justify-content: center;
  display: flex;
  width: 100%;
}

.rkit-addcart-button-wpg {
  /* display: inline-block; */
  display: flex;
  gap: 10px;
  padding: 12px 24px;
  background-color: #ffffff;
  color: #000000;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  position: relative;
  transition: background-color 0.3s ease;
}

.rkit-addcart-button-wpg span {
  position: relative;
  display: inline-block;
}

.rkit-addcart-button-wpg span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #000000;
  transition: width 0.6s ease;
  z-index: 999;
}

.rkit-product-image-container {
  overflow: hidden;
}

.rkit-product-image-wpg:hover span::after {
  width: 100%;
}

.rkit-product-rating-wpg {
  font-size: 14px;
  color: #f5c518;
}

/* ribbon */
.rkit-product-ribbon-wpg {
  position: absolute;
  /* top: 10px;  */
  background-color: #ff0000;
  /* Warna background ribbon */
  color: #fff;
  /* Warna teks */
  padding: 5px 15px;
  font-size: 12px;
  font-weight: bold;
  z-index: 10;
  border-radius: 0px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
}

.rkit-product-card-wpg {
  position: relative;
}

/* =============================================divider======================================================= */

/* profesional design css layout 2 */

.rkit-product-grid-wpg-pro {
  overflow: hidden;
}

.rkit-product-card-wpg-pro {
  border-radius: 20px 20px 20px 20px;
  /* background-color: transparent; */
  /* background: linear-gradient(29deg, #000000 20%, #A0A0A0 100%); */
  background-color: #a0a0a0;
  padding: 20px 20px 20px 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 10px;
  position: relative;
  height: min-content;
  /* width: -webkit-fill-available; */
}

.rkit-product-image-wpg-pro {
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 20px 20px;
}

.rkit-product-image-wpg-pro img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 20px 20px 20px 20px;
}

.rkit-product-image-wpg-pro:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  opacity: 0.3;
  transition: width 0.6s ease;
  z-index: 1;
}

/* content */

.rkit-product-details-wpg-pro {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

.rkit-product-info-wpg-pro {
  display: flex;
  flex-direction: column;
  flex: 0 0 50%;
  width: 100%;
}

.rkit-product-title-wpg-pro {
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  text-wrap: wrap;
}

.rkit-product-price-wpg-pro {
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

.rkit-product-feat-wpg-pro {
  display: flex;
  flex-direction: column;
  justify-content: right;
  text-align: end;
  align-self: flex-start;
}

.rkit-product-desc-wpg-pro {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition-delay: 2s;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.rkit-product-text-desc-wpg-pro {
  font-size: 14px;
  font-weight: 100;
  color: #ffffff;
  text-wrap: wrap;
  text-align: center;
}

.rkit-product-card-wpg-pro:hover .rkit-product-desc-wpg-pro {
  opacity: 1;
  max-height: 200px;
}

/* button */
.rkit-addcart-wrap-button-wpg-all-pro {
  display: inline-flex;
  position: relative;
  justify-content: center;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  background-color: transparent;
}

.rkit-addcart-wrap-button-wpg-pro {
  display: flex;
  position: relative;
}

/* Gradient border wrapper */
.gradient-border {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 15px;
  background-image: linear-gradient(
    30deg,
    var(--gradient-color-one),
    var(--gradient-color-two)
  );
  background-size: 500%;
  z-index: 0;
  animation: border-ambient 3s linear infinite;
}

/* The button itself */
.rkit-addcart-button-wpg-pro {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00cea6;
  border-radius: 15px;
  padding: 12px 30px;
  width: 100%;
  max-width: 100%;
  font-size: 15px;
  color: white;
  position: relative;
  z-index: 1;
  transition: all 0.5s;
  overflow: hidden;
  gap: 20px;
}

.rkit-addcart-wrap-button-wpg-pro {
  width: 100%;
  margin: 0 auto;
  /* overflow: hidden;  */
}

/* Gradient animation */
@keyframes border-ambient {
  0% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 50% 75%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 50% 25%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.rkit-product-rating-wpg-pro {
  font-size: 14px;
  color: #f5c518;
}

/* ribbon pro*/
.rkit-product-ribbon-wpg-pro {
  background-color: #00cea6;
  margin-top: 0px;
  border-radius: 0px;
  position: absolute;
  color: #fff;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: bold;
  z-index: 10;
}

.rkit-product-card-wpg-pro {
  position: relative;
}

/* =============================================================================================================== */
/* premium style css layout 3 */

.rkit-product-grid-wpg-prem {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* flex-direction: row; */
  gap: 16px;
  justify-content: center;
}

.rkit-product-card-wpg-prem {
  /* width: 100%;  */
  padding: 20px;
  background-color: #d0d1d5;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  height: min-content;
  width: -webkit-fill-available;
}

.rkit-product-image-wpg-prem {
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 20px 20px;
}

.rkit-product-image-wpg-prem img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 20px 20px 20px 20px;
}

.rkit-product-image-wpg-prem:hover::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  opacity: 0.3;
  transition: width 0.6s ease;
  z-index: 0;
}

.rkit-product-ribbon-wpg-prem {
  background-color: #00cea6;
  /* background: linear-gradient(305deg, #393131 0%, #00CEA6 100%); */
  margin-top: 0px;
  border-radius: 20px 20px 20px 20px;
  position: absolute;
  color: #fff;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: bold;
  z-index: 10;
}

.rkit-product-details-wpg-prem {
  display: flex !important;
  flex-direction: column-reverse;
  align-content: flex-start;
  justify-content: flex-start;
  text-align: left;
  gap: 15px;
  position: relative;
  z-index: 1;
  transition: transform 0.6s ease-in-out;
  /* height : 100%; */
  max-height: min-content;
  gap: 10px;
  /* transform: translateY(60%);  */
}

.rkit-product-details-wpg-prem::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  opacity: 0.5;
  z-index: -1;
}

.rkit-product-info-wpg-prem {
  margin-bottom: 12px;
  flex: 0 0 50%;
  width: 100%;
}

.rkit-product-title-wpg-prem {
  font-weight: bold;
  margin: 0;
  color: #333;
  width: fit-content;
  position: relative;
  padding-bottom: 25px;
}

.rkit-product-title-wpg-prem::after {
  content: "";
  text-align: left;
  justify-content: start;
  display: block;
  width: 50%;
  border-bottom: 3px solid #000000;
  margin: 0 auto;
  position: absolute;
  left: 0;
  padding-bottom: 10px;
}

.rkit-product-feat-wpg-prem {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: start;
  align-self: flex-start;
}

.rkit-product-price-wpg-prem {
  font-size: 24px;
  font-weight: 300;
  color: #000000;
}

.rkit-product-rating-wpg-prem {
  font-size: 14px;
  color: #f4a261;
}

.rkit-product-hov-wpg-prem {
  display: flex;
  gap: 10px;
  flex-direction: row;
  width: 100%;
  /* padding-top: 10px; */
  height: min-content;
  position: relative;
  text-align: center;
  opacity: 0;
  max-height: min-content;
  overflow: hidden;
  visibility: hidden;
  /* transform: translateY(-80%);  */
  transition: max-height 0.5s ease, opacity 0.5s ease-in-out,
    transform 0.5s ease-in-out;
}

.rkit-product-card-wpg-prem:hover .rkit-product-details-wpg-prem {
  transform: translateY(-70%);
  max-height: min-content;
}

.rkit-product-card-wpg-prem:hover .rkit-product-hov-wpg-prem {
  opacity: 1;
  /* height : fit-content; */
  max-height: min-content;
  visibility: visible;
  transform: translateY(-70%);
}

.rkit-product-card-wpg-prem:hover {
  max-height: min-content;
}

.rkit-addcart-button-wpg-prem {
  display: flex;
  justify-content: center;
  background-color: #1f1f29;
  border-radius: 15px;
  padding: 10px 20px;
  font-size: 15px;
  color: #d9dade;
  position: relative;
}

.rkit-addcart-wrap-button-wpg-prem {
  display: flex;
  flex: 0 0 40%;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  align-content: center;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.rkit-addcart-wrap-button-wpg-prem span {
  display: flex;
  align-items: center;
}

.rkit-addcart-wrap-button-wpg-prem i {
  display: flex;
  align-items: center;
}

.text-button {
  display: flex;
}

.rkit-product-desc-wpg-prem {
  padding: 0px 0px 0px 0px;
  display: flex;
  flex: 0 0 60%;
  overflow: hidden;
  transition-delay: 2s;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.rkit-product-text-desc-wpg-prem {
  font-size: 14px;
  font-weight: 100;
  color: #000000;
  text-wrap: wrap;
  text-align: left;
  max-width: 100%;
  overflow: hidden;
}

/* Styling untuk bintang */
.star-rating-wpg {
  display: inline-block;
  font-size: 20px;
  line-height: 1;
  color: #ddd;
  position: relative;
}

.star-rating-wpg span {
  display: block;
  color: #f5c518;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  width: 0;
}

/* SALE PRICE */
.rkit-product-sale-price-wpg {
  color: #000000;
  font-weight: bold;
  margin-right: 10px;
  font-size: 20px;
}

.rkit-product-sale-price-wpg-pro {
  color: #ffffff;
  font-weight: bold;
  margin-right: 10px;
  font-size: 20px;
}

.rkit-product-sale-price-wpg-prem {
  color: #000000;
  font-weight: bold;
  margin-right: 10px;
  font-size: 24px;
}

/* REGULAR PRICE (Jika Ada Sale Price) */
.if-sale-price-wpg {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  /* line-height: 0px; */
  gap: 2px;
  /* padding-bottom: 20px; */
}

.if-sale-price-wpg-pro {
  display: flex;
  flex-direction: row;
  align-items: center;
  /* line-height: 0px; */
  gap: 5px;
}

.if-sale-price-wpg-prem {
  display: flex;
  flex-direction: column-reverse;
}

.rkit-product-sale-price-reguler-wpg {
  color: #777;
  text-decoration: line-through;
  font-size: 14px;
  font-weight: normal;
  align-content: center;
  align-self: center;
}

.rkit-product-sale-price-reguler-wpg-pro {
  color: #ffffff;
  text-decoration: line-through;
  font-size: 16px;
  font-weight: normal;
}

.rkit-product-sale-price-reguler-wpg-prem {
  color: #777;
  text-decoration: line-through;
  font-size: 14px;
  font-weight: normal;
}

/* REGULAR PRICE (Tanpa Sale Price) */
.rkit-product-price-reguler-wpg {
  color: #333;
  font-weight: bold;
  font-size: 20px;
  text-align: start;
}

.rkit-product-price-reguler-wpg-pro {
  color: #ffffff;
  font-weight: bold;
  font-size: 20px;
  text-align: start;
}

.rkit-product-price-reguler-wpg-prem {
  color: #333;
  font-weight: bold;
  font-size: 24px;
  text-align: start;
}

.client-grid-container{
  display: block;
  max-height: max-content;
  height: 100%;
  width: 100%;
}
.client-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  flex-direction: row;
  gap: 5px;
  background-color: transparent;
  justify-content: center;
  overflow: hidden;
}


@media (max-width: 768px) {
  .rkit-card-client {
   height : 200px;
 }
 }

/* css image */


/* Image container (ensure the image is contained properly) */
.image-container-cg {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  max-height: max-content;
}

.image-container-cg img {
  transform: scale(1);
  opacity: 1;
  transition: transform 0.5s, opacity 0.5s;
  width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
}

.clientslogo-image {
  position: absolute;
  text-align: center;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  overflow: hidden;


}

.clientslogo-image-full-cg {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  overflow: hidden;

}

.clientslogo-image-full-cg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  overflow: hidden;
}

/* image hover */
.image-hover-cg {
  opacity: 0;
  display: relative;
  align-items: center;
  justify-content: center;
  /* color: #000000; */
}


.fade_in .image-hover-cg {
  transform: scale(1);
}

.fade_in:hover .image-hover-cg {
  opacity: 1;
  transition: opacity 0.3s ease;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}


.fade_in:hover .image-default {
  opacity: 0;
}



.horizontal .image-hover-cg {
  transform: translateX(100%);
}

.horizontal:hover .image-hover-cg {
  opacity: 1;
  transform: translateX(0);
}

.horizontal:hover .image-default {
  opacity: 0;
  transform: translateX(-100%);
}

.vertical .image-hover-cg {
  transform: translateY(100%);
}

.vertical:hover .image-hover-cg {
  opacity: 1;
  transform: translateY(0);
}

.vertical:hover .image-default {
  opacity: 0;
  transform: translateY(-100%);
}




/*  text hover */
.hover-content-cg {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-self: flex-start;
  max-width: 100%;
  height: 100%;
  width: 100%;
  text-align: center;
  overflow: hidden;
  background: #33e4c0;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
  background-clip: content-box;
}


.fade_in .hover-conten {
  transform: none;
}

.fade_in:hover .hover-conten {
  opacity: 1;
  transition: opacity 0.3s ease;
  transform: translateX(0);
}


.horizontal .hover-conten {
  transform: translateX(100%);
}

.horizontal:hover .hover-conten {
  opacity: 1;
  transform: translateX(0);
}

.vertical .hover-conten {
  transform: translateY(100%);
}

.vertical:hover .hover-conten {
  opacity: 1;
  transform: translateY(0);
}


.hover-title-cg {
  padding: 0px;
  margin: 0px;
  color: #fff;
  text-transform: uppercase;
  transition: color 0.3s ease-in-out;
}

.hover-description-cg {
  padding: 0px;
  margin: 0px;
  margin: 0px;
  color: #ddd;
  transition: color 0.3s ease-in-out;
}

/* end css image and hover */

/* navigation css */


.card-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.card-body::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.card-title {
  margin: 0;

}

.card-title a {
  text-decoration: none;
  color: #161616;
}

.card-heading {
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
}


.rkit-clientslogo .card-button a {
  background-color: #33e4c0;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  color: white;
  transition: all 0.5s;
  border-radius: 0px;
}

.rkit-clientslogo .card-button {
  display: flex;
  justify-content: start;
}

.rkit-clientslogo .card-button a .button-icon {
  transition: color 0.5s;
}

.rkit-clientslogo.overlay {
  position: relative;
}

.rkit-clientslogo.overlay .card-body {
  opacity: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: all 0.5s;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
}

.rkit-clientslogo.overlay .card-button {
  justify-content: center;
}

.rkit-clientslogo.overlay:hover .card-body {
  opacity: 1;
  transform: scaleY(1);
}

.rkit-clientslogo-slider .swiper-slide {
  overflow: unset;
}

.card-button.fullwidth a {
  width: 100%;
}.rkit-barchart-container {
    position: relative;
    z-index: 1;
}.rkit-linechart-container {
    position: relative;
    z-index: 1;
}.rkit-piechart-container {
    position: relative;
    z-index: 1;
}.rkit-back-to-top-container {
  display: flex;
}

.rkit-back-to-top-button {
  width: 70px;
  height: 70px;
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
}

.rkit-back-to-top-progress .rkit-back-to-top-button {
  border-radius: 50%;
}

.scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rkit-back-to-top-button.hide-button-on-scroll {
  opacity: 0;
  visibility: hidden;
  transform: translateY(5rem);
}

.rkit-back-to-top-button.hide-button-on-scroll.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0rem);
}

.back-to-top-text {
  line-height: 0;
}
@font-face {
  font-family: 'rtmicon-regular';
  src:  url(//ppstud-test.elodietomasi.com/wp-content/plugins/rometheme-for-elementor/assets/fonts/rtmicons/rtmicon-regular.eot?y6xw2y);
  src:  url(//ppstud-test.elodietomasi.com/wp-content/plugins/rometheme-for-elementor/assets/fonts/rtmicons/rtmicon-regular.eot?y6xw2y#iefix) format('embedded-opentype'),
    url(//ppstud-test.elodietomasi.com/wp-content/plugins/rometheme-for-elementor/assets/fonts/rtmicons/rtmicon-regular.ttf?y6xw2y) format('truetype'),
    url(//ppstud-test.elodietomasi.com/wp-content/plugins/rometheme-for-elementor/assets/fonts/rtmicons/rtmicon-regular.woff?y6xw2y) format('woff'),
    url(//ppstud-test.elodietomasi.com/wp-content/plugins/rometheme-for-elementor/assets/fonts/rtmicons/rtmicon-regular.svg?y6xw2y#rtmicon-regular) format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.rtmicon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'rtmicon-regular' !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;
}


.rtmicon.rtmicon-accordion:before {
  content: "\e900";
}
.rtmicon.rtmicon-advance-button:before {
  content: "\e901";
}
.rtmicon.rtmicon-advanced-heading:before {
  content: "\e902";
}
.rtmicon.rtmicon-advanced-tabs:before {
  content: "\e903";
}
.rtmicon.rtmicon-advanced-toggle:before {
  content: "\e904";
}
.rtmicon.rtmicon-alarm-clock:before {
  content: "\e905";
}
.rtmicon.rtmicon-alert:before {
  content: "\e906";
}
.rtmicon.rtmicon-android:before {
  content: "\e907";
}
.rtmicon.rtmicon-animated-heading:before {
  content: "\e908";
}
.rtmicon.rtmicon-apple:before {
  content: "\e909";
}
.rtmicon.rtmicon-arrow-down:before {
  content: "\e90a";
}
.rtmicon.rtmicon-arrow-down-left:before {
  content: "\e90b";
}
.rtmicon.rtmicon-arrow-down-right:before {
  content: "\e90c";
}
.rtmicon.rtmicon-arrow-down-to-line:before {
  content: "\e90d";
}
.rtmicon.rtmicon-arrow-left:before {
  content: "\e90e";
}
.rtmicon.rtmicon-arrow-long-down:before {
  content: "\e90f";
}
.rtmicon.rtmicon-arrow-long-left:before {
  content: "\e910";
}
.rtmicon.rtmicon-arrow-long-right:before {
  content: "\e911";
}
.rtmicon.rtmicon-arrow-long-up:before {
  content: "\e912";
}
.rtmicon.rtmicon-arrow-right:before {
  content: "\e913";
}
.rtmicon.rtmicon-arrow-up:before {
  content: "\e914";
}
.rtmicon.rtmicon-arrow-up-left:before {
  content: "\e915";
}
.rtmicon.rtmicon-arrow-up-right:before {
  content: "\e916";
}
.rtmicon.rtmicon-author-box:before {
  content: "\e917";
}
.rtmicon.rtmicon-award:before {
  content: "\e918";
}
.rtmicon.rtmicon-back-to-top-button:before {
  content: "\e919";
}
.rtmicon.rtmicon-badge-check:before {
  content: "\e91a";
}
.rtmicon.rtmicon-badge-dollar:before {
  content: "\e91b";
}
.rtmicon.rtmicon-badge-percent:before {
  content: "\e91c";
}
.rtmicon.rtmicon-banner-ad:before {
  content: "\e91d";
}
.rtmicon.rtmicon-banner-discount:before {
  content: "\e91e";
}
.rtmicon.rtmicon-bar-chart:before {
  content: "\e91f";
}
.rtmicon.rtmicon-bar-progress:before {
  content: "\e920";
}
.rtmicon.rtmicon-bars:before {
  content: "\e921";
}
.rtmicon.rtmicon-bar-sort-left:before {
  content: "\e922";
}
.rtmicon.rtmicon-bar-sort-right:before {
  content: "\e923";
}
.rtmicon.rtmicon-battery:before {
  content: "\e924";
}
.rtmicon.rtmicon-behance:before {
  content: "\e925";
}
.rtmicon.rtmicon-blob-shape:before {
  content: "\e926";
}
.rtmicon.rtmicon-blockquote:before {
  content: "\e927";
}
.rtmicon.rtmicon-blog:before {
  content: "\e928";
}
.rtmicon.rtmicon-blog-carousel:before {
  content: "\e929";
}
.rtmicon.rtmicon-blog-post:before {
  content: "\e92a";
}
.rtmicon.rtmicon-bluetooth:before {
  content: "\e92b";
}
.rtmicon.rtmicon-book:before {
  content: "\e92c";
}
.rtmicon.rtmicon-bookmark:before {
  content: "\e92d";
}
.rtmicon.rtmicon-box-package:before {
  content: "\e92e";
}
.rtmicon.rtmicon-breadcumb:before {
  content: "\e92f";
}
.rtmicon.rtmicon-briefcase:before {
  content: "\e930";
}
.rtmicon.rtmicon-browser:before {
  content: "\e931";
}
.rtmicon.rtmicon-business-hours:before {
  content: "\e932";
}
.rtmicon.rtmicon-calendar:before {
  content: "\e933";
}
.rtmicon.rtmicon-calendar-check:before {
  content: "\e934";
}
.rtmicon.rtmicon-calendar-days:before {
  content: "\e935";
}
.rtmicon.rtmicon-call:before {
  content: "\e936";
}
.rtmicon.rtmicon-call-to-action:before {
  content: "\e937";
}
.rtmicon.rtmicon-call-to-action-2:before {
  content: "\e938";
}
.rtmicon.rtmicon-call-volume-up:before {
  content: "\e939";
}
.rtmicon.rtmicon-camera:before {
  content: "\e93a";
}
.rtmicon.rtmicon-card-carousel:before {
  content: "\e93b";
}
.rtmicon.rtmicon-card-slider:before {
  content: "\e93c";
}
.rtmicon.rtmicon-caret-down:before {
  content: "\e93d";
}
.rtmicon.rtmicon-caret-left:before {
  content: "\e93e";
}
.rtmicon.rtmicon-caret-right:before {
  content: "\e93f";
}
.rtmicon.rtmicon-caret-up:before {
  content: "\e940";
}
.rtmicon.rtmicon-chart:before {
  content: "\e941";
}
.rtmicon.rtmicon-chart-line-down:before {
  content: "\e942";
}
.rtmicon.rtmicon-chart-line-up:before {
  content: "\e943";
}
.rtmicon.rtmicon-check:before {
  content: "\e944";
}
.rtmicon.rtmicon-checkbox:before {
  content: "\e945";
}
.rtmicon.rtmicon-chevron-down:before {
  content: "\e946";
}
.rtmicon.rtmicon-chevron-left:before {
  content: "\e947";
}
.rtmicon.rtmicon-chevron-right:before {
  content: "\e948";
}
.rtmicon.rtmicon-chevrons-down:before {
  content: "\e949";
}
.rtmicon.rtmicon-chevrons-left:before {
  content: "\e94a";
}
.rtmicon.rtmicon-chevrons-right:before {
  content: "\e94b";
}
.rtmicon.rtmicon-chevrons-up:before {
  content: "\e94c";
}
.rtmicon.rtmicon-chevron-up:before {
  content: "\e94d";
}
.rtmicon.rtmicon-circle-arrow-down:before {
  content: "\e94e";
}
.rtmicon.rtmicon-circle-arrow-down-left:before {
  content: "\e94f";
}
.rtmicon.rtmicon-circle-arrow-down-right:before {
  content: "\e950";
}
.rtmicon.rtmicon-circle-arrow-left:before {
  content: "\e951";
}
.rtmicon.rtmicon-circle-arrow-right:before {
  content: "\e952";
}
.rtmicon.rtmicon-circle-arrow-up:before {
  content: "\e953";
}
.rtmicon.rtmicon-circle-arrow-up-left:before {
  content: "\e954";
}
.rtmicon.rtmicon-circle-arrow-up-right:before {
  content: "\e955";
}
.rtmicon.rtmicon-circle-caret-down:before {
  content: "\e956";
}
.rtmicon.rtmicon-circle-caret-left:before {
  content: "\e957";
}
.rtmicon.rtmicon-circle-caret-right:before {
  content: "\e958";
}
.rtmicon.rtmicon-circle-caret-up:before {
  content: "\e959";
}
.rtmicon.rtmicon-circle-check:before {
  content: "\e95a";
}
.rtmicon.rtmicon-circle-chevron-down:before {
  content: "\e95b";
}
.rtmicon.rtmicon-circle-chevron-left:before {
  content: "\e95c";
}
.rtmicon.rtmicon-circle-chevron-right:before {
  content: "\e95d";
}
.rtmicon.rtmicon-circle-chevron-up:before {
  content: "\e95e";
}
.rtmicon.rtmicon-circle-down:before {
  content: "\e95f";
}
.rtmicon.rtmicon-circle-left:before {
  content: "\e960";
}
.rtmicon.rtmicon-circle-minus:before {
  content: "\e961";
}
.rtmicon.rtmicon-circle-plus:before {
  content: "\e962";
}
.rtmicon.rtmicon-circle-right:before {
  content: "\e963";
}
.rtmicon.rtmicon-circle-up:before {
  content: "\e964";
}
.rtmicon.rtmicon-circle-user:before {
  content: "\e965";
}
.rtmicon.rtmicon-circle-xmark:before {
  content: "\e966";
}
.rtmicon.rtmicon-city:before {
  content: "\e967";
}
.rtmicon.rtmicon-clapperboard-video:before {
  content: "\e968";
}
.rtmicon.rtmicon-client-carousel:before {
  content: "\e969";
}
.rtmicon.rtmicon-client-grid:before {
  content: "\e96a";
}
.rtmicon.rtmicon-client-list:before {
  content: "\e96b";
}
.rtmicon.rtmicon-clipping-mask:before {
  content: "\e96c";
}
.rtmicon.rtmicon-clock:before {
  content: "\e96d";
}
.rtmicon.rtmicon-clock-desk:before {
  content: "\e96e";
}
.rtmicon.rtmicon-cloud-check:before {
  content: "\e96f";
}
.rtmicon.rtmicon-cloud-download:before {
  content: "\e970";
}
.rtmicon.rtmicon-cloud-upload:before {
  content: "\e971";
}
.rtmicon.rtmicon-code:before {
  content: "\e972";
}
.rtmicon.rtmicon-coin:before {
  content: "\e973";
}
.rtmicon.rtmicon-coin-dollar:before {
  content: "\e974";
}
.rtmicon.rtmicon-coin-group:before {
  content: "\e975";
}
.rtmicon.rtmicon-coins:before {
  content: "\e976";
}
.rtmicon.rtmicon-color-picker:before {
  content: "\e977";
}
.rtmicon.rtmicon-comments:before {
  content: "\e978";
}
.rtmicon.rtmicon-comments-question:before {
  content: "\e979";
}
.rtmicon.rtmicon-content-slider:before {
  content: "\e97a";
}
.rtmicon.rtmicon-cookies:before {
  content: "\e97b";
}
.rtmicon.rtmicon-countdown:before {
  content: "\e97c";
}
.rtmicon.rtmicon-counter:before {
  content: "\e97d";
}
.rtmicon.rtmicon-counters:before {
  content: "\e97e";
}
.rtmicon.rtmicon-credit-card-back:before {
  content: "\e97f";
}
.rtmicon.rtmicon-credit-card-front:before {
  content: "\e980";
}
.rtmicon.rtmicon-date-form:before {
  content: "\e981";
}
.rtmicon.rtmicon-desk:before {
  content: "\e982";
}
.rtmicon.rtmicon-diamond:before {
  content: "\e983";
}
.rtmicon.rtmicon-download:before {
  content: "\e984";
}
.rtmicon.rtmicon-dribbble:before {
  content: "\e985";
}
.rtmicon.rtmicon-dual-button:before {
  content: "\e986";
}
.rtmicon.rtmicon-duplicator:before {
  content: "\e987";
}
.rtmicon.rtmicon-elementor:before {
  content: "\e988";
}
.rtmicon.rtmicon-email-form:before {
  content: "\e989";
}
.rtmicon.rtmicon-envelope:before {
  content: "\e98a";
}
.rtmicon.rtmicon-envelope-open-dollar:before {
  content: "\e98b";
}
.rtmicon.rtmicon-event:before {
  content: "\e98c";
}
.rtmicon.rtmicon-event-list:before {
  content: "\e98d";
}
.rtmicon.rtmicon-facebook:before {
  content: "\e98e";
}
.rtmicon.rtmicon-fax:before {
  content: "\e98f";
}
.rtmicon.rtmicon-feather:before {
  content: "\e990";
}
.rtmicon.rtmicon-featured-image:before {
  content: "\e991";
}
.rtmicon.rtmicon-figma:before {
  content: "\e992";
}
.rtmicon.rtmicon-file:before {
  content: "\e993";
}
.rtmicon.rtmicon-file-info:before {
  content: "\e994";
}
.rtmicon.rtmicon-file-pdf:before {
  content: "\e995";
}
.rtmicon.rtmicon-film-play:before {
  content: "\e996";
}
.rtmicon.rtmicon-finance-award:before {
  content: "\e997";
}
.rtmicon.rtmicon-finance-shield:before {
  content: "\e998";
}
.rtmicon.rtmicon-fingerprint:before {
  content: "\e999";
}
.rtmicon.rtmicon-flag:before {
  content: "\e99a";
}
.rtmicon.rtmicon-flip-box:before {
  content: "\e99b";
}
.rtmicon.rtmicon-folder:before {
  content: "\e99c";
}
.rtmicon.rtmicon-folder-file:before {
  content: "\e99d";
}
.rtmicon.rtmicon-folder-open:before {
  content: "\e99e";
}
.rtmicon.rtmicon-folders:before {
  content: "\e99f";
}
.rtmicon.rtmicon-form:before {
  content: "\e9a0";
}
.rtmicon.rtmicon-full-screen-slider:before {
  content: "\e9a1";
}
.rtmicon.rtmicon-gear:before {
  content: "\e9a2";
}
.rtmicon.rtmicon-glass-effect:before {
  content: "\e9a3";
}
.rtmicon.rtmicon-glasses:before {
  content: "\e9a4";
}
.rtmicon.rtmicon-globe:before {
  content: "\e9a5";
}
.rtmicon.rtmicon-globe-pointer:before {
  content: "\e9a6";
}
.rtmicon.rtmicon-graphic-bar:before {
  content: "\e9a7";
}
.rtmicon.rtmicon-graphic-pie:before {
  content: "\e9a8";
}
.rtmicon.rtmicon-grid-round:before {
  content: "\e9a9";
}
.rtmicon.rtmicon-grid-rounds:before {
  content: "\e9aa";
}
.rtmicon.rtmicon-header-info:before {
  content: "\e9ab";
}
.rtmicon.rtmicon-header-offcanvas:before {
  content: "\e9ac";
}
.rtmicon.rtmicon-help:before {
  content: "\e9ad";
}
.rtmicon.rtmicon-horizontal-progress-bar:before {
  content: "\e9ae";
}
.rtmicon.rtmicon-hotspot:before {
  content: "\e9af";
}
.rtmicon.rtmicon-house:before {
  content: "\e9b0";
}
.rtmicon.rtmicon-id-card:before {
  content: "\e9b1";
}
.rtmicon.rtmicon-image:before {
  content: "\e9b2";
}
.rtmicon.rtmicon-image-accordion:before {
  content: "\e9b3";
}
.rtmicon.rtmicon-image-box:before {
  content: "\e9b4";
}
.rtmicon.rtmicon-image-comparison:before {
  content: "\e9b5";
}
.rtmicon.rtmicon-image-gallery:before {
  content: "\e9b6";
}
.rtmicon.rtmicon-image-hotspot:before {
  content: "\e9b7";
}
.rtmicon.rtmicon-image-hover:before {
  content: "\e9b8";
}
.rtmicon.rtmicon-image-info:before {
  content: "\e9b9";
}
.rtmicon.rtmicon-image-list:before {
  content: "\e9ba";
}
.rtmicon.rtmicon-image-marquee:before {
  content: "\e9bb";
}
.rtmicon.rtmicon-image-masonry:before {
  content: "\e9bc";
}
.rtmicon.rtmicon-images:before {
  content: "\e9bd";
}
.rtmicon.rtmicon-image-showcase:before {
  content: "\e9be";
}
.rtmicon.rtmicon-image-slider:before {
  content: "\e9bf";
}
.rtmicon.rtmicon-instagram:before {
  content: "\e9c0";
}
.rtmicon.rtmicon-instagram-feed:before {
  content: "\e9c1";
}
.rtmicon.rtmicon-interactive-link:before {
  content: "\e9c2";
}
.rtmicon.rtmicon-invoice:before {
  content: "\e9c3";
}
.rtmicon.rtmicon-invoice-dollar:before {
  content: "\e9c4";
}
.rtmicon.rtmicon-item-list:before {
  content: "\e9c5";
}
.rtmicon.rtmicon-key-left:before {
  content: "\e9c6";
}
.rtmicon.rtmicon-laptop:before {
  content: "\e9c7";
}
.rtmicon.rtmicon-lightblub:before {
  content: "\e9c8";
}
.rtmicon.rtmicon-line-chart:before {
  content: "\e9c9";
}
.rtmicon.rtmicon-link:before {
  content: "\e9ca";
}
.rtmicon.rtmicon-linkedin:before {
  content: "\e9cb";
}
.rtmicon.rtmicon-link-simple:before {
  content: "\e9cc";
}
.rtmicon.rtmicon-list:before {
  content: "\e9cd";
}
.rtmicon.rtmicon-loader:before {
  content: "\e9ce";
}
.rtmicon.rtmicon-lock:before {
  content: "\e9cf";
}
.rtmicon.rtmicon-medium:before {
  content: "\e9d0";
}
.rtmicon.rtmicon-megaphone:before {
  content: "\e9d1";
}
.rtmicon.rtmicon-messanger:before {
  content: "\e9d2";
}
.rtmicon.rtmicon-microphone:before {
  content: "\e9d3";
}
.rtmicon.rtmicon-minus:before {
  content: "\e9d4";
}
.rtmicon.rtmicon-mobile:before {
  content: "\e9d5";
}
.rtmicon.rtmicon-mockup:before {
  content: "\e9d6";
}
.rtmicon.rtmicon-money:before {
  content: "\e9d7";
}
.rtmicon.rtmicon-money-bank-check:before {
  content: "\e9d8";
}
.rtmicon.rtmicon-money-check:before {
  content: "\e9d9";
}
.rtmicon.rtmicon-money-currency:before {
  content: "\e9da";
}
.rtmicon.rtmicon-money-rotation:before {
  content: "\e9db";
}
.rtmicon.rtmicon-money-target:before {
  content: "\e9dc";
}
.rtmicon.rtmicon-nav-menu:before {
  content: "\e9dd";
}
.rtmicon.rtmicon-note-hashtag:before {
  content: "\e9de";
}
.rtmicon.rtmicon-notes:before {
  content: "\e9df";
}
.rtmicon.rtmicon-number:before {
  content: "\e9e0";
}
.rtmicon.rtmicon-paper-form:before {
  content: "\e9e1";
}
.rtmicon.rtmicon-paper-plane:before {
  content: "\e9e2";
}
.rtmicon.rtmicon-paypal:before {
  content: "\e9e3";
}
.rtmicon.rtmicon-pen:before {
  content: "\e9e4";
}
.rtmicon.rtmicon-pencil:before {
  content: "\e9e5";
}
.rtmicon.rtmicon-pen-paintbrush:before {
  content: "\e9e6";
}
.rtmicon.rtmicon-phone-classic:before {
  content: "\e9e7";
}
.rtmicon.rtmicon-pie-chart:before {
  content: "\e9e8";
}
.rtmicon.rtmicon-pie-chart-2:before {
  content: "\e9e9";
}
.rtmicon.rtmicon-pie-chart-analyst:before {
  content: "\e9ea";
}
.rtmicon.rtmicon-pin-map-location:before {
  content: "\e9eb";
}
.rtmicon.rtmicon-pinterest:before {
  content: "\e9ec";
}
.rtmicon.rtmicon-planet:before {
  content: "\e9ed";
}
.rtmicon.rtmicon-play:before {
  content: "\e9ee";
}
.rtmicon.rtmicon-plus:before {
  content: "\e9ef";
}
.rtmicon.rtmicon-portfolio-gallery:before {
  content: "\e9f0";
}
.rtmicon.rtmicon-post-author:before {
  content: "\e9f1";
}
.rtmicon.rtmicon-post-carousel:before {
  content: "\e9f2";
}
.rtmicon.rtmicon-post-comment:before {
  content: "\e9f3";
}
.rtmicon.rtmicon-post-content:before {
  content: "\e9f4";
}
.rtmicon.rtmicon-post-excerpt:before {
  content: "\e9f5";
}
.rtmicon.rtmicon-post-info:before {
  content: "\e9f6";
}
.rtmicon.rtmicon-post-list:before {
  content: "\e9f7";
}
.rtmicon.rtmicon-post-navigation:before {
  content: "\e9f8";
}
.rtmicon.rtmicon-post-title:before {
  content: "\e9f9";
}
.rtmicon.rtmicon-presentation:before {
  content: "\e9fa";
}
.rtmicon.rtmicon-price-list:before {
  content: "\e9fb";
}
.rtmicon.rtmicon-price-table:before {
  content: "\e9fc";
}
.rtmicon.rtmicon-pricing-image-box:before {
  content: "\e9fd";
}
.rtmicon.rtmicon-pricing-list:before {
  content: "\e9fe";
}
.rtmicon.rtmicon-pricing-table:before {
  content: "\e9ff";
}
.rtmicon.rtmicon-process-step:before {
  content: "\ea00";
}
.rtmicon.rtmicon-product-highlight:before {
  content: "\ea01";
}
.rtmicon.rtmicon-progress-bar:before {
  content: "\ea02";
}
.rtmicon.rtmicon-progress-step:before {
  content: "\ea03";
}
.rtmicon.rtmicon-protection:before {
  content: "\ea04";
}
.rtmicon.rtmicon-quote:before {
  content: "\ea05";
}
.rtmicon.rtmicon-radial-progress-bar:before {
  content: "\ea06";
}
.rtmicon.rtmicon-radio:before {
  content: "\ea07";
}
.rtmicon.rtmicon-reddit:before {
  content: "\ea08";
}
.rtmicon.rtmicon-report:before {
  content: "\ea09";
}
.rtmicon.rtmicon-review-slider:before {
  content: "\ea0a";
}
.rtmicon.rtmicon-rocket:before {
  content: "\ea0b";
}
.rtmicon.rtmicon-romethemekit:before {
  content: "\ea0c";
}
.rtmicon.rtmicon-rtm-form:before {
  content: "\ea0d";
}
.rtmicon.rtmicon-sack-dollar:before {
  content: "\ea0e";
}
.rtmicon.rtmicon-scale-balanced:before {
  content: "\ea0f";
}
.rtmicon.rtmicon-scale-unbalanced:before {
  content: "\ea10";
}
.rtmicon.rtmicon-scale-unbalanced-flip:before {
  content: "\ea11";
}
.rtmicon.rtmicon-search:before {
  content: "\ea12";
}
.rtmicon.rtmicon-select:before {
  content: "\ea13";
}
.rtmicon.rtmicon-shield:before {
  content: "\ea14";
}
.rtmicon.rtmicon-shield-check:before {
  content: "\ea15";
}
.rtmicon.rtmicon-shield-minus:before {
  content: "\ea16";
}
.rtmicon.rtmicon-shield-plus:before {
  content: "\ea17";
}
.rtmicon.rtmicon-shield-xmark:before {
  content: "\ea18";
}
.rtmicon.rtmicon-shopping-cart:before {
  content: "\ea19";
}
.rtmicon.rtmicon-sidebar:before {
  content: "\ea1a";
}
.rtmicon.rtmicon-site-logo:before {
  content: "\ea1b";
}
.rtmicon.rtmicon-sliders:before {
  content: "\ea1c";
}
.rtmicon.rtmicon-sliders-up:before {
  content: "\ea1d";
}
.rtmicon.rtmicon-social-share:before {
  content: "\ea1e";
}
.rtmicon.rtmicon-social-share-2:before {
  content: "\ea1f";
}
.rtmicon.rtmicon-speedometer:before {
  content: "\ea20";
}
.rtmicon.rtmicon-square-arrow-down:before {
  content: "\ea21";
}
.rtmicon.rtmicon-square-arrow-down-left:before {
  content: "\ea22";
}
.rtmicon.rtmicon-square-arrow-down-right:before {
  content: "\ea23";
}
.rtmicon.rtmicon-square-arrow-left:before {
  content: "\ea24";
}
.rtmicon.rtmicon-square-arrow-right:before {
  content: "\ea25";
}
.rtmicon.rtmicon-square-arrow-up:before {
  content: "\ea26";
}
.rtmicon.rtmicon-square-arrow-up-left:before {
  content: "\ea27";
}
.rtmicon.rtmicon-square-arrow-up-right:before {
  content: "\ea28";
}
.rtmicon.rtmicon-square-caret-down:before {
  content: "\ea29";
}
.rtmicon.rtmicon-square-caret-left:before {
  content: "\ea2a";
}
.rtmicon.rtmicon-square-caret-right:before {
  content: "\ea2b";
}
.rtmicon.rtmicon-square-caret-up:before {
  content: "\ea2c";
}
.rtmicon.rtmicon-square-check:before {
  content: "\ea2d";
}
.rtmicon.rtmicon-square-minus:before {
  content: "\ea2e";
}
.rtmicon.rtmicon-square-plus:before {
  content: "\ea2f";
}
.rtmicon.rtmicon-square-user:before {
  content: "\ea30";
}
.rtmicon.rtmicon-square-xmark:before {
  content: "\ea31";
}
.rtmicon.rtmicon-stamp:before {
  content: "\ea32";
}
.rtmicon.rtmicon-star:before {
  content: "\ea33";
}
.rtmicon.rtmicon-store:before {
  content: "\ea34";
}
.rtmicon.rtmicon-submit-button:before {
  content: "\ea35";
}
.rtmicon.rtmicon-table-comparison:before {
  content: "\ea36";
}
.rtmicon.rtmicon-table-data:before {
  content: "\ea37";
}
.rtmicon.rtmicon-tablet:before {
  content: "\ea38";
}
.rtmicon.rtmicon-tag:before {
  content: "\ea39";
}
.rtmicon.rtmicon-taxes:before {
  content: "\ea3a";
}
.rtmicon.rtmicon-team:before {
  content: "\ea3b";
}
.rtmicon.rtmicon-team-carousel:before {
  content: "\ea3c";
}
.rtmicon.rtmicon-team-content:before {
  content: "\ea3d";
}
.rtmicon.rtmicon-telegram:before {
  content: "\ea3e";
}
.rtmicon.rtmicon-telephone:before {
  content: "\ea3f";
}
.rtmicon.rtmicon-testimonial:before {
  content: "\ea40";
}
.rtmicon.rtmicon-testimonial-carousel:before {
  content: "\ea41";
}
.rtmicon.rtmicon-testimonial-carousel-2:before {
  content: "\ea42";
}
.rtmicon.rtmicon-text-marquee:before {
  content: "\ea43";
}
.rtmicon.rtmicon-text-area-form:before {
  content: "\ea44";
}
.rtmicon.rtmicon-text-form:before {
  content: "\ea45";
}
.rtmicon.rtmicon-text-marquee1:before {
  content: "\ea46";
}
.rtmicon.rtmicon-threads:before {
  content: "\ea47";
}
.rtmicon.rtmicon-tiktok:before {
  content: "\ea48";
}
.rtmicon.rtmicon-time:before {
  content: "\ea49";
}
.rtmicon.rtmicon-timeline:before {
  content: "\ea4a";
}
.rtmicon.rtmicon-timer:before {
  content: "\ea4b";
}
.rtmicon.rtmicon-toggle-off:before {
  content: "\ea4c";
}
.rtmicon.rtmicon-toggle-on:before {
  content: "\ea4d";
}
.rtmicon.rtmicon-tooltip:before {
  content: "\ea4e";
}
.rtmicon.rtmicon-trash:before {
  content: "\ea4f";
}
.rtmicon.rtmicon-trophy:before {
  content: "\ea50";
}
.rtmicon.rtmicon-tumblr:before {
  content: "\ea51";
}
.rtmicon.rtmicon-upload:before {
  content: "\ea52";
}
.rtmicon.rtmicon-user:before {
  content: "\ea53";
}
.rtmicon.rtmicon-users:before {
  content: "\ea54";
}
.rtmicon.rtmicon-video-camera:before {
  content: "\ea55";
}
.rtmicon.rtmicon-vimeo:before {
  content: "\ea56";
}
.rtmicon.rtmicon-volume-down:before {
  content: "\ea57";
}
.rtmicon.rtmicon-volume-mute:before {
  content: "\ea58";
}
.rtmicon.rtmicon-volume-up:before {
  content: "\ea59";
}
.rtmicon.rtmicon-wallet:before {
  content: "\ea5a";
}
.rtmicon.rtmicon-wallet-money:before {
  content: "\ea5b";
}
.rtmicon.rtmicon-watch:before {
  content: "\ea5c";
}
.rtmicon.rtmicon-whatsapp:before {
  content: "\ea5d";
}
.rtmicon.rtmicon-woo-product:before {
  content: "\ea5e";
}
.rtmicon.rtmicon-wordpress:before {
  content: "\ea5f";
}
.rtmicon.rtmicon-working-hours:before {
  content: "\ea60";
}
.rtmicon.rtmicon-wrapper-link:before {
  content: "\ea61";
}
.rtmicon.rtmicon-xmark:before {
  content: "\ea62";
}
.rtmicon.rtmicon-x-twitter:before {
  content: "\ea63";
}
.rtmicon.rtmicon-youtube:before {
  content: "\ea64";
}

@font-face {
  font-family: "rtmicon-thin";
  src: url(//ppstud-test.elodietomasi.com/wp-content/plugins/rometheme-for-elementor/assets/fonts/rtmicons/rtmicon-thin.eot?qy76ig);
  src: url(//ppstud-test.elodietomasi.com/wp-content/plugins/rometheme-for-elementor/assets/fonts/rtmicons/rtmicon-thin.eot?qy76ig#iefix)
      format("embedded-opentype"),
    url(//ppstud-test.elodietomasi.com/wp-content/plugins/rometheme-for-elementor/assets/fonts/rtmicons/rtmicon-thin.ttf?qy76ig) format("truetype"),
    url(//ppstud-test.elodietomasi.com/wp-content/plugins/rometheme-for-elementor/assets/fonts/rtmicons/rtmicon-thin.woff?qy76ig) format("woff"),
    url(//ppstud-test.elodietomasi.com/wp-content/plugins/rometheme-for-elementor/assets/fonts/rtmicons/rtmicon-thin.svg?qy76ig#rtmicon-thin) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

.rtmicon-thin {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "rtmicon-thin" !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;
}

.rtmicon-thin.rtmicon-activity-rooms:before {
  content: "\e900";
}
.rtmicon-thin.rtmicon-acupunture:before {
  content: "\e901";
}
.rtmicon-thin.rtmicon-advanced-toggle:before {
  content: "\e902";
}
.rtmicon-thin.rtmicon-aerobic:before {
  content: "\e903";
}
.rtmicon-thin.rtmicon-affordable-courses:before {
  content: "\e904";
}
.rtmicon-thin.rtmicon-agreement:before {
  content: "\e905";
}
.rtmicon-thin.rtmicon-alarm-clock:before {
  content: "\e906";
}
.rtmicon-thin.rtmicon-alert:before {
  content: "\e907";
}
.rtmicon-thin.rtmicon-ambulance:before {
  content: "\e908";
}
.rtmicon-thin.rtmicon-analyst:before {
  content: "\e909";
}
.rtmicon-thin.rtmicon-anniversaries:before {
  content: "\e90a";
}
.rtmicon-thin.rtmicon-architect:before {
  content: "\e90b";
}
.rtmicon-thin.rtmicon-architectural-design:before {
  content: "\e90c";
}
.rtmicon-thin.rtmicon-aromatherapy:before {
  content: "\e90d";
}
.rtmicon-thin.rtmicon-arrow-down:before {
  content: "\e90e";
}
.rtmicon-thin.rtmicon-arrow-down-left:before {
  content: "\e90f";
}
.rtmicon-thin.rtmicon-arrow-down-right:before {
  content: "\e910";
}
.rtmicon-thin.rtmicon-arrow-down-to-line:before {
  content: "\e911";
}
.rtmicon-thin.rtmicon-arrow-left:before {
  content: "\e912";
}
.rtmicon-thin.rtmicon-arrow-long-down:before {
  content: "\e913";
}
.rtmicon-thin.rtmicon-arrow-long-left:before {
  content: "\e914";
}
.rtmicon-thin.rtmicon-arrow-long-right:before {
  content: "\e915";
}
.rtmicon-thin.rtmicon-arrow-long-up:before {
  content: "\e916";
}
.rtmicon-thin.rtmicon-arrow-right:before {
  content: "\e917";
}
.rtmicon-thin.rtmicon-arrow-up:before {
  content: "\e918";
}
.rtmicon-thin.rtmicon-arrow-up-left:before {
  content: "\e919";
}
.rtmicon-thin.rtmicon-arrow-up-right:before {
  content: "\e91a";
}
.rtmicon-thin.rtmicon-attend-event:before {
  content: "\e91b";
}
.rtmicon-thin.rtmicon-automobile-accident:before {
  content: "\e91c";
}
.rtmicon-thin.rtmicon-award:before {
  content: "\e91d";
}
.rtmicon-thin.rtmicon-badge-check:before {
  content: "\e91e";
}
.rtmicon-thin.rtmicon-badge-dollar:before {
  content: "\e91f";
}
.rtmicon-thin.rtmicon-badge-percent:before {
  content: "\e920";
}
.rtmicon-thin.rtmicon-balance:before {
  content: "\e921";
}
.rtmicon-thin.rtmicon-balance-sheet:before {
  content: "\e922";
}
.rtmicon-thin.rtmicon-bank-building:before {
  content: "\e923";
}
.rtmicon-thin.rtmicon-banner-ad:before {
  content: "\e924";
}
.rtmicon-thin.rtmicon-banner-discount:before {
  content: "\e925";
}
.rtmicon-thin.rtmicon-bar-progress:before {
  content: "\e926";
}
.rtmicon-thin.rtmicon-bar-sort-left:before {
  content: "\e927";
}
.rtmicon-thin.rtmicon-bar-sort-right:before {
  content: "\e928";
}
.rtmicon-thin.rtmicon-bars:before {
  content: "\e929";
}
.rtmicon-thin.rtmicon-battery:before {
  content: "\e92a";
}
.rtmicon-thin.rtmicon-bill:before {
  content: "\e92b";
}
.rtmicon-thin.rtmicon-birthday-cake:before {
  content: "\e92c";
}
.rtmicon-thin.rtmicon-blob-shape:before {
  content: "\e92d";
}
.rtmicon-thin.rtmicon-block-security:before {
  content: "\e92e";
}
.rtmicon-thin.rtmicon-blog:before {
  content: "\e92f";
}
.rtmicon-thin.rtmicon-blog-carousel:before {
  content: "\e930";
}
.rtmicon-thin.rtmicon-blueprint:before {
  content: "\e931";
}
.rtmicon-thin.rtmicon-body-building:before {
  content: "\e932";
}
.rtmicon-thin.rtmicon-body-scrub:before {
  content: "\e933";
}
.rtmicon-thin.rtmicon-body-treatment:before {
  content: "\e934";
}
.rtmicon-thin.rtmicon-body-wellness:before {
  content: "\e935";
}
.rtmicon-thin.rtmicon-book:before {
  content: "\e936";
}
.rtmicon-thin.rtmicon-boost-creativity:before {
  content: "\e937";
}
.rtmicon-thin.rtmicon-box-package:before {
  content: "\e938";
}
.rtmicon-thin.rtmicon-branding-design:before {
  content: "\e939";
}
.rtmicon-thin.rtmicon-brickwall:before {
  content: "\e93a";
}
.rtmicon-thin.rtmicon-bridge:before {
  content: "\e93b";
}
.rtmicon-thin.rtmicon-briefcase:before {
  content: "\e93c";
}
.rtmicon-thin.rtmicon-broker:before {
  content: "\e93d";
}
.rtmicon-thin.rtmicon-browser:before {
  content: "\e93e";
}
.rtmicon-thin.rtmicon-budget-planning:before {
  content: "\e93f";
}
.rtmicon-thin.rtmicon-budgeting:before {
  content: "\e940";
}
.rtmicon-thin.rtmicon-buldozer:before {
  content: "\e941";
}
.rtmicon-thin.rtmicon-business-law:before {
  content: "\e942";
}
.rtmicon-thin.rtmicon-business-workshop:before {
  content: "\e943";
}
.rtmicon-thin.rtmicon-calendar:before {
  content: "\e944";
}
.rtmicon-thin.rtmicon-calendar-check:before {
  content: "\e945";
}
.rtmicon-thin.rtmicon-calendar-days:before {
  content: "\e946";
}
.rtmicon-thin.rtmicon-call-to-action:before {
  content: "\e947";
}
.rtmicon-thin.rtmicon-camera:before {
  content: "\e948";
}
.rtmicon-thin.rtmicon-cancer-care:before {
  content: "\e949";
}
.rtmicon-thin.rtmicon-card-carousel:before {
  content: "\e94a";
}
.rtmicon-thin.rtmicon-cardio:before {
  content: "\e94b";
}
.rtmicon-thin.rtmicon-cardiology:before {
  content: "\e94c";
}
.rtmicon-thin.rtmicon-caret-down:before {
  content: "\e94d";
}
.rtmicon-thin.rtmicon-caret-left:before {
  content: "\e94e";
}
.rtmicon-thin.rtmicon-caret-right:before {
  content: "\e94f";
}
.rtmicon-thin.rtmicon-caret-up:before {
  content: "\e950";
}
.rtmicon-thin.rtmicon-certificate:before {
  content: "\e951";
}
.rtmicon-thin.rtmicon-certified-doctor:before {
  content: "\e952";
}
.rtmicon-thin.rtmicon-certified-institute:before {
  content: "\e953";
}
.rtmicon-thin.rtmicon-certified-nurse:before {
  content: "\e954";
}
.rtmicon-thin.rtmicon-certified-trainer:before {
  content: "\e955";
}
.rtmicon-thin.rtmicon-champange:before {
  content: "\e956";
}
.rtmicon-thin.rtmicon-chart:before {
  content: "\e957";
}
.rtmicon-thin.rtmicon-chart-line-down:before {
  content: "\e958";
}
.rtmicon-thin.rtmicon-chart-line-up:before {
  content: "\e959";
}
.rtmicon-thin.rtmicon-check:before {
  content: "\e95a";
}
.rtmicon-thin.rtmicon-chemistry:before {
  content: "\e95b";
}
.rtmicon-thin.rtmicon-chevron-down:before {
  content: "\e95c";
}
.rtmicon-thin.rtmicon-chevron-left:before {
  content: "\e95d";
}
.rtmicon-thin.rtmicon-chevron-right:before {
  content: "\e95e";
}
.rtmicon-thin.rtmicon-chevron-up:before {
  content: "\e95f";
}
.rtmicon-thin.rtmicon-chevrons-down:before {
  content: "\e960";
}
.rtmicon-thin.rtmicon-chevrons-left:before {
  content: "\e961";
}
.rtmicon-thin.rtmicon-chevrons-right:before {
  content: "\e962";
}
.rtmicon-thin.rtmicon-chevrons-up:before {
  content: "\e963";
}
.rtmicon-thin.rtmicon-circle-arrow-down:before {
  content: "\e964";
}
.rtmicon-thin.rtmicon-circle-arrow-down-left:before {
  content: "\e965";
}
.rtmicon-thin.rtmicon-circle-arrow-down-right:before {
  content: "\e966";
}
.rtmicon-thin.rtmicon-circle-arrow-left:before {
  content: "\e967";
}
.rtmicon-thin.rtmicon-circle-arrow-right:before {
  content: "\e968";
}
.rtmicon-thin.rtmicon-circle-arrow-up:before {
  content: "\e969";
}
.rtmicon-thin.rtmicon-circle-arrow-up-left:before {
  content: "\e96a";
}
.rtmicon-thin.rtmicon-circle-arrow-up-right:before {
  content: "\e96b";
}
.rtmicon-thin.rtmicon-circle-caret-down:before {
  content: "\e96c";
}
.rtmicon-thin.rtmicon-circle-caret-left:before {
  content: "\e96d";
}
.rtmicon-thin.rtmicon-circle-caret-right:before {
  content: "\e96e";
}
.rtmicon-thin.rtmicon-circle-caret-up:before {
  content: "\e96f";
}
.rtmicon-thin.rtmicon-circle-check:before {
  content: "\e970";
}
.rtmicon-thin.rtmicon-circle-chevron-down:before {
  content: "\e971";
}
.rtmicon-thin.rtmicon-circle-chevron-left:before {
  content: "\e972";
}
.rtmicon-thin.rtmicon-circle-chevron-right:before {
  content: "\e973";
}
.rtmicon-thin.rtmicon-circle-chevron-up:before {
  content: "\e974";
}
.rtmicon-thin.rtmicon-circle-down:before {
  content: "\e975";
}
.rtmicon-thin.rtmicon-circle-left:before {
  content: "\e976";
}
.rtmicon-thin.rtmicon-circle-minus:before {
  content: "\e977";
}
.rtmicon-thin.rtmicon-circle-plus:before {
  content: "\e978";
}
.rtmicon-thin.rtmicon-circle-right:before {
  content: "\e979";
}
.rtmicon-thin.rtmicon-circle-up:before {
  content: "\e97a";
}
.rtmicon-thin.rtmicon-circle-user:before {
  content: "\e97b";
}
.rtmicon-thin.rtmicon-circle-xmark:before {
  content: "\e97c";
}
.rtmicon-thin.rtmicon-city:before {
  content: "\e97d";
}
.rtmicon-thin.rtmicon-clapperboard-video:before {
  content: "\e97e";
}
.rtmicon-thin.rtmicon-client-happy:before {
  content: "\e97f";
}
.rtmicon-thin.rtmicon-client-list:before {
  content: "\e980";
}
.rtmicon-thin.rtmicon-clock:before {
  content: "\e981";
}
.rtmicon-thin.rtmicon-clock-desk:before {
  content: "\e982";
}
.rtmicon-thin.rtmicon-cloud-check:before {
  content: "\e983";
}
.rtmicon-thin.rtmicon-cloud-download:before {
  content: "\e984";
}
.rtmicon-thin.rtmicon-cloud-security:before {
  content: "\e985";
}
.rtmicon-thin.rtmicon-cloud-upload:before {
  content: "\e986";
}
.rtmicon-thin.rtmicon-code:before {
  content: "\e987";
}
.rtmicon-thin.rtmicon-coin:before {
  content: "\e988";
}
.rtmicon-thin.rtmicon-coin-dollar:before {
  content: "\e989";
}
.rtmicon-thin.rtmicon-coin-group:before {
  content: "\e98a";
}
.rtmicon-thin.rtmicon-coins:before {
  content: "\e98b";
}
.rtmicon-thin.rtmicon-color-pallete:before {
  content: "\e98c";
}
.rtmicon-thin.rtmicon-color-picker:before {
  content: "\e98d";
}
.rtmicon-thin.rtmicon-comments:before {
  content: "\e98e";
}
.rtmicon-thin.rtmicon-comments-question:before {
  content: "\e98f";
}
.rtmicon-thin.rtmicon-compass:before {
  content: "\e990";
}
.rtmicon-thin.rtmicon-concept-design:before {
  content: "\e991";
}
.rtmicon-thin.rtmicon-concrete:before {
  content: "\e992";
}
.rtmicon-thin.rtmicon-construction:before {
  content: "\e993";
}
.rtmicon-thin.rtmicon-content-slider:before {
  content: "\e994";
}
.rtmicon-thin.rtmicon-content-strategy:before {
  content: "\e995";
}
.rtmicon-thin.rtmicon-cookies:before {
  content: "\e996";
}
.rtmicon-thin.rtmicon-copywriting:before {
  content: "\e997";
}
.rtmicon-thin.rtmicon-corporate-building:before {
  content: "\e998";
}
.rtmicon-thin.rtmicon-counters:before {
  content: "\e999";
}
.rtmicon-thin.rtmicon-courthouse:before {
  content: "\e99a";
}
.rtmicon-thin.rtmicon-crane:before {
  content: "\e99b";
}
.rtmicon-thin.rtmicon-creative-idea:before {
  content: "\e99c";
}
.rtmicon-thin.rtmicon-credit-card:before {
  content: "\e99d";
}
.rtmicon-thin.rtmicon-credit-card-back:before {
  content: "\e99e";
}
.rtmicon-thin.rtmicon-credit-card-front:before {
  content: "\e99f";
}
.rtmicon-thin.rtmicon-criminal-database:before {
  content: "\e9a0";
}
.rtmicon-thin.rtmicon-currency:before {
  content: "\e9a1";
}
.rtmicon-thin.rtmicon-data-loss-prevention:before {
  content: "\e9a2";
}
.rtmicon-thin.rtmicon-data-privacy:before {
  content: "\e9a3";
}
.rtmicon-thin.rtmicon-data-security:before {
  content: "\e9a4";
}
.rtmicon-thin.rtmicon-database-security:before {
  content: "\e9a5";
}
.rtmicon-thin.rtmicon-decor-art:before {
  content: "\e9a6";
}
.rtmicon-thin.rtmicon-dermatology:before {
  content: "\e9a7";
}
.rtmicon-thin.rtmicon-design-development:before {
  content: "\e9a8";
}
.rtmicon-thin.rtmicon-design-process:before {
  content: "\e9a9";
}
.rtmicon-thin.rtmicon-desk:before {
  content: "\e9aa";
}
.rtmicon-thin.rtmicon-diamond:before {
  content: "\e9ab";
}
.rtmicon-thin.rtmicon-diet-program:before {
  content: "\e9ac";
}
.rtmicon-thin.rtmicon-digital-marketing:before {
  content: "\e9ad";
}
.rtmicon-thin.rtmicon-disco-light:before {
  content: "\e9ae";
}
.rtmicon-thin.rtmicon-doctor:before {
  content: "\e9af";
}
.rtmicon-thin.rtmicon-download:before {
  content: "\e9b0";
}
.rtmicon-thin.rtmicon-drawing-class:before {
  content: "\e9b1";
}
.rtmicon-thin.rtmicon-drug-offense:before {
  content: "\e9b2";
}
.rtmicon-thin.rtmicon-email-spam:before {
  content: "\e9b3";
}
.rtmicon-thin.rtmicon-emergency-care:before {
  content: "\e9b4";
}
.rtmicon-thin.rtmicon-engineering:before {
  content: "\e9b5";
}
.rtmicon-thin.rtmicon-envelope:before {
  content: "\e9b6";
}
.rtmicon-thin.rtmicon-envelope-open-dollar:before {
  content: "\e9b7";
}
.rtmicon-thin.rtmicon-event-list:before {
  content: "\e9b8";
}
.rtmicon-thin.rtmicon-event-venue:before {
  content: "\e9b9";
}
.rtmicon-thin.rtmicon-evidence:before {
  content: "\e9ba";
}
.rtmicon-thin.rtmicon-face-scrub:before {
  content: "\e9bb";
}
.rtmicon-thin.rtmicon-facial-treatment:before {
  content: "\e9bc";
}
.rtmicon-thin.rtmicon-factory-building:before {
  content: "\e9bd";
}
.rtmicon-thin.rtmicon-family-law:before {
  content: "\e9be";
}
.rtmicon-thin.rtmicon-fax:before {
  content: "\e9bf";
}
.rtmicon-thin.rtmicon-feather:before {
  content: "\e9c0";
}
.rtmicon-thin.rtmicon-file:before {
  content: "\e9c1";
}
.rtmicon-thin.rtmicon-file-info:before {
  content: "\e9c2";
}
.rtmicon-thin.rtmicon-file-pdf:before {
  content: "\e9c3";
}
.rtmicon-thin.rtmicon-film-play:before {
  content: "\e9c4";
}
.rtmicon-thin.rtmicon-finance-award:before {
  content: "\e9c5";
}
.rtmicon-thin.rtmicon-finance-shield:before {
  content: "\e9c6";
}
.rtmicon-thin.rtmicon-fingerprint:before {
  content: "\e9c7";
}
.rtmicon-thin.rtmicon-fingerprint-scan:before {
  content: "\e9c8";
}
.rtmicon-thin.rtmicon-firewall:before {
  content: "\e9c9";
}
.rtmicon-thin.rtmicon-flag:before {
  content: "\e9ca";
}
.rtmicon-thin.rtmicon-flip-box:before {
  content: "\e9cb";
}
.rtmicon-thin.rtmicon-floral-bath:before {
  content: "\e9cc";
}
.rtmicon-thin.rtmicon-folder:before {
  content: "\e9cd";
}
.rtmicon-thin.rtmicon-folder-case:before {
  content: "\e9ce";
}
.rtmicon-thin.rtmicon-folder-file:before {
  content: "\e9cf";
}
.rtmicon-thin.rtmicon-folder-open:before {
  content: "\e9d0";
}
.rtmicon-thin.rtmicon-folders:before {
  content: "\e9d1";
}
.rtmicon-thin.rtmicon-fullday-sessions:before {
  content: "\e9d2";
}
.rtmicon-thin.rtmicon-gavel:before {
  content: "\e9d3";
}
.rtmicon-thin.rtmicon-gear:before {
  content: "\e9d4";
}
.rtmicon-thin.rtmicon-gear-house:before {
  content: "\e9d5";
}
.rtmicon-thin.rtmicon-geography:before {
  content: "\e9d6";
}
.rtmicon-thin.rtmicon-glasses:before {
  content: "\e9d7";
}
.rtmicon-thin.rtmicon-global-economy:before {
  content: "\e9d8";
}
.rtmicon-thin.rtmicon-globe:before {
  content: "\e9d9";
}
.rtmicon-thin.rtmicon-globe-pointer:before {
  content: "\e9da";
}
.rtmicon-thin.rtmicon-gold-bars:before {
  content: "\e9db";
}
.rtmicon-thin.rtmicon-goverment-building:before {
  content: "\e9dc";
}
.rtmicon-thin.rtmicon-graphic-bar:before {
  content: "\e9dd";
}
.rtmicon-thin.rtmicon-graphic-chart:before {
  content: "\e9de";
}
.rtmicon-thin.rtmicon-graphic-pie:before {
  content: "\e9df";
}
.rtmicon-thin.rtmicon-grid-round:before {
  content: "\e9e0";
}
.rtmicon-thin.rtmicon-grid-rounds:before {
  content: "\e9e1";
}
.rtmicon-thin.rtmicon-growth:before {
  content: "\e9e2";
}
.rtmicon-thin.rtmicon-guitar:before {
  content: "\e9e3";
}
.rtmicon-thin.rtmicon-gym-bag:before {
  content: "\e9e4";
}
.rtmicon-thin.rtmicon-gym-machine:before {
  content: "\e9e5";
}
.rtmicon-thin.rtmicon-handcuffs:before {
  content: "\e9e6";
}
.rtmicon-thin.rtmicon-happy-students:before {
  content: "\e9e7";
}
.rtmicon-thin.rtmicon-hard-hat:before {
  content: "\e9e8";
}
.rtmicon-thin.rtmicon-health-check:before {
  content: "\e9e9";
}
.rtmicon-thin.rtmicon-health-report:before {
  content: "\e9ea";
}
.rtmicon-thin.rtmicon-healthy-nutrition:before {
  content: "\e9eb";
}
.rtmicon-thin.rtmicon-heart-care:before {
  content: "\e9ec";
}
.rtmicon-thin.rtmicon-help:before {
  content: "\e9ed";
}
.rtmicon-thin.rtmicon-herb:before {
  content: "\e9ee";
}
.rtmicon-thin.rtmicon-home-renovation:before {
  content: "\e9ef";
}
.rtmicon-thin.rtmicon-horizontal-progress-bar:before {
  content: "\e9f0";
}
.rtmicon-thin.rtmicon-hospital-building:before {
  content: "\e9f1";
}
.rtmicon-thin.rtmicon-hot-stone-therapy:before {
  content: "\e9f2";
}
.rtmicon-thin.rtmicon-house:before {
  content: "\e9f3";
}
.rtmicon-thin.rtmicon-house-building:before {
  content: "\e9f4";
}
.rtmicon-thin.rtmicon-house-plan:before {
  content: "\e9f5";
}
.rtmicon-thin.rtmicon-id-card:before {
  content: "\e9f6";
}
.rtmicon-thin.rtmicon-image:before {
  content: "\e9f7";
}
.rtmicon-thin.rtmicon-image-accordion:before {
  content: "\e9f8";
}
.rtmicon-thin.rtmicon-image-gallery:before {
  content: "\e9f9";
}
.rtmicon-thin.rtmicon-image-hotspot:before {
  content: "\e9fa";
}
.rtmicon-thin.rtmicon-image-info:before {
  content: "\e9fb";
}
.rtmicon-thin.rtmicon-image-list:before {
  content: "\e9fc";
}
.rtmicon-thin.rtmicon-image-masonry:before {
  content: "\e9fd";
}
.rtmicon-thin.rtmicon-image-showcase:before {
  content: "\e9fe";
}
.rtmicon-thin.rtmicon-image-slider:before {
  content: "\e9ff";
}
.rtmicon-thin.rtmicon-images:before {
  content: "\ea00";
}
.rtmicon-thin.rtmicon-immigration-issue:before {
  content: "\ea01";
}
.rtmicon-thin.rtmicon-insurance:before {
  content: "\ea02";
}
.rtmicon-thin.rtmicon-interior-design:before {
  content: "\ea03";
}
.rtmicon-thin.rtmicon-internet-banking:before {
  content: "\ea04";
}
.rtmicon-thin.rtmicon-invoice:before {
  content: "\ea05";
}
.rtmicon-thin.rtmicon-invoice-dollar:before {
  content: "\ea06";
}
.rtmicon-thin.rtmicon-involved:before {
  content: "\ea07";
}
.rtmicon-thin.rtmicon-judge:before {
  content: "\ea08";
}
.rtmicon-thin.rtmicon-kettlebell:before {
  content: "\ea09";
}
.rtmicon-thin.rtmicon-key-left:before {
  content: "\ea0a";
}
.rtmicon-thin.rtmicon-key-right:before {
  content: "\ea0b";
}
.rtmicon-thin.rtmicon-knowledge-class:before {
  content: "\ea0c";
}
.rtmicon-thin.rtmicon-landscaping-design:before {
  content: "\ea0d";
}
.rtmicon-thin.rtmicon-laptop:before {
  content: "\ea0e";
}
.rtmicon-thin.rtmicon-law-book:before {
  content: "\ea0f";
}
.rtmicon-thin.rtmicon-lawyer:before {
  content: "\ea10";
}
.rtmicon-thin.rtmicon-legal:before {
  content: "\ea11";
}
.rtmicon-thin.rtmicon-letter-law:before {
  content: "\ea12";
}
.rtmicon-thin.rtmicon-lightblub:before {
  content: "\ea13";
}
.rtmicon-thin.rtmicon-link:before {
  content: "\ea14";
}
.rtmicon-thin.rtmicon-link-simple:before {
  content: "\ea15";
}
.rtmicon-thin.rtmicon-list:before {
  content: "\ea16";
}
.rtmicon-thin.rtmicon-literature:before {
  content: "\ea17";
}
.rtmicon-thin.rtmicon-loader:before {
  content: "\ea18";
}
.rtmicon-thin.rtmicon-lock:before {
  content: "\ea19";
}
.rtmicon-thin.rtmicon-locker:before {
  content: "\ea1a";
}
.rtmicon-thin.rtmicon-logo-branding:before {
  content: "\ea1b";
}
.rtmicon-thin.rtmicon-management:before {
  content: "\ea1c";
}
.rtmicon-thin.rtmicon-manicure:before {
  content: "\ea1d";
}
.rtmicon-thin.rtmicon-masquerade-event:before {
  content: "\ea1e";
}
.rtmicon-thin.rtmicon-massage-therapy:before {
  content: "\ea1f";
}
.rtmicon-thin.rtmicon-measurement:before {
  content: "\ea20";
}
.rtmicon-thin.rtmicon-medical-checkup:before {
  content: "\ea21";
}
.rtmicon-thin.rtmicon-megaphone:before {
  content: "\ea22";
}
.rtmicon-thin.rtmicon-microphone:before {
  content: "\ea23";
}
.rtmicon-thin.rtmicon-minus:before {
  content: "\ea24";
}
.rtmicon-thin.rtmicon-mobile:before {
  content: "\ea25";
}
.rtmicon-thin.rtmicon-mockup:before {
  content: "\ea26";
}
.rtmicon-thin.rtmicon-money:before {
  content: "\ea27";
}
.rtmicon-thin.rtmicon-money-bank-check:before {
  content: "\ea28";
}
.rtmicon-thin.rtmicon-money-check:before {
  content: "\ea29";
}
.rtmicon-thin.rtmicon-money-currency:before {
  content: "\ea2a";
}
.rtmicon-thin.rtmicon-money-management:before {
  content: "\ea2b";
}
.rtmicon-thin.rtmicon-money-rotation:before {
  content: "\ea2c";
}
.rtmicon-thin.rtmicon-money-target:before {
  content: "\ea2d";
}
.rtmicon-thin.rtmicon-moodboard:before {
  content: "\ea2e";
}
.rtmicon-thin.rtmicon-motion-graphic:before {
  content: "\ea2f";
}
.rtmicon-thin.rtmicon-natural-mask:before {
  content: "\ea30";
}
.rtmicon-thin.rtmicon-network-security:before {
  content: "\ea31";
}
.rtmicon-thin.rtmicon-networking:before {
  content: "\ea32";
}
.rtmicon-thin.rtmicon-note-hashtag:before {
  content: "\ea33";
}
.rtmicon-thin.rtmicon-notes:before {
  content: "\ea34";
}
.rtmicon-thin.rtmicon-nurse:before {
  content: "\ea35";
}
.rtmicon-thin.rtmicon-nutritionist:before {
  content: "\ea36";
}
.rtmicon-thin.rtmicon-office-building:before {
  content: "\ea37";
}
.rtmicon-thin.rtmicon-online-course:before {
  content: "\ea38";
}
.rtmicon-thin.rtmicon-opening-ceremony-scissor:before {
  content: "\ea39";
}
.rtmicon-thin.rtmicon-operation-theater:before {
  content: "\ea3a";
}
.rtmicon-thin.rtmicon-orthopedics:before {
  content: "\ea3b";
}
.rtmicon-thin.rtmicon-painting:before {
  content: "\ea3c";
}
.rtmicon-thin.rtmicon-paper-form:before {
  content: "\ea3d";
}
.rtmicon-thin.rtmicon-paper-plane:before {
  content: "\ea3e";
}
.rtmicon-thin.rtmicon-pedicure:before {
  content: "\ea3f";
}
.rtmicon-thin.rtmicon-pen:before {
  content: "\ea40";
}
.rtmicon-thin.rtmicon-pen-paintbrush:before {
  content: "\ea41";
}
.rtmicon-thin.rtmicon-pencil:before {
  content: "\ea42";
}
.rtmicon-thin.rtmicon-pencil-case:before {
  content: "\ea43";
}
.rtmicon-thin.rtmicon-personal-trainer:before {
  content: "\ea44";
}
.rtmicon-thin.rtmicon-pharmacy:before {
  content: "\ea45";
}
.rtmicon-thin.rtmicon-pharmacy-store:before {
  content: "\ea46";
}
.rtmicon-thin.rtmicon-phone-classic:before {
  content: "\ea47";
}
.rtmicon-thin.rtmicon-photography-camera:before {
  content: "\ea48";
}
.rtmicon-thin.rtmicon-physiotherapy:before {
  content: "\ea49";
}
.rtmicon-thin.rtmicon-pie-chart:before {
  content: "\ea4a";
}
.rtmicon-thin.rtmicon-pie-chart-analyst:before {
  content: "\ea4b";
}
.rtmicon-thin.rtmicon-pin-map-location:before {
  content: "\ea4c";
}
.rtmicon-thin.rtmicon-planet:before {
  content: "\ea4d";
}
.rtmicon-thin.rtmicon-play:before {
  content: "\ea4e";
}
.rtmicon-thin.rtmicon-play-areas:before {
  content: "\ea4f";
}
.rtmicon-thin.rtmicon-plumbing:before {
  content: "\ea50";
}
.rtmicon-thin.rtmicon-plus:before {
  content: "\ea51";
}
.rtmicon-thin.rtmicon-police-badge:before {
  content: "\ea52";
}
.rtmicon-thin.rtmicon-presentation:before {
  content: "\ea53";
}
.rtmicon-thin.rtmicon-pricing-table:before {
  content: "\ea54";
}
.rtmicon-thin.rtmicon-private-event:before {
  content: "\ea55";
}
.rtmicon-thin.rtmicon-pro-equipment:before {
  content: "\ea56";
}
.rtmicon-thin.rtmicon-product-highlight:before {
  content: "\ea57";
}
.rtmicon-thin.rtmicon-profit:before {
  content: "\ea58";
}
.rtmicon-thin.rtmicon-progress-step:before {
  content: "\ea59";
}
.rtmicon-thin.rtmicon-project-done:before {
  content: "\ea5a";
}
.rtmicon-thin.rtmicon-protection:before {
  content: "\ea5b";
}
.rtmicon-thin.rtmicon-qualifed-teachers:before {
  content: "\ea5c";
}
.rtmicon-thin.rtmicon-quote:before {
  content: "\ea5d";
}
.rtmicon-thin.rtmicon-radial-progress-bar:before {
  content: "\ea5e";
}
.rtmicon-thin.rtmicon-radiology:before {
  content: "\ea5f";
}
.rtmicon-thin.rtmicon-rate:before {
  content: "\ea60";
}
.rtmicon-thin.rtmicon-relaxation:before {
  content: "\ea61";
}
.rtmicon-thin.rtmicon-renovation:before {
  content: "\ea62";
}
.rtmicon-thin.rtmicon-repair:before {
  content: "\ea63";
}
.rtmicon-thin.rtmicon-report:before {
  content: "\ea64";
}
.rtmicon-thin.rtmicon-residential-design:before {
  content: "\ea65";
}
.rtmicon-thin.rtmicon-roadblock:before {
  content: "\ea66";
}
.rtmicon-thin.rtmicon-rocket:before {
  content: "\ea67";
}
.rtmicon-thin.rtmicon-romethemekit:before {
  content: "\ea68";
}
.rtmicon-thin.rtmicon-roofing-service:before {
  content: "\ea69";
}
.rtmicon-thin.rtmicon-sack-dollar:before {
  content: "\ea6a";
}
.rtmicon-thin.rtmicon-sauna-relax:before {
  content: "\ea6b";
}
.rtmicon-thin.rtmicon-saving:before {
  content: "\ea6c";
}
.rtmicon-thin.rtmicon-scaffolding:before {
  content: "\ea6d";
}
.rtmicon-thin.rtmicon-scale-balanced:before {
  content: "\ea6e";
}
.rtmicon-thin.rtmicon-scale-unbalanced:before {
  content: "\ea6f";
}
.rtmicon-thin.rtmicon-scale-unbalanced-flip:before {
  content: "\ea70";
}
.rtmicon-thin.rtmicon-screw:before {
  content: "\ea71";
}
.rtmicon-thin.rtmicon-search:before {
  content: "\ea72";
}
.rtmicon-thin.rtmicon-security-camera:before {
  content: "\ea73";
}
.rtmicon-thin.rtmicon-server-protection:before {
  content: "\ea74";
}
.rtmicon-thin.rtmicon-shield:before {
  content: "\ea75";
}
.rtmicon-thin.rtmicon-shield-block:before {
  content: "\ea76";
}
.rtmicon-thin.rtmicon-shield-check:before {
  content: "\ea77";
}
.rtmicon-thin.rtmicon-shield-minus:before {
  content: "\ea78";
}
.rtmicon-thin.rtmicon-shield-plus:before {
  content: "\ea79";
}
.rtmicon-thin.rtmicon-shield-xmark:before {
  content: "\ea7a";
}
.rtmicon-thin.rtmicon-shopping-cart:before {
  content: "\ea7b";
}
.rtmicon-thin.rtmicon-sidebar:before {
  content: "\ea7c";
}
.rtmicon-thin.rtmicon-skilled-teachers:before {
  content: "\ea7d";
}
.rtmicon-thin.rtmicon-sliders:before {
  content: "\ea7e";
}
.rtmicon-thin.rtmicon-sliders-up:before {
  content: "\ea7f";
}
.rtmicon-thin.rtmicon-smart-home:before {
  content: "\ea80";
}
.rtmicon-thin.rtmicon-smart-lock:before {
  content: "\ea81";
}
.rtmicon-thin.rtmicon-social-advertising:before {
  content: "\ea82";
}
.rtmicon-thin.rtmicon-social-share:before {
  content: "\ea83";
}
.rtmicon-thin.rtmicon-software:before {
  content: "\ea84";
}
.rtmicon-thin.rtmicon-speaker:before {
  content: "\ea85";
}
.rtmicon-thin.rtmicon-speaker-group:before {
  content: "\ea86";
}
.rtmicon-thin.rtmicon-special-bath:before {
  content: "\ea87";
}
.rtmicon-thin.rtmicon-specialist:before {
  content: "\ea88";
}
.rtmicon-thin.rtmicon-speedometer:before {
  content: "\ea89";
}
.rtmicon-thin.rtmicon-sponsor:before {
  content: "\ea8a";
}
.rtmicon-thin.rtmicon-square-arrow-down:before {
  content: "\ea8b";
}
.rtmicon-thin.rtmicon-square-arrow-down-left:before {
  content: "\ea8c";
}
.rtmicon-thin.rtmicon-square-arrow-down-right:before {
  content: "\ea8d";
}
.rtmicon-thin.rtmicon-square-arrow-left:before {
  content: "\ea8e";
}
.rtmicon-thin.rtmicon-square-arrow-right:before {
  content: "\ea8f";
}
.rtmicon-thin.rtmicon-square-arrow-up:before {
  content: "\ea90";
}
.rtmicon-thin.rtmicon-square-arrow-up-left:before {
  content: "\ea91";
}
.rtmicon-thin.rtmicon-square-arrow-up-right:before {
  content: "\ea92";
}
.rtmicon-thin.rtmicon-square-caret-down:before {
  content: "\ea93";
}
.rtmicon-thin.rtmicon-square-caret-left:before {
  content: "\ea94";
}
.rtmicon-thin.rtmicon-square-caret-right:before {
  content: "\ea95";
}
.rtmicon-thin.rtmicon-square-caret-up:before {
  content: "\ea96";
}
.rtmicon-thin.rtmicon-square-check:before {
  content: "\ea97";
}
.rtmicon-thin.rtmicon-square-minus:before {
  content: "\ea98";
}
.rtmicon-thin.rtmicon-square-plus:before {
  content: "\ea99";
}
.rtmicon-thin.rtmicon-square-user:before {
  content: "\ea9a";
}
.rtmicon-thin.rtmicon-square-xmark:before {
  content: "\ea9b";
}
.rtmicon-thin.rtmicon-stair:before {
  content: "\ea9c";
}
.rtmicon-thin.rtmicon-stamp:before {
  content: "\ea9d";
}
.rtmicon-thin.rtmicon-star:before {
  content: "\ea9e";
}
.rtmicon-thin.rtmicon-store:before {
  content: "\ea9f";
}
.rtmicon-thin.rtmicon-structural:before {
  content: "\eaa0";
}
.rtmicon-thin.rtmicon-supplement:before {
  content: "\eaa1";
}
.rtmicon-thin.rtmicon-support-protection:before {
  content: "\eaa2";
}
.rtmicon-thin.rtmicon-table-comparison:before {
  content: "\eaa3";
}
.rtmicon-thin.rtmicon-table-data:before {
  content: "\eaa4";
}
.rtmicon-thin.rtmicon-tablet:before {
  content: "\eaa5";
}
.rtmicon-thin.rtmicon-tag:before {
  content: "\eaa6";
}
.rtmicon-thin.rtmicon-target:before {
  content: "\eaa7";
}
.rtmicon-thin.rtmicon-tax-law:before {
  content: "\eaa8";
}
.rtmicon-thin.rtmicon-taxation:before {
  content: "\eaa9";
}
.rtmicon-thin.rtmicon-taxes:before {
  content: "\eaaa";
}
.rtmicon-thin.rtmicon-team:before {
  content: "\eaab";
}
.rtmicon-thin.rtmicon-testimonial:before {
  content: "\eaac";
}
.rtmicon-thin.rtmicon-testimonial-carousel:before {
  content: "\eaad";
}
.rtmicon-thin.rtmicon-therapies:before {
  content: "\eaae";
}
.rtmicon-thin.rtmicon-thermal-spa:before {
  content: "\eaaf";
}
.rtmicon-thin.rtmicon-threat-intelligence:before {
  content: "\eab0";
}
.rtmicon-thin.rtmicon-ticket:before {
  content: "\eab1";
}
.rtmicon-thin.rtmicon-timeline:before {
  content: "\eab2";
}
.rtmicon-thin.rtmicon-timer:before {
  content: "\eab3";
}
.rtmicon-thin.rtmicon-toggle-off:before {
  content: "\eab4";
}
.rtmicon-thin.rtmicon-toggle-on:before {
  content: "\eab5";
}
.rtmicon-thin.rtmicon-top-speaker:before {
  content: "\eab6";
}
.rtmicon-thin.rtmicon-towels:before {
  content: "\eab7";
}
.rtmicon-thin.rtmicon-trainers:before {
  content: "\eab8";
}
.rtmicon-thin.rtmicon-training-center:before {
  content: "\eab9";
}
.rtmicon-thin.rtmicon-trash:before {
  content: "\eaba";
}
.rtmicon-thin.rtmicon-treatment:before {
  content: "\eabb";
}
.rtmicon-thin.rtmicon-trophy:before {
  content: "\eabc";
}
.rtmicon-thin.rtmicon-ui-ux-design:before {
  content: "\eabd";
}
.rtmicon-thin.rtmicon-upload:before {
  content: "\eabe";
}
.rtmicon-thin.rtmicon-urban-planning:before {
  content: "\eabf";
}
.rtmicon-thin.rtmicon-user:before {
  content: "\eac0";
}
.rtmicon-thin.rtmicon-users:before {
  content: "\eac1";
}
.rtmicon-thin.rtmicon-vaccination:before {
  content: "\eac2";
}
.rtmicon-thin.rtmicon-video-camera:before {
  content: "\eac3";
}
.rtmicon-thin.rtmicon-video-marketing:before {
  content: "\eac4";
}
.rtmicon-thin.rtmicon-videography-camera:before {
  content: "\eac5";
}
.rtmicon-thin.rtmicon-virus-protection:before {
  content: "\eac6";
}
.rtmicon-thin.rtmicon-volume-down:before {
  content: "\eac7";
}
.rtmicon-thin.rtmicon-volume-mute:before {
  content: "\eac8";
}
.rtmicon-thin.rtmicon-volume-up:before {
  content: "\eac9";
}
.rtmicon-thin.rtmicon-wallet:before {
  content: "\eaca";
}
.rtmicon-thin.rtmicon-wallet-dollar:before {
  content: "\eacb";
}
.rtmicon-thin.rtmicon-wallet-money:before {
  content: "\eacc";
}
.rtmicon-thin.rtmicon-watch:before {
  content: "\eacd";
}
.rtmicon-thin.rtmicon-web-design:before {
  content: "\eace";
}
.rtmicon-thin.rtmicon-web-development:before {
  content: "\eacf";
}
.rtmicon-thin.rtmicon-web-security:before {
  content: "\ead0";
}
.rtmicon-thin.rtmicon-wedding-event:before {
  content: "\ead1";
}
.rtmicon-thin.rtmicon-weight-loss:before {
  content: "\ead2";
}
.rtmicon-thin.rtmicon-working-hours:before {
  content: "\ead3";
}
.rtmicon-thin.rtmicon-xmark:before {
  content: "\ead4";
}
.rtmicon-thin.rtmicon-yoga:before {
  content: "\ead5";
}
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap");

.elementor-panel .elementor-element .rkit-widget-icon {
  color: #00cea6;
}

.elementor-panel .elementor-element .rkit-widget-icon::after {
  content: "RTM";
  position: absolute;
  top: 3px;
  right: 3px;
  color: white;
  font-size: 9px;
  font-weight: 400;
  padding: 1px 2px;
  line-height: 10px;
  display: inline-block;
  border-radius: 2px;
  font-family: "Open Sans", Roboto, Helvetica, Arial, sans-serif;
}

.elementor-panel .elementor-element:hover .rkit-widget-icon::after {
  color: #00cea6;
}

.elementor-panel .elementor-element:has(.rkit-widget-icon):hover .title {
  color: #00cea6;
}

.elementor-element .rtm-barchart-icons {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" fill="%2333e4c0" height="800px" width="800px" version="1.1" id="Capa_1" viewBox="0 0 282.772 282.772" xml:space="preserve"><g><path d="M61.472,143.036H23.881c-4.971,0-9,4.029-9,9v94.185c0,4.971,4.029,9,9,9h37.591c4.971,0,9-4.029,9-9v-94.185 C70.472,147.065,66.443,143.036,61.472,143.036z M52.472,237.22H32.881v-76.185h19.591V237.22z"/><path d="M132.238,93.194H94.648c-4.971,0-9,4.029-9,9V246.22c0,4.971,4.029,9,9,9h37.591c4.971,0,9-4.029,9-9V102.194 C141.238,97.224,137.209,93.194,132.238,93.194z M123.238,237.22h-19.591V111.194h19.591V237.22z"/><path d="M203.005,150.471h-37.591c-4.971,0-9,4.029-9,9v86.749c0,4.971,4.029,9,9,9h37.591c4.971,0,9-4.029,9-9v-86.749 C212.005,154.5,207.976,150.471,203.005,150.471z M194.005,237.22h-19.591v-68.749h19.591V237.22z"/><path d="M273.772,96.516H236.18c-4.971,0-9,4.029-9,9V246.22c0,4.971,4.029,9,9,9h37.591c4.971,0,9-4.029,9-9V105.516 C282.772,100.545,278.742,96.516,273.772,96.516z M264.772,237.22H245.18V114.516h19.591V237.22z"/><path d="M178.918,112.796c3.276,2.381,7.739,2.28,10.905-0.246l67.269-53.682l-0.298,8.847c-0.167,4.968,3.724,9.131,8.692,9.298 c0.104,0.003,0.206,0.005,0.309,0.005c4.831,0,8.826-3.833,8.99-8.697l1.061-31.466c0.083-2.491-0.869-4.905-2.631-6.667 c-1.762-1.763-4.184-2.719-6.667-2.631l-31.466,1.061c-4.968,0.167-8.859,4.331-8.692,9.298c0.167,4.967,4.314,8.85,9.298,8.692 l8.261-0.278l-59.993,47.876l-68.22-49.585c-2.988-2.172-7-2.298-10.117-0.317L4.176,108.734 c-4.196,2.665-5.437,8.227-2.772,12.422c1.715,2.7,4.628,4.176,7.605,4.176c1.65,0,3.321-0.454,4.817-1.404l96.276-61.15 L178.918,112.796z"/></g></svg>');
  font-size: 83px;
  background-size: cover;
  display: inline-flex;
  width: 30px;
  height: 30px;
}

.elementor-element .rtm-linechart-icons {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%2333e4c0" class="bi bi-graph-up" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M0 0h1v15h15v1H0V0Zm14.817 3.113a.5.5 0 0 1 .07.704l-4.5 5.5a.5.5 0 0 1-.74.037L7.06 6.767l-3.656 5.027a.5.5 0 0 1-.808-.588l4-5.5a.5.5 0 0 1 .758-.06l2.609 2.61 4.15-5.073a.5.5 0 0 1 .704-.07Z"/></svg>');
  font-size: 83px;
  background-size: cover;
  display: inline-flex;
  width: 30px;
  height: 30px;
}

.elementor-element .rtm-piechart-icons {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="%2333e4c0" class="bi bi-pie-chart-fill" viewBox="0 0 16 16"><path d="M15.985 8.5H8.207l-5.5 5.5a8 8 0 0 0 13.277-5.5zM2 13.292A8 8 0 0 1 7.5.015v7.778l-5.5 5.5zM8.5.015V7.5h7.485A8.001 8.001 0 0 0 8.5.015z"/></svg>');
  font-size: 83px;
  background-size: cover;
  display: inline-flex;
  width: 30px;
  height: 30px;
}

.elementor-element .rtm-progressbar-icons {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" width="50px" height="50px" fill="%2333e4c0"><path d="M 2.8125 6 C 2.335938 6.089844 1.992188 6.511719 2 7 L 2 15 C 2 15.550781 2.449219 16 3 16 L 47 16 C 47.550781 16 48 15.550781 48 15 L 48 7 C 48 6.449219 47.550781 6 47 6 L 3 6 C 2.96875 6 2.9375 6 2.90625 6 C 2.875 6 2.84375 6 2.8125 6 Z M 12 8 L 46 8 L 46 14 L 12 14 Z M 2.8125 20 C 2.335938 20.089844 1.992188 20.511719 2 21 L 2 29 C 2 29.550781 2.449219 30 3 30 L 47 30 C 47.550781 30 48 29.550781 48 29 L 48 21 C 48 20.449219 47.550781 20 47 20 L 3 20 C 2.96875 20 2.9375 20 2.90625 20 C 2.875 20 2.84375 20 2.8125 20 Z M 36 22 L 46 22 L 46 28 L 36 28 Z M 2.8125 34 C 2.335938 34.089844 1.992188 34.511719 2 35 L 2 43 C 2 43.550781 2.449219 44 3 44 L 47 44 C 47.550781 44 48 43.550781 48 43 L 48 35 C 48 34.449219 47.550781 34 47 34 L 3 34 C 2.96875 34 2.9375 34 2.90625 34 C 2.875 34 2.84375 34 2.8125 34 Z M 24 36 L 46 36 L 46 42 L 24 42 Z"/></svg>');
  font-size: 83px;
  background-size: cover;
  display: inline-flex;
  width: 30px;
  height: 30px;
}

.posts-pagination {
  display: flex;
  flex-direction: row;
  gap: 0;
  margin-bottom: 0.5rem;
}

.posts-pagination .page-numbers {
  padding: 0.5rem;
  text-decoration: none;
  background-color: white;
}

.posts-pagination span.page-numbers {
  background-color: #00cea6;
}

.btn {
  font-weight: 600;
  padding: 12px 24px 12px 24px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
  justify-content: center;
}

.btn.link {
  color: #00cea6;
}

.btn.btn-gradient-accent {
  --x: 0;
  background: linear-gradient(90deg, #000000 -14.64%, #00cea6 114.79%, #000000)
    var(--x, 0) / 200%;
  color: white;
  transition: 0.5s;
  border: 1px solid #00cea6;
}

.btn.btn-gradient-accent:hover {
  --x: 90%;
  color: white;
  border: 1px solid #00cea6;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 206, 165, 0.33);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 206, 165, 0.33);
  box-shadow: 0px 2px 10px 0px rgba(0, 206, 165, 0.33);
}

.btn.btn-gradient-accent:disabled {
  color: #8f8f8f;
  opacity: 0.5;
}

a:focus {
  box-shadow: none;
  color: currentColor;
}

.accent-color {
  color: #00cea6;
}

.btn-accent {
  background-color: #00cea6;
}

.btn-accent:hover {
  background-color: #27d3b0;
}

.btn-accent:disabled {
  background-color: #2a9c85;
  border: none;
  outline: none;
}

.btn.btn-outline-accent {
  background-color: transparent;
  border: 1px solid #00cea6;
  color: #00cea6;
}

.btn.btn-outline-accent:focus {
  color: #00cea6 !important;
}

.btn-accent:focus,
.btn-gradient-accent:focus {
  color: white !important;
}

.link-accent:focus {
  color: #00cea6 !important;
  border: none;
}

.btn-outline-accent:hover {
  --x: 90%;
  background: linear-gradient(90deg, #000000 -14.64%, #00cea6 114.79%, #000000)
    var(--x, 0) / 200%;
  color: white;
  border: 1px solid #00cea6;
  -webkit-box-shadow: 0px 2px 10px 0px rgba(0, 206, 165, 0.33);
  -moz-box-shadow: 0px 2px 10px 0px rgba(0, 206, 165, 0.33);
  box-shadow: 0px 2px 10px 0px rgba(0, 206, 165, 0.33);
}

.nav.nav-underline .nav-item .nav-link,
.nav.nav-underline .nav-item .nav-link:focus {
  color: white;
  border-width: 0px 0px 2px 0px;
  border-style: solid;
  border-color: transparent;
  background-color: transparent;
  outline: none;
  box-shadow: none;
}

.nav.nav-underline .nav-item .nav-link.active {
  /* border-color: #00cea6; */
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-image-source: linear-gradient(90deg, #00cea6 0%, #00000000 100%);
  border-image-slice: 1;
  text-shadow: 2px 3px 4px #00cea6;
}

.rtm-checked-icon {
  background-image: url('data:image/svg+xml,<svg height="800px" width="800px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 507.2 507.2" xml:space="preserve"><circle style="fill:%2332BA7C;" cx="253.6" cy="253.6" r="253.6"/><path style="fill:%230AA06E;" d="M188.8,368l130.4,130.4c108-28.8,188-127.2,188-244.8c0-2.4,0-4.8,0-7.2L404.8,152L188.8,368z"/><g><path style="fill:%23FFFFFF;" d="M260,310.4c11.2,11.2,11.2,30.4,0,41.6l-23.2,23.2c-11.2,11.2-30.4,11.2-41.6,0L93.6,272.8c-11.2-11.2-11.2-30.4,0-41.6l23.2-23.2c11.2-11.2,30.4-11.2,41.6,0L260,310.4z"/><path style="fill:%23FFFFFF;" d="M348.8,133.6c11.2-11.2,30.4-11.2,41.6,0l23.2,23.2c11.2,11.2,11.2,30.4,0,41.6l-176,175.2c-11.2,11.2-30.4,11.2-41.6,0l-23.2-23.2c-11.2-11.2-11.2-30.4,0-41.6L348.8,133.6z"/></g></svg>');
  font-size: 75px;
  background-size: cover;
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.rtm-invalid-icon {
  background-image: url('data:image/svg+xml,<svg height="800px" width="800px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 507.2 507.2" xml:space="preserve"><circle style="fill:%23F15249;" cx="253.6" cy="253.6" r="253.6"/><path style="fill:%23AD0E0E;" d="M147.2,368L284,504.8c115.2-13.6,206.4-104,220.8-219.2L367.2,148L147.2,368z"/><path style="fill:%23FFFFFF;" d="M373.6,309.6c11.2,11.2,11.2,30.4,0,41.6l-22.4,22.4c-11.2,11.2-30.4,11.2-41.6,0l-176-176c-11.2-11.2-11.2-30.4,0-41.6l23.2-23.2c11.2-11.2,30.4-11.2,41.6,0L373.6,309.6z"/><path style="fill:%23D6D6D6;" d="M280.8,216L216,280.8l93.6,92.8c11.2,11.2,30.4,11.2,41.6,0l23.2-23.2c11.2-11.2,11.2-30.4,0-41.6L280.8,216z"/><path style="fill:%23FFFFFF;" d="M309.6,133.6c11.2-11.2,30.4-11.2,41.6,0l23.2,23.2c11.2,11.2,11.2,30.4,0,41.6L197.6,373.6c-11.2,11.2-30.4,11.2-41.6,0l-22.4-22.4c-11.2-11.2-11.2-30.4,0-41.6L309.6,133.6z"/></svg>');
  font-size: 75px;
  background-size: cover;
  display: inline-flex;
  width: 20px;
  height: 20px;
}

.rtm-text-font {
  font-family: "Bricolage Grotesque", sans-serif;
}

.glass-effect {
  background: rgba(165, 165, 165, 0.24);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(11.9px);
  -webkit-backdrop-filter: blur(11.9px);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.spacer-2 {
  height: 2rem;
}

.header-sticky {
  position: sticky;
  top: 63px;
}

.rtm-container {
  max-width: 1840px;
}

.bg-accent-color {
  background-color: #00cea6;
}

.rtm-version {
  background-color: #00cea6;
  font-size: 10px;
  color: #000;
  padding-block: 2px;
  padding-inline: 10px;
  border-radius: 5px;
}

.rtm-bg-gradient-1 {
  background-color: hsla(228, 0%, 3%, 1) !important;
  background-image: radial-gradient(
      at 100% 0%,
      hsla(240, 0%, 3%, 1) 0px,
      transparent 50%
    ),
    radial-gradient(at 20% 44%, hsla(168, 0%, 3%, 1) 0px, transparent 50%),
    radial-gradient(at 0% 0%, hsla(168, 100%, 40%, 0.38) 0px, transparent 50%),
    radial-gradient(at 73% 69%, hsla(168, 100%, 40%, 0.33) 0px, transparent 50%),
    radial-gradient(at 56% 62%, hsla(168, 100%, 40%, 0) 0px, transparent 50%) !important;
}

.rtm-bg-gradient-2 {
  background-color: hsla(228, 0%, 3%, 1);
  background-image: radial-gradient(
      at 100% 0%,
      hsla(240, 0%, 3%, 1) 0px,
      transparent 50%
    ),
    radial-gradient(at 11% 75%, hsla(120, 0%, 3%, 1) 0px, transparent 50%),
    radial-gradient(at 0% 0%, hsla(278, 69%, 69%, 0.38) 0px, transparent 50%),
    radial-gradient(at 73% 69%, hsla(283, 83%, 42%, 0.33) 0px, transparent 50%),
    radial-gradient(at 54% 70%, hsla(168, 100%, 40%, 0.46) 0px, transparent 50%);
}

.rtm-bg-gradient-3 {
  background-color: hsla(55, 0%, 3%, 1);
  background-image: radial-gradient(
      at 22% 12%,
      hsla(168, 100%, 40%, 0.3) 0px,
      transparent 50%
    ),
    radial-gradient(at 8% 40%, hsla(66, 0%, 3%, 1) 0px, transparent 50%),
    radial-gradient(at 95% 43%, hsla(168, 100%, 40%, 0.2) 0px, transparent 50%),
    radial-gradient(at 80% 94%, hsla(59, 0%, 3%, 1) 0px, transparent 50%),
    radial-gradient(at 90% 60%, hsla(327, 0%, 3%, 1) 0px, transparent 50%),
    radial-gradient(at 91% 33%, hsla(289, 0%, 3%, 1) 0px, transparent 50%),
    radial-gradient(at 44% 41%, hsla(210, 0%, 3%, 1) 0px, transparent 50%);
}

.rtm-bg-gradient-4 {
  background-color: hsla(55, 0%, 3%, 1);
  background-image: radial-gradient(
      at 14% 8%,
      hsla(168, 100%, 40%, 0.31) 0px,
      transparent 50%
    ),
    radial-gradient(at 0% 21%, hsla(283, 100%, 49%, 0.23) 0px, transparent 50%),
    radial-gradient(at 100% 79%, hsla(168, 100%, 40%, 0.2) 0px, transparent 50%),
    radial-gradient(at 91% 33%, hsla(289, 0%, 3%, 1) 0px, transparent 50%),
    radial-gradient(at 0% 100%, hsla(0, 5%, 71%, 0.3) 0px, transparent 50%);
}

.rtm-divider {
  background: linear-gradient(90deg, #00cea6 0%, transparent 100%);
  height: 5px;
  width: 100%;
  position: relative;
}

.bg-gradient-1 {
  background: linear-gradient(180deg, #1c1c1c9e 0%, #00000052 100%);
}

.bg-gradient-2 {
  background: linear-gradient(207.14deg, #00cea6 10.63%, #006854 86.52%);
}

.bg-gradient-3 {
  background: linear-gradient(180deg, #1c1c1c 0%, #1a1a1a 100%);
}

.heading-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
}

.list {
  list-style-image: url('data:image/svg+xml,<svg id="e12XcAwiGCj1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 300 300" shape-rendering="geometricPrecision" text-rendering="geometricPrecision" project-id="36deb9b552474c9d88b99fda01d9310d" export-id="8584b845d1c34625a9856454e565c3d5" cached="false"><ellipse rx="125" ry="125" transform="matrix(1.200001 0 0 1.200001 150 150)" fill="%2300cea6" stroke-width="0"/></svg>');
  row-gap: 1rem;
}

.rtm-social-container {
  display: flex;
  flex-direction: row;
}

.social-item {
  background-color: #1c1c1c;
  color: #c1c1c1;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
}

.social-link {
  color: #8f8f8f;
}

.social-link:hover,
.social-link:hover .social-item {
  color: #00cea6;
}

.rtm-border {
  border-width: 1px;
  border-style: solid;
  border-color: #414141;
}

.rtm-border-bottom {
  border-bottom: 1px solid #414141;
}

.social-item:hover {
  color: #00cea6;
}

form select.form-select,
form .form-control {
  background-color: #0c0c0c;
  border: 1px solid #414141;
  color: white;
}

input#template-category.form-control {
  background-color: #0c0c0c97;
  border: 1px solid #414141;
  color: white;
  cursor: pointer;
}

#template-category-list {
  position: absolute;
  z-index: 99;
  width: 40rem;
  padding: 20px;
  border-radius: 5px;
  background: #212121c4;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}

.template-category-container:hover #template-category-list {
  visibility: visible;
  opacity: 1;
}

.template-category-item {
  text-decoration: none;
  color: white;
}

.template-category-item:hover {
  color: #00cea6;
}

form .form-control:focus {
  background: #0c0c0c;
  color: white;
}

form select.form-select:focus,
form select.form-select:hover {
  color: white;
}

form select.form-select:disabled,
.form-control:disabled {
  background-image: none;
  background-color: transparent;
  text-shadow: none;
  border: 1px solid #414141;
}

#header-dashboard {
  z-index: 99;
}

#header-dashboard .nav-link {
  color: white;
  font-weight: 300;
}

a {
  text-decoration: none;
}

input[type="text"].form-control,
select.form-select {
  border: 1px solid #414141;
  max-width: none;
}

input[type="text"].form-control:focus,
select.form-select:focus {
  border-color: #00cea6;
  outline: none;
  box-shadow: none;
}

table.rtm-table {
  width: 100%;
  border-collapse: separate;
  color: #d9d9d9;
  -webkit-border-vertical-spacing: 15px;
  -webkit-border-horizontal-spacing: 0px;
}

table.rtm-table tr {
  border-color: #414141;
  /* background-color: #0c0c0c; */
  background: #14141454;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(13.1px);
  -webkit-backdrop-filter: blur(13.1px);
}

.rtm-table td {
  padding: 20px;
  border-style: solid;
}

.rtm-table.table-themebuilder td {
  border-width: 1px;
  padding: 10px;
}

.rtm-table.table-themebuilder thead tr {
  background: transparent;
}

.rtm-table.table-themebuilder thead td {
  border-width: 0px;
}

.rtm-table.table-system td[scope="row"] {
  width: 15rem;
}

.rtm-table.table-system td {
  border-width: 1px;
  border-left-width: 0;
  padding: 10px 20px;
}

.rtm-table.rtm-table.table-system td.icon-status {
  background-color: #414141;
  font-size: 1.5rem;
  width: 4rem;
}

.valid-color {
  color: #86ff83;
}

.invalid-color {
  color: #ff3535 !important;
}

.rtm-table td:first-child {
  border-bottom-width: 1px;
  border-left-width: 1px;
  border-top-width: 1px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.rtm-table.table-system td:first-child {
  border-width: 1px;
  border-radius: 10px 0px 0px 10px;
  position: relative;
}

.rtm-table td:last-child {
  border-bottom-width: 1px;
  border-right-width: 1px;
  border-top-width: 1px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.sub-nav .nav-item {
  margin: 0;
}

.sub-nav .nav-item .nav-link {
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom-width: 0px;
  color: #ffffff;
  background-color: transparent;
}

.sub-nav .nav-item .nav-link.active {
  font-weight: 600;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom-width: 2px;
  border-image-source: linear-gradient(90deg, #00cea6 0%, #00000000 100%);
  border-image-slice: 1;
  /* text-shadow: 2px 3px 4px #00cea6; */
}

.themebuilder-pagination .page-numbers {
  padding: 0.5rem;
  color: white;
  border-radius: 5px;
  width: 2.5rem;
  display: inline-flex;
  justify-content: center;
}

.themebuilder-pagination a.page-numbers:focus {
  box-shadow: none;
}

.themebuilder-pagination .page-numbers.current {
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom-width: 2px;
  border-image-source: linear-gradient(90deg, #00cea6 0%, #00000000 100%);
  border-image-slice: 1;
  text-shadow: 2px 3px 4px #00cea6;
  border-style: solid;
}

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 26px;
}

.switch .switch-input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    99.32deg,
    rgb(205, 205, 205) -21.2%,
    #000000 88.36%
  );
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-width: 1px;
  border-style: solid;
  border-color: #414141;
}

.slider:before {
  position: absolute;
  content: "";
  height: 17px;
  width: 17px;
  left: 3px;
  background-color: #ffffff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-box-shadow: 12px 0px 12px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 12px 0px 12px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 12px 0px 12px 0px rgba(0, 0, 0, 0.75);
}

.switch-input:checked + .slider {
  background: linear-gradient(99.32deg, #000000 -21.2%, #00cea6 69.36%);
}

/* .switch-input:checked+.slider:before {
    background-color: #00cea6;
} */

.switch-input:focus + .slider {
  box-shadow: 0 0 1px #00cea6;
}

.switch-input:checked + .slider:before {
  -webkit-transform: translateX(24px);
  -ms-transform: translateX(24px);
  transform: translateX(24px);
  -webkit-box-shadow: -8px 0px 8px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -8px 0px 8px 0px rgba(0, 0, 0, 0.75);
  box-shadow: -8px 0px 8px 0px rgba(0, 0, 0, 0.75);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
  display: flex;
  align-items: center;
}

.slider.round:before {
  border-radius: 50%;
}

.modal {
  background-color: #0000009e;
  backdrop-filter: blur(3px);
}

.modal .modal-content {
  background: rgb(36, 36, 36);
  background: linear-gradient(
    166deg,
    rgba(36, 36, 36, 1) 0%,
    rgba(21, 21, 21, 1) 25%,
    rgba(0, 0, 0, 1) 100%
  );
  color: white;
}

.btn.del-condition {
  color: #727272;
}

.page-numbers {
  padding: 10px;
  text-decoration: none;
  color: #414141;
  width: 2.5rem;
  text-align: center;
}

.page-numbers:focus {
  box-shadow: none;
}

.entries-pagination {
  display: flex;
  align-items: center;
}

.entries-pagination .current {
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom-width: 2px;
  border-image-source: linear-gradient(90deg, #00cea6 0%, #00000000 100%);
  border-image-slice: 1;
  /* text-shadow: 2px 3px 4px #00cea6; */
  border-style: solid;
}

.pagination .page-item {
  display: inline-flex;
}

.page-item.glass-effect {
  border-color: transparent;
}

.pagination .page-btn {
  padding: 0.375rem 0.75rem;
  color: white;
}

.pagination .page-btn:hover {
  background-color: #2b2c31;
  border-color: #808080;
}

.page-item.active .page-btn {
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-bottom-width: 2px;
  border-image-source: linear-gradient(90deg, #00cea6 0%, #00000000 100%);
  border-image-slice: 1;
  /* text-shadow: 2px 3px 4px #00cea6; */
  border-style: solid;
}

.page-item:first-child {
  border-radius: 10px 0px 0px 10px;
  overflow: hidden;
}

.page-item:last-child {
  border-radius: 0px 10px 10px 0px;
  overflow: hidden;
}

.link-accent {
  color: #00cea6;
}

.link-accent:hover {
  color: #006854;
}

.yt-container {
  position: relative;
}

.yt-container .overlay {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #00000097;
  opacity: 0;
  transform: scaleY(0);
  transition: all 0.5s;
  transform-origin: bottom;
  display: flex;
  justify-content: center;
  align-items: center;
}

.yt-container:hover .overlay {
  opacity: 1;
  transform: scaleY(1);
}

.yt-container a {
  font-size: 3rem;
  color: #00cea6;
}

.yt-container a:hover {
  color: #006854;
}

button[data-tooltips] {
  position: relative;
}

button[data-tooltips]::before {
  content: attr(data-tooltips);
  position: absolute;
  background-color: white;
  top: -45px;
  /* left: -50%; */
  padding: 10px;
  border-radius: 5px;
  font-size: 12px;
  width: max-content;
  visibility: hidden;
  transform: translateY(-10px);
  /* opacity: 0; */
  transition: transform 0.5s;
}

button[data-tooltips]::after {
  content: "";
  width: 0px;
  height: 0px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
  position: absolute;
  top: -13px;
  visibility: hidden;
  transform: translateY(-10px);
  /* opacity: 0; */
  transition: transform 0.5s;
}

button[data-tooltips]:hover::before,
button[data-tooltips]:hover::after {
  display: block;
  color: #000;
  transform: translateY(0px);
  visibility: visible;
}

*[data-tooltips-right] {
  position: relative;
}

*[data-tooltips-right]::after {
     content: attr(data-tooltips-right);
    position: absolute;
    background-color: rgb(0 0 0);
    color: white;
    top: 50%;
    left: calc(100% + 10px);
    padding: 20px;
    border-radius: 5px;
    font-size: 12px;
    width: max-content;
    visibility: hidden;
    transform: translateY(-50%);
    opacity: 0;
    transition: transform 0.5s;
    text-wrap: wrap;
    max-width: 10rem;
    z-index: 99;
}

*[data-tooltips-right]:hover::after {
  visibility: visible;
  opacity: 1;
}

.elementor-element.e-flex.rtmkit-blur-effect-enabled::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  backdrop-filter: blur(5px);
  /* opacity: 0.5; */
}

.rtmkit-blur-effect-enabled {
  background-color: inherit;
  backdrop-filter: blur(5px);
  border-radius: inherit;
}

.btn.btn-neumorphism {
  box-shadow: 2.5px 0px 3px #00cea661;
  background: linear-gradient(
    289.77deg,
    rgba(255, 255, 255, 0.4) -36.86%,
    rgba(255, 255, 255, 0) 121.28%
  );
  backdrop-filter: blur(20px);
  outline: 2px solid #ffffff42;
}

.btn.btn-neumorphism:focus {
  outline: 2px solid #ffffff42;
}

.offcanvas-backdrop.show {
  opacity: 0.7;
  z-index: 99999;
}

.link-docs {
  font-size: 12px;
  display: flex;
  gap: 0.5rem;
}

.link-docs a:first-child {
  color: rgb(203, 203, 203);
}

.link-docs a:last-child {
  color: gray;
}
/*! elementor - v3.30.0 - 09-07-2025 */
.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{background:var(--e-a-bg-logo);border-radius:50%;display:inline-block;line-height:1;padding:.75em}.e-logo-wrapper i{color:var(--e-a-color-logo);font-size:1em}.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-embed{max-width:none}.elementor .elementor-background-video,.elementor .elementor-background-video-embed,.elementor .elementor-background-video-hosted{left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.elementor .elementor-background-video{max-width:none}.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{--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.elementor-absolute,.elementor-element.elementor-fixed{z-index:1}.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-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%}.elementor-custom-embed-play{left:50%;position:absolute;top:50%;transform:translate(-50%,-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{height:100px;width:100px;fill:#fff;filter:drop-shadow(1px 0 6px rgba(0,0,0,.3))}.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)}@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-left:auto;margin-right: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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-bottom: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;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: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.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))}.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;pointer-events:none;position:absolute;right:10px;text-shadow:0 0 3px rgba(0,0,0,.3);top:50%;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{justify-content:flex-end}.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{justify-content:flex-end}.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{justify-content:flex-end}.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;font-size:15px;line-height:1;padding:12px 24px;fill:#fff;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;padding:.5em;fill:#fff}.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}}@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}}