﻿@charset "UTF-8";

@font-face {
  font-family: 'Helvetica Neue Bold';
  src: url('../fonts/HelveticaNeueBold.eot');
  src: url('../fonts/HelveticaNeueBold.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HelveticaNeueBold.woff2') format('woff2'),
    url('../fonts/HelveticaNeueBold.woff') format('woff'),
    url('../fonts/HelveticaNeueBold.ttf') format('truetype'),
    url('../fonts/HelveticaNeueBold.svg#Helvetica Neue') format('svg');
}

@font-face {
  font-family: 'Helvetica Neue Medium';
  src: url('../fonts/HelveticaNeueMedium.eot');
  src: url('../fonts/HelveticaNeueMedium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HelveticaNeueMedium.woff2') format('woff2'),
    url('../fonts/HelveticaNeueMedium.woff') format('woff'),
    url('../fonts/HelveticaNeueMedium.ttf') format('truetype'),
    url('../fonts/HelveticaNeueMedium.svg#Helvetica Neue') format('svg');
}

@font-face {
  font-family: 'Helvetica Neue Light';
  src: url('../fonts/HelveticaNeueLight.eot');
  src: url('../fonts/HelveticaNeueLight.eot?#iefix') format('embedded-opentype'),
    url('../fonts/HelveticaNeueLight.woff2') format('woff2'),
    url('../fonts/HelveticaNeueLight.woff') format('woff'),
    url('../fonts/HelveticaNeueLight.ttf') format('truetype'),
    url('../fonts/HelveticaNeueLight.svg#Helvetica Neue') format('svg');
}

:root,
:root .v-light,
:root .v-light-head {
  --bg-color: #f9f9f9;
  --assistant-color: #efefef;
  --theme-color: #e4dcd3;
  --theme-color-font: #fff;
  --font-color: #0009;
  --heading-color: #000;
  --border-color: #2828281a;
  --smooth-color: #141414;
  --reverse-color: #141414;
  --reverse-heading-color: #fff;
  --bg-btn: #f6fafd;
  --divider-color: var(--border-color);
}

:root .v-dark,
:root .v-dark-head {
  --bg-color: #131313;
  --assistant-color: #191919;
  --theme-color: #e4e4dd;
  --font-color: #ddd;
  --heading-color: #fff;
  --border-color: #ffffff1a;
  --smooth-color: #f9f9f9;
  --reverse-color: #f9f9f9;
  --reverse-heading-color: #000;
  --bg-btn: #0a0909;
}

:root .v-dark .background-theme,
:root .v-dark.background-theme,
:root .v-dark-head .background-theme,
:root .v-dark-head.background-theme {
  --font-color: #0009;
  --heading-color: #000;
}

a:hover {
  color: #DB5A3A;
}

@media only screen and (max-width: 991px) {
  .v-dark-head-mobile {
    --bg-color: #131313;
    --assistant-color: #191919;
    --theme-color: #e4e4dd;
    --font-color: #ddd;
    --heading-color: #fff;
    --border-color: #ffffff1a;
    --smooth-color: #f9f9f9;
    --reverse-color: #f9f9f9;
    --reverse-heading-color: #000;
    --bg-btn: #0a0909;
  }

  .v-dark-head-mobile .background-theme,
  .v-dark-head-mobile.background-theme {
    --font-color: #0009;
    --heading-color: #000;
  }
}

:root {
  --body-font: 'Helvetica Neue Light';
  --heading-font: 'Helvetica Neue Bold';
  --font-code: ;
  --font-pre: ;
  --font-size-base: 15px;
  --font-size-h1: 40px;
  --font-size-h2: 35px;
  --font-size-h3: 30px;
  --font-size-h4: 25px;
  --font-size-h5: 22px;
  --font-size-h6: 16px;
  --menu-size: 12px;
  --line-height-base: 1.3;
  --line-height-content: 1.6;
  --font-weight-heading: 500;
  --font-weight-body: 500;
  --smooth-width: 4px;
  --bg-overlay: #000;
  --overlay-blend-mode: unset;
}

:root .ruy-icon-theme-color {
  --theme-color: #f7e0c7;
}

@media only screen and (min-width: 1400px) {
  :root {
    --ruy-gap-container: 100px;
    --title-heading: 95px;
  }

  :root .container,
  :root .ruy-left-container,
  :root .ruy-right-container {
    --ruy-gap-container: 50px;
  }
}

@media only screen and (max-width: 1399px) {
  :root {
    --ruy-gap-container: 50px;
    --title-heading: 85px;
  }
}

@media only screen and (max-width: 1200px) {
  :root {
    --title-heading: 75px;
  }
}

@media only screen and (min-width: 992px) {
  :root {
    --margin-padding: 120px;
    --box-padding: 80px 40px;
  }
}

@media only screen and (max-width: 991px) {
  :root {
    --margin-padding: 80px;
    --box-padding: 60px var(--ruy-gap-container);
    --title-heading: 65px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  :root {
    --ruy-gap-container: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  :root {
    --ruy-gap-container: 25px;
    --title-heading: 47px;
  }
}

@media only screen and (max-width: 575px) {
  :root {
    --ruy-gap-container: 15px;
    --title-heading: 47px;
  }
}

/* -------------------------------------------------------
                   Core
-------------------------------------------------------- */
html {
  font-size: var(--font-size-base);
  scroll-behavior: initial;
}

body {
  background-color: var(--bg-color);
  color: var(--font-color);
  line-height: var(--line-height-base);
  font-family: var(--body-font);
  font-weight: var(--font-weight-body);
  margin: 0;
  text-rendering: optimizeLegibility;
  transition: 100ms;
  transition-property: background-color, color;
  width: 100%;
  min-height: 100%;
}

[data-toggle=modal],
[data-bs-toggle=modal] {
  cursor: pointer;
}

#ruy_cursor,
#ruy_cursor_inner {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

body:not(.ruy-cursor-effect) #ruy_cursor,
body:not(.ruy-cursor-effect) #ruy_cursor_inner {
  display: none;
}

@media only screen and (max-width: 991px) {

  #ruy_cursor,
  #ruy_cursor_inner {
    display: none;
  }
}

#ruy_cursor {
  width: 30px;
  height: 30px;
  border: 2px solid var(--theme-color);
}

#ruy_cursor path {
  display: none;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  stroke-width: 1;
}

#ruy_cursor_inner {
  width: 7px;
  height: 7px;
  background-color: var(--theme-color);
}

.unique-demos .box-content {
  opacity: 0.015;
}

.unique-demos .box-content .title {
  font-size: 8vw;
}

#ruy_preloader {
  position: fixed;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  z-index: 98;
  flex-direction: column;
  overflow: hidden;
  left: 0;
}

#ruy_preloader .bg-load {
  z-index: -1;
}

@media only screen and (min-width: 992px) {
  #ruy_preloader {
    --width-loading-circle: 25vw;
  }
}

@media only screen and (max-width: 991px) {
  #ruy_preloader {
    --width-loading-circle: 50vw;
  }
}

#ruy_preloader svg.v-middle,
#ruy_preloader .loading-circle {
  width: var(--width-loading-circle);
  height: var(--width-loading-circle);
}

#ruy_preloader svg.v-middle path {
  display: block;
  stroke-dasharray: 310px;
  stroke-dashoffset: 310px;
  stroke: url(#linearColors);
  animation: spin 1s infinite linear;
  transform-origin: center;
  width: 100%;
  height: 100%;
  stroke-width: 1.4;
  -webkit-animation: spin 1s infinite linear;
}

#ruy_preloader .loading-circle {
  font-size: 7vw;
  border-radius: 50%;
  border: 1px solid #000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

#ruy_preloader .loading-text {
  position: absolute;
  font-size: 22px;
  color: var(--heading-color);
  left: var(--ruy-gap-container);
  bottom: 50px;
}

.ruyload {
  top: 22px;
  left: var(--ruy-gap-container);
}

.ruyload .ruyload__img {
  display: block;
  transform-origin: bottom left;
  animation: moveIn 2s 0s cubic-bezier(0.36, 0, 0.06, 1) alternate infinite;
  -webkit-animation: moveIn 2s 0s cubic-bezier(0.36, 0, 0.06, 1) alternate infinite;
}

.ruyload .ruyload__img img {
  width: 96px;
}

.ruyload .ruyload__row:nth-child(1) {
  -webkit-clip-path: polygon(-10% 75%, 110% 75%, 110% 110%, -10% 110%);
  clip-path: polygon(-10% 75%, 110% 75%, 110% 110%, -10% 110%);
}

.ruyload .ruyload__row:nth-child(1) .ruyload__img {
  transform: translateY(-0.1em);
  -webkit-transform: translateY(-0.1em);
  -moz-transform: translateY(-0.1em);
  -ms-transform: translateY(-0.1em);
  -o-transform: translateY(-0.1em);
}

.ruyload .ruyload__row:nth-child(2) {
  -webkit-clip-path: polygon(-10% 50%, 110% 50%, 110% 75.3%, -10% 75.3%);
  clip-path: polygon(-10% 50%, 110% 50%, 110% 75.3%, -10% 75.3%);
}

.ruyload .ruyload__row:nth-child(2) .ruyload__img {
  transform: translateY(-0.3em) scaleY(1.1);
  -webkit-transform: translateY(-0.3em) scaleY(1.1);
  -moz-transform: translateY(-0.3em) scaleY(1.1);
  -ms-transform: translateY(-0.3em) scaleY(1.1);
  -o-transform: translateY(-0.3em) scaleY(1.1);
}

.ruyload .ruyload__row:nth-child(3) {
  -webkit-clip-path: polygon(-10% 25%, 110% 25%, 110% 50.3%, -10% 50.3%);
  clip-path: polygon(-10% 25%, 110% 25%, 110% 50.3%, -10% 50.3%);
}

.ruyload .ruyload__row:nth-child(3) .ruyload__img {
  transform: translateY(-0.5em) scaleY(1.2);
  -webkit-transform: translateY(-0.5em) scaleY(1.2);
  -moz-transform: translateY(-0.5em) scaleY(1.2);
  -ms-transform: translateY(-0.5em) scaleY(1.2);
  -o-transform: translateY(-0.5em) scaleY(1.2);
}

.ruyload .ruyload__row:nth-child(4) {
  -webkit-clip-path: polygon(-10% 0%, 110% 0%, 110% 25.3%, -10% 25.3%);
  clip-path: polygon(-10% 0%, 110% 0%, 110% 25.3%, -10% 25.3%);
}

.ruyload .ruyload__row:nth-child(4) .ruyload__img {
  transform: translateY(-0.7em) scaleY(1.3);
  -webkit-transform: translateY(-0.7em) scaleY(1.3);
  -moz-transform: translateY(-0.7em) scaleY(1.3);
  -ms-transform: translateY(-0.7em) scaleY(1.3);
  -o-transform: translateY(-0.7em) scaleY(1.3);
}

.ruyload .ruyload__row.ruyload__row--sibling {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-user-select: none;
  user-select: none;
}

@keyframes moveIn {

  50%,
  100% {
    transform: translateY(0em);
    -webkit-transform: translateY(0em);
    -moz-transform: translateY(0em);
    -ms-transform: translateY(0em);
    -o-transform: translateY(0em);
  }

  0% {
    opacity: 0;
    filter: blur(5px);
    -webkit-filter: blur(5px);
  }

  100% {
    opacity: 1;
    filter: blur(0px);
    -webkit-filter: blur(0px);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}

.day-night {
  position: fixed;
  z-index: 100;
  top: 20px;
  left: 25px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  text-align: center;
}

.day-night svg {
  width: 30px;
  height: 30px;
}

.day-night .title-mode {
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  margin-top: 10px;
  letter-spacing: 7px;
  background-color: var(--assistant-color);
  width: 40px;
  margin-left: -5px;
  padding-bottom: 10px;
  border-radius: 0 0 15px 15px;
  line-height: 38px;
  -webkit-border-radius: 0 0 15px 15px;
  -moz-border-radius: 0 0 15px 15px;
  -ms-border-radius: 0 0 15px 15px;
  -o-border-radius: 0 0 15px 15px;
}

.day-night .title-mode:before {
  content: "";
  position: absolute;
  left: -5px;
  top: -10px;
  height: 50px;
  width: 40px;
  background-color: inherit;
  z-index: -1;
  border-radius: 15px 15px 0 0;
  -webkit-border-radius: 15px 15px 0 0;
  -moz-border-radius: 15px 15px 0 0;
  -ms-border-radius: 15px 15px 0 0;
  -o-border-radius: 15px 15px 0 0;
}

@media only screen and (max-width: 991px) {
  .day-night {
    top: 30px;
    left: 200px;
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .day-night {
    top: 50px;
    left: 150px;
    display: none;
  }
}

.day-night .night,
.day-night .moon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: opacity 0.2s;
  border-radius: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  -moz-transition: opacity 0.2s;
  -ms-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

.day-night .night svg,
.day-night .moon svg {
  width: 100%;
  height: 100%;
}

.day-night .night {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: #fff;
  opacity: 1;
}

.day-night .night svg {
  fill: #000;
  width: 100%;
  height: 100%;
}

.day-night .moon {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: #000;
  opacity: 0;
}

.day-night .moon svg {
  transform: rotate(270deg);
  fill: #f0f0f0;
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
}

.v-light .day-night .night {
  opacity: 0;
}

.v-light .day-night .moon {
  opacity: 1;
}

#main_root:before,
#main_root:after {
  clear: both;
  min-height: 1px;
  display: block;
}

#page_wrapper {
  position: relative;
  z-index: 1;
}

.elementor-widget-ruy_bg_mask.elementor-element.elementor-absolute,
.elementor-widget-ruy_bg_mask.elementor-element.elementor-fixed {
  z-index: 0;
}

.bg-load {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99;

}

.bg-load svg {
  fill: var(--ruy-color-icon, var(--theme-color));
  pointer-events: none;
  width: 100%;
  height: 150px;
}

.bg-load svg.ruy-separator-bottom {
  transform: translateY(148px);
  -webkit-transform: translateY(148px);
  -moz-transform: translateY(148px);
  -ms-transform: translateY(148px);
  -o-transform: translateY(148px);
}

.bg-load svg.ruy-separator-top {
  transform: translateY(-148px) rotate(180deg);
  -webkit-transform: translateY(-148px) rotate(180deg);
  -moz-transform: translateY(-148px) rotate(180deg);
  -ms-transform: translateY(-148px) rotate(180deg);
  -o-transform: translateY(-148px) rotate(180deg);
}

.ruy-heading-title.p-10 {
  padding-top: 5px;
  padding-bottom: 5px;
  letter-spacing: 2px;
}

#line_head {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.2;
}

#line_head>.container {
  position: relative;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

#line_head>.container:before {
  content: "";
  display: block;
  position: relative;
  width: 1px;
  background-color: var(--border-color);
  height: 100%;
  margin: 0 auto;
}

.ruy-separator:not(.ruy-duration) {
  display: none;
}

.footer-animate.svg-animate .ruy-separator {
  top: 0;
  fill: var(--ruy-color-icon, var(--theme-color));
  position: absolute;
  display: block;
  pointer-events: none;
  width: 100%;
  height: 100px;
  z-index: 10;
  left: 0;
  background-color: transparent;
}

@media only screen and (max-width: 991px) {
  .footer-animate.svg-animate .ruy-separator {
    height: 100px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-animate.svg-animate .ruy-separator {
    height: 80px;
  }
}

@media only screen and (max-width: 400px) {
  .footer-animate.svg-animate .ruy-separator {
    height: 50px;
  }
}

.ruy-separator-up {
  top: -1px;
}

.aspect-ratio-1 .box-image-link {
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.clip-path-circle .swiper-slide {
  -webkit-clip-path: circle(44% at 50% 50%);
  clip-path: circle(44% at 50% 50%);
}

.background-overlay {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  position: absolute;
  pointer-events: none;
}

.bg-1 {
  background-image: url("../img/bg-1.png");
  background-position: bottom left;
  background-repeat: no-repeat;
  opacity: 0.3;
}

.experience .exp-number span {
  background-image: url("../img/bg-2.svg");
  color: transparent;
  -webkit-text-stroke: 1.5px var(--heading-color);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  transform: unset;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 60px;
  font-weight: 600;
  line-height: 70px;
  -webkit-transform: unset;
  -moz-transform: unset;
  -ms-transform: unset;
  -o-transform: unset;
}

.bg-dots:not(.ruy-btn, .service-item, .service-item-inner),
.bg-dots .background-section:not(.ruy-btn, .service-item, .service-item-inner),
.bg-dots .background-main:not(.ruy-btn, .service-item, .service-item-inner),
.bg-dots .background-theme:not(.ruy-btn, .service-item, .service-item-inner) {
  background-image: url("../img/bg-dot.png");
}

.bg-dots.v-light:not(.ruy-btn, .service-item, .service-item-inner),
.bg-dots.v-light .background-section:not(.ruy-btn, .service-item, .service-item-inner),
.bg-dots.v-light .background-main:not(.ruy-btn, .service-item, .service-item-inner),
.bg-dots.v-light .background-theme:not(.ruy-btn, .service-item, .service-item-inner),
.v-light .bg-dots:not(.ruy-btn, .service-item, .service-item-inner),
.v-light .bg-dots .background-section:not(.ruy-btn, .service-item, .service-item-inner),
.v-light .bg-dots .background-main:not(.ruy-btn, .service-item, .service-item-inner),
.v-light .bg-dots .background-theme:not(.ruy-btn, .service-item, .service-item-inner) {
  background-image: url("../img/bg-dot-light.png");
}

.bg-pattern {
  background-image: url("../img/bg-2.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
}

.statshomenew .experience .exp-number span {
  font-size: 36px;
  font-weight: 600;
  line-height: 60px;
}

.statshomenew.statshome .title-block {
  font-size: 14px;
  text-align: center;
}

.statshomenew.statshome .experience {
  font-size: 36px;
}

.statshomenew .pattern01 p {
  color: #000;
  font-size: 17px;
  line-height: 27px;
  margin-bottom: 15px;
}

.statshomenew .left-box-image .section-video .ruy-btn .ruy-icon i,
.statshomenew .left-box-image .section-video .ruy-btn .ruy-icon .fas,
.statshomenew .left-box-image .section-video .ruy-btn .ruy-icon em {
  color: #db5a3a !important;
}

.pt-header {
  padding-top: 160px;
}

.ruy-align-center {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.ruy-align-center>* {
  width: 100%;
}

@media only screen and (max-width: 991px) {

  .left-box-image.mb-section,
  .box-info.mt-section {
    --margin-padding: 0;
  }

  .box-info.p-80 {
    padding: var(--box-padding);
  }
}

@media only screen and (max-width: 767px) {

  .ruy-def-btn.justify-self-end,
  .ruy-normal-btn.justify-self-end {
    justify-self: inherit;
  }
}

input::placeholder,
textarea::placeholder,
.form-control::placeholder,
.form-box input::placeholder,
.form-box textarea::placeholder {
  color: var(--font-color);
}

input[type=search]::-webkit-search-decoration {
  display: none;
}

fieldset {
  padding: 30px;
}

fieldset form>* {
  margin-bottom: 30px;
}

fieldset form:last-child {
  margin-bottom: 0;
}

fieldset form p {
  margin-top: 0;
}

fieldset form textarea,
fieldset form input {
  margin-bottom: 0;
  padding: 10px;
}

.ruy-no-results .ruy-search .search-form input {
  min-width: 460px;
}

.entry-form label {
  font-weight: 600;
  font-family: var(--heading-font);
  padding-bottom: 10px;
  display: block;
}

.entry-form input,
.entry-form textarea {
  font-family: var(--heading-font);
  font-size: 14px;
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--border-color);
  color: var(--heading-color);
  padding: 10px;
  letter-spacing: 2px;
  background-color: var(--assistant-color);
}

.entry-form input::placeholder,
.entry-form textarea::placeholder {
  color: var(--heading-color);
  font-size: 14px;
  letter-spacing: 2px;
}

.entry-form textarea {
  min-height: 80px;
}

.ruy-def-btn>*,
.ruy-def-btn>* .ruy-btn,
.ruy-normal-btn>*,
.ruy-normal-btn>* .ruy-btn {
  display: flex;
  align-items: center;
}

.ruy-normal-btn>* .ruy-btn {
  justify-content: center;
}

.ruy-btn {
  position: relative;
  text-align: center;
}

.ruy-btn .title-btn,
.ruy-btn .ruy-icon {
  z-index: 2;
}

.ruy-btn .icon-circle {
  z-index: 1 !important;
}

.ruy-btn .btn-icon-left {
  margin-right: 10px;
}

.ruy-btn .btn-icon-right {
  margin-left: 10px;
}

.ruy-btn .title-btn {
  position: relative;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.5px;
  font-weight: 500;
  color: #000 !important;
  text-transform: uppercase;
  margin-left: 10px;
  font-family: 'Helvetica Neue Medium';
}

.ruy-def-btn {
  --ruy-icon-size: 15px;
}

.ruy-def-btn .ruy-btn,
.ruy-def-btn .ruy-icon:before,
.ruy-def-btn .ruy-icon i,
.ruy-def-btn .ruy-icon svg {
  transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  transition-property: width, padding, margin;
  -webkit-transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  -moz-transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  -ms-transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  -o-transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.ruy-def-btn .icon-circle {
  display: none;
}

.ruy-def-btn .ruy-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  z-index: 0;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.ruy-def-btn .ruy-icon>* {
  position: relative;
  z-index: 1;
}

.ruy-def-btn .ruy-icon:before {
  content: "";
  position: absolute;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  -ms-border-radius: inherit;
  -o-border-radius: inherit;
}

.ruy-def-btn .ruy-icon.btn-icon-left:before {
  left: 0;
  background-color: #DB5A3A !important;
}

.ruy-def-btn .ruy-icon.btn-icon-right:before {
  right: 0;
}

.ruy-def-btn:not(.ruy-hover-icon) .ruy-btn:hover.has-icon-left {
  padding-right: 50px;
}

.ruy-def-btn:not(.ruy-hover-icon) .ruy-btn:hover.has-icon-left .ruy-icon i,
.ruy-def-btn:not(.ruy-hover-icon) .ruy-btn:hover.has-icon-left .ruy-icon svg {
  margin-left: calc(50px / 2);
}

.ruy-def-btn:not(.ruy-hover-icon) .ruy-btn:hover.has-icon-right {
  padding-left: calc(50px / 2);
}

.ruy-def-btn:not(.ruy-hover-icon) .ruy-btn:hover.has-icon-right .ruy-icon i,
.ruy-def-btn:not(.ruy-hover-icon) .ruy-btn:hover.has-icon-right .ruy-icon svg {
  margin-right: calc(50px / 2);
}

.ruy-def-btn:not(.ruy-hover-icon) .ruy-btn:hover .ruy-icon:before {
  width: 100%;
}

.ruy-def-btn:not(.ruy-hover-icon) .ruy-btn:hover .title-btn {
  color: #FFF !important;
  animation-delay: 1ms !important;
}

.ruy-def-btn.ruy-hover-icon .ruy-btn .title-btn {
  position: relative;
  padding-bottom: 5px;
}

.ruy-def-btn.ruy-hover-icon .ruy-btn .title-btn:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--border-color);
  transform-origin: right;
}

.ruy-def-btn.ruy-hover-icon .ruy-btn .ruy-icon {
  position: absolute;
  margin-bottom: 5px;
}

.ruy-def-btn.ruy-hover-icon .ruy-btn .ruy-icon.btn-icon-left,
.ruy-def-btn.ruy-hover-icon .ruy-btn .ruy-icon.btn-icon-left:after {
  left: 0;
}

.ruy-def-btn.ruy-hover-icon .ruy-btn .ruy-icon.btn-icon-right,
.ruy-def-btn.ruy-hover-icon .ruy-btn .ruy-icon.btn-icon-right:after {
  right: 0;
}

.ruy-def-btn.ruy-hover-icon .ruy-btn .ruy-icon:after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  line-height: 7px;
  border-radius: 50px;
  border: 1px solid var(--heading-color);
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.ruy-def-btn.ruy-hover-icon .ruy-btn .ruy-icon:before {
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}

.ruy-def-btn.ruy-hover-icon .ruy-btn .ruy-icon i,
.ruy-def-btn.ruy-hover-icon .ruy-btn .ruy-icon em,
.ruy-def-btn.ruy-hover-icon .ruy-btn .ruy-icon svg {
  opacity: 0;
}

.ruy-def-btn.ruy-hover-icon .ruy-btn .ruy-icon,
.ruy-def-btn.ruy-hover-icon .ruy-btn .ruy-icon:before,
.ruy-def-btn.ruy-hover-icon .ruy-btn .ruy-icon:after,
.ruy-def-btn.ruy-hover-icon .ruy-btn i,
.ruy-def-btn.ruy-hover-icon .ruy-btn em,
.ruy-def-btn.ruy-hover-icon .ruy-btn svg,
.ruy-def-btn.ruy-hover-icon .ruy-btn .title-btn,
.ruy-def-btn.ruy-hover-icon .ruy-btn .title-btn:after {
  transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  -webkit-transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  -moz-transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  -ms-transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  -o-transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}

.ruy-def-btn.ruy-hover-icon .ruy-btn.has-icon-left .title-btn {
  margin-left: 15px;
}

.ruy-def-btn.ruy-hover-icon .ruy-btn.has-icon-right .title-btn {
  margin-right: 15px;
}

.ruy-def-btn.ruy-hover-icon .ruy-btn:hover.has-icon-left .title-btn {
  margin-left: calc(50px + 10px);
}

.ruy-def-btn.ruy-hover-icon .ruy-btn:hover.has-icon-right .title-btn {
  margin-right: calc(50px + 10px);
}

.ruy-def-btn.ruy-hover-icon .ruy-btn:hover .ruy-icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50px;
  z-index: 0;
  border: 0;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.ruy-def-btn.ruy-hover-icon .ruy-btn:hover .ruy-icon.btn-icon-left:after {
  left: 25px;
}

.ruy-def-btn.ruy-hover-icon .ruy-btn:hover .ruy-icon.btn-icon-right:after {
  right: 25px;
}

.ruy-def-btn.ruy-hover-icon .ruy-btn:hover .ruy-icon:before,
.ruy-def-btn.ruy-hover-icon .ruy-btn:hover .ruy-icon i,
.ruy-def-btn.ruy-hover-icon .ruy-btn:hover .ruy-icon em,
.ruy-def-btn.ruy-hover-icon .ruy-btn:hover .ruy-icon svg {
  transform: none;
  opacity: 1;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
}

.ruy-def-btn.ruy-hover-icon .ruy-btn:hover .title-btn:after {
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}

.ruy-normal-btn .ruy-btn:not(.border-rdu) {
  padding: 12px 18px;
}

.ruy-normal-btn .ruy-btn.border-rdu {
  border-radius: 48px;
  padding: 20px 30px;
}

/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  outline: 0;
  outline-style: none;
}

a:hover,
a:active {
  outline: 0;
  text-decoration: none;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.site-header {
  position: relative;
  top: 0;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  transition-property: background-color, padding-top, padding-bottom, transform;
  transition-duration: 0.5s;
  z-index: 97;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
}

.site-header>.p-relative.ruy-container {
  padding: 0;
  display: flex;
  align-items: center;
}

.site-header .ruy-svg-transition {
  fill: var(--assistant-color);
}

.site-header .bg-load:not(.ruy-svg-transition) {
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}

.site-header .bg-load {
  position: fixed;
  pointer-events: none;
}

.admin-bar .site-header {
  top: 46px;
}

@media screen and (min-width: 783px) {
  .admin-bar .site-header {
    top: 32px;
  }
}

.site-header .main-logo {
  position: relative;
  z-index: 1;
}

.site-header ul.primary-nav {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.site-header ul.primary-nav ul {
  position: absolute;
}

@media only screen and (min-width: 992px) {
  .site-header:not(.ruy-hamburger) .main-navigation {
    display: flex;
    flex-basis: auto;
  }

  .site-header:not(.ruy-hamburger) ul.primary-nav li {
    font-family: var(--body-font);
    font-weight: bold;
  }

  .site-header:not(.ruy-hamburger) ul.primary-nav>li {
    font-size: 14px;
    padding-bottom: 10px;
    padding-top: 10px;
  }

  .site-header:not(.ruy-hamburger) ul.primary-nav>li li.has-sub-menu:after {
    content: "";
    position: absolute;
    border: solid var(--theme-color);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transform: translateY(-50%) rotate(45deg);
    margin: 0 0 2px 1px;
    right: 15px;
    top: calc(50% - 3px);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
  }

  .site-header:not(.ruy-hamburger) ul.primary-nav>li:not(:first-of-type) {
    margin-left: 30px;
  }

  .site-header:not(.ruy-hamburger) ul.primary-nav>li:last-of-type ul {
    margin-left: -95px;
  }

  .site-header:not(.ruy-hamburger) ul.primary-nav>li ul {
    min-width: 200px;
    padding: 10px 0;
    margin-top: 10px;
    margin-left: -20px;
    background-color: var(--assistant-color);
    transition-property: transform, opacity, visibility;
    transition-duration: 0.8s;
    border-radius: 7px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(35px);
    transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    -ms-border-radius: 7px;
    -o-border-radius: 7px;
    -webkit-transform: translateY(35px);
    -moz-transform: translateY(35px);
    -ms-transform: translateY(35px);
    -o-transform: translateY(35px);
  }

  .site-header:not(.ruy-hamburger) ul.primary-nav>li ul li {
    position: relative;
    width: 100%;
    padding: 7px 20px;
    font-size: 13px;
    font-weight: 500;
  }

  .site-header:not(.ruy-hamburger) ul.primary-nav>li ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 0;
    width: 1.5px;
    transition: 0.5s;
    background-color: var(--heading-color);
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
  }

  .site-header:not(.ruy-hamburger) ul.primary-nav>li ul li:hover:before {
    height: 100%;
  }

  .site-header:not(.ruy-hamburger) ul.primary-nav>li ul ul {
    right: 100%;
    top: -15px;
  }

  .site-header:not(.ruy-hamburger) ul.primary-nav li.has-sub-menu:hover>ul,
  .site-header:not(.ruy-hamburger) ul.primary-nav li.has-sub-menu:focus>ul {
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .site-header:not(.ruy-hamburger) .navbar-toggle,
  .site-header:not(.ruy-hamburger) .bg-load {
    display: none;
  }

  .site-header:not(.ruy-hamburger) .ruy-back {
    display: none;
  }

  .site-header:not(.ruy-hamburger) .menu-cover-title {
    display: none;
  }
}

.site-header.ruy-hamburger .main-navigation {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  padding-right: var(--ruy-gap-container);
  padding-left: var(--ruy-gap-container);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  display: flex;
  -webkit-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
}

@media only screen and (max-width: 991px) {
  .site-header.ruy-hamburger .main-navigation {
    flex-direction: column;
    overflow: auto;
  }
}

.site-header.ruy-hamburger ul.primary-nav {
  position: relative;
  top: 100px;
}

@media only screen and (min-width: 992px) {
  .site-header.ruy-hamburger ul.primary-nav {
    width: 70%;
    padding-right: var(--bs-gutter-x);
  }
}

.site-header.ruy-hamburger ul.primary-nav ul {
  width: 100%;
}

.site-header.ruy-hamburger ul.primary-nav,
.site-header.ruy-hamburger ul.primary-nav ul {
  counter-reset: var(--ruy-li-name);
  height: calc(100vh - 100px);
  padding-bottom: 80px;
  padding-left: 0;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  pointer-events: none;
  font-weight: 500;
}

@media only screen and (max-width: 991px) {

  .site-header.ruy-hamburger ul.primary-nav,
  .site-header.ruy-hamburger ul.primary-nav ul {
    justify-content: start;
  }
}

.site-header.ruy-hamburger ul.primary-nav li,
.site-header.ruy-hamburger ul.primary-nav ul li {
  cursor: pointer;
  pointer-events: none;
}

.site-header.ruy-hamburger ul.primary-nav a,
.site-header.ruy-hamburger ul.primary-nav ul a {
  color: var(--font-color);
  transform-origin: left top;
  transition: 500ms 0ms;
  -webkit-transition: 500ms 0ms;
  -moz-transition: 500ms 0ms;
  -ms-transition: 500ms 0ms;
  -o-transition: 500ms 0ms;
}

.site-header.ruy-hamburger ul.primary-nav a:hover,
.site-header.ruy-hamburger ul.primary-nav ul a:hover {
  transform: skewX(2deg);
  letter-spacing: 2.5px;
  -webkit-transform: skewX(2deg);
  -moz-transform: skewX(2deg);
  -ms-transform: skewX(2deg);
  -o-transform: skewX(2deg);
}

@media only screen and (min-width: 992px) {

  .site-header.ruy-hamburger ul.primary-nav li a span:before,
  .site-header.ruy-hamburger ul.primary-nav ul li a span:before {
    counter-increment: var(--ruy-li-name);
    content: counters(var(--ruy-li-name), ".", decimal-leading-zero) ". ";
    font-family: var(--border-color);
    pointer-events: none;
    font-size: 14px;
    opacity: 0.3;
  }
}

.site-header.ruy-hamburger ul.primary-nav li {
  margin: 10px 0;
  width: 100%;
}

.site-header.ruy-hamburger ul.primary-nav a {
  position: relative;
  overflow: hidden;
}

.site-header.ruy-hamburger ul.primary-nav.h2 a {
  line-height: var(--font-size-h2);
}

.site-header.ruy-hamburger ul.primary-nav .h3 a {
  line-height: var(--font-size-h3);
}

.site-header.ruy-hamburger ul {
  left: 0;
  top: 0;
  z-index: -1;
}

.site-header.ruy-hamburger ul>li>a>span,
.site-header.ruy-hamburger ul>li>span,
.site-header.ruy-hamburger ul .scroll-content>li>a>span,
.site-header.ruy-hamburger ul .scroll-content>li>span {
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-property: opacity, visibility, transform;
  transform-origin: center top;
  transition-delay: calc(0.1s * var(--ruy-li-index));
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  -webkit-transition: 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition: 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -ms-transition: 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.site-header.ruy-hamburger ul.open {
  z-index: 9;
}

.site-header.ruy-hamburger ul.open>li>a,
.site-header.ruy-hamburger ul.open>li>span,
.site-header.ruy-hamburger ul.open .scroll-content>li>a,
.site-header.ruy-hamburger ul.open .scroll-content>li>span {
  pointer-events: auto !important;
}

.site-header.ruy-hamburger ul.open>li>a>span,
.site-header.ruy-hamburger ul.open>li>span,
.site-header.ruy-hamburger ul.open .scroll-content>li>a>span,
.site-header.ruy-hamburger ul.open .scroll-content>li>span {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.site-header.ruy-hamburger #navbar_toggle {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
  cursor: pointer;
}

.site-header.ruy-hamburger #navbar_toggle .toggle-icon {
  --width-icon: 25px;
  margin-right: 10px;
}

.site-header.ruy-hamburger #navbar_toggle .toggle-icon .toggle-line {
  position: relative;
  height: 2px;
  background-color: var(--heading-color);
  width: 25px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.site-header.ruy-hamburger #navbar_toggle .toggle-icon .toggle-line:not(:first-child) {
  margin-top: 5px;
}

.site-header.ruy-hamburger #navbar_toggle .toggle-icon .toggle-line:nth-of-type(1),
.site-header.ruy-hamburger #navbar_toggle .toggle-icon .toggle-line:nth-of-type(3) {
  transform: scaleX(0.5);
  -webkit-transform: scaleX(0.5);
  -moz-transform: scaleX(0.5);
  -ms-transform: scaleX(0.5);
  -o-transform: scaleX(0.5);
}

.site-header.ruy-hamburger #navbar_toggle .toggle-icon .toggle-line:nth-of-type(2) {
  width: var(--width-icon);
}

.site-header.ruy-hamburger #navbar_toggle .toggle-icon .toggle-line:nth-of-type(1) {
  transform-origin: left;
}

.site-header.ruy-hamburger #navbar_toggle .toggle-icon .toggle-line:nth-of-type(3) {
  transform-origin: right;
}

.site-header.ruy-hamburger #navbar_toggle .toggle-text {
  position: relative;
  --animate-trans: translateY(5px) rotateX(75deg);
  min-width: 43px;
}

.site-header.ruy-hamburger #navbar_toggle .toggle-text .text-open,
.site-header.ruy-hamburger #navbar_toggle .toggle-text .text-close {
  position: absolute;
  top: 0;
  left: 0;
}

.site-header.ruy-hamburger #navbar_toggle .toggle-text .text-open .char,
.site-header.ruy-hamburger #navbar_toggle .toggle-text .text-close .char {
  opacity: 0;
  visibility: hidden;
  transform: var(--animate-trans);
  -webkit-transform: var(--animate-trans);
  -moz-transform: var(--animate-trans);
  -ms-transform: var(--animate-trans);
  -o-transform: var(--animate-trans);
}

.site-header.ruy-hamburger #navbar_toggle .toggle-text .text-open,
.site-header.ruy-hamburger #navbar_toggle .toggle-text .text-close,
.site-header.ruy-hamburger #navbar_toggle .toggle-text .text-menu {
  overflow: hidden;
  will-change: transform;
}

.site-header.ruy-hamburger #navbar_toggle .toggle-text .text-open .char,
.site-header.ruy-hamburger #navbar_toggle .toggle-text .text-close .char,
.site-header.ruy-hamburger #navbar_toggle .toggle-text .text-menu .char {
  will-change: transform;
  transition-property: opacity, visibility, transform;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-delay: calc(30ms * var(--char-index) + 1ms);
}

.site-header.ruy-hamburger #navbar_toggle:hover .toggle-line {
  --trans-icon: scale(0.2, 1.7);
}

.site-header.ruy-hamburger #navbar_toggle:hover .toggle-line:nth-of-type(1),
.site-header.ruy-hamburger #navbar_toggle:hover .toggle-line:nth-of-type(2),
.site-header.ruy-hamburger #navbar_toggle:hover .toggle-line:nth-of-type(3) {
  transform: var(--trans-icon);
  border-radius: 3px;
  -webkit-transform: var(--trans-icon);
  -moz-transform: var(--trans-icon);
  -ms-transform: var(--trans-icon);
  -o-transform: var(--trans-icon);
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.site-header.ruy-hamburger #navbar_toggle:hover .toggle-line:nth-of-type(1) {
  transform: var(--trans-icon) translateY(4px);
  -webkit-transform: var(--trans-icon) translateY(4px);
  -moz-transform: var(--trans-icon) translateY(4px);
  -ms-transform: var(--trans-icon) translateY(4px);
  -o-transform: var(--trans-icon) translateY(4px);
}

.site-header.ruy-hamburger #navbar_toggle:hover .toggle-line:nth-of-type(3) {
  transform: var(--trans-icon) translateY(-4px);
  -webkit-transform: var(--trans-icon) translateY(-4px);
  -moz-transform: var(--trans-icon) translateY(-4px);
  -ms-transform: var(--trans-icon) translateY(-4px);
  -o-transform: var(--trans-icon) translateY(-4px);
}

.site-header.ruy-hamburger #navbar_toggle:hover .text-menu .char {
  opacity: 0;
  visibility: hidden;
  transform: var(--animate-trans);
  -webkit-transform: var(--animate-trans);
  -moz-transform: var(--animate-trans);
  -ms-transform: var(--animate-trans);
  -o-transform: var(--animate-trans);
}

.site-header.ruy-hamburger #navbar_toggle:hover:not(.open) .text-open .char,
.site-header.ruy-hamburger #navbar_toggle:hover.open .text-close .char {
  opacity: 1;
  visibility: visible;
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
}

.site-header.ruy-hamburger .menu-cover-title {
  position: absolute;
  bottom: -10%;
  font-size: 20vw;
  font-weight: 600;
  line-height: 1.15;
  transform: translateY(-50%) rotateX(75deg);
  opacity: 0;
  padding-left: inherit;
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-property: opacity, transform;
  pointer-events: none;
  -webkit-transform: translateY(-50%) rotateX(75deg);
  -moz-transform: translateY(-50%) rotateX(75deg);
  -ms-transform: translateY(-50%) rotateX(75deg);
  -o-transform: translateY(-50%) rotateX(75deg);
  -webkit-transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -ms-transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@media only screen and (min-width: 992px) {
  .site-header.ruy-hamburger .menu-cover-title {
    left: -15px;
  }
}

@media only screen and (max-width: 991px) {
  .site-header.ruy-hamburger .menu-cover-title {
    left: 0;
    padding-right: inherit;
    width: 100%;
  }
}

.site-header.ruy-hamburger.ruy-open .menu-cover-title {
  transition-delay: 1s;
  opacity: 0.03;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.site-header.ruy-hamburger.ruy-open .toggle-line:nth-of-type(2) {
  transform: scale(0) !important;
  display: none;
  -webkit-transform: scale(0) !important;
  -moz-transform: scale(0) !important;
  -ms-transform: scale(0) !important;
  -o-transform: scale(0) !important;
}

.site-header.ruy-hamburger.ruy-open .toggle-line:nth-of-type(1),
.site-header.ruy-hamburger.ruy-open .toggle-line:nth-of-type(3) {
  margin-top: 0 !important;
}

.site-header.ruy-hamburger.ruy-open .toggle-line:nth-of-type(1) {
  transform: scale(1) rotate(45deg) !important;
  transform-origin: bottom !important;
  -webkit-transform: scale(1) rotate(45deg) !important;
  -moz-transform: scale(1) rotate(45deg) !important;
  -ms-transform: scale(1) rotate(45deg) !important;
  -o-transform: scale(1) rotate(45deg) !important;
}

.site-header.ruy-hamburger.ruy-open .toggle-line:nth-of-type(3) {
  transform: scale(1) rotate(-45deg) !important;
  transform-origin: top !important;
  -webkit-transform: scale(1) rotate(-45deg) !important;
  -moz-transform: scale(1) rotate(-45deg) !important;
  -ms-transform: scale(1) rotate(-45deg) !important;
  -o-transform: scale(1) rotate(-45deg) !important;
}

.site-header.ruy-hamburger.ruy-open .main-navigation {
  opacity: 1;
  visibility: visible;
  transform: none;
}

@media only screen and (max-width: 991px) {
  .site-header.ruy-hamburger.ruy-open .main-navigation {
    text-align: center;
  }

  .site-header.ruy-hamburger.ruy-open .main-navigation ul {
    width: 100%;
  }
}

@keyframes draw {
  0% {
    stroke-dasharray: 10;
  }

  0% {
    stroke-dasharray: 280;
  }

  100% {
    stroke-dasharray: 10;
  }
}

.site-header.ruy-hamburger .ruy-back svg {
  fill: none;
  stroke: var(--border-color);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 10;
  stroke-dashoffset: 0;
  stroke-width: 13px;
  width: 22px;
  margin-right: 10px;
}

.site-header.ruy-hamburger .ruy-back>span {
  display: flex;
}

@media only screen and (max-width: 991px) {
  .site-header.ruy-hamburger .ruy-back>span {
    justify-content: center;
  }
}

.site-header.ruy-hamburger .ruy-back span {
  font-size: 15px;
}

.site-header.ruy-hamburger .ruy-back .text-toggle-back {
  position: relative;
}

.site-header.ruy-hamburger .ruy-back .text-toggle-back .text-back {
  position: absolute;
  left: 0;
}

.site-header.ruy-hamburger .ruy-back .text-toggle-back .char {
  margin-right: 5px;
  transform-origin: center top;
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) calc(50ms * var(--char-index));
  -webkit-transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) calc(50ms * var(--char-index));
  -moz-transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) calc(50ms * var(--char-index));
  -ms-transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) calc(50ms * var(--char-index));
  -o-transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) calc(50ms * var(--char-index));
}

.site-header.ruy-hamburger .ruy-back:hover svg {
  animation: draw 3s linear alternate infinite;
  -webkit-animation: draw 3s linear alternate infinite;
}

.site-header.ruy-hamburger .ruy-back:hover .text-toggle-back .text-back .char,
.site-header.ruy-hamburger .ruy-back .text-toggle-back .text-name .char {
  transform: none;
  opacity: 1;
  visibility: visible;
}

.site-header.ruy-hamburger .ruy-back:hover .text-toggle-back .text-name .char,
.site-header.ruy-hamburger .ruy-back .text-toggle-back .text-back .char {
  transform: translateY(10px) rotateX(75deg);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px) rotateX(75deg);
  -moz-transform: translateY(10px) rotateX(75deg);
  -ms-transform: translateY(10px) rotateX(75deg);
  -o-transform: translateY(10px) rotateX(75deg);
}

.site-header.ruy-hamburger .container-content {
  display: flex !important;
  position: relative;
  opacity: 0;
  visibility: hidden;
}

.site-header.ruy-hamburger .container-content:after,
.site-header.ruy-hamburger .container-content {
  transition: 1s;
}

.site-header.ruy-hamburger .container-content:after {
  content: "";
  position: absolute;
  background-color: var(--border-color);
}

@media only screen and (min-width: 992px) {
  .site-header.ruy-hamburger .container-content:after {
    left: calc(-1 * var(--ruy-gap-container));
    top: 0;
    width: 1px;
    height: 0;
  }
}

@media only screen and (max-width: 991px) {
  .site-header.ruy-hamburger .container-content:after {
    width: 0;
    height: 1px;
  }
}

.site-header.ruy-hamburger .container-content .sm-title-block {
  color: #a56433;
}

.site-header.ruy-hamburger .container-content .nav-social ul li {
  position: relative;
  color: var(--heading-color);
  display: inline-block;
  letter-spacing: 2px;
  font-size: 14px;
  margin-right: 15px;
  padding-right: 5px;
}

.site-header.ruy-hamburger.ruy-open .container-content {
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 992px) {
  .site-header.ruy-hamburger.ruy-open .container-content:after {
    height: 100%;
  }
}

@media only screen and (max-width: 991px) {
  .site-header.ruy-hamburger.ruy-open .container-content:after {
    width: 100%;
    top: calc(-1 * var(--margin-padding) / 2);
  }
}

.site-header.ruy-hamburger.ruy-open .container-content:after,
.site-header.ruy-hamburger.ruy-open .container-content {
  transition-delay: 0.7s;
}

.site-header:not(.ruy-hamburger) .container-content {
  display: none;
}

.site-header.nav-bg {
  background-color: var(--bg-color);
  padding-top: 10px;
  padding-bottom: 10px;
}

@media only screen and (max-width: 600px) {
  .site-header.nav-bg {
    top: 0;
  }
}

/* .site-header.hide-nav:not(.ruy-open) {
  transform: translateY(-100%);
} */

.main-brand img,
.ruyload__img img {
  width: 180px;
  max-width: 100%;
  height: auto;
}

.footer-content .main-brand img,
.ruyload__img img {
  width: unset;

}

.footer-content .main-logo {
  width: 80%;
  margin: 0 auto;
}

.v-light #site_menu_header .main-brand .logo-dark,
#ruy_footer.v-light .main-brand .logo-dark,
.main-brand .logo-dark,
.v-light #ruy_footer:not(.v-light, .v-dark) .main-brand .logo-dark,
.v-light #site_menu_header .ruyload__img .logo-dark,
#ruy_footer.v-light .ruyload__img .logo-dark,
.ruyload__img .logo-dark,
.v-light #ruy_footer:not(.v-light, .v-dark) .ruyload__img .logo-dark {
  display: block;
}

.v-light #site_menu_header .main-brand .logo-light,
#ruy_footer.v-light .main-brand .logo-light,
.main-brand .logo-light,
.v-light #ruy_footer:not(.v-light, .v-dark) .main-brand .logo-light,
.v-light #site_menu_header .ruyload__img .logo-light,
#ruy_footer.v-light .ruyload__img .logo-light,
.ruyload__img .logo-light,
.v-light #ruy_footer:not(.v-light, .v-dark) .ruyload__img .logo-light {
  display: none;
}

.v-dark #site_menu_header .main-brand .logo-dark,
#ruy_footer.v-dark .main-brand .logo-dark,
.v-dark #ruy_footer:not(.v-light, .v-dark) .main-brand .logo-dark,
.v-dark #site_menu_header .ruyload__img .logo-dark,
#ruy_footer.v-dark .ruyload__img .logo-dark,
.v-dark #ruy_footer:not(.v-light, .v-dark) .ruyload__img .logo-dark {
  display: none;
}

.v-dark #site_menu_header .main-brand .logo-light,
#ruy_footer.v-dark .main-brand .logo-light,
.v-dark #ruy_footer:not(.v-light, .v-dark) .main-brand .logo-light,
.v-dark #site_menu_header .ruyload__img .logo-light,
#ruy_footer.v-dark .ruyload__img .logo-light,
.v-dark #ruy_footer:not(.v-light, .v-dark) .ruyload__img .logo-light {
  display: block;
}

.social-side {
  position: fixed;
  left: 6px;
  bottom: 50px;
  z-index: 10;
  display: flex;
  mix-blend-mode: exclusion;
  color: #fff;
  --heading-color: #fff;
  --border-color: #fff;
}

@media only screen and (max-width: 991px) {
  .social-side {
    display: none;
  }
}

.social-side .icon {
  text-align: center;
  width: 30px;
  line-height: 30px;
  cursor: pointer;
  writing-mode: vertical-rl;
  -webkit-text-orientation: mixed;
  text-orientation: mixed;
  white-space: nowrap;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 12px;
}

.social-side .icon:before {
  content: "";
  position: relative;
  display: inline-block;
  border-left: 1px solid var(--border-color);
  height: 50px;
  margin-bottom: 10px;
}

.socials {
  text-align: center;
  font-size: 14px;
}

.socials li a {
  position: relative;
  margin-bottom: 10px;
  margin-top: 5px;
  color: var(--heading-color);
}

.socials li a:after,
.socials li a span,
.socials li a:hover i {
  transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
  -moz-transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
  -ms-transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
  -o-transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
}

.socials li a:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--heading-color);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
  -webkit-transform: translate(-50%, -50%) scale(0.2);
  -moz-transform: translate(-50%, -50%) scale(0.2);
  -ms-transform: translate(-50%, -50%) scale(0.2);
  -o-transform: translate(-50%, -50%) scale(0.2);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.socials li a i {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -moz-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -ms-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  -o-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.socials li a span {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--heading-color);
  font-size: 13px;
  opacity: 0;
  transform-origin: center bottom;
  cursor: pointer;
  transform: translateX(0px) translateY(-50%);
  -webkit-transform: translateX(0px) translateY(-50%);
  -moz-transform: translateX(0px) translateY(-50%);
  -ms-transform: translateX(0px) translateY(-50%);
  -o-transform: translateX(0px) translateY(-50%);
}

.socials li a:hover i {
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}

.socials li a:hover label {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 12, -8);
  transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
  -webkit-transform: matrix(1, 0, 0, 1, 12, -8);
  -moz-transform: matrix(1, 0, 0, 1, 12, -8);
  -ms-transform: matrix(1, 0, 0, 1, 12, -8);
  -o-transform: matrix(1, 0, 0, 1, 12, -8);
  -webkit-transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
  -moz-transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
  -ms-transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
  -o-transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
}

.socials li a:hover:after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
  transition-delay: 0.2s;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  -webkit-transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
  -moz-transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
  -ms-transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
  -o-transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
}

.socials li a:hover span {
  opacity: 1;
  transform: translateX(10px) translateY(-50%);
  -webkit-transform: translateX(10px) translateY(-50%);
  -moz-transform: translateX(10px) translateY(-50%);
  -ms-transform: translateX(10px) translateY(-50%);
  -o-transform: translateX(10px) translateY(-50%);
}

.ruy-socials li {
  display: inline-block;
  margin-left: 10px;
}

.ruy-socials li:not(:last-of-type) {
  margin-right: -10px;
}

.ruy-socials li a {
  position: relative;
  width: 25px;
  height: 25px;
  /* border-width: 1px;
  border-style: solid;
  border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--heading-color);
  border: #000 solid 1px;
}

.ruy-socials li a .fab {
  font-size: 12px;
}

/* .ruy-socials li a a:not(.move-circle) {
  border-color: var(--border-color);
} */

.ruy-socials li a:after,
.ruy-socials li a span:not(.ruy-icon) {
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
  -webkit-transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
  -moz-transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
  -ms-transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
  -o-transition: all 0.3s cubic-bezier(0.55, 0.02, 0.1, 0.9);
}

/* .ruy-socials li a:after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--theme-color);
  transform: translate(-50%, -50%) scale(0.2);
} */

.ruy-socials li a span:not(.ruy-icon) {
  color: var(--heading-color);
  font-weight: bold;
  font-size: 13px;
  transform-origin: center bottom;
  cursor: pointer;
}

/* .ruy-socials li a i {
  transform: scale(1);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.ruy-socials li a:hover i {
  transform: scale(0);
} */
.ruy-socials li a:hover span:not(.ruy-icon) {
  opacity: 1;
  transform: matrix(1, 0, 0, 1, 0, -20);
  transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
  -webkit-transform: matrix(1, 0, 0, 1, 0, -20);
  -moz-transform: matrix(1, 0, 0, 1, 0, -20);
  -ms-transform: matrix(1, 0, 0, 1, 0, -20);
  -o-transform: matrix(1, 0, 0, 1, 0, -20);
  -webkit-transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
  -moz-transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
  -ms-transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
  -o-transition: all 0.6s cubic-bezier(0.75, -0.5, 0, 1.75);
}

.ruy-socials li a:hover:after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
  transition-delay: 0.2s;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -moz-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  -o-transform: translate(-50%, -50%) scale(1);
  -webkit-transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
  -moz-transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
  -ms-transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
  -o-transition: all 0.5s cubic-bezier(0.75, -0.5, 0, 1.75);
}

@media only screen and (max-width: 991px) {
  .ruy-socials li a {
    width: 50px;
    height: 50px;
  }

  .ruy-socials li:not(:last-of-type) {
    margin-right: 5px;
  }
}

.elementor-align-right .ruy-socials .ruy-icon {
  margin: inherit;
}

/*--------------------------------------------------------------
## Next / Previous
--------------------------------------------------------------*/
.next-project {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.next-project .bg-container {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.type-p-nav {
  border-top: 1px solid var(--border-color);
  padding-top: 50px;
}

.type-p-nav .ruy-pagination {
  flex-wrap: wrap;
}

.type-p-nav .ruy-pagination .page-numbers:not(.next):not(.prev) {
  position: relative;
  margin-right: 15px;
  transition: all 0.45s cubic-bezier(0.08, 0.58, 0.17, 0.94);
  padding: 10px;
  font-size: 20px;
  border: 1px solid var(--border-color);
  -webkit-transition: all 0.45s cubic-bezier(0.08, 0.58, 0.17, 0.94);
  -moz-transition: all 0.45s cubic-bezier(0.08, 0.58, 0.17, 0.94);
  -ms-transition: all 0.45s cubic-bezier(0.08, 0.58, 0.17, 0.94);
  -o-transition: all 0.45s cubic-bezier(0.08, 0.58, 0.17, 0.94);
}

.type-p-nav .ruy-pagination .page-numbers:not(.next):not(.prev).current,
.type-p-nav .ruy-pagination .page-numbers:not(.next):not(.prev):hover {
  color: var(--theme-color-font, var(--heading-color));
  background-color: var(--assistant-color);
}

.type-p-nav .ruy-pagination .page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
}

.type-p-nav .ruy-pagination .next,
.type-p-nav .ruy-pagination .prev {
  position: relative;
  text-align: center;
  width: 90px;
}

.type-p-nav .ruy-pagination .next:before,
.type-p-nav .ruy-pagination .prev:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: var(--assistant-color);
  transition: all 0.45s cubic-bezier(0.08, 0.58, 0.17, 0.94);
  transform: scale(0.8);
  -webkit-transition: all 0.45s cubic-bezier(0.08, 0.58, 0.17, 0.94);
  -moz-transition: all 0.45s cubic-bezier(0.08, 0.58, 0.17, 0.94);
  -ms-transition: all 0.45s cubic-bezier(0.08, 0.58, 0.17, 0.94);
  -o-transition: all 0.45s cubic-bezier(0.08, 0.58, 0.17, 0.94);
  -webkit-transform: scale(0.8);
  -moz-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
}

.type-p-nav .ruy-pagination .next svg,
.type-p-nav .ruy-pagination .prev svg {
  width: 30px;
  position: absolute;
  top: 1px;
  fill: var(--heading-color);
  z-index: 1;
  height: 100%;
  opacity: 1;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.type-p-nav .ruy-pagination .next span,
.type-p-nav .ruy-pagination .prev span {
  position: relative;
  z-index: 2;
  font-weight: 400;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--heading-color);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.type-p-nav .ruy-pagination .next:hover:before,
.type-p-nav .ruy-pagination .prev:hover:before {
  transform: scale(0.7);
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
}

.type-p-nav .ruy-pagination .next:hover svg,
.type-p-nav .ruy-pagination .prev:hover svg {
  opacity: 0;
}

.type-p-nav .ruy-pagination .next:hover span,
.type-p-nav .ruy-pagination .prev:hover span {
  transform: translateX(0) translateY(2px);
  -webkit-transform: translateX(0) translateY(2px);
  -moz-transform: translateX(0) translateY(2px);
  -ms-transform: translateX(0) translateY(2px);
  -o-transform: translateX(0) translateY(2px);
}

.type-p-nav .ruy-pagination .next:hover,
.type-p-nav .ruy-pagination .prev:hover {
  background-color: transparent;
}

.type-p-nav .ruy-pagination .next {
  margin-left: 10px;
}

.type-p-nav .ruy-pagination .next svg {
  transform: translateX(20%);
  left: -10%;
  -webkit-transform: translateX(20%);
  -moz-transform: translateX(20%);
  -ms-transform: translateX(20%);
  -o-transform: translateX(20%);
}

.type-p-nav .ruy-pagination .next span {
  transform: translateX(20%) translateY(2px);
  -webkit-transform: translateX(20%) translateY(2px);
  -moz-transform: translateX(20%) translateY(2px);
  -ms-transform: translateX(20%) translateY(2px);
  -o-transform: translateX(20%) translateY(2px);
}

.type-p-nav .ruy-pagination .prev {
  margin-right: 25px;
}

.type-p-nav .ruy-pagination .prev svg {
  transform: translateX(-20%) rotate(180deg);
  right: -10%;
  -webkit-transform: translateX(-20%) rotate(180deg);
  -moz-transform: translateX(-20%) rotate(180deg);
  -ms-transform: translateX(-20%) rotate(180deg);
  -o-transform: translateX(-20%) rotate(180deg);
}

.type-p-nav .ruy-pagination .prev span {
  transform: translateX(-20%) translateY(2px);
  -webkit-transform: translateX(-20%) translateY(2px);
  -moz-transform: translateX(-20%) translateY(2px);
  -ms-transform: translateX(-20%) translateY(2px);
  -o-transform: translateX(-20%) translateY(2px);
}

.pagination-pages .post-page-numbers {
  margin: 0 10px;
}

.pagination-pages a {
  color: var(--theme-color);
}

.elementor-widget-ruy_arrow_nav {
  pointer-events: none;
}

.ruy-nav-arrow {
  --ruy-icon-size: 30px;
  pointer-events: none;
}

.ruy-nav-arrow.p-absolute {
  bottom: -80px;
  z-index: 2;
}

.ruy-nav-arrow .ruy-nav-left,
.ruy-nav-arrow .ruy-nav-right {
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.ruy-nav-arrow .ruy-nav-left .ruy-icon,
.ruy-nav-arrow .ruy-nav-right .ruy-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ruy-nav-arrow .ruy-nav-left {
  margin-right: 60px;
}

.ruy-nav-arrow .ruy-nav-right .ruy-icon {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.next-container,
.prev-container {
  cursor: pointer;
}

.next-container .triangle,
.prev-container .triangle {
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.next-container.next-container .container-inner:before,
.prev-container.next-container .container-inner:before {
  content: "";
  margin-right: 7px;
}

.next-container.next-container .triangle,
.prev-container.next-container .triangle {
  border-left: 6px solid #DB5A3A;
  margin-right: 19.5px;
}

.next-container.next-container svg,
.prev-container.next-container svg {
  right: 0;
}

.next-container.prev-container .container-inner:after,
.prev-container.prev-container .container-inner:after {
  content: "";
  margin-left: 7px;
}

.next-container.prev-container .triangle,
.prev-container.prev-container .triangle {
  border-right: 6px solid #DB5A3A;
  margin-left: 19.5px;
}

.next-container.prev-container svg,
.prev-container.prev-container svg {
  left: 0;
}

.next-container .container-inner,
.prev-container .container-inner {
  position: relative;
  height: 45px;
  display: flex;
  align-items: center;
}

.next-container .container-inner:after,
.next-container .container-inner:before,
.prev-container .container-inner:after,
.prev-container .container-inner:before {
  position: relative;
  width: 55px;
  height: 1px;
  background-color: var(--border-color);
  transition: width 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  transform-origin: right;
  -webkit-transition: width 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: width 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  -ms-transition: width 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: width 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.next-container .container-inner svg,
.prev-container .container-inner svg {
  position: absolute;
  width: 45px;
  height: 45px;
}

.next-container .container-inner svg circle,
.prev-container .container-inner svg circle {
  stroke: var(--border-color);
  stroke-dasharray: 1px;
}

.next-container svg circle,
.prev-container svg circle {
  transition: all 0.6s ease-in;
  -webkit-transition: all 0.6s ease-in;
  -moz-transition: all 0.6s ease-in;
  -ms-transition: all 0.6s ease-in;
  -o-transition: all 0.6s ease-in;
}

.next-container:hover .container-inner:before,
.next-container:hover .container-inner:after,
.prev-container:hover .container-inner:before,
.prev-container:hover .container-inner:after {
  width: 15px;
  opacity: 0;
  transition: width 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
  -webkit-transition: width 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
  -moz-transition: width 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
  -ms-transition: width 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
  -o-transition: width 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.5s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
}

.next-container:hover .container-inner svg circle,
.prev-container:hover .container-inner svg circle {
  stroke-dashoffset: 95;
}

.swiper-pagination-bullets,
.swiper-pagination-fraction,
.swiper-pagination-progressbar {
  position: relative;
  --swiper-pagination-color: var(--heading-color);
  --swiper-pagination-bullet-inactive-color: var(--heading-color);
}

@media only screen and (max-width: 575px) {

  .swiper-pagination-bullets,
  .swiper-pagination-fraction,
  .swiper-pagination-progressbar {
    display: none;
  }
}

.swiper-pagination-fraction {
  bottom: 0;
  width: auto;
  display: block;
}

.ruy-swiper .swiper-pagination-progressbar {
  position: relative;
  width: 30% !important;
  height: 1px !important;
  background-color: var(--border-color);
  --swiper-pagination-color: var(--theme-color);
}

.ruy-swiper .swiper-pagination-progressbar span {
  transition-property: transform;
}

.ruy-swiper-circle .swiper-pagination-bullet {
  position: relative;
  background-color: transparent;
  --swiper-pagination-bullet-width: 20px;
  --swiper-pagination-bullet-height: 20px;
  height: 20px;
  opacity: 1;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  z-index: 2;
  margin: 5px;
  bottom: 0 !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.ruy-swiper-circle .swiper-pagination-bullet:not(.swiper-pagination-bullet-active, .swiper-pagination-bullet-active-prev, .swiper-pagination-bullet-active-next) {
  transform: scale(0.33);
  -webkit-transform: scale(0.33);
  -moz-transform: scale(0.33);
  -ms-transform: scale(0.33);
  -o-transform: scale(0.33);
}

.ruy-swiper-circle .swiper-pagination-bullet::before,
.ruy-swiper-circle .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.ruy-swiper-circle .swiper-pagination-bullet::before {
  background-color: var(--theme-color);
  transform: scale(0.7);
  /*translate: 1px 1px;*/
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
}

.ruy-swiper-circle .swiper-pagination-bullet::after {
  border: 1.5px solid var(--theme-color);
  transform: scale(0.7);
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  -o-transform: scale(0.7);
}

.ruy-swiper-circle .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  transform: scale(0.4);
  -webkit-transform: scale(0.4);
  -moz-transform: scale(0.4);
  -ms-transform: scale(0.4);
  -o-transform: scale(0.4);
}

.ruy-swiper-circle .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.ruy-swiper .swiper-container-vertical {
  height: 70vh;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 2px;
  border-radius: 0;
  margin-right: 5px;
  cursor: pointer;
  background: var(--heading-color);
  transition: transform 0.3s ease-in-out;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -ms-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  width: auto;
  bottom: 0;
}

.swiper-pagination-fraction {
  width: auto !important;
  position: relative !important;
  bottom: auto !important;
}

.ruy-swiper-paginate {
  align-items: end;
}

.e-container>.elementor-element.elementor-absolute.elementor-widget-ruy_arrow_nav.container,
.elementor-widget-wrap>.elementor-element.elementor-absolute.elementor-widget-ruy_arrow_nav.container {
  left: 0;
  right: 0;
}

/*--------------------------------------------------------------
## Header
--------------------------------------------------------------*/
/* -------------------------------------------------------
                   Header
-------------------------------------------------------- */
.link-project {
  right: 60px;
  bottom: 60px;
  z-index: 15;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  text-align: center;
  line-height: 120px;
  font-size: 13px;
  letter-spacing: 1px;
}

.link-project svg {
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .link-project {
    display: none;
  }
}

#ruy_header {
  position: relative;
  overflow: hidden;
  --margin-padding: 80px;
}

#ruy_header:not(.header-normal, .header-padding, .ruy-full-header) {
  min-height: 100vh;
}

#ruy_header:not(.header-normal, .header-padding, .ruy-full-header) #hero_content {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media only screen and (min-width: 768px) {

  #ruy_header:not(.header-normal, .header-padding, .ruy-full-header) .entry-header,
  #ruy_header:not(.header-normal, .header-padding, .ruy-full-header) #hero_content {
    min-height: calc(100vh - (var(--margin-padding) * 2));
  }
}

@media only screen and (max-width: 767px) {
  #ruy_header:not(.header-normal, .header-padding, .ruy-full-header) {
    padding: 0;
  }

  #ruy_header:not(.header-normal, .header-padding, .ruy-full-header) .entry-header,
  #ruy_header:not(.header-normal, .header-padding, .ruy-full-header) #hero_content {
    min-height: 100vh;
  }
}

#ruy_header.show-box-shadow:not(.header-normal) .entry-header:after {
  content: "";
  position: absolute;
  width: 100%;
}

#ruy_header:not(.header-normal):before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  height: 50%;
  background-color: var(--assistant-color);
}

#ruy_header .entry-header:after {
  left: 0;
  bottom: 0;
  box-shadow: 1px 0 31px 45px var(--assistant-color);
  z-index: 1;
}

#ruy_header.header-padding:not(.header-normal) .entry-header {
  padding: 120px 0;
}

@media only screen and (min-width: 992px) {

  #ruy_header.right-img #hero_image,
  #ruy_header.right-img #hero_content,
  #ruy_header.left-img #hero_image,
  #ruy_header.left-img #hero_content {
    width: 50%;
  }

  #ruy_header.right-img.right-img #hero_image,
  #ruy_header.left-img.right-img #hero_image {
    left: 50%;
  }

  #ruy_header.right-img.right-img #hero_content,
  #ruy_header.left-img.right-img #hero_content {
    margin-left: 0;
  }

  #ruy_header.right-img.left-img #hero_content,
  #ruy_header.left-img.left-img #hero_content {
    margin-right: 0;
    margin-left: auto;
  }
}

#ruy_header #hero_image {
  top: 0;
  width: 100%;
  height: 100%;
}

#ruy_header #hero_content {
  z-index: 2;
}

#ruy_header.header-normal {
  padding-top: 180px;
}

@media only screen and (min-width: 768px) {
  #ruy_header.header-normal .title:not(.title-org) {
    --title-heading: 60px;
  }
}

#ruy_header.ruy-full-header {
  padding: 0;
}

#ruy_header.ruy-full-header .entry-header,
#ruy_header.ruy-full-header #hero_content {
  min-height: 100vh;
}

#ruy_header.ruy-full-header #hero_content {
  padding-top: var(--margin-padding);
  padding-bottom: var(--margin-padding);
}

.ruy-scroll-bottom {
  position: absolute;
  right: 20px;
  bottom: 50px;
  z-index: 1;
  width: -webkit-fit-content;
  width: fit-content;
  min-width: 13px;
  font-size: 10px;
  letter-spacing: 5px;
  cursor: pointer;
}

.ruy-scroll-bottom:before,
.ruy-scroll-bottom:after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  left: 50%;
  margin-bottom: 10px;
}

.ruy-scroll-bottom:before {
  position: relative;
  background-color: var(--bg-color);
}

.ruy-scroll-bottom:after {
  position: absolute;
  top: 0;
  background-color: var(--theme-color);
  transform: scale(0);
  transform-origin: top;
  animation: scroll-down 2.5s cubic-bezier(0.19, 1, 0.22, 1) infinite;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  -webkit-animation: scroll-down 2.5s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

.ruy-scroll-bottom .text {
  writing-mode: vertical-lr;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: vertical-lr;
}

@keyframes scroll-down {
  0% {
    transform: scale(0);
    transform-origin: top;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
  }

  50% {
    transform: scale(1);
    transform-origin: top;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  51% {
    transform: scale(1);
    transform-origin: bottom;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
  }

  100% {
    transform: scale(0);
    transform-origin: bottom;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
  }
}

#ruy_header .footer-head .ruy-list {
  --ruy-width-item: 3;
  --ruy-col-item: 25px;
  --ruy-row-item: 15px;
}

#ruy_header .footer-head .ruy-list .grid-item {
  padding-left: 20px;
  border-left: 2px solid var(--border-color);
}

@media only screen and (min-width: 768px) {
  #ruy_header .footer-head .grid-1-half {
    grid-template-columns: auto 35%;
  }
}

@media only screen and (max-width: 767px) {
  #ruy_header .footer-head .ruy-list {
    display: none;
  }

  #ruy_header .footer-head .grid-1-half {
    justify-content: start;
  }
}

@media only screen and (min-width: 992px) {
  .header-personal .title .p-10 {
    font-size: 90px;
    line-height: 90px;
    letter-spacing: 2.5px;
  }
}

@media only screen and (max-width: 991px) {
  .header-personal .title .p-10 {
    font-size: 50px;
    line-height: 50px;
    letter-spacing: 2px;
  }
}

.header-personal .ruy-socials {
  position: absolute;
  right: 20px;
  bottom: 20px;
  --ruy-icon-size: 14px;
  z-index: 2;
}

.header-personal .box-content {
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 768px) {
  .header-personal .box-content .title span:last-child {
    margin-left: -140px;
  }
}


/*--------------------------------------------------------------
## pages
--------------------------------------------------------------*/
/* -------------------------------------------------------
                   09 - Slider
-------------------------------------------------------- */

.main-slider {
  height: 100vh;
}

.main-slider,
.main-slider .content-slider {
  position: relative;
  width: 100%;
}

.main-slider .bg-container,
.main-slider .content-slider .bg-container {
  opacity: 0;
  background: #000;
}

.main-slider .swiper-wrapper .slide-item {
  background: #000;
}

.box-shadow-head .main-slider .content-slider:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  box-shadow: 1px 0 31px 45px var(--assistant-color);
  z-index: 1;
}

/* .main-slider .bg-three-js .swiper-container {
  opacity: 0;
} */

.main-slider .bg-three-js.bg-container:after,
.main-slider .bg-three-js:before {
  z-index: 11;
  pointer-events: none;
}

.main-slider .bg-three-js canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

.ruy-slider-width-circle .main-slider {
  overflow: hidden;
}

@media only screen and (min-width: 992px) {
  .ruy-slider-width-circle .main-slider:after {
    content: "";
    position: absolute;
    width: 70vw;
    height: 70vw;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    pointer-events: none;
    opacity: 0.25;
    max-width: calc(1200px + var(--ruy-gap-container));
    max-height: calc(1200px + var(--ruy-gap-container));
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
  }
}

@media only screen and (min-width: 768px) {
  .ruy-section-padding .main-slider {
    padding: 90px var(--ruy-gap-container);
    padding-top: 0;
    padding-bottom: 150px;
    z-index: 9;

  }
}

/* .ruy-section-padding .main-slider:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 50%;
  width: 100%;
  background-image: url(../images/pattern01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
} */
@media only screen and (min-width: 992px) {

  .half-right .main-slider .bg-container,
  .half-right .main-slider .ruy-slider-content,
  .half-left .main-slider .bg-container,
  .half-left .main-slider .ruy-slider-content {
    width: 50%;
  }

  .half-right.ruy-section-padding .main-slider .ruy-slider-content {
    padding-left: 0;
  }

  .half-left.ruy-section-padding .main-slider .ruy-slider-content {
    padding-right: 0;
  }

  .half-right .main-slider .bg-container {
    right: 0;
  }

  .half-left .main-slider .ruy-slider-content {
    left: 50%;
  }
}

.main-slider .ruy-slider-content {
  position: relative;
  pointer-events: none;
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%;
  height: 100%;
  z-index: 2;
}

@media only screen and (max-width: 767px) {
  .main-slider .ruy-slider-content {
    align-items: center;
  }
}

.main-slider .ruy-slider-content .swiper-animate-head {
  transition: 0.5s;
}

.main-slider .ruy-slider-content .slide-content.ruy-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.main-slider .ruy-slider-content .slide-content:not(.ruy-active) {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
}

.main-slider .ruy-slider-content .slide-content:not(.ruy-active) .ruy-chars-wrapper,
.main-slider .ruy-slider-content .slide-content:not(.ruy-active) [data-ruy-split=chars],
.main-slider .ruy-slider-content .slide-content:not(.ruy-active) .swiper-animate-head {
  opacity: 0;
  visibility: hidden;
}

.main-slider .ruy-slider-content .slide-content:not(.ruy-active) .title .icon-circle {
  width: 0;
}

.main-slider .ruy-slider-content .circle-before.mt-10:before {
  margin-top: 5px;
}

.main-slider .ruy-slider-content .circle-before.mb-10:before {
  margin-top: -5px;
}

.main-slider .ruy-slider-content .title,
.main-slider .ruy-slider-content .description,
.main-slider .ruy-slider-content .ruy-btn {
  pointer-events: auto;
}

.main-slider .ruy-slider-content .head-meta:not(.border-bottom, .border-top) {
  margin-top: 0;
  margin-bottom: 0;
}

.main-slider .ruy-slider-content .ruy-def-btn .line-shape .ruy-icon {
  display: none;
}

.main-slider .ruy-slider-content .slide-content .swiper-animate-head,
.main-slider .ruy-slider-content .slide-content .head-meta span,
.main-slider .ruy-slider-content .slide-content .circle-before:before {
  transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: calc(100ms * var(--item-index) + 1ms);
  -webkit-transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.main-slider .ruy-slider-content .slide-content:not(.ruy-active-animate) .head-meta span,
.main-slider .ruy-slider-content .slide-content:not(.ruy-active-animate) p.description,
.main-slider .ruy-slider-content .slide-content:not(.ruy-active-animate) .ruy-def-btn {
  opacity: 0;
}

.main-slider .ruy-slider-content .slide-content:not(.ruy-active-animate) .circle-before:before {
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}

.main-slider .ruy-slider-content .slide-content:not(.ruy-active-animate) .head-meta.mb-20 span {
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.main-slider .ruy-slider-content .slide-content:not(.ruy-active-animate) .head-meta.mt-20 span,
.main-slider .ruy-slider-content .slide-content:not(.ruy-active-animate) p.description,
.main-slider .ruy-slider-content .slide-content:not(.ruy-active-animate) .ruy-def-btn {
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
}

.main-slider .control-nav {
  position: absolute;
  width: 100%;
  max-width: 100%;
  z-index: 3;
  flex-wrap: wrap;
  background: transparent;
  bottom: 0;
  height: 90px;
}

.main-slider .control-nav .swiper-slide:not(.swiper-slide-active) svg {
  opacity: 0;
}

.main-slider .control-nav .btn-all {
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  padding: 10px 30px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.main-slider .control-nav .ruy-paginate-arrow {
  max-width: calc(45% - 30px);
}

@media only screen and (min-width: 768px) {
  .ruy-section-padding .main-slider .control-nav {
    padding: 0;
    width: calc(100% - (var(--ruy-gap-container) * 2));
  }
}

.main-slider .control-nav .swiper-notification {
  display: none;
}

@media only screen and (max-width: 575px) {
  .main-slider .control-nav .box-title {
    display: none;
  }
}

.main-slider .control-nav .box-title h6.sm-title-block {
  font-size: 20px;
  text-transform: uppercase;
}

.main-slider .control-nav .ruy-pagination .h2 {
  font-size: 45px;
  position: relative;
  transform: scaleX(1.5);
  -webkit-clip-path: inset(0 0 0 20%);
  clip-path: inset(0 0 0 20%);
  bottom: auto;
  line-height: 45px;
  margin-right: 15px;
  -webkit-transform: scaleX(1.5);
  -moz-transform: scaleX(1.5);
  -ms-transform: scaleX(1.5);
  -o-transform: scaleX(1.5);
}

.main-slider .control-nav .ruy-pagination span.sm-title-block:not(.total) {
  transform: scaleY(1.5) translateY(-4px) rotate(12deg);
  margin-right: 5px;
  margin-left: 5px;
  -webkit-transform: scaleY(1.5) translateY(-4px) rotate(12deg);
  -moz-transform: scaleY(1.5) translateY(-4px) rotate(12deg);
  -ms-transform: scaleY(1.5) translateY(-4px) rotate(12deg);
  -o-transform: scaleY(1.5) translateY(-4px) rotate(12deg);
}

.main-slider .control-nav .ruy-pagination span.sm-title-block {
  font-family: var(--heading-font);
}

.main-slider .ruy-paginate-arrow .next-arrow,
.main-slider .ruy-paginate-arrow .prev-arrow {
  position: relative;
  cursor: pointer;
}

.main-slider .ruy-paginate-arrow .next-arrow svg,
.main-slider .ruy-paginate-arrow .prev-arrow svg {
  transition: 0.5s;
  stroke: var(--heading-color);
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.main-slider .ruy-paginate-arrow .next-arrow svg:not(.arrow),
.main-slider .ruy-paginate-arrow .prev-arrow svg:not(.arrow) {
  width: 50px;
  height: 50px;
}

.main-slider .ruy-paginate-arrow .next-arrow svg.arrow,
.main-slider .ruy-paginate-arrow .prev-arrow svg.arrow {
  width: 17px;
}

.main-slider .ruy-paginate-arrow .next-arrow svg circle,
.main-slider .ruy-paginate-arrow .prev-arrow svg circle {
  stroke-width: 1;
  opacity: 0.25;
}

.main-slider .ruy-paginate-arrow .next-arrow:hover svg,
.main-slider .ruy-paginate-arrow .prev-arrow:hover svg {
  stroke-dashoffset: 20px;
}

.main-slider .ruy-paginate-arrow .next-arrow .container-inner {
  -webkit-clip-path: inset(0 0 0 35%);
  clip-path: inset(0 0 0 35%);
}

.main-slider .ruy-paginate-arrow .prev-arrow .container-inner {
  -webkit-clip-path: inset(0 35% 0 0);
  clip-path: inset(0 35% 0 0);
}

.main-slider .ruy-paginate-arrow .prev-arrow svg.arrow {
  transform: translate(-50%, -50%) rotate(180deg);
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  -moz-transform: translate(-50%, -50%) rotate(180deg);
  -ms-transform: translate(-50%, -50%) rotate(180deg);
  -o-transform: translate(-50%, -50%) rotate(180deg);
}

.main-slider .ruy-paginate-arrow .next-arrow,
.main-slider .ruy-paginate-arrow.prev-paginate .box-title {
  margin-left: 0;
}

@media only screen and (max-width: 767px) {

  .main-slider .ruy-pagination,
  .main-slider .ruy-swiper-paginate {
    display: none;
  }
}

.main-slider .ruy-swiper-paginate>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  position: absolute;
  min-width: 200px;
  transform: rotate(90deg);
  left: auto;
  right: -50px;
  bottom: 50%;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

@media only screen and (max-width: 1399px) {
  .main-slider .ruy-swiper-paginate>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    right: -75px;
  }
}

@media only screen and (max-width: 991px) {
  .main-slider .ruy-swiper-paginate>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    right: -80px;
  }
}

.main-slider .ruy-swiper-paginate>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet:before {
  background-color: #100f0f;
}

.main-slider .ruy-swiper-paginate>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet:after {
  border-color: #100f0f;
}

.main-slider .ruy-swiper-paginate>.swiper-pagination-bullets {
  width: 20px;
  right: 40px;
}

.main-slider .ruy-swiper-paginate>.swiper-pagination-bullets .swiper-pagination-bullet:before,
.main-slider .ruy-swiper-paginate>.swiper-pagination-bullets .swiper-pagination-bullet:after {
  left: 0;
}

/* -------------------------------------------------------
                   portfolio
-------------------------------------------------------- */
.root-posts .pin-spacer {
  margin-left: 0 !important;
}

.root-posts .pin-spacer .ruy-grid-layout .start-section {
  max-width: calc(70% - var(--ruy-col-item)) !important;
  flex: 0 0 calc(70% - var(--ruy-col-item)) !important;
}

.root-posts .pin-spacer .ruy-grid-layout .end-section {
  max-width: calc(80% - var(--ruy-col-item)) !important;
  flex: 0 0 calc(80% - var(--ruy-col-item)) !important;
}

.root-posts .pin-spacer .ruy-grid-layout .start-section,
.root-posts .pin-spacer .ruy-grid-layout .end-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: var(--ruy-col-item);
  margin-right: var(--ruy-col-item);
}

@media only screen and (min-width: 992px) {
  .root-posts .pin-spacer .ruy-grid-layout {
    --ruy-width-item: 2.5;
    --ruy-col-item: 50px;
    --ruy-row-item: 0px;
  }

  .root-posts .pin-spacer .ruy-grid-layout .box-image-link .box-image-bg,
  .root-posts .pin-spacer .ruy-grid-layout .ruy-item-post {
    height: 100vh;
    max-height: 100vh;
  }
}

@media only screen and (max-width: 991px) {
  .root-posts .pin-spacer .ruy-grid-layout {
    --ruy-width-item: 2;
    --ruy-col-item: 30px;
    --ruy-row-item: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .root-posts .pin-spacer .ruy-grid-layout {
    --ruy-width-item: 1;
  }
}

.ruy-posts.h-350 .box-image-bg {
  height: 350px;
  max-height: 350px;
}

.ruy-posts.img-70 .box-image-bg {
  height: 70vh;
  max-height: 70vh;
}

.ruy-posts .ruy-animate-up,
.ruy-posts .ruy-animate-down {
  font-size: 9vw;
  line-height: 9vw;
  opacity: 0.5;
}

.ruy-posts .ruy-animate-down {
  margin-left: 20px;
  text-align: right;
}

@media only screen and (min-width: 992px) {
  .ruy-posts.use-horizontal-scroll {
    flex-wrap: nowrap;
  }
}

@media only screen and (max-width: 991px) {
  .ruy-posts.use-horizontal-scroll {
    padding-right: var(--ruy-gap-container);
    padding-left: var(--ruy-gap-container);
  }

  .ruy-posts.use-horizontal-scroll .start-section,
  .ruy-posts.use-horizontal-scroll .end-section {
    display: none;
  }
}

.ruy-posts .metas {
  margin-bottom: 0;
}

.ruy-posts .metas>span:not(:last-of-type)::after {
  content: attr(data-separator);
}

.ruy-style-cards .ruy-posts:not(.box-image-blackruy) .post-content {
  position: absolute;
  padding: 50px 30px;
  width: 100%;
  height: 100%;
  justify-content: end;
  /* background: #000; */
  background-image: linear-gradient(to top, rgb(0 0 0 / 80%), rgb(22 22 22 / 41%), rgb(12 12 12 / 0%));
  padding-right: 70px;
  padding-bottom: 10px;
}

.ruy-style-cards .ruy-posts .box-image-link {
  width: 100%;
}

.ruy-style-cards .ruy-posts.box-image-normal .box-image-bg {
  height: 70vh;
}

.ruy-style-cards .ruy-posts.box-image-normal .section_description {
  width: 90%;
}

.ruy-style-cards .ruy-posts.box-image-normal .post-content {
  width: 100%;
}

.ruy-style-cards .ruy-posts.box-image-normal .post-content .title-block {
  letter-spacing: 2px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ruy-style-cards .ruy-posts.box-image-normal .post-content .title-block a:hover {
  color: #fff;
  text-decoration: none;
}

.ruy-style-cards .ruy-posts.box-image-normal .ruy-post-link {
  position: absolute;
  right: 10px;
  bottom: 21px;
  padding: 15px;
  border-style: solid;
  border-width: 2px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.ruy-style-cards .ruy-posts.box-image-normal .ruy-post-link svg {
  fill: var(--heading-color);
  transform: scale(0.75);
  -webkit-transform: scale(0.75);
  -moz-transform: scale(0.75);
  -ms-transform: scale(0.75);
  -o-transform: scale(0.75);
}

.ruy-style-cards .ruy-posts.box-image-hover .section_description,
.ruy-style-cards .ruy-posts.box-image-hover .ruy-link {
  opacity: 0;
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px);
}

.ruy-style-cards .ruy-posts.box-image-hover .post-meta,
.ruy-style-cards .ruy-posts.box-image-hover .section_description,
.ruy-style-cards .ruy-posts.box-image-hover .ruy-link {
  transition: 0.3s linear;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s linear;
  -moz-transition: 0.3s linear;
  -ms-transition: 0.3s linear;
  -o-transition: 0.3s linear;
}

.ruy-style-cards .ruy-posts.box-image-hover .post-meta.post-meta,
.ruy-style-cards .ruy-posts.box-image-hover .section_description.post-meta,
.ruy-style-cards .ruy-posts.box-image-hover .ruy-link.post-meta {
  transform: translateY(-15px);
  -webkit-transform: translateY(-15px);
  -moz-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  -o-transform: translateY(-15px);
}

.ruy-style-cards .ruy-posts.box-image-hover .ruy-item-post:hover .post-meta,
.ruy-style-cards .ruy-posts.box-image-hover .ruy-item-post:hover .post-title,
.ruy-style-cards .ruy-posts.box-image-hover .ruy-item-post:hover .section_description,
.ruy-style-cards .ruy-posts.box-image-hover .ruy-item-post:hover .ruy-link {
  transform: none;
  opacity: 1;
  visibility: visible;
}

.ruy-style-cards .ruy-posts.box-image-hover .ruy-item-post:hover .section_description {
  transition-delay: 0.1s;
}

.ruy-style-cards .ruy-posts.box-image-hover .ruy-item-post:hover .ruy-link {
  transition-delay: 0.1s;
}

.ruy-style-cards .ruy-posts.box-image-hover .ruy-item-post:hover .section_description+.ruy-link {
  transition-delay: 0.15s;
}

.ruy-style-cards .ruy-posts.box-image-hover .post-content {
  width: 100%;
}

.ruy-style-cards .ruy-posts.box-image-blackruy {
  counter-reset: workcounter;
}

.ruy-style-cards .ruy-posts.box-image-blackruy .box-image-bg {
  height: 70vh;
}

.ruy-style-cards .ruy-posts.box-image-blackruy .box-image-link {
  position: relative;
}

.ruy-style-cards .ruy-posts.box-image-blackruy .box-content {
  flex-direction: column;
  padding-left: 50px;
}

.ruy-style-cards .ruy-posts.box-image-blackruy .box-content:before {
  counter-increment: workcounter;
  position: absolute;
  top: 4px;
  left: 0;
  content: counters(workcounter, ".", decimal-leading-zero);
  font-size: 16px;
  color: var(--heading-color);
  font-family: var(--heading-font);
  z-index: 5;
  padding: 15px;
  background-color: var(--assistant-color);
}

.ruy-style-cards .ruy-posts.box-image-blackruy .box-content .post-title {
  padding-left: 20px;
  padding-bottom: 15px;
}

.ruy-style-cards .ruy-posts.box-image-blackruy .box-content .post-title-info {
  display: flex;
  flex-direction: column;
  align-items: end;
  padding-top: 20px;
}

.academySection .ruy-item-post {
  margin: 30px 0px;
}

/* .academySection.ruy-style-cards .ruy-posts.box-image-normal .ruy-post-link{
  border-color: #fff!important;
} */
.ruy-style-cards .ruy-posts.box-image-blackruy .box-content .ruy-post-link {
  position: absolute;
  left: -50px;
  bottom: 10px;
  width: 120px;
  height: 120px;
  line-height: 120px;
  text-align: center;
  border-radius: 50%;
  color: var(--heading-color);
  text-transform: uppercase;
}

.ruy-style-cards .ruy-posts.box-image-blackruy .ruy-swiper a.box-image-link {
  pointer-events: none;
}

@media only screen and (max-width: 767px) {
  .ruy-style-cards .ruy-posts.box-image-blackruy .box-content {
    padding-left: 0;
  }

  .ruy-style-cards .ruy-posts.box-image-blackruy .box-content .post-title-info {
    padding-right: 20px;
  }

  .ruy-style-cards .ruy-posts.box-image-blackruy .box-content .ruy-post-link,
  .ruy-style-cards .ruy-posts.box-image-blackruy .box-content:before {
    display: none;
  }
}

.ruy-style-cards .ruy-posts.box-content-hover {
  counter-reset: compteListe;
}

.ruy-style-cards .ruy-posts.box-content-hover .post-content {
  position: relative;
  z-index: 3;
}

@media only screen and (min-width: 768px) {
  .ruy-style-cards .ruy-posts.box-content-hover .post-content {
    flex-direction: row;
    width: 100%;
  }

  .ruy-style-cards .ruy-posts.box-content-hover .post-content .post-title-info {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 0 1 50%;
    padding-right: 30px;
    padding-left: 60px;
  }

  .ruy-style-cards .ruy-posts.box-content-hover .post-content .post-title-info .post-meta {
    order: 1;
    margin-top: 15px;
  }

  .ruy-style-cards .ruy-posts.box-content-hover .post-content .post-title-info::before {
    counter-increment: compteListe 1;
    color: var(--heading-color);
    content: "/ "counter(compteListe);
    position: absolute;
    left: 0;
    top: 7px;
    font-size: 13px;
    letter-spacing: 2px;
  }

  .ruy-style-cards .ruy-posts.box-content-hover .post-content .post-description-info {
    flex: 0 1 50%;
  }

  .ruy-style-cards .ruy-posts.box-content-hover .post-content .post-description-info .section_description {
    margin-top: 0;
  }
}

@media only screen and (max-width: 767px) {
  .ruy-style-cards .ruy-posts.box-content-hover .post-content {
    padding: 0;
  }
}

.ruy-style-cards .ruy-posts.box-content-hover .ruy-item-post .box-content {
  padding: var(--margin-padding) 30px;
}

.ruy-style-cards .ruy-posts.box-content-hover .box-image-link {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.ruy-style-cards .ruy-posts.box-content-hover .box-image-bg {
  height: 100%;
  opacity: 0.2;
}

.ruy-style-classic .ruy-posts .box-content {
  flex-direction: column;
  border-style: var(--heading-color);
}

.ruy-style-classic .ruy-posts .box-content .box-image-link+.post-content {
  padding-top: 20px;
}

.ruy-style-classic .ruy-posts .box-content .box-image-bg {
  position: relative;
  overflow: hidden;
  max-height: 80vh;
}

.ruy-style-classic.ruy-under-img .ruy-posts .post-content {
  padding: 0 30px 30px 30px;
  margin-top: -45px;
}

.ruy-style-list .ruy-posts .box-content {
  border-style: var(--heading-color);
}

.ruy-style-list .ruy-posts .box-content .box-image-link {
  position: relative;
}

@media only screen and (min-width: 992px) {
  .ruy-style-list .ruy-posts .box-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 50px;
  }

  .ruy-style-list .ruy-posts .box-content .post-content {
    align-self: center;
  }
}

@media only screen and (max-width: 991px) {
  .ruy-style-list .ruy-posts .box-content {
    flex-direction: column;
  }

  .ruy-style-list .ruy-posts .box-content .box-image-link+.post-content {
    padding-top: 30px;
  }
}

.ruy-style-list.ruy-image-odd .ruy-posts .box-image-link .box-image-bg {
  height: 70vh;
}

@media only screen and (min-width: 992px) {
  .ruy-style-list .ruy-posts .box-content {
    grid-column-gap: 0 !important;
  }

  .ruy-style-list .ruy-posts .box-content .post-content {
    align-self: center;
    margin-left: 50px;
    margin-right: 50px;
  }
}

.ruy-style-list.ruy-image-right .ruy-posts .box-image-link,
.ruy-style-list.ruy-image-odd .ruy-posts .ruy-item-post:nth-child(even) .box-image-link {
  order: 2;
}

@media only screen and (min-width: 992px) {
  .ruy-style-list.ruy-image-odd .ruy-posts .ruy-item-post:nth-child(even) .box-image-link {
    order: 2;
  }

  .ruy-style-list.ruy-image-odd .ruy-posts .ruy-item-post:nth-child(even) .post-content {
    justify-self: end;
  }
}

@media only screen and (max-width: 991px) {
  .ruy-style-list.ruy-image-odd .ruy-posts .ruy-item-post .box-image-link {
    order: 0 !important;
  }

  .ruy-style-list.ruy-image-odd .ruy-posts .ruy-item-post {
    margin-top: 80px;
  }

  .ruy-style-list.ruy-image-odd .ruy-posts .ruy-item-post .box-content .post-content {
    padding-left: 30px;
  }
}

.ruy-posts .ruy-link {
  position: relative;
  color: var(--heading-color);
  letter-spacing: 2px;
  padding: 0 5px 2px 5px;
  font-size: 14px;
}

.ruy-posts .ruy-link:before {
  position: absolute;
  content: "";
  background-image: url(../img/button-pattern.png);
  background-repeat: repeat;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 10px;
  z-index: 0;
  transition: background-position 0.3s linear;
  opacity: 0.5;
  -webkit-transition: background-position 0.3s linear;
  -moz-transition: background-position 0.3s linear;
  -ms-transition: background-position 0.3s linear;
  -o-transition: background-position 0.3s linear;
}

.ruy-posts .ruy-link:hover:before {
  background-position: 20px 0;
}

.ruy-style-metro.ruy-metro-1 .ruy-posts .ruy-item-post {
  --space: 55px;
  min-height: 550px;
  display: flex;
  align-items: center;
}

.ruy-style-metro.ruy-metro-1 .ruy-posts .ruy-item-post .box-content {
  position: relative;
}

.ruy-style-metro.ruy-metro-1 .ruy-posts .ruy-item-post .box-content,
.ruy-style-metro.ruy-metro-1 .ruy-posts .ruy-item-post .box-content .box-image-link {
  width: 100%;
}

.ruy-style-metro.ruy-metro-1 .ruy-posts .ruy-item-post .post-content {
  position: absolute;
  background-color: transparent;
}

.ruy-style-metro.ruy-metro-1 .ruy-posts .ruy-item-post .post-content .post-title {
  padding: 10px 15px;
  margin-left: 5px;
  border-top: 1px solid var(--heading-color);
}

.ruy-style-metro.ruy-metro-1 .ruy-posts .ruy-item-post .post-content .ruy-category {
  padding: 10px 10px 0;
}

.ruy-style-metro.ruy-metro-1 .ruy-posts .ruy-item-post .box-image-bg {
  position: relative;
  width: 100%;
}

.ruy-style-metro.ruy-metro-1 .ruy-posts .ruy-item-post:nth-of-type(odd) .post-content {
  top: 50px;
  right: 0;
}

.ruy-style-metro.ruy-metro-1 .ruy-posts .ruy-item-post:nth-of-type(odd) .box-image-link {
  margin-right: var(--space);
}

.ruy-style-metro.ruy-metro-1 .ruy-posts .ruy-item-post:nth-of-type(even) .post-content {
  bottom: 50px;
  left: 0;
}

.ruy-style-metro.ruy-metro-1 .ruy-posts .ruy-item-post:nth-of-type(even) .box-image-link {
  margin-left: var(--space);
}

.ruy-style-metro.ruy-metro-1 .ruy-posts .ruy-item-post:nth-of-type(4n + 1) .box-image-bg,
.ruy-style-metro.ruy-metro-1 .ruy-posts .ruy-item-post:nth-of-type(4n + 4) .box-image-bg {
  height: 550px;
}

.ruy-style-metro.ruy-metro-1 .ruy-posts .ruy-item-post:nth-of-type(4n + 3) .box-image-bg,
.ruy-style-metro.ruy-metro-1 .ruy-posts .ruy-item-post:nth-of-type(4n + 2) .box-image-bg {
  height: 350px;
}

.ruy-style-metro.ruy-metro-2 .ruy-posts .ruy-item-post {
  display: flex;
  align-items: center;
}

.ruy-style-metro.ruy-metro-2 .ruy-posts .ruy-item-post .post-description-info,
.ruy-style-metro.ruy-metro-2 .ruy-posts .ruy-item-post .entry-date,
.ruy-style-metro.ruy-metro-2 .ruy-posts .ruy-item-post .separator-between {
  display: none;
}

.ruy-style-metro.ruy-metro-2 .ruy-posts .ruy-item-post .box-content,
.ruy-style-metro.ruy-metro-2 .ruy-posts .ruy-item-post .box-image-link {
  width: 100%;
}

.ruy-style-metro.ruy-metro-2 .ruy-posts .ruy-item-post .box-image-link {
  position: relative;
  z-index: 1;
  order: 2;
  margin-left: 15px;
}

.ruy-style-metro.ruy-metro-2 .ruy-posts .ruy-item-post .box-image-link .box-image-bg {
  height: 100%;
}

.ruy-style-metro.ruy-metro-2 .ruy-posts .ruy-item-post .post-content {
  position: relative;
  z-index: 2;
  order: 1;
  writing-mode: vertical-lr;
  transform: rotate(540deg);
  -webkit-transform: rotate(540deg);
  -moz-transform: rotate(540deg);
  -ms-transform: rotate(540deg);
  -o-transform: rotate(540deg);
}

@media only screen and (min-width: 992px) {
  .ruy-style-metro.ruy-metro-2 .ruy-posts .ruy-item-post {
    min-height: 550px;
  }

  .ruy-style-metro.ruy-metro-2 .ruy-posts .ruy-item-post:nth-of-type(odd) .box-image-bg {
    height: 350px;
  }

  .ruy-style-metro.ruy-metro-2 .ruy-posts .ruy-item-post:nth-of-type(even) .box-image-bg {
    height: 550px;
  }
}

@media only screen and (max-width: 991px) {
  .ruy-style-metro.ruy-metro-2 .ruy-posts .ruy-item-post .box-image-link .box-image-bg {
    height: 350px;
  }
}

.root-posts .ruy-posts-el.type-p-nav {
  padding-top: var(--ruy-row-item);
  margin-top: var(--ruy-row-item);
}

.root-posts .ruy-posts-el.type-p-nav .type-p-nav {
  padding: 0;
  border: 0;
}

.box-image-transform .grid-item>div,
.box-image-transform .box-image-link {
  position: relative;
  overflow: hidden;
}

.box-image-transform .grid-item>div .box-image-bg,
.box-image-transform .box-image-link .box-image-bg {
  transition: opacity 3s cubic-bezier(0.19, 1, 0.22, 1) 0ms, transform 2s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  -webkit-transition: opacity 3s cubic-bezier(0.19, 1, 0.22, 1) 0ms, transform 2s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  -moz-transition: opacity 3s cubic-bezier(0.19, 1, 0.22, 1) 0ms, transform 2s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  -ms-transition: opacity 3s cubic-bezier(0.19, 1, 0.22, 1) 0ms, transform 2s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  -o-transition: opacity 3s cubic-bezier(0.19, 1, 0.22, 1) 0ms, transform 2s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
}

.box-image-transform .grid-item>div:hover .box-image-bg,
.box-image-transform .box-image-link:hover .box-image-bg {
  transform: scale(1.2);
  opacity: 1;
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.ruy-filtering {
  display: flex;
}

.filtering-t {
  z-index: 2;
}

.filtering-t .filtering-wrap .filter-title {
  margin: 0 0 12px;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 2px;
}

.filtering-t .filtering-wrap .filtering button {
  color: var(--heading-color);
  width: auto;
  margin-right: 10px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  letter-spacing: 2px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.filtering-t .filtering-wrap .filtering button:not(:last-of-type):after {
  content: "/";
  position: absolute;
  margin: 0 2px;
  color: var(--heading-color);
}

.filtering-t .filtering-wrap .filtering button.active {
  color: var(--theme-color);
}

@media only screen and (max-width: 575px) {
  .filtering-t .filtering-wrap .filtering button {
    padding-top: 0;
    padding-bottom: 10px;
    margin: 0 10px 10px 0;
  }
}

/* -------------------------------------------------------
                   Blog
-------------------------------------------------------- */
.root-blog {
  counter-reset: compteListe;
}

.root-blog .type-p-nav {
  margin-top: var(--blog-g, 50px);
}

.root-blog .blog-item {
  padding-left: 60px;
  padding-top: var(--blog-g, 50px);
  padding-bottom: var(--blog-g, 50px);
}

.root-blog .blog-item:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.root-blog .blog-item:first-of-type {
  padding-top: 0;
}

@media only screen and (min-width: 992px) {
  .root-blog .blog-item .blog-item-inner {
    display: flex;
  }
}

.root-blog .blog-item .blog-item-inner::before {
  counter-increment: compteListe 1;
  color: var(--heading-color);
  content: "/ "counter(compteListe);
  position: absolute;
  left: -60px;
  top: 5px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: bold;
}

@media only screen and (min-width: 992px) {
  .root-blog .blog-item .left-box {
    flex: 0 1 40%;
  }
}

@media only screen and (max-width: 991px) {
  .root-blog .blog-item .left-box {
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 992px) {
  .root-blog .blog-item .right-box {
    flex: 0 1 60%;
    padding-left: 30px;
  }
}

.news-content {
  position: relative;
  overflow: hidden;
}

.news-content .post-content {
  position: relative;
  display: block;
}

.news-content .post-content>* {
  margin-bottom: 30px;
}

.news-content .post-content>*:first-child,
.news-content .post-content:first-child {
  margin-top: 0;
}

.news-content .post-content>*:last-child,
.news-content .post-content:last-child {
  margin-bottom: 0;
}

.news-content .post-content p {
  letter-spacing: -0.6px;
}

.news-content .post-content p a {
  display: inline-block;
}

.news-content .post-content blockquote {
  font-size: 20px;
  font-family: serif;
  color: var(--heading-color);
  font-style: italic;
  padding: 10px 0 10px 15px;
  border-left: 1px solid var(--border-color);
}

.news-content .post-content a {
  position: relative;
  text-decoration: none;
  transition: color 670ms linear 417ms;
  -webkit-transition: color 670ms linear 417ms;
  -moz-transition: color 670ms linear 417ms;
  -ms-transition: color 670ms linear 417ms;
  -o-transition: color 670ms linear 417ms;
}

.news-content .post-content a:before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 45%;
  left: -0.15em;
  right: -0.15em;
  background: rgba(82, 83, 85, 0.19);
  background-size: 100% 100%;
  transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: 50% 100%;
  transform: scale(0.98, 0) translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: -1;
  background-repeat: repeat-x;
  -webkit-transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scale(0.98, 0) translateZ(0);
  -moz-transform: scale(0.98, 0) translateZ(0);
  -ms-transform: scale(0.98, 0) translateZ(0);
  -o-transform: scale(0.98, 0) translateZ(0);
}

.news-content .post-content a:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  left: -0.025em;
  right: -0.075em;
  background: rgba(82, 83, 85, 0.19);
  background-size: 100% 100%;
  transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
  transform: translateZ(0);
  -webkit-transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
  -moz-transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
  -ms-transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
  -o-transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
}

.news-content .post-content a:hover:before {
  transform: scale(1, 0.99999999) translateZ(0);
  -webkit-transform: scale(1, 0.99999999) translateZ(0);
  -moz-transform: scale(1, 0.99999999) translateZ(0);
  -ms-transform: scale(1, 0.99999999) translateZ(0);
  -o-transform: scale(1, 0.99999999) translateZ(0);
}

.news-content .post-content a:hover:after {
  opacity: 0;
  transition: 126.66666667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: 126.66666667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: 126.66666667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: 126.66666667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: 126.66666667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-content .post-tags {
  position: relative;
  display: flex;
  align-items: center;
  padding: 50px 0 0;
}

@media only screen and (max-width: 767px) {
  .news-content .post-tags {
    padding: 30px 0 0;
  }
}

.news-content .post-tags a {
  color: var(--heading-color);
  margin-right: 30px;
  display: inline-block;
  line-height: 1;
  float: left;
}

.news-content .post-tags a:before {
  content: "#";
  position: relative;
  margin-right: 5px;
  font-size: 14px;
  background-color: transparent;
  border: 0;
}

.news-content .post-tags a::after {
  display: none;
}

.post-full-content.single-post>*:not(.gallery),
.post-full-content.single-post>*:not(.wp-block-quote)>p,
.widget_text.single-post>*:not(.gallery),
.widget_text.single-post>*:not(.wp-block-quote)>p {
  margin-bottom: 30px;
}

.post-full-content.single-post>*:not(.gallery).justified-gallery,
.post-full-content.single-post>*:not(.wp-block-quote)>p.justified-gallery,
.widget_text.single-post>*:not(.gallery).justified-gallery,
.widget_text.single-post>*:not(.wp-block-quote)>p.justified-gallery {
  margin-bottom: 15px;
}

.post-full-content.single-post>*:not(.gallery):last-child,
.post-full-content.single-post>*:not(.wp-block-quote)>p:last-child,
.widget_text.single-post>*:not(.gallery):last-child,
.widget_text.single-post>*:not(.wp-block-quote)>p:last-child {
  margin-bottom: 0;
}

.post-full-content.single-post>*:not(.gallery):last-child.justified-gallery,
.post-full-content.single-post>*:not(.wp-block-quote)>p:last-child.justified-gallery,
.widget_text.single-post>*:not(.gallery):last-child.justified-gallery,
.widget_text.single-post>*:not(.wp-block-quote)>p:last-child.justified-gallery {
  margin-bottom: -30px;
}

.post-full-content.single-post>*:not(.gallery):last-child.wp-block-gallery,
.post-full-content.single-post>*:not(.wp-block-quote)>p:last-child.wp-block-gallery,
.widget_text.single-post>*:not(.gallery):last-child.wp-block-gallery,
.widget_text.single-post>*:not(.wp-block-quote)>p:last-child.wp-block-gallery {
  margin-bottom: -15px;
}

.post-full-content.single-post>*:not(.gallery).section-padding,
.post-full-content.single-post>*:not(.wp-block-quote)>p.section-padding,
.widget_text.single-post>*:not(.gallery).section-padding,
.widget_text.single-post>*:not(.wp-block-quote)>p.section-padding {
  padding-top: 30;
  padding-bottom: 30;
  margin: 0;
}

.post-full-content.single-post>*:not(.gallery).section-padding.ruy-normalize-block,
.post-full-content.single-post>*:not(.wp-block-quote)>p.section-padding.ruy-normalize-block,
.widget_text.single-post>*:not(.gallery).section-padding.ruy-normalize-block,
.widget_text.single-post>*:not(.wp-block-quote)>p.section-padding.ruy-normalize-block {
  padding-top: 0;
  padding-bottom: 0;
  margin: 30 0;
}

.post-full-content.single-post>*:not(.gallery).section-padding:not(.ruy-normalize-block),
.post-full-content.single-post>*:not(.wp-block-quote)>p.section-padding:not(.ruy-normalize-block),
.widget_text.single-post>*:not(.gallery).section-padding:not(.ruy-normalize-block),
.widget_text.single-post>*:not(.wp-block-quote)>p.section-padding:not(.ruy-normalize-block) {
  padding-top: 0;
}

.post-full-content.single-post>*:not(.gallery):first-child.section-padding,
.post-full-content.single-post>*:not(.wp-block-quote)>p:first-child.section-padding,
.widget_text.single-post>*:not(.gallery):first-child.section-padding,
.widget_text.single-post>*:not(.wp-block-quote)>p:first-child.section-padding {
  padding-top: 0;
  background-color: inherit;
}

.post-full-content.single-post>*:not(.gallery).wp-block-gallery,
.post-full-content.single-post>*:not(.wp-block-quote)>p.wp-block-gallery,
.widget_text.single-post>*:not(.gallery).wp-block-gallery,
.widget_text.single-post>*:not(.wp-block-quote)>p.wp-block-gallery {
  margin-bottom: 14px;
}

.post-full-content.single-post>*:not(.gallery).wp-block-gallery .blocks-gallery-image:last-child,
.post-full-content.single-post>*:not(.gallery).wp-block-gallery .blocks-gallery-item:last-child,
.post-full-content.single-post>*:not(.wp-block-quote)>p.wp-block-gallery .blocks-gallery-image:last-child,
.post-full-content.single-post>*:not(.wp-block-quote)>p.wp-block-gallery .blocks-gallery-item:last-child,
.widget_text.single-post>*:not(.gallery).wp-block-gallery .blocks-gallery-image:last-child,
.widget_text.single-post>*:not(.gallery).wp-block-gallery .blocks-gallery-item:last-child,
.widget_text.single-post>*:not(.wp-block-quote)>p.wp-block-gallery .blocks-gallery-image:last-child,
.widget_text.single-post>*:not(.wp-block-quote)>p.wp-block-gallery .blocks-gallery-item:last-child {
  margin-bottom: 16px;
}

.post-full-content.single-post>*:not(.gallery)>*:first-child,
.post-full-content.single-post>*:not(.gallery):first-child,
.post-full-content.single-post>*:not(.wp-block-quote)>p>*:first-child,
.post-full-content.single-post>*:not(.wp-block-quote)>p:first-child,
.widget_text.single-post>*:not(.gallery)>*:first-child,
.widget_text.single-post>*:not(.gallery):first-child,
.widget_text.single-post>*:not(.wp-block-quote)>p>*:first-child,
.widget_text.single-post>*:not(.wp-block-quote)>p:first-child {
  margin-top: 0;
}

.post-full-content.single-post>*:not(.gallery)>*:last-child,
.post-full-content.single-post>*:not(.gallery):last-child,
.post-full-content.single-post>*:not(.wp-block-quote)>p>*:last-child,
.post-full-content.single-post>*:not(.wp-block-quote)>p:last-child,
.widget_text.single-post>*:not(.gallery)>*:last-child,
.widget_text.single-post>*:not(.gallery):last-child,
.widget_text.single-post>*:not(.wp-block-quote)>p>*:last-child,
.widget_text.single-post>*:not(.wp-block-quote)>p:last-child {
  margin-bottom: 0;
}

.pagination-post {
  position: relative;
}

.pagination-post .pagination-item {
  border: 0;
}

.pagination-post a>span {
  letter-spacing: 2px;
}

@media only screen and (max-width: 767px) {
  .pagination-post {
    flex-direction: column;
  }

  .pagination-post .icon {
    display: none;
  }

  .pagination-post .pagination-item {
    text-align: left;
    border: 0;
  }

  .pagination-post .pagination-item:not(.text-right) {
    border-bottom: 1px solid var(--border-color);
  }

  .pagination-post .pagination-item.border-left {
    border-top: 1px solid var(--border-color);
  }

  .pagination-post .pagination-item.border-left a {
    display: flex;
    flex-direction: column-reverse;
  }

  .pagination-post .pagination-item.border-left a>span {
    margin-top: 10px;
    margin-bottom: 0;
  }
}

.help-block.with-errors {
  color: red;
  margin-top: 10px;
}

@media only screen and (min-width: 768px) {
  .ruy-form .d-flex-form .form-group:not(:last-child) {
    margin-right: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .ruy-form .d-flex-form {
    flex-direction: column;
  }
}

.ruy-form .form-group {
  width: 100%;
  margin-bottom: 30px;
}

.ruy-form .form-group label {
  font-weight: 600;
  color: var(--heading-color);
}

.ruy-form .entry-box .wpcf7-form-control-wrap {
  width: 100%;
}

.ruy-form .entry-box textarea,
.ruy-form .entry-box input:not([type=submit]) {
  font-size: 15px;
  font-weight: 400;
  width: 100%;
  border: 1px solid var(--border-color);
  padding: 10px 18px;
  color: var(--heading-color);
  margin-bottom: 0;
  background-color: transparent;
}

.ruy-form .entry-box textarea {
  min-height: 50px;
}

.ruy-form .ruy-btn {
  padding: 0;
  border: 1px solid var(--theme-color);
}

.ruy-form .ruy-def-btn .ruy-btn {
  border-radius: 7px;
}

.ruy-form .ruy-def-btn>.w-auto {
  justify-content: center;
}

.ruy-form input[type=submit] {
  position: relative;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--heading-color);
  padding: 20px 30px;
  cursor: pointer;
  z-index: 9;
  min-width: 150px;
}

.ruy-form .ajax-loader {
  position: absolute;
  right: 3px;
}

.ruy-form .wpcf7-not-valid-tip {
  margin-top: 20px;
}

.ruy-form .wpcf7 form.invalid .wpcf7-response-output,
.ruy-form .wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: var(--border-color);
}

.ruy-form .ruy-def-btn .icon-circle {
  display: inherit;
}

form:not(.submitting) .wpcf7-spinner {
  width: 0;
  padding: 0;
  margin: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
}

@media only screen and (max-width: 991px) {
  .contact-form .grid-1-half {
    grid-template-columns: 1fr;
  }

  .contact-form .ruy-mask {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .contact-form .d-grid.ruy-service {
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comments-post {
  position: relative;
  width: 100%;
  vertical-align: middle;
  box-sizing: border-box;
}

.comments-post .comments-title {
  margin-bottom: 70px;
}

@media only screen and (max-width: 991px) {
  .comments-post .comments-title {
    margin-bottom: 35px;
  }
}

.comments-post .comments-title .subtitle {
  margin-bottom: 0;
}

.comments-post .comments-area {
  position: relative;
}

.comments-post .comments-area .comment-list>li.comment:first-child {
  margin-top: 0;
}

.comments-post .comments-area .comment-list>li.comment:first-child>.comment-body {
  padding-top: 0;
}

.comments-post .comments-area .comment {
  list-style: none;
  margin-top: 20px;
}

.comments-post .comments-area .comment .comment-body {
  position: relative;
  padding-top: 30px;
}

.comments-post .comments-area .comment .comment-body .comment-author {
  position: relative;
  top: 10px;
  left: 0;
  width: 64px;
  height: 64px;
  display: block;
  float: left;
}

@media only screen and (max-width: 575px) {
  .comments-post .comments-area .comment .comment-body .comment-author {
    width: 30px;
    height: 30px;
  }
}

.comments-post .comments-area .comment .comment-body .comment-author img {
  display: block;
  height: auto;
  max-width: 100%;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.comments-post .comments-area .comment .comment-body .comment-text {
  padding: 0 0 0 90px;
  min-height: 64px;
}

@media only screen and (max-width: 575px) {
  .comments-post .comments-area .comment .comment-body .comment-text {
    padding: 0 0 0 40px;
  }
}

.comments-post .comments-area .comment .comment-body .comment-text .comment-date {
  font-size: 13px;
  color: var(--font-color);
  margin-top: 5px;
}

.comments-post .comments-area .comment .comment-body .comment-text .comment-date:before {
  content: "/";
  display: inline-block;
  margin-right: 5px;
}

.comments-post .comments-area .comment .comment-body .comment-text .comment-info {
  position: relative;
  display: inline-block;
}

.comments-post .comments-area .comment .comment-body .comment-text .comment-info .comment-name {
  float: left;
  margin: 0;
  font-weight: 700;
  font-size: 17px;
}

.comments-post .comments-area .comment .comment-body .comment-text .text-holder p {
  margin: 7px 0 10px;
}

.comments-post .comments-area .comment .comment-body .comment-text .comment-reply-link {
  position: relative;
  text-decoration: none;
  transition: color 670ms linear 417ms;
  font-weight: 700;
  font-size: 15px;
  line-height: 20px;
  text-transform: uppercase;
  color: var(--heading-color);
}

.comments-post .comments-area .comment .comment-body .comment-text .comment-reply-link:before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 45%;
  left: -0.15em;
  right: -0.15em;
  background: rgba(82, 83, 85, 0.19);
  background-size: 100% 100%;
  transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-origin: 50% 100%;
  transform: scale(0.98, 0) translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: -1;
  background-repeat: repeat-x;
  -webkit-transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: 380ms transform cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transform: scale(0.98, 0) translateZ(0);
  -moz-transform: scale(0.98, 0) translateZ(0);
  -ms-transform: scale(0.98, 0) translateZ(0);
  -o-transform: scale(0.98, 0) translateZ(0);
}

.comments-post .comments-area .comment .comment-body .comment-text .comment-reply-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  left: -0.025em;
  right: -0.075em;
  background: rgba(82, 83, 85, 0.19);
  background-size: 100% 100%;
  transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
  transform: translateZ(0);
  -webkit-transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
  -moz-transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
  -ms-transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
  -o-transition: 190ms opacity cubic-bezier(0.895, 0.03, 0.685, 0.22), background 670ms linear 417ms;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
}

.comments-post .comments-area .comment .comment-body .comment-text .comment-reply-link:hover:before {
  transform: scale(1, 0.99999999) translateZ(0);
  -webkit-transform: scale(1, 0.99999999) translateZ(0);
  -moz-transform: scale(1, 0.99999999) translateZ(0);
  -ms-transform: scale(1, 0.99999999) translateZ(0);
  -o-transform: scale(1, 0.99999999) translateZ(0);
}

.comments-post .comments-area .comment .comment-body .comment-text .comment-reply-link:hover:after {
  opacity: 0;
  transition: 126.66666667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: 126.66666667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: 126.66666667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: 126.66666667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: 126.66666667ms opacity cubic-bezier(0.165, 0.84, 0.44, 1);
}

.comments-post .comments-area .comment .children {
  margin-left: 90px;
}

@media only screen and (max-width: 575px) {
  .comments-post .comments-area .comment .children {
    margin-left: 40px;
  }
}

@media only screen and (max-width: 400px) {
  .comments-post .comments-area .comment .children {
    margin-left: 20px;
  }
}

.comments-post .comments-form {
  position: relative;
  width: 100%;
  margin-top: var(--margin-padding);
}

/*--------------------------------------------------------------
## Archives
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Error
--------------------------------------------------------------*/
body.error404 {
  overflow: hidden;
}

body.error404 .ruy-header-hero {
  height: 100vh;
}

.admin-bar body.error404 .ruy-header-hero {
  top: 46px;
  height: calc(100vh - 46px);
}

@media screen and (min-width: 783px) {
  .admin-bar body.error404 .ruy-header-hero {
    top: 32px;
    height: calc(100vh - 32px);
  }
}

body.error404 .hero-img {
  filter: blur(7px);
  -webkit-filter: blur(7px);
}

body.error404 .title-error {
  font-size: 10vw;
  padding: 0;
  margin-bottom: 30px;
  line-height: 1;
}

body.error404 .title-error:after,
body.error404 .title-error:before {
  background-color: var(--theme-color);
  display: none;
}

body.error404 .title-error span {
  color: transparent;
  -webkit-text-stroke-color: var(--heading-color);
  -webkit-text-stroke-width: 2px;
}

body.error404 .sm-title-block:before {
  border-bottom: 4px solid var(--theme-color);
  top: -30px;
  content: "";
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 155px;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

body.error404 .sm-title-block span {
  margin-bottom: 30px;
  font-size: 14px;
}

/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
/* -------------------------------------------------------
                   Footer
-------------------------------------------------------- */
#ruy_footer {
  overflow: hidden;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  #ruy_footer .grid-col-1 {
    grid-column: 1/4;
  }
}

#ruy_footer.container .container,
#ruy_footer.container .ruy-container,
#ruy_footer.ruy-container .container,
#ruy_footer.ruy-container .ruy-container {
  padding-right: 0;
  padding-left: 0;
}

#ruy_footer h4.subtitle {
  margin-bottom: 20px;
  display: inline-block;
}

#ruy_footer h4.subtitle span {
  padding: 5px 10px;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 600;
}

#ruy_footer h4.subtitle span.background-revere {
  background-color: rgb(174 251 244 / 50%);
}

#ruy_footer ul.menu li a,
#ruy_footer ul.sub-menu li a {
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.8px;
}

#ruy_footer ul.menu li:not(:last-child) a,
#ruy_footer ul.sub-menu li:not(:last-child) a {
  margin-bottom: 10px;
}

#ruy_footer .list-inline-block ul.menu li,
#ruy_footer .list-inline-block ul.sub-menu li {
  display: inline-block;
}

#ruy_footer .list-inline-block ul.menu li a,
#ruy_footer .list-inline-block ul.sub-menu li a {
  margin-bottom: 0;
}

#ruy_footer .list-inline-block ul.menu li:not(:last-of-type),
#ruy_footer .list-inline-block ul.sub-menu li:not(:last-of-type) {
  margin-left: 5px;
}

#ruy_footer .textwidget>*:not(:last-child),
#ruy_footer .textwidget p:not(:last-child) {
  margin-bottom: 10px;
}

#ruy_footer .col-contact p {
  font-size: 14px;
}

#ruy_footer .col-contact p strong {
  color: var(--heading-color);
}

#ruy_footer .col-contact p span {
  margin-right: 5px;
  margin-left: 5px;
}

#ruy_footer .col-contact p a {
  text-transform: none;
}

.elementor-social-icon i {
  --e-social-icon-icon-color: $heading-color;
}

.ruy-equal-height.h-100>.elementor-widget-container {
  height: 100%;
}

@media only screen and (max-width: 991px) {
  .ruy-equal-height.h-100.ruy-position-tablet-relative {
    height: auto;
  }
}

@media only screen and (max-width: 767px) {
  .ruy-equal-height.h-100.ruy-position-mobile-relative {
    height: auto;
  }
}

/**
    Position
 */
@media only screen and (min-width: 992px) {
  .ruy-p-relative {
    position: relative;
  }

  .ruy-p-absolute {
    position: absolute;
  }
}

@media only screen and (max-width: 991px) {
  .ruy-tablet-p-relative {
    position: relative;
  }

  .ruy-tablet-p-absolute {
    position: absolute;
  }
}

@media only screen and (max-width: 767px) {
  .ruy-mobile-p-relative {
    position: relative;
  }

  .ruy-mobile-p-absolute {
    position: absolute;
  }
}

.elementor-align-justify .ruy-heading-title.border-section-bottom {
  width: 100%;
}

@media only screen and (max-width: 991px) {

  .elementor-tablet-align-center .ruy-heading-title.border-section-bottom,
  .elementor-tablet-align-right .ruy-heading-title.border-section-bottom,
  .elementor-tablet-align-left .ruy-heading-title.border-section-bottom {
    width: auto !important;
  }

  .elementor-tablet-align-justify .ruy-heading-title.border-section-bottom {
    width: 100% !important;
  }
}

@media only screen and (max-width: 767px) {

  .elementor-mobile-align-center .ruy-heading-title.border-section-bottom,
  .elementor-mobile-align-right .ruy-heading-title.border-section-bottom,
  .elementor-mobile-align-left .ruy-heading-title.border-section-bottom {
    width: auto !important;
  }

  .elementor-mobile-align-justify .ruy-heading-title.border-section-bottom {
    width: 100% !important;
  }
}

/**
    text align
 */
.elementor-align-center .line-under:after,
.elementor-align-center .img-box-parallax[data-ruy-grid],
.elementor-align-center .max-w570,
.elementor-align-center .ruy-icon,
.elementor-align-center .ruy-icon svg,
.elementor-align-center .max-w750,
.elementor-align-center .ruy-auto {
  margin-right: auto;
  margin-left: auto;
}

.elementor-align-right .line-under:after,
.elementor-align-right .img-box-parallax[data-ruy-grid],
.elementor-align-right .max-w570,
.elementor-align-right .ruy-icon,
.elementor-align-right .ruy-icon svg,
.elementor-align-right .max-w750,
.elementor-align-right .ruy-auto {
  margin-left: auto;
}

@media only screen and (max-width: 991px) {

  .elementor-tablet-align-center .line-under:after,
  .elementor-tablet-align-center .img-box-parallax[data-ruy-grid],
  .elementor-tablet-align-center .max-w570,
  .elementor-tablet-align-center .ruy-icon,
  .elementor-tablet-align-center .ruy-icon svg,
  .elementor-tablet-align-center .max-w750,
  .elementor-tablet-align-center .ruy-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .elementor-tablet-align-right .line-under:after,
  .elementor-tablet-align-right .img-box-parallax[data-ruy-grid],
  .elementor-tablet-align-right .max-w570,
  .elementor-tablet-align-right .ruy-icon,
  .elementor-tablet-align-right .ruy-icon svg,
  .elementor-tablet-align-right .max-w750,
  .elementor-tablet-align-right .ruy-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .elementor-tablet-align-left .line-under:after,
  .elementor-tablet-align-left .img-box-parallax[data-ruy-grid],
  .elementor-tablet-align-left .max-w570,
  .elementor-tablet-align-left .ruy-icon,
  .elementor-tablet-align-left .ruy-icon svg,
  .elementor-tablet-align-left .max-w750,
  .elementor-tablet-align-left .ruy-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
}

@media only screen and (max-width: 767px) {

  .elementor-mobile-align-center .line-under:after,
  .elementor-mobile-align-center .img-box-parallax[data-ruy-grid],
  .elementor-mobile-align-center .max-w570,
  .elementor-mobile-align-center .ruy-icon,
  .elementor-mobile-align-center .ruy-icon svg,
  .elementor-mobile-align-center .max-w750,
  .elementor-mobile-align-center .ruy-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .elementor-mobile-align-right .line-under:after,
  .elementor-mobile-align-right .img-box-parallax[data-ruy-grid],
  .elementor-mobile-align-right .max-w570,
  .elementor-mobile-align-right .ruy-icon,
  .elementor-mobile-align-right .ruy-icon svg,
  .elementor-mobile-align-right .max-w750,
  .elementor-mobile-align-right .ruy-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
  }

  .elementor-mobile-align-left .line-under:after,
  .elementor-mobile-align-left .img-box-parallax[data-ruy-grid],
  .elementor-mobile-align-left .max-w570,
  .elementor-mobile-align-left .ruy-icon,
  .elementor-mobile-align-left .ruy-icon svg,
  .elementor-mobile-align-left .max-w750,
  .elementor-mobile-align-left .ruy-auto {
    margin-left: 0 !important;
    margin-right: auto !important;
  }
}

div.effect-popup,
.has-popup div.img-box-parallax,
.has-popup div.pop-up {
  cursor: pointer;
}

.ruy-bg-section.p-absolute.w-100.h-100.over-hidden.top-0.left-0 {
  z-index: -1;
  pointer-events: none;
}

.ruy-bg-section.p-absolute.w-100.h-100.over-hidden.top-0.left-0 [data-ruy-grid=moveUp].h-100 {
  height: 100%;
}

.ruy-right-container .ruy-bg-section.p-absolute.w-100.h-100.over-hidden.top-0.left-0 {
  width: calc(100% - var(--ruy-gap-container));
  left: var(--ruy-gap-container);
}

.elementor img.cover-bg-img {
  height: 100%;
}

.ruy-swiper-parallax-transform {
  transition-property: opacity, transform, visibility;
}

.ruy-mb-no-space {
  margin-bottom: 0 !important;
}

.ruy-bg-mask {
  position: absolute;
  left: 0;
  width: 100%;
}

.ruy-bg-mask:not(.z-index-1) {
  z-index: -1;
}

.filter-swiper-blur .swiper-slide:not(.swiper-slide-active) {
  filter: blur(3px);
}

ul.list-style-none {
  list-style: none;
}

#wp-admin-bar-elementor_edit_page .elementor-edit-link-title {
  display: initial;
}

.cover-bg {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.ruy-column-gap-custom>div:not(.hdev-element-wrap) {
  display: grid !important;
  align-items: stretch;
}

@media only screen and (max-width: 575px) {
  .ruy-column-gap-custom>div:not(.hdev-element-wrap) {
    grid-template-columns: repeat(1, 1fr) !important;
  }
}

.ruy-column-gap-custom>div:not(.hdev-element-wrap)>.elementor-widget {
  margin-bottom: 0 !important;
}

@media only screen and (min-width: 768px) {
  .ruy-isotope.ruy-masonry-grid .grid-item:nth-of-type(2) {
    margin-top: calc(80px + var(--ruy-col-item, 0px));
  }
}

@media only screen and (min-width: 992px) {
  .ruy-isotope.ruy-masonry-grid.ruy-masonry-grid-2 .grid-item:nth-of-type(3) {
    margin-top: calc(120px + var(--ruy-col-item, 0px));
  }
}

.move-circle:not(.p-absolute) {
  position: relative;
}

@media only screen and (min-width: 992px) {
  .move-circle {
    background-color: transparent;
    border-color: transparent !important;
  }
}

.move-circle .icon-circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  z-index: -1;
  border: inherit;
  -webkit-border-radius: inherit;
  -moz-border-radius: inherit;
  -ms-border-radius: inherit;
  -o-border-radius: inherit;
}

.move-circle.background-main .icon-circle {
  background-color: var(--bg-color);
}

.move-circle.background-section .icon-circle {
  background-color: var(--assistant-color);
}

.move-circle.background-theme .icon-circle {
  background-color: var(--theme-color);
}

.move-circle.border-color-default .icon-circle {
  border-color: var(--border-color);
}

.move-circle.border-color-main .icon-circle {
  border-color: var(--bg-color);
}

.move-circle.border-color-assistant .icon-circle {
  border-color: var(--assistant-color);
}

.move-circle.border-color-theme-color .icon-circle {
  border-color: var(--theme-color);
}

.move-circle.border-color-heading .icon-circle {
  border-color: var(--heading-color);
}

.move-circle.border-color-body .icon-circle {
  border-color: var(--font-color);
}

.move-circle.border-circle {
  border: 1px solid var(--heading-color);
}

.ruy-lazy-loading {
  filter: blur(13px);
  -webkit-filter: blur(13px);
}

img:not(.ruy-lazy-loading) {
  transition: filter 1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: filter 1s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: filter 1s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: filter 1s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: filter 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.ruy-ajax-effect {
  overflow: hidden;
}

.ruy-icon i,
.ruy-icon .fas {
  font-size: var(--ruy-icon-size, 20px);
  color: #FFF;
}

.ruy-icon svg {
  width: var(--ruy-icon-size, 20px);
  height: var(--ruy-icon-size, 20px);
}

.ruy-icon svg,
.ruy-icon svg path {
  fill: var(--ruy-color-icon, var(--theme-color));
}

.text-center .ruy-icon {
  margin: 0 auto;
}

.ruy-icon-theme-color {
  --ruy-color-icon: var(--theme-color);
}

.ruy-icon-heading-color {
  --ruy-color-icon: var(--heading-color);
}

.ruy-icon-body-color {
  --ruy-color-icon: var(--font-color);
}

.ruy-icon-border-color {
  --ruy-color-icon: var(--border-color);
}

.ruy-icon-assistant-color {
  --ruy-color-icon: var(--assistant-color);
}

.ruy-icon-main-color {
  --ruy-color-icon: var(--bg-color);
}

.button-load-more {
  transition-property: padding, border-radius, background;
  transition-duration: 1s;
  text-align: center;
  cursor: pointer;
  padding: 15px 40px;
  margin-top: var(--ruy-row-item);
  font-size: 14px;
  color: var(--heading-color);
  letter-spacing: 2px;
  text-transform: uppercase;
  border-width: 1px;
  border-style: solid;
}

.button-load-more span:not(.icon-circle) {
  z-index: 1;
}

.button-load-more .ruy-load-progress-ajax,
.button-load-more .progress-no-more {
  display: none;
}

.button-load-more.ruy-loading {
  border-radius: 3px;
  padding: 10px 20px;
}

.button-load-more.ruy-loading .ruy-load-progress-ajax {
  display: block;
}

.button-load-more.ruy-loading .progress-text {
  display: none;
}

.ruy-grid-layout {
  --ruy-width-item: 1;
  --ruy-col-item: 30px;
  --ruy-row-item: 50px;
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(-1 * var(--ruy-col-item));
  margin-top: calc(-1 * var(--ruy-row-item));
}

@media only screen and (max-width: 575px) {
  .ruy-grid-layout:not(.ruy-n-default) {
    --ruy-width-item: 1 !important;
  }
}

.ruy-grid-layout>.grid-item {
  flex: 0 0 calc((100% / var(--ruy-width-item)) - var(--ruy-col-item));
  margin-left: var(--ruy-col-item);
  margin-top: var(--ruy-row-item);
}

.ruy-grid-layout.full-width-last-item:not(.ruy-isotope)>.grid-item {
  flex-grow: 1;
}

.ruy-grid-layout:not(.full-width-last-item)>.grid-item {
  max-width: calc((100% / var(--ruy-width-item)) - var(--ruy-col-item));
  width: 100%;
  overflow: hidden;
}

.list-with-number {
  counter-reset: workcounter;
}

.list-with-number .number-item {
  position: relative;
}

.list-with-number .number-item:before {
  counter-increment: workcounter;
  content: counters(workcounter, ".", decimal-leading-zero);
  position: absolute;
  line-height: initial;
}

ul.ruy-list {
  list-style: none;
  --ruy-icon-size: 13px;
}

ul.ruy-list .list-item {
  display: flex;
  align-items: center;
}

ul.ruy-list .list-item.background-main,
ul.ruy-list .list-item .background-section,
ul.ruy-list .list-item .background-theme {
  padding: 8px 20px;
}

.ruy-grid-layout {
  --ruy-width-item: 1;
  --ruy-col-item: 30px;
  --ruy-row-item: 50px;
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(-1 * var(--ruy-col-item));
  margin-top: calc(-1 * var(--ruy-row-item));
}

@media only screen and (max-width: 575px) {
  .ruy-grid-layout:not(.ruy-n-default) {
    --ruy-width-item: 1 !important;
  }
}

.ruy-grid-layout>.grid-item {
  flex: 0 0 calc((100% / var(--ruy-width-item)) - var(--ruy-col-item));
  margin-left: var(--ruy-col-item);
  margin-top: var(--ruy-row-item);
}

.ruy-grid-layout.full-width-last-item:not(.ruy-isotope)>.grid-item {
  flex-grow: 1;
}

.ruy-grid-layout:not(.full-width-last-item)>.grid-item {
  max-width: calc((100% / var(--ruy-width-item)) - var(--ruy-col-item));
  width: 100%;
  overflow: hidden;
}

.ruy-background-inherit,
.ruy-background-inherit .background-main,
.ruy-background-inherit .background-section,
.ruy-background-inherit .background-theme,
.ruy-def-btn,
.ruy-def-btn .background-main,
.ruy-def-btn .background-section,
.ruy-def-btn .background-theme {
  background-color: transparent;
}

.ruy-background-inherit .background-main .ruy-bg,
.ruy-background-inherit .background-main .ruy-bg-after:after,
.ruy-background-inherit .background-main .ruy-bg-before:before,
.ruy-background-inherit.background-main .ruy-bg,
.ruy-background-inherit.background-main .ruy-bg-after:after,
.ruy-background-inherit.background-main .ruy-bg-before:before,
.ruy-def-btn .background-main .ruy-bg,
.ruy-def-btn .background-main .ruy-bg-after:after,
.ruy-def-btn .background-main .ruy-bg-before:before,
.ruy-def-btn.background-main .ruy-bg,
.ruy-def-btn.background-main .ruy-bg-after:after,
.ruy-def-btn.background-main .ruy-bg-before:before {
  background-color: var(--bg-color);
}

.ruy-background-inherit .background-section .ruy-bg,
.ruy-background-inherit .background-section .ruy-bg-after:after,
.ruy-background-inherit .background-section .ruy-bg-before:before,
.ruy-background-inherit.background-section .ruy-bg,
.ruy-background-inherit.background-section .ruy-bg-after:after,
.ruy-background-inherit.background-section .ruy-bg-before:before,
.ruy-def-btn .background-section .ruy-bg,
.ruy-def-btn .background-section .ruy-bg-after:after,
.ruy-def-btn .background-section .ruy-bg-before:before,
.ruy-def-btn.background-section .ruy-bg,
.ruy-def-btn.background-section .ruy-bg-after:after,
.ruy-def-btn.background-section .ruy-bg-before:before {
  background-color: var(--assistant-color);
}

.ruy-background-inherit .background-theme .ruy-bg,
.ruy-background-inherit .background-theme .ruy-bg-after:after,
.ruy-background-inherit .background-theme .ruy-bg-before:before,
.ruy-background-inherit.background-theme .ruy-bg,
.ruy-background-inherit.background-theme .ruy-bg-after:after,
.ruy-background-inherit.background-theme .ruy-bg-before:before,
.ruy-def-btn .background-theme .ruy-bg,
.ruy-def-btn .background-theme .ruy-bg-after:after,
.ruy-def-btn .background-theme .ruy-bg-before:before,
.ruy-def-btn.background-theme .ruy-bg,
.ruy-def-btn.background-theme .ruy-bg-after:after,
.ruy-def-btn.background-theme .ruy-bg-before:before {
  background-color: var(--theme-color);
}

.background-revere {
  background-color: var(--assistant-color);
}

.background-section .background-revere {
  background-color: var(--bg-color);
}

ul.intro-project-list {
  list-style: none;
}

ul.intro-project-list li {
  margin-bottom: 0;
}

@media only screen and (min-width: 992px) {
  .list-with-number ul.intro-project-list li {
    padding-left: 60px;
  }
}

@media only screen and (max-width: 991px) {
  .list-with-number ul.intro-project-list li {
    padding-left: 30px;
  }
}

ul.intro-project-list li .title-list-project {
  letter-spacing: 3px;
}

ul.intro-project-list li h5.title-list-project+p.description-list-project {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
}

.list-with-number ul.intro-project-list .number-item:before {
  left: 0;
  top: 0;
}

.blackruy-media-swiper .content {
  width: 80px;
  z-index: 3;
}

.blackruy-media-swiper .content a {
  border-radius: 50%;
}

.ruy-compare-container {
  position: relative;
  height: 500px;
}

.ruy-compare-container .img-comp-img,
.ruy-compare-container .img-overlay,
.ruy-compare-container .ruy-handle-slider,
.ruy-compare-container .ruy-handle-slider:after,
.ruy-compare-container .ruy-handle-slider:before,
.ruy-compare-container .ruy-circle,
.ruy-compare-container .ruy-circle:after,
.ruy-compare-container .ruy-circle:before {
  position: absolute;
}

.ruy-compare-container .img-comp-img,
.ruy-compare-container .ruy-handle-slider,
.ruy-compare-container .img-overlay {
  height: 100%;
}

.ruy-compare-container .img-comp-img {
  width: 100%;
  overflow: hidden;
}

.ruy-compare-container .img-comp-img img {
  display: block;
  vertical-align: middle;
}

.ruy-compare-container .ruy-handle-slider {
  top: 0;
  width: 35px;
  z-index: 40;
  pointer-events: none;
}

.ruy-compare-container .ruy-handle-slider:before,
.ruy-compare-container .ruy-handle-slider:after,
.ruy-compare-container .ruy-handle-slider .ruy-circle:before,
.ruy-compare-container .ruy-handle-slider .ruy-circle:after {
  content: "";
}

.ruy-compare-container .ruy-handle-slider:before,
.ruy-compare-container .ruy-handle-slider:after {
  background: white;
  width: 3px;
  left: 50%;
  transform: translateX(-50%);
  height: calc(50% - 35px / 2);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
}

.ruy-compare-container .ruy-handle-slider:before {
  top: 0;
}

.ruy-compare-container .ruy-handle-slider:after {
  bottom: 0;
}

.ruy-compare-container .ruy-handle-slider .ruy-circle {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 3px solid #fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: all;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.ruy-compare-container .ruy-handle-slider .ruy-circle:before,
.ruy-compare-container .ruy-handle-slider .ruy-circle:after {
  width: 0;
  height: 0;
  border: 6px inset transparent;
  top: 50%;
  margin-top: -6px;
}

.ruy-compare-container .ruy-handle-slider .ruy-circle:before {
  border-right: 6px solid #fff;
  left: 50%;
  margin-left: -17px;
}

.ruy-compare-container .ruy-handle-slider .ruy-circle:after {
  border-left: 6px solid #fff;
  right: 50%;
  margin-right: -17px;
}

.ruy-compare-container .img-overlay {
  width: 100%;
  left: 0;
  top: 0;
  z-index: 39;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.ruy-compare-container .img-overlay:after,
.ruy-compare-container .img-overlay:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.6);
  color: #000;
  line-height: 38px;
  padding: 0 20px;
  border-radius: 2px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
}

.ruy-compare-container .img-overlay:before {
  content: attr(data-before);
  left: 10px;
}

.ruy-compare-container .img-overlay:after {
  content: attr(data-after);
  right: 10px;
}

.ruy-compare-container:hover .img-overlay {
  opacity: 1;
}

.ruy-service .service_title {
  text-transform: uppercase;
  letter-spacing: 0.4px;
  font-weight: 600;
  line-height: 24px;
  font-size: 20px;
}

.ruy-service .service-item-inner.border-style:not(.p-20),
.ruy-service .service-item-inner.background-theme,
.ruy-service .service-item-inner.background-main,
.ruy-service .service-item-inner.background-section {
  padding: 30px 30px;
  background: #ceceeb;
}

.ruy-service .number-item:before {
  right: 45px;
  top: 50px;
  font-size: 7vw;
  line-height: 1;
  font-family: var(--heading-font);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--border-color);
  opacity: 0.2;
  z-index: 2;
  pointer-events: none;
}

@media only screen and (min-width: 768px) {
  .ruy-service .service-item.border-left {
    padding-left: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .ruy-service .service-item.border-left {
    border-width: 0;
  }
}

.ruy-service .service-item.border-bottom {
  padding-bottom: 40px;
}

.ruy-service .service-item ul {
  list-style: none;
  line-height: 1.3;
}

.ruy-service .service-item ul li {
  margin-bottom: 10px;
}

.icon-left .ruy-service .service-item .service-item-inner,
.icon-right .ruy-service .service-item .service-item-inner {
  display: flex;
}

.icon-left .ruy-service .service-item .service-item-inner .ruy-icon:not(.ruy-bg-before),
.icon-right .ruy-service .service-item .service-item-inner .ruy-icon:not(.ruy-bg-before) {
  flex-shrink: 0;
}

.icon-left .ruy-service .service-item .service-item-inner .ruy-icon:not(.ruy-bg-before) {
  margin-right: 20px;
}

.icon-top .ruy-service .service-item .service-item-inner .ruy-icon:not(.ruy-bg-before) {
  padding-bottom: 20px;
}

.icon-right .ruy-service .service-item .service-item-inner .ruy-icon:not(.ruy-bg-before) {
  order: 2;
  margin-left: 20px;
}

@media only screen and (min-width: 992px) {
  .service-with-img .ruy-service .service-item {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 1;
    background-color: transparent;
  }

  .service-with-img .ruy-service .service-item .service_description {
    color: var(--heading-color);
  }

  .service-with-img .ruy-service .service-item,
  .service-with-img .ruy-service .service-item .ruy-def-btn {
    justify-content: center;
  }

  .service-with-img .ruy-service .service-item .service-item-inner {
    height: auto;
  }

  .service-with-img .ruy-service .service-item.active+.item-bg {
    opacity: 1;
  }

  .service-with-img .ruy-service .service_description {
    display: none;
  }

  .service-with-img .ruy-service .item-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0;
    transition: opacity 3s cubic-bezier(0.19, 1, 0.22, 1) 0ms, transform 2s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    -webkit-transition: opacity 3s cubic-bezier(0.19, 1, 0.22, 1) 0ms, transform 2s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    -moz-transition: opacity 3s cubic-bezier(0.19, 1, 0.22, 1) 0ms, transform 2s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    -ms-transition: opacity 3s cubic-bezier(0.19, 1, 0.22, 1) 0ms, transform 2s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
    -o-transition: opacity 3s cubic-bezier(0.19, 1, 0.22, 1) 0ms, transform 2s cubic-bezier(0.19, 1, 0.22, 1) 0ms;
  }
}

@media only screen and (max-width: 991px) {
  .service-with-img .ruy-service .service-item {
    height: auto !important;
  }

  .service-with-img .ruy-service .item-bg {
    display: none;
  }
}

.service-with-img .ruy-service {
  position: relative;
}

@media only screen and (max-width: 991px) {
  .service-with-img {
    margin-top: var(--margin-padding);
  }

  .service-with-img .ruy-service.hv-100 {
    height: inherit;
  }

  .service-with-img .ruy-service .service-item {
    border: 1px solid var(--border-color);
    padding: 60px 30px;
  }

  .service-with-img .ruy-bg-mask {
    display: none;
  }
}

.ruy-testimonials .testimonial-position {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

/* .ruy-testimonials .content-inner {
  display: flex;
} */

.ruy-testimonials .border-top {
  padding-top: 20px;
}

.ruy-testimonials .testimonial-inner .testimonial-inner-item.border-style,
.ruy-testimonials .testimonial-inner .testimonial-inner-item.background-section,
.ruy-testimonials .testimonial-inner .testimonial-inner-item.background-main,
.ruy-testimonials .testimonial-inner .testimonial-inner-item.background-theme {
  padding: 50px 30px;
}

.ruy-testimonials .testimonial-inner>svg {
  position: absolute;
  right: 0;
  top: 0;
  width: 247px;
  height: 192px;
  opacity: 0.3;
  fill: var(--assistant-color);
}

.background-section .ruy-testimonials .testimonial-inner>svg {
  fill: var(--bg-color);
}

[data-widget_type="ruy_testimonial.default"]:not(.quote-box-style) .ruy-testimonials .testimonial-inner>svg {
  display: none;
}

.elementor-widget-ruy_testimonial:not(.image-left-style) .ruy-testimonials .testimonial-inner .swiper-slide>.avatar {
  display: none;
}

@media only screen and (min-width: 768px) {
  .image-left-style .ruy-testimonials .testimonial-inner .content-inner .avatar {
    display: none;
  }

  .image-left-style .ruy-testimonials .testimonial-inner .content-inner .avatar+.box-text {
    margin-left: 0;
    text-align: inherit;
  }

  .image-left-style .ruy-testimonials .testimonial-inner .swiper-slide>.avatar {
    height: 80px;
    width: 80px;
    margin-bottom: 30px;
  }

  .image-left-style .ruy-testimonials .testimonial-inner .swiper-slide>.avatar,
  .image-left-style .ruy-testimonials .testimonial-inner .swiper-slide>.avatar img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
  }
}

@media only screen and (max-width: 767px) {
  .image-left-style .ruy-testimonials .testimonial-inner .swiper-slide>.avatar {
    display: none;
  }
}

.ruy-testimonials .content-inner .avatar {
  width: 60px;
  height: 60px;
}

.ruy-testimonials .content-inner .avatar,
.ruy-testimonials .content-inner .avatar img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.ruy-testimonials .content-inner .avatar+.box-text {
  margin-left: 10px;
  text-align: left;
}

.ruy-testimonials h4,
.ruy-testimonials h5 {
  font-family: var(--body-font);
  color: #4533ff;
}

.ruy-testimonials h4.sm-title-block {
  letter-spacing: 1.2px;
  font-size: 18px !important;
}

.ruy-testimonials .testimonial-name,
.ruy-testimonials .testimonial-content h4.sm-title-block {
  font-weight: 600;
}

.ruy-brand .brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  text-align: center;

}

@media only screen and (max-width: 767px) {
  .ruy-brand .brand-item {
    border: 1px solid var(--border-color);
  }
}

.ruy-brand .brand-item-inner {
  margin: auto;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

@media only screen and (min-width: 992px) {
  .ruy-brand .brand-item-inner {
    width: 175px;
  }
}

.ruy-brand .brand-item-inner img {
  margin: auto;
}

.ruy-brand .brand-link {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

@media only screen and (min-width: 992px) {
  .ruy-brand>.section-move-image {
    --ruy-width-item: 8;
    --ruy-col-item: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ruy-brand>.section-move-image {
    --ruy-width-item: 6;
    --ruy-col-item: 40px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ruy-brand>.section-move-image {
    --ruy-width-item: 5;
    --ruy-col-item: 30px;
  }
}

@media only screen and (max-width: 575px) {
  .ruy-brand>.section-move-image {
    --ruy-width-item: 2 !important;
    --ruy-col-item: 30px;
  }
}

.ruy-team .team-item-inner .box-img {
  position: relative;
  height: 450px;
  max-height: 450px;
  overflow: hidden;
}

.ruy-team .team-item-inner .box-img:before {
  z-index: 1;
}

.ruy-team .team-item-inner .box-img img {
  transition: transform 0.8s cubic-bezier(0.24, 0.87, 0.24, 0.89);
  -webkit-transition: transform 0.8s cubic-bezier(0.24, 0.87, 0.24, 0.89);
  -moz-transition: transform 0.8s cubic-bezier(0.24, 0.87, 0.24, 0.89);
  -ms-transition: transform 0.8s cubic-bezier(0.24, 0.87, 0.24, 0.89);
  -o-transition: transform 0.8s cubic-bezier(0.24, 0.87, 0.24, 0.89);
}

.ruy-team .team-item-inner .team-content {
  position: relative;
  margin-top: -58px;
  width: 100%;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-color);
  padding: 30px;
  z-index: 2;
}

.ruy-team .team-item-inner .text-name+.text-position {
  margin-top: 10px;
}

.ruy-team .team-item-inner .text-position,
.ruy-team .team-item-inner .text-name {
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.3s, opacity cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  -webkit-transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.3s, opacity cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  -moz-transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.3s, opacity cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  -ms-transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.3s, opacity cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
  -o-transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.3s, opacity cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.ruy-team .team-item-inner .text-position {
  font-weight: 400;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
}

.ruy-team .team-item-inner .team-socials {
  list-style: none;
  position: absolute;
  width: 100%;
  left: 0;
  opacity: 0;
  transform: translateY(-25px);
  -webkit-transform: translateY(-25px);
  -moz-transform: translateY(-25px);
  -ms-transform: translateY(-25px);
  -o-transform: translateY(-25px);
}

.ruy-team .team-item-inner .team-socials,
.ruy-team .team-item-inner .team-socials li a {
  transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.5s, opacity cubic-bezier(0.4, 0, 0.2, 1) 1s;
  -webkit-transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.5s, opacity cubic-bezier(0.4, 0, 0.2, 1) 1s;
  -moz-transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.5s, opacity cubic-bezier(0.4, 0, 0.2, 1) 1s;
  -ms-transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.5s, opacity cubic-bezier(0.4, 0, 0.2, 1) 1s;
  -o-transition: transform cubic-bezier(0.4, 0, 0.2, 1) 0.5s, opacity cubic-bezier(0.4, 0, 0.2, 1) 1s;
}

.ruy-team .team-item-inner .team-socials li a {
  position: relative;
  width: 50px;
  height: 50px;
}

.ruy-team .team-item-inner .team-socials li a:hover {
  border: 0;
}

.ruy-team .team-item-inner:hover img {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.ruy-team .team-item-inner:hover .text-name {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.ruy-team .team-item-inner:hover .text-position {
  transform: translateY(-25px);
  opacity: 0;
  -webkit-transform: translateY(-25px);
  -moz-transform: translateY(-25px);
  -ms-transform: translateY(-25px);
  -o-transform: translateY(-25px);
}

.ruy-team .team-item-inner:hover .team-socials {
  opacity: 1;
  transform: translateY(-32px);
  -webkit-transform: translateY(-32px);
  -moz-transform: translateY(-32px);
  -ms-transform: translateY(-32px);
  -o-transform: translateY(-32px);
}

.ruy-accordion {
  line-height: 1.2;
}

.ruy-accordion .accordion__answer {
  display: none;
  max-width: 400px;
  padding-top: 15px;
  padding-left: 45px;
}

.ruy-accordion .accordion__answer.active {
  display: block;
}

.ruy-accordion .accordion__item:not(:last-of-type) {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 30px;
}

.ruy-accordion .accordion__question {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.ruy-accordion .accordion__question:not(:first-of-type) {
  padding: 8px 15px 0 0;
}

.ruy-accordion .accordion__question .ruy-icon {
  margin-right: 15px;
}

.ruy-accordion .accordion__question h4 {
  font-weight: 600;
  margin-bottom: 0;
}

.ruy-accordion .accordion__question:before {
  content: "";
  position: absolute;
  display: inline-block;
  border: solid var(--theme-color);
  top: 40%;
  right: 0;
  transition: transform 0.2s linear;
  -webkit-transition: transform 0.2s linear;
  -moz-transition: transform 0.2s linear;
  -ms-transition: transform 0.2s linear;
  -o-transition: transform 0.2s linear;
}

.ruy-accordion .accordion__question:not(.expanded):before {
  transform: rotate(45deg);
  border-width: 0 2px 2px 0;
  padding: 3px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.ruy-accordion .accordion__question.expanded:before {
  border-width: 1px;
  width: 10px;
}

.ruy-accordion .number {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  margin-right: 15px;
  font-size: 14px;
}

.background-theme .ruy-accordion .number {
  background-color: var(--bg-color);
  color: var(--heading-color);
}

.ruy-skills-item {
  position: relative;
  width: 100%;
}

.ruy-skills-item .background-theme {
  --heading-color: inhert !important;
  --font-color: inhert !important;
}

.ruy-skills-item .bar-progress {
  position: relative;
  width: 100%;
  height: 10px;
}

.ruy-skills-item .bar-progress::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: var(--assistant-color);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.background-section .ruy-skills-item .bar-progress::before {
  background-color: var(--bg-color);
}

.ruy-skills-item .bar-progress .fill {
  position: absolute;
  width: 0;
  height: 100%;
}

.ruy-skills-item .bar-progress .fill:not(.background-section):not(.background-main):not(.background-theme):not(.background-heading) {
  background-image: url("../img/patterns.png");
}

.ruy-skills-item .bar-progress .fill.background-heading {
  background-color: var(--heading-color);
}

.ruy-skills-item .bar-progress .fill .number {
  position: absolute;
  top: -10px;
  right: -15px;
  font-family: var(--heading-font);
  color: var(--heading-color);
  text-shadow: 1px 1px 7px var(--bg-color);
}

.ruy-skills-item .bar-svg {
  text-align: center;
}

.ruy-skills-item .bar-svg .fill-bar {
  width: 160px;
  height: 160px;
  margin: auto;
  background-color: transparent;
}

.ruy-skills-item .bar-svg .fill-bar:before {
  content: "";
  position: absolute;
  width: 115px;
  height: 115px;
  background-color: var(--bg-color);
  opacity: 0.23;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.ruy-skills-item .bar-svg .fill-bar svg {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}

.ruy-skills-item .bar-svg .fill-bar .progress-bar__background {
  fill: none;
  stroke: var(--bg-color);
  stroke-width: 1.8;
  opacity: 0.23;
}

.ruy-skills-item .bar-svg .fill-bar .progress-bar__progress {
  fill: none;
  stroke-dasharray: 100 100;
  stroke-linecap: round;
  stroke-width: 1.8;
  stroke: var(--theme-color);
}

.ruy-skills-item .bar-svg .fill-bar.background-section .progress-bar__progress {
  stroke: var(--assistant-color);
}

.ruy-skills-item .bar-svg .fill-bar.background-main .progress-bar__progress {
  stroke: var(--bg-color);
}

.ruy-skills-item .bar-svg .fill-bar.background-heading .progress-bar__progress {
  stroke: var(--heading-color);
}

.ruy-skills-item .bar-svg .fill-bar .number.font-number {
  font-size: 30px;
}

.ruy-resume .resume-item {
  position: relative;
  padding-left: 20px;
}

@media only screen and (min-width: 992px) {
  .ruy-resume .resume-item:not(:last-of-type) {
    padding-bottom: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ruy-resume .resume-item:not(:last-of-type) {
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .ruy-resume .resume-item:not(:last-of-type) {
    padding-bottom: 20px;
  }
}

.ruy-resume .resume-item:not(:last-of-type):after {
  top: 20px;
  left: 4px;
  width: 1px;
  height: calc(100% - 24px);
  background-color: #9880ff;
}

.ruy-resume .resume-item:before,
.ruy-resume .resume-item:after {
  content: "";
  position: absolute;
}

.ruy-resume .resume-item:before {
  top: 1px;
  left: -3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #05B085;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.ruy-resume .resume-item .resume-position {
  font-family: var(--body-font);
  line-height: 1.6;
  font-weight: 500;
  color: var(--font-color);
}

.ruy-grid-masonry .box-item {
  transition: transform 0.3s;
  -webkit-transition: transform 0.3s;
  -moz-transition: transform 0.3s;
  -ms-transition: transform 0.3s;
  -o-transition: transform 0.3s;
}

.ruy-grid-masonry .box-item:hover {
  transform: translateY(-3px);
  -webkit-transform: translateY(-3px);
  -moz-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  -o-transform: translateY(-3px);
}

.ruy-grid-masonry .box-item,
.ruy-grid-masonry .box-item .img-box-parallax {
  position: relative;
}

.ruy-grid-masonry .box-item .img-box-parallax .cap {
  bottom: 2px;
}

.ruy-grid-masonry .ruy-title {
  margin-top: 15px;
}

.box-grid-number .ruy-grid-masonry {
  counter-reset: workcounter;
}

.box-grid-number .ruy-grid-masonry .box-item .ruy-title span:before {
  counter-increment: workcounter;
  content: counters(workcounter, ".", decimal-leading-zero);
  position: relative;
  display: inline-block;
  padding: 5px;
  background-color: var(--theme-color);
  color: var(--bg-color);
  font-size: 14px;
  font-weight: 400;
  border-radius: 5px;
  margin-right: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.ruy-tabs .tabs__button {
  background-color: var(--assistant-color);
  padding: 15px 0;
}

.ruy-tabs .tabs__button ul {
  list-style: none;
}

.ruy-tabs .tabs__button ul li {
  cursor: pointer;
  line-height: inherit;
  padding: 10px 20px;
  margin-bottom: 0;
  font-size: 14px;
}

.ruy-tabs .tabs__button ul li.active {
  background-color: var(--bg-color);
}

.ruy-tabs .tabs__button ul li:not(:last-child) {
  margin-right: 5px;
}

.right-box-image,
.left-box-image {
  position: relative;
}

@media only screen and (min-width: 992px) {

  .right-box-image .box-img,
  .right-box-image .img-box-parallax,
  .left-box-image .box-img,
  .left-box-image .img-box-parallax {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
  }
}

.right-box-image {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.right-box-image .box-info {
  position: relative;
}

@media only screen and (min-width: 992px) {
  .right-box-image {
    --box-padding: 80px;
  }

  .right-box-image .box-img {
    width: 70%;
    z-index: 1;
  }

  .right-box-image .box-info {
    width: 40%;
    margin-left: auto;
    z-index: 2;
  }
}

@media only screen and (max-width: 991px) {
  .right-box-image .box-img {
    position: relative;
    width: 100%;
  }

  .right-box-image .box-info {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.box-under-bottom-img {
  position: relative;
  overflow: hidden;
}

@media only screen and (min-width: 992px) {
  .box-under-bottom-img .content {
    margin-top: -130px;
  }
}

@media only screen and (max-width: 991px) {
  .box-under-bottom-img .content {
    border-radius: 0;
  }
}

.box-under-img {
  position: relative;
  overflow: hidden;
}

.box-under-img .content {
  position: absolute;
  top: 0;
}

@media only screen and (min-width: 992px) {
  .box-under-img .content {
    width: 50%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .box-under-img .content {
    width: 65%;
  }
}

@media only screen and (min-width: 768px) {
  .box-under-img .content {
    left: 0;
  }
}

@media only screen and (min-width: 992px) {
  .section-move-image {
    --ruy-width-item: 3;
    --ruy-col-item: 60px;
    --ruy-row-item: 50px;
  }
}

@media only screen and (max-width: 991px) {
  .section-move-image {
    --ruy-width-item: 2.5;
    --ruy-col-item: 30px;
    --ruy-row-item: 50px;
  }
}

@media only screen and (max-width: 767px) {
  .section-move-image {
    --ruy-width-item: 1.5;
  }
}

.about-section .box-creative {
  padding: 0 0 30px 60px;
}

.about-section .box-creative .img-top,
.about-section .box-creative .img-bottom {
  position: absolute;
  min-width: 190px;
}

.about-section .box-creative .img-top {
  width: 190px;
  top: 30px;
  left: 0;
}

.about-section .box-creative .img-bottom {
  left: 25px;
  width: 300px;
  height: 150px;
  bottom: 0;
}

.about-section .experience {
  border: 1px solid var(--border-color);
  padding: 30px 15px 15px;
}

@media only screen and (min-width: 576px) {
  .about-section .experience {
    display: flex;
    align-items: end;
  }

  .about-section .experience .title-block {
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid var(--border-color);
  }

  .about-section .experience .exp-number {
    transform: scale3d(1, 1.2, 1);
    font-size: 150px;
    line-height: 120px;
    -webkit-transform: scale3d(1, 1.2, 1);
    -moz-transform: scale3d(1, 1.2, 1);
    -ms-transform: scale3d(1, 1.2, 1);
    -o-transform: scale3d(1, 1.2, 1);
  }
}

@media only screen and (max-width: 991px) {
  .about-section.about-3 .experience {
    padding: 15px;
  }

  .about-section.about-3 .experience .exp-number {
    font-size: 90px;
    line-height: 90px;
  }

  .about-section.about-3 .experience .title-block {
    font-size: 16px;
  }
}

.about-one .box-info {
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 768px) {
  .about-one .box-info .title .text-right {
    padding-left: 50%;
  }

  .about-one .box-img {
    position: relative;
  }

  .about-one .box-img img {
    position: absolute;
    height: calc(100% + 40px);
  }

  .about-one .box-img-bottom {
    padding-right: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .about-one .box-info .d-grid .ruy-def-btn {
    order: 2;
  }

  .about-one .box-info .d-grid p {
    order: 1;
    text-align: left;
    margin-top: 10px;
  }

  .about-one .box-info .title {
    font-size: 30px;
    line-height: inherit;
  }

  .about-one .box-info .title span {
    display: inline-block;
    width: auto;
    text-align: left;
  }

  .about-one .bg-mask,
  .about-one .box-img {
    display: none;
  }
}

.about-2 img {
  width: 100%;
  height: auto;
}

.about-2 .box-info,
.about-2 .box-img {
  position: relative;
  z-index: 2;
}

@media only screen and (min-width: 768px) {
  .about-2 .bg-mask {
    width: calc(100% - 120px);
    height: calc(100% - 120px);
  }

  .about-2 .box-img {
    margin-right: 60px;
  }

  .about-2 .box-img img:first-child {
    padding-right: 30px;
  }

  .about-2 .box-img img:last-child {
    padding: 40px 0 0 120px;
  }

  .about-2 .box-info .section-title.mt-section {
    padding-right: 90px;
  }

  .about-2 .box-info .pr-120 {
    padding-right: 120px;
  }

  .about-2 .box-info img.mt-20 {
    margin-left: -30px;
  }
}

@media only screen and (max-width: 767px) {
  .about-2 .bg-mask {
    width: 100%;
    height: 100%;
  }

  .about-2 .box-info {
    padding: 0 30px var(--margin-padding);
  }

  .about-2 .box-img {
    display: none;
  }
}

.about-personal {
  position: relative;
}

.about-personal .box-content-inner {
  padding: 60px 40px;
}

@media only screen and (min-width: 992px) {
  .about-personal {
    display: flex;
  }

  .about-personal .box-img {
    flex: 0 0 45%;
    max-width: 45%;
    width: 45%;
  }

  .about-personal .box-img .img-box-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .about-personal .box-content {
    flex: 0 0 55%;
    max-width: 55%;
    width: 55%;
  }
}

@media only screen and (max-width: 991px) {
  .about-personal .box-content {
    padding: 0;
  }

  .about-personal .img-box-parallax,
  .about-personal img {
    max-height: 70vh;
  }
}

.section-video .ruy-btn {
  width: 120px;
  height: 120px;
  border-radius: 50% 50% 50% 50%;
  align-items: center;
  justify-content: center;
  -webkit-border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  -ms-border-radius: 50% 50% 50% 50%;
  -o-border-radius: 50% 50% 50% 50%;
}

.section-video .ruy-bg-section {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-video .ruy-bg-section .img-box-parallax {
  position: relative;
}

@media only screen and (max-width: 575px) {
  .section-video .content {
    display: flex;
    justify-content: center;
  }

  .section-video .animate-left,
  .section-video .animate-right {
    display: none;
  }
}

@media only screen and (max-width: 991px) {
  .about-arc .ruy-service {
    display: flex;
  }

  .about-arc .ruy-service .service-item {
    padding: 10px 20px;
  }
}

.about-arc .box-img {
  position: relative;
}

.about-arc .box-img .img-first {
  position: relative;
  z-index: 2;
  padding: 0 30px 80px 20px;
  margin-left: auto;
}

.about-arc .box-img .img-last {
  position: absolute;
  padding-top: 120px;
  bottom: 30px;
  left: 30px;
  z-index: 3;
}

.about-arc .box-img .ruy-bg-mask {
  background-image: url("../img/dots-dark.png");
}

@media only screen and (min-width: 992px) {
  .about-arc .box-img .img-last {
    width: 45%;
  }

  .about-arc .box-img .img-first {
    width: 65%;
  }
}

@media only screen and (max-width: 991px) {
  .about-arc .box-img .img-last {
    width: 65%;
  }
}

@media only screen and (min-width: 768px) {
  .about-arc .box-img .img-first {
    width: 65%;
  }
}

@media only screen and (max-width: 767px) {
  .about-arc .box-img .img-first {
    padding-bottom: 30px;
  }

  .about-arc .box-img .img-last {
    display: none;
  }
}

@media only screen and (max-width: 575px) {
  .about-arc .box-img .img-first {
    padding: 0;
  }
}

@media only screen and (min-width: 768px) {
  .about-award .grid-half-1 {
    grid-template-columns: 40% 60%;
  }
}

@media only screen and (max-width: 991px) {
  .about-award.ruy_testimonial .grid-half-1 {
    grid-template-columns: 100%;
  }
}

@media only screen and (min-width: 768px) {

  .about-award .box-right.background-main,
  .about-award .box-right.background-section,
  .about-award .box-right .background-theme {
    margin-top: -180px;
    padding: 120px 60px;
  }
}

@media only screen and (max-width: 767px) {

  .about-award .box-right.background-main,
  .about-award .box-right.background-section,
  .about-award .box-right .background-theme {
    padding: var(--box-padding);
    margin-bottom: var(--margin-padding);
  }
}

.about-resume .box-img .img-left {
  margin-bottom: 60px;
}

.about-resume .box-img .img-right img {
  height: 80vh;
}

@media only screen and (min-width: 992px) {
  .about-resume .box-img .img-left {
    margin-left: 100px;
  }

  .about-resume .box-img .img-right {
    margin-left: -100px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-resume .box-img .img-left {
    transform: translateX(60px);
    -webkit-transform: translateX(60px);
    -moz-transform: translateX(60px);
    -ms-transform: translateX(60px);
    -o-transform: translateX(60px);
  }
}

@media only screen and (min-width: 768px) {
  .about-resume .box-img .img-right {
    margin-top: 60px;
  }
}

@media only screen and (max-width: 767px) {
  .about-resume .box-img .img-left {
    display: none;
  }
}

@media only screen and (min-width: 768px) {
  .ruy-award:not(.award-block) .award-item:not(:last-of-type) {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid var(--border-color);
  }
}

@media only screen and (max-width: 767px) {
  .ruy-award:not(.award-block) .award-item:not(:last-of-type) {
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
  }
}

.ruy-award.award-block .award-item {
  display: flex;
  align-items: center;
}

@media only screen and (min-width: 576px) {
  .ruy-award.award-block .award-item .content-award {
    padding-left: 30px;
    margin-left: 10px;
    border-left: 1px solid var(--border-color);
  }
}

@media only screen and (max-width: 575px) {
  .ruy-award.award-block .award-item {
    flex-direction: column;
    align-items: start;
  }

  .ruy-award.award-block .award-item .content-award {
    margin-top: 10px;
  }
}

.ruy-award.award-block .award-item .award-num {
  min-width: var(--width-award);
  width: auto;
}

@media only screen and (min-width: 992px) {
  .ruy-award.award-block .award-item .award-num {
    --width-award: 15%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ruy-award.award-block .award-item .award-num {
    --width-award: 20%;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .ruy-award.award-block .award-item .award-num {
    --width-award: 13%;
    margin-right: 10px;
  }
}

.ruy-grid-list-toggle {
  float: left;
  margin-top: 5px;
}

.ruy-grid-list-toggle+.woocommerce-result-count {
  margin: 0 15px 30px;
  line-height: 32px;
}

.ruy-grid-list-toggle a {
  width: 20px;
  height: 20px;
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -ms-transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.ruy-grid-list-toggle a svg g,
.ruy-grid-list-toggle a svg path {
  fill: var(--font-color);
  opacity: 0.5;
}

.ruy-grid-list-toggle a.active svg g,
.ruy-grid-list-toggle a.active svg path {
  fill: var(--heading-color);
  opacity: 1;
}

.ruy-grid-list-toggle a:hover {
  transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
}

.woocommerce .woocommerce-ordering select {
  border-radius: 0;
  height: 37px;
  line-height: 37px;
  padding-left: 15px;
  padding-right: 15px;
  border: 1px solid var(--border-color);
}

.woocommerce .woocommerce-ordering {
  margin-bottom: 30px;
}

.woocommerce .blackruy-product-image {
  overflow: hidden;
  width: 100%;
}

.woocommerce ul.ruy-shop.products.list li.product {
  float: inherit;
  width: 100%;
  display: flex;
  align-items: center;
}

.woocommerce ul.ruy-shop.products.list li.product .blackruy-product-image {
  flex: 0 0 25%;
  max-width: 25%;
}

.woocommerce ul.ruy-shop.products.list li.product .blackruy-product-content {
  flex: 0 0 75%;
  max-width: 75%;
  margin-left: 30px;
  text-align: left;
}

.woocommerce ul.ruy-shop.products.list li.product .blackruy-product-content .woocommerce-product-details__short-description {
  display: block;
  margin-top: 5px;
  margin-bottom: 15px;
}

.woocommerce ul.ruy-shop.products li.product .onsale.ruy-blackruy-sale {
  position: absolute;
  display: inline-block;
  top: 10px;
  left: 0;
  right: auto;
  text-align: center;
  background-color: #DA3F3F;
  color: #fff;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  margin: 0;
  line-height: inherit;
  min-height: auto;
  box-shadow: 0 2px 5px 0 #DA3F3F;
  z-index: 10;
}

.woocommerce ul.ruy-shop.products li.product .onsale.ruy-blackruy-sale .number {
  margin-bottom: 2px;
  font-size: 16px;
}

.woocommerce ul.ruy-shop.products li.product .onsale.ruy-blackruy-sale .number sup {
  position: relative;
  top: -3px;
  left: -4px;
}

.woocommerce ul.ruy-shop.products li.product .button {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  min-width: 50px;
  min-height: 30px;
  background-color: transparent;
}

.woocommerce ul.ruy-shop.products li.product .button span {
  color: var(--heading-color) !important;
}

.woocommerce ul.ruy-shop.products li.product .button.added:after {
  display: none;
}

.woocommerce ul.ruy-shop.products li.product>*:not(.blackruy-product-image, a) {
  padding-left: 15px;
  padding-right: 15px;
}

.woocommerce ul.ruy-shop.products li.product .added_to_cart {
  display: none;
}

.woocommerce ul.ruy-shop.products li.product .attachment-woocommerce_thumbnail,
.woocommerce ul.ruy-shop.products li.product .ruy-quick-view,
.woocommerce ul.ruy-shop.products li.product .ruy-quick-view .icon-view svg,
.woocommerce ul.ruy-shop.products li.product .ruy-add-cart,
.woocommerce ul.ruy-shop.products li.product .ruy-add-cart:before,
.woocommerce ul.ruy-shop.products li.product .ruy-price {
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  width: 100%;
  -webkit-transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -ms-transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.woocommerce ul.ruy-shop.products li.product .xt_wooqv-show-on-all {
  display: none;
}

.woocommerce ul.ruy-shop.products li.product .ruy-quick-view {
  opacity: 0;
  visibility: hidden;
}

.woocommerce ul.ruy-shop.products li.product .ruy-quick-view .icon-view {
  width: 60px;
  cursor: pointer;
}

.woocommerce ul.ruy-shop.products li.product .ruy-quick-view .icon-view svg {
  transform: translateY(-20px);
  -webkit-transform: translateY(-20px);
  -moz-transform: translateY(-20px);
  -ms-transform: translateY(-20px);
  -o-transform: translateY(-20px);
}

.woocommerce ul.ruy-shop.products li.product .blackruy-product-content {
  width: 100%;
}

.woocommerce ul.ruy-shop.products li.product .woocommerce-loop-product__title {
  padding: 0;
  margin-top: 10px;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.woocommerce ul.ruy-shop.products li.product .star-rating:before,
.woocommerce ul.ruy-shop.products li.product .star-rating span:before {
  color: var(--theme-color);
}

.woocommerce ul.ruy-shop.products li.product .ruy-price {
  margin: 0;
}

.woocommerce ul.ruy-shop.products li.product .ruy-price del {
  color: var(--font-color);
  margin-right: 5px;
  padding: 0 5px;
  position: relative;
}

.woocommerce ul.ruy-shop.products li.product .ruy-price del:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  background-color: var(--heading-color);
}

.woocommerce ul.ruy-shop.products li.product .ruy-price ins,
.woocommerce ul.ruy-shop.products li.product .ruy-price bdi {
  color: var(--heading-color);
}

.woocommerce ul.ruy-shop.products li.product .ruy-add-cart {
  position: absolute;
  bottom: 0;
  padding-left: 23px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}

.woocommerce ul.ruy-shop.products li.product .ruy-add-cart:after,
.woocommerce ul.ruy-shop.products li.product .ruy-add-cart:before {
  content: "";
  position: absolute;
  display: block;
  background-color: var(--heading-color);
}

.woocommerce ul.ruy-shop.products li.product .ruy-add-cart:before {
  width: 18px;
  height: 2px;
  left: 10px;
  top: 50%;
}

.woocommerce ul.ruy-shop.products li.product .ruy-add-cart:after {
  width: 2px;
  height: 18px;
  left: 8px;
  top: 0;
}

.woocommerce ul.ruy-shop.products li.product:hover .ruy-quick-view {
  opacity: 1;
  visibility: visible;
}

.woocommerce ul.ruy-shop.products li.product:hover .ruy-quick-view .icon-view svg {
  transform: none;
}

.woocommerce ul.ruy-shop.products li.product:hover .attachment-woocommerce_thumbnail {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
}

.woocommerce ul.ruy-shop.products li.product:hover .ruy-price {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
}

.woocommerce ul.ruy-shop.products li.product:hover .ruy-add-cart {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.woocommerce ul.ruy-shop.products li.product:hover .ruy-add-cart:before {
  left: 0;
}

.woocommerce ul.ruy-shop.products li.product .woocommerce-product-details__short-description {
  display: none;
}

@media only screen and (min-width: 992px) {
  .woocommerce #reviews #comments {
    margin-right: 30px;
  }
}

.woocommerce #reviews #comments .woocommerce-Reviews-title {
  display: none;
}

.woocommerce #reviews #comments .woocommerce-review__author {
  color: var(--heading-color);
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
  width: 60px;
  border-radius: 50%;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
  margin-left: 70px;
  border: 1px solid var(--border-color);
}

.woocommerce #reviews #review_form #respond .comment-form-rating label,
.woocommerce #reviews #review_form #respond .comment-form-rating p.stars {
  display: inline-block;
}

.woocommerce #reviews #review_form #respond .comment-form-rating p.stars {
  margin-bottom: 0;
  margin-left: 10px;
  line-height: 1.2;
}

.woocommerce #reviews #review_form #respond .entry-form,
.woocommerce #reviews #review_form #respond .comment-notes {
  margin-bottom: 20px;
}

.woocommerce #reviews #review_form #respond input#submit {
  color: var(--heading-color);
  background-color: var(--theme-color);
  padding: 15px 30px;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 14px;
}

.woocommerce .products ul,
.woocommerce ul.products {
  margin-bottom: 0;
}

.woocommerce .ruy-blackruy.ruy-single-product {
  padding-top: 180px;
  padding-bottom: 100px;
}

@media only screen and (min-width: 768px) {
  .woocommerce div.product div.images.woocommerce-product-gallery {
    width: 40%;
  }

  .woocommerce div.product div.summary {
    width: 60%;
    padding-left: 30px;
    margin-bottom: 0;
  }
}

.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__image,
.woocommerce div.product .woocommerce-product-gallery .woocommerce-product-gallery__image a {
  width: 100%;
}

.woocommerce div.product div.summary .woocommerce-product-rating,
.woocommerce div.product div.summary .price {
  margin: 10px 0;
}

.woocommerce div.product div.summary .woocommerce-product-details__short-description {
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin: 20px 0;
}

.woocommerce div.product div.summary form.cart {
  position: relative;
  padding: 30px;
  background: var(--assistant-color);
  margin-bottom: 0;
}

.woocommerce div.product div.summary .product_meta {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--border-color);
}

.woocommerce div.product div.summary .product_meta>* {
  width: 100%;
  clear: both;
  font-weight: 600;
}

.woocommerce div.product div.summary .product_meta>*>* {
  font-weight: var(--font-weight-body);
  margin-left: 5px;
}

.woocommerce div.product div.summary .product_meta>*:not(:last-child) {
  margin-bottom: 10px;
}

.woocommerce div.product div.summary button.single_add_to_cart_button {
  padding: 15px 50px;
  min-height: 42px;
  background-color: var(--theme-color);
  color: var(--heading-color);
}

.woocommerce div.product .ruy-price {
  margin: 10px 0 0 0;
}

.woocommerce div.product .ruy-price del {
  color: var(--font-color);
  margin-right: 5px;
  padding: 0 5px;
  position: relative;
}

.woocommerce div.product .ruy-price del:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  background-color: var(--heading-color);
}

.woocommerce div.product .ruy-price ins,
.woocommerce div.product .ruy-price bdi {
  color: var(--heading-color);
}

.woocommerce .onsale.ruy-blackruy-sale {
  position: absolute;
  display: inline-block;
  top: 10px;
  left: 0;
  text-align: center;
  background-color: var(--bg-color);
  color: var(--heading-color);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  margin: 0;
  line-height: inherit;
  min-height: auto;
  box-shadow: 2px 2px 5px 0 var(--assistant-color);
  z-index: 1;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.woocommerce .onsale.ruy-blackruy-sale .number {
  margin-bottom: 2px;
  font-size: 16px;
}

.woocommerce .onsale.ruy-blackruy-sale .number sup {
  position: relative;
  top: -3px;
  left: -4px;
}

.woocommerce .woocommerce-notices-wrapper .woocommerce-message {
  background-color: var(--assistant-color);
  color: var(--heading-color);
  border-top: 3px solid var(--border-color);
}

.woocommerce .woocommerce-notices-wrapper .woocommerce-message:before {
  color: var(--theme-color);
}

.woocommerce .woocommerce-notices-wrapper .woocommerce-message a.wc-forward {
  background-color: transparent;
}

.woocommerce .woocommerce-notices-wrapper .woocommerce-message a.wc-forward:before {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--border-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease-out;
  -webkit-transform: scaleX(0);
  -moz-transform: scaleX(0);
  -ms-transform: scaleX(0);
  -o-transform: scaleX(0);
  -webkit-transition: transform 0.2s ease-out;
  -moz-transition: transform 0.2s ease-out;
  -ms-transition: transform 0.2s ease-out;
  -o-transition: transform 0.2s ease-out;
}

.woocommerce .woocommerce-notices-wrapper .woocommerce-message a.wc-forward:hover:before {
  transform: scaleX(1);
  transform-origin: left;
  -webkit-transform: scaleX(1);
  -moz-transform: scaleX(1);
  -ms-transform: scaleX(1);
  -o-transform: scaleX(1);
}

.woocommerce a.added_to_cart.wc-forward {
  display: none;
}

.woocommerce div.product form.cart div.quantity {
  margin-right: 15px;
}

.woocommerce div.quantity {
  position: relative;
}

.woocommerce div.quantity input[type=number] {
  width: 80px;
  height: 42px;
  appearance: textfield;
  -moz-appearance: textfield;
  line-height: 1.65;
  float: left;
  display: block;
  padding-right: 20px;
  border: 1px solid var(--border-color);
}

.woocommerce div.quantity input[type=number]::-webkit-inner-spin-button,
.woocommerce div.quantity input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.woocommerce div.quantity input[type=number]:focus {
  outline: 0;
}

.woocommerce div.quantity .quantity-nav {
  float: left;
  position: relative;
  height: 42px;
}

.woocommerce div.quantity .quantity-nav .quantity-button {
  position: absolute;
  height: 50%;
  cursor: pointer;
  border-left: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  width: 20px;
  text-align: center;
  font-size: 13px;
  line-height: 1.7;
  transform: translateX(-100%);
  -webkit-user-select: none;
  user-select: none;
  background-color: var(--bg-color);
  color: var(--heading-color);
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
}

.woocommerce div.quantity .quantity-nav .quantity-button.quantity-up {
  top: 0;
}

.woocommerce div.quantity .quantity-nav .quantity-button.quantity-down {
  bottom: 0;
}

.woocommerce div.product .woocommerce-tabs {
  padding-top: 60px;
  margin-bottom: 60px;
}

.woocommerce div.product .woocommerce-tabs .panel {
  margin-bottom: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  margin-bottom: 30px;
  position: relative;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  padding: 0;
  list-style: none;
  -ms-box-orient: horizontal;
  -ms-box-pack: center;
  flex-flow: row wrap;
  justify-content: center;
  overflow: inherit;
}

.woocommerce div.product .woocommerce-tabs ul.tabs:before {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  text-align: center;
  flex: 1;
  border-radius: 0;
  padding: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border: 0;
  background-color: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li:after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: var(--heading-color);
  font-weight: var(--font-weight-body);
  font-size: 14px;
  letter-spacing: 1px;
  overflow: visible;
  border-bottom: 1px solid var(--border-color);
  transition: color 0.2s;
  position: relative;
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 2.5;
  letter-spacing: 3px;
  -webkit-transition: color 0.2s;
  -moz-transition: color 0.2s;
  -ms-transition: color 0.2s;
  -o-transition: color 0.2s;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--theme-color);
  font-weight: var(--font-weight-heading);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a:after,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a:before {
  position: absolute;
  content: "";
  pointer-events: none;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border: solid transparent;
  border-top-color: transparent;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a:before {
  margin-left: -11px;
  border-width: 11px;
  border-top-color: var(--border-color);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a:after {
  margin-left: -10px;
  border-width: 10px;
  border-top-color: var(--bg-color);
}

.woocommerce div.product #tab-description>*:not(:last-child) {
  margin-bottom: 20px;
}

.woocommerce div.product table {
  margin-bottom: 0;
  border: 0;
}

.woocommerce div.product table tr {
  border-bottom: 1px solid var(--border-color);
}

.woocommerce div.product table tr:not(:first-child) {
  border-top: 1px solid var(--border-color);
}

.woocommerce div.product table th,
.woocommerce div.product table td {
  text-align: left;
  border-width: 0;
}

#ruy_cart {
  position: relative;
  max-width: 450px;
  pointer-events: auto;
  width: 20px;
  margin-left: 10px;
}

.v-light #ruy_cart {
  --theme-color: #b07634;
}

#ruy_cart .widget_shopping_cart ul.product_list_widget li .quantity {
  margin-top: 0;
  margin-bottom: 10px;
  opacity: 1;
  visibility: visible;
}

#ruy_cart+.extend-container {
  padding-right: 40px;
}

#ruy_cart .woocommerce.widget_shopping_cart {
  cursor: pointer;
  width: 20px;
}

#ruy_cart .woocommerce.widget_shopping_cart .title-s {
  position: relative;
  color: transparent;
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
  pointer-events: none;
}

#ruy_cart .woocommerce.widget_shopping_cart .title-s:before {
  content: "";
  color: var(--theme-color);
  font-size: 16px;
}

#ruy_cart .woocommerce.widget_shopping_cart .widget_shopping_cart_content {
  position: absolute;
  width: 350px;
  background: var(--assistant-color);
  padding: 20px;
  opacity: 0 !important;
  visibility: hidden;
  box-shadow: 0 10px 20px var(--bg-color), 0 6px 6px var(--assistant-color);
  top: 100px;
  right: 10px;
  transition: 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-delay: 0s;
  -webkit-transition: 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition: 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -ms-transition: 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-transition: 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#ruy_cart .woocommerce.widget_shopping_cart:hover .widget_shopping_cart_content {
  opacity: 1 !important;
  visibility: visible;
  top: 50px;
}

#ruy_cart .woocommerce ul.cart_list,
#ruy_cart .woocommerce ul.product_list_widget {
  margin-bottom: 20px;
  max-height: 350px;
  overflow-y: auto;
}

#ruy_cart .woocommerce ul.cart_list .scrollbar-track-y,
#ruy_cart .woocommerce ul.product_list_widget .scrollbar-track-y {
  right: -6px;
  left: auto;
}

#ruy_cart .woocommerce .widget_shopping_cart .total,
#ruy_cart .woocommerce.widget_shopping_cart .total {
  padding-top: 20px;
  padding-bottom: 10px;
  border-top: 1px solid var(--border-color);
}

#ruy_cart .woocommerce .widget_shopping_cart .total strong,
#ruy_cart .woocommerce.widget_shopping_cart .total strong {
  color: var(--heading-color);
  margin-right: 10px;
  letter-spacing: 2px;
}

#ruy_cart .woocommerce .widget_shopping_cart .total .woocommerce-Price-amount.amount,
#ruy_cart .woocommerce.widget_shopping_cart .total .woocommerce-Price-amount.amount {
  color: var(--theme-color);
}

#ruy_cart .woocommerce .widget_shopping_cart .buttons,
#ruy_cart .woocommerce.widget_shopping_cart .buttons {
  display: flex;
  justify-content: space-between;
}

#ruy_cart .woocommerce .widget_shopping_cart .buttons:before,
#ruy_cart .woocommerce .widget_shopping_cart .buttons:after,
#ruy_cart .woocommerce.widget_shopping_cart .buttons:before,
#ruy_cart .woocommerce.widget_shopping_cart .buttons:after {
  display: none;
}

#ruy_cart .woocommerce .widget_shopping_cart .buttons a,
#ruy_cart .woocommerce.widget_shopping_cart .buttons a {
  background-color: transparent;
  color: var(--theme-color-font);
  padding: 10px 20px;
  border: 1px solid var(--heading-color);
  border-radius: 30px;
}

#ruy_cart .woocommerce .widget_shopping_cart .cart_list li:not(:last-child),
#ruy_cart .woocommerce.widget_shopping_cart .cart_list li:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted var(--border-color);
}

#ruy_cart .woocommerce .widget_shopping_cart .cart_list li a:not(.remove_from_cart_button),
#ruy_cart .woocommerce.widget_shopping_cart .cart_list li a:not(.remove_from_cart_button) {
  color: var(--theme-color);
  letter-spacing: 1.5px;
}

#add_payment_method table.cart td.actions .coupon .input-text,
.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text {
  width: auto;
  max-width: 200px;
  height: 39px;
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--heading-color);
  margin-right: 0;
}

#add_payment_method .cart-collaterals .cart_totals tr td,
#add_payment_method .cart-collaterals .cart_totals tr th,
.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce-checkout .cart-collaterals .cart_totals tr td,
.woocommerce-checkout .cart-collaterals .cart_totals tr th {
  border-color: var(--border-color);
}

.woocommerce-cart .wc-proceed-to-checkout {
  text-align: right;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  display: inline-block;
  margin: 0;
  background-color: transparent !important;
  border: 1px solid var(--border-color);
  border-radius: 40px;
  padding: 15px 30px;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 18px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

[name=apply_coupon] {
  border-radius: 0 !important;
}

.woocommerce-page table.cart td.actions {
  padding: 20px 15px;
}

.woocommerce .woocommerce-info {
  border: 1px solid var(--border-color);
  background-color: var(--assistant-color);
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 50px;
  font-weight: 600;
}

.woocommerce .woocommerce-info::before {
  color: var(--theme-color);
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.woocommerce .woocommerce-info a {
  background-color: var(--bg-color);
  color: var(--theme-color);
  margin-left: 5px;
}

.woocommerce .woocommerce-billing-fields h3,
.woocommerce .woocommerce-additional-fields h3,
.woocommerce .woocommerce-checkout h3 {
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 20px;
}

.woocommerce .woocommerce-additional-fields {
  margin-top: 50px;
  margin-bottom: 50px;
}

.woocommerce form .form-row span {
  width: 100%;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  height: 37px;
  line-height: 37px;
  padding: 10px;
  background-color: transparent;
  color: var(--heading-color);
}

.woocommerce form .form-row textarea {
  height: 120px;
}

.woocommerce form .form-row .select2-container {
  line-height: 0;
}

.woocommerce form .form-row .select2-container .select2-selection--single {
  border-radius: 0;
  height: 37px;
  border: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.woocommerce form .form-row .select2-container .select2-selection__rendered {
  line-height: 33px;
  color: var(--font-color);
  background-color: var(--assistant-color);
}

.woocommerce form .form-row .select2-container .select2-selection__arrow {
  top: 6px;
  right: 6px;
}

.woocommerce .checkout table.shop_table tbody th,
.woocommerce .checkout table.shop_table tfoot td,
.woocommerce .checkout table.shop_table tfoot th {
  background-color: transparent;
  border: 0;
}

.woocommerce .checkout table.shop_table {
  border-collapse: collapse;
  background-color: var(--assistant-color);
}

.woocommerce .checkout table.shop_table th,
.woocommerce .checkout table.shop_table td {
  text-align: left;
  border-bottom: 1px solid var(--border-color) !important;
  padding: 20px !important;
}

.woocommerce #add_payment_method #payment ul.payment_methods,
.woocommerce .woocommerce-cart #payment ul.payment_methods,
.woocommerce .woocommerce-checkout #payment ul.payment_methods,
.woocommerce #add_payment_method #payment,
.woocommerce .woocommerce-cart #payment,
.woocommerce .woocommerce-checkout #payment {
  padding: 0;
  background-color: transparent;
  border: 0;
  margin-top: 50px;
}

.woocommerce #add_payment_method #payment ul.payment_methods li,
.woocommerce .woocommerce-cart #payment ul.payment_methods li,
.woocommerce .woocommerce-checkout #payment ul.payment_methods li,
.woocommerce #add_payment_method #payment li,
.woocommerce .woocommerce-cart #payment li,
.woocommerce .woocommerce-checkout #payment li {
  border: 0;
  line-height: 1.4;
}

.woocommerce #add_payment_method #payment div.form-row,
.woocommerce .woocommerce-cart #payment div.form-row,
.woocommerce .woocommerce-checkout #payment div.form-row {
  padding: 0;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  background-color: transparent !important;
  color: var(--heading-color) !important;
  padding: 15px 30px !important;
  border: 1.5px solid var(--heading-color) !important;
  border-radius: 40px;
  margin-top: 30px;
  letter-spacing: 3px;
  height: auto !important;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}

.woocommerce form .form-row label {
  margin-bottom: 5px;
}

.product .count {
  color: var(--theme-color);
  background-color: transparent;
}

.ruy-style-wc-1 .product-category {
  line-height: 0;
}

.ruy-style-wc-1 .product-category>a {
  width: 100%;
}

.ruy-style-wc-1 .product-category>a:before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: #000;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0.45;
}

.ruy-style-wc-1 .product-category .woocommerce-loop-category__title {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px !important;
  border-top: 1px solid var(--border-color);
  font-size: 19px !important;
}

.ruy-style-wc-1 .product-category .woocommerce-loop-category__title,
.ruy-style-wc-1 .product-category .woocommerce-loop-category__title .count {
  color: #fff;
}

.ruy-style-wc-1 .product-category .woocommerce-loop-category__title .count {
  font-size: 12px;
}

.ruy-style-wc-1 .product-category a {
  overflow: hidden;
}

.ruy-style-wc-1 .product-category a img {
  transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
  -moz-transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
  -ms-transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
  -o-transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.ruy-style-wc-1 .product-category:hover img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.ruy-style-wc-1 .woocommerce ul.products li.product a img {
  margin: 0;
  height: 470px;
  object-fit: cover;
  object-position: center;
}

.related.products h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.woocommerce div.quantity {
  text-align: center;
  margin-bottom: 15px;
}

.woocommerce div.quantity input[type=number] {
  padding-right: 0;
  background-color: transparent;
}

.woocommerce div.quantity input[type=number],
.woocommerce div.quantity .quantity-nav {
  width: 100%;
  min-width: 100px;
}

.woocommerce div.quantity .quantity-nav {
  position: absolute;
  height: 42px;
  float: none;
  pointer-events: none;
}

.woocommerce div.quantity .quantity-nav .quantity-button {
  border: 0;
  background-color: transparent;
}

.woocommerce div.quantity .quantity-nav .quantity-button.quantity-up,
.woocommerce div.quantity .quantity-nav .quantity-button.quantity-down {
  pointer-events: auto;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.woocommerce div.quantity .quantity-nav .quantity-button.quantity-up {
  right: 4px;
}

.woocommerce div.quantity .quantity-nav .quantity-button.quantity-down {
  left: 4px;
  bottom: auto;
}

.woocommerce div.product form.cart .variations select {
  border-radius: 0;
  height: 37px;
  line-height: 37px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.woocommerce div.product form.cart .variations label {
  line-height: 37px;
}

.woocommerce div.product div.images .flex-control-thumbs {
  margin-top: 5px;
}

.woocommerce button:not(.xt_wooqv-button, .carousel__button) {
  background-color: var(--theme-color) !important;
  color: var(--heading-color) !important;
  border: 0 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-transform: uppercase;
  height: 39px;
  letter-spacing: 1.3px;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.woocommerce table.shop_attributes th {
  font-size: 15px;
}

.woocommerce div.product form.cart .reset_variations {
  position: absolute;
  right: 50px;
  bottom: 50px;
}

.widget_shopping_cart ul.product_list_widget li {
  padding-left: 0 !important;
  padding-right: 20px !important;
}

.widget_shopping_cart ul.product_list_widget li a.remove {
  left: auto !important;
  top: 50% !important;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.widget_shopping_cart ul.product_list_widget li .quantity {
  margin-top: 10px;
}

.widget_shopping_cart ul.product_list_widget li img {
  width: 50px;
  margin-right: 20px;
}

.woocommerce-mini-cart__total.total {
  border-top: 0;
  padding-top: 0;
  margin-bottom: 15px;
}

.woocommerce-mini-cart__buttons.buttons a {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  border-radius: 0;
}

.woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item:not(:last-of-type) {
  margin-bottom: 10px;
}

.widget_price_filter .price_slider_wrapper .ui-widget-content {
  background-color: transparent;
  margin-bottom: 25px;
}

.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-horizontal {
  height: 3px;
  background-color: var(--theme-color) !important;
}

.widget_price_filter .price_slider_wrapper .ui-widget-content .ui-slider-horizontal .ui-slider-range {
  top: 50%;
}

.widget_rating_filter ul li .star-rating {
  margin-bottom: 0;
}

.product-categories .cat-item:not(:last-of-type) {
  margin-bottom: 10px;
}

.product-categories .cat-item .children {
  margin-top: 10px;
  margin-left: 10px;
}

.widget_products .product_list_widget li,
.widget_top_rated_products .product_list_widget li,
.widget_recent_reviews .product_list_widget li,
.widget_recent_reviews .product_list_widget li,
.widget_recently_viewed_products .product_list_widget li {
  padding: 0;
}

.widget_products .product_list_widget li:not(:last-of-type),
.widget_top_rated_products .product_list_widget li:not(:last-of-type),
.widget_recent_reviews .product_list_widget li:not(:last-of-type),
.widget_recent_reviews .product_list_widget li:not(:last-of-type),
.widget_recently_viewed_products .product_list_widget li:not(:last-of-type) {
  margin-bottom: 20px;
}

.widget_products .product_list_widget li img,
.widget_top_rated_products .product_list_widget li img,
.widget_recent_reviews .product_list_widget li img,
.widget_recent_reviews .product_list_widget li img,
.widget_recently_viewed_products .product_list_widget li img {
  width: 50px !important;
}

.widget_products .product_list_widget li .woocommerce-Price-amount,
.widget_products .product_list_widget li .star-rating,
.widget_top_rated_products .product_list_widget li .woocommerce-Price-amount,
.widget_top_rated_products .product_list_widget li .star-rating,
.widget_recent_reviews .product_list_widget li .woocommerce-Price-amount,
.widget_recent_reviews .product_list_widget li .star-rating,
.widget_recent_reviews .product_list_widget li .woocommerce-Price-amount,
.widget_recent_reviews .product_list_widget li .star-rating,
.widget_recently_viewed_products .product_list_widget li .woocommerce-Price-amount,
.widget_recently_viewed_products .product_list_widget li .star-rating {
  margin-top: 10px;
}

.widget_products .product_list_widget li .star-rating,
.widget_top_rated_products .product_list_widget li .star-rating,
.widget_recent_reviews .product_list_widget li .star-rating,
.widget_recent_reviews .product_list_widget li .star-rating,
.widget_recently_viewed_products .product_list_widget li .star-rating {
  margin-bottom: 0;
}

.widget_products .product_list_widget li del,
.widget_top_rated_products .product_list_widget li del,
.widget_recent_reviews .product_list_widget li del,
.widget_recent_reviews .product_list_widget li del,
.widget_recently_viewed_products .product_list_widget li del {
  margin-right: 5px;
  padding: 0 5px;
  position: relative;
}

.widget_products .product_list_widget li del::after,
.widget_top_rated_products .product_list_widget li del::after,
.widget_recent_reviews .product_list_widget li del::after,
.widget_recent_reviews .product_list_widget li del::after,
.widget_recently_viewed_products .product_list_widget li del::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  background-color: var(--heading-color);
}

.widget_products .product_list_widget li ins,
.widget_top_rated_products .product_list_widget li ins,
.widget_recent_reviews .product_list_widget li ins,
.widget_recent_reviews .product_list_widget li ins,
.widget_recently_viewed_products .product_list_widget li ins {
  background-color: transparent;
  font-weight: bold;
}

.widget_products .product_list_widget li .reviewer,
.widget_top_rated_products .product_list_widget li .reviewer,
.widget_recent_reviews .product_list_widget li .reviewer,
.widget_recent_reviews .product_list_widget li .reviewer,
.widget_recently_viewed_products .product_list_widget li .reviewer {
  margin-top: 10px;
  font-size: 14px;
}

.woocommerce-product-search input {
  height: 39px;
  padding: 10px;
  box-shadow: 0;
  border: 1px solid var(--border-color);
}

.woocommerce .woocommerce-pagination ul.page-numbers li,
.woocommerce-page .woocommerce-pagination ul.page-numbers,
.woocommerce nav.woocommerce-pagination ul {
  border: 0;
}

.woocommerce .woocommerce-pagination ul.page-numbers li li span,
.woocommerce .woocommerce-pagination ul.page-numbers li li a,
.woocommerce-page .woocommerce-pagination ul.page-numbers li span,
.woocommerce-page .woocommerce-pagination ul.page-numbers li a,
.woocommerce nav.woocommerce-pagination ul li span,
.woocommerce nav.woocommerce-pagination ul li a {
  width: 50px;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  border: 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  font-family: var(--heading-font);
  font-weight: 500;
  color: var(--heading-color);
  background-color: transparent;
}

.woocommerce .woocommerce-pagination ul.page-numbers li li span:hover,
.woocommerce .woocommerce-pagination ul.page-numbers li li a:hover,
.woocommerce-page .woocommerce-pagination ul.page-numbers li span:hover,
.woocommerce-page .woocommerce-pagination ul.page-numbers li a:hover,
.woocommerce nav.woocommerce-pagination ul li span:hover,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  background-color: transparent;
  border-color: var(--theme-color);
}

.woocommerce .woocommerce-pagination ul.page-numbers li li span.current,
.woocommerce .woocommerce-pagination ul.page-numbers li li a.current,
.woocommerce-page .woocommerce-pagination ul.page-numbers li span.current,
.woocommerce-page .woocommerce-pagination ul.page-numbers li a.current,
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a.current {
  background-color: transparent;
  border-color: var(--theme-color);
  color: var(--heading-color);
}

.woocommerce .woocommerce-pagination ul.page-numbers li li .next.page-numbers,
.woocommerce-page .woocommerce-pagination ul.page-numbers li .next.page-numbers,
.woocommerce nav.woocommerce-pagination ul li .next.page-numbers {
  margin-left: 20px;
  font-weight: bold;
}

.woocommerce .woocommerce-pagination ul.page-numbers li li .prev.page-numbers,
.woocommerce-page .woocommerce-pagination ul.page-numbers li .prev.page-numbers,
.woocommerce nav.woocommerce-pagination ul li .prev.page-numbers {
  margin-right: 20px;
  font-weight: bol;
}

#xt_wooqv.xt_wooqv-animate-width {
  background-color: var(--bg-color);
}

.xt_wooqv-is-light-bg .xt_wooqv-item-info,
.xt_wooqv-is-light-bg .xt_wooqv-close-icon {
  color: var(--heading-color);
}

.xt_wooqv-is-light-bg .xt_wooqv-item-info .product_title {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.xt_wooqv-is-light-bg .xt_wooqv-item-info .woocommerce-product-details__short-description,
.xt_wooqv-is-light-bg .xt_wooqv-item-info .woocommerce-variation-description,
.xt_wooqv-is-light-bg .xt_wooqv-item-info p,
.xt_wooqv-is-light-bg .xt_wooqv-item-info .product_meta>span {
  color: var(--heading-color);
  letter-spacing: 2px;
}

.xt_wooqv-is-light-bg .xt_wooqv-item-info .product_meta>span>span {
  color: var(--font-color);
}

.xt_wooqv-is-light-bg .xt_wooqv-item-info .product_meta a {
  color: var(--theme-color);
}

.woocommerce div.quantity input[type=number] {
  color: var(--heading-color);
}

.woocommerce #respond input#submit.alt,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt,
.woocommerce input.button.alt:hover {
  background-color: var(--theme-color);
}

.xt_wooqv-button.xt_wooqv-more-info.button {
  margin-left: 10px !important;
  border: 1px solid var(--border-color);
}

.xt_wooqv-button.xt_wooqv-more-info.button,
.xt_wooqv-button.xt_wooqv-more-info.button:hover {
  background-color: transparent;
  color: var(--heading-color);
}

/* Change WC Acct Page Column Widths */
@media only screen and (min-width: 769px) {
  .woocommerce-account .woocommerce-MyAccount-navigation {
    width: 22%;
  }

  .woocommerce-account .woocommerce-MyAccount-content {
    width: 75%;
  }
}

/* Style WC Account Endpoint Links */
nav.woocommerce-MyAccount-navigation ul {
  list-style-type: none;
  padding-left: 0;
  max-width: 200px;
  font-size: 17px;
  line-height: 26px;
}

nav.woocommerce-MyAccount-navigation ul li {
  padding: 10px 20px;
  background-color: var(--assistant-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0;
}

nav.woocommerce-MyAccount-navigation ul li.is-active a {
  color: var(--theme-color);
}

nav.woocommerce-MyAccount-navigation ul li a {
  color: var(--heading-color);
  letter-spacing: 2px;
}

nav.woocommerce-MyAccount-navigation ul li.is-active:after {
  content: "";
  height: 0;
  width: 0;
  border-top: 15px solid transparent;
  border-left: 15px solid var(--assistant-color);
  border-bottom: 15px solid transparent;
  float: right;
  margin-right: -34px;
}

.woocommerce-MyAccount-content p {
  margin-bottom: 10px;
}

.u-column1.col-1,
.u-column2.col-2 {
  max-width: 100%;
}

.u-column1.col-1 .title .edit,
.u-column2.col-2 .title .edit {
  font-size: 14px;
  padding: 10px;
  background-color: var(--assistant-color);
  line-height: 1.2;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
}

.u-column1.col-1 .title+address,
.u-column2.col-2 .title+address {
  margin-top: 10px;
}

.woocommerce form .form-row .required {
  width: auto;
}

.woocommerce-EditAccountForm fieldset,
.woocommerce-EditAccountForm .woocommerce-Button.button {
  margin-top: 30px;
}

.woocommerce-EditAccountForm fieldset {
  border: 1px solid var(--border-color);
  background-color: transparent !important;
}

.woocommerce-EditAccountForm .woocommerce-Button.button {
  background-color: var(--assistant-color) !important;
  color: var(--heading-color) !important;
}

.woocommerce form .show-password-input::after,
.woocommerce-page form .show-password-input::after {
  float: right;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme span {
  margin-left: 10px;
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  background-color: var(--assistant-color);
  color: var(--heading-color);
}

#tab-reviews .woocommerce-Reviews-title {
  font-size: 20px;
  margin-bottom: 25px;
}

#tab-reviews .rx_author_name h4 {
  font-size: 14px;
  font-weight: 500;
}

#tab-reviews .rx-review-form-area-style-2 p {
  color: #000;
}

body.tax-product_tag #ruy_header,
body.tax-product_cat #ruy_header {
  margin-bottom: var(--margin-padding);
}

.woocommerce-page.columns-1 ul.products li.product,
.woocommerce.columns-1 ul.products li.product {
  width: 100%;
  margin: 0;
}

.ruy-effect-scroll:not(.ruy-mobile) #ruy-scrollbar,
.sidebar-single,
.ruy-work-scrollbar,
.contact-modal {
  overflow: hidden;
  height: 100vh;
}

.ruy-effect-scroll:not(.ruy-mobile) #ruy-scrollbar .scrollbar-track,
.sidebar-single .scrollbar-track,
.ruy-work-scrollbar .scrollbar-track,
.contact-modal .scrollbar-track {
  background: none;
  width: 4px;
  mix-blend-mode: exclusion;
  z-index: 11;
}

.ruy-effect-scroll:not(.ruy-mobile) #ruy-scrollbar .scrollbar-track .scrollbar-thumb,
.sidebar-single .scrollbar-track .scrollbar-thumb,
.ruy-work-scrollbar .scrollbar-track .scrollbar-thumb,
.contact-modal .scrollbar-track .scrollbar-thumb {
  background: #fff;
  width: var(--smooth-width);
}

@media only screen and (min-width: 992px) {
  .admin-bar.ruy-effect-scroll:not(.ruy-mobile) #main_content:after {
    content: "";
    display: block;
    height: 0.1px;
  }
}

.admin-bar.ruy-effect-scroll:not(.ruy-mobile) #ruy-scrollbar,
.sidebar-single,
.ruy-work-scrollbar,
.contact-modal {
  height: calc(100vh - 46px);
}

@media screen and (min-width: 783px) {

  .admin-bar.ruy-effect-scroll:not(.ruy-mobile) #ruy-scrollbar,
  .sidebar-single,
  .ruy-work-scrollbar,
  .contact-modal {
    height: calc(100vh - 32px);
  }
}

.locked-scroll #ruy-scrollbar {
  background-color: var(--bg-color);
}

.cap {
  position: absolute;
  bottom: 30px;
  left: 0;
  background-image: linear-gradient(to right, #0e0e0e5c 0%, #1b1515 100%);
  padding: 4px 15px;
  color: #fff;
  z-index: 10;
}

.cap span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.main-slider .ruy-slider-content .title {
  font-size: 52px;
  line-height: 55px;
  font-weight: 800;
}

[data-overlay]:before,
[data-ruy-overlay]:before {
  background-color: transparent;
  mix-blend-mode: unset;
  background-image: linear-gradient(to top, rgb(10 10 10), rgb(0 0 0 / 67%), rgb(12 12 12/0%)) !important;
}

.menuNavigationWrap {
  padding: 0;
  margin: 16px 0;
  padding-top: 30px;
}

.col-border-right:after {
  content: '';
  position: absolute;
  top: 0;
  right: 12px;
  border-right: 2px solid #ececec;
  width: 100%;
  height: 100%;
}

.col-border-right:after {
  z-index: -1;
}

.col-border-right {
  position: relative;
}

.col-border-right {
  z-index: 99;
}

.menuNavigationWrap h2 {
  font-size: 29px;
  color: #fff;
  text-align: center;
  letter-spacing: 1.2px;
  text-align: left !important;
  font-weight: 600;
  background: #B8B8F8;
  display: inline-block;
  padding: 0px 15px;
  margin-bottom: 30px;
}

.menuNavigationWrap ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menuNavigationWrap li {
  padding: 8px 10px;
  background: 0 0;
  color: #000;
  list-style: none;
  font-size: 18px;
  position: relative;
  display: block;
  width: 100%;
  padding-left: 0;
  position: relative;
  display: block;
  z-index: 99999;
  margin-bottom: 20px;
}

.menuNavigationWrap li a {
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

.menuNavigationWrap li a:hover {
  color: #B8B8F8;
}

.menuNavigationWrap {
  padding-top: 150px !important;
  opacity: 0;
  visibility: hidden;
  display: none;
}

.site-header.ruy-hamburger.ruy-open .menuNavigationWrap {
  opacity: 1;
  visibility: visible;
  transform: none;
  display: block;
}

.statshome {
  position: relative;
  background-size: cover;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  /* height: 400px; */
  padding-top: 25%;
  margin-top: -30%;
  padding-bottom: 30px;
  z-index: 1;
}

.statshome:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: rgb(51 197 221 / 18%);
  /* background-color: rgb(174 251 244 / 21%); */
  z-index: -1;
}

.statshome .title-block {
  letter-spacing: unset;
  font-size: 16px;
  margin-left: 6px;
  color: #020202;
  padding-top: 5px;
  font-weight: 600;
}

.statshome .experience {
  text-align: center;
  font-size: 45px;
}

.experience .exp-number {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #000
}

.pattern01 {
  position: relative;
  background-size: cover;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 9;
}

.pattern01:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  z-index: -1;
}

.infosmallbox23 {
  position: relative;
  padding: 30px 50px;
  z-index: 9;
  border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -ms-border-radius: 4px 4px 4px 4px;
  -o-border-radius: 4px 4px 4px 4px;
}

.infosmallbox23 h2 {
  color: #000;
}

.infosmallbox23 p {
  color: #000;
  font-size: 18px;
}

/*** 

====================================================================
	Counter Section
====================================================================

***/

.counter-section {
  position: relative;
  padding: 40px 0px 0px 0px;
  overflow: hidden;
  background: #0e5da0;
}


/* .counter-section .elementor-shape .elementor-shape-fill {
  fill: #35dab03d;
} */

.counter-section .sec-title h2 {
  color: #fff;
}

.counter-section .sec-title.centered h2:before {
  background-color: #0dcd9a;
}

.counter-section .counter-column {
  position: relative;
  margin-bottom: var(--margin-bottom-30);
}

.counter-section .counter-column .inner-column {
  backdrop-filter: blur(5px);
  box-shadow: -1px -1px 4px #067c5e1a, 1px 1px 7px rgb(28 215 128 / 21%);
  text-align: center;
  padding: 20px 0px;
}

.counter-section .counter-column .inner-column {
  position: relative;
  overflow: hidden;
}

.counter-section .counter-column .inner-column .fa {
  font-size: 60px;
  -webkit-text-stroke: 1px #fff;
  -webkit-text-fill-color: transparent;
  text-align: center;
  margin-bottom: 20px;
}

.counter-section .counter-column .inner-column .icon-box {
  position: absolute;
  left: -100px;
  top: -37px;
  width: 217px;
  height: 192px;
  border-radius: 50%;
  text-align: right;
  font-size: var(--font-60);
  background: var(--color-fourtyone);
  background: linear-gradient(to right, var(--color-fourtyone) 0%, var(--color-fourtytwo) 100%);
  display: none;
}

.counter-section .counter-column .icon-box:before {
  position: absolute;
  content: '';
  left: -15px;
  top: -5px;
  right: -12px;
  bottom: 0px;
  opacity: 0.10;
  border-radius: 50%;
  background: var(--color-fourtyone);
}

.counter-section .counter-column h3 {
  color: rgb(255 255 255);
  font-weight: 600;
  font-size: 40px;
  font-family: var(--font-family-Poppins);
  text-align: center;
}

.counter-section .counter-column .counter-text {
  position: relative;
  font-weight: 500;
  font-size: 15px;
  color: rgb(255 255 255);
  margin-top: var(--margin-top-10);
  text-align: center;
  text-transform: uppercase;
}

.counter-section .counter-column .icon-box .icon {
  position: relative;
  line-height: 210px;
  display: inline-block;
  font-family: "Flaticon";
  color: var(--white-color);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  padding-right: var(--padding-right-30);
}

.counter-section.style-two {
  padding-top: 30px;
  background: #0e5da0;
}

.counter-section.style-two .counter-column .inner-column .icon-box {
  background-color: var(--main-color);
  background-image: none;
}

.sec-title {
  position: relative;
}

.sec-title h2 {
  font-size: 40px;
}

.introsection {
  position: relative;
  padding: 40px 0px;
}

.text-outline-hover:hover::before {
  max-width: 100%;
}

.animate-number {
  display: inline-block;
  -webkit-text-stroke: 1px rgb(0 0 0) !important;
  -webkit-text-fill-color: transparent;
  margin: 0;
  padding: 0;
  position: relative;
}

.animate-number::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  overflow: hidden;
  width: 0%;
  white-space: pre;
  content: attr(data-text);
  -webkit-text-stroke: rgba(244, 223, 0, 0.85) !important;
  will-change: width;
  -webkit-animation: grow 7s cubic-bezier(0.86, 0, 0.07, 1) 2.15s infinite alternate both;
  animation: grow 7s cubic-bezier(0.86, 0, 0.07, 1) 2.15s infinite alternate both;
  background: linear-gradient(to bottom, rgba(244, 223, 0, 0.85) 0%, rgba(244, 223, 0, 0.65) 100%);
  background: linear-gradient(to bottom, rgba(70, 51, 255, 0.85) 0%, rgba(70, 51, 225, 0.65) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@-webkit-keyframes grow {

  0%,
  10%,
  90%,
  100% {
    width: 0%;
  }

  50% {
    width: 100%;
  }
}

@keyframes grow {

  0%,
  10%,
  90%,
  100% {
    width: 0%;
  }

  50% {
    width: 100%;
  }
}


.brand-item {
  background: #fff;
  position: relative;
  text-align: center;
  padding: 5px 10px;
  height: 180px !important;
}

.brand-item h2 {
  font-size: 11px;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 500;
  color: #020202;
  padding-top: 10px;
}

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  appearance: none;
  outline: none !important;
  background-color: #DB5A3A;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1.2px;
  padding: 14px 20px 14px;
  text-transform: uppercase;
  overflow: hidden;
  transition: all 0.5s linear;
  z-index: 1;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
}

.thm-btn::before {
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  background-color: #FFFFFF;
  content: "";
  transform: scaleY(0.0) rotateX(0deg);
  -webkit-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  z-index: -1;
  -webkit-transform: scaleY(0.0) rotateX(0deg);
  -moz-transform: scaleY(0.0) rotateX(0deg);
  -ms-transform: scaleY(0.0) rotateX(0deg);
  -o-transform: scaleY(0.0) rotateX(0deg);
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
}

.thm-btn:hover {
  color: #000;
}

.thm-btn:hover:before {
  transform: scaleY(1.0) rotateX(0deg);
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  -webkit-transform: scaleY(1.0) rotateX(0deg);
  -moz-transform: scaleY(1.0) rotateX(0deg);
  -ms-transform: scaleY(1.0) rotateX(0deg);
  -o-transform: scaleY(1.0) rotateX(0deg);
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
}

.section-title {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.section-title p {
  font-size: 17px;
  letter-spacing: 0.4px;
  font-weight: 500;
  color: #000;
  text-transform: initial;
}

.section-title__tagline-box {
  position: relative;
  display: inline-block;
  /* margin-left: 36px; */
  /* margin-right: 36px; */
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  color: #525252;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title__icon-box-1 {
  position: relative;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  margin-right: 10px;
}

.section-title__icon-box-1 .fa {
  font-size: 12px;
  color: #4533ff;
  font-weight: 800;
}

.section-title__icon-box-1 .fa+.fa {
  margin-left: 6px;
}

.section-title__icon-box-2 {
  position: relative;
  top: 0;
  left: 0;
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
}

.section-title__icon-box-2 .fa {
  font-size: 12px;
  color: #4533ff;
  font-weight: 800;
}

.section-title__icon-box-2 .fa+.fa {
  margin-left: 6px;
}

.section-title__title {
  color: rgba(147, 32, 25, 1);
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.contactfullbg .section-title__title {
  margin: 0;
  color: #191818;
  font-size: 19px;
  line-height: 33px;
  font-weight: 600;
  margin-top: 0;
  letter-spacing: 0.5px;
  text-align: center;
}

.partnersHome {
  position: relative;
  padding: 40px 0px;
}

.testimonialstyle01 {
  position: relative;
  padding: 30px 0px
}

/*--------------------------------------------------------------
# Process One
--------------------------------------------------------------*/
.process-one {
  position: relative;
  display: block;
  counter-reset: count;
  padding: 30px 0px;
  z-index: 1;
}

.process-one .section-title {
  margin-bottom: 54px;
}

.process-one p {
  color: #000;
  font-size: 18px;
  font-weight: 600;
}

.process-one__inner {
  position: relative;
  display: block;
  z-index: 1;
}

.process-one__single {
  position: relative;
  display: block;
  text-align: center;
  margin-bottom: 20px;
  z-index: 1;
}

.process-one__shape-1 {
  position: absolute;
  top: 50%;
  left: 11px;
  transform: translateY(-50%);
  background: #19779f;
  /* background-image: -moz-linear-gradient(0deg, rgb(4, 23, 26) 0%, rgb(249, 190, 23) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(4, 23, 26) 0%, rgb(249, 190, 23) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(4, 23, 26) 0%, rgb(249, 190, 23) 100%); */
  width: 73px;
  height: 2px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.process-one__shape-1:before {
  content: "";
  position: absolute;
  left: -10px;
  top: -5px;
  width: 11px;
  height: 11px;
  background-color: #19779f;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.process-one__shape-2 {
  position: absolute;
  top: 50%;
  right: 11px;
  transform: translateY(-50%);
  background: #19779f;
  /* background-image: -moz-linear-gradient(0deg, rgb(249, 190, 23) 0%, rgb(4, 23, 26) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(249, 190, 23) 0%, rgb(4, 23, 26) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(249, 190, 23) 0%, rgb(4, 23, 26) 100%); */
  width: 73px;
  height: 2px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.process-one__shape-2:before {
  content: "";
  position: absolute;
  right: -10px;
  top: -5px;
  width: 11px;
  height: 11px;
  background-color: #19779f;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.process-one__shape-3 {
  position: absolute;
  top: 50%;
  left: -86px;
  /* left: -102px; */
  transform: translateY(-50%);
  height: 2px;
  width: 216px;
  background-color: #19779f;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.process-one__shape-4 {
  position: absolute;
  top: 50%;
  right: -116px;
  transform: translateY(-50%);
  height: 2px;
  width: 200px;
  background-color: #19779f;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.process-one__img-box {
  position: relative;
  display: block;
}

.process-one__img {
  position: relative;
  display: block;
  /* width: 100px; */
  width: 72px;
  margin: 0 auto;
  padding: 5px;
  border-radius: 50%;
  /*background-color: #000;*/
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.process-one__img::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  border: 2px solid #19779f;
  background: #fff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.process-one__img:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #b73a2830;
  /* background: linear-gradient(110deg, rgb(51 197 221 / 12%) 10%, #db5a3a85 100%); */
  border-radius: 50%;
  transform: scale(0.5);
  opacity: 0;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  z-index: 1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transform: scale(0.5);
  -moz-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5);
  -moz-transition: all 0.4s linear;
  -ms-transition: all 0.4s linear;
}

.process-one__single:hover .process-one__img:after {
  transform: scale(1.0);
  opacity: 1;
  -webkit-transform: scale(1.0);
  -moz-transform: scale(1.0);
  -ms-transform: scale(1.0);
  -o-transform: scale(1.0);
}

.process-one__img img {
  width: 100%;
  max-width: 100%;
  /* mix-blend-mode: luminosity; */
  mix-blend-mode: darken;
}

.process-one__title {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-top: 28px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.process-one__title a {
  color: #000;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.process-one__title a:hover {
  color: #DB5A3A;
}

.process-one__count {
  position: absolute;
  top: 0;
  right: -15px;
  width: 67px;
  height: 67px;
  background-color: #DB5A3A;
  border-radius: 50%;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  z-index: 2;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -moz-transition: all 500ms linear;
  -ms-transition: all 500ms linear;
  -o-transition: all 500ms linear;
}

.process-one__single:hover .process-one__count {
  background-color: #000;
}

.process-one__single:hover .process-one__count img {
  filter: brightness(0) invert(1);
  -webkit-filter: brightness(0) invert(1);
}

.process-one__count:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-size: 20px;
  line-height: 67px;
  font-weight: 700;
  counter-increment: count;
  content: "0"counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  color: #000;
  text-align: center;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -moz-transition: all 500ms linear;
  -ms-transition: all 500ms linear;
  -o-transition: all 500ms linear;
}

.process-one__single:hover .process-one__count:before {
  color: #fff;
}

.newsStyle01 {
  position: relative;
  padding: 40px 0px;
}

.news-section-three {
  position: relative;
  overflow: hidden;
  padding: 40px 0px;
  padding-bottom: 60px;
  background-position: center center;
  background-repeat: no-repeat
}

.news-section-three .pattern-layer {
  position: absolute;
  right: 0;
  bottom: -100px;
  width: 484px;
  height: 664px
}

.news-section-three .sec-title-three .text {
  margin-top: var(--margin-top-45)
}

.news-block-three {
  position: relative;
  margin-bottom: var(--margin-bottom-30);

}

.news-block-three .inner-box {
  position: relative;
  border-radius: 5px;
  padding: 10px 10px 15px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

/* .news-block-three .inner-box .image {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  max-height: 250px;
  min-height: 250px;
  background: #dadada;
} */

/*.news-block-three .inner-box .image img {
  position: relative;
  width: 100%;
  display: block;
  max-height: 250px;
  min-height: 250px;
}*/

.news-block-three .inner-box .image {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  max-height: 238px;
  min-height: 238px;
  background: #dadada;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-block-three .inner-box .image::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .2);
  border-radius: 0%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.news-block-three .inner-box:hover .image::before {
  -webkit-animation: circle .95s;
  animation: circle .95s
}

@-webkit-keyframes circle {
  0% {
    opacity: 1
  }

  40% {
    opacity: 1
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0
  }
}

@keyframes circle {
  0% {
    opacity: 1
  }

  40% {
    opacity: 1
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0
  }
}

.news-block-three .inner-box .lower-content {
  position: relative;
  width: 100%;
}

.news-block-three .inner-box .post-info {
  position: relative;
  top: -25px;
  border-radius: 5px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  padding: 10px 10px 7px;
  background-color: #B8B8F8;
  width: auto;
  font-weight: 400;
  display: inline-block;
  margin-left: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.news-block-three .inner-box .post-info li {
  position: relative;
  display: inline-block;
  font-size: 14;
  color: #fff;
}

.news-block-three .inner-box .post-info li .icon {
  position: absolute;
  left: 0;
  top: 0;
  font-family: flaticon;
  font-size: 16;
}

.news-block-three .inner-box .post-info li:last-child {
  margin-right: 0
}

.news-block-three .inner-box:hover .post-info {
  background-color: var(--color-fourtytwo)
}

.news-block-three .inner-box h4 {
  padding: 0 10px;
  margin-bottom: 10px;
}

.news-block-three .inner-box h4 a {
  position: relative;
  color: #000;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  font-size: 16px;
  letter-spacing: 0.6px;
  font-weight: 600;
}

.news-block-three .inner-box h4 a:hover {
  color: #000
}

.news-block-three .inner-box .explore {
  position: relative;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 50px;
  display: inline-block;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease
}

.news-block-three .inner-box .explore span {
  position: relative;
  font-size: 10px;
  font-family: flaticon;
  margin-left: 5px
}

.news-block-three .inner-box .explore:hover {
  background-color: #000
}

.news-block-three .inner-box:hover .post-info {
  background-color: #DB5A3A !important;
}

.news-block-three .ruy-def-btn .ruy-icon.btn-icon-left:before {
  left: 0;
  background-color: #DB5A3A !important;
}

/* .news-section-three:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/section-bg01.png);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.5;
  background-position: bottom;
} */

.titlewithbtn {
  width: 100%;
  align-items: center;
  justify-content: space-between;
  display: flex;
  padding-bottom: 40px;
}

.titlewithbtn .section-title {
  position: relative;
  display: block;
  margin-top: 0;
  margin-bottom: 0;
  padding: 30px 0px;
  padding-bottom: 0;
}

.testimonialStyle {
  padding: 40px 70px;
  position: relative;
}

.testimonial-inner-item {
  z-index: 9;
  padding-top: 10px !important;
  background-size: cover;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 9;
  background: url(../images/pattern01.jpg);
}

/* .testimonial-inner-item:before{
  opacity: 0.5;
    background: #cfcfec;
    position: absolute;
    background-image: url(../images/testi-bg.jpeg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-blend-mode: luminosity;
} */

.testimonial-inner-item:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: #4633ff7d;
  z-index: -1;
}

.testimonial-content {
  color: #000;
  font-size: 17px;
  /* font-weight: 600; */
  text-align: center;
  padding-top: 13px;
}

.feedback-quote {
  position: relative;
  top: 0;
  right: 15px;
  border-radius: 50%;
  background-color: #DB5A3A;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 27px;
  color: #ffffff;
  /*z-index: 2;
  */
  left: 0;
  text-align: center;
  margin: 0 auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.ruysectorsStyle {
  position: relative;
  padding: 40px 0px;
}

.services-item {
  text-align: center;
  flex: 0 1 calc(15.2% - 1px);
  margin: 0 5px 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trackItemstyle {
  transition: .25s ease-in-out;
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -ms-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  height: 100%;
  /* border: 1px solid #0000001f!important; */
  cursor: pointer;
  box-shadow: 0 9px 31px 6px rgb(0 0 0/3%) !important;
  background: #383c4e url(../images/pattern01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  transition: .25s ease-in-out;
  padding: 0;
}

.trackInner {
  position: relative;
  z-index: 99;
  padding: 0;
  width: 100%;
  height: 100%;
  background: #b8b8f878;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  min-height: 100px;
  flex-direction: column;
}

.trackInner:hover {
  background: #05b085a6;
}

.trackItemstyle .trackInner a {
  color: #fff;
}

.trackItemstyle .trackInner img {
  width: 56px;
  /* height: 70px; */
  margin-bottom: 10px;
  mix-blend-mode: multiply;
}

.trackItemstyle h4 {
  margin-top: 0px;
  font-size: 15px;
  text-transform: uppercase;
  color: #101011;
  letter-spacing: .6px;
  font-weight: 600;
}

.trackItemstyle .trackInner a {
  color: #fff;
}

.featuresStyle {
  position: relative;
  padding: 40px 0px;
}

/* .featuresStyle .swiper-wrapper{
  display: flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
} */

.feature-two {
  position: relative;
  display: block;
  background-color: var(--pitoon-primary);
  padding: 120px 0 90px;
  z-index: 1;
}

.feature-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 430px;
  opacity: 0.08;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.feature-two__single {
  position: relative;
  /*display: block;
  */
  /*margin-bottom: 30px;
  */
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  overflow: unset;
  height: 100%;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.feature-two__img {
  position: relative;
  display: block;
  background-color: #031315;
  clip-path: polygon(100% 0, 100% 63%, 53% 100%, 52% 100%, 0 63%, 0% 0%);
  z-index: 1;
}

.feature-two__img img {
  width: 100%;
  /* mix-blend-mode: luminosity; */
}

.feature-two__content {
  position: relative;
  display: block;
  margin-top: -30%;
  /* background-color: rgb(255, 255, 255); */
  /* box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease; */
}

.feature-two__single:hover {
  background-color: rgb(204 204 233);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.feature-two__content-inner {
  position: relative;
  display: block;
  padding: 24px 40px 34px;
  text-align: center;
  overflow: hidden;
}

.feature-two__icon {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  z-index: 3;
}

.feature-two__icon span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 85px;
  font-size: 32px;
  color: var(--pitoon-black);
  border-radius: 50%;
  border: 6px solid var(--pitoon-white);
  background-color: var(--pitoon-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.feature-two__single:hover .feature-two__icon span {
  border: 6px solid var(--pitoon-black);
}

.feature-two__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 29px;
  margin-top: 7px;
  text-transform: uppercase;
}

.feature-two__title a {
  color: var(--pitoon-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.feature-two__title a:hover {
  color: var(--pitoon-base);
}

.feature-two__single:hover .feature-two__title a {
  color: var(--pitoon-white);
}

.feature-two__text {
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.feature-two__single:hover .feature-two__text {
  color: #627174;
}

.feature-two__shape-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 1;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.feature-two__single:hover .feature-two__shape-1 {
  opacity: 0;
}

.feature-two__shape-1 img {
  width: auto;
}

.feature-two__shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  opacity: 0;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.feature-two__shape-2 img {
  width: auto;
}

.feature-two__single:hover .feature-two__shape-2 {
  opacity: .10;
}

.featureStyle03 .feature-two__img {
  clip-path: unset;
}

.featuresStyle.featuresStyle03 .swiper-wrapper {
  display: flex;
}

.academyStyle01 {
  position: relative;
  padding: 40px 0px;
}

.text-effect {
  color: #ffffff;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  background: #cfcfec;
  padding: 10px 30px;
  z-index: 9;
}

.text-effect:before {
  content: attr(data-effect);
  color: #fff !important;
  background: #05B085;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  /*border-radius: 100%;
  */
  clip-path: polygon(0% 0%, 30% 0%, 30% 100%, 0% 100%);
  animation: slide 11s 1s linear infinite;
  padding: 20px 40px 20px 40px;
  width: 100%;
  z-index: -1;
  height: 100%;
  -webkit-animation: slide 11s 1s linear infinite;
}

@keyframes slide {
  50% {
    clip-path: polygon(70% 0%, 100% 0%, 100% 100%, 70% 100%);
  }
}

.loaderInner2 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: #fff;
  background-image: url(contents/Theme-1/images/slider/slide01.jpeg);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 99;
}

.loaderInner2:before {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #b8b8f8;
  content: '';
  z-index: -1;
  mix-blend-mode: hard-light;
}

/*** 
====================================================================
Main Header style / Header Style One
====================================================================
***/

.main-header {
  position: relative;
  display: block;
  width: 100%;
  z-index: 9999;
  background: none;
}

.header-top {
  position: relative;
}

.main-header .header-top .top-left {
  float: left;
}

.main-header .header-top .top-right {
  float: right;
  display: flex;
  align-items: center;
}

/*=== Header Main Box ===*/

.main-header .header-upper {
  position: relative;
  display: block;
  z-index: 1;
}

.main-header .header-upper {
  position: relative;
}

.main-header .nav-outer {
  position: relative;
}

.main-header .nav-outer .main-menu {
  position: relative;
}

.main-menu .navbar-collapse {
  padding: 0px;
  display: block !important;
}

.main-menu .navigation {
  position: relative;
  margin: 0px;
}

.main-menu .navigation>li {
  position: relative;
  float: left;
  padding: 20px 0px;
  margin-right: 40px;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation>li:last-child {
  margin-right: 0px;
}

.main-menu .navigation>li:last-child:after {
  display: none;
}

.main-menu .navigation>li>a {
  position: relative;
  display: block;
  font-size: 14px;
  line-height: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #000;
  padding: 10px 0px;
  opacity: 1;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation>li:hover>a,
.main-menu .navigation>li.current>a {
  color: #19779f !important
}

.sticky-header .main-menu .navigation>li:before {
  display: none;
}

.sticky-header .main-menu .navigation>li:hover>a,
.sticky-header .main-menu .navigation>li.current>a {
  color: #DB5A3A;
}

.sticky-header .main-menu .navigation>li.dropdown {
  padding-right: 0px;
}

.main-menu .navigation>li>ul {
  position: absolute;
  left: 0px;
  top: 100%;
  width: 250px;
  z-index: 100;
  display: none;
  background: #f5f5f6;
  background: none;
  /* background-image: linear-gradient(-90deg, #45b2b0 6%, #19779f 81%) !important; */
  background-image: linear-gradient(-90deg, #45b2b085 6%, #19779fcf 81%) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 10px;
  border: none;
  transform: translateY(20px);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
}

.main-menu .navigation>li:last-child>ul {
  right: 0;
  left: unset;
}

.main-menu .navigation>li>ul.from-right {
  left: auto;
  right: 0px;
}

.main-menu .navigation>li>ul>li {
  position: relative;
  width: 100%;
}

.main-menu .navigation>li>ul>li>a {
  position: relative;
  display: block;
  padding: 0 0 !important;
  /* padding: 12px 10px 10px 25px; */
  line-height: 1.5;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .6px;
  color: #FFFFFF;
  text-align: left;
  text-transform: uppercase;
  /* border-bottom: 1px solid rgb(185 183 183 / 15%); */
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  /* background: rgb(174 251 244 / 50%); */
}

.main-menu .navigation>li>ul>li>a span {
  font-size: 14px;
  padding: 10px 0 8px 0;
  border-bottom: 1px solid #66b6d8;
  text-transform: uppercase;
}

.main-menu .navigation>li>ul>li:last-child>a {
  border-bottom: none;
}

.main-menu .navigation>li>ul>li>a:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 50%;
  height: 4px;
  width: 4px;
  background: #DB5A3A;
  display: flex;
  align-items: center;
  display: none;
  justify-content: center;
}

.main-menu .navigation>li>ul>li:hover>a {
  color: #83f4f3e3;
  background: none;
}

.main-menu .navigation>li>ul>li:hover>a:before {
  background: #DB5A3A;
}

.main-menu .navigation>li>ul>li>ul {
  position: absolute;
  left: 100%;
  margin-left: 10px;
  top: 0;
  width: 250px;
  z-index: 100;
  display: none;
  background: #52385b;
  padding: 15px 0px 10px;
  border: none;
  transform: translateY(20px);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
}

.main-menu .navigation>li>ul>li>ul:before {
  content: '';
  position: absolute;
  left: -10px;
  top: 0;
  width: 10px;
  height: 100%;
}

.main-menu .navigation>li>ul>li>ul>li {
  position: relative;
  padding: 0px 30px;
  width: 100%;
}

.main-menu .navigation>li>ul>li>ul>li>a {
  position: relative;
  display: block;
  padding: 12px 0px 12px 20px;
  line-height: 24px;
  font-weight: 600;
  font-size: 13px;
  color: #868da5;
  text-align: left;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.main-menu .navigation>li>ul>li>ul>li:last-child>a {
  border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li>a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  height: 4px;
  width: 4px;
  background: #868da5;
}

.main-menu .navigation>li>ul>li>ul>li:hover>a {
  color: #000;
}

.main-menu .navigation>li>ul>li>ul>li:hover>a:before {
  background: #000;
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
  font-family: 'Font Awesome 5 Free';
  content: "\f105";
  position: absolute;
  right: 0px;
  top: 12px;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 900;
  z-index: 5;
}

.main-menu .navigation>li.dropdown:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
}

.main-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 10px;
  top: 8px;
  width: 34px;
  height: 30px;
  border: 1px solid #ffffff;
  text-align: center;
  font-size: 16px;
  line-height: 26px;
  color: #ffffff;
  cursor: pointer;
  z-index: 5;
  display: none;
}

.header-style-two .main-menu .navigation>li.dropdown:before {
  font-family: fontawesome;
  content: "\f107";
  position: absolute;
  right: 0;
  font-size: 12px;
  line-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #272729;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.header-style-two .main-menu .navigation>li:hover::before {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

/*** 
====================================================================
Header Style Two
====================================================================
***/

.header-style-two {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  border-bottom: none;
  width: 100%;
  right: 0;
  margin: 0 auto;
  padding: 5px var(--ruy-gap-container);
}

.header-top-two {
  position: relative;
  display: none;
}

.header-top-two .inner {
  position: relative;
  margin-left: 200px;
  padding: 10px 0px;
  padding-left: 40px;
  line-height: 30px;
  border-bottom: none;
}

.header-top-two .info {
  position: relative;
  float: left;
}

.header-top-two .info li {
  position: relative;
  float: left;
  color: #ffffff;
  line-height: 30px;
  margin-right: 45px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
}

.header-top-two .info li:before {
  content: '';
  position: absolute;
  right: -23px;
  top: 5px;
  height: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.20);
}

.header-top-two .info li:last-child {
  margin-right: 0;
}

.header-top-two .info li:last-child:before {
  display: none;
}

.header-top-two .info li a {
  color: #ffffff;
  font-size: 14px;
  text-transform: none;
  font-weight: 400;
  display: inline-block;
}

.header-top-two .info li.phone a {
  color: #91a6bf;
}

.header-top-two .info li .icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  color: #000;
  padding-right: 5px;
}

.header-top-two .info li a:hover {
  text-decoration: underline;
  color: #000;
}

.header-top-two .my-account {
  position: relative;
  float: right;
  display: flex;
  align-items: center;
}

.header-top-two .my-account li {
  position: relative;
  float: left;
  margin-right: 31px;
}

.header-top-two .my-account li:before {
  content: '';
  position: absolute;
  right: -16px;
  top: 5px;
  height: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.20);
}

.header-top-two .my-account li:last-child {
  margin-right: 0;
}

.header-top-two .my-account li:last-child:before {
  display: none;
}

.header-top-two .my-account li a {
  position: relative;
  display: block;
  line-height: 30px;
  font-size: 14px;
  color: #91a6bf;
}

.header-top-two .my-account li .icon {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  color: #000;
  padding-right: 5px;
}

.my-account .thm-btn {
     position: relative;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    appearance: none;
    outline: none !important;
    letter-spacing: 1.2px;
    background-color: #db5a3a;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 10px 8px;
    margin-left: 15px;
}

.my-account .thm-btn:hover {
  color: #FFF;
}

.my-account .thm-btn::before {
  background: #19779f;
}

.header-top-two .my-account li a:hover {
  color: #000;
}

.header-style-two .header-upper {
  position: relative;
  position: relative;
  /* display: inline-flex; */
  align-items: center;
  width: 100%;
}

.header-style-two .header-upper .inner {
  position: relative;
  min-height: 0;
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.header-style-two .header-upper .logo-box {
  position: relative;
  left: 0;
  top: 0px;
  width: 35%;
  height: auto;
  padding: 0;
  border-right: none;
}

.header-style-two .header-upper .logo-box img {
  height: 100px;
}

.header-style-two .header-upper .nav-content {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: 90%;
}

.header-style-two .header-upper .nav-outer {
  position: relative;
  float: right;
  display: flex;
  align-items: center;
}

.header-style-two .language {
  position: relative;
  float: right;
}

.header-style-two .language .lang-btn {
  position: relative;
  display: block;
  line-height: 30px;
  padding: 15px 0px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
}

.header-style-two .language .lang-btn .flag {
  position: relative;
  top: 0px;
  color: #222222;
  display: inline-block;
  vertical-align: middle;
  padding-right: 5px;
}

.header-style-two .language .lang-btn .txt {
  position: relative;
  color: #ffffff;
  display: inline-block;
  vertical-align: middle;
}

.header-style-two .language .lang-btn .arrow {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
  color: #ffffff;
  font-size: 12px;
}

.header-style-two .language .lang-btn:before {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  height: 2px;
}

.header-style-two .language .lang-dropdown {
  position: absolute;
  right: 0;
  top: 100%;
  margin-top: 2px;
  width: 150px;
  background: #ffffff;
  border: 1px solid #f0f0f0;
  border-top: 2px solid #222222;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  transition: all 300ms linear;
  -moz-transform: translateY(20px);
  -o-transform: translateY(20px);
  -moz-transition: all 300ms linear;
  -o-transition: all 300ms linear;
}

.header-style-two .language:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
}

.header-style-two .language .lang-dropdown li {
  position: relative;
  display: block;
  border-bottom: 1px solid #f0f0f0;
}

.header-style-two .language .lang-dropdown li:last-child {
  border: none;
}

.header-style-two .language .lang-dropdown li a {
  position: relative;
  display: block;
  padding: 5px 15px;
  font-size: 14px;
  line-height: 24px;
  color: #222222;
}

.header-style-two .language .lang-dropdown li a:hover {
  text-decoration: underline;
  color: #222222;
}

.header-style-two .main-menu .navigation>li {
  padding: 0px 0px;
  margin: 0;
  border-right: none;
  padding-right: 15px;
}

.header-style-two .main-menu .navigation>li>a {
  padding: 15px 10px;
  font-size: 12px;
  font-weight: 400;
  line-height: 30px;
  padding-right: 0;
  font-family: 'Helvetica Neue Medium';
}

.header-style-two .nav-box .main-menu .navigation>li:before {
  border-bottom-color: #ffffff;
}

/*** 
====================================================================
    Sticky Header
====================================================================
***/

.sticky-header {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 0px;
  top: 0px;
  width: 100%;
  padding: 0px 0px;
  z-index: -1;
  background: #52385b;
  border-bottom: 1px solid #f0f0f0;
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
  -moz-box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
  -ms-box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
  -o-box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.10);
  -webkit-transition: top 300ms ease;
  -moz-transition: top 300ms ease;
  -ms-transition: top 300ms ease;
  -o-transition: top 300ms ease;
  transition: top 300ms ease;
}

.fixed-header .sticky-header {
  opacity: 1;
  z-index: 99901;
  visibility: visible;
}

.fixed-header .sticky-header .logo {
  padding: 10px 0px;
}

.fixed-header .sticky-header .logo img {
  height: 66px;
}

.sticky-header .main-menu {
  position: relative;
  float: left;
}

.sticky-header .main-menu .navigation>li {
  margin-left: 18px !important;
  padding: 0;
  margin-right: 0 !important;
  background-color: transparent;
  border: none;
}

.sticky-header .main-menu .navigation>li.dropdown>a:after,
.sticky-header .main-menu .navigation>li:before {
  display: none;
}

.sticky-header .main-menu .navigation>li>a {
  padding: 30px 0px !important;
  line-height: 30px;
  font-size: 13px;
  text-transform: uppercase !important;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.sticky-header .main-menu .navigation>li>ul>li>ul {
  left: auto;
  right: 100%;
  margin-right: 10px;
}

.sticky-header .main-menu .navigation>li>ul>li>ul:before {
  left: auto;
  right: -10px;
}

.sticky-header .main-menu .navigation>li:hover>a,
.sticky-header .main-menu .navigation>li.current>a,
.sticky-header .main-menu .navigation>li.current-menu-item>a {
  opacity: 1;
}

.sticky-header .booking-link {
  position: relative;
  float: left;
  margin-left: 25px;
  padding-top: 15px;
}

.sticky-header .search-btn {
  position: relative;
  float: left;
  margin-left: 30px;
  margin-top: 22px;
}

.sticky-header .search-btn button {
  position: relative;
  display: block;
  padding: 0;
  margin: 0;
  background: none;
  line-height: 30px;
  color: #b5c0cf;
  font-size: 18px;
  cursor: pointer;
}

.sticky-header .search-btn button .icon {
  vertical-align: middle;
}

/*** 
====================================================================
Mobile Menu
====================================================================
***/

.nav-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 30px;
  line-height: 40px;
  cursor: pointer;
  margin-left: 0px;
  color: #000;
  margin: 25px 0px 0px 20px;
  display: none;
}

.nav-outer .mobile-nav-toggler .fa {
  color: #000;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
}

.mobile-menu .mCSB_inside>.mCSB_container {
  margin-right: 5px;
}

.mobile-menu .navbar-collapse {
  display: block !important;
}

.mobile-menu .nav-logo {
  position: relative;
  padding: 30px 25px;
  text-align: left;
}

.mobile-menu .nav-logo img {
  max-height: 90px;
}

.mobile-menu-visible {
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.70);
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  -moz-transform: translateX(101%);
  -o-transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 0.70;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  -moz-transform: translateX(0%);
  -o-transform: translateX(0%);
}

.mobile-menu .menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #FFF;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
  -moz-transform: translateX(101%);
  -o-transform: translateX(101%);
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  -moz-transform: translateX(0%);
  -o-transform: translateX(0%);
}

.mobile-menu .close-btn {
  position: absolute;
  right: 10px;
  top: 10px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 19px;
  color: #151618;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.mobile-menu .close-btn:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgba(232, 232, 232, 0.80);
}

.mobile-menu .navigation:last-child {
  border-bottom: 1px solid rgba(232, 232, 232, 0.80);
}

.mobile-menu .navigation li>ul>li:first-child {
  border-top: 1px solid rgba(232, 232, 232, 0.80);
}

.mobile-menu .navigation li>a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .navigation li ul li>a {
  font-size: 14px;
  margin-left: 20px;
  text-transform: uppercase;
}

.mobile-menu .navigation li>a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  border-left: 3px solid #c54d53;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .navigation li.current>a:before {
  height: 100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 10px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  color: #FFFFFF;
  background: #19779f9e;
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}

.mobile-menu .navigation li.dropdown>a {
  padding-right: 30px;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul {
  display: none;
}

.mobile-menu .social-links {
  position: relative;
  text-align: center;
  padding: 30px 25px;
}

.mobile-menu .social-links li {
  position: relative;
  display: inline-block;
  margin: 0px 10px 10px;
}

.mobile-menu .social-links li a {
  position: relative;
  line-height: 32px;
  font-size: 16px;
  color: #000;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.dot-pulse {
  position: relative;
  left: -9999px;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #9880ff;
  color: #9880ff;
  box-shadow: 9999px 0 0 -5px;
  animation: dot-pulse 1.5s infinite linear;
  animation-delay: 0.25s;
  margin: 0 auto;
  margin-top: 10px;
  -webkit-animation: dot-pulse 1.5s infinite linear;
}

.dot-pulse::before,
.dot-pulse::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  width: 10px;
  height: 10px;
  border-radius: 5px;
  background-color: #9880ff;
  color: #9880ff;
}

.dot-pulse::before {
  box-shadow: 9984px 0 0 -5px;
  animation: dot-pulse-before 1.5s infinite linear;
  animation-delay: 0s;
  -webkit-animation: dot-pulse-before 1.5s infinite linear;
}

.dot-pulse::after {
  box-shadow: 10014px 0 0 -5px;
  animation: dot-pulse-after 1.5s infinite linear;
  animation-delay: 0.5s;
  -webkit-animation: dot-pulse-after 1.5s infinite linear;
}

@keyframes dot-pulse-before {
  0% {
    box-shadow: 9984px 0 0 -5px;
  }

  30% {
    box-shadow: 9984px 0 0 2px;
  }

  60%,
  100% {
    box-shadow: 9984px 0 0 -5px;
  }
}

@keyframes dot-pulse {
  0% {
    box-shadow: 9999px 0 0 -5px;
  }

  30% {
    box-shadow: 9999px 0 0 2px;
  }

  60%,
  100% {
    box-shadow: 9999px 0 0 -5px;
  }
}

@keyframes dot-pulse-after {
  0% {
    box-shadow: 10014px 0 0 -5px;
  }

  30% {
    box-shadow: 10014px 0 0 2px;
  }

  60%,
  100% {
    box-shadow: 10014px 0 0 -5px;
  }
}

/* .internalbanner01 {
  position: relative;
  width: 100%;
  padding: 0px 100px;
  z-index: 9;
  margin-bottom: 90px;
} */

.bannerinner {
  background-color: #000;
  width: 100%;
  /*height: 250px;
  */
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

/* .internalbanner01:before{
  position: absolute;
  bottom:-30%;
  left:0;
  width: 100%;
  height: 70%;
  background-image: url(../images/pattern01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  right:0;
  content: '';
  z-index: -2;
}
.internalbanner01:after {
  position: absolute;
  bottom: -30%;
  left: 0;
  content: '';
  width: 100%;
  height: 70%;
  background-color: #b8b8f878;
  z-index: -1;
} */

.internalbanner01 [data-ruy-grid=move-up].ruy-animate,
.internalbanner01 [data-ruy-grid=moveUp].ruy-animate {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.innerbanertitle {
  position: relative;
  margin: 0 auto;
  text-align: center;
  margin-top: -30px;
}

.innerbanertitle h1 {
  color: #fff;
  /*background: #000;*/
  display: inline-block;
  font-size: 23px;
  line-height: 23px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 20px 30px;
  text-transform: uppercase;
  /*background: #383c4e url(../images/pattern01.jpg);*/
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 9;
}

.innerbanertitle h1:before {
  display: none;
  background: #b8b8f878;
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.exhibitorSlider {
  position: relative;
  padding: 40px 0px
}

.whyexhibitPoints {
  position: relative;
  padding: 40px 0px;
}

.resume-title {
  letter-spacing: 0.4px;
  font-weight: 600;
  line-height: 26px;
}

.fullImgovertext {
  position: relative;
  background-color: #b8b8f8f5;
  padding: 20px 20px;
  width: 50%;
}

.fullImgovertext p {
  font-size: 18px;
  color: #000;
}

.fullbannercontent {
  position: relative;
  padding: 30px 100px;
}

.fullbannercontent [data-overlay]:before,
.fullbannercontent [data-ruy-overlay]:before {
  background-color: transparent;
  mix-blend-mode: unset;
  /* background-image: linear-gradient(to left,rgb(10 10 10),rgb(0 0 0),rgb(12 12 12))!important; */
  background-image: unset !important;
}

.whyvisitstyle01 {
  position: relative;
  padding: 40px 0px;
}

.owl-carousel .owl-item img {
  display: block;
  width: auto;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  max-width: 100%;
  margin: 0 auto;
}

.logoStyle02 {
  position: relative;
  /* border: #efefef solid 1px;
  background: #fff; */
  padding: 5px 5px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  height: 175px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.logoStyle02 img {
  max-width: 100%;
  max-height: 100%;
  mix-blend-mode: multiply;
  filter: contrast(1.2);
  -webkit-filter: contrast(1.2);
}

.logoStyle02 a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
}

.exhibitorSlider {
  background-color: #FFFFFF;
}

.equalHeight .item .logoStyle02 {
  padding: 10px 10px;
  border: #efefef solid 1px;
}

.quotesStyle02 {
  position: relative;
  padding: 30px 0px;
}

.quotesinner2 {
  padding: 30px 30px;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 9;
  position: relative;
}

.quotesinner2:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background: rgb(51, 197, 221);
  background: linear-gradient(110deg, rgb(51 197 221 / 12%) 13%, rgb(255 127 80 / 100%) 100%);
  /* background: linear-gradient(110deg, rgb(51 197 221 / 12%) 13%, rgb(255 127 80 / 100%) 100%); */
  z-index: -1;
}

.quotesinner2:after {
  position: absolute;
  top: -3px;
  left: 3px;
  content: '';
  width: 101%;
  height: 99%;
  border: #B73A28 solid 2px;
  z-index: -2;
  transform: rotate(357deg);
  -webkit-transform: rotate(357deg);
  -moz-transform: rotate(357deg);
  -ms-transform: rotate(357deg);
  -o-transform: rotate(357deg);
}

.quotesinner2 h4.sm-title-block {
  letter-spacing: 0.5px;
  font-size: 18px !important;
  color: #000;
  font-weight: 600;
  text-transform: uppercase;
}

.quotesinner2 .testimonial-position {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  margin-top: 5px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.academySection {
  position: relative;
  padding: 40px 0px;
}

.listStyle,
.menuNavigationWrap ul {
  margin: 0;
  padding: 0;
}

.listStyle li {
  position: relative;
  list-style: none;
  padding: 5px 0 10px 20px;
  /* font-size: 16px; */
  margin: 0;
  line-height: 21px;
  color: #000 !important;
}

.listStyle li:before {
  position: absolute;
  top: 8px;
  left: 0;
  font: 14px/1 FontAwesome;
  content: "\f192";
  color: #9880ff;
}

.imageoverboxstyle02 {
  padding: 40px 40px;
  background: #fff;
  width: 40%;
}

.imageoverboxstyle02 li {
  position: relative;
  list-style: none;
  padding: 0px 0 10px 20px;
  /* font-size: 16px; */
  margin: 0;
  color: #000 !important;
  letter-spacing: 0.4px;
  font-weight: 500;
  line-height: 27px;
  font-size: 15px;
}

.reasonstovisit2023 {
  position: relative;
  padding: 40px 0px;
}

.reasonstovisit2023 i,
.reasonstovisit2023 em {
  -webkit-text-stroke: 1px #4633FF;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.newsletterBox {
  position: relative;
  padding: 30px 0px;
}

.newsletterBox .infosmallbox23 {
  background-attachment: fixed;
}

.newsletterBox .pattern01:before {
  background-color: rgb(28 120 161 / 72%);
}

.newsletterBox .infosmallbox23 h2 {
  color: #fff;
  letter-spacing: normal;
  text-transform: uppercase;
}

.newsletterBox .infosmallbox23 p {
  color: #fff;
}

.newsletterBox .ruy-btn .title-btn {
  color: #fff !important;
}

.newsletterBox .ruy-btn:hover .title-btn {
  color: #000 !important;
}

.youtubevideobanner {
  position: relative;
  padding: 30px 0px;
  z-index: 9;
}

.youtubevideobanner .about-award .box-right.background-main {
  padding: 30px 40px;
}

.dwtcwhatdo {
  position: relative;
}

.dwtcwhatdo figure {
  position: relative;
}

.dwtcwhatdo figure:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #30287c8c;
}

.dwtcwhatdo figure .bannerbtn {
  color: #fff;
  font-size: 23px;
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.dwtcwhatdo figure .ruy-btn .title-btn {
  color: #fff !important;
  font-size: 20px;
}

.dwtcwhatdo figure .ruy-btn:hover .title-btn {
  color: #000 !important;
}

.testimonialInner {
  position: relative;
  padding: 30px 0px;
}

.testimonialinnerstyle {
  z-index: 9;
  padding-top: 10px !important;
  background-size: cover;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 9;
  background: url(../images/pattern01.jpg);
  position: relative;
  padding: 20px;
  height: 100%;
}

.testimonialinnerstyle .testimonial-item {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  justify-content: space-between;
  height: 100%;
}

.testimonialinnerstyle:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: #4633ff7d;
  z-index: -1;
}

.testimonialinnerstyle h4.sm-title-block {
  letter-spacing: 1.2px;
  font-size: 18px !important;
  color: #4533ff;
  font-weight: 600;
  padding-top: 20px;
}

.testimonialinnerstyle .testimonial-position {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

.featuretopspace {
  padding-top: 100px;
}

.ruy-style-cards.boldstage .ruy-posts.box-image-normal .box-image-bg {
  height: 50vh;
}

.ruy-style-cards.boldstage .ruy-posts:not(.box-image-blackruy) .post-content {
  padding: 10px;
  padding-right: 10px;
  background-image: linear-gradient(to top, #05b085, rgb(22 22 22 / 41%), rgb(12 12 12 / 0%));
  text-align: center;
}

.ruy-style-cards.boldstage .ruy-posts.box-image-normal .section_description {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
}

.pattern03 {
  position: relative;
}

.pattern03:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/section-bg01.png);
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.5;
  background-position: bottom;
}

.service-block-two {
  position: relative;
  z-index: 20;
  height: 100%;
}

.youtubeVideoItem {
  border: #19779f solid 1px;
  position: relative;
  border-radius: 5px;
  padding: 10px 10px 15px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  border: none;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.video-box {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.video-box .overlay-box {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
  line-height: 45px;
  overflow: hidden;
}

.video-box .overlay-box:before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
  opacity: .1;
  background-color: #000;
}

.video-box .overlay-box span {
  position: absolute;
  width: 60px;
  height: 60px;
  left: 20%;
  right: 0;
  margin: 0 auto;
  z-index: 10;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  margin-top: 0;
  margin-left: 0;
  line-height: 60px;
  border-radius: 50%;
  font-family: flaticon;
  color: #FFF;
  font-size: 18px;
  padding-left: 0;
  background-color: transparent;
  text-align: center;
  border: #FFF solid 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.video-box .overlay-box span em {
  color: #FFF;
}

.video-box:hover .overlay-box span {
  color: #FFF;
  /* background-color: rgb(174 251 244 / 70%); */
}

.video-box:hover .overlay-box span em {
  color: #FFF;
}

.video-box .ripple,
.video-box .ripple:before,
.video-box .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-border-radius: 50% 50% 50% 50%;
  -moz-border-radius: 50% 50% 50% 50%;
  -ms-border-radius: 50% 50% 50% 50%;
  -o-border-radius: 50% 50% 50% 50%;
  border-radius: 50% 50% 50% 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
  /* -webkit-animation: ripple 3s infinite;
  -moz-animation: ripple 3s infinite;
  -ms-animation: ripple 3s infinite;
  -o-animation: ripple 3s infinite;
  animation: ripple 3s infinite */
}

.video-box .ripple:before {
  -webkit-animation-delay: .9s;
  -moz-animation-delay: .9s;
  -ms-animation-delay: .9s;
  -o-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  position: absolute
}

.video-box .ripple:after {
  -webkit-animation-delay: .6s;
  -moz-animation-delay: .6s;
  -ms-animation-delay: .6s;
  -o-animation-delay: .6s;
  animation-delay: .6s;
  content: "";
  position: absolute
}

.youtubeVideoItem h2 {
  font-size: 15px;
  line-height: 20px;
  padding-bottom: 20px;
  font-weight: 500;
  color: #072a48;
  text-align: center;
}

/* @-webkit-keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 20px 0 0 20px 0 #fff;
    box-shadow: 0 0 0 20px 0 0 20px 0 #fff
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 #fff;
    box-shadow: 0 0 0 0 #fff
  }
}

@keyframes ripple {
  70% {
    -webkit-box-shadow: 0 0 0 20px rgb(255, 255, 255, .2);
    box-shadow: 0 0 0 20px rgb(255, 255, 255, .2)
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgb(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgb(255, 255, 255, 0)
  }
} */

.videostyleinner {
  position: relative;
  padding: 40px 0px;
}

.photogallery {
  position: relative;
  padding: 40px 0px;
}

.fancybox__thumbs .carousel__slide {
  margin-right: 10px;
  display: none !important;
}

.swiper-slide.news-block-three {
  height: auto;
}

.latestnewsinner {
  position: relative;
  padding: 40px 0px;
}

.featuresStyle02 .feature-two__single {
  position: relative;
  /*display: block;
  */
  /*margin-bottom: 30px;
  */
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  height: 100%;
  margin-top: 100px;
  overflow: unset;
  height: 100%;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.featuresStyle02 .feature-two__img {
  position: relative;
  display: block;
  background-color: unset;
  clip-path: unset;
  z-index: 1;
  text-align: center;
  width: 200px;
  /* height: 200px; */
  margin: 0 auto;
  /* margin-top: -18%; */
}

.featuresStyle02 .feature-two__img img {
  width: 200px;
  width: 100%;
  /*mix-blend-mode: luminosity;
  */
  border-radius: 100%;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  text-align: center;
  margin-top: -48%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
}

.featureStyle03 .feature-two__icon {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  z-index: 3;
  display: none;
}

.featureStyle03 .feature-two__content {
  /* min-height: 280px; */
  margin-top: 0;
}

.equalheight {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.featureStyle03 .swiper-slide {
  height: auto;
}

.swiper-slide .slideh100 {
  height: 100%;
  background-color: #fff;
}

.leftvideo,
.leftvideo a {
  height: 100%,
}

.leftvideo a video {
  height: 100%;
  object-fit: fill;
}

.partnerStyle02 .swiper-pagination-bullets {
  display: none;
}

.internalbanner01 [data-overlay]:before,
.internalbanner01 [data-ruy-overlay]:before {
  background-color: transparent;
  mix-blend-mode: unset;
  background-image: linear-gradient(to right, rgb(69 50 253 / 90%), rgb(10 10 70 / 22%), rgb(70 51 255 / 91%)) !important;
  opacity: 1;
  display: none;
}

.internalbanner01 .innerbanertitle {
  /* top: 0; */
  position: absolute;
  margin: 0 auto;
  text-align: center;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.internalbanner01 .innerbanertitle img {
  width: 28%;
}

.internalbanner01 {
  position: relative;
  width: 100%;
  padding: 0px var(--ruy-gap-container);
  z-index: 9;
  margin-bottom: 0;
}

.internalbanner01 .container-fluid {
  --bs-gutter-x: 0rem;
}

.internalbanner01 .bannerinner {
  position: relative;
  padding: 0 0 0;
  height: 18.625rem;
  background-position: center;
  background-size: cover;
  z-index: 99;
}

.internalbanner01 .bannerinner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  border-radius: 4px;
  background-image: linear-gradient(to bottom, rgb(6 7 10 / 80%), rgb(0 0 0 / 30%), rgb(26 26 27 / 40%));
  z-index: 1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.internalbanner01 .innerbanertitle h1 {
  color: #fffcfc;
  background: #000;
  display: inline-block;
  font-size: 35px;
  line-height: 23px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  text-transform: uppercase;
  background: transparent;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 9;
  left: 0;
}

/*.internalbanner01 .innerbanertitle h1:before {
  background: #f5df00;
}*/
.fixed-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
}

.equalHeight .owl-stage {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.equalHeight .item {
  height: 100%;
  margin: 0;
}

.slideh100 {
  height: 100%;
}

.owl-nav {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  margin-top: 10px;
  width: 90%;
}

.owl-dots {
  margin: 0 auto;
  text-align: center;
}

.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: inline-block;
  background: #000 !important;
  width: 20px;
  height: 4px;
  margin: 10px 10px;
}

.owl-dot.active {
  background: #4533ff !important;
}

.reveal-effect {
  float: left;
  overflow: hidden;
  position: relative
}

.reveal-effect.animated:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #eee;
  position: absolute;
  left: 0;
  top: 0;
  animation: 1s cubic-bezier(.785, .135, .15, .86) forwards reveal;
  -webkit-animation-duration: 1s;
  z-index: 1;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.785, .135, .15, .86);
  -webkit-animation-timing-function: cubic-bezier(.785, .135, .15, .86);
  -moz-animation-timing-function: cubic-bezier(.785, .135, .15, .86);
  -o-animation-timing-function: cubic-bezier(.785, .135, .15, .86);
  -ms-animation-timing-function: cubic-bezier(.785, .135, .15, .86);
  -webkit-animation: 1s cubic-bezier(.785, .135, .15, .86) forwards reveal;
}

.reveal-effect.animated>* {
  animation: 1s linear forwards reveal-inner;
  -webkit-animation: 1s linear forwards reveal-inner
}

@-webkit-keyframes reveal {
  0% {
    left: 0;
    width: 0
  }

  50% {
    left: 0;
    width: 100%
  }

  51% {
    left: auto;
    right: 0
  }

  100% {
    left: auto;
    right: 0;
    width: 0
  }
}

@keyframes reveal {
  0% {
    left: 0;
    width: 0
  }

  50% {
    left: 0;
    width: 100%
  }

  51% {
    left: auto;
    right: 0
  }

  100% {
    left: auto;
    right: 0;
    width: 0
  }
}

@-webkit-keyframes reveal-inner {

  0%,
  50% {
    visibility: hidden;
    opacity: 0
  }

  100%,
  51% {
    visibility: visible;
    opacity: 1
  }
}

@keyframes reveal-inner {

  0%,
  50% {
    visibility: hidden;
    opacity: 0
  }

  100%,
  51% {
    visibility: visible;
    opacity: 1
  }
}

.ruy-normal-btn {
  z-index: 999;
}

.testimonialStyle .section-title__tagline-box,
.exhibitorSlider .section-title__tagline-box,
.featuresStyle .section-title__tagline-box,
.reasonstovisit2023 .section-title__tagline-box,
.ruysectorsStyle .section-title__tagline-box {
  display: none;
}

.contactusOuter {
  position: relative;
  padding: 40px 0px;
}

.onlyImageDiv {
  height: 100%;
  background-color: #000;
  width: 100%;
  position: relative;
}

.onlyImageDiv figure {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  margin: 0;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
}

.contactfullbg {
  background-color: #f3f3f3;
  height: 100%;
  width: 100%;
  border: #aa9ef8 solid 1px;
}

.contactfullbg .section-title {
  background: #ddd8ff;
  position: relative;
  padding: 10px 15px;
  margin-top: 0;
}

.contactbox {
  height: 100%;
  background-color: #f3f3f3;
  width: 100%;
  position: relative;
  padding: 10px 10px;
  border: #fff solid 1px;
  padding-bottom: 0;
}

.borderRightline {
  position: relative;
}

/* .borderbottomline:before {
        border-bottom: #fff solid 1px;
        position: absolute;
        top: 0;
        right: 0px;
        bottom: 0;
        height: 3px;
        width: 100%;
        content: '';
    } */
.contactbox h4 {
  font-size: 20px;
  color: #4633FF;
  margin-bottom: 10px;
  font-weight: 600;
}

.contactbox p {
  font-size: 16px;
  color: #000;
  margin: 0px;
  margin-bottom: 10px;
}

.contactbox p a {
  color: #000;
}

.contactbox p a:hover {
  color: #4633FF;
}

.contactbox em {
  width: 50px;
  font-size: 18px;
  -webkit-text-stroke: 1px #7e7e84;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.bannerinner .img-box-parallax img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.MainContentBox blockquote {
  margin: 1.2rem 14% 1.2rem;
  padding-top: 0.625rem;
  overflow: hidden;
}

.MainContentBox blockquote::before {
  content: "";
  background: url(https://www.ruyacareers.ae/Contents/Theme-1/images/icon-quote.png) no-repeat;
  width: 48px;
  height: 48px;
  display: inline-flex;
  background-size: 40px;
  float: left;
}

.MainContentBox blockquote img {
  max-width: 125px;
  border-radius: 50%;
  margin: 0 0 0 5%;
  float: right;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.MainContentBox blockquote h2 {
  font-size: 18px;
  line-height: 28px;
  margin: 0 0 0.75rem;
}

.MainContentBox blockquote h2 span {
  margin-top: 0.5rem;
  padding-left: 48px;
  display: block;
  font-size: 16px;
  color: var(--font-color);
  transition: all 0.6s ease;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -ms-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}

.MainContentBox blockquote h2 span::after {
  content: "\2019\2019";
  color: #111111;
  display: inline;
  font-weight: 600;
  letter-spacing: -1px;
}

.showstats {
  position: relative;
  padding: 40px 0px 0px 0px;
}

.showstats .about-section .experience {
  border: none;
  padding: 10px 10px;
  background: #ceceeb;
  display: inline-flex;
  align-items: end;
}

.about-section em {
  font-size: 50px;
}

.rightstatssec {
  position: relative;
}

.rightstatssec .font-number {
  color: var(--heading-color);
  font-size: 50px;
}

.rightstatssec .award-item {
  margin-bottom: 50px;
}

.rightstatssec .title-block {
  letter-spacing: unset;
  font-size: 18px;
}

.rightstatssec i,
.rightstatssec em {
  -webkit-text-stroke: 1px #4633FF;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-size: 50px !important;
}

.rightstatssec .animate-number {
  display: inline-block;
  -webkit-text-stroke: unset;
  -webkit-text-fill-color: unset;
  margin: 0;
  padding: 0;
  position: relative;
}

.showstats .title-h2 {
  margin: 0;
  color: #191818;
  font-size: 33px;
  line-height: 40px;
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.5px;
}

.showstats .about-section .experience .title-block {
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid var(--border-color);
  letter-spacing: unset;
  font-size: 27px;
  line-height: 29px;
  font-weight: 600;
}

.showstats .experience .exp-number span {
  background-image: url(../img/bg-2.svg);
  color: #4633ff;
  -webkit-text-stroke: unset;
  -webkit-text-fill-color: unset;
}

.showstats .animate-number {
  display: inline-block;
  -webkit-text-stroke: unset !important;
}

.about-section em {
  font-size: 73px;
  color: #4633ff;
  -webkit-text-stroke: 1px #4633FF;
  -webkit-text-fill-color: transparent;
}

.twocolumnWrap {
  position: relative;
  padding: 50px 0px;
}

.twocolumnWrap figure {
  position: relative;
  margin-bottom: 0;
}

.twocolumnWrap figure img {
  border-radius: 4px 4px 4px 4px;
  -webkit-border-radius: 4px 4px 4px 4px;
  -moz-border-radius: 4px 4px 4px 4px;
  -ms-border-radius: 4px 4px 4px 4px;
  -o-border-radius: 4px 4px 4px 4px;
}

.twocolumnWrap h2 {
  margin: 0;
  color: #4633ff;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  margin-top: 4px;
  letter-spacing: 0.5px;
  padding: 30px 0px 10px 0px;
}

.twocolFrame {
  padding: 10px 20px;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.twocolFrame:hover {
  background-color: #b8b8f878;
}

.Exhibitors_Logo_Box {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 40px 0 40px 0;
  background-color: #FFFFFF;
}

.Exhibitors_Logo_Box .partnerLogoItem {
  height: 100%;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

.Exhibitors_Logo_Box .partnerLogoItem .col-lg-2.col-md-2.mb-3 {
  flex: 0 0 auto;
  width: 20%;
}

.Exhibitors_Logo_Box .partnerLogoItem .col-lg-4.col-md-4.mb-3 {
  flex: 0 0 auto;
  width: 40%;
}

.Exhibitors_Logo_Box .partnerLogoItem .col-lg-8.col-md-8.mb-3 {
  flex: 0 0 auto;
  width: 60%;
}

.Exhibitors_Logo_Box .partnerLogoItem .Exhibitors_Logo_Wrapper {
  border: 1px solid #dede;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  height: 160px;
  text-align: center;
  position: relative;
  margin-bottom: 0;
  padding: 20px 15px 15px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.Careers_Sponsors_Logo .partnerLogoItem .Exhibitors_Logo_Wrapper span {
  position: absolute;
  top: 10px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.Exhibitors_Logo_Box .partnerLogoItem .Exhibitors_Logo_Wrapper img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: 90%;
  margin: 0 auto;
  margin-top: 10px;
}

.Exhibitors_Logo_Box .partnerLogoItem .Exhibitors_Logo_Wrapper:hover {
  border-color: #ebebeb;
  box-shadow: 0 10px 60px 0 rgba(0, 0, 0, .05);
}

.feature-two__single .blogbtn01 {
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  color: #000;
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 8px;
  text-transform: uppercase;
  height: 42px !important;
  background-color: transparent;
  border-color: transparent;
  border-radius: 50px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.feature-two__single .blogbtn01 span,
.feature-two__single .blogbtn01 i,
.feature-two__single .blogbtn01 em {
  margin: 0 4px;
}

.feature-two__single .blogbtn01 i,
.feature-two__single .blogbtn01 em {
  width: auto;
  height: auto;
  margin-left: 3px;
  color: #DB5A3A;
  background-color: transparent !important;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.feature-two__single:hover .blogbtn01 {
  padding: 12px 20px;
  color: #000;
  background-color: #DB5A3A;
}

.feature-two__single:hover .blogbtn01 em,
.feature-two__single:hover .blogbtn01 i {
  color: #000;
}

section.CareesUAE-Intro {
  position: relative;
  width: 100%;
  margin: 70px 0 70px 0;
}

.MainHeading h1 {
  display: inline-block;
  position: relative;
  font-size: 25px;
  line-height: 28px;
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.Carees-IntrWarpper p {
  font-size: 16px;
  color: #000;
}

.IntroImage.IntroImageInner {
  height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  margin-top: 30px;
}

.IntroImage img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.Carees-IntrWarpper p span {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 23px;
  display: block;
}

.Carees-IntrWarpper p a {
  color: var(--bs-link-hover-color);
}

.speakerItem01 {
  position: relative;
  z-index: 2;
  margin: 0 10px;
  height: 100%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  -ms-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
}

.speakerItem01 .speakerdetails {
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  width: 100%;
  z-index: 1;
}

.speakerItem01 figure {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.speakerItem01 .speakerdetails h2 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  padding-bottom: 0;
  padding-top: 10px;
  margin: 0;
  text-transform: uppercase;
}

.speakerItem01 .speakerdetails p {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 21px;
}

.speakerItem01 .speakerdetails p span {
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.modal-backdrop {
  z-index: 9999;
}

.modalIndexspeaer {
  z-index: 99999;
}

.modalIndexspeaer .modal-content {
  border: 8px solid #aaa8a787;
  overflow: auto;
  background: #fff;
  border-radius: 5px;
  height: auto;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.modalIndexspeaer .close {
  padding: 0 10px;
  margin: 0;
  position: absolute;
  right: 0;
  color: #DB5A3A;
  font-size: 40px;
  background: #efefef;
  opacity: .8;
  z-index: 999;
}

.speakersideInfo {
  height: 100%;
  background: #105680 !important;
  background-image: linear-gradient(96deg, #105680 7%, #005972 100%) !important;
}

.speakersideInfo figure {
  width: 100%;
  text-align: center;
  margin: 10px auto 20px;
  border: 5px solid #333;
}

.speakersideInfo figure img {
  max-width: 100%;
  height: auto;
}

.speakersideInfo h2 {
  color: #FFFFFF;
  font-size: 16px;
  line-height: 28px;
  text-align: center;
  margin: 0;
  padding: 0;
}

.speakersideInfo p {
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
}

.speakersideInfo p.claimToFame {
  font-size: 15px;
}

.commonModal p.designation span {
  color: #FF7F50;
  font-size: 16px;
  font-weight: 600;
}

.commonModal .speakersideInfo .designation .companyname {
  display: block;
}

.modalContentBox,
.speaker-bio {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px;
  width: 100%;
  flex-wrap: nowrap;
  flex-direction: column;
}

.speaker-bio h2 {
  font-size: 20px;
  padding: 0 0 20px;
  text-align: center;
  margin: 0 auto;
  font-weight: 600;
}

.speaker-bio p {
  color: #000;
  text-align: left;
  font-size: 15px;
}

.speakerbox-singlerow .owl-nav {
  position: absolute;
  top: 45%;
  width: 100%;
}

.speakerbox-singlerow .owl-next,
.speakerbox-singlerow .owl-prev {
  font-size: 0;
  position: absolute;
  background-image: url(../images/arrow-single.png) !important;
  z-index: 9999;
  background-size: cover !important;
}

.speakerbox-singlerow .owl-next span,
.speakerbox-singlerow .owl-prev span {
  display: none;
}

.speakerbox-singlerow .owl-next {
  right: -50px;
  width: 40px !important;
  height: 40px !important;
  transform: rotate(180deg) !important;
  -webkit-transform: rotate(180deg) !important;
  -moz-transform: rotate(180deg) !important;
  -ms-transform: rotate(180deg) !important;
  -o-transform: rotate(180deg) !important;
}

.speakerbox-singlerow .owl-prev {
  left: -60px;
  width: 40px;
  height: 40px;
}

.projectyoubox .sliderItem .thumbnailCover {
  overflow: hidden;
  line-height: 100%;
  max-height: 300px;
  display: flex;
  height: auto;
}

.projectyoubox .sliderItem .thumbnailCover img {
  display: block;
  width: 100%;
  transform: scale(1.1);
  transition: transform 3s cubic-bezier(.165, .84, .44, 1);
  object-fit: contain;
  cursor: grab;
  height: 300px;
  vertical-align: bottom;
  -webkit-transition: transform 3s cubic-bezier(.165, .84, .44, 1);
  -moz-transition: transform 3s cubic-bezier(.165, .84, .44, 1);
  -ms-transition: transform 3s cubic-bezier(.165, .84, .44, 1);
  -o-transition: transform 3s cubic-bezier(.165, .84, .44, 1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}

.projectyoubox .sliderItem h3 {
  text-transform: capitalize;
  display: block;
  align-items: center;
  justify-content: flex-start;
  padding-top: 10px;
  line-height: 1.1;
  letter-spacing: 0;
  margin-top: -3.425rem;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 15px;
}

.projectyoubox .sliderItem h3 span.order {
  font-size: 4.6vw;
  -webkit-text-fill-color: #ffffffb5;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #4533ff;
  height: 100%;
  font-weight: 700;
  margin-right: 10px;
  display: block;
  padding-bottom: 15px;
}

.showslider h3 a {
  height: inherit;
  color: #000;
  text-decoration: none;
  display: block;
}

.projectyoubox .sliderItem p {
  width: 100%;
  margin-top: 0px;
}

.projectyoubox .sliderItem {
  background: #FFF;
  height: 100%;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.projectyoubox .sliderItem:hover {
  background-color: rgb(204 204 233);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.projectyoubox .sliderItem .sliderbelow {
  position: relative;
  padding: 0 12px 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.projectyoubox .sliderItem .sliderbelow .blogbtn01 {
  margin-bottom: 10px;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  color: #000;
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 8px;
  text-transform: uppercase;
  height: 42px !important;
  background-color: transparent;
  border-color: transparent;
  border-radius: 50px;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.projectyoubox .sliderItem .sliderbelow .blogbtn01 span {
  margin: 0 4px;
}

.projectyoubox .sliderItem .sliderbelow .blogbtn01 i,
.projectyoubox .sliderItem .sliderbelow .blogbtn01 em {
  width: auto;
  height: auto;
  margin-left: 3px;
  color: #DB5A3A;
  background-color: transparent !important;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
}

.projectyoubox .sliderItem:hover .blogbtn01 {
  padding: 12px 20px;
  color: #000;
  background-color: #DB5A3A;
}

.projectyoubox .sliderItem .sliderbelow:hover .blogbtn01 i,
.projectyoubox .sliderItem .sliderbelow:hover .blogbtn01 em {
  color: #000;
}

.agendaOverview {
  position: relative;
  padding: 50px 0 50px;
  background: #f3f3f3;
}

.nav-tabs.dayTabs {
  border: none;
  text-align: center;
  border: none;
  margin: 0 auto;
  width: 100%;
  display: block;
}

.dayTabs li {
  padding: 0 80px 0 0;
  display: inline-block;
  margin: 0;
  position: relative;
}

.section-content {
  position: relative;
}

.section-content .tabs-default .dayTabs li:last-child {
  padding-right: 0;
}

.dayTabs.nav-pills li a.nav-link.active,
.dayTabs.nav-pills li a.nav-link {
  color: #232323;
  font-size: 20px;
  font-weight: 700;
  border-radius: 0;
  background: transparent;
  border-bottom: 4px solid #1b61ae;
  background-color: transparent;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.dayTabs li a {
  font-size: 20px;
  font-weight: 700;
  color: #232323;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  padding: 5px 15px;
  position: relative;
  border-bottom: 4px solid #1b61ae;
  padding: 5px 0;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 36px;
  color: #fff;
}

.dayTabs li a span {
  padding: 0 20px;
  display: block;
  display: block;
  padding: 0;
  font-weight: 500;
  font-size: 23px;
  text-transform: uppercase;
  line-height: 29px;
  color: #000;
}

.dayTabs li a span.etn-day {
  font-size: 15px !important;
  margin: 0;
  line-height: 20px !important;
  color: #1b61ae !important;
  font-weight: 500 !important;
}

.dayTabs li:not(:last-child):before {
  position: absolute;
  content: "";
  width: 1px;
  height: 44px;
  background: #4f4f5f;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 40px;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.dayTabs li a:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0;
  position: absolute;
  left: 0;
  bottom: -10px;
  right: 0;
  margin: auto;
  opacity: 0;
  border-color: #1b61ae transparent transparent transparent;
}

.dayTabs li a.active:after {
  opacity: 1;
}

.agendaOverview h3 {
  text-align: center;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 30px;
}

.agendascheduleItem {
  background-color: #fff;
  margin: 0 0 10px;
  padding: 10px;
  border-style: solid;
  border-width: 0;
  border-radius: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.agendascheduleItem .schedule-content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  overflow: hidden;
  padding: 10px;
  -ms-flex-item-align: start;
  -ms-grid-row-align: start;
  align-self: start;
}

.agendaOverview .expendiv2 {
  padding-left: 10px;
}

.agendaOverview .expendiv2 p {
  position: relative;
  line-height: 28px;
  font-size: 16px;
  color: #343434;
}

.agendaOverview .expendiv2 p:last-child {
  margin-bottom: 4px;
}

.list-with-number .number-item.projectforbox {
  padding: 15px 15px !important;
}

.list-with-number .number-item.projectforbox .ruy-icon {
  margin-bottom: 15px;
}

.list-with-number .number-item.projectforbox .ruy-icon img {
  max-width: 100%;
  width: 70px;
  height: 70px;
}

.list-with-number .number-item.projectforbox h3,
.list-with-number .number-item.projectforbox p {
  font-size: 16px !important;
}

.featuresStyle .section-title .section-title__title {
  margin-bottom: 15px;
}

.featuretopspace .feature-two__single .feature-two__content .feature-two__content-inner p.feature-two__text {
  min-height: 80px;
}

.inpartnershipbox {
  position: relative;
  background: #FFFFFF;
  padding: 3rem 0 3rem;
  margin: 1.5rem 0 1.5rem;
}

.inpartnershipbox .headinglogo {
  text-align: center;
}

.inpartnershipbox .headinglogo h4 {
  color: #000000;
  font-size: 1.425rem;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 22px;
}

.inpartnershipbox .next-logo {
  position: relative;
  border: 1px solid #dede;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  height: 95px;
  text-align: center;
  margin-bottom: 0;
  padding: 2px;
  border-radius: 0;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.inpartnershipbox .next-logo img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  width: 90%;
  margin: 0 auto;
}

.inpartnershipbox .col-sm-4 {
  padding: 0 8px;
}

.box-info .ulbox {
  padding: 0;
  margin: 0;
  list-style: none;
}

.box-info .ulbox li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--font-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: var(--line-height-content);
  font-family: var(--body-font);
  font-weight: var(--font-weight-body);
}

.box-info .ulbox li::before {
  position: absolute;
  content: '';
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  background: #000;
}

.img-box-parallax .fordesktop {
  display: block !important;
}

.img-box-parallax .formobile {
  display: none !important;
}

.news-section-three.projectyoubox .Learnslider .owl-nav .owl-prev .ln-next+.ln-next,
.news-section-three.projectyoubox .Learnslider .owl-nav .owl-next .ln-prev+.ln-prev {
  display: none;
}

.news-section-three.projectyoubox .Learnslider .sliderItem .sliderbelow {
  align-items: center;
}

.news-section-three.projectyoubox .Learnslider .sliderItem .sliderbelow h3,
.news-section-three.projectyoubox .Learnslider .sliderItem .sliderbelow p {
  text-align: center;
}

.speakerTeam01 {
  border: 2px solid #000;
  border-radius: 10px;
  text-align: center;
  margin: 0 1rem;
  z-index: 1;
  position: relative;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.speakerTeam01:before,
.speakerTeam01:after {
  content: "";
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  transform: translateY(-50%) scaleX(0.3);
  transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -webkit-transform: translateY(-50%) scaleX(0.3);
  -moz-transform: translateY(-50%) scaleX(0.3);
  -ms-transform: translateY(-50%) scaleX(0.3);
  -o-transform: translateY(-50%) scaleX(0.3);
}

.speakerTeam01:after {
  width: 106%;
  left: 50%;
  transform: translate(-50%, -50%) scaleY(0.25);
  -webkit-transform: translate(-50%, -50%) scaleY(0.25);
  -moz-transform: translate(-50%, -50%) scaleY(0.25);
  -ms-transform: translate(-50%, -50%) scaleY(0.25);
  -o-transform: translate(-50%, -50%) scaleY(0.25);
}

.speakerTeam01 figure {
  position: relative;
  margin: 0;
}

.speakerTeam01 figure img {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 10px 10px;
  transition: all 0.3s ease 0s;
  -webkit-border-radius: 10px 10px;
  -moz-border-radius: 10px 10px;
  -ms-border-radius: 10px 10px;
  -o-border-radius: 10px 10px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
}

.speakerTeam01 .speakerTeamdetails {
  width: 93%;
  padding: 10px 0 10px;
  background: #DB5A3A;
  position: absolute;
  bottom: 50px;
  left: 50%;
  opacity: 0;
  border-radius: 6px;
  transform: translateX(-50%);
  transition: all 0.3s cubic-bezier(0.5, 0.2, 0.1, 0.9);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  -webkit-transition: all 0.3s cubic-bezier(0.5, 0.2, 0.1, 0.9);
  -moz-transition: all 0.3s cubic-bezier(0.5, 0.2, 0.1, 0.9);
  -ms-transition: all 0.3s cubic-bezier(0.5, 0.2, 0.1, 0.9);
  -o-transition: all 0.3s cubic-bezier(0.5, 0.2, 0.1, 0.9);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}

.speakerTeam01 .speakerTeamdetails h2 {
  color: #000;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 7px;
}

.speakerTeam01 .speakerTeamdetails p {
  color: #333333;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.speakerTeam01:hover:before {
  transform: translateY(-50%) scaleX(0.7);
  -webkit-transform: translateY(-50%) scaleX(0.7);
  -moz-transform: translateY(-50%) scaleX(0.7);
  -ms-transform: translateY(-50%) scaleX(0.7);
  -o-transform: translateY(-50%) scaleX(0.7);
}

.speakerTeam01:hover:after {
  transform: translate(-50%, -50%) scaleY(0.7);
  -webkit-transform: translate(-50%, -50%) scaleY(0.7);
  -moz-transform: translate(-50%, -50%) scaleY(0.7);
  -ms-transform: translate(-50%, -50%) scaleY(0.7);
  -o-transform: translate(-50%, -50%) scaleY(0.7);
}

.speakerTeam01:hover .speakerTeamdetails {
  bottom: 10px;
  opacity: 1;
}

.projectyoubox.projectboxcenter .sliderItem .sliderbelow {
  align-items: flex-start !important;
}

.projectyoubox.projectboxcenter .sliderItem .sliderbelow h3,
.projectyoubox.projectboxcenter .sliderItem .sliderbelow p {
  text-align: left !important;
}

/* End */


/*New Agenda Design CSS*/

section.SpeakersAgendaDesign {
  padding-bottom: 15px;
}

section.SpeakersAgendaDesign .container {
  padding: 0 28px 0 28px;
}


section.SpeakersAgendaDesign .AgendaImgBox img {
  width: 130px;
  border-radius: 50%;
}

section.SpeakersAgendaDesign .AgendaImgBox img.OverlayImage {
  position: relative;
  left: -44px;
  z-index: -1;
}

section.SpeakersAgendaDesign .AgendaContentBox span {
  display: block;
  font-size: 18px;
}

section.SpeakersAgendaDesign .AgendaContentBox span.SpeakerName_ {
  position: relative;
  color: rgb(70, 50, 255);
  font-weight: 600;
  margin: 7px 0 32px 0;
}

section.SpeakersAgendaDesign .AgendaContentBox span.SpeakerName_:before {
  position: absolute;
  content: '';
  left: 0;
  top: 34px;
  background: #DB5A3A;
  height: 8px;
  width: 138px;
  border-radius: 30px;
}

section.SpeakersAgendaDesign .AgendaContentBox span.AgendaTime {
  color: rgb(70, 50, 255);
  font-weight: 600;
}

section.SpeakersAgendaDesign .AgendaContentBox p {
  color: #000;
  font-size: 14px;
}

.AgendaMainHeading h3 {
  color: #fff;
  font-size: 35px;
  margin: 0;
}

.AgendaMainHeading {
  width: 44%;
  background: #4633ff;
  margin: 40px 0 40px 0;
  padding: 14px 0 14px 50px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
}

.AgendaMainHeading.AgendaMainHeadingColor2 {
  background: #05b085;
}

.AgendaMainHeading.AgendaMainHeadingColor3 {
  background: #b8b8f8;
}

.AgendaMainHeading h3 span {
  font-weight: 700;
  font-size: 30px;
}

.AgendaMainHeading h3 .month {
  font-size: 30px;
}

.BG-dark-voilet .details-tabs .nav-item .nav-link {
  background: #b8b8f8;
  color: #fff;
  border-radius: 0;
  padding: 10px 10px;
  margin-right: 10px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
}

.BG-dark-voilet .details-tabs .nav-item .nav-link.active {
  background: #4533ff;
}

#cphContents_ExhiJOBS .brochureWrapnew h3 {
  font-size: 16px;
}

.statsnwbx {
  display: flex;
}

.statsnwbx em,
.statsnwbx i {
  font-size: 28px;
  color: #4533ff;
}

.statsnwbx .stastbxcontnt .counterValue {
  position: relative;
}

.statsnwbx .stastbxcontnt {
  margin-left: 16px;
}

.statsnwbx .stastbxcontnt .counterValue::before {
  content: "";
  background: #DB5A3A;
  position: absolute;
  top: -4px;
  left: -4px;
  z-index: -1;
  width: 42px;
  height: 42px;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.statsnwbx .stastbxcontnt h2 {
  color: #00a677;
  font-weight: 600;
  font-size: 38px;
  line-height: 1.2;
}

.statsnwbx .stastbxcontnt h3 {
  color: #333;
  font-size: 18px;
  line-height: 1.1;
}

.contentright p {
  color: #000 !important;
}

.contentright h3 {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 12px;
}

.cover-bg-img.imgtrans {
  transform: translate3d(0px, -3.625rem, 0px) !important;
  -webkit-transform: translate3d(0px, -3.625rem, 0px) !important;
  -moz-transform: translate3d(0px, -3.625rem, 0px) !important;
  -ms-transform: translate3d(0px, -3.625rem, 0px) !important;
  -o-transform: translate3d(0px, -3.625rem, 0px) !important;
}

img.MwoeFooterLogo {
  width: 22px;
  margin: 0 2px 0 0;
}

a.link-hover.MwoeText_ {
  font-size: 14px;
  font-weight: 600;
}

.modal-backdrop.show {
  z-index: 9999 !important;
}

.PopupStyling {
  z-index: 999999;
  background: #00000047;
  padding-top: 80px;
}

.PopupStyling button.btn-close {
  opacity: 1;
  color: #000;
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 16px;
  font-weight: 700;
  background: #f2df55;
}

.NewsContentBox .MainContentBox ul {
  margin-bottom: 1rem !important;
}

.NewsContentBox .MainContentBox ul li {
  position: relative;
  list-style: none;
  padding: 5px 0 5px 25px;
  font-size: 1rem;
  margin: 0;
  line-height: 21px;
}

.NewsContentBox .MainContentBox ul li::before {
  position: absolute;
  top: 8px;
  left: 0;
  font: 1rem/1 FontAwesome;
  content: "\f192";
  color: #636363;
}

.fancybox__container {
  z-index: 9999;
}

.ruy-icon i,
.ruy-icon .fas,
.ruy-icon em {
  font-size: var(--ruy-icon-size, 20px);
  color: #FFF;
}

.featuretopspace {
  padding-top: 0;
}

.privacy-policy {
  border: #4633ff7d solid 1px;
  padding: 20px 20px;
  background: #f2f2f2;
}

.privacy-policy h2 {
  font-size: 20px;
  color: #4533ff;
}

.privacy-policy a,
.privacy-policy p a {
  color: #4533ff;
  font-weight: 600;
}

.socials li a i img {
  width: 24px;
  transition: all .3s cubic-bezier(.55, .02, .1, .9);
}

.socials li a:hover i img {
  transform: scale(0);
  transition: all .3s cubic-bezier(.55, .02, .1, .9);
}

.langbtn {
  font-size: 16px;
  color: #000;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.langbtn:hover {
  color: var(--bs-link-hover-color);
}

.logoStyle02 a {
  height: auto !important;
}

section.exhibitorSlider.EachLogoBtn_ .exhibitor-carousel_ .item .logoStyle02 {
  border: 0;
}

section.exhibitorSlider.EachLogoBtn_ .exhibitor-carousel_ .item {
  background: #fff;
  padding-bottom: 20px;
}

section.exhibitorSlider.EachLogoBtn_ .exhibitor-carousel_ .item .logoStyle02 {
  border: 0;
  height: 152px;
}

section.exhibitorSlider.EachLogoBtn_ .exhibitor-carousel_ .item span.ruy-icon.ruy-bg-before.btn-icon-left.heading-color.z-index-1 {
  width: 32px;
  height: 32px;
  line-height: 34px;
}

/**/
.PopupStyling {
  --bs-modal-width: 800px;
}

.PopupStyling .modal-content {
  border: 5px solid #f3df3d;
}

.PopupStyling button.btn-close {
  opacity: 1;
}

.PopupStyling .imageBox {
  box-shadow: rgb(0 0 0 / 18%) 0px 3px 8px;
  width: 170px;
  margin: 0 auto;
}

.PopupStyling .item-content ul {
  padding: 0;
  text-align: center;
  list-style: none;
}

.PopupStyling .item-content ul li {
  font-size: 16px;
  color: #000;
  font-weight: 600;
}

.PopupStyling h3 {
  color: #000;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 22px;
}

.availableBox .AvailableVacanciesBox {
  box-shadow: rgb(0 0 0 / 18%) 0px 3px 8px;
  height: 213px;
  align-items: flex-end;
  background-color: #fff;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}

.availableBox .onclickmodal img {
  width: 170px;
  margin: 0 auto;
}

.PopupStyling .item-content ul li:before {
  left: inherit;
  margin-left: -23px;
}

.PopupStyling .item-content ul {
  width: 100%;
  text-align: left;
  margin: 0 auto;
  position: relative;
  left: 0;
}

.PopupStyling .modal-body .item-content h5 {
  color: #000;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 600;
  text-transform: uppercase;
}

.PopupStyling .modal-body .item-content p {
  font-size: 15px;
  color: #333;
}

.AvailableVacanciesBox .d-flex.justify-content-center.mt-0.ruy-def-btn.ruy-hover-icon {
  width: 100%;
  position: relative;
  top: -15px;
}

.AvailableVacanciesBox a.onclickmodal {
  width: 100%;
  position: relative;
  top: -15px;
}

.main-slider .ruy-slider-content .title {
  text-transform: uppercase;
}











/*END Here*/