@charset "UTF-8";
/* Text meant only for screen readers. */
.elementor-headline {
  font-size: 34px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.1176;
}

.corino-elementor-headline-dynamic-text {
  color: var(--dynamic-text-color, #aebcb9);
}

.corino-elementor-headline--style-rotate .corino-elementor-headline-dynamic-wrapper {
  text-align: left;
}

.corino-elementor-headline--style-highlight .corino-elementor-headline-dynamic-wrapper {
  overflow: visible;
  text-align: inherit;
}

.corino-elementor-headline--style-highlight .corino-elementor-headline-dynamic-text {
  z-index: 1;
}

.corino-elementor-headline--style-highlight .corino-elementor-headline-plain-text {
  z-index: 1;
  position: relative;
}

.corino-elementor-headline--style-highlight svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  transform: translate(-50%, -50%);
  overflow: visible;
}

.corino-elementor-headline--style-highlight svg path {
  stroke: red;
  stroke-width: 9;
  fill: none;
  opacity: 0;
  stroke-dasharray: 0 1500;
  transition: 0.3s;
}

.elementor-headline.e-animated svg path {
  animation: corino-elementor-headline-dash forwards;
  animation-duration: var(--animation-duration, 1.2s);
  animation-iteration-count: 1;
}

.elementor-headline.e-animated svg path:nth-of-type(2) {
  animation-delay: calc(var(--animation-duration, 1.2s) / 2);
}

.elementor-headline.e-hide-highlight svg path {
  opacity: 1;
  stroke-dasharray: 1500 1500;
  animation: hide-highlight 0.4s forwards;
  animation-iteration-count: 1;
}

@keyframes corino-elementor-headline-dash {
  from {
    stroke-dasharray: 0 1500;
    opacity: 1;
  }
  to {
    stroke-dasharray: 1500 1500;
    opacity: 1;
  }
}
@keyframes hide-highlight {
  from {
    opacity: 1;
    stroke-dasharray: 1500 1500;
  }
  to {
    opacity: 0;
    filter: blur(10px);
  }
}
.corino-elementor-headline-text-wrapper {
  vertical-align: bottom;
}

.corino-elementor-headline-dynamic-wrapper {
  display: inline-block;
  position: relative;
}

.corino-elementor-headline-dynamic-wrapper .corino-elementor-headline-dynamic-text {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.corino-elementor-headline-dynamic-wrapper .corino-elementor-headline-dynamic-text.corino-elementor-headline-text-active {
  position: relative;
}

.corino-elementor-headline-animation-type-flip .corino-elementor-headline-dynamic-wrapper {
  perspective: 300px;
}

.corino-elementor-headline-animation-type-flip .corino-elementor-headline-dynamic-text {
  opacity: 0;
  transform-origin: 50% 100%;
  transform: rotateX(180deg);
}

.corino-elementor-headline-animation-type-flip .corino-elementor-headline-dynamic-text.corino-elementor-headline-text-active {
  opacity: 1;
  transform: rotateX(0deg);
  animation: corino-elementor-headline-flip-in 1.2s;
}

.corino-elementor-headline-animation-type-flip .corino-elementor-headline-dynamic-text.corino-elementor-headline-text-inactive {
  transform: rotateX(180deg);
  animation: corino-elementor-headline-flip-out 1.2s;
}

@keyframes corino-elementor-headline-flip-in {
  0% {
    transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    transform: rotateX(360deg);
    opacity: 1;
  }
}
@keyframes corino-elementor-headline-flip-out {
  0% {
    transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    transform: rotateX(180deg);
    opacity: 0;
  }
}
.corino-elementor-headline-animation-type-typing .corino-elementor-headline-dynamic-wrapper {
  vertical-align: top;
  overflow: hidden;
}

.corino-elementor-headline-animation-type-typing .corino-elementor-headline-dynamic-wrapper::after {
  /* vertical bar */
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 90%;
  width: 1px;
  background-color: #0d0d0d;
}

.corino-elementor-headline-animation-type-typing .corino-elementor-headline-dynamic-wrapper:not(.corino-elementor-headline-typing-selected):after {
  animation: corino-elementor-headline-pulse 1s infinite;
}

.corino-elementor-headline-animation-type-typing .corino-elementor-headline-dynamic-wrapper.corino-elementor-headline-typing-selected {
  background-color: var(--typing-selected-bg-color, #0d0d0d);
}

.corino-elementor-headline-animation-type-typing .corino-elementor-headline-dynamic-wrapper.corino-elementor-headline-typing-selected::after {
  visibility: hidden;
}

.corino-elementor-headline-animation-type-typing .corino-elementor-headline-dynamic-wrapper.corino-elementor-headline-typing-selected .corino-elementor-headline-dynamic-text {
  color: var(--typing-selected-color, var(--dynamic-text-color), #aebcb9);
}

.corino-elementor-headline-animation-type-typing .corino-elementor-headline-dynamic-text:not(.corino-elementor-headline-text-active) {
  visibility: hidden;
}

.corino-elementor-headline-animation-type-typing .corino-elementor-headline-dynamic-letter:not(.corino-elementor-headline-animation-in) {
  position: absolute;
  visibility: hidden;
}

@keyframes corino-elementor-headline-pulse {
  0% {
    transform: translateY(-50%) scale(1);
    opacity: 1;
  }
  40% {
    transform: translateY(-50%) scale(0.9);
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) scale(0);
    opacity: 0;
  }
}
.corino-elementor-headline-animation-type-swirl .corino-elementor-headline-dynamic-wrapper {
  perspective: 300px;
}

.corino-elementor-headline-animation-type-swirl .corino-elementor-headline-dynamic-letter {
  display: inline-block;
  backface-visibility: hidden;
}

.corino-elementor-headline-animation-type-swirl .corino-elementor-headline-dynamic-text {
  transform: scaleX(1.0005);
  opacity: 0;
}

.corino-elementor-headline-animation-type-swirl .corino-elementor-headline-dynamic-letter {
  transform-style: preserve-3d;
  transform: translateZ(-20px) rotateX(90deg);
  opacity: 0;
}

.corino-elementor-headline-text-active .corino-elementor-headline-animation-type-swirl .corino-elementor-headline-dynamic-letter {
  opacity: 1;
}

.corino-elementor-headline-animation-type-swirl .corino-elementor-headline-dynamic-letter.corino-elementor-headline-animation-in {
  animation: corino-elementor-headline-swirl-in 0.4s forwards;
}

.corino-elementor-headline-animation-type-swirl .corino-elementor-headline-dynamic-letter:not(.corino-elementor-headline-animation-in) {
  animation: corino-elementor-headline-swirl-out 0.4s forwards;
}

@keyframes corino-elementor-headline-swirl-in {
  0% {
    opacity: 0;
    transform: translateZ(-20px) rotateX(90deg);
  }
  60% {
    opacity: 1;
    transform: translateZ(-20px) rotateX(-10deg);
  }
  100% {
    opacity: 1;
    transform: translateZ(-20px) rotateX(0deg);
  }
}
@keyframes corino-elementor-headline-swirl-out {
  0% {
    opacity: 1;
    transform: translateZ(-20px) rotateX(0);
  }
  60% {
    opacity: 0;
    transform: translateZ(-20px) rotateX(-100deg);
  }
  100% {
    opacity: 0;
    transform: translateZ(-20px) rotateX(-90deg);
  }
}
.corino-elementor-headline-animation-type-slide-down .corino-elementor-headline-text-wrapper {
  display: inline-block;
  padding: 0.2em 0;
}

.corino-elementor-headline-animation-type-slide-down .corino-elementor-headline-dynamic-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.corino-elementor-headline-animation-type-slide-down .corino-elementor-headline-dynamic-text {
  opacity: 0;
  top: 0.2em;
}

.corino-elementor-headline-animation-type-slide-down .corino-elementor-headline-dynamic-text.corino-elementor-headline-text-active {
  top: 0;
  opacity: 1;
  animation: corino-elementor-headline-slide-down-in 0.6s;
}

.corino-elementor-headline-animation-type-slide-down .corino-elementor-headline-dynamic-text.corino-elementor-headline-text-inactive {
  animation: corino-elementor-headline-slide-down-out 0.6s;
}

@keyframes corino-elementor-headline-slide-down-in {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  60% {
    opacity: 1;
    transform: translateY(20%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes corino-elementor-headline-slide-down-out {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  60% {
    opacity: 0;
    transform: translateY(120%);
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}
.corino-elementor-headline-animation-type-clip .corino-elementor-headline-text-wrapper {
  display: inline-block;
  padding: 0.2em 0;
}

.corino-elementor-headline-animation-type-clip .corino-elementor-headline-dynamic-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.corino-elementor-headline-animation-type-clip .corino-elementor-headline-dynamic-wrapper::after {
  /* line */
  content: "";
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  width: 2px;
  height: 100%;
  background-color: #0d0d0d;
}

.corino-elementor-headline-animation-type-clip .corino-elementor-headline-dynamic-text {
  opacity: 0;
}

.corino-elementor-headline-animation-type-clip .corino-elementor-headline-dynamic-text.corino-elementor-headline-text-active {
  opacity: 1;
}

.corino-elementor-headline-animation-type-drop-in .corino-elementor-headline-dynamic-wrapper {
  perspective: 300px;
}

.corino-elementor-headline-animation-type-drop-in .corino-elementor-headline-dynamic-text {
  opacity: 0;
}

.corino-elementor-headline-animation-type-drop-in .corino-elementor-headline-dynamic-text.corino-elementor-headline-text-active {
  opacity: 1;
  animation: corino-elementor-headline-drop-in-in 0.8s;
}

.corino-elementor-headline-animation-type-drop-in .corino-elementor-headline-dynamic-text.corino-elementor-headline-text-inactive {
  animation: corino-elementor-headline-drop-in-out 0.8s;
}

@keyframes corino-elementor-headline-drop-in-in {
  0% {
    opacity: 0;
    transform: translateZ(100px);
  }
  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}
@keyframes corino-elementor-headline-drop-in-out {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  100% {
    opacity: 0;
    transform: translateZ(-100px);
  }
}
.corino-elementor-headline-animation-type-blinds .corino-elementor-headline-dynamic-wrapper {
  perspective: 300px;
}

.corino-elementor-headline-animation-type-blinds .corino-elementor-headline-dynamic-text {
  opacity: 0;
}

.corino-elementor-headline-animation-type-blinds .corino-elementor-headline-dynamic-letter {
  display: inline-block;
  transform: rotateY(180deg);
  backface-visibility: hidden;
}

.corino-elementor-headline-text-active .corino-elementor-headline-animation-type-blinds .corino-elementor-headline-dynamic-letter {
  transform: rotateY(0deg);
}

.corino-elementor-headline-animation-type-blinds .corino-elementor-headline-dynamic-letter.corino-elementor-headline-animation-in {
  animation: corino-elementor-headline-blinds-in 0.6s forwards;
}

.corino-elementor-headline-animation-type-blinds .corino-elementor-headline-dynamic-letter:not(.corino-elementor-headline-animation-in) {
  animation: corino-elementor-headline-blinds-out 0.6s forwards;
}

@keyframes corino-elementor-headline-blinds-in {
  0% {
    transform: rotateY(180deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes corino-elementor-headline-blinds-out {
  0% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(-180deg);
  }
}
.corino-elementor-headline-animation-type-wave .corino-elementor-headline-dynamic-text {
  opacity: 0;
}

.corino-elementor-headline-animation-type-wave .corino-elementor-headline-dynamic-letter {
  display: inline-block;
  opacity: 0;
  transform: scale(0);
}

.corino-elementor-headline-text-active .corino-elementor-headline-animation-type-wave .corino-elementor-headline-dynamic-letter {
  opacity: 1;
}

.corino-elementor-headline-animation-type-wave .corino-elementor-headline-dynamic-letter.corino-elementor-headline-animation-in {
  animation: corino-elementor-headline-wave-up 0.6s forwards;
}

.corino-elementor-headline-animation-type-wave .corino-elementor-headline-dynamic-letter:not(.corino-elementor-headline-animation-in) {
  animation: corino-elementor-headline-wave-down 0.6s forwards;
}

@keyframes corino-elementor-headline-wave-up {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes corino-elementor-headline-wave-down {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  60% {
    transform: scale(0);
    opacity: 0;
  }
}
.corino-elementor-headline-animation-type-slide .corino-elementor-headline-dynamic-text {
  opacity: 0;
}

.corino-elementor-headline-animation-type-slide .corino-elementor-headline-dynamic-text.corino-elementor-headline-text-active {
  opacity: 1;
  animation: corino-elementor-headline-slide-in 0.6s;
}

.corino-elementor-headline-animation-type-slide .corino-elementor-headline-dynamic-text.corino-elementor-headline-text-inactive {
  animation: corino-elementor-headline-slide-out 0.6s;
}

@keyframes corino-elementor-headline-slide-in {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  60% {
    opacity: 1;
    transform: translateX(10%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes corino-elementor-headline-slide-out {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  60% {
    opacity: 0;
    transform: translateX(110%);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}
.corino-elementor-headline-animation-type-swirl .corino-elementor-headline-dynamic-wrapper, .corino-elementor-headline-animation-type-blinds .corino-elementor-headline-dynamic-wrapper, .corino-elementor-headline-animation-type-wave .corino-elementor-headline-dynamic-wrapper, .corino-elementor-headline-animation-type-slide .corino-elementor-headline-dynamic-wrapper, .corino-elementor-headline-animation-type-drop-in .corino-elementor-headline-dynamic-wrapper, .corino-elementor-headline-animation-type-slide-down .corino-elementor-headline-dynamic-wrapper, .corino-elementor-headline-animation-type-flip .corino-elementor-headline-dynamic-wrapper {
  transition: width 0.5s;
}

.corino-elementor-headline-animation-type-swirl .corino-elementor-headline-dynamic-wrapper, .corino-elementor-headline-animation-type-blinds .corino-elementor-headline-dynamic-wrapper, .corino-elementor-headline-animation-type-wave .corino-elementor-headline-dynamic-wrapper {
  overflow: hidden;
}

.corino-elementor-headline-animation-type-swirl .corino-elementor-headline-dynamic-text, .corino-elementor-headline-animation-type-blinds .corino-elementor-headline-dynamic-text, .corino-elementor-headline-animation-type-wave .corino-elementor-headline-dynamic-text {
  white-space: nowrap;
}

.elementor-msie .corino-elementor-headline--style-highlight svg {
  top: auto;
  left: auto;
  transform: translate(-100%);
}

.elementor-brand-item {
  text-align: center;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.elementor-brand-wrapper .swiper-wrapper {
  transition-timing-function: linear !important;
  align-items: center;
}
.elementor-brand-wrapper .elementor-brand-image {
  display: flex;
  width: 100%;
  font-size: 0px;
  font-size: 0rem;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--e-global-color-secondary);
}
@media (max-width: 425px) {
  .elementor-brand-wrapper .elementor-brand-image {
    margin: 0 auto;
    width: 50%;
  }
}
.elementor-brand-wrapper .elementor-brand-image svg {
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: var(--e-global-color-secondary);
}
.elementor-brand-wrapper .elementor-brand-image:hover {
  color: var(--e-global-color-primary);
}
.elementor-brand-wrapper .elementor-brand-image:hover img, .elementor-brand-wrapper .elementor-brand-image:hover svg {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  opacity: 0.4 !important;
}
.elementor-brand-wrapper a {
  display: block;
}
.elementor-brand-wrapper a svg,
.elementor-brand-wrapper a img {
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  float: left;
  filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
}
.elementor-brand-wrapper a:hover {
  color: var(--e-global-color-primary);
}
.elementor-brand-wrapper a:hover img, .elementor-brand-wrapper a:hover svg {
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  opacity: 0.4 !important;
}
.elementor-brand-wrapper .column-item {
  margin-bottom: 30px;
}
.elementor-brand-wrapper .slick-slide {
  position: relative;
}
.elementor-brand-wrapper .slick-slide:before {
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #ebebeb;
  position: absolute;
}
.elementor-brand-wrapper .slick-slide:last-child:before {
  content: none !important;
}
.elementor-brand-wrapper .elementor-widget-corino-brand .corino-carousel .column-item {
  margin-bottom: 0 !important;
}
.elementor-brand-wrapper .elementor-widget-corino-brand .corino-carousel .slick-track {
  display: flex !important;
  align-items: center;
}

.elementor-widget-corino-breadcrumb .breadcrumb {
  font-size: 16px;
  font-size: 1rem;
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  letter-spacing: 0;
  line-height: 1.5px;
}
.elementor-widget-corino-breadcrumb .breadcrumb .home:before {
  font-size: 14px;
  font-size: 0.875rem;
  transform: translateY(-4px);
  margin-right: 5px;
}
.elementor-widget-corino-breadcrumb .breadcrumb a {
  color: var(--e-global-color-lighter);
}
.elementor-widget-corino-breadcrumb .breadcrumb a:hover {
  color: var(--e-global-color-text);
  text-decoration: underline;
}
.elementor-widget-corino-breadcrumb .breadcrumb span {
  margin: 0 7px;
}
.elementor-widget-corino-breadcrumb .breadcrumb span:first-child {
  margin-left: 0;
}
.elementor-widget-corino-breadcrumb .breadcrumb span:last-child {
  margin-right: 0;
}
.elementor-widget-corino-breadcrumb .breadcrumb .breadcrumb-listItem {
  font-family: var(--e-global-typography-tertiary-font-family);
  font-weight: var(--e-global-typography-tertiary-font-weight);
  text-transform: var(--e-global-typography-tertiary-text-transform);
  font-style: var(--e-global-typography-tertiary-font-style);
  text-decoration: var(--e-global-typography-tertiary-text-decoration);
  line-height: var(--e-global-typography-tertiary-line-height);
  letter-spacing: var(--e-global-typography-tertiary-letter-spacing);
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--e-global-color-lighter);
}
.elementor-widget-corino-breadcrumb .breadcrumb .breadcrumb-listItem > span:first-child:before {
  content: unset;
}
.elementor-widget-corino-breadcrumb .corino-title {
  font-size: 30px;
  font-size: 1.875rem;
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 14px;
}
@media (min-width: 568px) {
  .elementor-widget-corino-breadcrumb .corino-title {
    font-size: 60px;
    font-size: 3.75rem;
  }
}

.hidden-corino-list-item-yes .breadcrumb-listItem {
  display: none;
}

.corino-position-title-yes .breadcrumb {
  display: flex;
  flex-direction: column-reverse;
  gap: 35px;
}
.corino-position-title-yes .breadcrumb .corino-title {
  margin-bottom: 0;
}
@media (max-width: 880px) {
  .corino-position-title-yes .breadcrumb {
    gap: 20px;
  }
}

.hidden-corino-title-yes .corino-title {
  display: none;
}

.single-post .hidden-corino-title-single-yes .corino-title, .single-give_forms .hidden-corino-title-single-yes .corino-title {
  display: none;
}
.single-post .hidden-breadcrumb-title-single, .single-give_forms .hidden-breadcrumb-title-single {
  display: none;
}

.breadcrumb-wrap {
  display: var(--page-title-display);
}

.home .main-breadcrumb {
  display: none;
}

.elementor-widget-corino-banner .elementor-cta__heading2,
.elementor-widget-corino-banner .elementor-cta__title {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1;
  color: #fff;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}
.elementor-widget-corino-banner .elementor-cta__title {
  margin-bottom: 0;
}
.elementor-widget-corino-banner .elementor-cta__heading2 {
  margin-bottom: 15px;
}
.elementor-widget-corino-banner .elementor-cta__subtitle {
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.666667;
  color: var(--e-global-color-secondary);
  margin-bottom: 15px;
  letter-spacing: 0;
  width: fit-content;
}
.elementor-widget-corino-banner .elementor-cta__subtitle div {
  position: relative;
  background-repeat: no-repeat;
  background-position: top left;
  display: flex;
}
.elementor-widget-corino-banner .elementor-cta__subtitle div span {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: var(--e-global-typography-primary-font-weight);
  text-transform: var(--e-global-typography-primary-text-transform);
  font-style: var(--e-global-typography-primary-font-style);
  text-decoration: var(--e-global-typography-primary-text-decoration);
  line-height: var(--e-global-typography-primary-line-height);
  letter-spacing: var(--e-global-typography-primary-letter-spacing);
  max-width: 50px;
  margin-left: 5px;
}
.elementor-widget-corino-banner .elementor-cta__description {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--e-global-color-text);
  margin-bottom: 15px;
}
.elementor-widget-corino-banner .elementor-cta__price {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  color: #4AD295;
}
.elementor-widget-corino-banner .elementor-cta__bg-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  left: 0;
}
.elementor-widget-corino-banner.description-effects-yes .des-price {
  display: flex;
  align-items: center;
}
.elementor-widget-corino-banner.description-effects-yes .des-price .elementor-cta__description {
  width: fit-content;
}
.elementor-widget-corino-banner.description-effects-yes .des-price .elementor-cta__price {
  width: fit-content;
}
.elementor-widget-corino-banner.content-stretch-yes {
  height: 100%;
}
.elementor-widget-corino-banner.content-stretch-yes .elementor-widget-container,
.elementor-widget-corino-banner.content-stretch-yes .elementor-corino-banner {
  height: 100%;
}
.elementor-widget-corino-banner.button-position-bottom-yes .elementor-cta__content_inner {
  height: 100%;
}
.elementor-widget-corino-banner.button-position-bottom-yes .elementor-cta__content_inner .elementor-cta__button-wrapper {
  margin-top: auto;
}
.elementor-widget-corino-banner:hover .elementor-cta__bg-overlay {
  opacity: 1;
}
.elementor-widget-corino-banner:hover .elementor-cta__bg {
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.elementor-widget-corino-banner.box-align-left .elementor-cta__content {
  text-align: left;
}
.elementor-widget-corino-banner.box-align-left .elementor-cta__content .des-price {
  justify-content: flex-start;
}
.elementor-widget-corino-banner.box-align-left .elementor-cta__content .elementor-cta__subtitle div {
  justify-content: flex-start;
}
.elementor-widget-corino-banner.box-align-left .elementor-cta__content .elementor-cta__subtitle {
  margin-right: auto;
}
.elementor-widget-corino-banner.box-align-left .elementor-cta__content .elementor-cta__description {
  background-position: top left;
}
.elementor-widget-corino-banner.box-align-center .elementor-cta__content {
  text-align: center;
}
.elementor-widget-corino-banner.box-align-center .elementor-cta__content .des-price {
  justify-content: center;
}
.elementor-widget-corino-banner.box-align-center .elementor-cta__content .elementor-cta__subtitle div {
  justify-content: center;
  background-position: top center;
}
.elementor-widget-corino-banner.box-align-center .elementor-cta__content .elementor-cta__subtitle {
  margin: 0 auto;
}
.elementor-widget-corino-banner.box-align-center .elementor-cta__content .elementor-cta__description {
  background-position: top center;
}
.elementor-widget-corino-banner.box-align-right .elementor-cta__content {
  text-align: right;
}
.elementor-widget-corino-banner.box-align-right .elementor-cta__content .des-price {
  justify-content: flex-end;
}
.elementor-widget-corino-banner.box-align-right .elementor-cta__content .elementor-cta__subtitle div {
  justify-content: flex-end;
  background-position: top right;
}
.elementor-widget-corino-banner.box-align-right .elementor-cta__content .elementor-cta__subtitle {
  margin-left: auto;
}
.elementor-widget-corino-banner.box-align-right .elementor-cta__content .elementor-cta__description {
  background-position: top right;
}
.elementor-widget-corino-banner.elementor-cta--valign-top .elementor-cta__content {
  -ms-flex-line-pack: start;
  align-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.elementor-widget-corino-banner.elementor-cta--valign-middle .elementor-cta__content {
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.elementor-widget-corino-banner.elementor-cta--valign-bottom .elementor-cta__content {
  -ms-flex-line-pack: end;
  align-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.elementor-widget-corino-banner.elementor-position-below .elementor-cta__content_inner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.elementor-widget-corino-banner.elementor-position-below .elementor-cta__content-item {
  order: 1;
}
.elementor-widget-corino-banner.elementor-position-below .elementor-cta__content-item.elementor-cta__title, .elementor-widget-corino-banner.elementor-position-below .elementor-cta__content-item.elementor-cta__heading2 {
  order: 0;
}
.elementor-widget-corino-banner.elementor-position-above .elementor-cta__content-item {
  order: 1;
}
.elementor-widget-corino-banner.elementor-position-above .elementor-cta__content-item.elementor-cta__subtitle {
  margin-bottom: 1.8rem;
  order: 0;
}

.button-banner-style-corino-default .elementor-button {
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  padding: 0.9375rem 2.375rem;
  font-size: 13px;
  font-size: 0.8125rem;
  border-radius: 0px;
  border: 1px solid var(--e-global-color-primary);
  background-color: var(--e-global-color-primary);
  white-space: nowrap;
  color: #ffffff;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  display: inline-block;
}
.button-banner-style-corino-default .elementor-button span {
  position: relative;
  z-index: 2;
}
.button-banner-style-corino-default .elementor-button:hover {
  border: 1px solid var(--e-global-color-secondary);
  color: white;
  background-color: var(--e-global-color-secondary);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button-banner-style-corino-default .elementor-button:hover .elementor-button-icon {
  color: var(--e-global-color-secondary);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.button-banner-style-corino-default .elementor-button i {
  margin: -1px 0px 0 5px;
}
.button-banner-style-corino-default .elementor-button:hover i {
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.button-banner-style-corino-outline .elementor-button {
  color: var(--e-global-color-text);
  background-color: transparent;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: var(--e-global-typography-primary-font-weight);
  text-transform: var(--e-global-typography-primary-text-transform);
  font-style: var(--e-global-typography-primary-font-style);
  text-decoration: var(--e-global-typography-primary-text-decoration);
  line-height: var(--e-global-typography-primary-line-height);
  letter-spacing: var(--e-global-typography-primary-letter-spacing);
  border: 1px solid var(--e-global-color-secondary);
  letter-spacing: 0;
  text-transform: capitalize;
}
.button-banner-style-corino-outline .elementor-button:hover {
  border: 1px solid var(--e-global-color-secondary);
  color: #FFFFFF;
  background-color: var(--e-global-color-secondary);
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.button-banner-style-corino-outline .elementor-button:hover .elementor-button-icon {
  color: #FFFFFF;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.button-banner-style-corino-link .elementor-button {
  font-size: 12px;
  font-size: 0.75rem;
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  background-color: transparent;
  padding: 0;
  overflow: hidden;
  border: none;
  border-bottom: 1px solid var(--e-global-color-secondary);
  color: var(--e-global-color-secondary);
  position: relative;
  letter-spacing: 2px;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  text-transform: uppercase;
}
.button-banner-style-corino-link .elementor-button:hover {
  color: var(--e-global-color-primary);
  box-shadow: none;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  border-color: var(--e-global-color-primary);
}
.button-banner-style-corino-link .elementor-button:hover .elementor-button-text {
  color: var(--e-global-color-primary);
}
.button-banner-style-corino-link .elementor-button:hover i {
  color: var(--e-global-color-primary);
}

.enable-effects-yes .elementor-button {
  position: relative;
  padding: 18px 57px 18px 25px;
}
.enable-effects-yes .elementor-button .elementor-button-text:before {
  content: "";
  position: absolute;
  -ms-transition: all 0.22s ease;
  -o-transition: all 0.22s ease;
  -moz-transition: all 0.22s ease;
  -webkit-transition: all 0.22s ease;
  transition: all 0.22s ease;
  right: 45px;
  top: 50%;
  width: 13px;
  height: 2px;
  background: none;
  transform: translate(0px, -50%);
}
.enable-effects-yes .elementor-button .elementor-button-text:after {
  content: "";
  position: absolute;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  bottom: 0;
  margin: auto;
  top: 0;
  right: 40px;
  width: 8px;
  height: 8px;
  border-top: 0.125rem solid;
  border-right: 0.125rem solid;
  transform: rotate(45deg) translate(0px, 0px);
}
.enable-effects-yes .elementor-button .elementor-button-icon i {
  display: none;
}
.enable-effects-yes .elementor-button:hover {
  -ms-transition: all, 0.45s, cubic-bezier(1, 0, 0.076, 1);
  -o-transition: all, 0.45s, cubic-bezier(1, 0, 0.076, 1);
  -moz-transition: all, 0.45s, cubic-bezier(1, 0, 0.076, 1);
  -webkit-transition: all, 0.45s, cubic-bezier(1, 0, 0.076, 1);
  transition: all, 0.45s, cubic-bezier(1, 0, 0.076, 1);
}
.enable-effects-yes .elementor-button:hover .elementor-button-text:before {
  background: currentColor;
  transform: translate(8px, -50%);
}
.enable-effects-yes .elementor-button:hover .elementor-button-text:after {
  transform: rotate(45deg) translate(3px, -3px);
}

.elementor-bg-transform-move-down-custom .elementor-bg {
  height: calc(100% + 30px);
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
}
.elementor-bg-transform-move-down-custom:hover .elementor-bg {
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  -moz-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.elementor-bg-transform-move-up-custom .elementor-bg {
  height: calc(100% + 30px);
}
.elementor-bg-transform-move-up-custom:hover .elementor-bg {
  -ms-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
}

.elementor-bg-transform-move-left-custom .elementor-bg {
  width: calc(100% + 30px);
  -ms-transform: translateX(-30px);
  -o-transform: translateX(-30px);
  -moz-transform: translateX(-30px);
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
}
.elementor-bg-transform-move-left-custom:hover .elementor-bg {
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.elementor-bg-transform-move-right-custom .elementor-bg {
  width: calc(100% + 30px);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  -moz-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.elementor-bg-transform-move-right-custom:hover .elementor-bg {
  -ms-transform: translateX(-30px);
  -o-transform: translateX(-30px);
  -moz-transform: translateX(-30px);
  -webkit-transform: translateX(-30px);
  transform: translateX(-30px);
}

.elementor-bg-transform-zoom-in:hover .elementor-bg {
  -ms-transform: scale(1.025);
  -o-transform: scale(1.025);
  -moz-transform: scale(1.025);
  -webkit-transform: scale(1.025);
  transform: scale(1.025);
}

.elementor-bg-transform-zoom-out .elementor-bg {
  width: calc(100% + 40px);
  -ms-transform: scale(1.025);
  -o-transform: scale(1.025);
  -moz-transform: scale(1.025);
  -webkit-transform: scale(1.025);
  transform: scale(1.025);
}
.elementor-bg-transform-zoom-out:hover .elementor-bg {
  -ms-transform: scale(1);
  -o-transform: scale(1);
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
}

.elementor-cta {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.elementor-cta--skin-classic .elementor-cta {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.elementor-cta--skin-classic .elementor-cta__bg-wrapper {
  position: relative;
  min-height: 200px;
  width: 100%;
}
.elementor-cta--skin-classic .elementor-cta__content {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  width: 100%;
}

.elementor-cta--skin-cover .elementor-cta {
  display: block;
}
.elementor-cta--skin-cover .elementor-cta__bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  width: 100%;
}
.elementor-cta--skin-cover .elementor-cta__content {
  min-height: 300px;
}

.elementor-cta--layout-image-above .elementor-cta {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.elementor-cta--layout-image-above .elementor-cta__bg-wrapper {
  width: 100%;
}

.elementor-cta--layout-image-left .elementor-cta, .elementor-cta--layout-image-right .elementor-cta {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.elementor-cta--layout-image-left .elementor-cta__bg-wrapper, .elementor-cta--layout-image-right .elementor-cta__bg-wrapper {
  width: auto;
  min-width: 50%;
}

.elementor-cta--layout-image-left .elementor-cta__content, .elementor-cta--layout-image-right .elementor-cta__content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.elementor-cta--layout-image-left .elementor-cta {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.elementor-cta--layout-image-right .elementor-cta {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.elementor-cta__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  transition: all 0.2s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.elementor-cta__bg-wrapper {
  z-index: 1;
  overflow: hidden;
}

.elementor-cta__bg-overlay {
  z-index: 2;
}

.elementor-cta__content {
  z-index: 1;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-line-pack: center;
  align-content: center;
  padding: 40px 40px 93px 70px;
  width: 100%;
}

.elementor-cta__content-item {
  width: 100%;
}

.elementor-cta__content,
.elementor-cta__content-item {
  position: relative;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
}

@media (max-device-width: 1024px) {
  .elementor-cta {
    cursor: pointer;
  }
}
.wpcf7-form ::placeholder {
  color: var(--e-global-color-text);
}

.wpcf7-form {
  margin: 0;
  max-width: 100%;
}
.wpcf7-form .contact-form-wrapper {
  gap: 30px;
  display: flex;
  flex-direction: column;
}
.wpcf7-form .contact-form-wrapper.contact-form-wrapper-sm {
  gap: 20px;
}
.wpcf7-form .contact-form-wrapper.contact-form-wrapper-sm .form-horizontal p {
  gap: 20px;
}
.wpcf7-form .form-horizontal p {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 767px) {
  .wpcf7-form .form-horizontal p {
    flex-direction: column;
  }
}
.wpcf7-form .form-horizontal .wpcf7-form-control-wrap {
  width: 100%;
}
.wpcf7-form p {
  margin: 0;
}
.wpcf7-form p label {
  width: 100%;
  position: relative;
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 500;
  color: var(--e-global-color-secondary);
  text-transform: capitalize;
}
.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 14px;
  font-size: 0.875rem;
}
.wpcf7-form .wpcf7-form-control-wrap input[type=text], .wpcf7-form .wpcf7-form-control-wrap input[type=number], .wpcf7-form .wpcf7-form-control-wrap input[type=email], .wpcf7-form .wpcf7-form-control-wrap input[type=tel], .wpcf7-form .wpcf7-form-control-wrap input[type=url],
.wpcf7-form .wpcf7-form-control-wrap input[type=password], .wpcf7-form .wpcf7-form-control-wrap input[type=search], .wpcf7-form .wpcf7-form-control-wrap input[type=date], .wpcf7-form .wpcf7-form-control-wrap .input-text, .wpcf7-form .wpcf7-form-control-wrap select, .wpcf7-form .wpcf7-form-control-wrap textarea {
  position: relative;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--e-global-color-border);
  color: var(--e-global-color-secondary);
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 13px 0;
  background-color: transparent;
}
.wpcf7-form .wpcf7-form-control-wrap input[type=text]::placeholder, .wpcf7-form .wpcf7-form-control-wrap input[type=number]::placeholder, .wpcf7-form .wpcf7-form-control-wrap input[type=email]::placeholder, .wpcf7-form .wpcf7-form-control-wrap input[type=tel]::placeholder, .wpcf7-form .wpcf7-form-control-wrap input[type=url]::placeholder,
.wpcf7-form .wpcf7-form-control-wrap input[type=password]::placeholder, .wpcf7-form .wpcf7-form-control-wrap input[type=search]::placeholder, .wpcf7-form .wpcf7-form-control-wrap input[type=date]::placeholder, .wpcf7-form .wpcf7-form-control-wrap .input-text::placeholder, .wpcf7-form .wpcf7-form-control-wrap select::placeholder, .wpcf7-form .wpcf7-form-control-wrap textarea::placeholder {
  color: var(--e-global-color-secondary);
}
.wpcf7-form .wpcf7-form-control-wrap input[type=text]:focus, .wpcf7-form .wpcf7-form-control-wrap input[type=number]:focus, .wpcf7-form .wpcf7-form-control-wrap input[type=email]:focus, .wpcf7-form .wpcf7-form-control-wrap input[type=tel]:focus, .wpcf7-form .wpcf7-form-control-wrap input[type=url]:focus,
.wpcf7-form .wpcf7-form-control-wrap input[type=password]:focus, .wpcf7-form .wpcf7-form-control-wrap input[type=search]:focus, .wpcf7-form .wpcf7-form-control-wrap input[type=date]:focus, .wpcf7-form .wpcf7-form-control-wrap .input-text:focus, .wpcf7-form .wpcf7-form-control-wrap select:focus, .wpcf7-form .wpcf7-form-control-wrap textarea:focus {
  border-bottom: 1px solid var(--e-global-color-secondary);
}
.wpcf7-form .wpcf7-form-control-wrap textarea {
  margin: auto;
  height: 100%;
}
.wpcf7-form .wpcf7-form-control-wrap input[type=button] {
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  padding: 0.9375rem 2.375rem;
  font-size: 13px;
  font-size: 0.8125rem;
  border-radius: 0px;
  border: 1px solid var(--e-global-color-primary);
  background-color: var(--e-global-color-primary);
  white-space: nowrap;
  color: #ffffff;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  display: inline-block;
}
.wpcf7-form .wpcf7-form-control-wrap input[type=button] span {
  position: relative;
  z-index: 2;
}
.wpcf7-form .wpcf7-form-control-wrap input[type=button]:hover {
  border: 1px solid var(--e-global-color-secondary);
  color: white;
  background-color: var(--e-global-color-secondary);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wpcf7-form .wpcf7-form-control-wrap input[type=button]:hover .elementor-button-icon {
  color: var(--e-global-color-secondary);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wpcf7-form .wpcf7-form-control-wrap select:not([size]):not([multiple]) {
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--e-global-color-text);
  border-radius: 0px;
}
.wpcf7-form .wpcf7-form-control-wrap select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cg fill='none' class='nc-icon-wrapper'%3E%3Cpath d='M15 4.5l-8.25 8.25L3 9' stroke='%238f8f8f' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}
.wpcf7-form .wpcf7-form-control-wrap .form-date {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cg fill='none' class='nc-icon-wrapper'%3E%3Cpath d='M6 1.5v2.25' stroke='%238f8f8f' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M12 1.5v2.25' stroke='%238f8f8f' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M12 2.625c2.498.135 3.75 1.087 3.75 4.612v4.636c0 3.09-.75 4.635-4.5 4.635h-4.5c-3.75 0-4.5-1.545-4.5-4.635V7.238c0-3.526 1.252-4.47 3.75-4.613h6z' stroke='%238f8f8f' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M15.563 13.2H2.437' stroke='%238f8f8f' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M9 6.188c-.922 0-1.702.502-1.702 1.477 0 .465.217.817.547 1.042-.457.27-.72.705-.72 1.215 0 .93.713 1.508 1.875 1.508 1.155 0 1.875-.578 1.875-1.508 0-.51-.262-.952-.727-1.215.337-.232.547-.577.547-1.042 0-.975-.773-1.478-1.695-1.478zm0 2.13c-.39 0-.675-.233-.675-.6 0-.375.285-.593.675-.593.39 0 .675.218.675.593 0 .367-.285.6-.675.6zM9 10.5c-.495 0-.855-.248-.855-.697 0-.45.36-.69.855-.69s.855.247.855.69c0 .45-.36.697-.855.697z' fill='%238f8f8f'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-position: calc(100% - 20px) center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}
.wpcf7-form .wpcf7-form-control-wrap .form-date::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.wpcf7-form .button-submit-align {
  display: flex;
  justify-content: center;
}
.wpcf7-form .button-submit-full {
  display: block;
  margin-top: 18px;
}
.wpcf7-form .button-submit-full input[type=button], .wpcf7-form .button-submit-full input[type=submit], .wpcf7-form .button-submit-full button {
  display: block;
  width: 100%;
}
.wpcf7-form .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.wpcf7-form .row [class*=" column-"], .wpcf7-form .row [class^=column-] {
  padding: 0 10px;
}
.wpcf7-form .row p {
  margin-bottom: 20px;
}
.wpcf7-form .row p label {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
  color: var(--e-global-color-secondary);
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
}
.wpcf7-form .row .button-submit p {
  margin: 0;
}
.wpcf7-form .contact-form-dark .wpcf7-form-control-wrap input[type=text], .wpcf7-form .contact-form-dark .wpcf7-form-control-wrap input[type=number], .wpcf7-form .contact-form-dark .wpcf7-form-control-wrap input[type=email], .wpcf7-form .contact-form-dark .wpcf7-form-control-wrap input[type=tel], .wpcf7-form .contact-form-dark .wpcf7-form-control-wrap input[type=url],
.wpcf7-form .contact-form-dark .wpcf7-form-control-wrap input[type=password], .wpcf7-form .contact-form-dark .wpcf7-form-control-wrap input[type=search], .wpcf7-form .contact-form-dark .wpcf7-form-control-wrap input[type=date], .wpcf7-form .contact-form-dark .wpcf7-form-control-wrap .input-text, .wpcf7-form .contact-form-dark .wpcf7-form-control-wrap select, .wpcf7-form .contact-form-dark .wpcf7-form-control-wrap textarea {
  border: 1px solid rgba(224, 224, 224, 0.15);
  color: #FFFFFF;
  background-color: transparent;
}
.wpcf7-form .contact-form-dark .wpcf7-form-control-wrap input::placeholder, .wpcf7-form .contact-form-dark .wpcf7-form-control-wrap textarea::placeholder {
  color: #ffffff;
}
.wpcf7-form .contact-form-dark .wpcf7-form-control-wrap select:not([size]):not([multiple]) {
  color: #FFFFFF;
}
.wpcf7-form .contact-form-style-icon .wpcf7-form-control-wrap input[type=text], .wpcf7-form .contact-form-style-icon .wpcf7-form-control-wrap input[type=number], .wpcf7-form .contact-form-style-icon .wpcf7-form-control-wrap input[type=email], .wpcf7-form .contact-form-style-icon .wpcf7-form-control-wrap input[type=tel], .wpcf7-form .contact-form-style-icon .wpcf7-form-control-wrap input[type=url],
.wpcf7-form .contact-form-style-icon .wpcf7-form-control-wrap input[type=password], .wpcf7-form .contact-form-style-icon .wpcf7-form-control-wrap input[type=search], .wpcf7-form .contact-form-style-icon .wpcf7-form-control-wrap input[type=date], .wpcf7-form .contact-form-style-icon .wpcf7-form-control-wrap .input-text, .wpcf7-form .contact-form-style-icon .wpcf7-form-control-wrap textarea {
  padding: 16px 20px 16px 46px;
}
.wpcf7-form .contact-form-style-icon .wpcf7-form-control-wrap select {
  padding: 16px 40px 16px 46px;
}
.wpcf7-form .contact-form-style-icon .wpcf7-form-control-wrap input[type=date]::-webkit-calendar-picker-indicator {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.wpcf7-form .contact-form-style-icon .icon-check .wpcf7-form-control-wrap {
  position: relative;
}
.wpcf7-form .contact-form-style-icon .icon-check .wpcf7-form-control-wrap:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cg fill='none' class='nc-icon-wrapper'%3E%3Cpath d='M15 4.5l-8.25 8.25L3 9' stroke='%238f8f8f' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-position: calc(100% - 20px) center;
  background-size: 20px 20px;
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
  margin-top: 3px;
}
.wpcf7-form .contact-form-style-icon .form-name {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cg fill='none' class='nc-icon-wrapper'%3E%3Cpath d='M9.12 8.152a1.363 1.363 0 0 0-.248 0A3.315 3.315 0 0 1 5.67 4.83 3.327 3.327 0 0 1 9 1.5a3.327 3.327 0 1 1 .12 6.652z' stroke='%238f8f8f' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M5.37 10.92c-1.815 1.215-1.815 3.195 0 4.402 2.063 1.38 5.445 1.38 7.507 0 1.816-1.214 1.816-3.194 0-4.402-2.055-1.373-5.437-1.373-7.507 0z' stroke='%238f8f8f' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-position: 20px center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}
.wpcf7-form .contact-form-style-icon .form-phone-number {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cg fill='none' class='nc-icon-wrapper'%3E%3Cpath d='M16.477 13.748c0 .27-.06.547-.187.817-.127.27-.292.525-.51.765a3.381 3.381 0 0 1-1.23.885c-.45.188-.938.285-1.463.285-.764 0-1.582-.18-2.444-.547a13.173 13.173 0 0 1-2.58-1.486 21.563 21.563 0 0 1-2.46-2.1A21.31 21.31 0 0 1 3.51 9.915c-.615-.855-1.11-1.71-1.47-2.557-.36-.855-.54-1.673-.54-2.453 0-.51.09-.998.27-1.448.18-.457.465-.877.862-1.252.48-.473 1.006-.705 1.56-.705.21 0 .42.045.608.135.195.09.368.225.503.42l1.74 2.453c.135.187.232.36.3.524.067.158.104.316.104.458 0 .18-.052.36-.157.532-.098.173-.24.353-.42.533l-.57.593a.401.401 0 0 0-.12.3c0 .06.008.112.022.172.023.06.045.105.06.15.136.248.368.57.698.96.338.39.697.787 1.087 1.185.405.398.795.765 1.193 1.103.39.33.713.554.967.69.038.014.083.037.135.06.06.022.12.03.188.03a.413.413 0 0 0 .308-.128l.57-.563c.187-.187.367-.33.54-.42a.999.999 0 0 1 .532-.157c.143 0 .293.03.457.098a2.9 2.9 0 0 1 .526.292l2.482 1.762c.195.136.33.293.413.48.075.188.12.375.12.585z' stroke='%238f8f8f' stroke-miterlimit='10'%3E%3C/path%3E%3Cpath d='M13.875 6.75c0-.45-.352-1.14-.877-1.702-.48-.518-1.118-.923-1.748-.923' stroke='%238f8f8f' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M16.5 6.75a5.246 5.246 0 0 0-5.25-5.25' stroke='%238f8f8f' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-position: 20px center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}
.wpcf7-form .contact-form-style-icon .form-date {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cg fill='none' class='nc-icon-wrapper'%3E%3Cpath d='M6 1.5v2.25' stroke='%238f8f8f' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M12 1.5v2.25' stroke='%238f8f8f' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M12 2.625c2.498.135 3.75 1.087 3.75 4.612v4.636c0 3.09-.75 4.635-4.5 4.635h-4.5c-3.75 0-4.5-1.545-4.5-4.635V7.238c0-3.526 1.252-4.47 3.75-4.613h6z' stroke='%238f8f8f' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M15.563 13.2H2.437' stroke='%238f8f8f' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M9 6.188c-.922 0-1.702.502-1.702 1.477 0 .465.217.817.547 1.042-.457.27-.72.705-.72 1.215 0 .93.713 1.508 1.875 1.508 1.155 0 1.875-.578 1.875-1.508 0-.51-.262-.952-.727-1.215.337-.232.547-.577.547-1.042 0-.975-.773-1.478-1.695-1.478zm0 2.13c-.39 0-.675-.233-.675-.6 0-.375.285-.593.675-.593.39 0 .675.218.675.593 0 .367-.285.6-.675.6zM9 10.5c-.495 0-.855-.248-.855-.697 0-.45.36-.69.855-.69s.855.247.855.69c0 .45-.36.697-.855.697z' fill='%238f8f8f'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-position: 20px center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}
.wpcf7-form .contact-form-style-icon .form-person {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cg fill='none' class='nc-icon-wrapper'%3E%3Cpath d='M6.87 8.152a1.363 1.363 0 0 0-.248 0A3.315 3.315 0 0 1 3.42 4.83 3.327 3.327 0 0 1 6.75 1.5a3.327 3.327 0 1 1 .12 6.652z' stroke='%238f8f8f' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M12.307 3a2.623 2.623 0 0 1 2.625 2.625 2.629 2.629 0 0 1-2.527 2.625.847.847 0 0 0-.195 0' stroke='%238f8f8f' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M3.12 10.92c-1.815 1.215-1.815 3.195 0 4.402 2.063 1.38 5.445 1.38 7.508 0 1.815-1.214 1.815-3.194 0-4.402-2.055-1.373-5.438-1.373-7.508 0z' stroke='%238f8f8f' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M13.755 15c.54-.113 1.05-.33 1.47-.652 1.17-.878 1.17-2.325 0-3.203-.413-.315-.915-.525-1.448-.645' stroke='%238f8f8f' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-position: 20px center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}
.wpcf7-form .contact-form-style-icon .form-time {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 18'%3E%3Cg fill='none' class='nc-icon-wrapper'%3E%3Cpath d='M15.563 9.938A6.565 6.565 0 0 1 9 16.5a6.565 6.565 0 0 1-6.563-6.563A6.565 6.565 0 0 1 9 3.375a6.565 6.565 0 0 1 6.563 6.563z' stroke='%238f8f8f' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M9 6v3.75' stroke='%238f8f8f' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M6.75 1.5h4.5' stroke='%238f8f8f' stroke-miterlimit='10' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-position: 20px center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
}
.wpcf7-form .contact-form-style-icon .form-note {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cg fill='none' class='nc-icon-wrapper'%3E%3Cpath d='M16.667 6.875V15c0 2.5-1.492 3.333-3.334 3.333H6.668c-1.842 0-3.333-.833-3.333-3.333V6.875c0-2.708 1.491-3.333 3.333-3.333 0 .516.208.983.55 1.325.342.341.808.55 1.325.55h2.917a1.878 1.878 0 0 0 1.875-1.875c1.841 0 3.333.625 3.333 3.333z' stroke='%238f8f8f' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3Cpath d='M6.667 10.833H10m-3.333 3.334h6.666m0-10.625a1.878 1.878 0 0 1-1.875 1.875H8.541c-.516 0-.983-.209-1.325-.55a1.864 1.864 0 0 1-.55-1.325c0-1.034.842-1.875 1.875-1.875h2.917c.517 0 .983.208 1.325.55.342.341.55.808.55 1.325z' stroke='%238f8f8f' stroke-linecap='round' stroke-linejoin='round'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
  background-position: 20px 16px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
}
.wpcf7-form button, .wpcf7-form input[type=button], .wpcf7-form input[type=reset], .wpcf7-form input[type=submit], .wpcf7-form .button {
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  padding: 0.9375rem 2.375rem;
  font-size: 13px;
  font-size: 0.8125rem;
  border-radius: 0px;
  border: 1px solid var(--e-global-color-primary);
  background-color: var(--e-global-color-primary);
  white-space: nowrap;
  color: #ffffff;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  display: inline-block;
}
.wpcf7-form button span, .wpcf7-form input[type=button] span, .wpcf7-form input[type=reset] span, .wpcf7-form input[type=submit] span, .wpcf7-form .button span {
  position: relative;
  z-index: 2;
}
.wpcf7-form button:hover, .wpcf7-form input[type=button]:hover, .wpcf7-form input[type=reset]:hover, .wpcf7-form input[type=submit]:hover, .wpcf7-form .button:hover {
  border: 1px solid var(--e-global-color-secondary);
  color: white;
  background-color: var(--e-global-color-secondary);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wpcf7-form button:hover .elementor-button-icon, .wpcf7-form input[type=button]:hover .elementor-button-icon, .wpcf7-form input[type=reset]:hover .elementor-button-icon, .wpcf7-form input[type=submit]:hover .elementor-button-icon, .wpcf7-form .button:hover .elementor-button-icon {
  color: var(--e-global-color-secondary);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.wpcf7-form button i, .wpcf7-form input[type=button] i, .wpcf7-form input[type=reset] i, .wpcf7-form input[type=submit] i, .wpcf7-form .button i {
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  font-family: "corino-icon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  font-size: 9px;
  font-size: 0.5625rem;
  content: "";
  margin-left: 6px;
  color: white;
  line-height: 1;
  text-indent: 0;
  text-align: center;
}
.wpcf7-form button i:before, .wpcf7-form input[type=button] i:before, .wpcf7-form input[type=reset] i:before, .wpcf7-form input[type=submit] i:before, .wpcf7-form .button i:before {
  color: #FFFFFF;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.wpcf7-form button:hover i:before, .wpcf7-form input[type=button]:hover i:before, .wpcf7-form input[type=reset]:hover i:before, .wpcf7-form input[type=submit]:hover i:before, .wpcf7-form .button:hover i:before {
  color: var(--e-global-color-primary);
}
.wpcf7-form .wpcf7-spinner {
  position: absolute;
}
.wpcf7-form .wpcf7-list-item {
  display: block;
  margin: 0;
  font-size: 16px;
  font-size: 1rem;
  color: var(--e-global-color-text);
}
.wpcf7-form .wpcf7-list-item input[type=checkbox],
.wpcf7-form .wpcf7-list-item input[type=radio] {
  margin-right: 10px;
}

.elementor-widget-corino-countdown .elementor-corino-countdown {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
}
.elementor-widget-corino-countdown .elementor-countdown-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin-right: 5px;
}
.elementor-widget-corino-countdown .elementor-countdown-item:before {
  content: ":";
  display: inline-block;
  position: absolute;
  right: -11px;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
  color: var(--e-global-color-secondary);
}
.elementor-widget-corino-countdown .elementor-countdown-item:last-child {
  margin-right: 0;
}
.elementor-widget-corino-countdown .elementor-countdown-item:last-child:before {
  display: none;
}
.elementor-widget-corino-countdown .elementor-countdown-label {
  font-family: var(--e-global-typography-tertiary-font-family);
  font-weight: var(--e-global-typography-tertiary-font-weight);
  text-transform: var(--e-global-typography-tertiary-text-transform);
  font-style: var(--e-global-typography-tertiary-font-style);
  text-decoration: var(--e-global-typography-tertiary-text-decoration);
  line-height: var(--e-global-typography-tertiary-line-height);
  letter-spacing: var(--e-global-typography-tertiary-letter-spacing);
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 14px;
  text-transform: uppercase;
  text-align: center;
  color: var(--e-global-color-secondary);
}
.elementor-widget-corino-countdown .elementor-countdown-digits {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 44px;
  font-size: 2.75rem;
  line-height: 1.0458;
  text-align: center;
  color: var(--e-global-color-primary);
}
.elementor-widget-corino-countdown .countdown-title {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 15px;
  font-size: 0.9375rem;
  color: var(--e-global-color-secondary);
}
.elementor-widget-corino-countdown.countdown-style-1 .countdown-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.elementor-widget-corino-countdown.countdown-style-1 .elementor-countdown-item {
  padding: 0 32px 0 32px;
}
.elementor-widget-corino-countdown.countdown-style-1 .elementor-countdown-item:before {
  display: none;
}
.elementor-widget-corino-countdown.countdown-style-1 .elementor-countdown-item .elementor-countdown-digits {
  text-align: center;
  margin-bottom: -1px;
  /* optional */
  color: var(--e-global-color-secondary);
}
.elementor-widget-corino-countdown.countdown-style-1 .elementor-countdown-item .elementor-countdown-digits:before {
  content: ":";
  display: inline-block;
  position: absolute;
  right: -20px;
  font-size: 44px;
  font-size: 2.75rem;
  line-height: 1;
  top: 38%;
  transform: translate(-50%, -50%);
  color: var(--e-global-color-primary);
}
.elementor-widget-corino-countdown.countdown-style-1 .elementor-countdown-item:last-child .elementor-countdown-digits:before {
  display: none;
}
.elementor-widget-corino-countdown.countdown-style-1 .countdown-title {
  margin-right: 15px;
}
.elementor-widget-corino-countdown.countdown-style-1 .elementor-countdown-label {
  color: var(--e-global-color-text);
}
.elementor-widget-corino-countdown.countdown-style-2 .elementor-countdown-item {
  padding: 9px 5px 8px 5px;
  border-radius: 4px;
  margin-right: 19px;
}
.elementor-widget-corino-countdown.countdown-style-2 .elementor-countdown-item .elementor-countdown-digits {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  color: var(--e-global-color-secondary);
}

.elementor-counter {
  position: relative;
  display: flex;
}
.elementor-counter .elementor-counter-wrapper {
  margin-bottom: 5px;
}
.elementor-counter .elementor-icon-counter {
  justify-content: center;
  align-items: center;
  font-size: 54px;
  font-size: 3.375rem;
}
.elementor-counter .elementor-icon-counter i {
  display: inline-block;
}
.elementor-counter .elementor-icon-counter i:before {
  display: block;
}
.elementor-counter .elementor-counter-number {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 80px;
  font-size: 5rem;
  line-height: 1;
  color: var(--e-global-color-primary);
}
.elementor-counter .elementor-counter-number-prefix,
.elementor-counter .elementor-counter-number-suffix {
  flex-grow: 0;
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.25;
  color: var(--e-global-color-primary);
}
.elementor-counter .elementor-counter-title {
  text-align: inherit;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: var(--e-global-typography-primary-font-weight);
  text-transform: var(--e-global-typography-primary-text-transform);
  font-style: var(--e-global-typography-primary-font-style);
  text-decoration: var(--e-global-typography-primary-text-decoration);
  line-height: var(--e-global-typography-primary-line-height);
  letter-spacing: var(--e-global-typography-primary-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--e-global-color-secondary);
}
.elementor-counter .elementor-counter-sub-title {
  font-size: 16px;
  font-size: 1rem;
}
.elementor-counter .elementor-counter-description {
  font-size: 16px;
  font-size: 1rem;
}
.elementor-alignment-left .elementor-counter {
  justify-content: flex-start;
}
.elementor-alignment-left .elementor-counter .elementor-icon-counter {
  display: inline-flex;
  flex: 0 0 auto;
}
.elementor-alignment-left .elementor-counter .elementor-counter-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.elementor-alignment-center .elementor-counter {
  justify-content: center;
  flex-direction: column;
}
.elementor-alignment-center .elementor-counter .elementor-icon-counter {
  display: inline-flex;
  flex: 0 0 auto;
  margin: 0 auto;
}
.elementor-alignment-center .elementor-counter .elementor-counter-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.elementor-alignment-center .elementor-counter .elementor-counter-number-wrapper {
  justify-content: center;
}
.elementor-alignment-right .elementor-counter {
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.elementor-alignment-right .elementor-counter .elementor-icon-counter {
  display: inline-flex;
  flex: 0 0 auto;
}
.elementor-alignment-right .elementor-counter .elementor-counter-number-wrapper {
  justify-content: flex-end;
}
.elementor-alignment-right .elementor-counter .elementor-counter-wrapper {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
}
.elementor-alignment-right .elementor-counter .elementor-counter-title,
.elementor-alignment-right .elementor-counter .elementor-counter-sub-title,
.elementor-alignment-right .elementor-counter .elementor-counter-description {
  text-align: right;
}
.elementor-vertical-align-top .elementor-counter {
  align-items: flex-start;
}
.elementor-vertical-align-middle .elementor-counter {
  align-items: center;
}
.elementor-vertical-align-bottom .elementor-counter {
  align-items: flex-end;
}

.counter-style-1 .elementor-counter .elementor-counter-number-wrapper {
  align-items: center;
  background: linear-gradient(148.2deg, #FF1C6A 19.14%, #FF1C6A 38.09%, #FF8103 100%);
  -webkit-background-clip: text;
  color: transparent;
}
.counter-style-1 .elementor-counter:hover {
  box-shadow: 0 0 0 0;
}
.counter-style-1 .elementor-counter .elementor-counter-number, .counter-style-1 .elementor-counter .elementor-counter-number-prefix, .counter-style-1 .elementor-counter .elementor-counter-number-suffix {
  color: transparent;
  font-size: 120px;
  font-size: 7.5rem;
  font-family: var(--e-global-typography-tertiary-font-family);
  font-weight: var(--e-global-typography-tertiary-font-weight);
  text-transform: var(--e-global-typography-tertiary-text-transform);
  font-style: var(--e-global-typography-tertiary-font-style);
  text-decoration: var(--e-global-typography-tertiary-text-decoration);
  line-height: var(--e-global-typography-tertiary-line-height);
  letter-spacing: var(--e-global-typography-tertiary-letter-spacing);
}

.elementor-header-group-wrapper .header-group-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0;
}
.elementor-header-group-wrapper .header-group-action > div {
  display: inline-flex;
  position: relative;
  text-align: center;
}
.elementor-header-group-wrapper .header-group-action > div:first-child {
  margin-left: 0;
}
.elementor-header-group-wrapper .header-group-action > div:last-child {
  margin-right: 0;
  margin-top: 3px;
}
.elementor-header-group-wrapper .header-group-action .site-header-account, .elementor-header-group-wrapper .header-group-action .site-header-wishlist, .elementor-header-group-wrapper .header-group-action .site-header-search, .elementor-header-group-wrapper .header-group-action .site-header-button {
  display: none;
}
@media (min-width: 1025px) {
  .elementor-header-group-wrapper .header-group-action .site-header-account, .elementor-header-group-wrapper .header-group-action .site-header-wishlist, .elementor-header-group-wrapper .header-group-action .site-header-search, .elementor-header-group-wrapper .header-group-action .site-header-button {
    display: block;
  }
}
.elementor-header-group-wrapper .site-header-account a .account-content {
  display: none;
}
.elementor-header-group-wrapper .site-header-account .account-dropdown.active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  z-index: 9999;
}

.elementor-widget-corino-icon-box {
  transition: all 0.4s ease;
}
.elementor-widget-corino-icon-box .elementor-icon-box-icon {
  display: flex;
}
.elementor-widget-corino-icon-box .elementor-icon-box-icon .elementor-icon {
  font-size: 36px;
  font-size: 2.25rem;
  color: var(--e-global-color-secondary);
}
.elementor-widget-corino-icon-box .elementor-icon-box-title {
  font-size: 16px;
  font-size: 1rem;
  color: var(--e-global-color-secondary);
  line-height: 1.375;
  text-transform: capitalize;
  transition: all 0.4s ease;
}
.elementor-widget-corino-icon-box .elementor-icon-box-title a {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
}
.elementor-widget-corino-icon-box .elementor-icon-box-description {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7142;
  margin: 0;
  transition: all 0.4s ease;
}
.elementor-widget-corino-icon-box:hover {
  cursor: pointer;
}
.elementor-widget-corino-icon-box:hover .elementor-icon-box-title {
  color: var(--e-global-color-primary);
}
.elementor-widget-corino-icon-box:hover {
  transition: all 0.4s ease;
  background-color: #FFFFFF;
}

.elementor-widget-corino-icon-box .elementor-icon-box-wrapper {
  display: block;
  text-align: center;
}

.elementor-widget-corino-icon-box.elementor-view-default .elementor-icon {
  color: var(--e-global-color-primary);
  border-color: var(--e-global-color-primary);
}

.elementor-widget-corino-icon-box.elementor-view-stacked .elementor-icon {
  color: #fff;
  background-color: var(--e-global-color-primary);
}

.elementor-widget-corino-icon-box.elementor-widget-icon-box.elementor-view-framed .elementor-icon {
  border: 1px dashed;
  border-color: #DDDADA;
}
.elementor-widget-corino-icon-box.elementor-widget-icon-box.elementor-view-framed .elementor-icon:hover {
  border: 1px solid var(--e-global-color-secondary);
}

.elementor-widget-corino-icon-box.elementor-position-top .elementor-icon-box-wrapper {
  display: block;
  text-align: center;
}

.elementor-widget-corino-icon-box.elementor-position-top .elementor-icon-box-wrapper.elementor-icon-box-icon.elementor-icon {
  display: flex;
  justify-content: center;
}

.elementor-widget-corino-icon-box.elementor-position-left .elementor-icon-box-wrapper,
.elementor-widget-corino-icon-box.elementor-position-right .elementor-icon-box-wrapper {
  display: flex;
}

.elementor-widget-corino-icon-box.elementor-position-top .elementor-icon-box-wrapper {
  flex-direction: column;
}

.elementor-widget-corino-icon-box.elementor-position-left .elementor-icon-box-wrapper {
  text-align: left;
  flex-direction: row;
}

.elementor-widget-corino-icon-box.elementor-position-right .elementor-icon-box-wrapper {
  text-align: right;
  flex-direction: row-reverse;
}

.elementor-widget-corino-icon-box.elementor-position-left .elementor-icon-box-icon {
  margin-right: var(--icon-box-icon-margin, 15px);
  margin-left: 0;
  margin-bottom: unset;
}

.elementor-widget-corino-icon-box.elementor-position-top .elementor-icon-box-icon {
  margin-bottom: var(--icon-box-icon-margin, 15px);
  margin-right: auto;
  margin-left: auto;
}

.elementor-widget-corino-icon-box.elementor-position-right .elementor-icon-box-icon {
  margin-left: var(--icon-box-icon-margin, 15px);
  margin-right: 0;
  margin-bottom: unset;
}

@media (min-width: 768px) {
  .elementor-widget-corino-icon-box.elementor-vertical-align-top .elementor-icon-box-wrapper {
    align-items: flex-start;
  }
}
@media (min-width: 768px) {
  .elementor-widget-corino-icon-box.elementor-vertical-align-middle .elementor-icon-box-wrapper {
    align-items: center;
  }
}
@media (min-width: 768px) {
  .elementor-widget-corino-icon-box.elementor-vertical-align-bottom .elementor-icon-box-wrapper {
    align-items: flex-end;
  }
}
.icon-effects-yes .elementor-icon-box-icon .elementor-icon {
  position: relative;
}
.icon-effects-yes .elementor-icon-box-icon .elementor-icon:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--e-global-color-primary);
}

.icon-box-style-1 .elementor-icon-box-icon {
  display: flex;
}
.icon-box-style-1 .elementor-icon {
  position: relative;
  width: 60px !important;
  height: 60px;
  border-radius: 50%;
}
.icon-box-style-1 .elementor-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.icon-box-style-2 {
  position: relative;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.icon-box-style-2:hover {
  border-color: var(--e-global-color-secondary);
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  box-shadow: 8px 8px 0px 0px rgba(34, 34, 34, 0.1);
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.elementor-slider-image-item-wrapper .elementor-slider-image-item .item-inner img {
  width: 100%;
  height: fit-content;
  object-fit: cover;
}
.elementor-slider-image-item-wrapper .elementor-slider-image-item .item-inner .slider-image_item {
  position: relative;
  overflow: hidden;
  display: block;
}
.elementor-slider-image-item-wrapper .elementor-slider-image-item .item-inner .slider-image_item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: #00000099;
  opacity: 0;
  width: 100%;
  height: 100%;
  transition: all 0.35s;
  visibility: visible;
}
.elementor-slider-image-item-wrapper .elementor-slider-image-item .item-inner .slider-image_item i {
  top: 0;
  left: 0;
  opacity: 0;
  visibility: visible;
  transition: all 0.35s;
  color: white;
  z-index: 2;
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.elementor-slider-image-item-wrapper .elementor-slider-image-item .item-inner .slider-image_item:hover:after {
  opacity: 1;
}
.elementor-slider-image-item-wrapper .elementor-slider-image-item .item-inner .slider-image_item:hover i {
  opacity: 1;
  visibility: visible;
}
.elementor-slider-image-item-wrapper .elementor-slider-image-swiper .swiper-slide {
  height: 100%;
}
.elementor-slider-image-item-wrapper .elementor-slider-image-swiper .swiper-slide .item-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.elementor-widget-pavo-image-gallery .grid__item a {
  display: block;
}
.elementor-widget-pavo-image-gallery .grid__item a img {
  display: block;
}
.elementor-widget-pavo-image-gallery .grid__item .gallery-image {
  height: 400px;
}
.elementor-widget-pavo-image-gallery .grid__item .gallery-image a img {
  height: 100%;
  width: 100%;
}

.elementor-widget-corino-image-gallery .grid__item:nth-child(4n+4) {
  transform: translateY(calc(20% - 5px));
}
.elementor-widget-corino-image-gallery .grid__item:nth-child(4n+2) {
  transform: translateY(calc(20% - 5px));
}
@media (max-width: 768px) {
  .elementor-widget-corino-image-gallery .grid__item:nth-child(n) {
    transform: translateY(calc(0% - 5px));
  }
}
.elementor-widget-corino-image-gallery .gallery-image {
  height: 400px;
}
.elementor-widget-corino-image-gallery .gallery-image a img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.elementor-widget-corino-image-gallery .gallery-image a:before {
  content: "";
}

.corino-image-gallery-sweet .isotope-grid .grid__item {
  width: 294px !important;
  height: 264px !important;
}
.corino-image-gallery-sweet .isotope-grid .grid__item .gallery-image img {
  width: 294px !important;
  height: 264px !important;
  -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyMDcgMTg2Ij48ZyBmaWxsPSJub25lIiBjbGFzcz0ibmMtaWNvbi13cmFwcGVyIj48cGF0aCBkPSJNMTQzLjI0MyAwSDYzLjc1N0M1NS4xOTYgMCA0Ny4yNTEgNC41OTcgNDIuOTcgMTIuMDA3TDMuMjEgODAuOTkzYTI0LjEyIDI0LjEyIDAgMCAwIDAgMjQuMDQ4bDM5Ljc2IDY4Ljk1MkM0Ny4yNSAxODEuNDM3IDU1LjE5NiAxODYgNjMuNzU4IDE4Nmg3OS40ODVjOC41NjEgMCAxNi41MDYtNC41OTcgMjAuNzg3LTEyLjAwN2wzOS43NTktNjguOTUyYTI0LjEyIDI0LjEyIDAgMCAwIDAtMjQuMDQ4TDE2NC4wMyAxMi4wMDdDMTU5Ljc0OSA0LjU5NyAxNTEuODA0IDAgMTQzLjI0MyAweiIgZmlsbD0iY3VycmVudENvbG9yIj48L3BhdGg+PC9nPjwvc3ZnPg==);
  -webkit-mask-size: 100%;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
}
.corino-image-gallery-sweet .isotope-grid .grid__item .gallery-image a:before {
  display: none;
}
.corino-image-gallery-sweet .isotope-grid .grid__item:nth-child(1) {
  top: 30% !important;
}
.corino-image-gallery-sweet .isotope-grid .grid__item:nth-child(even) {
  top: 5% !important;
}
.corino-image-gallery-sweet .isotope-grid .grid__item:nth-child(2) {
  left: 249px !important;
}
.corino-image-gallery-sweet .isotope-grid .grid__item:nth-child(3) {
  left: 498px !important;
  top: 30% !important;
}
.corino-image-gallery-sweet .isotope-grid .grid__item:nth-child(4) {
  left: 747px !important;
}
.corino-image-gallery-sweet .isotope-grid .grid__item:nth-child(5) {
  right: 0 !important;
  left: unset !important;
  top: 30% !important;
}

.corino-image-gallery-masonry .isotope-grid {
  height: 1120px !important;
}
@media (max-width: 1200px) {
  .corino-image-gallery-masonry .isotope-grid {
    height: 902px !important;
  }
}
@media (max-width: 1024px) {
  .corino-image-gallery-masonry .isotope-grid {
    height: 2243px !important;
  }
}
.corino-image-gallery-masonry .grid__item:nth-child(4) {
  top: 290px !important;
  left: 480px !important;
  position: absolute;
}
@media (max-width: 1440px) {
  .corino-image-gallery-masonry .grid__item:nth-child(4) {
    left: 473px !important;
  }
}
@media (max-width: 1200px) {
  .corino-image-gallery-masonry .grid__item:nth-child(4) {
    top: 238px !important;
    left: 390px !important;
  }
}
@media (max-width: 1024px) {
  .corino-image-gallery-masonry .grid__item:nth-child(4) {
    left: 0 !important;
    top: 36.5% !important;
  }
}
.corino-image-gallery-masonry .grid__item:nth-child(4) .gallery-image {
  width: 450px !important;
  height: 340px !important;
}
@media (max-width: 1440px) {
  .corino-image-gallery-masonry .grid__item:nth-child(4) .gallery-image {
    width: 435px !important;
  }
}
@media (max-width: 1200px) {
  .corino-image-gallery-masonry .grid__item:nth-child(4) .gallery-image {
    width: 360px !important;
  }
}
.corino-image-gallery-masonry .grid__item:nth-child(6) {
  top: 660px !important;
  left: 480px !important;
  position: absolute;
}
@media (max-width: 1440px) {
  .corino-image-gallery-masonry .grid__item:nth-child(6) {
    left: 473px !important;
    top: 651px !important;
  }
}
@media (max-width: 1200px) {
  .corino-image-gallery-masonry .grid__item:nth-child(6) {
    top: 534px !important;
    left: 390px !important;
  }
  .corino-image-gallery-masonry .grid__item:nth-child(6) .gallery-image {
    width: 360px !important;
  }
}
@media (max-width: 1024px) {
  .corino-image-gallery-masonry .grid__item:nth-child(6) {
    left: 0 !important;
    top: 122.5% !important;
  }
}
@media (max-width: 1440px) {
  .corino-image-gallery-masonry .grid__item:nth-child(6) {
    width: 435px !important;
  }
}
.corino-image-gallery-masonry .grid__item:nth-child(7) {
  top: 603px !important;
  left: 960px !important;
  position: absolute;
}
@media (max-width: 1440px) {
  .corino-image-gallery-masonry .grid__item:nth-child(7) {
    top: 590px !important;
    left: 940px !important;
  }
}
@media (max-width: 1200px) {
  .corino-image-gallery-masonry .grid__item:nth-child(7) {
    top: 488px !important;
    left: 780px !important;
  }
}
.corino-image-gallery-masonry img {
  width: 100% !important;
  object-fit: cover;
}
@media (min-width: 1024px) {
  .corino-image-gallery-masonry .grid__item:nth-child(10n+4), .corino-image-gallery-masonry .grid__item:nth-child(10n+9) {
    width: 66% !important;
  }
}

.isotope-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.isotope-grid .grid__item {
  margin-bottom: var(--grid-column-gap);
}

.elementor-widget-corino-image-gallery {
  width: 100%;
}
.elementor-widget-corino-image-gallery ul {
  margin: 0 0 55px 0;
}
.elementor-widget-corino-image-gallery .gallery-image {
  position: relative;
}
.elementor-widget-corino-image-gallery .gallery-image a i {
  display: none;
}
.elementor-widget-corino-image-gallery .gallery-image img {
  display: block;
  transition: all 0.3s ease;
}
.elementor-widget-corino-image-gallery .gallery-image:nth-child(even) {
  margin-top: 30px;
}
.elementor-widget-corino-image-gallery .elementor-galerry__filter {
  display: inline-block;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  line-height: 1.3;
  position: relative;
  cursor: pointer;
  outline: 0;
  border: none;
  color: var(--e-global-color-text);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.elementor-widget-corino-image-gallery .elementor-galerry__filter .count {
  display: none;
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--e-global-color-secondary);
  position: absolute;
  top: -10px;
}
.elementor-widget-corino-image-gallery .elementor-galerry__filter.elementor-active, .elementor-widget-corino-image-gallery .elementor-galerry__filter:hover {
  color: var(--e-global-color-primary);
}

.image-gallery-effects-yes .gallery-image {
  position: relative;
}
.image-gallery-effects-yes .gallery-image a {
  overflow: hidden;
  display: block;
}
.image-gallery-effects-yes .gallery-image a i {
  top: 50%;
  left: 50%;
  opacity: 0;
  visibility: visible;
  transform: translate(-50%, 0px);
  transition: all 0.35s;
  color: var(--e-global-color-secondary);
  z-index: 2;
  font-size: 13px;
  font-size: 0.8125rem;
  line-height: 20px;
  font-weight: 400;
  position: absolute;
  width: 50px;
  height: 50px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.image-gallery-effects-yes .gallery-image a:hover:before {
  opacity: 1;
  visibility: visible;
}
.image-gallery-effects-yes .gallery-image a:hover i {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.elementor-image-gallery {
  position: relative;
}

.elementor-editor-active .isotope-grid {
  height: auto !important;
}
.elementor-editor-active .isotope-grid .grid__item > a {
  pointer-events: none;
}

.elementor-galerry__filters {
  list-style: none;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  grid-column-gap: 30px;
  grid-row-gap: 15px;
}

.elementor-filter-left .elementor-galerry__filters {
  justify-content: flex-start;
}

.elementor-filter-right .elementor-galerry__filters {
  justify-content: flex-end;
}

.elementor-widget-corino-image-gallery .corino-carousel .slick-list {
  overflow: visible;
}

@media only screen and (max-width: 650px) {
  .corino-image-gallery-masonry .grid__item:nth-child(5), .corino-image-gallery-masonry .grid__item:nth-child(5n+6) {
    width: 100% !important;
  }
}
.corino-language-switcher .item > div {
  display: flex;
  cursor: pointer;
  align-items: center;
}
.corino-language-switcher ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-size: 0.75rem;
}
.corino-language-switcher span {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 15px;
  font-weight: var(--e-global-typography-tertiary-font-weight);
  text-transform: uppercase;
  color: var(--e-global-color-text);
}
.corino-language-switcher img {
  display: inline-block;
  height: 20px;
  object-fit: cover;
  width: 20px;
  border-radius: 100%;
  margin-right: 7px;
}
.corino-language-switcher .language-switcher-head .title {
  margin-right: 5px;
}
.corino-language-switcher .language-switcher-head img {
  margin-right: 7px;
}
.corino-language-switcher a {
  display: block;
}
.corino-language-switcher .item > div {
  display: flex;
  cursor: pointer;
  align-items: center;
}
.corino-language-switcher .item > div i {
  font-size: 12px;
  font-size: 0.75rem;
  color: var(--e-global-color-secondary);
}
.corino-language-switcher .sub-item {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  z-index: 999;
  text-align: left;
  top: calc(100% + 5px);
  padding: 10px 0;
  background-color: #fff;
  pointer-events: none;
  box-shadow: 0 0 30px 0 #0000001A;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translateY(20px);
}
.corino-language-switcher .sub-item:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  top: -10px;
}
.corino-language-switcher .sub-item a {
  display: flex;
  align-items: center;
  padding: 7px 15px;
  min-width: 126px;
  white-space: nowrap;
}
.corino-language-switcher .sub-item a:hover, .corino-language-switcher .sub-item a:focus {
  background-color: rgba(0, 0, 0, 0.05);
}
.corino-language-switcher .sub-item a > span {
  text-transform: unset;
}
.corino-language-switcher li.item {
  position: relative;
}
.corino-language-switcher li.item:hover .sub-item {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.corino-language-switcher-divider-yes .corino-language-switcher .language-switcher-head {
  border: 1px solid var(--e-global-color-border);
  padding: 4px 11px;
}
.corino-language-switcher-divider-yes .corino-language-switcher .language-switcher-head img {
  display: none;
}
.corino-language-switcher-divider-yes .corino-language-switcher .language-switcher-head span {
  color: var(--e-global-color-lighter);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 24px;
  text-transform: initial;
}
.corino-language-switcher-divider-yes .corino-language-switcher .language-switcher-head i {
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.corino-language-switcher-divider-yes .corino-language-switcher .language-switcher-head i:before {
  color: var(--e-global-color-lighter);
}
.corino-language-switcher-divider-yes .corino-language-switcher .sub-item {
  bottom: calc(100% + 5px);
  top: auto;
}
.corino-language-switcher-divider-yes .corino-language-switcher:hover li.item .language-switcher-head i {
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  rotate: -180deg;
}

.language-switcher-style-hover-right-yes .corino-language-switcher .sub-item {
  right: 0;
  left: unset;
}

.form-style .mc4wp-form {
  margin: 0;
}
.form-style .mc4wp-form .form {
  display: flex;
  border-bottom: 2px solid #e3e3e3;
}
.form-style .mc4wp-form .form:hover {
  border-color: var(--e-global-color-primary);
}
.form-style .mc4wp-form .form-input {
  flex: 1;
}
.form-style .mc4wp-form .mc4wp-form-fields p {
  margin: 0;
}
.form-style .mc4wp-form .mailchimp input[type=email] {
  position: relative;
}
.form-style .mc4wp-form .mailchimp i {
  position: absolute;
  font-size: 24px;
  z-index: 1;
  right: 0;
  padding: 12px 20px 12px 0;
}
.form-style .mc4wp-form button[type=submit] {
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  padding: 0.9375rem 2.375rem;
  font-size: 13px;
  font-size: 0.8125rem;
  border-radius: 0px;
  border: 1px solid var(--e-global-color-primary);
  background-color: var(--e-global-color-primary);
  white-space: nowrap;
  color: #ffffff;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6666667;
  width: 100%;
  Padding: 14px 36px 14px 36px;
}
.form-style .mc4wp-form button[type=submit] span {
  position: relative;
  z-index: 2;
}
.form-style .mc4wp-form button[type=submit]:hover {
  border: 1px solid var(--e-global-color-secondary);
  color: white;
  background-color: var(--e-global-color-secondary);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form-style .mc4wp-form button[type=submit]:hover .elementor-button-icon {
  color: var(--e-global-color-secondary);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form-style .mc4wp-form input[type=email] {
  font-family: var(--e-global-typography-tertiary-font-family);
  font-weight: var(--e-global-typography-tertiary-font-weight);
  text-transform: var(--e-global-typography-tertiary-text-transform);
  font-style: var(--e-global-typography-tertiary-font-style);
  text-decoration: var(--e-global-typography-tertiary-text-decoration);
  line-height: var(--e-global-typography-tertiary-line-height);
  letter-spacing: var(--e-global-typography-tertiary-letter-spacing);
  margin-bottom: 20px;
  width: 100%;
  padding: 0 0 18px 0;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.166667;
  border-top: none;
  border-left: none;
  border-right: none;
  text-transform: capitalize;
}
.form-style .mc4wp-form input[type=email]::placeholder {
  color: var(--e-global-color-lighter);
}

.form-mailchimp-style-1 .mc4wp-form {
  margin: 0;
}
.form-mailchimp-style-1 .mc4wp-form-fields {
  display: flex;
  background-color: transparent;
  justify-content: space-between;
  width: 100%;
  gap: 11px;
}
@media (max-width: 425px) {
  .form-mailchimp-style-1 .mc4wp-form-fields {
    display: block;
  }
}
.form-mailchimp-style-1 .mc4wp-form-fields p:first-child {
  width: 80%;
}
@media (max-width: 425px) {
  .form-mailchimp-style-1 .mc4wp-form-fields p:first-child {
    width: 100%;
    padding-bottom: 10px;
  }
}
.form-mailchimp-style-1 .mc4wp-form-fields input[type=email] {
  margin-bottom: 0;
  padding: 15px 0 15px 0;
  font-weight: 400;
  border: none;
  width: 100%;
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 20px;
  background-color: transparent;
  color: var(--e-global-color-text);
  border-bottom: 1px solid var(--e-global-color-border);
}
.form-mailchimp-style-1 .mc4wp-form-fields button[type=submit] {
  width: 100%;
  padding: 14px 70px 14px 70px;
  letter-spacing: 2px;
  font-size: 12px;
  font-size: 0.75rem;
}
.form-mailchimp-style-1 .mc4wp-form-fields input[type=submit] {
  background-color: transparent;
  border: none;
  color: #221D1A;
  padding-right: 0;
  padding-left: 0;
}
.form-mailchimp-style-1 .mc4wp-form-fields input[type=submit]:hover {
  color: #BD7655;
}

.form-checkbox {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.form-checkbox input [type=checkbox] {
  background-color: var(--e-global-color-primary);
}

.hidden-corino-form-checkbox-yes .form-checkbox {
  display: none;
}

.elementor-canvas-menu-wrapper {
  display: flex;
}
.elementor-canvas-menu-wrapper .menu-mobile-nav-button {
  display: inline-flex;
  align-items: center;
}
.elementor-canvas-menu-wrapper .menu-mobile-nav-button .screen-reader-text {
  position: unset !important;
  word-wrap: unset !important;
  margin: 0;
  height: unset;
  width: unset;
  clip: unset;
  overflow: unset;
  clip-path: unset;
  order: 1;
  font-size: 14px;
  text-transform: uppercase;
  color: var(--e-global-color-secondary);
}
.elementor-canvas-menu-wrapper .menu-mobile-nav-button:hover .screen-reader-text {
  color: var(--e-global-color-primary);
}

.corino-canvas-menu-layout-1.elementor-widget-corino-menu-canvas .corino-icon {
  margin-right: 13px;
}

.corino-canvas-menu-layout-2.elementor-widget-corino-menu-canvas .elementor-canvas-menu-wrapper .menu-mobile-nav-button .screen-reader-text {
  display: none;
}
.corino-canvas-menu-layout-2.elementor-widget-corino-menu-canvas .elementor-canvas-menu-wrapper .menu-mobile-nav-button .corino-icon {
  margin-right: 0;
}

.corino-canvas-menu-layout-3.elementor-widget-corino-menu-canvas .elementor-canvas-menu-wrapper .menu-mobile-nav-button {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 10px;
}
.corino-canvas-menu-layout-3.elementor-widget-corino-menu-canvas .elementor-canvas-menu-wrapper .menu-mobile-nav-button .corino-icon {
  margin-right: 0;
}

.nav-vertical-navigation {
  position: relative;
  display: inline-block;
}
.nav-vertical-navigation ul.menu {
  display: inline-block;
  list-style: none;
  margin: 0;
  position: relative;
  padding: 18px 0 0 0;
}
.nav-vertical-navigation ul.menu a {
  text-transform: uppercase;
}
.nav-vertical-navigation ul.menu a:hover {
  color: var(--e-global-color-primary);
}
.nav-vertical-navigation ul.menu li {
  position: relative;
}
.nav-vertical-navigation ul.menu li li:hover > .sub-menu, .nav-vertical-navigation ul.menu li.corino-menu-item--open > .sub-menu {
  opacity: 1;
  visibility: visible;
  left: 100%;
  top: 0;
  z-index: 99;
  transform: translateZ(0);
}
.nav-vertical-navigation ul.menu li li:hover > .sub-menu li, .nav-vertical-navigation ul.menu li.corino-menu-item--open > .sub-menu li {
  opacity: 1;
}
.nav-vertical-navigation ul.menu li li:hover > .sub-menu li:nth-child(1), .nav-vertical-navigation ul.menu li.corino-menu-item--open > .sub-menu li:nth-child(1) {
  animation: qode-menu-item 0s both;
  animation-delay: 0s;
}
.nav-vertical-navigation ul.menu li li:hover > .sub-menu li:nth-child(2), .nav-vertical-navigation ul.menu li.corino-menu-item--open > .sub-menu li:nth-child(2) {
  animation: qode-menu-item 0.1s both;
  animation-delay: 0.1s;
}
.nav-vertical-navigation ul.menu li li:hover > .sub-menu li:nth-child(3), .nav-vertical-navigation ul.menu li.corino-menu-item--open > .sub-menu li:nth-child(3) {
  animation: qode-menu-item 0.2s both;
  animation-delay: 0.2s;
}
.nav-vertical-navigation ul.menu li li:hover > .sub-menu li:nth-child(4), .nav-vertical-navigation ul.menu li.corino-menu-item--open > .sub-menu li:nth-child(4) {
  animation: qode-menu-item 0.3s both;
  animation-delay: 0.3s;
}
.nav-vertical-navigation ul.menu li li:hover > .sub-menu li:nth-child(5), .nav-vertical-navigation ul.menu li.corino-menu-item--open > .sub-menu li:nth-child(5) {
  animation: qode-menu-item 0.4s both;
  animation-delay: 0.4s;
}
.nav-vertical-navigation ul.menu li li:hover > .sub-menu li:nth-child(6), .nav-vertical-navigation ul.menu li.corino-menu-item--open > .sub-menu li:nth-child(6) {
  animation: qode-menu-item 0.8s both;
  animation-delay: 0.5s;
}
.nav-vertical-navigation ul.menu li li:hover > .sub-menu li:nth-child(7), .nav-vertical-navigation ul.menu li.corino-menu-item--open > .sub-menu li:nth-child(7) {
  animation: qode-menu-item 0.8s both;
  animation-delay: 0.6s;
}
.nav-vertical-navigation ul.menu li li:hover > .sub-menu li:nth-child(8), .nav-vertical-navigation ul.menu li.corino-menu-item--open > .sub-menu li:nth-child(8) {
  animation: qode-menu-item 0.8s both;
  animation-delay: 0.7s;
}
.nav-vertical-navigation ul.menu li.current-menu-item > a, .nav-vertical-navigation ul.menu li.current-menu-ancestor > a, .nav-vertical-navigation ul.menu li.current-menu-parent > a {
  color: var(--e-global-color-primary);
}
.nav-vertical-navigation ul.menu > li {
  padding: 0 20px;
}
.nav-vertical-navigation ul.menu > li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  line-height: 100px;
  font-size: 80px;
  font-size: 5rem;
  color: #9A9A9A;
}
.nav-vertical-navigation ul.menu > li li a {
  display: block;
  padding: 10px 0;
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  line-height: 100px;
  font-size: 80px;
  font-size: 5rem;
}
.nav-vertical-navigation ul.menu .sub-menu {
  position: absolute;
  left: 100%;
  width: 1200px;
  list-style: none;
  transform: translateZ(0);
  opacity: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.nav-vertical-navigation ul.menu .sub-menu li.menu-item {
  padding: 0 30px;
}
.nav-vertical-navigation ul.menu .sub-menu li.menu-item a {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
}
.nav-vertical-navigation ul.menu .sub-menu li.menu-item a:after {
  content: "/";
  position: relative;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  left: 34px;
}
.nav-vertical-navigation ul.menu .sub-menu li.menu-item:hover a {
  color: transparent;
  -webkit-text-stroke: 1px var(--e-global-color-primary);
}
.nav-vertical-navigation ul.menu .sub-menu li.menu-item:hover a:after {
  -webkit-text-stroke: 1px var(--e-global-color-primary);
}
.nav-vertical-navigation ul.menu .sub-menu li.menu-item:last-child a:after {
  display: none;
}
.nav-vertical-navigation ul.menu .sub-menu li.menu-item.current-menu-item > a, .nav-vertical-navigation ul.menu .sub-menu li.menu-item.current-menu-ancestor > a, .nav-vertical-navigation ul.menu .sub-menu li.menu-item.current-menu-parent > a {
  color: transparent;
  -webkit-text-stroke: 1px var(--e-global-color-primary);
}
.nav-vertical-navigation ul.menu .sub-menu li.menu-item.current-menu-item > a:after, .nav-vertical-navigation ul.menu .sub-menu li.menu-item.current-menu-ancestor > a:after, .nav-vertical-navigation ul.menu .sub-menu li.menu-item.current-menu-parent > a:after {
  -webkit-text-stroke: 1px var(--e-global-color-primary);
}

@keyframes qode-menu-item {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  35% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.elementor-widget-corino-nav-menu.corino-nav-menu-divider-yes .main-navigation ul.menu > li.menu-item:not(:last-child) > a:before {
  content: "";
  position: absolute;
  display: inline-block;
  height: 24px;
  width: 1px;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #D9D9D9;
}

@media only screen and (max-width: 1200px) {
  .elementor-widget-corino-nav-menu.corino-nav-menu-divider-yes .main-navigation ul.menu > li.menu-item > a:before {
    right: 8px;
  }
}
.icon-hot-deal:before {
  content: url("https://i.imgur.com/B65gvMe.png");
}

.icon-gift-box:before {
  content: url("https://i.imgur.com/2Mithgk.png");
}

.menu-sale .main-navigation ul.menu > li.menu-item:last-child > a {
  color: var(--e-global-color-primary) !important;
}

.menu-usd .main-navigation ul.menu li.menu-item ul {
  transform: translate(0, 20px);
  left: 20px;
  z-index: 999;
}
.menu-usd .main-navigation ul.menu li.menu-item ul li.menu-item {
  padding: 0;
}
.menu-usd .main-navigation ul.menu li.menu-item ul li.menu-item a {
  padding: 7px 15px !important;
  border: none !important;
  color: var(--e-global-color-text);
}
.menu-usd .main-navigation ul.menu li.menu-item ul li.menu-item a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.menu-usd .main-navigation ul.menu li.menu-item:hover ul {
  transform: translate(0, 0);
}

.elementor-widget-corino-post-grid .slick-list {
  overflow: visible;
  clip-path: inset(-30px -14px);
}
.elementor-widget-corino-post-grid .slick-slide:not(.slick-active) .post-inner {
  box-shadow: unset;
}

[class*=post-style-] .post-inner {
  display: block;
}
[class*=post-style-] .post-inner .post-content {
  padding-top: 25px;
}
[class*=post-style-] .post-inner .post-content .entry-content {
  padding: 13px 0;
}
[class*=post-style-] .post-inner .post-image .post-thumbnail {
  margin-bottom: 0;
  padding-top: 67.3%;
}
[class*=post-style-] .excerpt-content {
  -webkit-line-clamp: 2;
  padding-top: 13px;
}
[class*=post-style-] .entry-title {
  margin: 0;
}

.layout-post-style-1 .post-image .post-thumbnail img {
  height: 410px;
}
.layout-post-style-1 .post-content .entry-content {
  padding-bottom: 24px;
  padding-top: 10px;
}
.layout-post-style-1 .post-content .entry-content .entry-title {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 33px;
}
.layout-post-style-1 .post-content .entry-content .excerpt-content {
  padding-top: 6px;
}
.layout-post-style-1 .post-content .post-more {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 880px) {
  .layout-post-style-1 .post-content .entry-content .entry-title {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 28px;
  }
}

.layout-post-style-2 .post-inner, .layout-post-style-3 .post-inner {
  display: flex;
}
.layout-post-style-2 .post-inner .post-image .post-thumbnail img, .layout-post-style-3 .post-inner .post-image .post-thumbnail img {
  width: 100%;
  height: 100%;
}
.layout-post-style-2 .post-inner .excerpt-content, .layout-post-style-3 .post-inner .excerpt-content {
  -webkit-line-clamp: 3;
}
@media (max-width: 568px) {
  .layout-post-style-2 .post-inner, .layout-post-style-3 .post-inner {
    flex-direction: column;
  }
}
@media (max-width: 880px) {
  .layout-post-style-2 .post-inner .post-image .post-thumbnail, .layout-post-style-3 .post-inner .post-image .post-thumbnail {
    width: 100%;
  }
  .layout-post-style-2 .post-inner .post-image .post-thumbnail img, .layout-post-style-3 .post-inner .post-image .post-thumbnail img {
    height: 100%;
  }
  .layout-post-style-2 .post-inner .post-content, .layout-post-style-3 .post-inner .post-content {
    padding: 20px 0 0;
  }
}

.layout-post-style-2 .post-inner {
  grid-column-gap: 50px;
  align-items: center;
}
@media (max-width: 1366px) {
  .layout-post-style-2 .post-inner {
    grid-column-gap: 30px;
  }
}
.layout-post-style-2 .post-inner .post-content {
  width: 42.23%;
  padding-top: 0;
}
.layout-post-style-2 .post-inner .post-content .entry-content .entry-title {
  -webkit-line-clamp: 3;
}
@media (max-width: 1366px) {
  .layout-post-style-2 .post-inner .post-content .entry-content .entry-title {
    -webkit-line-clamp: 2;
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media (max-width: 1024px) {
  .layout-post-style-2 .post-inner .post-content .entry-content .excerpt-content {
    -webkit-line-clamp: 2;
  }
}
@media (max-width: 568px) {
  .layout-post-style-2 .post-inner .post-content {
    width: 100%;
    padding-top: 20px;
  }
}
.layout-post-style-2 .post-inner .post-image {
  width: 48.9%;
}
.layout-post-style-2 .post-inner .post-image .post-thumbnail {
  padding-top: 87.4%;
}
@media (max-width: 1366px) {
  .layout-post-style-2 .post-inner .post-image .post-thumbnail {
    padding-top: 110%;
  }
}
@media (max-width: 568px) {
  .layout-post-style-2 .post-inner .post-image {
    width: 100%;
  }
}

.layout-post-style-3 .post-inner {
  background-color: #FBF8F2;
}
.layout-post-style-3 .post-inner .post-content {
  width: 49.4%;
  padding: 40px;
}
.layout-post-style-3 .post-inner .post-content .entry-content .entry-title {
  -webkit-line-clamp: 3;
}
@media (min-width: 1366px) {
  .layout-post-style-3 .post-inner .post-content {
    padding: 80px 80px 0 90px;
  }
}
@media (max-width: 568px) {
  .layout-post-style-3 .post-inner .post-content {
    width: 100%;
    padding: 20px;
  }
}
.layout-post-style-3 .post-inner .post-image {
  width: 50.6%;
}
.layout-post-style-3 .post-inner .post-image .post-thumbnail {
  padding-top: 64.51%;
}
@media (max-width: 880px) {
  .layout-post-style-3 .post-inner .post-image .post-thumbnail {
    padding-top: 85%;
  }
}
@media (max-width: 568px) {
  .layout-post-style-3 .post-inner .post-image {
    width: 100%;
  }
}
.layout-post-style-3 .post-inner .entry-meta {
  background-color: white;
}

.post-style-1 .post-thumbnail {
  width: 100%;
}
.post-style-1 .entry-content {
  margin: 0;
}

.elementor-grid-title {
  font-size: 26px;
  font-size: 1.625rem;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 60px;
  border-top: 1px solid var(--e-global-color-border);
}

.blog-style-grid {
  margin: 0;
}
.blog-style-grid .elementor-grid {
  grid-row-gap: 20px;
}
@media (min-width: 568px) {
  .blog-style-grid .elementor-grid {
    grid-row-gap: 50px;
    grid-column-gap: 50px;
  }
}

.elementor-widget-corino-menu-list .elementor-menu-list-item-wrapper .elementor-menu-list-title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 26px;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: var(--e-global-typography-primary-font-weight);
  text-transform: var(--e-global-typography-primary-text-transform);
  font-style: var(--e-global-typography-primary-font-style);
  text-decoration: var(--e-global-typography-primary-text-decoration);
  line-height: var(--e-global-typography-primary-line-height);
  letter-spacing: var(--e-global-typography-primary-letter-spacing);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: capitalize;
  color: var(--e-global-color-secondary);
  letter-spacing: 0;
}
.elementor-widget-corino-menu-list .elementor-menu-list-item-wrapper .elementor-menu-list-title a {
  color: var(--e-global-color-secondary);
}
.elementor-widget-corino-menu-list .elementor-menu-list-item-wrapper .elementor-menu-list-title a:hover {
  color: var(--e-global-color-primary);
}
.elementor-widget-corino-menu-list .elementor-menu-list-item-wrapper .elementor-menu-list-description {
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  font-weight: var(--e-global-typography-text-font-weight);
  color: var(--e-global-color-lighter);
}
.elementor-widget-corino-menu-list .elementor-menu-list-item-wrapper .elementor-menu-list-image img {
  width: 100%;
  object-fit: cover;
  margin: 0 auto;
}
.elementor-widget-corino-menu-list .elementor-menu-list-item-wrapper .elementor-menu-list-price {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.3;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: var(--e-global-typography-primary-font-weight);
  text-transform: var(--e-global-typography-primary-text-transform);
  font-style: var(--e-global-typography-primary-font-style);
  text-decoration: var(--e-global-typography-primary-text-decoration);
  line-height: var(--e-global-typography-primary-line-height);
  letter-spacing: var(--e-global-typography-primary-letter-spacing);
  font-weight: var(--e-global-typography-primary-font-weight);
  color: var(--e-global-color-secondary);
  display: flex;
  justify-content: center;
  gap: 7px;
}
.elementor-widget-corino-menu-list .elementor-menu-list-item-wrapper .elementor-menu-list-old-price {
  display: inline-block;
  text-decoration: line-through;
  color: var(--e-global-color-lighter);
}
.elementor-widget-corino-menu-list .elementor-menu-list-item-wrapper .elementor-menu-list-sub-title {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: var(--e-global-typography-text-font-weight);
  color: var(--e-global-color-primary);
  margin-bottom: 19px;
}
.elementor-widget-corino-menu-list .menu-style-1 .elementor-menu-list-item {
  display: flex;
}
.elementor-widget-corino-menu-list .menu-style-1 .elementor-menu-list-image {
  width: 110px;
  margin-right: 30px;
}
.elementor-widget-corino-menu-list .menu-style-1 .elementor-menu-list-image img {
  width: 100%;
  object-fit: cover;
}
.elementor-widget-corino-menu-list .menu-style-1 .elementor-menu-list-text {
  flex: 1;
}
.elementor-widget-corino-menu-list .menu-style-1 .elementor-menu-list-title {
  margin-bottom: 10px;
}
.elementor-widget-corino-menu-list .menu-style-1 .elementor-menu-list-description {
  margin-bottom: 10px;
}
.elementor-widget-corino-menu-list .menu-style-2 {
  grid-row-gap: 22px;
}
.elementor-widget-corino-menu-list .menu-style-2 .elementor-menu-list-item {
  display: flex;
  align-items: center;
  padding: 0;
}
.elementor-widget-corino-menu-list .menu-style-2 .elementor-menu-list-image {
  width: 100px;
  margin-right: 25px;
}
@media (max-width: 576px) {
  .elementor-widget-corino-menu-list .menu-style-2 .elementor-menu-list-image {
    width: 80px;
    margin-right: 16px;
  }
}
.elementor-widget-corino-menu-list .menu-style-2 .elementor-menu-list-image img {
  width: 100%;
  object-fit: cover;
}
.elementor-widget-corino-menu-list .menu-style-2 .elementor-menu-list-text {
  flex: 1;
}
@media (max-width: 576px) {
  .elementor-widget-corino-menu-list .menu-style-2 .elementor-menu-list-text .elementor-menu-list-header {
    flex-direction: row;
  }
}
.elementor-widget-corino-menu-list .menu-style-2 .elementor-menu-list-sub-title {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1rem;
  padding: 4px 12px;
  background: var(--e-global-color-primary);
  color: var(--body-color);
  text-transform: uppercase;
  margin: 0;
  margin-left: 9px;
  font-weight: var(--e-global-typography-accent-font-weight);
  letter-spacing: 0.4px;
}
.elementor-widget-corino-menu-list .menu-style-2 .elementor-menu-list-title {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.4em;
}
.elementor-widget-corino-menu-list .menu-style-2 .elementor-menu-list-header {
  display: flex;
  align-items: baseline;
  flex-basis: 100%;
  margin-bottom: 5px;
  justify-content: space-between;
}
.elementor-widget-corino-menu-list .menu-style-2 .elementor-menu-list-separator {
  flex-grow: 1;
  margin-left: 10px;
  margin-right: 10px;
  border-bottom-style: dashed;
  border-bottom-width: 1px;
  border-bottom-color: var(--e-global-color-lighter);
  height: 3px;
}
.elementor-widget-corino-menu-list .menu-style-3 .elementor-menu-list-item {
  text-align: center;
}
.elementor-widget-corino-menu-list .menu-style-3 .elementor-menu-list-image {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.elementor-widget-corino-menu-list .menu-style-3 .elementor-menu-list-image img {
  width: 100%;
  object-fit: cover;
}
.elementor-widget-corino-menu-list .menu-style-3 .elementor-menu-list-sub-title {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1rem;
  padding: 10px 20px;
  background: var(--e-global-color-primary);
  color: var(--body-color);
  text-transform: uppercase;
  margin: 0;
  font-weight: var(--e-global-typography-accent-font-weight);
  letter-spacing: 0.4px;
}
.elementor-widget-corino-menu-list .menu-style-3 .elementor-menu-list-title {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 20px;
  font-size: 1.25rem;
  color: var(--e-global-color-text);
  line-height: 1.4em;
  margin-bottom: 6px;
}
.elementor-widget-corino-menu-list .menu-style-3 .elementor-menu-list-description {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4em;
  margin-bottom: 12px;
}
.elementor-widget-corino-menu-list .menu-style-3 .elementor-menu-list-header {
  display: flex;
  align-items: baseline;
  flex-basis: 100%;
  margin-bottom: 5px;
  justify-content: space-between;
}
.elementor-widget-corino-menu-list .menu-style-3 .elementor-menu-list-separator {
  flex-grow: 1;
  margin-left: 10px;
  margin-right: 10px;
  border-bottom-style: dashed;
  border-bottom-width: 1px;
  border-bottom-color: var(--e-global-color-lighter);
  height: 3px;
}
.elementor-widget-corino-menu-list .menu-style-4 .elementor-menu-list-item {
  text-align: center;
}
.elementor-widget-corino-menu-list .menu-style-4 .elementor-menu-list-item:nth-child(2n+1) {
  padding-top: 40px;
}
.elementor-widget-corino-menu-list .menu-style-4 .slick-slide .elementor-menu-list-item {
  padding-top: 0;
}
.elementor-widget-corino-menu-list .menu-style-4 .slick-slide:nth-child(2n+1) .elementor-menu-list-item {
  padding-top: 40px;
}
.elementor-widget-corino-menu-list .menu-style-4 .elementor-menu-list-image {
  margin-bottom: 20px;
}
.elementor-widget-corino-menu-list .menu-style-4 .elementor-menu-list-title {
  margin-bottom: 15px;
}
.elementor-widget-corino-menu-list .menu-style-4 .elementor-menu-list-description {
  margin-bottom: 15px;
  color: var(--e-global-color-lighter);
}
.elementor-widget-corino-menu-list .menu-style-5 .elementor-menu-list-image {
  position: relative;
  overflow: hidden;
}
.elementor-widget-corino-menu-list .menu-style-5 .elementor-menu-list-image:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 47.94%);
}
.elementor-widget-corino-menu-list .menu-style-5 .elementor-menu-list-item-content {
  position: relative;
}
.elementor-widget-corino-menu-list .menu-style-5 .elementor-menu-list-image + .elementor-menu-list-text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.elementor-widget-corino-menu-list .menu-style-5 .elementor-menu-list-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px 40px 40px;
}
.elementor-widget-corino-menu-list .menu-style-5 .elementor-menu-list-header {
  flex: 1;
}
.elementor-widget-corino-menu-list .menu-style-5 .elementor-menu-list-title {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 32px;
  margin-bottom: 10px;
  color: var(--e-global-color-secondary);
}
.elementor-widget-corino-menu-list .menu-style-5 .elementor-menu-list-title a {
  color: var(--e-global-color-secondary);
}
.elementor-widget-corino-menu-list .menu-style-5 .elementor-menu-list-title a:hover {
  color: var(--e-global-color-primary);
}
.elementor-widget-corino-menu-list .menu-style-5 .elementor-menu-list-description {
  color: var(--e-global-color-secondary);
}
.elementor-widget-corino-menu-list .menu-style-5 .elementor-menu-list-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  width: 100px;
  height: 100px;
  color: var(--e-global-color-secondary);
  background-color: var(--e-global-color-primary);
}

@media screen and (max-width: 576px) {
  .elementor-widget-corino-menu-list .menu-style-2 .elementor-menu-list-item .elementor-menu-list-sub-title {
    margin-left: 0;
  }
  .elementor-widget-corino-menu-list .menu-style-2 .elementor-menu-list-item .elementor-menu-list-header {
    flex-direction: column;
  }
  .elementor-widget-corino-menu-list .menu-style-2 .elementor-menu-list-item .elementor-menu-list-separator {
    margin: 0;
  }
}
.menulist-align-right .menu-style-1 .elementor-menu-list-item {
  flex-direction: row-reverse;
}
.menulist-align-right .menu-style-1 .elementor-menu-list-text {
  text-align: right;
}
.menulist-align-right .menu-style-1 .elementor-menu-list-image {
  margin-left: 30px;
  margin-right: 0;
}
@media (max-width: 767px) {
  .menulist-align-right .menu-style-1 .elementor-menu-list-item {
    flex-direction: row;
  }
  .menulist-align-right .menu-style-1 .elementor-menu-list-text {
    text-align: left;
  }
  .menulist-align-right .menu-style-1 .elementor-menu-list-image {
    margin-right: 30px;
    margin-left: 0;
  }
}

.hover-reveal {
  position: fixed;
  width: 200px;
  height: 150px;
  top: 0;
  left: 0;
  pointer-events: none;
  opacity: 0;
}

.hover-reveal__inner,
.hover-reveal__img {
  width: 100%;
  height: 100%;
  position: relative;
}

.hover-reveal__img {
  background-size: cover;
  background-position: 50% 50%;
}

.elementor-widget-corino-product-categories .corino-swiper {
  clip-path: inset(-20px);
  overflow: visible;
}
.elementor-widget-corino-product-categories .category-product-img {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
}
.elementor-widget-corino-product-categories .category-product-img img {
  margin-left: auto;
  margin-right: auto;
  object-fit: cover;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.elementor-widget-corino-product-categories .category-product-img a {
  overflow: hidden;
}
.elementor-widget-corino-product-categories .category-title {
  position: relative;
  font-size: 24px;
  font-size: 1.5rem;
  color: var(--e-global-color-secondary);
  font-weight: var(--e-global-typography-secondary-font-weight);
}
.elementor-widget-corino-product-categories .category-title a {
  color: inherit;
}
.elementor-widget-corino-product-categories .category-count-wrapper {
  font-size: 12px;
  font-size: 0.75rem;
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  line-height: 1;
  color: var(--e-global-color-lighter);
  transition: all 0.3s ease;
}
.elementor-widget-corino-product-categories .category-count-wrapper .category-count {
  color: var(--e-global-color-lighter);
}

.category-product-style-1 .elementor-categories-item {
  padding: 40px 37px 44px 40px;
}
.category-product-style-1 .category-title {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
  margin: 16px 0 0 0;
  text-transform: capitalize;
}
.category-product-style-1 .category-title a {
  color: var(--e-global-color-secondary);
}
.category-product-style-1 .category-title:hover a {
  color: var(--e-global-color-primary);
}
.category-product-style-1 .product-cat .category-product-img {
  overflow: hidden;
  transition: all 0.8s ease;
  border-radius: 50%;
}
.category-product-style-1 .product-cat .category-product-img a {
  overflow: hidden;
  border-radius: 50%;
}
.category-product-style-1 .product-cat .category-product-img img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto;
  overflow: hidden;
}
.category-product-style-1 .product-cat:hover {
  transition: all 0.4s ease;
}
.category-product-style-1 .product-cat:hover .category-product-img img {
  transform: scale(1.05);
}
.category-product-style-1 .product-cat:hover .category-title {
  color: var(--e-global-color-primary);
}
.category-product-style-1 .category-product-caption {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  position: relative;
}
.category-product-style-1 .category-product-caption .category-product-button-wrapper .category-product-button {
  position: relative;
}
.category-product-style-1 .category-product-caption .category-product-button-wrapper .category-product-button .button-text {
  color: var(--e-global-color-secondary);
  letter-spacing: 0.1em;
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase;
}
.category-product-style-1 .category-product-caption .category-product-button-wrapper .category-product-button .button-text:hover {
  color: var(--e-global-color-primary);
}
.category-product-style-1 .category-count-wrapper {
  font-size: 16px;
  font-size: 1rem;
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  line-height: 1.625;
  color: var(--e-global-color-lighter);
  transition: all 0.4s ease;
  text-transform: lowercase;
}
.category-product-style-1 .category-count-wrapper .category-count {
  color: var(--e-global-color-lighter);
}

.category-product-style-2 .category-product-img {
  position: relative;
  transition: all 0.3s ease;
}
.category-product-style-2 .category-product-img i, .category-product-style-2 .category-product-img svg {
  font-size: 64px;
  font-size: 4rem;
  z-index: 9;
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
}
.category-product-style-2 .category-product-img img {
  transition: all 0.4s ease;
}
.category-product-style-2 .category-title {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
}
.category-product-style-2 .category-count-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  line-height: 1.5;
  color: var(--e-global-color-lighter);
  transition: all 0.4s ease;
  background-color: #FFFFFF;
  border: 1px solid var(--e-global-color-border);
  padding: 7px 8px 6px 12px;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
}
.category-product-style-2 .category-count-wrapper .category-count {
  color: var(--e-global-color-lighter);
}
.category-product-style-2 .category-count-wrapper .category-count-text {
  font-size: 0px;
  font-size: 0rem;
}
.category-product-style-2 .elementor-categories-item {
  width: fit-content;
  margin: 0 auto;
}
.category-product-style-2 .product-cat {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
.category-product-style-2 .product-cat .category-product-img {
  background-color: #FBF8F2;
  transition: background-color 0.4s ease;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 24px;
}
.category-product-style-2 .product-cat .category-product-img a {
  transition: all 0.4s ease;
}
.category-product-style-2 .product-cat img {
  opacity: 0;
  visibility: hidden;
}
.category-product-style-2 .product-cat:hover .category-product-img {
  background-color: var(--e-global-color-primary);
}
.category-product-style-2 .product-cat:hover .category-product-img a {
  color: #ffffff;
}
.category-product-style-2 .product-cat:hover .category-title {
  color: var(--e-global-color-primary);
}
.category-product-style-2 .product-cat:hover .category-count-wrapper {
  opacity: 1;
  visibility: visible;
}

.category-product-style-3 .title-count {
  margin-bottom: 0;
  transition: all 0.8s ease;
  margin-top: 16px;
  display: flex;
  justify-content: center;
}
.category-product-style-3 .title-count .category-title {
  letter-spacing: 0;
}
.category-product-style-3 .title-count .category-count-wrapper .category-count {
  margin-left: 5px;
}
.category-product-style-3 .title-count .category-count-wrapper .category-count-text {
  display: none;
}
.category-product-style-3 .category-title {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
}
.category-product-style-3 .category-title a {
  color: var(--e-global-color-secondary);
}
.category-product-style-3 .category-count-wrapper {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.86;
  color: var(--e-global-color-primary);
  text-transform: lowercase;
}
.category-product-style-3 .elementor-categories-item {
  position: relative;
}
.category-product-style-3 .elementor-categories-item .category-product-img {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
}
.category-product-style-3 .elementor-categories-item .category-product-img a {
  position: relative;
}
.category-product-style-3 .elementor-categories-item .category-product-img a img {
  z-index: 1;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  overflow: hidden;
}
.category-product-style-3 .elementor-categories-item:hover .category-title a {
  color: var(--e-global-color-primary);
}
.category-product-style-3 .elementor-categories-item:hover .category-product-img img {
  transform: scale(1.05);
}

.category-product-style-4 .title-count {
  margin-bottom: 0;
  transition: all 0.8s ease;
  margin-top: 16px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.category-product-style-4 .title-count .category-title {
  letter-spacing: 0;
  margin: 0;
}
.category-product-style-4 .title-count .category-count-wrapper {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  color: var(--e-global-color-lighter);
  text-transform: lowercase;
}
.category-product-style-4 .category-title a {
  color: var(--e-global-color-secondary);
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 20px;
  font-size: 1.25rem;
  text-transform: uppercase;
  line-height: 1.15;
}
.category-product-style-4 .category-count-wrapper {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.86;
  color: var(--e-global-color-primary);
  text-transform: lowercase;
}
.category-product-style-4 .elementor-categories-item {
  position: relative;
  height: 290px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1367px) {
  .category-product-style-4 .elementor-categories-item {
    width: 190px;
  }
}
.category-product-style-4 .elementor-categories-item .category-product-img {
  position: relative;
}
.category-product-style-4 .elementor-categories-item .category-product-img img {
  height: 150px;
}
.category-product-style-4 .elementor-categories-item .category-product-img:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #FBF8F2;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.category-product-style-4 .elementor-categories-item .category-product-img a {
  position: relative;
}
.category-product-style-4 .elementor-categories-item .category-product-caption {
  display: flex;
}
.category-product-style-4 .elementor-categories-item:hover .category-product-img img {
  transform: scale(1);
}
.category-product-style-4 .elementor-categories-item:hover .category-product-img:before {
  background-color: var(--product-category-color);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.category-product-style-4.corino-highlight_cat-yes .elementor-categories-item {
  transition: all 0.3s ease;
}
.category-product-style-4.corino-highlight_cat-yes .elementor-categories-item .product-cat {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.category-product-style-4.corino-highlight_cat-yes .elementor-categories-item .product-cat img {
  height: 150px;
}
@media (min-width: 1441px) {
  .category-product-style-4.corino-highlight_cat-yes .corino-swiper-wrapper .swiper-slide-active {
    width: 400px !important;
  }
  .category-product-style-4.corino-highlight_cat-yes .corino-swiper-wrapper .swiper-slide-active .product-cat {
    width: 100%;
    position: relative;
    flex-direction: row;
    gap: 29px;
  }
  .category-product-style-4.corino-highlight_cat-yes .corino-swiper-wrapper .swiper-slide-active .product-cat .category-product-img {
    width: 150px;
  }
  .category-product-style-4.corino-highlight_cat-yes .corino-swiper-wrapper .swiper-slide-active .product-cat .category-product-img img {
    height: 190px;
  }
  .category-product-style-4.corino-highlight_cat-yes .corino-swiper-wrapper .swiper-slide-active .product-cat .category-product-img:before {
    content: "";
    width: 150px;
    height: 150px;
  }
  .category-product-style-4.corino-highlight_cat-yes .corino-swiper-wrapper .swiper-slide-active .product-cat .category-product-caption {
    width: calc(100% - 230px);
  }
  .category-product-style-4.corino-highlight_cat-yes .corino-swiper-wrapper .swiper-slide-active .product-cat .category-product-caption .title-count {
    font-family: var(--e-global-typography-text-font-family);
    font-weight: var(--e-global-typography-text-font-weight);
    text-transform: var(--e-global-typography-text-text-transform);
    font-style: var(--e-global-typography-text-font-style);
    text-decoration: var(--e-global-typography-text-text-decoration);
    line-height: var(--e-global-typography-text-line-height);
    letter-spacing: var(--e-global-typography-text-letter-spacing);
    font-size: 26px;
    font-size: 1.625rem;
    line-height: 1.15;
    margin: 0;
  }
  .category-product-style-4.corino-highlight_cat-yes .corino-swiper-wrapper .swiper-slide-active .product-cat .category-product-caption .category-title a {
    font-size: 26px;
    font-size: 1.625rem;
  }
}

.category-product-style-5 .title-count {
  margin-bottom: 0;
  transition: all 0.8s ease;
  margin-top: 12px;
  display: flex;
  justify-content: center;
}
.category-product-style-5 .title-count .category-title {
  letter-spacing: 0;
}
.category-product-style-5 .title-count .category-count-wrapper .category-count {
  margin-left: 5px;
}
.category-product-style-5 .title-count .category-count-wrapper .category-count-text {
  display: none;
}
.category-product-style-5 .category-title {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.625;
}
.category-product-style-5 .category-title a {
  color: var(--e-global-color-secondary);
}
.category-product-style-5 .category-count-wrapper {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.86;
  color: var(--e-global-color-primary);
  text-transform: lowercase;
}
.category-product-style-5 .elementor-categories-item {
  position: relative;
}
.category-product-style-5 .elementor-categories-item .category-product-img {
  position: relative;
  width: 160px;
  height: 160px;
}
.category-product-style-5 .elementor-categories-item .category-product-img a {
  position: relative;
}
.category-product-style-5 .elementor-categories-item .category-product-img a img {
  transition: all 0.3s ease;
  z-index: 1;
  width: 160px;
  height: 160px;
}
.category-product-style-5 .elementor-categories-item:hover .category-title a {
  color: #5C42FF;
}

@keyframes spin {
  100% {
    transform: rotateZ(360deg);
  }
}
@keyframes nospin {
  100% {
    transform: rotateZ(0deg);
  }
}
.elementor-widget-corino-product-currency {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.6;
}
.elementor-widget-corino-product-currency .corino-woocs-dropdown {
  position: relative;
  cursor: pointer;
}
.elementor-widget-corino-product-currency .corino-woocs-dropdown:hover .corino-woocs-dropdown-menu {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.elementor-widget-corino-product-currency .corino-woocs-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-column-gap: 6px;
}
.elementor-widget-corino-product-currency .corino-woocs-menu i {
  font-size: 12px;
  font-size: 0.75rem;
}
.elementor-widget-corino-product-currency .corino-woocs-menu-contents {
  font-family: var(--e-global-typography-tertiary-font-family);
  font-weight: var(--e-global-typography-tertiary-font-weight);
  text-transform: var(--e-global-typography-tertiary-text-transform);
  font-style: var(--e-global-typography-tertiary-font-style);
  text-decoration: var(--e-global-typography-tertiary-text-decoration);
  line-height: var(--e-global-typography-tertiary-line-height);
  letter-spacing: var(--e-global-typography-tertiary-letter-spacing);
  color: var(--e-global-color-secondary);
  font-size: 10px;
  font-size: 0.625rem;
  text-transform: uppercase;
  line-height: 1.6;
}
.elementor-widget-corino-product-currency .corino-woocs-name {
  display: block;
  white-space: nowrap;
}
.elementor-widget-corino-product-currency .corino-woocs-name img {
  float: left;
  margin-right: 7px;
  width: 16px;
  height: 14px;
  object-fit: cover;
}
.elementor-widget-corino-product-currency .corino-woocs-dropdown-menu {
  list-style: none;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  z-index: 999;
  text-align: left;
  top: calc(100% + 5px);
  width: calc(100% + 30px);
  padding: 10px 0;
  background-color: #fff;
  pointer-events: none;
  box-shadow: 0 0 30px 0 #0000001A;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translateY(20px);
}
.elementor-widget-corino-product-currency .corino-woocs-dropdown-menu:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 25px;
  top: -25px;
}
.elementor-widget-corino-product-currency .corino-woocs-dropdown-menu li {
  padding: 7px 15px;
  cursor: pointer;
  line-height: 1.2;
}
.elementor-widget-corino-product-currency .corino-woocs-dropdown-menu li:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--e-global-color-secondary);
}
.elementor-widget-corino-product-currency.corino-woocs-dropdown-position-bottom_right .corino-woocs-dropdown-menu {
  right: 0;
  left: unset;
}
.elementor-widget-corino-product-currency.corino-woocs-dropdown-position-bottom_center .corino-woocs-dropdown-menu {
  left: 50%;
  transform: translateX(-50%);
}
.elementor-widget-corino-product-currency.corino-woocs-dropdown-position-top_left .corino-woocs-dropdown-menu {
  top: unset;
  bottom: calc(100% + 5px);
  transform: translateY(30px);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.elementor-widget-corino-product-currency.corino-woocs-dropdown-position-top_left .corino-woocs-dropdown-menu:before {
  top: unset;
  bottom: -25px;
}
.elementor-widget-corino-product-currency.corino-woocs-dropdown-position-top_right .corino-woocs-dropdown-menu {
  right: 0;
  left: unset;
  top: unset;
  bottom: calc(100% + 5px);
}
.elementor-widget-corino-product-currency.corino-woocs-dropdown-position-top_right .corino-woocs-dropdown-menu:before {
  top: unset;
  bottom: -25px;
}
.elementor-widget-corino-product-currency.corino-woocs-dropdown-position-top_center .corino-woocs-dropdown-menu {
  top: unset;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
}
.elementor-widget-corino-product-currency.corino-woocs-dropdown-position-top_center .corino-woocs-dropdown-menu:before {
  top: unset;
  bottom: -25px;
}
.elementor-widget-corino-product-currency.corino-woocs-action-click .corino-woocs-dropdown-menu.active {
  display: block;
  transform: translateY(0);
  visibility: visible;
}
.elementor-widget-corino-product-currency:hover.corino-woocs-dropdown-position-top_center .corino-woocs-select i, .elementor-widget-corino-product-currency:hover.corino-woocs-dropdown-position-top_left .corino-woocs-select i, .elementor-widget-corino-product-currency:hover.corino-woocs-dropdown-position-top_right .corino-woocs-select i {
  transition: all 0.3s ease;
  rotate: -180deg;
}

.elementor-html .site-content-contain {
  z-index: 100;
}
.elementor-html .product-image.no-gallery {
  display: none !important;
}

.woocommerce-carousel {
  position: relative;
}
.woocommerce-carousel ul.products {
  display: none;
  position: static !important;
}
.woocommerce-carousel ul.products.slick-initialized {
  display: block;
}
.woocommerce-carousel ul.products li.product {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
.woocommerce-carousel .corino-products-spacing {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}
.woocommerce-carousel .slick-slide > div {
  display: flex;
  height: 100%;
}
.woocommerce-carousel .slick-next.slick-disabled,
.woocommerce-carousel .slick-prev.slick-disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

@media (min-width: 500px) and (max-width: 768px) {
  .mobile-switcher-style-product-yes.elementor-widget-corino-products ul.products li.product {
    flex: 0 0 50% !important;
    max-width: 50% !important;
  }
}
@media (min-width: 500px) and (max-width: 768px) {
  .mobile-switcher-style-product-yes.elementor-widget-corino-products .woocommerce-carousel ul.products li.product {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

.elementor-widget-corino-products .corino-products-spacing {
  padding: 0;
  border: none;
  border-radius: 0;
}
@media (min-width: 1440px) {
  .elementor-widget-corino-products .product-block .product-transition {
    width: 100%;
  }
}
.elementor-widget-corino-products .count-review {
  margin-bottom: 8px;
}
.elementor-widget-corino-products .count-review .star-rating {
  margin-right: 5px;
}
.elementor-widget-corino-products .product-block-list {
  display: flex;
  height: 100%;
  overflow: unset;
  padding: 19px 30px 19px 20px;
}
@media (max-width: 768px) {
  .elementor-widget-corino-products .product-block-list {
    padding: 19px 20px 19px 20px;
  }
}
@media (max-width: 425px) {
  .elementor-widget-corino-products .product-block-list {
    padding: 19px 20px 19px 20px;
    flex-direction: column;
  }
}
.elementor-widget-corino-products .product-block-list .right {
  flex: 1;
  padding: 11px 0 0 20px;
}
@media (max-width: 600px) {
  .elementor-widget-corino-products .product-block-list .right {
    margin-top: 20px;
  }
}
@media (max-width: 425px) {
  .elementor-widget-corino-products .product-block-list .right {
    padding: 20px 0 20px 0;
    align-items: unset;
  }
}
.elementor-widget-corino-products .product-block-list .right .woocommerce-loop-product__title {
  font-family: var(--e-global-typography-tertiary-font-family);
  font-weight: var(--e-global-typography-tertiary-font-weight);
  text-transform: var(--e-global-typography-tertiary-text-transform);
  font-style: var(--e-global-typography-tertiary-font-style);
  text-decoration: var(--e-global-typography-tertiary-text-decoration);
  line-height: var(--e-global-typography-tertiary-line-height);
  letter-spacing: var(--e-global-typography-tertiary-letter-spacing);
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5714;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
  color: var(--e-global-color-text);
  margin: 0;
}
.elementor-widget-corino-products .product-block-list .right .woocommerce-product-rating {
  font-size: 12px;
  font-size: 0.75rem;
  padding-bottom: 10px;
  line-height: 1;
}
.elementor-widget-corino-products .product-block-list .right .woocommerce-product-rating .woocommerce-review-link {
  font-size: 0px;
  font-size: 0rem;
}
.elementor-widget-corino-products .product-block-list .right .product-attribute {
  gap: 55px;
  width: 100%;
}
.elementor-widget-corino-products .product-block-list .right .add_to_cart {
  width: 100%;
}
.elementor-widget-corino-products .product-block-list .right .add_to_cart a {
  padding: 15px 0;
  width: 100%;
}
.elementor-widget-corino-products .product-block-list .left {
  margin-right: 0;
}
.elementor-widget-corino-products .product-block-list .count-review .star-rating {
  margin-right: 5px;
}
.elementor-widget-corino-products ul.products .woocommerce-loop-product__title,
.elementor-widget-corino-products ul.products .wc-block-grid__product-title {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}
.elementor-widget-corino-products .left {
  max-width: 270px;
  flex: 1;
  margin-right: 30px;
  position: relative;
}
@media (max-width: 600px) {
  .elementor-widget-corino-products .left {
    flex: unset;
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
}
.elementor-widget-corino-products li.product:last-child, .elementor-widget-corino-products li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: unset;
}
.elementor-widget-corino-products li.product .product-category, .elementor-widget-corino-products li .product-category {
  margin-bottom: 2px;
  line-height: 1rem;
  padding: 0;
}
.elementor-widget-corino-products li.product .woocommerce-loop-product__title, .elementor-widget-corino-products li .woocommerce-loop-product__title {
  margin-bottom: 14px;
}
.elementor-widget-corino-products li.product .price, .elementor-widget-corino-products li .price {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
}
.elementor-widget-corino-products li.product .product-button, .elementor-widget-corino-products li .product-button {
  margin-top: 9px;
}
.elementor-widget-corino-products li.product .time-sale, .elementor-widget-corino-products li .time-sale {
  margin-bottom: 19px;
}
.elementor-widget-corino-products li.product .corino-gift-label, .elementor-widget-corino-products li .corino-gift-label {
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #2D81FF;
  color: #ffffff;
  padding: 5px 9px 4px 9px;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: var(--e-global-typography-primary-font-weight);
  text-transform: var(--e-global-typography-primary-text-transform);
  font-style: var(--e-global-typography-primary-font-style);
  text-decoration: var(--e-global-typography-primary-text-decoration);
  line-height: var(--e-global-typography-primary-line-height);
  letter-spacing: var(--e-global-typography-primary-letter-spacing);
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.1;
  text-transform: uppercase;
  border-radius: 5px;
}
.elementor-widget-corino-products li.product .corino-gift-label:before, .elementor-widget-corino-products li .corino-gift-label:before {
  font-family: "corino-icon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  content: "";
  font-size: 14px;
  font-size: 0.875rem;
  margin-right: 6px;
}
.elementor-widget-corino-products.prroduct-layout-list .corino-swiper {
  padding-bottom: 30px;
}
.elementor-widget-corino-products.content-effects-yes .product-block-list {
  padding: 19px 74px 19px 20px;
}
@media (max-width: 1200px) {
  .elementor-widget-corino-products.content-effects-yes .product-block-list {
    padding: 19px 55px 19px 20px;
  }
}
@media (max-width: 768px) {
  .elementor-widget-corino-products.content-effects-yes .product-block-list {
    padding: 19px 20px 19px 20px;
  }
}
.elementor-widget-corino-products.content-effects-yes .right {
  flex-direction: unset;
  justify-content: space-between;
  gap: 50px;
  margin: 0;
}
@media (max-width: 1440px) {
  .elementor-widget-corino-products.content-effects-yes .right {
    gap: 30px;
  }
}
@media (max-width: 1200px) {
  .elementor-widget-corino-products.content-effects-yes .right {
    gap: 30px;
  }
}
@media (max-width: 425px) {
  .elementor-widget-corino-products.content-effects-yes .right {
    flex-direction: column;
    gap: 5px;
  }
}
.elementor-widget-corino-products.content-effects-yes .right .categories_title {
  width: 60%;
}
@media (max-width: 425px) {
  .elementor-widget-corino-products.content-effects-yes .right .categories_title {
    width: unset;
  }
}
.elementor-widget-corino-products.content-effects-yes .right .rating_price {
  position: relative;
  width: 40%;
}
@media (max-width: 425px) {
  .elementor-widget-corino-products.content-effects-yes .right .rating_price {
    width: unset;
  }
}
.elementor-widget-corino-products.content-effects-yes .right .rating_price .price {
  position: absolute;
  left: 0;
}

.price-column-yes .product-caption .product-caption-footer .price {
  max-width: 100%;
  width: 100%;
}
.price-column-yes .product-caption .product-price-stock {
  justify-content: flex-start;
}

.elementor-widget-corino-search {
  z-index: 99;
}
.elementor-widget-corino-search .widget {
  padding: 0;
  margin-bottom: 0;
  border: none;
}
.elementor-widget-corino-search .widget form:before {
  display: none;
}
.elementor-widget-corino-search .widget form .search-field {
  background-color: transparent;
}
.elementor-widget-corino-search .widget form .search-field::placeholder {
  color: var(--e-global-color-lighter);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 24px;
  font-weight: var(--e-global-typography-tertiary-font-weight);
  font-family: var(--e-global-typography-tertiary-font-family);
}
.elementor-widget-corino-search .widget form .search-field:hover {
  background-color: transparent;
}
.elementor-widget-corino-search .widget form input[type=search] {
  padding: 7px 26px 7px 0px;
  border-width: 0px 1px 0px 0px;
  border-color: var(--e-global-color-border);
}
.elementor-widget-corino-search .widget form button[type=submit] {
  font-size: 0;
  right: 0;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  border: none;
  width: 48px;
  color: var(--e-global-color-lighter);
  display: flex;
  align-items: center;
}
.elementor-widget-corino-search .widget form button[type=submit]:before {
  font-size: 20px;
  z-index: 9;
  font-family: "corino-icon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  content: "";
  color: var(--e-global-color-accent);
  display: flex;
}
.elementor-widget-corino-search .widget form button[type=submit]:hover {
  box-shadow: none;
}
.elementor-widget-corino-search .widget form button[type=submit]:hover:before {
  color: var(--e-global-color-primary);
}
.elementor-widget-corino-search .woocommerce-product-search {
  display: flex;
  border-radius: 4px;
  gap: 19px;
}
.elementor-widget-corino-search .woocommerce-product-search .search-by-category {
  order: -1;
}
.elementor-widget-corino-search .woocommerce-product-search .search-by-category .input-dropdown-inner {
  display: flex;
  width: 100%;
  transition: all 0.3s ease;
}
.elementor-widget-corino-search .woocommerce-product-search .search-by-category .input-dropdown-inner > a {
  border: 1px solid var(--e-global-color-primary);
  padding-right: 20px;
  padding-left: 20px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #000;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: var(--e-global-typography-tertiary-font-family);
  font-weight: var(--e-global-typography-tertiary-font-weight);
  text-transform: var(--e-global-typography-tertiary-text-transform);
  font-style: var(--e-global-typography-tertiary-font-style);
  text-decoration: var(--e-global-typography-tertiary-text-decoration);
  line-height: var(--e-global-typography-tertiary-line-height);
  letter-spacing: var(--e-global-typography-tertiary-letter-spacing);
  transition: all 0.3s ease;
  width: 200px;
}
.elementor-widget-corino-search .woocommerce-product-search .search-by-category .input-dropdown-inner > a:before {
  font-family: "corino-icon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  content: "";
}
.elementor-widget-corino-search .woocommerce-product-search .search-by-category .input-dropdown-inner > a:after {
  display: none;
}
.elementor-widget-corino-search .woocommerce-product-search .search-by-category .input-dropdown-inner:after {
  display: none;
}
.elementor-widget-corino-search .woocommerce-product-search .search-by-category .input-dropdown-inner.dd-shown .list-wrapper {
  display: block;
}
.elementor-widget-corino-search .woocommerce-product-search .search-by-category .list-wrapper {
  background-color: transparent;
  box-shadow: none;
}
.elementor-widget-corino-search .woocommerce-product-search .search-by-category .list-wrapper .corino-scroll-content {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--e-global-color-primary);
  margin: 0;
}
.elementor-widget-corino-search .woocommerce-product-search .search-by-category ul {
  list-style: none;
}
.elementor-widget-corino-search .woocommerce-product-search .search-by-category ul li a {
  padding: 5px 15px;
}
.elementor-widget-corino-search .woocommerce-product-search .search-by-category .dd-shown > a {
  color: var(--e-global-color-primary);
}
.elementor-widget-corino-search .woocommerce-product-search .search-by-category img {
  width: 30px;
  height: 30px;
  object-fit: cover;
}
.elementor-widget-corino-search .site-header-search {
  display: block;
}
.elementor-widget-corino-search .site-header-search .button-search-popup {
  text-align: center;
}
.elementor-widget-corino-search .site-header-search .button-search-popup .corino-icon-search {
  margin-bottom: 5px;
}
.elementor-widget-corino-search .site-header-search .button-search-popup .content {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  color: var(--e-global-color-text);
}
.elementor-widget-corino-search .site-header-search .button-search-popup:hover {
  color: var(--e-global-color-secondary);
}
.elementor-widget-corino-search .site-header-search .button-search-popup:hover .corino-icon-search {
  color: var(--e-global-color-secondary);
}
.elementor-widget-corino-search .site-header-search .button-search-popup.layout-3 {
  display: flex;
}
.elementor-widget-corino-search .site-header-search .button-search-popup.layout-3 i {
  margin-right: 15px;
}
.elementor-widget-corino-search .site-header-search .button-search-popup:hover .content {
  color: var(--e-global-color-primary);
}
.elementor-widget-corino-search .site-header-search .button-search-popup:hover .corino-icon-search {
  color: var(--e-global-color-primary);
}
@media screen and (max-width: 767px) {
  .elementor-widget-corino-search .site-header-search .button-search-popup .content {
    display: none;
  }
}

.corino-search-layout-2 .widget form:before, .corino-search-layout-3 .widget form:before {
  display: none;
}
.corino-search-layout-2 .widget form input[type=search], .corino-search-layout-3 .widget form input[type=search] {
  padding: 11px 0 11px 20px;
  border-width: 1px 0px 1px 1px;
  border-color: #E2E2E2;
  color: var(--e-global-color-secondary);
  border-radius: 0;
}
.corino-search-layout-2 .widget form button[type=submit], .corino-search-layout-3 .widget form button[type=submit] {
  font-size: 12px;
  font-size: 0.75rem;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: #fff;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: var(--e-global-typography-primary-font-weight);
  text-transform: var(--e-global-typography-primary-text-transform);
  font-style: var(--e-global-typography-primary-font-style);
  text-decoration: var(--e-global-typography-primary-text-decoration);
  line-height: var(--e-global-typography-primary-line-height);
  letter-spacing: var(--e-global-typography-primary-letter-spacing);
  padding: 0;
  background-color: var(--e-global-color-primary);
  width: 117px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}
.corino-search-layout-2 .widget form button[type=submit]:before, .corino-search-layout-3 .widget form button[type=submit]:before {
  display: none;
}
.corino-search-layout-2 .widget form button[type=submit]:hover, .corino-search-layout-3 .widget form button[type=submit]:hover {
  background-color: var(--e-global-color-accent);
}

.corino-search-layout-2 .woocommerce-product-search {
  gap: 0;
}
.corino-search-layout-2 .widget form {
  background-color: #fff;
  border-radius: 0;
}
.corino-search-layout-2 .widget form input[type=search] {
  border-width: 0px 0px 0px 1px;
}
.corino-search-layout-2 .widget form .search-by-category .input-dropdown-inner > a {
  border: none;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding-right: 20px;
  padding-left: 15px;
}
.corino-search-layout-2 .widget form .search-by-category .input-dropdown-inner > a:before {
  font-family: "corino-icon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  content: "";
  font-size: 6px;
  font-size: 0.375rem;
}
.corino-search-layout-2 .widget form .search-by-category .input-dropdown-inner > a span {
  width: initial;
}
.corino-search-layout-2 .widget form .search-by-category .input-dropdown-inner:hover > a {
  color: #ffffff;
  background-color: var(--e-global-color-primary);
}

.elementor-slider-scrolling-item-wrapper {
  display: flex;
  white-space: nowrap;
  gap: 60px;
}
.elementor-slider-scrolling-item-wrapper .elementor-slider-scrolling-inner {
  display: inline-flex;
  position: relative;
  align-items: center;
  gap: 60px;
}
.elementor-slider-scrolling-item-wrapper .elementor-slider-scrolling-inner .elementor-slider-scrolling-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease 0.3s;
  width: fit-content;
  gap: 60px;
}
.elementor-slider-scrolling-item-wrapper .elementor-slider-scrolling-inner .elementor-slider-scrolling-item .elementor-scrolling-item-inner {
  display: flex;
  position: relative;
}
.elementor-slider-scrolling-item-wrapper .elementor-slider-scrolling-inner .elementor-slider-scrolling-item .elementor-scrolling-item-inner .slider-scrolling-title {
  display: flex;
  align-items: center;
  line-height: 1;
}
@media (max-width: 568px) {
  .elementor-slider-scrolling-item-wrapper .elementor-slider-scrolling-inner .elementor-slider-scrolling-item .elementor-scrolling-item-inner .slider-scrolling-title {
    margin: 0 30px;
  }
}
.elementor-slider-scrolling-item-wrapper .elementor-slider-scrolling-inner .elementor-slider-scrolling-item .elementor-scrolling-item-inner .scrolling-title, .elementor-slider-scrolling-item-wrapper .elementor-slider-scrolling-inner .elementor-slider-scrolling-item .elementor-scrolling-item-inner .after-scrolling-title {
  font-family: var(--e-global-typography-tertiary-font-family);
  font-weight: var(--e-global-typography-tertiary-font-weight);
  text-transform: var(--e-global-typography-tertiary-text-transform);
  font-style: var(--e-global-typography-tertiary-font-style);
  text-decoration: var(--e-global-typography-tertiary-text-decoration);
  line-height: var(--e-global-typography-tertiary-line-height);
  letter-spacing: var(--e-global-typography-tertiary-letter-spacing);
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0;
  position: relative;
}
.elementor-slider-scrolling-item-wrapper .elementor-slider-scrolling-inner .elementor-slider-scrolling-item .elementor-scrolling-item-inner .scrolling-title span, .elementor-slider-scrolling-item-wrapper .elementor-slider-scrolling-inner .elementor-slider-scrolling-item .elementor-scrolling-item-inner .after-scrolling-title span {
  position: absolute;
  left: 0;
  color: transparent;
  z-index: -1;
}
.elementor-slider-scrolling-item-wrapper .elementor-slider-scrolling-inner .elementor-scrolling-icon svg {
  display: flex;
  align-items: center;
  width: 40px;
  height: 40px;
}

.scroll-style-2 .elementor-slider-scrolling-inner .elementor-slider-scrolling-item .elementor-scrolling-item-inner .scrolling-title {
  position: relative;
  -webkit-text-stroke: 4px #EED186;
  color: unset;
}
.scroll-style-2 .elementor-slider-scrolling-inner .elementor-slider-scrolling-item .elementor-scrolling-item-inner .scrolling-title span {
  position: absolute;
  left: 0;
  -webkit-text-stroke: 2px;
  pointer-events: none;
  color: unset;
  z-index: unset;
}
.scroll-style-2 .elementor-slider-scrolling-inner .elementor-slider-scrolling-item:nth-child(4n-1) .elementor-scrolling-item-inner .scrolling-title {
  color: #EED186;
  -webkit-text-stroke: 0 #EED186 !important;
}
.scroll-style-2 .elementor-slider-scrolling-inner .elementor-slider-scrolling-item:nth-child(4n-1) .elementor-scrolling-item-inner .scrolling-title span {
  position: absolute;
  left: 0;
  -webkit-text-stroke: 0;
  pointer-events: none;
  color: unset !important;
}
.scroll-style-2 .elementor-slider-scrolling-inner .elementor-slider-scrolling-item:nth-child(4n+4) .elementor-scrolling-item-inner .scrolling-title {
  color: #EED186;
  -webkit-text-stroke: 0 #EED186 !important;
}
.scroll-style-2 .elementor-slider-scrolling-inner .elementor-slider-scrolling-item:nth-child(4n+4) .elementor-scrolling-item-inner .scrolling-title span {
  position: absolute;
  left: 0;
  -webkit-text-stroke: 0;
  pointer-events: none;
  color: unset !important;
}
.scroll-style-2 .elementor-slider-scrolling-inner .elementor-slider-scrolling-item:nth-child(3n) .elementor-scrolling-item-inner .scrolling-title {
  color: #EED186;
  -webkit-text-stroke: 0 #EED186 !important;
}
.scroll-style-2 .elementor-slider-scrolling-inner .elementor-slider-scrolling-item:nth-child(3n) .elementor-scrolling-item-inner .scrolling-title span {
  position: absolute;
  left: 0;
  -webkit-text-stroke: 0;
  pointer-events: none;
  color: unset !important;
}

.scrolling-effects-yes .elementor-slider-scrolling-item-wrapper {
  display: flex;
  white-space: nowrap;
}
.scrolling-effects-yes .elementor-slider-scrolling-item-wrapper .elementor-slider-scrolling-inner {
  display: inline-flex;
  position: relative;
  animation-name: scrolling;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 20s;
}
.scrolling-effects-yes .elementor-slider-scrolling-item-wrapper .elementor-slider-scrolling-inner .elementor-slider-scrolling-item {
  display: flex;
  align-items: center;
  transition: all ease 0.3s;
}
.scrolling-effects-yes .elementor-slider-scrolling-item-wrapper .elementor-slider-scrolling-inner .elementor-slider-scrolling-item .elementor-scrolling-item-inner {
  display: flex;
  position: relative;
}
@keyframes scrolling {
  100% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.elementor-teambox-item .team-items {
  position: relative;
}
.elementor-teambox-item .team-image {
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  transition: all 0.4s ease;
  max-width: 100%;
  height: 340px;
}
.elementor-teambox-item .team-image img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
  transition: all 0.4s ease;
  position: relative;
}
.elementor-teambox-item:hover .team-icon-socials {
  transition: all 0.5s ease;
}
.elementor-teambox-item:hover .team-icon-socials ul {
  visibility: visible;
  opacity: 1;
}
.elementor-teambox-item .team-top {
  position: relative;
}
.elementor-teambox-item .team-icon-socials {
  transition: all 0.5s ease;
  position: relative;
}
.elementor-teambox-item .team-icon-socials ul {
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  justify-content: center;
  gap: 19px;
  position: absolute;
  right: 0;
  top: 24px;
  visibility: hidden;
  opacity: 0;
}
.elementor-teambox-item .team-icon-socials ul li {
  line-height: 1;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
}
.elementor-teambox-item .team-icon-socials ul li:last-child {
  margin-right: 0;
}
.elementor-teambox-item .team-icon-socials ul li:hover {
  transition: all 0.4s ease;
}
.elementor-teambox-item .team-icon-socials ul li:hover a {
  color: var(--e-global-color-secondary);
}
.elementor-teambox-item .team-icon-socials ul li a {
  color: var(--e-global-color-border);
  text-align: center;
  font-size: 16px;
  font-size: 1rem;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.elementor-teambox-item .team-caption {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 18px;
  gap: 5px;
}
.elementor-teambox-item .team-name {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  color: var(--e-global-color-secondary);
  text-transform: capitalize;
}
.elementor-teambox-item .team-job {
  font-family: var(--e-global-typography-tertiary-font-family);
  font-weight: var(--e-global-typography-tertiary-font-weight);
  text-transform: var(--e-global-typography-tertiary-text-transform);
  font-style: var(--e-global-typography-tertiary-font-style);
  text-decoration: var(--e-global-typography-tertiary-text-decoration);
  line-height: var(--e-global-typography-tertiary-line-height);
  letter-spacing: var(--e-global-typography-tertiary-letter-spacing);
  font-size: 10px;
  font-size: 0.625rem;
  color: var(--e-global-color-primary);
  line-height: 1.4;
  text-transform: uppercase;
}
.elementor-teambox-item .team-button {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  margin-top: -20px;
  margin-right: -1px;
}
.elementor-teambox-item .team-button .team-sub {
  width: fit-content;
  clip-path: polygon(15% 0, 100% 0%, 100% 100%, 0% 100%);
  background: #F3F5FA;
  color: #000;
  padding: 10px 0 0 43px;
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 20px;
}
.elementor-teambox-item .team-button .team-sub i {
  margin-left: 9px;
  font-size: 8px;
  font-size: 0.5rem;
  color: #DE3431;
}

.elementor-testimonial-item-wrapper .layout-1 .swiper-slide {
  opacity: 0.25;
}
.elementor-testimonial-item-wrapper .layout-1 .swiper-slide-visible {
  opacity: 1;
}
.elementor-testimonial-item-wrapper .layout-1 .item-inner {
  text-align: center;
  padding: 0;
}
.elementor-testimonial-item-wrapper .layout-1 .elementor-testimonial-rating {
  color: #EED186;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  margin: 20px 0 29px 0;
  letter-spacing: 2.9px;
}
.elementor-testimonial-item-wrapper .layout-1 .elementor-testimonial-rating i:last-child {
  margin-right: 0;
}
.elementor-testimonial-item-wrapper .layout-1 .testimonial-caption .caption-top {
  position: relative;
}
.elementor-testimonial-item-wrapper .layout-1 .testimonial-caption .details {
  margin-top: 4px;
}
.elementor-testimonial-item-wrapper .layout-1 .testimonial-content-text {
  position: relative;
}
.elementor-testimonial-item-wrapper .layout-1 .name {
  display: block;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: var(--e-global-typography-primary-font-weight);
  text-transform: var(--e-global-typography-primary-text-transform);
  font-style: var(--e-global-typography-primary-font-style);
  text-decoration: var(--e-global-typography-primary-text-decoration);
  line-height: var(--e-global-typography-primary-line-height);
  letter-spacing: var(--e-global-typography-primary-letter-spacing);
  color: var(--e-global-color-secondary);
  font-size: 16px;
  font-size: 1rem;
  text-transform: capitalize;
  line-height: 1.375;
  margin-bottom: -4px;
}
.elementor-testimonial-item-wrapper .layout-1 .job {
  font-family: var(--e-global-typography-tertiary-font-family);
  font-weight: var(--e-global-typography-tertiary-font-weight);
  text-transform: var(--e-global-typography-tertiary-text-transform);
  font-style: var(--e-global-typography-tertiary-font-style);
  text-decoration: var(--e-global-typography-tertiary-text-decoration);
  line-height: var(--e-global-typography-tertiary-line-height);
  letter-spacing: var(--e-global-typography-tertiary-letter-spacing);
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.4;
  color: var(--e-global-color-text);
  text-transform: uppercase;
}
.elementor-testimonial-item-wrapper .layout-1 .content {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.3333;
  color: var(--e-global-color-text);
  text-align: center;
  margin-bottom: 21px;
  position: relative;
}
.elementor-testimonial-item-wrapper .layout-1 .elementor-testimonial-image {
  display: flex;
  justify-content: center;
  padding-bottom: 18px;
}
.elementor-testimonial-item-wrapper .layout-1 .elementor-testimonial-image img {
  width: 70px;
  height: 70px;
}
.elementor-testimonial-item-wrapper .layout-1 .icon {
  display: block;
  margin-right: 4px;
  font-size: 86px;
  font-size: 5.375rem;
  line-height: 1;
  color: #F6F0EA;
}
.elementor-testimonial-item-wrapper .layout-2 .swiper-slide-active .item-inner {
  border-left: 1px solid var(--e-global-color-border);
  border-right: 1px solid var(--e-global-color-border);
}
.elementor-testimonial-item-wrapper .layout-2 .elementor-testimonial-item {
  display: flex;
  justify-content: stretch;
  position: relative;
}
.elementor-testimonial-item-wrapper .layout-2 .inner {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.elementor-testimonial-item-wrapper .layout-2 .title {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.375;
}
.elementor-testimonial-item-wrapper .layout-2 .icon {
  display: block;
  margin-right: 4px;
  font-size: 86px;
  font-size: 5.375rem;
  line-height: 1;
  color: #ffffff;
  position: absolute;
  right: -0.6%;
  top: 20.5%;
}
@media (max-width: 425px) {
  .elementor-testimonial-item-wrapper .layout-2 .icon {
    display: none;
  }
}
.elementor-testimonial-item-wrapper .layout-2 .elementor-testimonial-rating {
  color: #EED186;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  margin: 0 0 13px 0;
  letter-spacing: 3.5px;
}
.elementor-testimonial-item-wrapper .layout-2 .elementor-testimonial-rating i:last-child {
  margin-right: 0;
}
.elementor-testimonial-item-wrapper .layout-2 .content {
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7142;
  color: var(--e-global-color-text);
  text-align: center;
  margin-bottom: 13px;
  position: relative;
}
.elementor-testimonial-item-wrapper .layout-2 .testimonial-caption .caption-top {
  margin-right: 12px;
  position: relative;
}
.elementor-testimonial-item-wrapper .layout-2 .testimonial-caption .details {
  margin-top: 4px;
}
.elementor-testimonial-item-wrapper .layout-2 .name {
  display: block;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: var(--e-global-typography-primary-font-weight);
  text-transform: var(--e-global-typography-primary-text-transform);
  font-style: var(--e-global-typography-primary-font-style);
  text-decoration: var(--e-global-typography-primary-text-decoration);
  line-height: var(--e-global-typography-primary-line-height);
  letter-spacing: var(--e-global-typography-primary-letter-spacing);
  color: var(--e-global-color-secondary);
  font-size: 16px;
  font-size: 1rem;
  text-transform: capitalize;
  line-height: 1.375;
  margin-bottom: -4px;
}
.elementor-testimonial-item-wrapper .layout-2 .job {
  font-family: var(--e-global-typography-tertiary-font-family);
  font-weight: var(--e-global-typography-tertiary-font-weight);
  text-transform: var(--e-global-typography-tertiary-text-transform);
  font-style: var(--e-global-typography-tertiary-font-style);
  text-decoration: var(--e-global-typography-tertiary-text-decoration);
  line-height: var(--e-global-typography-tertiary-line-height);
  letter-spacing: var(--e-global-typography-tertiary-letter-spacing);
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.4;
  color: var(--e-global-color-text);
  text-transform: uppercase;
}
.elementor-testimonial-item-wrapper .layout-2 .elementor-testimonial-image {
  line-height: 0;
  display: flex;
}
.elementor-testimonial-item-wrapper .layout-2 .elementor-testimonial-image img {
  width: 187px;
  height: 48px;
  object-fit: cover;
  position: relative;
}

.show-hover-bottom-yes .elementor-testimonial-item-wrapper .inner {
  position: relative;
}
.show-hover-bottom-yes .elementor-testimonial-item-wrapper .inner:after {
  content: "";
  height: 8px;
  width: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--e-global-color-primary);
  display: inline-block;
  transition: all 0.3s ease;
}
.show-hover-bottom-yes .elementor-testimonial-item-wrapper .inner:hover:after {
  width: 100%;
  transition: all 0.3s ease;
}

@media (max-device-width: 767px) {
  .elementor-testimonial-item-wrapper .inner {
    display: block;
  }
  .elementor-testimonial-item-wrapper .content {
    font-size: 16px;
    font-size: 1rem;
  }
}
.elementor-view-stacked .icon i {
  background-color: var(--e-global-color-primary);
  color: #FFFFFF;
  padding: 8px 5px 8px 5px;
}

.elementor-view-framed .icon i {
  background-color: #FFFFFF;
  color: var(--e-global-color-primary);
  border-color: var(--e-global-color-primary);
  border: 3px solid;
  padding: 0.5em;
}

.elementor-shape-circle .icon i {
  border-radius: 50%;
}

.vertical-menu-separator-yes .vertical-navigation:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  height: 23px;
  width: 1px;
  background-color: var(--e-global-color-border);
  transform: translateY(-50%);
}
.vertical-menu-separator-yes .vertical-navigation:hover:after {
  background-color: transparent;
}

.vertical-navigation .vertical-menu menu {
  overflow-y: auto;
}
.vertical-navigation .vertical-menu ::-webkit-scrollbar {
  width: 4px;
}
.vertical-navigation .vertical-menu ::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.vertical-navigation .vertical-menu ::-webkit-scrollbar-thumb {
  background: #888;
  opacity: 0.7;
}
.vertical-navigation .vertical-menu ::-webkit-scrollbar-thumb:hover {
  background: #888;
  opacity: 1;
}

.nav-vertiacl-menu-layout-content-style-2 .vertical-navigation .vertical-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  position: relative;
  width: auto;
  border-radius: 10px;
}
.nav-vertiacl-menu-layout-content-style-2 .vertical-navigation-header .vertical-navigation-title .title-icon .icon-2, .nav-vertiacl-menu-layout-content-style-2 .vertical-navigation-header .vertical-navigation-title .title-icon .icon-3 {
  width: 18px;
}
.nav-vertiacl-menu-layout-content-style-2.nav-vertiacl-menu-header-yes .vertical-navigation-header {
  display: none;
}

.elementor-video-popup {
  display: inline-flex;
  align-items: center;
}

.elementor-video-popup {
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  justify-content: center;
  position: relative;
}
.elementor-video-popup .elementor-video-icon {
  transform: translateX(2px);
  transition: transform 0.8s cubic-bezier(0.45, 0, 0.14, 1.03);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
}
.elementor-video-popup .elementor-video-icon svg {
  width: 24px;
  height: 24px;
}

.corino-video-popup .content-title {
  height: 125px;
}
.corino-video-popup .content-title svg {
  fill: currentColor;
  height: auto;
  max-width: 125px;
  transform-origin: center;
  width: 125px;
}
.corino-video-popup .content-title svg text {
  position: relative;
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: var(--e-global-color-secondary);
  text-transform: uppercase;
}

.video-title-effects-yes .elementor-video-popup {
  position: relative;
}
.video-title-effects-yes .elementor-video-popup .content-title svg {
  animation: effect 10s linear infinite;
  overflow: visible;
}
.video-title-effects-yes .elementor-video-popup .elementor-video-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@keyframes effect {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.video-icon-effectsyes .elementor-video-popup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.video-icon-effectsyes .elementor-video-popup .elementor-video-icon {
  position: relative;
  height: 50px;
  width: 50px;
  background-color: var(--e-global-color-primary);
  border-radius: 50%;
}
.video-icon-effectsyes .elementor-video-popup .elementor-video-icon:before {
  content: "";
  position: absolute;
  opacity: 0.2;
  z-index: -1;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  animation: loading1 2s infinite linear;
  background-color: var(--e-global-color-primary);
}
.video-icon-effectsyes .elementor-video-popup i.corino-icon-playy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.elementor-video-popup .video-content {
  -webkit-box-flex: 1;
  flex-grow: 1;
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
  display: inline-flex;
  flex-direction: column;
}
.elementor-video-popup .video-icon-align-before {
  margin-right: 5px;
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}
.elementor-video-popup .video-icon-align-after {
  -webkit-box-ordinal-group: 16;
  -ms-flex-order: 15;
  order: 15;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  font-size: 24px;
  border: none;
}
.mfp-image-holder .mfp-close:active, .mfp-image-holder .mfp-close:focus, .mfp-image-holder .mfp-close:hover,
.mfp-iframe-holder .mfp-close:active,
.mfp-iframe-holder .mfp-close:focus,
.mfp-iframe-holder .mfp-close:hover {
  color: var(--e-global-color-primary);
  background-color: transparent;
  border: none;
}

@keyframes loading {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
@keyframes loading1 {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.4);
  }
}
@keyframes pulse {
  from {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  }
  to {
    box-shadow: 0 0 0 50px rgba(255, 255, 255, 0);
  }
}
.elementor-column-wrap:hover .text-editor-hover .elementor-text-editor > *:before {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.elementor-column-wrap .text-editor-hover .elementor-text-editor > * {
  position: relative;
  display: inline-block;
}
.elementor-column-wrap .text-editor-hover .elementor-text-editor > *:before {
  position: absolute;
  content: attr(data-hover);
  color: var(--e-global-color-secondary);
  clip-path: polygon(0 0, 0 0, 0% 100%, 0 100%);
  transition: clip-path 0.5s ease;
}

.animated-slide-column > .elementor-column-wrap {
  transition: opacity 0s 0.6s, transform 1s 0.6s;
  opacity: 0;
  transform: translateX(-20px) translateZ(0);
}
.animated-slide-column:after {
  content: "";
  margin: 0 -5px 0 0;
  position: absolute;
  top: 0;
  right: 100%;
  bottom: 100%;
  left: 0;
  background-color: var(--e-global-color-primary);
  z-index: 3;
  transition: bottom 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) 0s, right 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0.3s, margin 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0.3s, left 0.4s cubic-bezier(0.77, 0, 0.175, 1) 0.6s;
}
.animated-slide-column.col-loaded {
  overflow: hidden;
  position: relative;
}
.animated-slide-column.col-loaded .elementor-column-wrap {
  transform: translateX(0);
  opacity: 1;
}
.animated-slide-column.col-loaded:after {
  margin-right: 0;
  right: -3px;
  bottom: 0;
  left: 100%;
}

.animated-bg-parallax {
  overflow: hidden;
}
.animated-bg-parallax > .elementor-column-wrap {
  overflow: hidden;
}
.animated-bg-parallax .img-banner-parallax {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.animated-bg-parallax .img-banner-parallax:not(.hover) {
  transform: none !important;
}

.elementor-widget-image-box.box-title-decor-yes .elementor-image-box-img {
  position: relative;
  overflow: hidden;
}
.elementor-widget-image-box.box-title-decor-yes .elementor-image-box-img img {
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.elementor-widget-image-box.box-title-decor-yes .elementor-image-box-title {
  position: relative;
}
.elementor-widget-image-box.box-title-decor-yes .elementor-image-box-title:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 0;
  background-color: var(--e-global-color-primary);
  top: -60px;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 1;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.elementor-widget-image-box.box-title-decor-yes:hover .elementor-image-box-title:before {
  height: 50px;
}
.elementor-widget-image-box.box-title-decor-yes:hover .elementor-image-box-title a {
  color: var(--e-global-color-primary);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.elementor-widget-image-box.box-title-decor-yes:hover img {
  transform: scale(1.1);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.text-rotate {
  -moz-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-90deg);
  transform: translateX(-50%) translateY(-50%) rotate(-90deg);
}

.text-shadow {
  -webkit-text-stroke: 3px #fff;
  -webkit-text-fill-color: #BF864F;
}

.hover-style .elementor-cta__button-wrapper {
  opacity: 0;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translateY(10px);
  height: 0;
}
.hover-style .elementor-cta__title {
  transform: translateY(0);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hover-style .elementor-cta__content {
  overflow: hidden;
}
.hover-style:hover .elementor-cta__title {
  transform: translateY(-20px);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hover-style:hover .elementor-cta__button-wrapper {
  opacity: 1;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  transform: translateY(-10px);
}

.mask-text .elementor-counter > * {
  color: transparent;
  text-align: center;
  font-size: 10em;
  font-weight: 900;
  background-image: url("../../../assets/images/ldp_mask.jpg");
  background-size: contain;
  background-clip: text;
  -webkit-background-clip: text;
  -ms-background-clip: text;
  -moz-background-clip: text;
}

.e--ua-safari .mask-text .elementor-counter {
  text-align: center;
}
.e--ua-safari .mask-text .elementor-counter > * {
  display: inline;
}

.elementor-widget-icon-box .elementor-icon-box-icon .elementor-icon {
  display: flex;
  font-size: 50px;
  font-size: 3.125rem;
  color: var(--e-global-color-secondary);
  max-width: 100%;
}
.elementor-widget-icon-box .elementor-icon-box-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  line-height: 1.4;
  text-transform: capitalize;
  color: var(--e-global-color-secondary);
}
.elementor-widget-icon-box .elementor-icon-box-description {
  color: var(--e-global-color-text);
}
.elementor-widget-icon-box .elementor-icon-box-description a:not(:hover),
.elementor-widget-icon-box .elementor-icon-box-description span {
  color: var(--e-global-color-secondary);
}
.elementor-widget-icon-box:hover {
  cursor: pointer;
}
.elementor-widget-icon-box:hover .elementor-icon-box-title {
  color: var(--e-global-color-primary);
}

.elementor-view-default .elementor-icon {
  color: var(--e-global-color-primary);
  border-color: var(--e-global-color-primary);
}

.elementor-view-stacked .elementor-icon {
  background-color: #fff;
  color: var(--e-global-color-primary);
}

.elementor-widget-icon-box.elementor-view-framed .elementor-icon {
  border: 1px dashed;
  border-color: #DDDADA;
}
.elementor-widget-icon-box.elementor-view-framed .elementor-icon:hover {
  border: 1px solid var(--e-global-color-secondary);
}

.title-effects-yes .elementor-icon-box-title {
  font-size: 86px;
  font-size: 5.375rem;
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  line-height: 1;
  text-transform: capitalize;
  color: var(--e-global-color-secondary);
}
.title-effects-yes .elementor-icon-box-title:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  background-color: var(--e-global-color-primary);
  bottom: 3px;
  left: -1px;
  transition: width 0.7s;
  z-index: -1;
}

.enable-icon-effects-yes .elementor-icon-box-wrapper {
  position: relative;
}
.enable-icon-effects-yes .elementor-icon-box-icon .elementor-icon {
  position: relative;
  width: unset;
  display: inline-block;
  animation: qodef-element-rotate 20s linear infinite;
}
.enable-icon-effects-yes .elementor-icon-box-icon .elementor-icon svg {
  width: 286px;
  height: 286px;
}
@keyframes qodef-element-rotate {
  100% {
    transform: rotate(-360deg);
  }
}
.enable-icon-effects-yes .elementor-icon-box-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.elementor-image-box-wrapper .elementor-image-box-img img {
  display: inline-block;
  border-radius: 16px;
}
.elementor-image-box-wrapper:hover img {
  box-shadow: 8px 8px 0 #D9D9D9;
}

.image-box-effects-yes .elementor-image-box-wrapper {
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.image-box-effects-yes .elementor-image-box-wrapper .elementor-image-box-img {
  position: relative;
}
.image-box-effects-yes .elementor-image-box-wrapper .elementor-image-box-img .elementor-image-box-img-inner:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  border-radius: 0px;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.image-box-effects-yes .elementor-image-box-wrapper .elementor-image-box-img img {
  box-shadow: 0 4px 30px 0 #0000001A;
}
.image-box-effects-yes .elementor-image-box-wrapper:hover .elementor-image-box-button {
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 1;
}
.image-box-effects-yes .elementor-image-box-wrapper:hover .elementor-image-box-img-inner:before {
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 1;
}
.image-box-effects-yes .elementor-image-box-button {
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  padding: 0.9375rem 2.375rem;
  font-size: 13px;
  font-size: 0.8125rem;
  border-radius: 0px;
  border: 1px solid var(--e-global-color-primary);
  background-color: var(--e-global-color-primary);
  white-space: nowrap;
  color: #ffffff;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid var(--e-global-color-secondary);
  opacity: 0;
  position: absolute;
  top: 33%;
  transform: translate(-47%, 35%);
  line-height: 1.5;
}
.image-box-effects-yes .elementor-image-box-button span {
  position: relative;
  z-index: 2;
}
.image-box-effects-yes .elementor-image-box-button:hover {
  border: 1px solid var(--e-global-color-secondary);
  color: white;
  background-color: var(--e-global-color-secondary);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.image-box-effects-yes .elementor-image-box-button:hover .elementor-button-icon {
  color: var(--e-global-color-secondary);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.image-box-effects-yes .elementor-image-box-button i {
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: -3px;
}

.icon-list-hover-underline .elementor-icon-list-item a:hover .elementor-icon-list-text {
  text-decoration: underline;
}

.image-style-corino-yes .elementor-image-box-img {
  border: 1px dashed var(--e-global-color-border);
  padding: 20px;
  border-radius: 4px;
}
.image-style-corino-yes .elementor-image-box-img img {
  border-radius: 4px;
}
.image-style-corino-yes .elementor-image-box-img-inner {
  position: relative;
}
.image-style-corino-yes .elementor-image-box-img-inner:after {
  content: "";
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.image-style-corino-yes .elementor-button-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 9;
  visibility: hidden;
  opacity: 0;
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.image-style-corino-yes .elementor-image-box-title {
  font-size: 16px;
  font-size: 1rem;
  color: var(--e-global-color-secondary);
}
.image-style-corino-yes .elementor-image-box-title a {
  color: var(--e-global-color-secondary);
}
.image-style-corino-yes .elementor-image-box-title a:hover {
  color: var(--e-global-color-primary);
}

.corino-rotate-effect-yes {
  position: relative;
}
.corino-rotate-effect-yes .elementor-icon:before {
  content: "";
  display: block;
  position: relative;
  background-color: var(--e-global-color-secondary);
  -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjg2IiBoZWlnaHQ9IjI4NiIgdmlld0JveD0iMCAwIDI4NiAyODYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiPgo8cmVjdCB3aWR0aD0iMjg2IiBoZWlnaHQ9IjI4NiIgZmlsbD0idXJsKCNwYXR0ZXJuMCkiLz4KPGRlZnM+CjxwYXR0ZXJuIGlkPSJwYXR0ZXJuMCIgcGF0dGVybkNvbnRlbnRVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giIHdpZHRoPSIxIiBoZWlnaHQ9IjEiPgo8dXNlIHhsaW5rOmhyZWY9IiNpbWFnZTBfMTM2XzU0NjIiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTAuMDAzNTA0NjcpIHNjYWxlKDAuMDAyMzM2NDUpIi8+CjwvcGF0dGVybj4KPGltYWdlIGlkPSJpbWFnZTBfMTM2XzU0NjIiIHdpZHRoPSI0MjgiIGhlaWdodD0iNDMxIiB4bGluazpocmVmPSJkYXRhOmltYWdlL3BuZztiYXNlNjQsaVZCT1J3MEtHZ29BQUFBTlNVaEVVZ0FBQWF3QUFBR3ZDQVlBQUFBSFhPRUNBQUFBR1hSRldIUlRiMlowZDJGeVpRQkJaRzlpWlNCSmJXRm5aVkpsWVdSNWNjbGxQQUFBQXlkcFZGaDBXRTFNT21OdmJTNWhaRzlpWlM1NGJYQUFBQUFBQUR3L2VIQmhZMnRsZENCaVpXZHBiajBpNzd1L0lpQnBaRDBpVnpWTk1FMXdRMlZvYVVoNmNtVlRlazVVWTNwcll6bGtJajgrSUR4NE9uaHRjRzFsZEdFZ2VHMXNibk02ZUQwaVlXUnZZbVU2Ym5NNmJXVjBZUzhpSUhnNmVHMXdkR3M5SWtGa2IySmxJRmhOVUNCRGIzSmxJRGt1TVMxak1EQXhJRGM1TGpFME5qSTRPVGszTnpjc0lESXdNak12TURZdk1qVXRNak02TlRjNk1UUWdJQ0FnSUNBZ0lDSStJRHh5WkdZNlVrUkdJSGh0Ykc1ek9uSmtaajBpYUhSMGNEb3ZMM2QzZHk1M015NXZjbWN2TVRrNU9TOHdNaTh5TWkxeVpHWXRjM2x1ZEdGNExXNXpJeUkrSUR4eVpHWTZSR1Z6WTNKcGNIUnBiMjRnY21SbU9tRmliM1YwUFNJaUlIaHRiRzV6T25odGNEMGlhSFIwY0RvdkwyNXpMbUZrYjJKbExtTnZiUzk0WVhBdk1TNHdMeUlnZUcxc2JuTTZlRzF3VFUwOUltaDBkSEE2THk5dWN5NWhaRzlpWlM1amIyMHZlR0Z3THpFdU1DOXRiUzhpSUhodGJHNXpPbk4wVW1WbVBTSm9kSFJ3T2k4dmJuTXVZV1J2WW1VdVkyOXRMM2hoY0M4eExqQXZjMVI1Y0dVdlVtVnpiM1Z5WTJWU1pXWWpJaUI0YlhBNlEzSmxZWFJ2Y2xSdmIydzlJa0ZrYjJKbElGQm9iM1J2YzJodmNDQXlOUzR4SUNoWGFXNWtiM2R6S1NJZ2VHMXdUVTA2U1c1emRHRnVZMlZKUkQwaWVHMXdMbWxwWkRvME1UazRRemd3UWpkRFJEQXhNVVZGUVVaQ01rVTJNams1TURjMU5EVkVOeUlnZUcxd1RVMDZSRzlqZFcxbGJuUkpSRDBpZUcxd0xtUnBaRG8wTVRrNFF6Z3dRemREUkRBeE1VVkZRVVpDTWtVMk1qazVNRGMxTkRWRU55SStJRHg0YlhCTlRUcEVaWEpwZG1Wa1JuSnZiU0J6ZEZKbFpqcHBibk4wWVc1alpVbEVQU0o0YlhBdWFXbGtPalF4T1RoRE9EQTVOME5FTURFeFJVVkJSa0l5UlRZeU9Ua3dOelUwTlVRM0lpQnpkRkpsWmpwa2IyTjFiV1Z1ZEVsRVBTSjRiWEF1Wkdsa09qUXhPVGhET0RCQk4wTkVNREV4UlVWQlJrSXlSVFl5T1Rrd056VTBOVVEzSWk4K0lEd3ZjbVJtT2tSbGMyTnlhWEIwYVc5dVBpQThMM0prWmpwU1JFWStJRHd2ZURwNGJYQnRaWFJoUGlBOFAzaHdZV05yWlhRZ1pXNWtQU0p5SWo4K2l2MzlGd0FBU3laSlJFRlVlTnJzblkxeElyc1NSblczYmdKc0JnK0hnRVBBSWVBUUlBUUlBVUtBRUV3SUpnUVRnZ2xoQ2VFK1pMZThvbWxwTkREQUFPZFVVYnZMd3ZBM28wOWZxOVg5ejMvLy9lY0Eya0MzMiszdC91akxMYkRlM1phYnpXYk5Od1R3MlB5RFlFRUxoS3E3KzJPdWhFb3o4N2VkY0czNXhpNHplV0NTQUFnV3dLRllmZXh1bllLSHIzYUQ2QXZmMnRsL2s4SHVqN2ZkYmVPLzgzQmpzZ0RYNWhkZkFWeVpOME9zbHJ2YnhIMkhBMlA2dThGMHpGZDJkbnBCdTNhM29meEdmM2JmL1lmLy9pVjBDNEREZ29lY3lRZjhqUDVsTjVQZlJJL3hBaldOSHJQZC9mZHZ2cjJ6L2k2ZklsWlp0N3U3amVMZkNnREJnbHNZNFB3c1BDUkxkS0lCelNkTExETFBtOHNNUHZDNmUvelNlTnk3MjEvZk1oOEhqZnlXWHFnK0N4KytsUWtHYTExd0VRZ0p3aW1EVzgrSGlkeDN3c1RBN1lmMnZNRE1KWXlVV3AvYW04Vm5SR2lWZXg0MGlrNTg4Y2t1VDk1TnVlOVFiWXovWGQ4eXZ5OEFnZ1h0RUt2ZEg5NzVWSzFuZkQzdXhFRnRWVEdvd3ZrRWE3MzVackc3dllwNHJkWGtZWmc1VC95NjR4QlJBd1FMcm9sT2x2QnJHUk81TFF6UkdoYUs0QUZHeUlsRi84c0oxa3I5RnVGM0xwMUFETVdCKzZTTk53azVBaUJZY0RGM05YVDdZVGsvcUQzdnhyS1ozSHo0YUtTZU5qWm0yWFdjVS96WURwbHFaL2xkKzJvU1lxYXk3KzRyK3Qzazl4NUVkL20va3hvUFIvTXZYd0ZFN3NZUE1OdUNSWFE5UUUzMHdPWkRTSklGR0I0YkJxK0ZjbVY3YnlQem1tdjF1ajEzbVBiZXR1ODBiSWgyTWxEcjk3dU52b04xQy9ZNTlTc21GSFVacUg4djJNc0ZDQmFjTXFBTzVkYUo3dmVEeWl3endIU1VPS1dFWTZrR3diNFNyRHFodmpyaTFwcXZXSDMrUWVheEx3MEl4RVVFeXdqcnBWTGJodzBMSUR3NGhBUWZWNno4WU9Jei9NYnVjT091LzdmZisvUnhZdWh0bVJzUVpUMWtVeWhZcXhyaUJ2WFBoNDc2VGplWmlVamZjTCtXcU1YSDIrYTJJa2h5aGc4YkQxam5BZ1FMdEZqTlhYVTVKRDl3V0duTFczVTgwem1JTzRzSHFZN3gyTFVldUJMSDJxalh2WVZNd1pDZ3NGSzNOb1l5QnpYY1VLL2dzWU9LeVV2NHZiMUkvWEhmR2FkK2t1U1RlVDc5NW1VNVR3RitJQ1Q0ZUdJVnI2dkVnOGxTQktFdnJpc1dyYkhiend4YnF3R3BueHFRQ2g2ci83K1hHU3ozMXJHOHVCa0pBTzFScTIrUm5jbXQ3ZlNxWEZOTmNhc1VMR1BqdUo0c3pXV0M4OHJhRitDd0hoTTlRUGlFaWEvS0VYN3czOTI4TUZWbCtHVkRmUlVEVlZVNGliQmdPeHhXeWhIMWxETmY2L0pNOGhnZFhseHBaK1VLdGpySStmTEd6d01JMW1PaUJXTmhPSU9GSVE1RDVSeld5cmoxTWk0ajk5aDdUN3k0QmRkdGlkQzI4UHlwN2E3RTVVK054L2hOeWI5bHdyUVgvaVU4Q0FqV1k2Sm52cW1CYVZIaHpCcHhXZkw2V3RBNk9LeXJUbUtXTlI1N1REanc0RndTbC85MVBzcUU2YVhpT1lCZ3dZM05qRHV5YU8wVEk5N2xOcTdJc3RxVU9CVEo2Tm9vSWVsbkJxcGN5bmJWWTljbDRpZml0cGRWU01tZnN3aFdLcDI5NHc0elBWZUdXK3VxU1ZIVjd6c3hmdXUxZWg5TVRnREJ1bUd4OGpOT1gxVjdLZ0lRcXFXSGRQVFVqRlJuNWVXRVpwRVNHaGxRdEhoMEUwSlQ5ZGk2RzRoeFdRMU9lcFNBYkd1a3MxdE9iRmh4RHVuZmJKMXBVYkkyM2lzZ1dIQmpnNHdYcFZ4YXVyOS9uaEN0T3M3b0lDeW9oS1lwbDFXblJCT0NkUVYzbFhpc0pXeEZ5UnV4UUphK1hpNVRVUFp2VFNYSzhGWVFhUUFFQ3k0Z1ZuNUFHQnNEaHpYUXpJMTlUVXMxU0F3eXptaWJjMW11M3BwUzhyRTFpOXZTZTZrOWdyVTB6czFPZ1h1cTNDeHViRHplSkI3WGs0YVRiM0pkOU9VYzlaTTZ2NWRyampORHNPQjZhTEh5RGZSODRWbS9TUDFrRE9oalE0U3FGc0Z6TStRNFc5QVN2MDVDL0tvZVcxcmNsbG56RlFRcnNUYTFxVGpXb21EUzBVbUVwU3VQRmJXNHlaMFRReEV1bkRpQ0JSZDJWM3JXdVlnWHZXVUFlWFdIS2NGVkYzOVNzT1Q0T3ZraTU3S09EUXV1Qzk5VFNWZ0t5czRuTFVLNTlhUXFkOVZ4NWVIQXlnbVRaQXI2Q2RoTXptZnI5WFNMbStERTlIbm1IL05PaUJEQmdndVBNWm5RU2l4YXVUQmVDTUhwV1c3T1paMHJMTmpOaWFoc0xvMEhxYkY2N1UyYksxM2NpN3RLVEVUV3h2L3ZiUzVQclRrWkdham1QaXRKYy9jYjIzOGJRcXBiM0d3bDJ2QVVSUnVXU3JURy9PUUlGbHlQVHVFTXRsOVRoQ29mRzgxV2x5YzRyRjZGMEU2bHB0eTcxSnZUbTAwbm5BSW5VVklUTU5SM3JIcHMzZFlrdWx6VnVIU3RTUjZueFdla293M1NJWG10SmtHc1p5RlljQ0UySmVJZ0RtcWJjV1pCYUhUb3NIYnloZnlmWG4vS0ZiRE5NVEZtN3FGRmh4NW9Gcm5xMzFERTRGQUw5Z2YwUk8zSnZiWXpSampRV2lmVjU0S3VwaEphM1pTZ093eXNNdWZDc2tZRUFCQXNhRXl0RHR0eGRIWFlMR0p0RER4YWhCcEp2bkNGNjFqRzR2ckdlRTh2THIxWUg1N3pLbDJONFVnU2lRNmhsZjJIcElqN2YzOFlFNTVaeFhtekxDeFdhN21zYnNYNzdocnVLbGRjbUtLNUNCWmNrWVhoUUlyR3FJSUJveXI1UXBkUUdxVEVUSzlKSk1JNEs4dk5pUmc5aWVPS2I4K3lSb0d6T3AxY2FLd252OVhRZU56RWNNcDFXcFBvYzJxaDNsUFZPdFBCT1ZTeGpvbWp1aVArK2UrLy8vZ1dyalBESGRhWWllcUIvME9jeGl4MXNmcDFIN2UvcnZCaVBkWjQzRWpDTmFuM0hJZUhGc0hwSkZwRkxDSVhwUmZKZlViYU0yZkMxYy9EVUNHbFh6QzRlN0dhR1k3bk0zWTBQa2tpK3YrcC9PNkx4UG5YbGZNNUZzYmYxblZodkphVFNjdzY0OGIwNDMvVHF1UjJvUi9XNVFlSXNDYlFsd3U1VnVLQXY5aDJoM2crNHFKTFBWNjNzUis2ZEVodXFRUXJIdUFtN2pCVGJKaDVMNFQwV29DSXlDbzZONE53aGI4SFo3MUlyRUVtVTlsbGNoVmNtay9VOFlkNFVxKy8yZDIvVU01cDZPd3duN1dXdHE1d2thdm8vRjZrcmh1WmpNVnJwUnVYWHhzREhOYmRpMVhZNk5pcGNqNE52TmFlYzlxOXhqK1p4LzVSN3lrM2EvMXcrOWw5LzZqUE4zZlZsU3BHRlFNTjNNNDUvYW1jODgrNUl5SGpOOHVSRzlmRlJ5eDZrdUdubmVDN2V1cFRRU0pQZUs1M2VxK0ozbDI1YzVienRVV3doblZaT3U1d1RhQU5wV09LTnhLcndVa25UZmlMK3NVZFp2dUZCSTlYcWNyQnhYOC9FN0JjWlhhOWJycEt1THkxY1oxb3hvYTcycFM4VDJsTStwd1FxL2VLQ2RhWG1OS1BxeDBRRXJ4d0JDWWhBSDcyMTNTSXJMSU9teEtzdlpDTUQ5UG9nY1NvRldjbVRiamJhUXNQcDFHbmoxYVl1RmpDVjVVWjJGZXZ0WFVuN3NHcnFKU3hrZXV5cXlhV2JGVEhZVDJRV3FWbmhNT0tOaC9IdXJraXdaTDNwUy9FOTNnL2xaRndVVEpBd1gyZnozNVM4aXdUbm0zQitaQ0tKRlJWMGREbjNheUJ4SW14NFFCSG9WS0dyTFZOS3Q0SFhCaldzQzdNYnVEL0x6UDdmR29pZzhuSWpqcFlFMGc4NThQbDA1MzNYQmw3b2FEaW5OSnJVeXNwbTZRZm85ZDE0M1V3UFZFNitUcEpySWNkWkVES1k2Y3ErdkJLSWdZTzYxNHUwRTZCVTFwbFpwOU56ZUM2RlRQV2xNc3FEYk1nVmxEaXdIVE55cjZVMmZJWmc2RitvQmFybFFwRmo4L2dyblNKcjVVbFZva29BZ1YwRWF5N0VLdSt6Q2JmcFA3ZE1ZdTBnNFlXZHp0SERqQSt0T05ud0trUUlsVW1vQzRqcDBxQXVlKzFvM2QzMklSMGI3dURYQXM2cVdOMjRuWHFCYkNYZXMxRTVBTVFyTHNTcTdIYjc4dnp0ZGNxSVZ3YmRUSG9DM0RhUUJ1RUlvZlYvV1l1S2ZCaFJGaEovUDdaVVdVQ21uRlp1VWxRZkMyOHFIVmVIYTA0VmF4NmhydWFWV1FiOWdzaks1OWtFcDRmc2dTYllaVVJqcmtJMmt3Y3pFWTVvWmxjbU4zb3ZybGM1RTA1cksyK3dPVENIY1lPVVZXN1hqdDZUVUZEb3VVM3U4djVOalFtVkl1RWNQU1Z1MXFjK0ZaMHlEMFhDa3lWRTdQRWJSaGQ2ejZWa0M0Q1o0S2tpMlpkMXJUcTJwVmJmQ0grbGhCRjBTSnc0WHN4TncxSGxRZkdocWhWSm1ZQU5IU3QvS1NNNTlMRVZZTFNRY0xHaWRmblZxSUdtOHh6ZE1MRlFhVU91YVkrMWZVMGFrQmN3WUNRWUhPenlGbUJJK2thSVlhZVhMUzFLMWNYT3F5dGhDekdjbUZORGJIeUZ4ZXpRcmpVdGJLUjBQUHF5SFA2UUl3a0pOZFAvSC90VUtBY1M3dXJTY0pkNlMwa2hNMFJySnRBTHpBN1Y3aG9LMkdFdGJwQTM0NThIM3JuZms2by9MclVxTFJxQU1BRmlRZituZ2hQU296ODVPNDlYbytOMEtIQWRVRW9jRzVFSUpiRzQ4NlJ4UWdJMWtWbWptdkRLZm1UK3RXbEM4cjJsT0E1ZFpIV2F1dHRsSG5xSUZSd28raHI1ajFPYkVqc3B6cHdYOFlFcmlyTFZhK3piVXZkRmFIQTg4SWFWcmtJeEFWZlZ4V1AxeTA3dkNnOHU3LzlmdUpzb3IyMXFzUmFXSEg5UFdPelpveC8zNGdVM05LMVo3V3RTUkV5RGNPbVkyc3ovS1RDWFZuWGo5VldoYlVySEZickxwYWVpTThmbWNtOXl5enZqOFROVTNGMUhScjg2cElxc2Z2UW5IQVJPYUI0aW1hdGhSVnZLSmFMZFdVSTFZdVVuRUdzNEphaUZpT1g3MEN0aFdXdHJwdjQrbG9YSkRLVlpoSnFkN1hLaVpXc0kwOVQ2MnlBWUowcVZrT1phVmtuV0VnTGY3ZEVTMFRCU3FMb2gvK1BoR3RkSUhoMVE0TXpRNmdvMmdtM0xGcFZHOXFmWThFd0N1YUc2eXAzelJkdEtrNnRYVlZFYU43bE9lOTF3L3p3RjBLQ2FiRXFkVFZyRVFXclE2cFBtaGdZRjlhMjREMVlvY0ZpNFpIOUlMZ3B1THVvaHhLaWxSVXVONjY5UmtLQmlXc3ptWEl2WWNrM2Q3aU9Oam0xYWdlQ0JhbUYzSm00bGJDUDZhQ3RncldIS1JIbkx0N3ZsRm9MSXdzSm9QTGEwWTBsZitldUc5MllOQ1ZDaVd2YW5FZ21DdnRtSjdtUWg1RGdJZHF1ZTRHWXlMNlJwWnpFT21Ob0lKc01kU2pEQ2lrTWFyUVNNZGZDK0lrQXFqVkxpYysySXBwUm1rbW8xNjRXQ2JIcUo4UnFJYzBrRVNzRTYrUlptZDdZTzdQQ0RXTGw5UUxyMktvbEpuczM5RWJDb2k3RFZXdGhBSkFrMS9sWVgvTjZzam14d3VtbGExZUpLdlJmSWtqaGFBVHJYTE15NXpLYmZ1WEVXeHRDMUN0d1NzV3RSRVFjanhJOEFBVHJSNWRTVVEyOU9UK1hTV2k1cTQzaDF1YkdPUEpTa1VVNDRDZERzTTZObGJuMHJrVkw3TDlldDZyVFNzUVN2QjVmUDBDU21USEpHOGNLSm9rWlJhSEFFbmNsZThhbWhuQytWTlJNOU05N2t6OEJ3U3BHaTg4dzUyUWlJVHB3VC9wNWlYcUJSYTFFMUZxWVA4NHphZW9BMld0R055VHR5UFgybnlSWStNUUo3V29tbVEzNjJsMzloQTFsajlXYk85emdITGFWckROaUZSY1NHQ0phQ0ZiZGt6d1dMU3Urclorek5tWmxQV2ZYQVp5NXcvWWlwYUZCSHhaOFpmTXZRUEgxUEhOMlNTVXJPckZJaFFJTmQrVW5rSXZvLzk0TjhWdkl0WnBMOWhnYTR3dWloV0NkRkVvWVZtMzBFekhSb3RYWEoxNGlhN0JmdXBHUTVva0FSNGxXVlFQSlNVVXloSFpYWHdWdW83MWJCMkhGcXVTS2lyMmVpRllDOW1IWko5T2JNV09xckJPV3FIdDI4RHlqejA1bGJ4NEFPUG02RG8xUyszTE4rZWpJc3FMTmlONTM1Wi8zSk1mUm1ZQmJpWUpVMVJxMXhHb3R4K3lvKzlpdjlZaUNKU2ZKd1AxTld3ODE5NnhNbjJEemRabVdsNm9pdE1abVgrZU1SVmRqbzZMUFRucm1sQVJvMWJpaHExb0U1elExeEdWVU1ENVlZdlUxWVpXLzYwUVFST3VSQkV2RTU4M1pOUUZqaXorcG1Gbjl6SzRxNHRJcHNkdHpVSFZLd1FEQTFjYU9lQXdJK3lJUGVtV0pXRzByanRkTHVMSzR3cncxZmlCYXdxOEhPT0hlSzhUSzR6Zmpmc1NaZlhKeXZMakRETUQzZ3N6QnluMVhjb0xxQmVFaHd3UkFhOUJyVjg0UUt6L1pmVzFDck5TNEV6dTFYdFc0ZzJEZGoxanBCZEdWc3l1a2h4T3FTbFNzZHR2T2VKN2VkOVUzOW1mRnJVUm1VVmdBQUs0L2Z1aGtLTDBGWmFRak02ZUlWWUZvZlNCWWp5Tlcvc2Qva2xSVEx3eFA3ckJ2MUVFYkQwbVlPSEJDQlptREsrTjVsdE1ieVlrN3dmSUR0TnBkeFdMelhOS3NNVk1BTjdzZUhvbFduQm44OE1zRmQ3ZUdWVGNHbk1qc2V6SVNNWW95QUkyVE5aNFZzVVlGY0J0anlHZENzTDZpSnlVWnZabmoxT3BNTEdQUG1tN0dkK2F3amxtd2xQMFMybWxaZGIwbXJyeDI0TS9odWZ3QmJtOG9TZHkvbExHa1ZLemVFNkpYYXkzS2oxR0kxUjBLbGppZ1kycnNhZGZUejFoMHEzWmc2Z1FmR0tFRUFHZ3hFcXJUMTNwUmNrVm00aHd6YldKanNPL2FVS01lS1lMVndoUE5hdnRSbVdGVFdwY3ZVenZ3VFI5Zm5OZFVpUldWS2dCdVI3U2UzZCtVOVVuSjh6SmlOVlBqeGtuVkxLSVdKdk5IRXEyNzNJZVZXRy9LaGdaOVVjem9uOG1XMS9KWTc1emVEUGUwa0ZsWjE5bkZNbG0vQXJoVGNtTGxCUytSZ0xHbzJ5UEwyTXhjVk5RQWg5V09rNlJyekk1R2RaeVdrZkczcnBoOVdiVURReHJzWFA3VUp5VmlCWERmVEEyeFdnUjNGb1VhNDBsenI4Nytxa1FMazdBLzlPNWJEdDIwdzRxY2p1bGVTcHhXSnUxMEpUT2pWWTJaanNXc05Kd0FBRGM3RmxsamplbWVvakVucE1lWHJvdE5YYjY0d0tiMGVBalc1VThRTFRTbU1PUkV5OWtGTEYwZDRaSjI5VjY0ZEtMR1VrNVkrbFlCSUZiNk9WK0Zia3ZDZUpsUTQxcHV3OVNFSE1GcXh3bmlmOEFQdDU5K21rejl6SWlXVlIyNWQ2Und4VjJBMTJ3Q0JrQ3NHamkrSDZQZUVtTDFJbTFPOUh2d0ZlaGZFYXoyaUpXZWJWU0czUkluMXNGSkZtWDM5WThSTGdCNEdMR3lsZ1FhY3ppWjVZbzlRVXlNaVMvM09FYmRZdEtGWHRoY2xxd1JKUkl4RGs0QWI5RWxRL0RGSFc0b2RpSmtmb0h6WGNLQkFQQ1lMRnhGZ3RZSll0VXZFU3NaczhKMm01aTdUSFcvS2NHU0dZMk8xeFpiNzR4b0hXVHErTmxKSkZ6ckN1SHFjZTBDUEJhWklyV2ZwNHdKMFI0cnE2VFRLUEZlTnVwOWRCR3M2NHJWMEIzdVBYaXRhNzNycHJ5TGNEMkxNRm9sV1RxT0Vrd0FqeTVhQ3pVbUhEV1JsVW01dGFHNHBEeFRKL0gzdStFbTFyQVNzZHpuVXpiS0hiTzVPQkxPc2N4Z2FLd0dBS2t4cGRhRzNzdzZlMlVTUlJSQ0RHU0xIK0N3em5jU1dFVWtSNmZ1NnE3cnRLTG4rUml5YjAweVFhd0FJRE9tRkRrdFA5NVVKSVVOY3UyTW9qMWFNWGVaRkhZTEljR3FmVklYRnkxNTdneXhBb0JDMFJwV1RNaXRhRTg4dmt5dFl5UXlCTGN1bldCMjA3UStKQ2cva2hYVHJkenJJSlV3TmxWdTdOandJQUJBWWt5eFV0NzMrdXhWN2JGeWRtRURMMFNoaUhiZjJZMG03N1lkeWEyc1lmWGxoOVUvVEtpa3ZNMElYVkVjR2RFQ2dETk90dmRFcE1ZZUs2dlFkbzdHTmkyM2tadklFcFFOY0ZaNitjQVovYWprWkpqSGx2d0lLKzljWVhnUUFNQVlVL3g0TWpMRXFuaVBsYXUzSERLNVo3RzZHWWNWL2RBZG1XM29EYnMvTGtyRTY4TWRKbWtzQ2wvanJLVldBQURYWmZ6WHdSZ2w0OTFuZ1dodDVQbDNYMzNuVm1zSnBqSnFKdUs2ZW1yV01UdmgrSVFGQWVDaVlwVVk1eWJ1YjcrOXdPb1IrbURkdEdESmoxblMydU5vWnlUSEh5QldBTkRRbUtYWG81THI2OGErcXJ0dkhYTFhnaFdkQVBPRVpjWVpBVUJiWFZZMkdXejNPTCtzRVVlS1hxVnhiSlB2eFl0aS81YjY5ZDEweDJINUFWOGNwWkVBNERiR0xCLzY4MVVybmpKaU5WWml0VHFEV0kzRndZMWw0by9EdXVDc0pkWGdyRlpwRkFDQUZveGxPdEhpdWNreHpIaU4wUG00OVJQL1gvZndJL3V3bnhTbzFRdVgyVjNtQUFBdFF5OXhMSnFlY0J2dFNEck9UZ1pCc0F5MTd6WDRRL2dFaTRraFd2TmNMUzRBZ0JhTWhYNU5LUTdQYlkzeHJLbXg4cXNSYlhSWC94Ykd5Rjh0K0lFKy9BSmpVOElsS2V3anQxK0h5K05yY2MzWkJBd0FMWFpYTWVldVYrckh5amdNT0c1N2I3OXJPNnlRbGg3S2xEUTFlL0Nod1JkRHRMNGFveUZhQU5BeWR4VmFGa1hEV0wzOW8wZU1rMXZsc2xvZkd2eDE1UitvcDlTK3lSL0R4MzE5R3hBZC96MjVJeWdBUU1PczFBVDc3SlYxRXMwaWUyME9EVjRsUzFERTRpUCtzYzdWYkN6cUZhTVRMNzdpdy9kYTFSZ0FiczVsaFkzRmxRMGJHeGgvNSs0d3F6cm11WTNaMWRkeVdGclZ6emFia0F6Q1ZETEdnTXNFQU5xQTdMV3l4cXFtWFZWcUM5RGVHTjNHcFpPTEM1WVJDcHhjSXYvZlNNYndzNGRYTGhNQWFKRm9MYzR4SG5hLzhVSTFkWWVWZ1h3NDhsa0pwUitqV3hjYXZHaEkwQWdGcm1YLzFLWGZnN2ZkcjJ3b0JvQjdSL2FoV2tJVkRNTXNlcXdYdGJnYnhrdWJxc0QvZStIWDA4VnFMOTZ5STByR0FBQzRaNkVLV1gvVzBvY2ZCMGZHcEgzazl0c3pUY1Y5dFlKZkYvenl4a3E1SnpnY0FJQ3pqTGRlcEQ0VFl1WEhYak9wUXNLUndYR0ZXcTJ0NFNJaHdVUlR4YUxxd3lIRjh0eDdFZ0FBN3NSVldWblJYOE9vSzJ6MDZJczZ0TEVoNUtVRTZ5Mmg5RXY1QXJlSjU4VnJYaXQ1TEpYWkFRQU1rWEhmSWNDdThkOSt3ais3OVhaTGx3b0orcmlvdGQvcHk3Wm1OcXJGNmU5OVY5MHFHZ0RnNFZ6Vjd1WmQxYnNoVnFGanhlUlVzZkxKRzlkT2RiOTBsbUJ1QnJEbm9JeU93aFBDZ2dBQWUyTnFiaE53Tm9KVmM5eWV5bXNjM2NYOTVnUXJ6QWJjZDM2LzVhcENiU3YvUmNkclhzWHA3MUZ5QitGREFMaG5zZEtUK25nY0haM2E5RkZ5RC96eDlYTE8xYXBnWEsyQlk0WGIycm9qR3BqSkYvelo1SThHQU5BeW9mTGozRnZDVmZsSTFlc3BycXJDVkxocnVxeXJGYitWREpSblp4ZTlqY1dxVHZyN1hCMERod1VBOXlSV0lSSE5LcTNreDhxWEU4VnFMSlArVkFSczhsQWh3WXpibWlabURLa05ibFgybURVdkFMaEgwZExWS05iaXFqWW5ISE1nNDJjMzVhcGtUTDFxbHVIWkJFdHNhMCsrQVA5RnJxbytiQ1ltbXhVZ1k1L1h4VXMrQVFCY1NMRGk4ZTZraWJrNHRxa1N3SmhXYlNkcVhMRGt5NXdudmdDL25yVEliVWlyeUhveDNWYmI2MThCQURROHpucEh0RGsyK2FGaWc3RnpOVFlaMzZ4Z2lkaTh1L3grS2Y4bFB4VWNLK3UyUlBpMnh1UDg1cmdKcHpRQWdDbFVYcVRHaVhGNksyTm9LNWRUR2hPc1JQa2xpOWZTekwwS3V4cHFYc1ZWaVAxOXo3ZStteHNBNEF4aUZZU3FXMlVFYW9yZjhsSWh3eWFydFd2RjlsWnlLWXJkbHcrMnFwTm1MbmIzUlZ5VVBuNElQY2FNRUNzQWdEMWg2Y3Y0MmE5NDZMYUdXTVhpNTQzRlJYb0xOdUt3MVA0bjU0d1d6L0tZemdreDE5emFtSE9FQWdFQTlKaHBiZnlOVFVVM2NseVZFYXFNK0Ywa2I2Q3BmVmo2Q3hrWmJtbHp5dTVvZWY2TDJGYjloY1lsOFFFQUhsbW9PdEYrS2t1c1FrSkZHRTkvbnVvU1NSalNzZGh2Vm41UG1JYitKVDViVTRJVlovU3R6aG1XazhYQVo1a2QvQWdrb1VBQVFLeCtoQ3BWc21raUxtb2g0K2xTamFWamNXWjF4ZThpMGEybTFyRDAybEpUWC82Ny9IV3Yyb1VzOEwxSWFtZVBGSFlBUUt4K052OWE1RGIrZXJINWlNWnlMMUNqUk81QUxIN2VQQ3d1YVJhYVdzT2F1djFTSHFPZzRDY2NzeS8yczdGakFnRGN1V2pwa04zS0ZaUzMyejNQNXdjTWxYTnFYZFdMcGtLQytzdVlaM3BjbFRJMWp0bm5sQVFBU0RLTEJPZEZhZ3V1QzU4WEMxQ3FCWlFQSjE1dENhWVJ3Wkk0cVA1U3BqdUIrUlNiZWd4TGQ1aGNNZWQ4QkFCSWpzVXJFYXFuMHFXU3FEcDdhZzl0TGZHTDE4Q2Fwc21OdzdrcUYvNkxtOVZkYTVJUHJydG92dEl5QkFDZ2tYRzdjcDJxcE9wRnRJbDRLTUw1ZEk3M2U0N1NUS2s2Z0VHNGFoVlNOTmF5cU1JT0FIRGFXRjFWOVdJbVlsVlZzTHdiQ1ZVc2VtZkpPVGhMdGZZSzFmWXM1TXZZRkI3dlB3UUxBT0Rrc2JtcTZzVlN4dGhOZ1RuNWNWUUdaK21ZY2M3MklsVkZGci9FeHhXa1JTSllBQUFuamNkZEdZdVRBaU5qNitwRXdZdHB2UHBGYmNFU0s5bDNGVzFDbEhEbHl0aG44L25sOWVKa2krZFRLbVlBQUR5UVVBWGprTnFmOVZVbHFDcDhWeEJDOUhnOTZFVUdaU1hWTks0cVdKOXV2L2JVb3RBbFZTbDhhTCs4VUxZelR1VFluR3N4RHdEZ0RnVkw1d0FVR1FVbGRya29tUk1OOFBWalYwYTdwNmNtSzduWEVxeUtEeCthTTY0TGpwR3psRnV4cHgxM21MeEJoaUFBUUQzUjBwdUpzemtFa2JrWVpJUnFHNW1WalJLNVAvRnIrWDFiMXhLc1lDMDdGYlp3V1dBeDY4UkNHLy9nQUFBUElsaWhtMGEyNm9XTXlRT1hqb0o1S3FOcVJ0V014bHpXTVNIQk9OKytXL0RCc3MyOUNtT2ppQlVBd0FtaWxYRlVReEdxRXZQd3UzRDVKMjQzMVZpaTNFbFpncUxJNGNObTNaRUkxNnBDdVBycVdDSE1TSEZiQUlEbUJLd2pZMjJWV2ZCdXJGZFhmS1FWU1JqTHQrS3lUaTduMUdRRHgvRGhPeFd1YXliaVJUc1FBSURMQzFWcElzWFhPcGRhQXl0S2ZEdFg4ZkxHOTJHSlV4cTZkTFdMb0xnSEMzWUFBSEJXd2Zxdllsd09obUtqeHZSNVhmRlJRdGZJUnVKZlRYOGgvb1BJRzNzV1ViSUl4Ulo5Y2R6M0V3cmtBZ0JBT2RhWTdNWEpGM0h3WWJ1RDdFRVJwL2krMHZFNkZERDN4MzV0NHMyZnJkS0ZZVUZMa3pRV2hBc0JBTTR5SHV0UW5YZFRyd1hQMHk3cjZSclJzVXJCa28xZ3FleVJ0VHRzQVJML255WWthWFFLWmdFendvVUFBSTJMMWpGclVuN005bDJKVjljY203T0NKVy95czBCZ3pzRUwyWUVBQUkwTGxnL3B2VVYzM1V3Mzk2bzFyQkkzZEE0MmlCVUF3RmtHVjcrMnRGSGovRTFRSWxnbE5GMk1sbXJzQUFEbkl4NWplN0syMVhyK3Jmai9GMmMzNTdJd2JXWG1pMGlsdmZ2WG9WNGdBTUQ1OEdOc1hHYlA1eXEwUHFwVmxDVVk3WXBtZnhVQXdCMXc3c3JxVnhNc3d6RlZGVWdNQ3I2a3Vqb0FRQ3NGNjZ5VjFWc2hXTkdIN1ViQ3hmNHFBSURiRXkxZFdmMTNtOGZwcG1vSmxsYjdEY0pGeDJBQWdPc0xWcWlzZmhQRzRrQ3c1QU40MVExOXJUWTFQM3hWNHkvUFdyNllCYWNNQU1CVlJhdDNLeWJDRWl5OUVPYy95TEtPZU5Vb3gwU1NCZ0RBNDRpajE0YSszRFoxKzJSWmd1WExiL1F5enFpdWVCWDF6Tm9kN2g5K1RnQ0F1eE9wYmlSU3NRNXNkK1ArNzFNRjY3UENGY1hpRlJvemJndmZkR3BQRngyRkFRRHVSNlI2a1VEbHRrSTkxd2xIbWtrWFVlcDYxVnBVd0x1dVZRM3gwajJ6bmtuRUFBQzRlWkVLdXRFdGZKb3ZwRHM1U2JEVW14aEVTdG1vZUFVVnJodkhCQUNBVm9oVVhYM3diQ0pCSzZvV1h5eFlseEl2QUFCb3ZVQ0Zxa2Q2UFNySE5taUJMeVJoVklzdnJyQnh5c1poeEFzQTRQNUZLaFNKcUZxUDBpNHFKT2l0aldQR3dqTXBqYkkxdFhINEtQRmlIeFlBUUN0RnFoYzVxVjZOcDNweGVxMXlUTHZqdjBVT3pXdkJ5OFVFeXhDdlFhRmRIQ0ZhQUFDdGNsTytJM0ZwMG9RM0h6NWlGc283RmFXcTYvMitwZHVhckxUMllQdDY4a2E4WXE3ck5sUXNqSFgrSmp3SUFOQXEwZklGY1ZPUnNwLzFLSEZHVzZPSWJtVzMrTjF6dkZpTmp4WXNzWUJ2R1dVOTJnMGx4TXZITmw4NVBRQUFXaVZZdWlCdVdJOWFwWVJJaGZpeXFlcWlCNStSS0JadklQNVhEdEFYRzFobC9ZNUNYTlJYQ2FaSXZDakZCQURRUHZ4WTM0dEVxbVNQN0RvU3JPRnVuRThsVzNURkdIV08wWlovL3ZlLy8ybTFNOS9NN3NXZkM1UzVKOGZac2hFWUFPQmhYRm1vK2g3d0ptVW1RdVpFRi9yTzdxTllYRGppWDNkWUtta2xsbTRWMVlEYVZ0ZzdmNHh4Zkp6ZC9TSFdPYU93TFFEQS9lTEgrTjJZdjRnRXlXdkJ0T0NwazFxbG1YWU9LeTUyVzV4ZUtLTGtMZURjVmFleVQ2aG1BUUJ3MXk3TDY4QzdLMCtEcjYwTHY5VEJsNlZ2VEJibTNselp2cXVwWklVQUFNQjl1aXdmVmZPR3B5cWozT3ZNOHpFbXhqdXNPSys5SkIyeEo2N0tVdEdWM0VLbFhpMW1MM1hUNHdFQTRPYmNWdENBa05mZ3czNWYyWWFuYkdYNlYvMjduMVBIVEFqUVAyY1VyMVdKUGZTdUtsNWtHeGFvTHdBQTNMYmJXcnUvQ1JlTjRSMlc3bjkxc045S3hHZnNvbzFlRWRrNDVPNjU3eUtFbnRvTnV3QUE0R0ZjV1MrMzM5YzdySVhieithWVM3K3FzSjRWc2dDMXEvSzI3clVneExlS0JLdkR6d0lBOFBEaTVFMVNUOHhTUDlJSS8zK2JsSzRFd2RKVmVIc3VuK2xSVk9Bd0VqWUFBSGhjZ2VwSHVoS0VLa1hQSlphTy9wVmFVRDZ6b3pRZHNXNHFZbDhKSFFBQTNLODQ5WlI3NnRVOFJQTHhYMGtYa3JYeExCVjBod24xODA0c3VRbFkxcmxjbkFFaXg0c0wzeTc1T1FFQTdrYWNRZ1dMV0p4T1hmcEpDcGJaWGlRcXNmUlZac2w5bDJhcWFuY2ZDaWF1b2hmVmIveUpxaGNBQURjclVIM2xucnBISG1xdGJxSEdZRllyL3JXT2RHUWR3TDc2VXpOQnJBQUFiazZrQm1KRytrY2VZaXRHSnRtcXlpZGFHQzZyVExDTytFRGRDcVdsTkJNQXdHMnlyU2xXSzJWZU9sV3RwQ1NYWWhQcGlLa252eHI4VUF1bGlLR2x5QXRpQlFCd20xUnNYVnJMT08vN1gvbHlTLzlJUGRxWk1qVWxpUmZ4NjVnQytXOURIOGdMMVlpZkZnRGdMdkhDMUl2KzdnVXFtZHNnM1Q2Y0VxQ3FwYVpObFdEOTRuY0FBSUFhN3VkTGtBcHFBc2JQS1VuT1dGZTVNZ1FMQUFDcWlOMVA2YjZxZFozbkdLRkhCQXNBQUdxajNVKy81bk5LMDk5WENCWUFBQnh2cjc2M09tMXJ1aXd2UGo0NzhLbEcwZk4xNU9qT2s5WU9BQUFQNGJMNnBZSWxhMXgxcXh1Rmlrcm0raGlDQlFBQUphenFDTmFSVGk1YlhJS1FJQUFBRk9sSjlQZHVWK1d0WHdJRUN3QUFTaDFXVE8vU2J3REJBZ0NBYW52MXZhNjA1N0l1L1I1WXd3SUFnRko4aFl1aURoNmxSTFZvL2Ezai9uYjY4SDh1ZDY4elFyQUFBS0N1eTZyZDA5QVFwSzY2WlorT3d3SUFnRVk0VVpBcUQ0OWdBUURBTWVMa0JXbmFvQ0RWRWl5ejR6QUFBRUJDdEpvVWpWQkJJL3daZW1KTm84ZjhkQi9HWVFFQXdMbllLS2NVV2xFbGt6WWlGeGU3TEFRTEFBQnFFMWU4MktoYmNFbWI0SXAyQWpUYy9URVA0bFBSRURKMEgzWktzQnlDQlFBQWRmbEtiYThxbzJTNHJCOEhWWkFTSHplTTdDQllBQUJRRzZuY1hnY3RUajEzV0RWRFl5WnpJRmdBQU5BNGt1NCsyTjNHZFFScjk3UkI3S29RTEFBQU9KZFFlVUVheXMxaXVudU1EeWt1RW1JMVYzZi9pQnRwN1FBQTBJUlE5Y1ZOOVF1ZjRrT0xvWEpHUjl5WURnV3Vkc0wyZ3NNQ0FJQW1oR29vUXBYYVJPeVRMbWJpdU9JSzd6MlhyL2p1MTc0bThSMDRMQUFBcUN0U0hSR2dzVXVzTndXaENxRS9lYzY3SzJ0TDRwLzdxaE04RUN3QUFLZ3JXRjU0VXFFL3YrYTBzQXJsRmdpZEY2cUZQUDhnOVIzQkFnQ0FKZ1JySlk1cVZYaU04SHd2WEY4YmpxdjJkckdHQlFBQWRZbXJYU3pGRWEzcUhLRHU0eEVzQUFBNGxvVTRxczJsWHBDUUlBQUEzQVE0TEFBQXVCaFJ3OGVELzNKMklvYS96eHU1QllJRkFBQjFSY2VucG9jMXJGUzJZTStsVTk3cjhwVjVpR0FCQUVCZGRNK3FpL0NMN3gwQUFHNEJIQllBQUp3VHY4Y3E5TGNLSWNLTjNKZHFWZUx2OTdVRmh3Z1dBQUNjZ2hlVUYzVmZkdU92Mm16czkyM05jaThnNjJRNExBQUFPQjRwbTdTNjlPdXloZ1VBQUplbVcvUHhmUVFMQUFCdVFiQndXQUFBY0RHMk5SOS9zQjdHR2hZQUFGd0N2K1lWc2dUWHh3Z2NnZ1VBQUdkSEdqa3VUamtHSVVFQUFMZ0pjRmdBQU5CRzlsTG5mYmZpYkhzUjJialZjWCtyNWE3NURnRUE0QnBVaFFSOWNVTy9PL25OcFN2eUFnQUFuQjFDZ2dBQVVKdHV0K3ZyL01YdFE4d0kzR2F6YWF3aUJvSUZBQURITUM4VXR0Ui9wWVRNQzkvV0VMNFpnZ1VBQU5lZ1grZituZkF0U0dzSEFJRFc0d3Z1MW5GWUhiNHlBQUF3OEJ1QzQxSktYWGRZTDlDNnJ4WjFCS3ZIYndJQUFBYkxxdVNLYnJmcnM4N0g4cy9WN3ZFdjBmOTFESTN4LzU0ZUsxZ0FBQURIa2pROVZuOHRxNEVqYTFnQUFGQUxTMHhxc2ozbVNWV0N0ZUduQVFBQXhhazVEZXRqSGw4VkVweTVndGdrQUFBOE5PY3UyN2V0RkN4ZlBCQ1hCUUFBRlZwUkV1TGJudm82SkYwQUFNQWxSTzMxMUdPUWRBRUFBRzJFTEVFQUFHaVU3Wm1PZTVEWVFVZ1FBQUJxSVlsNC8xeFFDTDl5S2JJTkhBRUFBTm9DRGdzQUFFNGk2azcvNVl6TzFaMGVod1VBQU1jS2xhOE42QnM1V2tWdGZVaHZIZjNwd3IrUEZUUUVDd0FBNmdxVmQxTnZMdDNUcW9TTnVuM1ZFNVQ5dndnV0FBQTBJbGh6Y1ZibndDZDB6S3dLU3dnV0FBRFVFU3Z2cXQ3VjNVdjNOK3puLzk5cUYxS1gwVTYwRmdnV0FBQTA1YTRPaENWNmJCQXUvMmMzRXJKU1FYdUpuUlpaZ2dBQVVJZFlhQllwc2ZKWWZhNlVvSVV1eE9FMmNQc0pIRjRjbjNCWUFBQndqTVA2cjhSZEhYbHM3N3plbFNnK2g2eENTak1CQUVBckVFZjJtbkowQ0JZQUFOVFNsZWp2Z3pPSWxrNXI3eUJZQUFCd0RQR2FWTjhuWVVnbzcrd0NpV0FCQUVBZGx1cmZQbVB3Y3lkYTcxTDU0aVIyeHhnaVdBQUFjTHJkK1U0em42bTd2Y1BxdTlNcVg0UTlYdFA5bC90YnhvbTBkZ0FBcUN0YWsrK01kRGRPdWFFYWJzcW5ybnNSakF2b0J2WXlFSEZZQUFCd2xHanQvbmh4K3lIQ1RjM0RCSUhxRzJLMTNyM0ducFBEWVFFQXdMR2l0UkozRkRZQjErMCszRTNjNzQrcDA5c1JMQUFBYUVTOE5rYzhiYXYrL2lXQXFjM0lWTG9BQUlDYmdEVXNBQUJBc0FBQUFCQXNBQUI0S0VpNkFBQ0FTbVJUNytiSTVJbzZyK0hUMjFkU0NIY1BraTRBQUtCS1NIejYrYWY4TTJUeitRb1VhNnVWL1FtdjQxdUxoR29adnRmV0NJY0ZBQUIxaUVzdWVRYzBrSnVUaWhkckViR051S05qWFZqY0IrdmdHQWdXQUFCVW1wOENvZWxGVG1rYmlWaHdZdHNLZDZWTE02MFJMQUFBcUlzWGo1azRyVjdCNHcrSzRlNEVhUjNFU3dSc25YRlh6Z28xc29ZRkFBRDE3TlozY2tSd1ZWWWR3RkpDYVNjZi92c0pNNHFnUFNOWUFBRFF0SUIxSXdIcnVSUGJqSGczSjhWMTl5QWtDQUFBSnlGSkZ2NjJUTGd3Zit2V09hUjFKdzRMQUFBdTZjSzZycnJaNDVPVmFZaGdBUURBdFVTc0Y0bFhFTER0VHF0K1c0OG5KQWdBQUZkQk1nWFhJbHlCNUVaa2Fna0NBTUMxaWNPRGF3UUxBQUJhaDZ4dGRSQXNBQUM0SlhlRllBRUFRSHROVml4V3VSSk9KRjBBQU1BMUNXV2ZmT0pGdG1ndWFlMEFBSEFURUJJRUFBQUVDd0FBb0NrdXRvYlY3WFpEMDYrdmpKRE5adlBLMXc4QUFLMFFMTW12RHlJVnB5NXUrZW9CQU5xTlZLQUlqUlZETitHcmpkOWZTUmZLL1N5c3hsbEhpTlRBNVJ0OXZlNWVaOGtwQVFEUVNxR2FPcnRBcmRjSFAzWXZMeTFld1dGOXVyODdqYmN1VTh2cFJKR0tIVmFIMHdJQW9KVmk5WjRabzBQRWJMNTdiQkN1aTVpUDRMRG11NzhQNVQ1ZjFmMnA4RU1Ga1NycGM3SVZWVjdockFBQVdpbFdmaXovT01KUVhHUjhENExsUmVjdHV2OVpxdWdpVWdBQWp5TllzWG54ckdVTTM4cVlQeXdRczlESWNXbnB5TW1DSlcvMFQvUkdmdG9USHlGUzRjMnVFU2tBZ0pzUkt6LysvNG51V2xyWjNHSncrcUlKSmVLMWtHTnRtaFNzdmJDZysxN0hLbmxEWjFWVUFBQzRpR0Q1OFg4ZTNmV1VFeG1WckRjb2VBbXZLWk5UTkNJV0xCMFdSS1FBQUI1SHNNYnVPelB3YTN3dnlXVXd4TXVMWGxYaTNXaDM3TVZKZ2lVditxZkNVWVY0NWdxUkFnQzRXOEZLdHFrdk9FNDNFcS9VTXRKUjI1cTBZT2tGdDFpa0dvbEJBZ0JBNndVcjY0U2lkYXhsYnQ5dWxBT2hrelZxT2JpVVlPbXdZS09iZThVMmhwM1RYdnpXaUNBQVFDc0V5NC9MSDlGZFBqUFFKK0ROak1lK3ViL3JWc3VxVW5zeTlyKzcvWERoUzkwaUZYdkZidzF4NmpYMFJmVGxBLzZSTnowVllmemMzZjh1WHhRQUFGd0pXZWFKQmNTTHpIUTNQdnR4ZWhyRzZXaTlLckF1T0xZWHY4bXArbUpWYTQ5RnE5K0FXRTFGcEZKWkpQNDFQaVJEQlFBQXJzZkVIZFo2OWV0UVl4bW5QOTFoY2w1UkZPNlVrbjg1d1lvUDJwTUZ0R1BGYWl3ZnRJVHBLYThGQUFDTnVLd1hsKzc4MjFWR3BqaTNRWnhaVE8wNmhGVU95N215L0hycnpma1BOalhlNEV5K2tKRmhQK2VjTWdBQTF4VXRTWWp3WTNSVnVLK09heHFlOEZ4YnNDVFd1RHhXQVNPMHMvSWYzRzlFOHh2SGZGcThyd3J2aFN2T1F1bmpzZ0FBTG9OZmlwRmtPMHU0L0JqOTdNZHRNUnFiQW9QalpMMXJvTzdySzAwNEt1RnVMMHN3T25ndnNvY3BhemZNMlVHMXAyc3JZclZOSENzdUJ6S3hzbElBQUtCUnNmSmpiK2pVRVVvb0xYSXRRMVNhK2twbkI2cE04NjBZbGE0NzNJOTFWQWI2dnlsTG1IbkRZVjJxSTI5aVpEeEdsM1JLZmduKy90M2pONjZzVGlFQUFEUkR2RGNxTE9HTXBXWEl6RElqb2czK05qSFdwRHp4K2xiSDJZbDdpMk8zUy8ycW84YTcyNGQ4cVBCR2g0azNyZE1WVnhVcWoxZ0JBRndXS3hRWW9tYytsZjFOUW5rdVpUWUtqNm5GYW5Uc0cvNVY0N0Z6WitmTkR5cFV0aXFkY2NwNUF3QndjWHdPZ1U5ajMyUUU3VjMyWWFYTWlTWWthK2d4M3p1cTExUEV5bU91WVJrdXlBdlF1L0VHWmpwOGFLeEpyU1M1UWg4eldGQXRlRTlVdndBQXVCeXlqRE4wK2IyMzNsR0ZkYTZyak5HbERrdUxpaytNZUUyc2Rla1B2REsrSEw4Rzlta2NkNFpZQVFCY0ZyK21KTWJpeWUxbmJzZDRNL0kxZGxlRkM2OHRXUEVhMDdvaWkwOS9DRXZVckJEaE1qU05CQUNBczdtcGFVcHNOdC80c0oydjFONTB1UEJrU2tPQ241Rm9aZFBPZFRwN3FrUzlyeUVZaVJ1cDdBQUE1eGVyZUhuSEc0ZFpWY2trS1pzM2NDMElGNVk2clBnTjlDbytXS3kwdWRURmhTajQ3MFExNEs2RURnRUFvQm5pTWJVdkx1bTlJaHN3RkhsNGRsY09GNVk2TE4wbjVkbEl0dWlKY3NlQ1ZidDh2Q1JqK05jYkhuc01BQUF3eDliUHpFTktIVmRJZmM4MWFQU3N4WEV0bXZvTXBZS2xQMmdvRmI5eGZ6ZUhIZFNKc3JJRGF3alZVY2NCQUlEYTQyeU1qNHhOU2tKN05jS0ZUN2tLR28wS2xyeXhxU3V2dkw0VkY3WnA2QXQ4emxYZkFBQ0F4b1ZyNFFvenR5WENOa3djcnpIVFVTeFk4cVo4cFl1cXBsdGVyRjZxQktid0N5dXlxQUFBMEFyaEN1SENVTDdQTTJvcUxGaExzQ3FjMWpheWt0dW1oQ3I2QWhaTldFb0FBRGl2Y01reHZ6WWk2d0s1RnhXczZNUDFJd1hkaU8xclRLamtPVDQyT3BmWFdaeGExZ01BQUM0clhFMXlsR0NkNlF0WTZ0RGY3cWx6OVR6V3NnQUF6aTljSlRrTEZ4ZXVzd2xXRTBvdHgvaUluQndaZ3dBQTV4V3J1RStXcDZyOTA4V0U2OWNaUG14WG5ORm5ScXo4Qi9ScGpxUGNoNVQvaXpjVjkxUGRNUUVBb0JGMEFRaS9GSk9yTVJqYWtjelAzVEcrTVlkMXJ0aW5xUDFIcFBEKzZVK2NVd0FBWjNkWGUxR3RHdVA4NUJ4SmNyOGErSURlOWJ3MTRhZ1NMbXVyWEJZbG13QUFMdU91Wm1vOERzVnhjNDdyYkZHd294MldLTEVYcW42VGppcnplbkd4M01aMlRnTUFnRG5PVnVZTWlPT2FLeDA0V3pIem94MldpRVczYVVlVklmNEN2RmpTcVJnQW9FRkVvTHlEMHZrRHFjZnI4WDJiY1Y3WGMxaWlya05SMThZZFZlTDFTSE1IQUVpUGtaMUxScDZNYnZSbmJSVjEwaHFXbE52WW5NbFJXZFpUT3pwY0ZnREFYL0g0YytFMS92R2wzTlhKRHV0U013YjVVbEkvQXUxSEFBREIybSswNjQzRDZKeGo0NlhkMWNrTzZ3SS93RmRETUpldVhUaEJyQUFBc2ZvYUsrTUlsUC83dXpSVFBGZjcrb3U2cTlZS2xxVEtlNkh5SVQvcnkvWXEvblJ1TlFjQXVCRldjdFA0RlBQUHBzT0U0cTdpek1EWkpkYk9XaFVTVEtSSTZoOWxkSTJpaXdBQU4rSzB4b21KL2xyR3ozVURyM09WYlVhdEVLeUNkYXF6eDJNQkFPNUV0TUsybjFRaGg5a3BqdWdhYTFlQlh5MzRja3ZXcVo0UUt3Q0FhcndRU1RXS0YzRlZtcTh4OTRTNnJGc3hFZUh2aTB0OXRxczVMRkZwSC83cm5tTVdBQUFBbFdIQ281ZFpaQit1YTZxYmNDc0ZpM1VxQUlDTGk1WWZkMzJZTU9XcUtzTjZFbXIwWS9maVdoR3Zpd25XSmRlcHZQSmZVdlVCQUc1RXVBWWlYTjI2WTdDcU5PU2pYNU5Mdi85ZkYvcVNMclpPSmE4MXA2STdBSUJTcE0xbXVmdmoyWSs1MXZEcEVudTNaQWxucUI1N1h3N3IwdXRVUm9kaWFnMENBTmpqWlUvY1ZqOWhKR1loVEtpcWFHeGxiTDM0c3MzWkJNc29qQnR6bG5XcTNXdDZzZXBGZHkxM0wvSEtxUWtBa0IyclUwVWExbktMM2RYa1drVWJ6aWxZdW5QbGx5TjFaOXBQSlNIQXFab2hQSk84QVFCUU5GN245bTc5Q05odVNIMisxdnM4MnhxVzZoUjgxdjFVa2JXTklkTVFBS0J3dks3WXUvWGpycTc1UHMrZUpTak9aM0d1L1ZReU0vQzdydU5RNEZVeVdBQUE3c1J4V1h1M3JqNnVuajFMME1jNno3ejVkNnpFYXUwS09tVUNBTnlJZUx4Zklldlpid3VLeCsxdEc4YlZmMi84aCt5N3d4TDNJNnBqQU1BZE9aMnZ5dWlTQlQyNTBQaW0yNVZNMmpDdXRyNkJZK2FIdEpJNmt0a3IwUzd0Rlp1S0FlQUd4amkveWZkTjNlMGpTSy9uWEorWG5JQ1A2QzQvWnI2MDRUdjU5d1ordEo3YjN5ZXdrYzF2Y3lWV3k0eFk5ZVdINzhoTVpjMytMQUJvT1JzUnFIako0MHRNZG1QWTZ4bkxJK2tFdHRia0E3VFdZVVhodm43aWgreXFmejlibHRWSWR3K3psQmRDaHdEUThnbDdpQXhaTlFBYjN3OWw3SitkdEtsUmJpc0ZhL2VsVFYyNjVxREZpNTV0eUEvOWxoQThzZ2dCNEphRXk1cDRlM3kwYWRSZ3RhQllJSk5HQU1INis0WEZCUlpMT0JBZkZRS01DVWtaU3k0QkFMZ3gwVXFOYTQxMUVsYXY1ZHJXaDdCVmdwV1lSWVFHWWVHTEd5aEIyMnZQbkptSm5IMnhFZ0RnekdOa1YwU3I5NGlUOGRZSWx2d1FuNGJJSEt3MUdYRldMMmF2amhBZ0FOeS9hT1hLS0xWcXplbWVCVXV2VzJWclZ2a1MrQzdkak95aFpoMEE4SkRDZFpGMUxRVEwvdkxmbFR0NnlvWHZaSmJoOXdxa1dwY2tRNERpNWdiUjYyM2w4UXN5QndIZ2hrVExqMkh2aWZGdmRHL2JkMzYxOUgydEM5YWFPbTYvZEVpTUR3RWVWR3IzSWlkSkhaL3VieCtZdm9pWC8vZW5oQnNCQUc2QmZ1Sit2OGIxZm0valdWc0ZxMU14cXhpSXU3SVdIbCtzOWFwbzkvYXc0blhuaUJZQTNJQzc4dU9VTGsxbmpXZFRCT3NNcm1yL3QrajJFeitTLy9LdDFFNmZlR0cyTHhHeDhyYTVtM2hkL1VQUFJSUUJBTm9vVnJxbDB0ZGtmWGNiR1E4ZlN3SGR6cTEvN2pabkNlNWxDR2JTT1QyNUdvS3BicHIrOGJOTU9yeVBLRDV4YVFEQUdjVEdqMHVEYUZ6eUUrMWxTWjNUeFByOWEwZ3VpeWJvZXN6YnlPTnVkbDJyTlE1TDFwdmlVTjdQREtJZ0JKZ1RxN254dy9uRnlMM3F3M0tNaWRKUVhCWUFOQ2xXWS9kM2FTSWVsM3hFeVVkMlBrUndjZ3pjWVNYMVpUU1dlVUY2Y24vM3J2Njh2THZ4ZGEwMlZyclEyWUpMWjZldnIyUzJzTTJjR05ZbTVHU2F1OHhjL3BRNE53Q0FtbU5iYVJXZk1CRmZaNDRWSWtlK2t2cHI1bkdwTW5jM3VUZTFqVWtYcjI1L1RTbFY5UEVsSTFiemhGaTlzQ2NMQUs3a3JJYkdwTnZmZEVaMFI1eFEwbWxKNk5EdlV4M2xYbGRFYWVRTzErbkhWMmdLZVgrQ0pTTDBXakh6U1BhOGtnM0Yrc1RZVk0xWU11SUlBSENLV0hYY1lUYmZzMHk2WDJTdGZIS0VhRzFLOW8yS3VPa3hjMzJMMGFOV3ByVkxwdC9FbUkwOHBZb3h5a254Ym9qT1drNk9kY0ZKTlRWZUV3RGdGUFI2MVVIaWc0akh5QkN0ajFQWG5CSVpoYSszK0VXMmRSOVcrQUdEWUZTRkFMc2lWajFEY0NyN1hrWFA3NmdaQ0UwZUFlQlU0bkZwbTVwMGl4UFNTeUtlby9lR1JoTjVwd1R6Sm91QS8ycjUrM3NWZHpTcm1EMVlHWVNMbk1nVlBKOWl1UURRQkIzbGJuSVRkYi9HL3RLZ2FPbUorS1J0TFVQdVJyQzgyRlJreXFUMkczaXhHaFZhWmV2NW8xditVUUdndFhRbG9wTWI5OVpOaUpZa24vWFV1SGpUV2MrdDdEaGMrR1BvRmlPeDJDeWFmcjZJVzE5T0FIOGllVXU5cEw4V0FFVGpSTWRvaDZTMzJKaHRrNXFja0J2alc5RnJJbGczTGxhcVpiVEZRbXcyVmQ0QkhsaW8zTisxb2oxaEVFZjFvWVNuam1ocHA1UVZyV2laSXhDeUVtOStjdjNyQmsrTXFTRTJJZDE5MGVUem94OCtsKzd1eGU4dTZuUUJ3RWxpMVpQYlhwS0RDSVVPeGZWS3hvMG9QS2lYUm9ZUzhyTjRNeWJpZHhFSituVmpKNGIva2NjSnNWa1ZQSDllK253NWtmd1AzeTE0YTBVbkh3RGNKUVBsZ0hwYVRHVHRhSEdrYUcxcml0Yk0vVjMvbXR4VHNZU2JFaXlaYll3TVcxMjV4MHBLUHVrRlMzT1BWalJqNmhvbmd0OEw5by83M21XK1VpZmZtR3NYNExHUXlNeWlTa3draEdlSjFtZFYvY0FLMFJvWTcrZkYzV0ZwdVZ0ZHd3ck5GMHRpd0xGZGQ0YlliUXNmbjByRzBDbnh2MW5QQW5nOEVyVUNyWFZ4cTc1ZlpmM0F6UGowTUowbGZ0M2ltNVpLNjg4MXNteTArQ3d6WW1lMU1KbGsxc2RtUm5nQUFCNlBpZUdBRGxMUm8vcCtNWldsbUpUVDJ1d1BkWlVWM2hHc2xzOTJVbUxsczJ2TUt1OHlRK29iajgvWmFxdkxKd0E4R0ptdzNWd0xpa3lBVHhHdDJTT09PM2NwV05LdDJOcS9NTXVrZ2xwMnZtUURjcGRMRmVDK2tYVndMengvY3B0M28rTGRlaUw3WGxPMHFqWUlQK1QrejE5M2VHSU5YYnA2eGFSSnNUS3FNRHRqZGdVQU55NVdNcWFFSXJaemFUbmZTNGpXeGgxV3FnaEMxRW1JbG41c1ZWVUxxNWt0Z25XRFlsVnJRN0U4NXlCN3NLUzBrN3hXVjUycmxIUUN1QytHaGtENEtJNnZwRDYyMHRJbGVlSTE0WjRzMFNvdXhXUk1sRGVQVXFqN1prc3pHVCtpdFpzOG0zbVRFTGpTSGVpV0szdWxRU1RBWGJxczBLS2piNWtxbDlqdmxCcGpmTkpZNGpYTVVrenVPMUZzSzhJNWRZZnRTaDVpM0xrYndaSWZQS3hkWFVPc1NndnUraXpDRmFudkFEYzV4Z3pGM1ZocjF6NjZjbEJWUXZhQTlrdkdpNHhvcFZnVVJvTVFyQmFmVU1PYzhCaTF0b0xBUFJXSWxiV0hvbFNzZ2tpdTNRMzNwQUY0Y05IcXlCZ3pOZjc3SzRQUFp4WkhUV0ZUYTFFemExMWR4cWVTS2pzUEpWWjNLVmlGSjl1bnF4RTZiTWlWNlpsVDBXc0NRR3ZIa3E0SWtyWDNjdVAraHZCeXBBb1M1TVR1UnhRZjdUdC9STUhTNGJ4TGlKVzVPOTE5bDRVaU5BaHcyMk5LM3gwbVlGa0NOaElSS3FxaUU0bGlQNXJvYmg1NW5md1JCZXVQY2xlVmhYTlBFU3Q1L3BzeEMzdkdYUUhjMWRqaWx3ckc3bkQ5Nldlc1NFeGVpYllnV09ZSnBkZXVmQVBHMTVyUENTZFlVWDhabzNsYmRrWUZBSGMxeGh4TWJCT0pGWWhXQWI4ZTdQTmFNNStxaysvZEVLdVhRckhxRzJLMVFLd0E3aGFkRFRqVFVaaW94NVhlTFB4R2l5SUVhKzljcVRsVE9ub1dGUFhUMGdJNTRiUUR1S29MOHB0OVB5OGtEdWFTZ2RFcTZldXRPZnJxSVZqUlNiSlJvalcwVG80b3pxei9yNDVsdDhUdWxTUUxnS3NKVlUvYUFVMUZIS1lYZU5sT1pqeGFHcUxWTXlhNjhLQU95N1BJeldna2pQZmg3RnFFNjhJTFkrN3NUQ0QyWFFGY1ViUFVkWG5RL1BBTWptcFlNWW4yNDVGT1QrL0wyamNvSGk1TFVBVGx3eENVbFp6UVZtcHFVWkpFcG56TDVCSDNUQUMwOE5yWEdidEZCUU5xSE4rUEg1K2w0NGRNa04vVUJObVBSVVJqY0ZnL1dEMXIraWVLMVZpY21SYXJWVk5pSmJIM0lhY3R3TkdZbGRHYk9yaEVVZlI0a1NwaWEzV1c4RWxaTDRnVkRrdWZMT0ZFSFdTcy9haHFrMTdCcHNHbkprS0JxazdpV2x3YmxlRUJUcnVXYWsxTWE0d3RIOGFZc0pKYnFJQ2hSV3lXYW9FRUR5NVk2dVFkcUpOckpUT2RiY1ZKbWFzVDlpVXNWbFhtSTkrbkZjWjhZbDBNNE9jYThkZEh2eVNpWWRRRUxkNWJXZU85MUNsaXk5NU1CT3RzRjhaQVhGWEhtRUhGSWNGRzFxNVNmYjUyeC82SFh3TzRIZzhtajY4RmtSSExCZm53L1V2REFscFZ4SFlyNHdSaVZjQXZ2b0phSjJCWFdnWG9SZEt2azg1OTk2eUpXVFo0TVI2NE4zNFJnQzkwRTliS2RIV0pudWlVOGthejh5U3IrRm5HQml0YTR5ZTRMNGdWZ25VT3NVb2xWWVRTS3pQMWYrdUd3Z3ZqUkZnQndRTDRacUVFb1ZzaVBMSUdyQ01nWThuMGEwcTB0bjVzMk4xK3UrOWtyMWY1ODBtU0s3aU9hMEJJc016V1cvdXFuSXRDZmtZNjY4bmh3RVFkdyt6eG84N0wvdjhXWkJ2QmcxeW5PbXhlbks1dXJBODN0dllNT0t4TFhnUlRHZnkxV0cwaVZ4WFEyWVpOdEFESWhUYldtZWVFTU9LSEpKVUEzUHExMkpYck1lVmtGbTYvaWsxb3NsakNRYlVKTnU0aVdMZkl4aDNHbnYyRjhXeWtsQS9WREcxejRnWHFCYkJmOGQ3MGMvcEtPTHN1VWNzTTRFYUVxaU5DNWFNWDR3b2gwY0l6TFFudlNWaHVZankzeHkrQVlOMk9XbjNQMmw0aTRmTFpSeU1kWmhDaDBHbnhKMTJrRmU3S0pRUlJaeExPaUpIRGplTW5ZTEZJalZQRllXVVN1YW9ScFlpZk96T2lGbk8rZmdUcjFrUXJaUG84WlZKbG13NEhEcFVBYnRReFY0YklqZFZ6dnRwbzh3dkNIVXdhNjRUNnRGTWExQWlMdjZxSVJDOFhob1RMUTlKRkF5RUxDVmZFTGF5ZlRqaWVWWXZzMWYydE1PM3h5UlNqekh2d0hHeEVsR1A3aTkxZndMMUkvQ28zU2dOYzRGb2F5T1J2THpLUXFFeVIzRFF2eGFkalVTdmVYNVZvdVBwQ1ZSa2MxajJGTERvTnVpdDlzYXpFMlduSHBaOFR2NGUxSVZiK0F2WUpKR08zbjBRU21reCtzdEFNMTVqdytYUFQ5NmR5My9zYkI5cEJKVUo5NHdxWEZVKysrcVUxT0NVMHFGOXJUbzhxQk91ZUJNczFJVmhHMHNTWFV6SkNHbnIyT2N5RlJUS1ZPWndLdFV4bGRncHdDYUVhUzJSQTErSWNHc2tTT3RRM1RJWDZKRkpnN2E4cUxwT2tCSzlyQ1dRb0pIQ0dGaVdBWUozbm9uUDdtWHliRTVNY3RGaE1KT3pSVFFtV2NTRXQ0dkJGVk9RM3hsK01DMmRYNXhqaXRPQ00xMHhYSmtWL2pNakEzbm1vUkdqdERxdWc1ODVUdmZiVmRZVnA3bkxOalF6QkcwU2ZJeTRrZ0FORHNOcFBWTjVsMjRDN3NwSW1GdEhGOW5OL1dHdVNNRWRmUFdkaVhQanh4UlQya0kxa0IzN1llUi9QS0tkY2dOQ3dVUFdsck5sblFqald4c1JKbjRNelZ4RHFFM2RtMWZBcmRsa1NodGZYODF3RTkwMkpiYWRDUEFIQmFvMW94YW52eXlNdlp1dUVuMFJKRUQxOVlTZFMzMmR4NGtUaXVBZWRreE1sYWdoelFGTmk1WjNJdTdQM0ZTNWxBdVV6Y2VPMW80N2hzamJHZVRxT3ozZHhiNStKMTZyY0xxS3ZGWGZZTyt2VHVEWm1qb3pjaS9BdlgwRWpvdVVGNE9tRVEralF5RW9sVGZTTW1haXVNYmd4U2pVTmplT21zcDNXeHNVTjBBUlc5dWxDSmxnYmRWOWZuYjh6NDNueHRvOVFBV1ByN0xxYlczV2ZkMjZ6a28zOWZ2SzNlK3hJM0pyNUVKa0Fra0dJdzNxY1VJbkxKRTJJUzlxckRDOGhqN0V4RzNTcDJXYzBFd1M0Tk10SVBQeTUvVnRDMGhzbEVFdW4xcDEweUMrVlVHRk0rc0pyUFJtUmp6cUpSZHVFNFBwalBpTldDTmFqb1VNVUN4V3k2eGxPU0Y5d1MzM2h5SVd1SFZqdTRqcXFESTJzVGZ6eG9SaXlwUjV1c2xXNkhyUVFKL0piMWsxeisvMnNLSUYxdkZ4eVV5aWZGbDVMcit2MnF6WVRSeVdoM2cwaDlCVnZYdG0zaUdBOTJnVS9WRUpoWFZ4YVNMcnVNRDQvT2NWZEpkYTY2c3djdzNyREd4bUdkMy9PZmxWL2tIMVRmMHBiY2RUbytiUjBoOVVtTEhHeHp2blE2bWZQdmNuZko2VXVTMTd2dzdnbS9IdDdxbW9PQ1FqV3ZjNU9zMGtUa1VEbGhHaWlReXNpaEYzbHJuSUR4c0J3WTlRZ2hIQStEY1JCZjBZRGVUYzZkeG9qRWZLelhOYktIWWI2dHBrb2d0VXphNWdRcTNkM21MRTd3bFVoV0krTVhpQmVKL3BuZFRQLzNyakR2U25XQmI0b2VDOUZidXlFUVM5c3NteTBRUjZjWnpJbDFTZThZL2I3cGQ3Y1lYM0xWQVNnQ2ZUNU9raWNNOFdodm9RUVd0czMxbTUvSGMwTDRETmRnUkdzaHc2cldFNHA4ZkJjckgyU3FCeXZ3NHlMekh1cDY4YXFXR2RjbkZrR1NtYnd0SEs0L25rNWxEMUdYcVRtaHZNMmY5ZW05K3pKT1YyNVNUaVI1ajdQSEhmbUtncnBxcjJWRStrS3ZPSHNRTEFlR2IxbmEybUZNaW9HOFZVaWxuN2dsaXJDR0pmS0pOU2hvL2p6K2tIU041djhMM0poQXpZdm4xMmcrdkpkajZQSjBTQnp6dnB6NDlWeVFBMjd1N0V4VVJzbXpnZTltYmhiVVRmUTZudlZWYUxsejgyblV6dUdRL093RCtzYWF2VXRJSy9paHFZWmQ5V3RjZUVGZDlXdjRhNTBINit0YTZaVHNuNmRyblo5WVkzTUVPVzl6N0Q3LzQySTIwWkVtclcxWm42VHVFM0RJcHBFREpSYlh1cnYzUkNPdnFzT081ZWNJNkgzVmE1YzAweGZTMzVmbGR0ZkQvWWl0TFFtYW42U3QvdS9sYnBPeGs1dEMyR3RDc0dDdzR2bkt6NmV1NDRUOTZjYU14NFU0cTNycnM1MG9lWUtCRmV0WiszVmdOc05ObHNaU0VlRWF0SXV4US82bWZZYmZjTTloZDlsSU1LMXpIeS8vbkZ6SlZpbnZGK3JwVWZxZkowWjE5Rk1oYlk3enQ1MEhFLzJQcHA2LzNBNUNBbTJHeXNrYURabWpIcGQ2WEJKemwwVnU3RVQwUVBDS3A3eDdtNy91Ty95VnFFWWIwNklRc0hoVUUreCswanJYNUpXUHBSUTNrL1IxVkJVTnFTYjcyN3ZtWkNxV1V6WlQxWmt6U1piQ1VJbU5mR2tvM09HUFhncmNUMXI5VHJEd29oRE1ya25LcVFiMXFtZUdHb1FMRGlQWUUwU0xzaXEycDRiK0lmRzR4dDNWMFpGKzYyMTl1YmRaaWpHS3dPSXY3Mks2SzRQSC83elhyLzJ6TWo2MStjRGJGNGVpcnVaeXQ5NzRRc1JJZXBHb2pUT2lQNkJZTlZrWFRFcHFVT2NjdjVWbTFPRWMrRUtLN1RMT2FWckVWYjF6R0tkNnNZZ0pOaHVEZ2FXVEFiZm9JYTc2aHFQUDVlN09xcGZtQXpBWDhrcElrSnZsa056aHkwaytxblhrTW9GM2NoUjVMNmpnVHkySjcvRFNnYlY1WlhYTnphWmM4UTdrby9vdnJHczVhd3pFNkh0a1o5bjZmYkRlRWNMVmxTemIyMlVhMXFvVGdiKzlCMGtFbzVtNm4wTTVmT3ZFaTRSRUN4b2tDZVpKWTRUWVkrZk1KRTczTk9WYzFkMTNkZ3BKTU9CZFl4YWF0RDJnNUdLL0hRTFB2Y2dKZXJ5WGM0TmR4cyt4MVNLcDg3VTg4YVo5OTVOVEVaR1J5U1JKRGVXKzk5dzl6NG1ibjk5eWYvOU9TTnlSeVd4eUd1dG8rL3BLelI3YkZKTVJmV0loUkxIb1RVcGtYTmhvYUlINHlQUE9XZ2hoQVJiakt3cFRHVEF5VldGN3BTNm1McHJYYWNnNGNCQmpZSHBXTkhMMVY2TTMwdFdPS01xQjcwSzEydDFacDRtYnFGbm1iNzEzSEVWOFhNT0s1UkFpci9qbmlHbS9STW5FS256N0Z6aFdGMmxvcDladDdUUzNOa2VnV0RCQllWclhiR1p0NnFjVTI1UVdSN3JyaVJzTnFqeldrMjROR01XcnhmbXJRR3FsL3ZPNURsdmhvaXMzTiswK3BnbU9qTWZNNUJ1S3o2WFIvZHhtb1lCM2toRU9DVTB0cjJFWUNVMkVnOVR6aThTcmErRUNzSi9DQmEwVE5EVTRHRnV1azIwSmFtOWRpV1phcC91YjhtZW1IY3A2VE4wK2MzQ3hhOVZjSXhOd1NCZWxXaWdxOXQvOVRpVHhmOFhTUVN4TXRFNmF2QmVSeUlYM3hiR2UrOGUrVnRuUlMrcTFoQXpUN3ptdXVidjBZK0szODZOVSt4Y1piY1d4b1NobTNrc0NSVjNDR3RZOTBPOGViSWp3akZTRzNUbnJyeWhZODVWdlZVOExPVzh6aEVPdEFiZDNoSGljTkNUekVnQW1LbnRBQ0VEMHJ2VTN3WGZuVlhCNFZobjA4bUljOWdnTzRzbUtGWm8wSld1T2Nsenh3V3VjT0RPRUdLV05UTzlQalUwSmhFa1ZPQ3c0QWJRUFlMOFFPYlR2VCtrUmZtSE1iaE5hb3BWMTZWcnRWVU5Fc2RtMTNVcjNKUWxXSjJDNDZ3ei83L09DUG55QkpmVVZKV090ZnBkT3BsSlRQeDlqWjNkdmJyMGR5Z0pZWjRsTENqblh0ZHdXYXhQSVZod2E0Z1l2Q1RjaHJuT2NVUkdsNTVoaDdZTC80akRDR0V6NjdpcnpHRFVrZHFCM1dNY2xuejJqZnJNeHdoZmlmaTJvYnBHeVRyV1R3a3dKZVNESXdWcnBWN2ZUNUJlWmRPMzdsL1ZtSWhJQ05Jbndud2E1MExIblMvUkExb0lJY0U3RTYzZHhmMGlvWkpVK0NhSVRLM3duQXhDT216MkdqdVJhTUY3Sm0wcE9obG5va1hwVFY1bkl3TnB1T2xLOHR1TTYraVdDbFljN3F2cVB0dEMxbXFnN21UT2liV2t1azlQRVY4Sk1mcmpXUFVjbCtyY0dMalRhd3NPWGJReE91RjBGN1NvUjdEZzlwM1dUT0w5OGViWDBPZm4yTkNjbFYyNFNndzJ1aTNGdXVJMWUwcFl1b21aODZwd0VQL0tGRlN2MlQzU1diZ1NOM01rVFRtUmJzVTVNWlBmcEdkOFozWE9yVm5HZlEzVkJPU1laSjR3S1JwbVBwTS83b3c2a2dnVzNKOXdOVm05b21mTWNKdDRiT1dBV3pqQVdwbUNLeGtJc3ludE5ZWFJuZkU3UGFmdythekJkL1hZWGhPZlZkelgzdVRHbURDVWtOb0RGK3BuTGtpb1FMQUFqcG5Gcit1NHNZb0I3eldxT1JqS0svVnJDbFl1VTdDSjJua3B6amFBUm80amJETHVIeXQ4RWhyY3F1OGlsRzVxd3EwczFlL2VkL1d6UXBmcXMyekVUZEh0RnhBc09HbFduV3BkMFhPSEdYZWJndVBGRmNCbmNxeTRaOU0ybFNRaWExQjZmVzBxNnlDYk00dE1uY0crV0NnbGhEY3ZkRStsb2NXdThUei9HaThOZkErckJnVExDOU5ZdnFmRmtWVlI0STRoU3hDT0dwZ3pWZEVicVc1aEpFS2t4TXFMMHJ1ejE3eFNicTBrRGY0Y0lyOHQvT3hocjF2cCsrb2Q4WDMrQ0VzREZUdXMzM2x3NVBjVE5tc2pWb0Jnd2RGWWxTRktCT3ZZTlpMS0NoZVJDem1WYmx1K1pBa0R6ZzFINkYzblNOelFrLzQrQ2xMSmUrcDRHK1ZHVDFwUEU3SFJKYkw2Ung0SHdJU1FJTlNaUVUraldYL1lIL01UdWpIQ2dac1RXdHBuTTlvU0EzdElxOS9JK3d3WmgwTTFLSjZTYUhEdUZIaWRZZWsveTdNZXlHVTlTbjlmdWMrbHkwN054SmtHcktydWRZUzI1dzVEclgxSHBYUkFzT0RTUkQyTDN0U0ExSmZCYzJrNGxWUENPbFVwMk1PU2dWMEcwNkZ5RjNYZDVMbm9GOXczUzdpTzRyMVl4dmU1a1ZZY0I2V2I2dFRmRTRmYk4wUTJGdDhKVnc4Z1dIQU4wVnFLYUUzVkFHVnRLajVhc0l3eVBOWStycUtCM1FpVk5TMUdUUi9QYWhkUzlMWFZFYXp3blNuaDk2SEJWU2E1SlZTV0NPdUNuUXQvTi9EZ3NJWUZkVVhMRDZEUDdyQk9uZkhRdzRHdnNHeFB5UWJYWHVIQVhuY1BWbTNuV2ZjcE5UOTdxUmgwS2lZQTJvMm1xcnEvSlNyOWUySHoxVXZtR1VlMVY3TEpiMWZnaWdFY0ZseGJ0UHlBNTBNOUUxbTdDTlhadXpsM0pZUGVYTW92cldUUVhWZTBjRThKMWw3VitSck9ZMzJFTzJuMDY2dDR2YlVyV3ljcnFpZVkrSHhiNVpyalBWU2hCYzJrMEMxdDVMZGVVU1lKRUN4b3UzaUZtbjlCdk1LYXhqSXpjTzRsUXNnYTJEb1NzYUtVOWtJNkJRNnJlOEx4bWtZblYvUXRJWkNOd0tYdnEyb0NNSEw3SWI2eGhBWlg2dlhDeHVOMUpGS0UvUURCZ3BzV3Ixbmh3QmtQdHFucUZ0dUNRYkdPdXlqWjZMczU4cldhUUNkVERESU9zckl2bHZWL09vd3BDVFZ4UHpXUER3M3FicjB2OG50UXh3K3VBbXRZY0VuOFRQNVZCSzAwZkxRcXVMK2pNZ0ZQRmF4U3gzWHl3RzNzZjlMT2RKajViS1Y5c2JwVjM2ZGtCNjdVSkVKdkIxZ2pWb0REZ2tkeFlCdjNkODBqRExKOTk3ZG5sNVY1bG5KWFMrWElmSWJieGdpZjlZejNZSWxmWHowbnRWRzU1TDNWUVdjRldwMTE1eUpzSzdmZlFxVm5mTlpWaGNQYVZrd28vR2Rjc3g0RkNCYkFvWWl0NGtGV010cmlJcmdwUjdBUTU5R0xCdjUzU2VnSVBiVjBzZGQxb1lzYjYvUnVjUy9qUXZlWG95U3JjT0lPTS9HR0xsMWR4QlMvaElOYlYwd29acHlWZ0dBQmxMdXcwcjFIVnN1TWJpUjJSV0loQ1FXeHkvTEgreENuRTZwbVdCdVZqOWxucHRlb3JQY1RHbkcrdVhvSklkM0VmV0Z0c2M1M0M0QmdBVFFvYmw1by9KNnd1U3RMQmM4NUlyKzI5bW00bXFSWW5yUHVYZlRacklhR0svWG5PbktyK2poTGQxckZFUUFFQzZCQlIvWVNoUkxqR29JOVY1aUdMcTZtUlB3MklsYXJDM3kyVVBTV01CMEFnZ1YzSmx4bXVDdXFHcjRwRkwrd2x5eDJOVnR4Tk11R25WV0hYdytnakgvKysrOC92Z1dBQ3lISkd5RVJZc3ZHVzRCeS9pL0FBSzlEU2g3cHhhTGNBQUFBQUVsRlRrU3VRbUNDIi8+CjwvZGVmcz4KPC9zdmc+Cg==);
  -webkit-mask-size: 100%;
  -webkit-mask-position: center center;
  -webkit-mask-repeat: no-repeat;
  width: 160px;
  height: 160px;
  z-index: 0;
  animation: qodef-element-rotate 20s linear infinite;
  text-align: center;
}
.corino-rotate-effect-yes .elementor-icon svg, .corino-rotate-effect-yes .elementor-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.elementor-position-top .elementor-icon-box-icon {
  width: 100% !important;
  display: flex !important;
}

.elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  font-family: var(--e-global-typography-secondary-font-family);
  color: var(--e-global-color-secondary);
  text-transform: capitalize;
  font-weight: 400;
  letter-spacing: 0;
}
.elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-title:hover {
  color: var(--e-global-color-primary);
}
.elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-description {
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  color: var(--e-global-color-lighter);
  font-family: var(--e-global-typography-text-font-family);
  font-weight: 400;
}
.elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-button-wrapper .elementor-image-box-button-text {
  letter-spacing: 0;
}
.elementor-image-box-wrapper .elementor-image-box-img .elementor-image-box-img-inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.elementor-image-box-wrapper .elementor-image-box-img .elementor-image-box-img-inner img {
  object-fit: cover;
}
.elementor-image-box-wrapper:hover img {
  box-shadow: none;
}

.description-effects-yes .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-content-1 {
  display: flex;
  align-items: center;
  gap: 3px;
}
.description-effects-yes .elementor-image-box-wrapper .elementor-image-box-content .elementor-image-box-content-1 .elementor-image-box-button-text {
  display: flex;
}

.enable-effects-yes .elementor-image-box-content {
  position: relative;
}
.enable-effects-yes .elementor-image-box-content .elementor-image-box-button-wrapper {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  margin: 0 auto;
  right: 0;
  left: 0;
  transition: all 0.5s ease;
}
.enable-effects-yes .elementor-image-box-content .elementor-image-box-button-wrapper .elementor-image-box-button-text {
  font-size: 12px;
  font-size: 0.75rem;
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  background-color: transparent;
  padding: 0;
  overflow: hidden;
  border: none;
  border-bottom: 1px solid var(--e-global-color-secondary);
  color: var(--e-global-color-secondary);
  position: relative;
  letter-spacing: 2px;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  text-transform: uppercase;
}
.enable-effects-yes .elementor-image-box-content .elementor-image-box-button-wrapper .elementor-image-box-button-text:hover {
  color: var(--e-global-color-primary);
  box-shadow: none;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  border-color: var(--e-global-color-primary);
}
.enable-effects-yes .elementor-image-box-content .elementor-image-box-title {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 30px;
  font-family: var(--e-global-typography-secondary-font-family);
  color: var(--e-global-color-secondary);
  text-transform: capitalize;
  font-weight: 400;
  transition: all 0.5s ease;
}
.enable-effects-yes .elementor-image-box-content .elementor-image-box-title:hover {
  color: var(--e-global-color-primary);
}
.enable-effects-yes .elementor-image-box-content .elementor-image-box-description {
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  color: var(--e-global-color-text);
  font-family: var(--e-global-typography-text-font-family);
  font-weight: 400;
  display: inline-block;
}
.enable-effects-yes:hover .elementor-image-box-title {
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}
.enable-effects-yes:hover .elementor-image-box-button-wrapper {
  opacity: 1;
  visibility: visible;
  color: var(--e-global-color-primary);
  transition: all 0.5s ease;
}

.elementor-widget-accordion.ecofa-accordion-layout-1 .elementor-accordion {
  text-align: left;
  display: flex;
  flex-direction: column;
  grid-row-gap: 10px;
}
.elementor-widget-accordion.ecofa-accordion-layout-1 .elementor-accordion .elementor-accordion-item {
  margin-bottom: 0;
  padding: 30px 30px 35px;
  background-color: #ffffff;
}
.elementor-widget-accordion.ecofa-accordion-layout-1 .elementor-accordion .elementor-accordion-item .elementor-accordion-icon-accordion {
  display: none;
}
.elementor-widget-accordion.ecofa-accordion-layout-1 .elementor-tab-title {
  line-height: 1.25;
  letter-spacing: -0.24px;
  margin-bottom: -1px;
  padding: 0;
  cursor: pointer;
  max-height: 5.9rem;
  overflow: hidden;
}
.elementor-widget-accordion.ecofa-accordion-layout-1 .elementor-tab-title .elementor-accordion-title {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 24px;
  font-size: 1.5rem;
  color: #30373E;
  width: 85%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .elementor-widget-accordion.ecofa-accordion-layout-1 .elementor-tab-title .elementor-accordion-title {
    align-items: center;
  }
}
.elementor-widget-accordion.ecofa-accordion-layout-1 .elementor-tab-content {
  font-size: 16px;
  font-size: 1rem;
  line-height: 24px;
  font-weight: 400;
  border: none;
  color: #666666;
  padding: 31px 0 0;
  margin-top: -5px;
}
.elementor-widget-accordion.ecofa-accordion-layout-1 .elementor-accordion .elementor-accordion-item {
  border: none;
  border-radius: 0px;
}
.elementor-widget-accordion.ecofa-accordion-layout-1 .elementor-accordion .elementor-tab-title .elementor-accordion-icon {
  color: var(--e-global-color-primary);
}
@media (max-width: 568px) {
  .elementor-widget-accordion.ecofa-accordion-layout-1 .elementor-accordion .elementor-tab-title .elementor-accordion-icon {
    display: none;
  }
}
.elementor-widget-accordion.ecofa-accordion-layout-2 .elementor-accordion .elementor-accordion-item {
  border-top: none;
  border-left: none;
  border-right: none;
}
.elementor-widget-accordion.ecofa-accordion-layout-2 .elementor-accordion .elementor-accordion-item .elementor-accordion-icon-accordion .elementor-accordion-icon-acc svg {
  width: 48px;
  height: 48px;
}
.elementor-widget-accordion.ecofa-accordion-layout-2 .elementor-accordion .elementor-accordion-item i {
  font-size: 17px;
  font-size: 1.0625rem;
}
.elementor-widget-accordion.ecofa-accordion-layout-2 .elementor-accordion .elementor-accordion-item .elementor-accordion-icon-opened i {
  font-size: 14px;
  font-size: 0.875rem;
}
.elementor-widget-accordion.ecofa-accordion-layout-2 .elementor-accordion .elementor-accordion-item .elementor-tab-content {
  border-top: none;
}
.elementor-widget-accordion.ecofa-accordion-layout-2 .elementor-accordion .elementor-accordion-item:last-child {
  border-bottom: none;
}
.elementor-widget-accordion.ecofa-accordion-layout-2 .elementor-accordion .elementor-accordion-item:last-child .elementor-tab-content {
  border-bottom: 1px solid #D5D8DC;
}

.style-theme-yes .e-n-accordion-item {
  border-bottom: 1px solid var(--e-global-color-border);
}
.style-theme-yes .e-n-accordion-item:first-child .e-n-accordion-item-title {
  padding-top: 0;
}
.image-style-corino-yes.elementor-widget-image .elementor-widget-container a {
  position: relative;
  border-radius: 0 30px 0 30px;
}
.image-style-corino-yes.elementor-widget-image .elementor-widget-container a img {
  transition: all 0.4s ease;
  object-fit: cover;
  border-radius: 0 30px 0 30px;
}
.image-style-corino-yes.elementor-widget-image .elementor-widget-container a:hover {
  border-radius: 0;
}
.image-style-corino-yes.elementor-widget-image .elementor-widget-container a:hover img {
  border-radius: 0;
  transition: all 0.4s ease;
}

.corino-image-effect-yes .elementor-widget-container:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid #ffffff;
  position: absolute;
  top: -8px;
  left: 11.5px;
}

.icon-list-style-corino-yes .elementor-icon-list-item .elementor-icon-list-text {
  position: relative;
}
.icon-list-style-corino-yes .elementor-icon-list-item .elementor-icon-list-text:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 4px;
  left: auto;
  right: 0;
  bottom: 0;
  background-color: #000000;
  -ms-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.icon-list-style-corino-yes .elementor-icon-list-item a:hover .elementor-icon-list-text:before {
  width: 100%;
  left: 0;
  right: auto;
}

.elementor-widget-icon-list .elementor-icon-list-items .elementor-icon-list-text {
  padding-left: 0;
}

.elementor-button {
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  padding: 0.9375rem 2.375rem;
  font-size: 13px;
  font-size: 0.8125rem;
  border-radius: 0px;
  border: 1px solid var(--e-global-color-primary);
  background-color: var(--e-global-color-primary);
  white-space: nowrap;
  color: #ffffff;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  display: inline-block;
}
.elementor-button span {
  position: relative;
  z-index: 2;
}
.elementor-button:hover {
  border: 1px solid var(--e-global-color-secondary);
  color: white;
  background-color: var(--e-global-color-secondary);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.elementor-button:hover .elementor-button-icon {
  color: var(--e-global-color-secondary);
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.elementor-button.elementor-size-xs {
  padding: 0.25rem 1rem;
  font-size: 12px;
  font-size: 0.75rem;
  border-radius: 0px;
}
.elementor-button.elementor-size-sm {
  padding: 0.5rem 1.2rem;
  font-size: 12px;
  font-size: 0.75rem;
  border-radius: 0px;
}
.elementor-button.elementor-size-md {
  padding: 0.9375rem 2.375rem;
  font-size: 13px;
  font-size: 0.8125rem;
  border-radius: 0px;
}
.elementor-button.elementor-size-lg {
  padding: 1.2rem 2.5rem;
  font-size: 16px;
  font-size: 1rem;
  border-radius: 0px;
}
.elementor-button.elementor-size-xl {
  padding: 1.5rem 3rem;
  font-size: 16px;
  font-size: 1rem;
  border-radius: 0px;
}
.elementor-button.elementor-button-link {
  display: inline-flex;
}
.elementor-element.elementor-button-outline .elementor-button .elementor-button-icon {
  color: var(--e-global-color-text);
}
.elementor-element.elementor-button-info .elementor-button {
  background-color: #3d9cd2;
  border-color: #3d9cd2;
}
.elementor-element.elementor-button-success .elementor-button {
  background-color: #0f834d;
  border-color: #0f834d;
}
.elementor-element.elementor-button-warning .elementor-button {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}
.elementor-element.elementor-button-danger .elementor-button {
  background-color: #d9534f;
  border-color: #d9534f;
}
.elementor-button .elementor-button-icon {
  line-height: 1;
  font-size: 8px;
  font-size: 0.5rem;
  color: #FFFFFF;
  font-weight: 500;
  transition: all 0.8s ease;
}

.elementor-button-content-wrapper {
  align-items: center;
}

.elementor-button-outline .elementor-button {
  color: var(--e-global-color-text);
  background-color: transparent;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: var(--e-global-typography-primary-font-weight);
  text-transform: var(--e-global-typography-primary-text-transform);
  font-style: var(--e-global-typography-primary-font-style);
  text-decoration: var(--e-global-typography-primary-text-decoration);
  line-height: var(--e-global-typography-primary-line-height);
  letter-spacing: var(--e-global-typography-primary-letter-spacing);
  border: 1px solid var(--e-global-color-secondary);
  letter-spacing: 0;
  text-transform: capitalize;
}
.elementor-button-outline .elementor-button:hover {
  border: 1px solid var(--e-global-color-secondary);
  color: #FFFFFF;
  background-color: var(--e-global-color-secondary);
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.elementor-button-outline .elementor-button:hover .elementor-button-icon {
  color: #FFFFFF;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.elementor-button-link .elementor-button {
  font-size: 12px;
  font-size: 0.75rem;
  font-family: var(--e-global-typography-accent-font-family);
  font-weight: var(--e-global-typography-accent-font-weight);
  text-transform: var(--e-global-typography-accent-text-transform);
  font-style: var(--e-global-typography-accent-font-style);
  text-decoration: var(--e-global-typography-accent-text-decoration);
  line-height: var(--e-global-typography-accent-line-height);
  letter-spacing: var(--e-global-typography-accent-letter-spacing);
  background-color: transparent;
  padding: 0;
  overflow: hidden;
  border: none;
  border-bottom: 1px solid var(--e-global-color-secondary);
  color: var(--e-global-color-secondary);
  position: relative;
  letter-spacing: 2px;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  text-transform: uppercase;
  position: relative;
}
.elementor-button-link .elementor-button:hover {
  color: var(--e-global-color-primary);
  box-shadow: none;
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  border-color: var(--e-global-color-primary);
}
.elementor-button-link .elementor-button .elementor-button-text {
  -ms-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.elementor-button-link .elementor-button:hover .elementor-button-text {
  color: var(--e-global-color-primary);
}
.elementor-button-link .elementor-button:hover i {
  color: var(--e-global-color-primary);
}

.elementor-widget-n-tabs {
  --n-tabs-title-padding-right: 0;
  --n-tabs-title-padding-left: 0;
  --n-tabs-title-font-size: 1.5rem;
  --n-tabs-title-color: var(--e-global-color-lighter, var(--n-tabs-color-secondary-fallback));
  --n-tabs-title-color-hover: var(--e-global-color-secondary);
  --n-tabs-title-color-active: var(--e-global-color-secondary);
  --n-tabs-title-background-color: transparent;
  --n-tabs-title-background-color-hover: transparent;
  --n-tabs-title-background-color-active: transparent;
  --n-tabs-title-gap: 36px;
}
.elementor-widget-n-tabs .e-n-tab-title {
  position: relative;
  display: flex;
}
.elementor-widget-n-tabs .e-n-tab-title .e-n-tab-icon {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  display: none;
}
.elementor-widget-n-tabs .e-n-tab-title .e-n-tab-icon svg {
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 0;
  height: 0;
}
.elementor-widget-n-tabs .e-n-tab-title .e-n-tab-icon svg:last-child {
  position: absolute;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.tabs-style-2 {
  --n-tabs-title-padding-right: 0;
  --n-tabs-title-padding-left: 0;
  --n-tabs-title-font-size: 1.5rem;
  --n-tabs-title-color: var(--e-global-color-lighter, var(--n-tabs-color-secondary-fallback));
  --n-tabs-title-color-hover: var(--e-global-color-secondary);
  --n-tabs-title-color-active: var(--e-global-color-secondary);
  --n-tabs-title-background-color: transparent;
  --n-tabs-title-background-color-hover: transparent;
  --n-tabs-title-background-color-active: transparent;
  --n-tabs-title-border-color: var(--e-global-color-border, var(--n-tabs-color-secondary-fallback));
  --n-tabs-title-gap: 20px;
}
.tabs-style-2 .e-n-tabs-heading {
  border-radius: 0 30px;
}
.tabs-style-2 .e-n-tab-title {
  position: relative;
  padding: 11px 24px;
  display: flex;
  border: 1px solid;
  border-radius: 30px;
}
.tabs-style-2 .e-n-tab-title .e-n-tab-title-text {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.3;
  text-transform: capitalize;
}
.tabs-style-2 .e-n-tab-title .e-n-tab-icon {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  display: none;
}
.tabs-style-2 .e-n-tab-title .e-n-tab-icon svg {
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  width: 0;
  height: 0;
}
.tabs-style-2 .e-n-tab-title .e-n-tab-icon svg:last-child {
  position: absolute;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.tabs-style-2 .e-n-tab-title-text {
  font-family: var(--e-global-typography-secondary-font-family);
  font-weight: var(--e-global-typography-secondary-font-weight);
  text-transform: var(--e-global-typography-secondary-text-transform);
  font-style: var(--e-global-typography-secondary-font-style);
  text-decoration: var(--e-global-typography-secondary-text-decoration);
  line-height: var(--e-global-typography-secondary-line-height);
  letter-spacing: var(--e-global-typography-secondary-letter-spacing);
}

:is(.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-heading .e-n-tab-title,
.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-content .e-n-tab-title).e-active .e-n-tab-icon,
.e-n-tab-title[aria-selected=true] .e-n-tab-icon {
  width: 0;
  height: 0;
  position: relative;
  visibility: visible;
  opacity: 1;
}
:is(.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-heading .e-n-tab-title,
.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-content .e-n-tab-title).e-active .e-n-tab-icon svg,
.e-n-tab-title[aria-selected=true] .e-n-tab-icon svg {
  visibility: visible;
  opacity: 1;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
:is(.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-heading .e-n-tab-title,
.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-content .e-n-tab-title).e-active .e-n-tab-icon svg:last-child,
.e-n-tab-title[aria-selected=true] .e-n-tab-icon svg:last-child {
  visibility: visible;
  opacity: 1;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@media screen and (max-width: 767px) {
  :is(.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-heading .e-n-tab-title,
.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-content .e-n-tab-title) {
    background-color: #222222 !important;
    color: #ffffff;
    padding: 20px;
  }
  :is(.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-heading .e-n-tab-title,
.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-content .e-n-tab-title) .e-n-tab-icon {
    margin: 0;
  }
  :is(.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-heading .e-n-tab-title,
.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-content .e-n-tab-title) .e-n-tab-icon svg {
    display: none;
  }
}

:is(.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-heading .e-n-tab-title,
.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-content .e-n-tab-title) .e-n-tab-title-text {
  border-bottom: 2px solid transparent;
}

:is(.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-heading .e-n-tab-title,
.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-content .e-n-tab-title):after {
  content: "";
  width: 1px;
  height: 14px;
  margin-right: 18px;
  background-color: var(--e-global-color-border);
  position: absolute;
  right: -36px;
}
:is(.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-heading .e-n-tab-title,
.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-content .e-n-tab-title):last-child:after {
  display: none;
}

:is(.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-heading .e-n-tab-title,
.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-content .e-n-tab-title):hover .e-n-tab-title-text,
:is(.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-heading .e-n-tab-title,
.elementor .elementor-element.elementor-widget-n-tabs > .elementor-widget-container > .e-n-tabs > .e-n-tabs-content .e-n-tab-title)[aria-selected=true] .e-n-tab-title-text {
  border-bottom: 2px solid var(--e-global-color-primary);
}

.owcpv_item_form .owcpv_inner_form {
  margin-bottom: 30px;
  padding: 30px;
  border: 1px solid var(--e-global-color-border);
  border-radius: 0px;
}

.owcpv_item_form .owcpv_inner_form {
  margin-bottom: 30px;
  padding: 30px;
  border: 1px solid var(--e-global-color-border);
  border-radius: 0px;
}
.owcpv_item_form .field-label {
  color: var(--e-global-color-secondary) !important;
  font-weight: var(--e-global-typography-text-font-weight) !important;
}

.owcpv_wrapper .formbuilder-radio-group .ui-selector-resuilt {
  border-radius: 30px !important;
  padding: 11px 20px !important;
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
  justify-content: space-between;
}
.owcpv_wrapper .formbuilder-radio-group .ui-selector-resuilt:after {
  font-family: "corino-icon";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  vertical-align: middle;
  content: "";
}

.form-control:not(textarea, input[type=radio], input[type=checkbox], input[type=color]) {
  padding: 11px 20px !important;
  border-radius: 30px !important;
  font-family: var(--e-global-typography-text-font-family);
  font-weight: var(--e-global-typography-text-font-weight);
  text-transform: var(--e-global-typography-text-text-transform);
  font-style: var(--e-global-typography-text-font-style);
  text-decoration: var(--e-global-typography-text-text-decoration);
  line-height: var(--e-global-typography-text-line-height);
  letter-spacing: var(--e-global-typography-text-letter-spacing);
  font-size: 16px;
  font-size: 1rem;
}

.owcpv_price_summary {
  border: 1px solid var(--e-global-color-border) !important;
  margin-bottom: 30px !important;
  padding: 30px !important;
  border-radius: 0px;
}

.e-con {
  --container-default-padding-right: 0;
  --container-default-padding-left: 0;
}

.elementor_library-template-default .entry-header,
.elementor_library-template-default #post-navigation,
.elementor_library-template-default .entry-taxonomy {
  display: none;
}

.header-absolute {
  position: absolute !important;
  width: 100%;
  z-index: 99;
  background-color: transparent !important;
}

:root {
  --scroll-bar: 8px;
}

body:not(.has-scrollbar) .elementor-section.elementor-section-stretched {
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  margin-right: calc(-50vw + 50%) !important;
  left: 0 !important;
}

body.has-scrollbar .elementor-section.elementor-section-stretched {
  width: calc(100vw - 20px) !important;
  margin-left: calc(-50vw + 50% + 10px) !important;
  margin-right: calc(-50vw + 50% + 10px);
  left: 0 !important;
}

@supports (color: var(--scroll-bar)) {
  body.has-scrollbar .elementor-section.elementor-section-stretched {
    width: calc(100vw - var(--scroll-bar)) !important;
    margin-left: calc(-50vw + 50% + (var(--scroll-bar) / 2)) !important;
    margin-right: calc(-50vw + 50% + (var(--scroll-bar) / 2)) !important;
    left: 0 !important;
  }
}
.elementor-social-icons-wrapper .elementor-social-icon {
  display: flex;
}
.elementor-social-icons-wrapper .elementor-social-icon:hover {
  opacity: 1;
}

.enable-effects-yes .elementor-social-icons-wrapper .elementor-social-icon {
  display: flex;
}

.c-primary {
  color: var(--e-global-color-primary);
}

.elementor-widget-tabs .elementor-tab-title a {
  display: flex;
  align-items: center;
}

.underline-primary {
  position: relative;
}
.underline-primary:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  bottom: 10px;
  left: 0;
  background-color: #FFD8D2;
  z-index: -1;
}

.sublink .elementor-column:hover img {
  opacity: 0.8;
  border-color: var(--e-global-color-primary) !important;
}
.sublink .elementor-column img {
  transition: all 0.3s ease;
}

.btn-slider {
  display: inline-flex;
  align-items: center;
}
.btn-slider i {
  margin-bottom: 2px;
}
.btn-slider i.left {
  font-size: 10px;
  font-size: 0.625rem;
  margin-right: 7px;
  width: 12px;
  transition: all 0.15s ease;
}
.btn-slider i.right {
  font-size: 10px;
  font-size: 0.625rem;
  margin-left: 0;
  order: 15;
  width: 0;
  opacity: 0;
  transition: all 0.15s ease;
}
.btn-slider:hover i.left {
  width: 0;
  opacity: 0;
  margin-right: 0;
}
.btn-slider:hover i.right {
  width: 12px;
  opacity: 1;
  margin-left: 7px;
}

.icon-shape-yes .elementor-icon {
  position: relative;
}
.icon-shape-yes .elementor-icon i, .icon-shape-yes .elementor-icon svg {
  z-index: 1;
}
.icon-shape-yes .elementor-icon i:after, .icon-shape-yes .elementor-icon svg:after {
  content: "";
  position: absolute;
  top: 0;
  right: -5px;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  z-index: -1;
  background-color: var(--e-global-color-primary);
  transition: all 0.15s ease;
}
.icon-shape-yes:hover .elementor-icon i:after,
.icon-shape-yes:hover .elementor-icon svg:after {
  background-color: var(--e-global-color-secondary);
  transition: all 0.15s ease;
}

.elementor-widget-progress .progress-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}

.progress-title .elementor-progress-percentage {
  padding-right: 0px;
}

.custom_shape_divider-yes > .e-con-inner > .elementor-shape,
.custom_shape_divider-yes > .elementor-shape {
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  height: 62px;
  width: unset;
  background-size: 1440px 62px;
  animation: wave 10s linear infinite;
  background-position: 0 0;
  background-repeat: repeat-x;
}
.custom_shape_divider-yes > .e-con-inner > .elementor-shape svg,
.custom_shape_divider-yes > .elementor-shape svg {
  display: none;
  visibility: hidden;
  opacity: 0;
}
.custom_shape_divider-yes > .e-con-inner > .elementor-shape[data-negative=false].elementor-shape-bottom,
.custom_shape_divider-yes > .elementor-shape[data-negative=false].elementor-shape-bottom {
  transform: unset;
}
.custom_shape_divider-yes > .e-con-inner > .elementor-shape-top,
.custom_shape_divider-yes > .elementor-shape-top {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNDQwIiBoZWlnaHQ9IjYyIiB2aWV3Qm94PSIwIDAgMTQ0MCA2MiIgZmlsbD0ibm9uZSI+PGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzc0N18xNDE1OSkiPjxwYXRoIGQ9Ik0xNDM5Ljk2IDIyLjE3MUMxMTQxLjg5IDIyLjE3MSA5OTkuNzkxIDYyIDcyMS4wMiA2MS45OTk5QzQ0Mi4yNDkgNjEuOTk5OSAyOTcuMjQyIDIyLjEzOCAzLjQ4NDg0ZS0wNiAyMi4xMzhMNS40MjAyMWUtMDYgLTAuMDAwMTI5NzAzTDE0NDAgLTMuODE0N2UtMDZMMTQzOS45NiAyMi4xNzFaIiBmaWxsPSIjZmZmZmZmIi8+PC9nPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDBfNzQ3XzE0MTU5Ij48cmVjdCB3aWR0aD0iMTQ0MCIgaGVpZ2h0PSI2MiIgZmlsbD0iI2ZmZmZmZiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTQ0MCA2Mikgcm90YXRlWigtMTgwKSByb3RhdGVZKC0xODApIi8+PC9jbGlwUGF0aD48L2RlZnM+PC9zdmc+");
}
.custom_shape_divider-yes > .e-con-inner > .elementor-shape-bottom,
.custom_shape_divider-yes > .elementor-shape-bottom {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNDQwIiBoZWlnaHQ9IjYyIiB2aWV3Qm94PSIwIDAgMTQ0MCA2MiIgZmlsbD0ibm9uZSI+PGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzc0N18xNDE0MykiPjxwYXRoIGQ9Ik0wLjA0MzQ1MTIgMzkuODI5QzI5OC4xMSAzOS44MjkgNDQwLjIwOSAwIDcxOC45OCAwQzk5Ny43NTEgMCAxMTQyLjc2IDM5Ljg2MTkgMTQ0MCAzOS44NjE5VjYySDBMMC4wNDM0NTEyIDM5LjgyOVoiIGZpbGw9IiNmZmZmZmYiLz48L2c+PGRlZnM+PGNsaXBQYXRoIGlkPSJjbGlwMF83NDdfMTQxNDMiPjxyZWN0IHdpZHRoPSIxNDQwIiBoZWlnaHQ9IjYyIiBmaWxsPSIjZmZmZmZmIi8+PC9jbGlwUGF0aD48L2RlZnM+PC9zdmc+");
}

/*# sourceMappingURL=elementor.css.map */
