/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/
:root {
  --rofiex-font: "Mulish", sans-serif;
  --rofiex-heading-font: "Montserrat", sans-serif;
  --rofiex-special-font: "Work Sans", serif;
  --rofiex-text: #636363;
  --rofiex-text-rgb: 99, 99, 99;
  --rofiex-text-dark: #92918F;
  --rofiex-text-dark-rgb: 146, 145, 143;
  --rofiex-text-gray: #89868d;
  --rofiex-text-gray-rgb: 137, 134, 141;
  --rofiex-base: #FE574F;
  --rofiex-base-rgb: 254, 87, 79;
  --rofiex-gray: #F5F1EF;
  --rofiex-gray-rgb: 245, 241, 239;
  --rofiex-white: #fff;
  --rofiex-white-rgb: 255, 255, 255;
  --rofiex-black: #000000;
  --rofiex-black-rgb: 0, 0, 0;
  --rofiex-black2: #222222;
  --rofiex-black2-rgb: 34, 34, 34;
  --rofiex-black3: #333333;
  --rofiex-black3-rgb: 51, 51, 51;
  --rofiex-border-color: #DDDDDD;
  --rofiex-border-color-rgb: 221, 221, 221;
  --rofiex-letter-space: 0.1em;
  --rofiex-letter-space-xl: 0.2em;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/
.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-120 {
  margin-top: 120px;
}

.mt--60 {
  margin-top: -60px;
}

.mt--120 {
  margin-top: -120px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb--60 {
  margin-bottom: -60px;
}

.mb--120 {
  margin-bottom: -120px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-142 {
  padding-top: 142px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

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

.pb-90 {
  padding-bottom: 90px;
}

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

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-30 {
  padding-left: 30px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-30 {
  padding-right: 30px;
}

.social {
  position: relative;
  border-top: 1px solid var(--rofiex-border-color, #DDDDDD);
}
.social__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .social__list {
    flex-direction: column;
  }
}
.social__list li {
  position: relative;
}
@media (max-width: 767px) {
  .social__list li {
    width: 100%;
  }
}
.social__list li a {
  font-size: 32px;
  color: var(--rofiex-black, #000000);
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 50px 0;
}
@media (max-width: 1199px) {
  .social__list li a {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .social__list li a {
    font-size: 24px;
    gap: 10px;
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .social__list li a {
    justify-content: center;
  }
}
.social__list li a i {
  color: var(--rofiex-text, #636363);
  position: relative;
  top: 4px;
  transition: all 0.3s ease;
}
.social__list li a:hover {
  color: var(--rofiex-base, #FE574F);
}
.social__list li a:hover i {
  color: var(--rofiex-base, #FE574F);
  animation: bounceIn 1s linear;
  animation-duration: 1s;
}
.social__list li + li {
  position: relative;
}
.social__list li + li::before {
  position: absolute;
  left: -36%;
  top: 0;
  width: 1px;
  height: 100%;
  content: "";
  background-color: var(--rofiex-border-color, #DDDDDD);
}
@media (max-width: 1199px) {
  .social__list li + li::before {
    left: -20%;
  }
}
@media (max-width: 991px) {
  .social__list li + li::before {
    left: -15%;
  }
}
@media (max-width: 767px) {
  .social__list li + li::before {
    width: 100%;
    height: 1px;
    left: 0;
  }
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
body {
  font-family: var(--rofiex-font, "Mulish", sans-serif);
  color: var(--rofiex-text, #636363);
  font-size: 16px;
  line-height: 1.625;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--rofiex-base, #FE574F);
  transition: all 400ms ease;
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  color: var(--rofiex-black, #000000);
}
@media (max-width: 575px) {
  h1 br,
  h2 br,
  h3 br,
  h4 br,
  h5 br,
  h6 br {
    display: none;
  }
}

@media (max-width: 575px) {
  p br {
    display: none;
  }
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.background-base {
  background-color: var(--rofiex-base, #FE574F);
}

.background-gray {
  background-color: var(--rofiex-gray, #F5F1EF);
}

.background-black {
  background-color: var(--rofiex-black, #000000);
}

.background-black-2 {
  background-color: var(--rofiex-black2, #222222);
}

.rofiex-text-dark {
  color: var(--rofiex-text-dark, #92918F);
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
  overflow: hidden;
}

.container-fluid,
.container {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
.row {
  --bs-gutter-x: 30px;
}

.gutter-y-10 {
  --bs-gutter-y: 10px;
}

.gutter-y-15 {
  --bs-gutter-y: 15px;
}

.gutter-y-20 {
  --bs-gutter-y: 20px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

.gutter-y-60 {
  --bs-gutter-y: 60px;
}

.rofiex-btn {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  padding: 14px 32px;
  transition: 0.4s ease-in-out;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
  overflow: hidden;
  text-align: center;
}
.rofiex-btn i {
  font-size: 12px;
  margin-left: 9px;
  color: inherit;
  display: inline-block;
  transition: all 0.2s ease;
}
.rofiex-btn::after {
  content: "";
  background-color: var(--rofiex-black2, #222222);
  position: absolute;
  bottom: -17px;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  width: 27px;
  height: 27px;
  border-radius: 50%;
  z-index: -1;
  transition: all 0.5s ease;
}
.rofiex-btn:hover {
  color: var(--rofiex-white, #fff);
}
.rofiex-btn:hover i {
  transform: rotate(45deg);
}
.rofiex-btn:hover:after {
  width: 100%;
  height: calc(100% + 30px);
  border-radius: 10px;
}

.tabs-box .tabs-content .tab:not(.active-tab) {
  display: none;
}

.bootstrap-select .dropdown-menu {
  padding-top: 0;
  padding-bottom: 0;
  border-radius: 0;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background-color: var(--rofiex-base, #FE574F);
}

.tns-outer .tns-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.tns-outer .tns-controls button {
  width: 45px;
  height: 45px;
  border: 2px solid #f4f4f4;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--rofiex-text, #636363);
  border-radius: 50%;
  margin-left: 5px;
  margin-right: 5px;
}

.block-title {
  margin-top: -8px;
  margin-bottom: 50px;
}
.block-title__decor {
  width: 21px;
  height: 14px;
  background-image: url(../images/shapes/leaf-1-1.html);
  background-repeat: no-repeat;
  background-position: top center;
  display: inline-block;
  line-height: 1;
  margin-bottom: -5px;
  position: relative;
  top: -7px;
}
.block-title p {
  margin: 0;
  color: var(--rofiex-text, #636363);
  font-size: 16px;
  line-height: 1;
  margin-bottom: 7px;
}
@media (min-width: 768px) {
  .block-title p {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .block-title p {
    font-size: 20px;
  }
}
.block-title h3 {
  margin: 0;
  font-size: 35px;
  color: var(--rofiex-black, #000000);
}
@media (min-width: 768px) {
  .block-title h3 {
    font-size: 42px;
  }
}
@media (min-width: 992px) {
  .block-title h3 {
    font-size: 50px;
  }
}

.ul-list-one {
  margin-bottom: 0;
}
.ul-list-one li {
  position: relative;
  padding-left: 45px;
  font-size: 16px;
  font-weight: 500;
  color: var(--rofiex-black, #000000);
}
@media (min-width: 481px) {
  .ul-list-one li {
    font-size: 20px;
  }
}
.ul-list-one li::before {
  content: "\e907";
  color: var(--rofiex-base, #FE574F);
  font-size: 26px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-family: "azino-icon";
}

.preloader {
  position: fixed;
  background-color: var(--rofiex-black, #000000);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}
.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  background-color: var(--rofiex-black, #000000);
  z-index: 99;
  opacity: 0;
  padding: 6px;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.scroll-top--active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top::after {
  position: absolute;
  content: "\e94c";
  font-family: "icomoon" !important;
  text-align: center;
  line-height: 50px;
  font-size: 15px;
  transform: rotate(-90deg);
  color: var(--rofiex-base, #FE574F);
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
.scroll-top__circle path {
  stroke: var(--rofiex-base, #FE574F);
  stroke-width: 4;
  fill: none;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/* post paginations */
.post-pagination {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 10px;
  align-items: center;
}
.post-pagination.text-center {
  justify-content: center;
}
.post-pagination.text-end {
  justify-content: flex-end;
}
.post-pagination--mt0 {
  margin-top: 20px;
}
.post-pagination a {
  display: flex;
  width: 50px;
  height: 50px;
  background-color: var(--rofiex-gray, #F5F1EF);
  align-items: center;
  justify-content: center;
  color: var(--rofiex-base, #FE574F);
  font-size: 16px;
  font-weight: 700;
  border-radius: 5px;
  transition: all 400ms ease;
}
.post-pagination a.current, .post-pagination a:hover {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}

.rofiex-owl__carousel--with-shadow .owl-stage-outer {
  overflow: visible;
}
.rofiex-owl__carousel--with-shadow .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}
.rofiex-owl__carousel--with-shadow .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.rofiex-owl__carousel--basic-nav.owl-carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.rofiex-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  border: none;
  outline: none;
  width: 70px;
  height: 70px;
  margin: 0;
  padding: 0;
  opacity: 1;
  background-color: transparent;
  border: 1px solid var(--rofiex-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border-radius: 50%;
  color: var(--rofiex-white, #fff);
  transition: all 500ms ease;
}
.rofiex-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  color: var(--rofiex-white, #fff);
  background-color: var(--rofiex-base, #FE574F);
  border-color: var(--rofiex-base, #FE574F);
}
.rofiex-owl__carousel--basic-nav.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}
.rofiex-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background-color: var(--rofiex-border-color, #DDDDDD);
  border: none;
  position: relative;
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.rofiex-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot span::after {
  width: 22px;
  height: 22px;
  position: absolute;
  content: "";
  left: -8px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid var(--rofiex-base, #FE574F);
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.rofiex-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span, .rofiex-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span {
  background-color: var(--rofiex-base, #FE574F);
}
.rofiex-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot:hover span::after, .rofiex-owl__carousel--basic-nav.owl-carousel .owl-dots .owl-dot.active span::after {
  transform: scale(1);
}
.rofiex-owl__carousel--basic-nav.owl-carousel .owl-dots.disabled {
  display: none;
}
.rofiex-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled + .owl-dots {
  margin-top: 50px;
}
.rofiex-owl__carousel--basic-nav.owl-carousel .owl-nav.disabled {
  display: none;
}

/* custom cursor */
.custom-cursor-two {
  position: absolute;
  top: 0;
  left: 0;
  padding: 3px 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background-color: var(--rofiex-white, #fff);
  opacity: 0;
  transition: all 500ms ease;
  z-index: 11;
  pointer-events: none;
}
.custom-cursor-two__icon {
  font-size: 22px;
  color: var(--rofiex-black, #000000);
  display: inline-block;
}
.custom-cursor-two__icon--left {
  position: relative;
  top: -3px;
  transform: rotate(-180deg);
}

.custom-cursor-two-hover:hover + .custom-cursor-two {
  opacity: 1;
}

.sec-title {
  position: relative;
  line-height: 1;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .sec-title {
    padding-bottom: 50px;
    margin-top: -2px;
  }
}
.sec-title__tagline {
  margin: 0;
  color: var(--rofiex-base, #FE574F);
  text-transform: uppercase;
  font-family: var(--rofiex-special-font, "Work Sans", sans-serif);
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  line-height: 1em;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .sec-title__tagline {
    font-size: 18px;
  }
}
.sec-title__tagline img {
  width: 16px;
  height: auto;
  position: relative;
  top: -1px;
  display: inline-block;
  margin-right: 7px;
}
@media (min-width: 768px) {
  .sec-title__tagline img {
    width: 24px;
    height: 17px;
    margin-right: 12px;
  }
}
.sec-title__tagline img:last-of-type {
  margin-left: 7px;
  margin-right: 0;
}
@media (min-width: 768px) {
  .sec-title__tagline img:last-of-type {
    margin-left: 12px;
    margin-right: 0;
  }
}
.sec-title.text-left .sec-title__tagline img:last-of-type {
  display: none;
}
.sec-title__title {
  margin: 0;
  font-size: 30px;
  line-height: 40px;
  font-weight: 700;
  margin: 0;
}
@media (min-width: 768px) {
  .sec-title__title {
    font-size: 35px;
    line-height: 46px;
  }
}
.sec-title__title--white {
  color: var(--rofiex-white, #fff);
}

.ui-datepicker .ui-datepicker-header {
  background-image: none;
  background-color: var(--rofiex-black, #000000);
  color: var(--rofiex-white, #fff);
  font-family: var(--rofiex-font, "Mulish", sans-serif);
}

.ui-datepicker-calendar th span {
  font-family: var(--rofiex-font, "Mulish", sans-serif);
}
.ui-datepicker-calendar td {
  background-color: var(--rofiex-gray, #F5F1EF);
  background-image: none;
  font-family: var(--rofiex-font, "Mulish", sans-serif);
  color: var(--rofiex-text, #636363);
}
.ui-datepicker-calendar td a {
  border-color: var(--rofiex-border-color, #DDDDDD);
  background-color: var(--rofiex-gray, #F5F1EF);
  background-image: none;
}
.ui-datepicker-calendar .ui-state-default,
.ui-datepicker-calendar .ui-widget-content .ui-state-default,
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
  border-color: var(--rofiex-border-color, #DDDDDD);
  background-color: var(--rofiex-gray, #F5F1EF);
  background-image: none;
  color: var(--rofiex-text, #636363);
  padding: 10px 5px;
  text-align: center;
  line-height: 1em;
}
.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-content .ui-state-default:hover,
.ui-datepicker-calendar .ui-widget-header .ui-state-default:hover {
  color: var(--rofiex-white, #fff);
  background-color: var(--rofiex-base, #FE574F);
}
.ui-datepicker-calendar .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-content .ui-state-highlight,
.ui-datepicker-calendar .ui-widget-header .ui-state-highlight {
  color: var(--rofiex-white, #fff);
  background-color: var(--rofiex-base, #FE574F);
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  background-image: none;
  background-color: var(--rofiex-white, #fff);
  color: var(--rofiex-black, #000000);
}
.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
  top: 2px;
}

.ui-datepicker .ui-datepicker-prev:hover {
  left: 2px;
}

.ui-datepicker .ui-datepicker-next:hover {
  right: 2px;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background: var(--rofiex-base, #FE574F);
  box-shadow: var(--rofiex-base, #FE574F) 0 1px 3px 0 inset;
  color: var(--rofiex-white, #fff);
  font-weight: 700;
}

.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  background: var(--rofiex-base, #FE574F) !important;
  color: var(--rofiex-white, #fff) !important;
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/
.video-one {
  position: relative;
  margin: 0 120px;
  padding: 120px 0;
}
@media (max-width: 1600px) {
  .video-one {
    margin: 0 50px;
  }
}
@media (max-width: 1450px) {
  .video-one {
    margin: 0 30px;
  }
}
@media (max-width: 1300px) {
  .video-one {
    margin: 0;
  }
}
@media (max-width: 767px) {
  .video-one {
    padding: 80px 0;
  }
}
.video-one__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.video-one__bg::after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(90deg, rgb(39, 37, 42) 16%, rgba(39, 37, 42, 0) 100%);
  content: "";
}
.video-one__shape {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  width: 161px;
  height: 161px;
  background-position: left top;
  background-repeat: no-repeat;
  opacity: 0.15;
  animation: treeMove2 9s linear 0s infinite;
}
@media (max-width: 1500px) {
  .video-one__shape {
    display: none;
  }
}
.video-one__content {
  position: relative;
}
@media (max-width: 991px) {
  .video-one__content .sec-title-two__title br {
    display: none;
  }
}
.video-one__content .sec-title {
  padding-bottom: 25px;
}
.video-one__content__text {
  color: var(--rofiex-white, #fff);
  font-weight: 500;
  line-height: 30px;
  margin: 0 0 42px;
}
@media (max-width: 991px) {
  .video-one__content__text br {
    display: none;
  }
}
.video-one__content .rofiex-btn::after {
  background-color: var(--rofiex-white, #fff);
}
.video-one__content .rofiex-btn:hover {
  color: var(--rofiex-base, #FE574F);
}
.video-one .video-popup {
  width: 95px;
  height: 95px;
  background-color: var(--rofiex-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--rofiex-base, #FE574F);
  margin: 0 0 0 auto;
  position: relative;
  z-index: 2;
  transition: all 300ms ease;
}
@media (max-width: 767px) {
  .video-one .video-popup {
    margin: 40px 0 0 20px;
  }
}
.video-one .video-popup:hover {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}
.video-one .video-popup .ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 31px);
  height: calc(100% + 31px);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.video-one .video-popup .ripple::before,
.video-one .video-popup .ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  animation: ripple 3s infinite;
  border-radius: 50%;
}
.video-one .video-popup .ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}
.video-one .video-popup .ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.team-one {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 767px) {
  .team-one {
    padding: 80px 0;
  }
}

.team-card {
  position: relative;
  z-index: 1;
  border: 1px solid var(--rofiex-border-color, #DDDDDD);
  padding: 19px;
}
.team-card::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  z-index: -1;
  background-color: var(--rofiex-base, #FE574F);
  transition: all 0.5s;
}
.team-card:hover {
  border-color: var(--rofiex-base, #FE574F);
}
.team-card:hover .team-card__title,
.team-card:hover .team-card__designation {
  color: var(--rofiex-white, #fff);
}
.team-card:hover .team-card__social {
  border-color: rgba(var(--rofiex-white-rgb, 255, 255, 255), 0.2);
}
.team-card:hover .team-card__social a {
  color: var(--rofiex-white, #fff);
}
.team-card:hover:after {
  height: 100%;
}
.team-card__image {
  position: relative;
  overflow: hidden;
}
.team-card__image img {
  width: 100%;
  height: auto;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.team-card__image::after {
  background: linear-gradient(90deg, rgba(var(--rofiex-white-rgb, 255, 255, 255), 0.05) 0px, rgba(var(--rofiex-white-rgb, 255, 255, 255), 0.05) 77%, rgba(var(--rofiex-white-rgb, 255, 255, 255), 0.25) 92%, rgba(var(--rofiex-white-rgb, 255, 255, 255), 0));
  content: "";
  height: 200%;
  left: -210%;
  opacity: 0;
  position: absolute;
  top: -50%;
  transition: all 0.7s ease 0s;
  width: 200%;
}
.team-card:hover .team-card__image::after {
  left: -30%;
  opacity: 1;
  top: -20%;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-property: left, top, opacity;
  transition-timing-function: linear;
}
.team-card:hover .team-card__image img {
  transform: rotate(2deg) scale(1.05);
}
.team-card__content {
  position: relative;
  text-align: center;
  padding: 11px 30px 28px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .team-card__content {
    padding-left: 0;
    padding-right: 0;
  }
}
.team-card__title {
  margin: 0;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 3px;
}
.team-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-card__title a:hover {
  background-size: 100% 1px;
}
.team-card__designation {
  margin: 0 0 16px;
  text-transform: capitalize;
  transition: all 0.3s;
}
.team-card__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  border-top: 1px solid var(--rofiex-border-color, #DDDDDD);
  padding: 16px 0 0;
  transition: all 0.3s;
}
.team-card__social a {
  font-size: 20px;
  color: var(--rofiex-text, #636363);
}
.team-card__social a:hover {
  color: var(--rofiex-black, #000000);
}
.team-card--reverse {
  display: flex;
  flex-direction: column-reverse;
}
.team-card--reverse .team-card__content {
  padding: 30px 30px 9px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .team-card--reverse .team-card__content {
    padding-left: 0;
    padding-right: 0;
  }
}

.team-two {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 767px) {
  .team-two {
    padding: 80px 0;
  }
}
.team-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 568px;
}
.team-two__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--rofiex-black2-rgb, 34, 34, 34), 0.8);
}

.team-card-two {
  position: relative;
}
.team-card-two__image {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.team-card-two__image img {
  width: 100%;
  height: auto;
  transition: all 500ms ease;
}
.team-card-two__image img:nth-child(2) {
  transition: 0.4s;
  transform: translatey(-50%) scaley(2);
  opacity: 0;
  filter: blur(10px);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card-two__image::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--rofiex-black2-rgb, 34, 34, 34), 0.5);
  transition: all 300ms ease;
  visibility: hidden;
  opacity: 0;
}
.team-card-two:hover .team-card-two__image img:nth-child(2) {
  transform: translatey(0) scaley(1);
  opacity: 1;
  filter: blur(0);
}
.team-card-two:hover .team-card-two__image::after {
  visibility: visible;
  opacity: 1;
}
.team-card-two__content {
  position: absolute;
  z-index: 1;
  left: 30px;
  bottom: 30px;
  padding: 20px 20px 18px;
  background-color: var(--rofiex-white, #fff);
  display: inline-block;
  transform: rotate(180deg);
  white-space: nowrap;
  writing-mode: vertical-rl;
}
.team-card-two__content::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  content: "";
  background-color: var(--rofiex-base, #FE574F);
  z-index: -1;
  transition: 0.5s;
}
.team-card-two:hover .team-card-two__content::after {
  height: 100%;
}
.team-card-two__title {
  margin: 0;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 700;
  margin-bottom: 6px;
}
.team-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-card-two__title a:hover {
  background-size: 100% 1px;
}
.team-card-two__title a:hover {
  background-size: 1px 100%;
}
.team-card-two:hover .team-card-two__title {
  color: var(--rofiex-white, #fff);
}
.team-card-two__designation {
  margin: 0;
  text-transform: capitalize;
  transition: 0.3s;
}
.team-card-two:hover .team-card-two__designation {
  color: var(--rofiex-white, #fff);
}
.team-card-two__social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  right: 30px;
  top: 30px;
  transform: translateX(100%) scale(0.1);
  z-index: 1;
  transition: 0.7s;
  opacity: 0;
}
.team-card-two__social a {
  width: 40px;
  height: 40px;
  background-color: var(--rofiex-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--rofiex-base, #FE574F);
}
.team-card-two__social a:hover {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}
.team-card-two:hover .team-card-two__social {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.team-details {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 767px) {
  .team-details {
    padding: 80px 0;
  }
}
.team-details__inner {
  position: relative;
  border: 1px solid var(--rofiex-border-color, #DDDDDD);
  overflow: hidden;
  padding: 29px;
}
@media (max-width: 767px) {
  .team-details__inner {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.team-details__image {
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.team-details__image img {
  max-width: 100%;
}
.team-details__content {
  position: relative;
  padding: 3px 0 0 0;
}
@media (min-width: 1200px) {
  .team-details__content {
    margin-left: -53px;
  }
}
.team-details__title {
  text-transform: capitalize;
  margin: 0;
  font-weight: 700;
  font-size: 22px;
  line-height: 1;
  margin-bottom: 7px;
}
.team-details__designation {
  display: block;
  font-size: 16px;
  text-transform: capitalize;
  margin: 0;
}
.team-details__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: absolute;
  top: 5px;
  right: 0;
  z-index: 2;
}
@media (max-width: 767px) {
  .team-details__social {
    position: relative;
    top: 0;
    justify-content: flex-start;
    margin: 15px 0 0;
  }
}
.team-details__social a {
  width: 36px;
  height: 36px;
  background-color: var(--rofiex-gray, #F5F1EF);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rofiex-base, #FE574F);
  border-radius: 50%;
  font-size: 14px;
  transition: all 500ms ease;
}
.team-details__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.team-details__social a:hover {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}
.team-details__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.team-details__divider {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: var(--rofiex-border-color, #DDDDDD);
  margin: 24px 0 20px;
}
.team-details__text {
  line-height: 30px;
  letter-spacing: -0.32px;
  margin: 0 0 12px;
}
.team-details__sign {
  position: relative;
  margin: 68px 0 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--rofiex-border-color, #DDDDDD);
}
.team-details__sign img {
  max-width: 100%;
  height: auto;
}
.team-details__list {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 767px) {
  .team-details__list {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.team-details__list li {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--rofiex-text, #636363);
  display: flex;
  align-items: center;
  gap: 10px;
}
.team-details__list li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.team-details__list li a:hover {
  background-size: 100% 1px;
}
.team-details__list li a:hover {
  color: var(--rofiex-base, #FE574F);
}
.team-details__list li:hover .team-details__list__icon {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}
.team-details__list li:hover .team-details__list__icon span {
  animation: iconTranslateY 0.4s forwards;
}
.team-details__list__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--rofiex-gray, #F5F1EF);
  color: var(--rofiex-base, #FE574F);
  border-radius: 50%;
  font-size: 16px;
  transition: all 0.4s;
}
.team-details__list__icon span {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.team-details-info {
  position: relative;
  padding: 120px 0;
  background-color: var(--rofiex-gray, #F5F1EF);
}
@media (max-width: 767px) {
  .team-details-info {
    padding: 80px 0;
  }
}
.team-details-info__title {
  margin: 0;
  text-transform: uppercase;
  font-size: 20px;
  letter-spacing: -0.4px;
  font-weight: 700;
  margin-bottom: 19px;
}
.team-details-info__text {
  line-height: 30px;
  letter-spacing: -0.32px;
  margin: 0 0 27px;
}
.team-details-info__area {
  margin-top: 50px;
  position: relative;
  background-color: var(--rofiex-white, #fff);
  padding: 55px 40px 52px;
}
@media (max-width: 767px) {
  .team-details-info__area {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.team-details-info__area .team-details-info__title {
  margin-bottom: 35px;
}
.team-details-info__area .team-details-info__text {
  margin: 5px 0 0;
}
.team-details-info__progress {
  position: relative;
  margin-bottom: 26px;
}
.team-details-info__progress__title {
  text-transform: capitalize;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .team-details-info__progress__title {
    font-size: 16px;
  }
}
.team-details-info__progress__bar {
  width: 100%;
  height: 10px;
  background-color: var(--rofiex-border-color, #DDDDDD);
  position: relative;
  border-radius: 10px;
}
.team-details-info__progress__inner {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--rofiex-base, #FE574F);
  border-radius: 10px;
  transition: all 700ms linear;
  width: 0px;
}
.team-details-info__progress__number {
  position: absolute;
  bottom: calc(100% + 4px);
  right: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--rofiex-base, #FE574F);
}

.blog-card {
  position: relative;
  background-color: var(--rofiex-gray, #F5F1EF);
  overflow: hidden;
}
.blog-card__image {
  position: relative;
  overflow: hidden;
}
.blog-card__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
}
.blog-card__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  visibility: hidden;
  height: 100%;
  width: 0;
  transition: 1s;
  overflow: hidden;
}
.blog-card:hover .blog-card__image img:nth-child(2) {
  width: 100%;
  visibility: visible;
}
.blog-card__link {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
  width: 48px;
  height: 48px;
  background-color: var(--rofiex-white, #fff);
  color: var(--rofiex-black, #000000);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border: 1px solid var(--rofiex-base, #FE574F);
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
  transition: all 0.5s;
}
.blog-card__link:hover {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}
.blog-card:hover .blog-card__link {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  position: absolute;
  left: 0;
  z-index: 2;
  top: -22px;
  background-color: var(--rofiex-black, #000000);
  padding: 9px 45px;
  clip-path: polygon(0% 0%, 100% 0, 93% 50%, 100% 100%, 0% 100%);
  transition: all 500ms ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card__meta {
    padding: 9px 25px 9px 35px;
    gap: 15px;
  }
}
.blog-card__meta::after {
  position: absolute;
  left: 0;
  width: 30px;
  height: 100%;
  content: "";
  background-color: var(--rofiex-base, #FE574F);
  clip-path: polygon(0% 0%, 60% 0%, 100% 50%, 60% 100%, 0% 100%);
  transition: all 500ms ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card__meta::after {
    width: 20px;
  }
}
.blog-card__meta li {
  color: var(--rofiex-white, #fff);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
}
.blog-card__meta li i {
  margin-right: 8px;
}
.blog-card__meta li a {
  display: flex;
  align-items: center;
  color: inherit;
  transition: all 500ms ease;
}
.blog-card__meta li a:hover {
  color: var(--rofiex-white, #fff);
  text-shadow: 0 0 1px currentColor;
}
.blog-card:hover .blog-card__meta {
  background-color: var(--rofiex-base, #FE574F);
}
.blog-card:hover .blog-card__meta::after {
  background-color: var(--rofiex-black, #000000);
}
.blog-card__content {
  position: relative;
  padding: 47px 30px 27px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .blog-card__content {
    padding: 47px 22px 27px;
  }
}
.blog-card__title {
  margin: 0;
  text-transform: capitalize;
  font-size: 22px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 9px;
}
.blog-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card__title a:hover {
  background-size: 100% 1px;
}
.blog-card__title a:hover {
  color: var(--rofiex-base, #FE574F);
  text-shadow: 0 0 1px currentColor;
}
.blog-card__text {
  margin: 0 0 12px;
}
.blog-card__btn {
  color: var(--rofiex-black3, #333333);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  z-index: 1;
  position: relative;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
.blog-card__btn span {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  display: inline-block;
}
.blog-card__btn:hover {
  color: var(--rofiex-base, #FE574F);
}
.blog-card__btn:hover span {
  background-size: 100% 1px;
}
.blog-card__btn i {
  color: var(--rofiex-base, #FE574F);
  font-size: 20px;
}
.blog-card--list {
  display: flex;
  align-items: center;
  gap: 0;
}
@media (max-width: 767px) {
  .blog-card--list {
    display: block;
  }
}
.blog-card--list .blog-card__image {
  margin: 0;
  width: 42%;
}
@media (max-width: 767px) {
  .blog-card--list .blog-card__image {
    width: 100%;
  }
}
.blog-card--list .blog-card__image img {
  min-height: 240px;
  object-fit: cover;
}
.blog-card--list .blog-card__link {
  right: 0;
  left: 20px;
}
.blog-card--list .blog-card__content {
  padding: 0 30px;
  width: 58%;
}
@media (max-width: 767px) {
  .blog-card--list .blog-card__content {
    width: 100%;
    padding: 30px;
  }
}
.blog-card--list .blog-card__meta {
  position: relative;
  gap: 20px;
  top: 0;
  padding: 9px 35px;
  margin: 0 0 15px;
}
.blog-card--list .blog-card__meta li {
  font-size: 15px;
}
.blog-card--list .blog-card__meta::after {
  width: 20px;
}
.blog-card--list .blog-card__title {
  margin-bottom: 12px;
}

.blog-one {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 767px) {
  .blog-one {
    padding: 80px 0;
  }
}
.blog-one__btn {
  position: relative;
  text-align: right;
  margin: 33px 0 0;
}
@media (max-width: 767px) {
  .blog-one__btn {
    margin: 0 0 45px;
    text-align: left;
  }
}
.blog-one__btn .rofiex-btn {
  background-color: transparent;
  color: var(--rofiex-base, #FE574F);
  border: 1px solid var(--rofiex-base, #FE574F);
}
.blog-one__btn .rofiex-btn::after {
  background-color: var(--rofiex-base, #FE574F);
}
.blog-one__btn .rofiex-btn:hover {
  color: var(--rofiex-white, #fff);
  background-color: var(--rofiex-base, #FE574F);
}

.blog-two {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .blog-two {
    padding: 80px 0;
  }
}

.blog-card-two {
  position: relative;
  background-color: var(--rofiex-black, #000000);
  transition: all 400ms ease;
  overflow: hidden;
}
.blog-card-two__image {
  position: relative;
  overflow: hidden;
}
.blog-card-two__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
  min-height: 482px;
  object-fit: cover;
}
.blog-card-two__image img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  object-fit: cover;
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.blog-card-two__image::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  visibility: hidden;
  content: "";
  background: linear-gradient(180deg, rgba(var(--rofiex-base-rgb, 254, 87, 79), 0) 0%, rgb(var(--rofiex-base-rgb, 254, 87, 79)) 100%);
  transition: all 400ms ease;
}
.blog-card-two__image::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(var(--rofiex-black-rgb, 0, 0, 0), 0) 0%, rgb(var(--rofiex-black-rgb, 0, 0, 0)) 100%);
  content: "";
  transition: all 400ms ease;
}
.blog-card-two:hover .blog-card-two__image img:nth-child(2) {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.blog-card-two:hover .blog-card-two__image::after {
  height: 100%;
  visibility: visible;
}
.blog-card-two__date {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--rofiex-white, #fff);
  border-radius: 50px;
  font-size: 16px;
  color: var(--rofiex-black, #000000);
  border: 1px solid var(--rofiex-base, #FE574F);
  transition: all 400ms ease;
  padding: 4px 22px;
}
.blog-card-two__date i {
  color: var(--rofiex-base, #FE574F);
  transition: all 400ms ease;
}
.blog-card-two:hover .blog-card-two__date {
  color: var(--rofiex-white, #fff);
  background-color: var(--rofiex-base, #FE574F);
}
.blog-card-two:hover .blog-card-two__date i {
  color: var(--rofiex-white, #fff);
}
.blog-card-two__content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: 30px 30px 25px;
  transition: all 500ms ease;
  transform: translateY(40px);
}
.blog-card-two:hover .blog-card-two__content {
  transform: translateY(0px);
}
.blog-card-two__meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 8px;
  position: relative;
  z-index: 2;
  transition: all 500ms ease;
}
.blog-card-two__meta li {
  color: var(--rofiex-white, #fff);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.blog-card-two__meta li i {
  margin-right: 6px;
  color: var(--rofiex-base, #FE574F);
}
.blog-card-two__meta li a {
  display: flex;
  align-items: center;
  color: inherit;
  transition: all 500ms ease;
}
.blog-card-two__meta li a:hover {
  color: var(--rofiex-white, #fff);
  text-shadow: 0 0 1px currentColor;
}
.blog-card-two__title {
  margin: 0;
  text-transform: capitalize;
  font-size: 22px;
  line-height: 30px;
  color: var(--rofiex-white, #fff);
  margin-bottom: 12px;
  font-weight: 700;
}
.blog-card-two__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-two__title a:hover {
  background-size: 100% 1px;
}
.blog-card-two__rm {
  color: var(--rofiex-white, #fff);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  z-index: 1;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  transition: all 500ms ease;
  visibility: hidden;
  opacity: 0;
}
.blog-card-two__rm span {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  display: inline-block;
}
.blog-card-two__rm:hover {
  color: var(--rofiex-white, #fff);
}
.blog-card-two__rm:hover span {
  background-size: 100% 1px;
}
.blog-card-two__rm i {
  font-size: 12px;
  position: relative;
  top: 1px;
}
.blog-card-two:hover .blog-card-two__rm {
  opacity: 1;
  visibility: visible;
}

.blog-three {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .blog-three {
    padding: 80px 0;
  }
}

.blog-card-list {
  position: relative;
  margin: 0 0 10px;
}
.blog-card-list__image {
  position: relative;
  overflow: hidden;
  margin: 0 0 34px;
}
.blog-card-list__image img {
  transition: 0.5s;
  background-size: cover;
  width: 100%;
}
.blog-card-list__image img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  visibility: hidden;
  height: 100%;
  width: 0;
  transition: 1s;
  overflow: hidden;
}
.blog-card-list:hover .blog-card-list__image img:nth-child(2) {
  width: 100%;
  visibility: visible;
}
.blog-card-list__content {
  position: relative;
  padding: 0;
}
.blog-card-list__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}
.blog-card-list__meta li {
  font-size: 16px;
  font-weight: 500;
  color: var(--rofiex-text, #636363);
}
.blog-card-list__meta li i {
  color: var(--rofiex-base, #FE574F);
  margin-right: 10px;
}
.blog-card-list__meta li a {
  color: inherit;
}
.blog-card-list__meta li a:hover {
  color: var(--rofiex-base, #FE574F);
}
.blog-card-list__meta .blog-card-list__meta__tag {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-transform: capitalize;
  padding: 7px 25px;
  border-radius: 40px;
}
.blog-card-list__meta .blog-card-list__meta__tag:hover {
  background-color: var(--rofiex-black, #000000);
  color: var(--rofiex-white, #fff);
}
.blog-card-list__title {
  margin: 0;
  text-transform: capitalize;
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}
.blog-card-list__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.blog-card-list__title a:hover {
  background-size: 100% 1px;
}
.blog-card-list__title a:hover {
  color: var(--rofiex-base, #FE574F);
  text-shadow: 0 0 1px currentColor;
}
.blog-card-list__text {
  font-weight: 500;
  margin: 0 0 28px;
}
@media (min-width: 1200px) {
  .blog-card-list__text {
    padding-right: 30px;
  }
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/
.form-one__group {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px 12px;
  margin: 0;
}
@media (min-width: 576px) {
  .form-one__group {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form-one__control {
  border: none;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  position: relative;
}
.form-one__control label {
  display: block;
  line-height: 1;
  font-size: 14px;
  margin: 0 0 8px;
  font-weight: 500;
  cursor: pointer;
  text-transform: uppercase;
}
.form-one__control__icon {
  position: absolute;
  bottom: 17px;
  right: 20px;
  font-size: 16px;
}
.form-one__control--full {
  grid-column-start: 1;
  grid-column-end: -1;
}
.form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  border: none;
  outline: none !important;
  color: var(--rofiex-text, #636363);
  font-size: 16px;
  font-weight: 400;
}
.form-one .bootstrap-select > .dropdown-toggle,
.form-one input[type=text],
.form-one input[type=tel],
.form-one input[type=email],
.form-one textarea {
  display: block;
  width: 100%;
  height: 50px;
  background-color: var(--rofiex-gray, #F5F1EF);
  color: var(--rofiex-text, #636363);
  font-size: 16px;
  font-weight: 400;
  border: none;
  outline: none;
  padding-left: 30px;
  padding-right: 30px;
}
.form-one textarea {
  height: 135px;
  padding-top: 15px;
}
.form-one .bootstrap-select > .dropdown-toggle {
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle .filter-option {
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.form-one .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-size: 14px;
  color: var(--rofiex-text, #636363);
  display: flex;
  align-items: center;
}
.form-one .bootstrap-select .dropdown-menu li a {
  padding: 15px 20px;
  color: var(--rofiex-text, #636363);
  font-size: 16px;
}
.form-one .bootstrap-select .dropdown-menu li a:hover,
.form-one .bootstrap-select .dropdown-menu li a.active {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--rofiex-base, #FE574F);
  -webkit-transition: all 200ms ease-out;
  transition: all 200ms ease-out;
  position: fixed;
  pointer-events: none;
  left: 0;
  top: 0;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
  transform: translate(calc(-50% + 5px), -50%);
  z-index: 999991;
}
.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--rofiex-base, #FE574F);
  opacity: 0.3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  z-index: 999991;
}
.custom-cursor__hover {
  background-color: var(--rofiex-base, #FE574F);
  opacity: 0.4;
}
.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: 0.4;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.main-footer {
  position: relative;
  counter-reset: count;
  background-color: var(--rofiex-black2, #222222);
  margin-top: 76px;
  padding: 74px 0 0;
}
.main-footer--two {
  margin-top: 0;
  padding-top: 115px;
}
@media (max-width: 1199px) {
  .main-footer--two {
    padding-top: 70px;
  }
}
.main-footer--two .main-footer__bottom {
  margin-top: 63px;
}
@media (max-width: 1199px) {
  .main-footer--two .main-footer__bottom {
    margin-top: 40px;
  }
}
.main-footer__logo {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: -76px;
  width: 570px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .main-footer__logo {
    width: 100%;
  }
}
.main-footer__logo a {
  background-color: var(--rofiex-black2, #222222);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 30px;
  clip-path: polygon(14% 0%, 86% 0%, 100% 100%, 0% 100%);
}
.main-footer__logo::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  height: 77px;
  background-color: var(--rofiex-base, #FE574F);
  content: "";
  clip-path: polygon(100% 0, 0 0, 57% 100%);
}
@media (max-width: 575px) {
  .main-footer__logo::after {
    display: none;
  }
}
.main-footer__logo::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 77px;
  background-color: var(--rofiex-base, #FE574F);
  content: "";
  clip-path: polygon(100% 0, 0 0, 42% 100%);
}
@media (max-width: 575px) {
  .main-footer__logo::before {
    display: none;
  }
}
.main-footer__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-size: cover;
  background-position: center center;
}
.main-footer__shape {
  position: absolute;
  z-index: 1;
  right: -10px;
  bottom: 0;
  animation: movebounce2 3s linear 0s infinite;
}
.main-footer__shape::after {
  position: absolute;
  right: -90px;
  top: 100px;
  width: 206px;
  height: 110px;
  content: "";
  background-color: var(--rofiex-base, #FE574F);
  z-index: -1;
  transform: rotate(-40deg);
}
.main-footer__shape img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 1600px) {
  .main-footer__shape {
    display: none;
  }
}
.main-footer .container {
  position: relative;
}
.main-footer__bottom {
  position: absolute;
  bottom: 0;
  text-align: center;
  z-index: 2;
  position: relative;
  padding: 9px 0;
  background-color: var(--rofiex-base, #FE574F);
  clip-path: polygon(3% 0%, 97% 0%, 100% 100%, 0% 100%);
  margin-top: 28px;
}
.main-footer__copyright {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--rofiex-white, #fff);
}
.main-footer__shape-1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
}
.main-footer__shape-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  animation: zumpBottom 2s linear infinite;
}
@media (max-width: 1200px) {
  .main-footer__shape-2 {
    display: none;
  }
}

.footer-widget {
  margin-bottom: 40px;
}
.footer-widget__logo {
  display: inline-flex;
  margin-bottom: 35px;
}
.footer-widget__newsletter {
  position: relative;
  width: 100%;
  max-width: 300px;
}
.footer-widget__newsletter input[type=text] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 58px;
  background-color: var(--rofiex-black2, #222222);
  color: var(--rofiex-text-dark, #92918F);
  font-size: 14px;
  font-weight: 500;
  padding-left: 30px;
  padding-right: 20px;
  transition: all 500ms ease;
}
.footer-widget__newsletter input[type=text]:focus {
  color: var(--rofiex-white, #fff);
}
.footer-widget__newsletter button[type=submit] {
  background-color: transparent;
  width: auto;
  height: auto;
  border: none;
  outline: none;
  color: var(--rofiex-base, #FE574F);
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 500ms ease;
}
.footer-widget__newsletter button[type=submit]:hover {
  color: var(--rofiex-white, #fff);
}
.footer-widget__title {
  font-size: 22px;
  font-weight: bold;
  color: var(--rofiex-white, #fff);
  text-transform: capitalize;
  margin: 0 0 40px;
}
.footer-widget__title--ml-18 {
  margin-left: -18px;
}
@media (max-width: 1028px) {
  .footer-widget__title--ml-18 {
    margin-left: 0px;
  }
}
.footer-widget__info {
  margin-top: -10px;
  margin-bottom: -13px;
}
.footer-widget__info li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--rofiex-white, #fff);
  font-weight: 400;
  line-height: 30px;
}
.footer-widget__links li {
  margin-bottom: 10px;
}
@media (min-width: 1200px) {
  .footer-widget--links {
    margin-left: -25px;
  }
}
.footer-widget__links {
  margin-top: -10px;
  margin-bottom: -13px;
}
@media (max-width: 1028px) {
  .footer-widget__links {
    list-style: none;
  }
}
.footer-widget__links li {
  font-size: 16px;
  color: var(--rofiex-white, #fff);
  font-weight: 500;
  line-height: 30px;
}
.footer-widget__links li a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-widget__links li a:hover {
  background-size: 100% 1px;
}
.footer-widget__links li a:hover {
  color: var(--rofiex-base, #FE574F);
}
.footer-widget--post {
  position: relative;
}
@media (min-width: 1200px) {
  .footer-widget--post {
    margin-left: -25px;
  }
}
.footer-widget--post ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-widget--post ul li {
  counter-increment: count;
  display: flex;
  align-items: center;
  gap: 19px;
}
.footer-widget--post ul li + li {
  margin-top: 25px;
}
.footer-widget--post__img {
  position: relative;
}
.footer-widget--post__img img {
  width: 85px;
  height: 85px;
  border-radius: 50%;
}
.footer-widget--post__img__number {
  position: absolute;
  top: 8px;
  right: -7px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
  font-size: 10px;
  font-weight: 600;
  line-height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-widget--post__img__number::before {
  content: counters(count, ".", decimal-leading-zero);
  position: relative;
  display: inline-block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.footer-widget--post__content {
  position: relative;
}
.footer-widget--post__date {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--rofiex-white, #fff);
  line-height: 22px;
  margin-bottom: 10px;
}
.footer-widget--post__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 22px;
  color: var(--rofiex-white, #fff);
  margin: 0;
}
.footer-widget--post__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.footer-widget--post__title a:hover {
  background-size: 100% 1px;
}
.footer-widget--post__title a:hover {
  color: var(--rofiex-base, #FE574F);
}
.footer-widget__text {
  font-size: 16px;
  color: var(--rofiex-white, #fff);
  font-weight: 500;
  line-height: 26px;
  margin: -9px 0 31px;
  max-width: 275px;
}
.footer-widget__gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-widget__gallery a {
  position: relative;
  overflow: hidden;
  width: 72px;
  height: 72px;
  border-radius: 10px;
}
.footer-widget__gallery a img {
  width: 100%;
  height: 100%;
}
.footer-widget__gallery a::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--rofiex-base-rgb, 254, 87, 79), 0.8);
  border-radius: 8px;
  transition: all 700ms ease;
  transform: scale(0.2);
  opacity: 0;
  z-index: 1;
}
.footer-widget__gallery a:hover::after {
  transform: scale(1);
  opacity: 1;
}
.footer-widget__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-widget__social a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  font-size: 15px;
  color: rgba(var(--rofiex-white-rgb, 255, 255, 255), 0.5);
  transition: all 500ms ease;
  border-radius: 50%;
  border: 1px solid rgba(var(--rofiex-white-rgb, 255, 255, 255), 0.5);
}
.footer-widget__social a:hover {
  background-color: var(--rofiex-base, #FE574F);
  border-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}
.footer-widget .list-styled {
  padding-left: 0;
}

.mail {
  position: relative;
  background-color: var(--rofiex-gray, #F5F1EF);
}
.mail__inner {
  position: relative;
  background-color: var(--rofiex-base, #FE574F);
  border-radius: 20px;
  overflow: hidden;
  padding: 40px 40px 40px;
  margin-bottom: -67px;
  z-index: 2;
}
@media (max-width: 991px) {
  .mail__inner {
    padding: 40px 30px 40px;
  }
}
@media (max-width: 767px) {
  .mail__inner {
    padding: 40px 20px 40px;
  }
}
.mail__inner__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.15;
}
.mail__inner__title {
  margin: 0;
  color: var(--rofiex-white, #fff);
  position: relative;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .mail__inner__title {
    margin: 0 0 30px;
  }
}
.mail__inner__newsletter {
  position: relative;
  width: 100%;
}
.mail__inner__newsletter input[type=text] {
  width: 100%;
  display: block;
  outline: none;
  border: none;
  height: 55px;
  background-color: var(--rofiex-white, #fff);
  color: var(--rofiex-text, #636363);
  font-size: 16px;
  font-weight: 400;
  padding-left: 22px;
  padding-right: 180px;
  border-radius: 10px;
  transition: all 500ms ease;
}
.mail__inner__newsletter input[type=text]:focus {
  color: var(--rofiex-text, #636363);
}
.mail__inner__newsletter button[type=submit] {
  position: absolute;
  top: 5px;
  right: 5px;
  border-radius: 10px;
  font-weight: 700;
  padding: 9.5px 19px;
}
@media (max-width: 400px) {
  .mail__inner__newsletter button[type=submit] {
    padding: 9.5px 15px;
  }
}

.main-footer-four {
  position: relative;
}
.main-footer-four__top {
  padding-top: 127px;
  padding-bottom: 23px;
}
.main-footer-four__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.4;
  mix-blend-mode: overlay;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.main-footer-four .container {
  position: relative;
}
.main-footer-four .footer-widget__title {
  margin-bottom: 38px;
}
@media (max-width: 991px) {
  .main-footer-four .footer-widget__title {
    margin-bottom: 25px;
  }
}
.main-footer-four__about-title {
  font-size: 16px;
  color: var(--rofiex-white, #fff);
  letter-spacing: -0.48px;
  margin: 13px 0 14px;
}
.main-footer-four .footer-widget__text {
  margin-bottom: 18px;
}
.main-footer-four__mail {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rofiex-base, #FE574F);
  margin: 0;
}
.main-footer-four__mail a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-footer-four__mail a:hover {
  background-size: 100% 1px;
}
.main-footer-four__mail a:hover {
  color: var(--rofiex-white, #fff);
}
.main-footer-four .footer-widget--contact {
  margin-left: 32px;
}
@media (max-width: 991px) {
  .main-footer-four .footer-widget--contact {
    margin-left: 0;
  }
}
.main-footer-four__number {
  font-size: 16px;
  letter-spacing: -0.48px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rofiex-white, #fff);
  margin: 46px 0 14px;
}
@media (max-width: 991px) {
  .main-footer-four__number {
    margin-top: 30px;
  }
}
.main-footer-four__number a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-footer-four__number a:hover {
  background-size: 100% 1px;
}
.main-footer-four__number a:hover {
  color: var(--rofiex-base, #FE574F);
}
.main-footer-four .footer-widget__about-info {
  display: block;
  border: none;
  padding: 0;
}
.main-footer-four .footer-widget__links li {
  line-height: 35px;
}
@media (min-width: 1200px) {
  .main-footer-four__links {
    margin-left: 60px;
  }
}
.main-footer-four__bottom {
  position: relative;
  text-align: center;
  border-top: 1px solid rgba(var(--rofiex-border-color-rgb, 221, 221, 221), 0.2);
}
.main-footer-four__bottom__inner {
  padding: 24px 0;
}
.main-footer-four__copyright {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--rofiex-text, #636363);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  padding: 120px 0;
}
.contact-one__bg {
  position: absolute;
  right: 0;
  top: 0;
  height: 400px;
  width: 100%;
  background-color: var(--rofiex-gray, #F5F1EF);
}
@media (max-width: 767px) {
  .contact-one {
    padding: 80px 0;
  }
}
.contact-one__image {
  position: relative;
  max-width: 545px;
}
.contact-one__image img {
  width: 100%;
  height: auto;
}
.contact-one__info {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 2px solid var(--rofiex-border-color, #DDDDDD);
  max-width: 545px;
}
@media (max-width: 575px) {
  .contact-one__info {
    grid-template-columns: repeat(1, 1fr);
  }
}
.contact-one__info__item {
  position: relative;
  z-index: 2;
  padding: 37px 15px 37px 87px;
}
.contact-one__info__item:nth-child(1) {
  border-right: 2px solid var(--rofiex-border-color, #DDDDDD);
  border-bottom: 2px solid var(--rofiex-border-color, #DDDDDD);
}
@media (max-width: 575px) {
  .contact-one__info__item:nth-child(1) {
    border-right: none;
  }
}
.contact-one__info__item:nth-child(2) {
  border-bottom: 2px solid var(--rofiex-border-color, #DDDDDD);
}
.contact-one__info__item:nth-child(3) {
  border-right: 2px solid var(--rofiex-border-color, #DDDDDD);
}
@media (max-width: 575px) {
  .contact-one__info__item:nth-child(3) {
    border-right: none;
    border-bottom: 2px solid var(--rofiex-border-color, #DDDDDD);
  }
}
.contact-one__info__item::after {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: calc(100% - 18px);
  height: calc(100% - 18px);
  content: "";
  background-color: var(--rofiex-base, #FE574F);
  opacity: 0;
  transform: scale(0.8);
  transition: all 400ms ease;
  z-index: -1;
}
.contact-one__info__item:hover::after {
  opacity: 1;
  transform: scale(1);
}
.contact-one__info__item:hover .contact-one__info__icon,
.contact-one__info__item:hover .contact-one__info__title,
.contact-one__info__item:hover .contact-one__info__text {
  color: var(--rofiex-white, #fff);
}
.contact-one__info__icon {
  font-size: 39px;
  line-height: 39px;
  color: var(--rofiex-black, #000000);
  transition: all 300ms ease;
  position: absolute;
  left: 29px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.contact-one__info__title {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 1px;
  transition: all 300ms ease;
}
.contact-one__info__text {
  font-size: 16px;
  font-weight: 500;
  color: var(--rofiex-black3, #333333);
  margin: 0;
  transition: all 100ms ease;
}
.contact-one__info__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.contact-one__info__text a:hover {
  background-size: 100% 1px;
}
.contact-one__form {
  padding: 85px 60px 70px;
  position: relative;
  z-index: 1;
  background-color: var(--rofiex-white, #fff);
  border-radius: 10px;
  filter: drop-shadow(0px 4px 12.5px rgba(0, 0, 0, 0.06));
  overflow: hidden;
}
@media (max-width: 1199px) {
  .contact-one__form {
    margin-top: 45px;
  }
}
@media (max-width: 767px) {
  .contact-one__form {
    padding: 85px 25px 70px;
  }
}
.contact-one__form::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 125px;
  background-color: var(--rofiex-base, #FE574F);
  content: "";
  clip-path: polygon(0% 0%, 100% 0, 100% 100%, 50% 14%, 0% 100%);
  z-index: -1;
}
.contact-one__form__title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 11px;
}
.contact-one__form__text {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 40px;
  text-align: center;
}
.contact-one__form.form-one .bootstrap-select > .dropdown-toggle, .contact-one__form.form-one input[type=text], .contact-one__form.form-one input[type=tel], .contact-one__form.form-one input[type=email], .contact-one__form.form-one textarea {
  height: 60px;
  background-color: transparent;
  border: 1px solid var(--rofiex-border-color, #DDDDDD);
  border-radius: 3px;
  font-weight: 500;
}
.contact-one__form .form-one__group {
  gap: 30px;
}
.contact-one__form .rofiex-btn {
  width: 100%;
  border-radius: 50px;
}

.contact-two {
  position: relative;
  padding: 0 0;
}
.contact-two__bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 70%;
  height: 100%;
  background-color: var(--rofiex-gray, #F5F1EF);
}
@media (max-width: 991px) {
  .contact-two__bg {
    width: 100%;
  }
}
.contact-two__image {
  position: relative;
}
.contact-two__image img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .contact-two__image img {
    min-height: 344px;
    object-fit: cover;
  }
}
.contact-two__form {
  position: relative;
  padding: 65px 0;
}
@media (min-width: 1200px) {
  .contact-two__form {
    padding-left: 10px;
  }
}
@media (min-width: 576px) {
  .contact-two__form .form-one__group {
    gap: 30px;
    grid-template-columns: repeat(3, 1fr);
  }
}
.contact-two .form-one .bootstrap-select > .dropdown-toggle,
.contact-two .form-one input[type=text],
.contact-two .form-one input[type=tel],
.contact-two .form-one input[type=email],
.contact-two .form-one textarea {
  background-color: var(--rofiex-white, #fff);
  height: 50px;
  padding-left: 20px;
  font-weight: 500;
}
.contact-two .form-one__control__icon {
  bottom: 12px;
  font-size: 14px;
}
.contact-two .form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
}
.contact-two .rofiex-btn {
  width: 100%;
  border-radius: 0;
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/
.main-header__topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .main-header__topbar {
    display: none;
  }
}
.main-header__topbar__info {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 13px 0;
}
.main-header__topbar__info__item {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--rofiex-white, #fff);
}
.main-header__topbar__info__item span {
  display: inline-block;
  color: var(--rofiex-base, #FE574F);
  margin-right: 8px;
}
.main-header__topbar__info__item span.icon-mail2 {
  position: relative;
  top: 2px;
}
.main-header__topbar__info__item a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-header__topbar__info__item a:hover {
  background-size: 100% 1px;
}
.main-header__topbar__info__item a:hover {
  color: var(--rofiex-base, #FE574F);
}
.main-header__topbar__info__item + .main-header__topbar__info__item {
  margin-left: 30px;
  padding-left: 30px;
  border-left: 1px solid rgba(var(--rofiex-white-rgb, 255, 255, 255), 0.29);
}
@media (max-width: 1199px) {
  .main-header__topbar__info__item + .main-header__topbar__info__item {
    margin-left: 30px;
  }
}
.main-header__topbar__social {
  display: flex;
  align-items: center;
  gap: 0;
}
.main-header__topbar__social a {
  width: 45px;
  height: 50px;
  font-size: 15px;
  color: var(--rofiex-text-dark, #92918F);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 500ms ease;
}
.main-header__topbar__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.main-header__topbar__social a:hover {
  color: var(--rofiex-white, #fff);
  background-color: var(--rofiex-base, #FE574F);
}
.main-header__topbar__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}

.topbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--rofiex-black, #000000);
}
@media (max-width: 767px) {
  .topbar {
    display: none;
  }
}
.topbar__info {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 13px 0;
}
.topbar__info__item {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--rofiex-white, #fff);
}
.topbar__info__item span {
  display: inline-block;
  color: var(--rofiex-base, #FE574F);
  margin-right: 8px;
}
.topbar__info__item span.icon-mail2 {
  position: relative;
  top: 2px;
}
.topbar__info__item a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar__info__item a:hover {
  background-size: 100% 1px;
}
.topbar__info__item a:hover {
  color: var(--rofiex-base, #FE574F);
}
.topbar__info__item + .topbar__info__item {
  margin-left: 30px;
  padding-left: 30px;
  border-left: 1px solid rgba(var(--rofiex-white-rgb, 255, 255, 255), 0.29);
}
@media (max-width: 991px) {
  .topbar__info__item + .topbar__info__item {
    margin-left: 20px;
    padding-left: 20px;
  }
}
.topbar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
.topbar__right__item {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  font-size: 14px;
  line-height: 1.2em;
  margin: 0;
  padding: 0;
}
.topbar__right__item li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.topbar__right__item__divider {
  height: 20px;
  width: 1px;
  background-color: var(--rofiex-white, #fff);
  opacity: 29%;
}
.topbar__right__item select {
  background-color: transparent;
  border: none;
  outline: none;
  color: var(--rofiex-gray, #F5F1EF);
}
.topbar__right__item a {
  color: var(--rofiex-gray, #F5F1EF);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.topbar__right__item a:hover {
  background-size: 100% 1px;
}
.topbar__right__item a:hover {
  color: var(--rofiex-base, #FE574F);
}
.topbar__right__item .bootstrap-select .dropdown-menu.inner {
  background-color: var(--rofiex-white, #fff);
}
.topbar__right__item .bootstrap-select .dropdown-menu li a {
  color: var(--rofiex-black, #000000);
  background: transparent;
  padding: 10px 20px;
}
.topbar__right__item .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  width: 100%;
}
.topbar__right__item .bootstrap-select .dropdown-item:hover,
.topbar__right__item .bootstrap-select .dropdown-item.active {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}
.topbar__right__item .bootstrap-select > .dropdown-toggle {
  padding: 0px 4px;
  padding-right: 4px;
  background: transparent;
  color: var(--rofiex-gray, #F5F1EF);
  border: none;
  outline: none;
  padding-right: 13px;
}
.topbar__right__item .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.topbar__right__item .bootstrap-select > .dropdown-toggle::before {
  position: absolute;
  right: 0;
  top: 4px;
  border-radius: 0;
  font-size: 10px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  color: inherit;
  color: var(--rofiex-base, #FE574F);
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/
.main-header {
  background-color: var(--rofiex-white, #fff);
  position: relative;
  width: 100%;
  z-index: 9;
  padding: 0 100px;
}
@media (max-width: 1800px) {
  .main-header {
    padding: 0 30px;
  }
}
@media (max-width: 1300px) {
  .main-header {
    padding: 0 20px;
  }
}
@media (max-width: 767px) {
  .main-header {
    padding-left: 0;
  }
}
.main-header::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 50px;
  content: "";
  background-color: var(--rofiex-black2, #222222);
  z-index: -1;
}
@media (max-width: 991px) {
  .main-header::after {
    display: none;
  }
}
.main-header__inner {
  position: relative;
  padding-left: 31%;
}
@media (max-width: 1800px) {
  .main-header__inner {
    padding-left: 27%;
  }
}
@media (max-width: 1300px) {
  .main-header__inner {
    padding-left: 31%;
  }
}
@media (max-width: 1199px) {
  .main-header__inner {
    padding-left: 370px;
  }
}
@media (max-width: 767px) {
  .main-header__inner {
    padding-left: 280px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.main-header__logo {
  position: absolute;
  left: 0;
  top: 0;
  width: 25%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--rofiex-base, #FE574F);
  clip-path: polygon(0 0, 100% 0, 84% 100%, 16% 100%);
}
@media (max-width: 1800px) {
  .main-header__logo {
    width: 24%;
  }
}
@media (max-width: 1300px) {
  .main-header__logo {
    width: 330px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
  }
}
@media (max-width: 767px) {
  .main-header__logo {
    width: 250px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  .main-header__logo img {
    max-width: 200px;
  }
}
.main-header__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .main-header__bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.main-header__btn {
  margin-left: 40px;
}
@media (max-width: 1500px) {
  .main-header__btn {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .main-header__btn {
    display: none;
  }
}
.main-header__btn.rofiex-btn:hover i {
  transform: none;
}
.main-header__right {
  display: flex;
  align-items: center;
}
.main-header__call {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-left: 20px;
}
@media (max-width: 1450px) {
  .main-header__call {
    display: none;
  }
}
.main-header__call__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border-radius: 50%;
  font-size: 16px;
  color: var(--rofiex-white, #fff);
  background-color: var(--rofiex-base, #FE574F);
}
.main-header__call__text {
  font-size: 16px;
  font-weight: 600;
  line-height: 25px;
  color: var(--rofiex-black2, #222222);
  text-transform: uppercase;
  margin: 0;
}
.main-header__call__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.main-header__call__text a:hover {
  background-size: 100% 1px;
}
.main-header__call__text a:hover {
  color: var(--rofiex-base, #FE574F);
}
.main-header__cart, .main-header__search {
  font-size: 25px;
  color: var(--rofiex-black, #000000);
  transition: all 500ms ease;
  margin-left: 35px;
  line-height: 1em;
}
@media (max-width: 1500px) {
  .main-header__cart, .main-header__search {
    margin-left: 30px;
  }
}
@media (max-width: 1299px) {
  .main-header__cart, .main-header__search {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .main-header__cart, .main-header__search {
    margin-left: 10px;
  }
}
.main-header__cart:hover, .main-header__search:hover {
  color: var(--rofiex-base, #FE574F);
}
.main-header--two {
  position: absolute;
  left: 0;
  top: 30px;
  z-index: 9;
  width: 100%;
  border: none;
  padding: 0;
  background-color: transparent;
}
.main-header--two::after {
  display: none;
}
.main-header--two.sticky-header--cloned {
  background-color: var(--rofiex-white, #fff);
  border: none;
  box-shadow: 0px 3px 18px rgba(var(--rofiex-black-rgb, 0, 0, 0), 0.07);
}
.main-header--two .main-header__logo {
  position: relative;
  border: none;
  width: auto;
  height: auto;
  background-color: transparent;
  clip-path: none;
}
.main-header--two .main-header__inner {
  background-color: var(--rofiex-white, #fff);
  border-radius: 100px;
  padding: 0 15px 0 60px;
  display: flex;
  align-items: center;
  max-width: 1510px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .main-header--two .main-header__inner {
    padding: 15px 15px 15px 30px;
  }
}
@media (max-width: 767px) {
  .main-header--two .main-header__inner {
    padding: 15px 30px;
  }
}
.main-header--two .main-menu {
  margin-left: auto;
}
.main-header--two .main-menu .main-menu__list > li {
  padding-top: 42px;
  padding-bottom: 42px;
}
.main-header--two .mobile-nav__btn span {
  background-color: var(--rofiex-black, #000000);
}
.main-header--two .main-header__btn {
  margin-left: 40px;
}
@media (max-width: 1500px) {
  .main-header--two .main-header__btn {
    margin-left: 30px;
  }
}
@media (max-width: 1299px) {
  .main-header--two .main-header__btn {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  .main-header--two .main-header__btn {
    display: none;
  }
}
.main-header--two .main-header__toggler {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 84px;
  height: 84px;
  background-color: var(--rofiex-black, #000000);
  border-radius: 50%;
  margin-left: 30px;
  padding: 0 22px;
}
@media (max-width: 1299px) {
  .main-header--two .main-header__toggler {
    margin-left: 20px;
  }
}
@media (max-width: 1199px) {
  .main-header--two .main-header__toggler {
    width: 60px;
    height: 60px;
    margin-left: 20px;
    padding: 0 15px;
  }
}
@media (max-width: 500px) {
  .main-header--two .main-header__toggler {
    display: none;
  }
}
.main-header--two .main-header__toggler span {
  background-color: var(--rofiex-white, #fff);
  height: 4px;
  width: 40px;
  border-radius: 10px;
  transition: all 400ms ease;
}
@media (max-width: 1199px) {
  .main-header--two .main-header__toggler span {
    width: 30px;
  }
}
.main-header--two .main-header__toggler span:nth-child(2) {
  width: 25px;
}
@media (max-width: 1199px) {
  .main-header--two .main-header__toggler span:nth-child(2) {
    width: 20px;
  }
}
.main-header--two .main-header__toggler span:nth-child(3) {
  width: 35px;
}
@media (max-width: 1199px) {
  .main-header--two .main-header__toggler span:nth-child(3) {
    width: 25px;
  }
}
.main-header--two .main-header__toggler:hover span {
  background-color: var(--rofiex-base, #FE574F);
}
.main-header--three {
  position: relative;
  padding: 0;
  background-color: var(--rofiex-white, #fff);
}
.main-header--three::after {
  display: none;
}
@media (max-width: 1199px) {
  .main-header--three {
    padding: 0;
  }
}
.main-header--three.sticky-header--cloned {
  background-color: var(--rofiex-white, #fff);
  border: none;
  box-shadow: 0px 3px 18px rgba(var(--rofiex-black-rgb, 0, 0, 0), 0.07);
}
.main-header--three .main-header__inner {
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 0;
  background-color: transparent;
  justify-content: space-between;
}
@media (max-width: 1199px) {
  .main-header--three .main-header__inner {
    padding: 20px 0;
  }
}
.main-header--three .main-header__logo {
  position: relative;
  z-index: 1;
  border: none;
  width: auto;
  height: auto;
  padding: 0;
  background-color: transparent;
  clip-path: none;
}
.main-header--three .main-header__logo::after {
  display: none;
}
.main-header--three .main-menu {
  margin-left: auto;
}
.main-header--three .main-header__btn {
  margin-left: 30px;
}
@media (max-width: 767px) {
  .main-header--three .main-header__btn {
    display: none;
  }
}

.sticky-header--cloned {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  background-color: var(--rofiex-white, #fff);
  transform: translateY(-100%);
  box-shadow: 0px 3px 18px rgba(var(--rofiex-black-rgb, 0, 0, 0), 0.07);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  transition: transform 500ms ease, visibility 500ms ease;
}
.sticky-header--cloned.active {
  transform: translateY(0%);
  visibility: visible;
}
.sticky-header--cloned::after,
.sticky-header--cloned .main-header__topbar {
  display: none;
}

.mobile-nav__btn {
  width: 24px;
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-wrap: wrap;
  cursor: pointer;
  z-index: 3;
}
@media (max-width: 1199px) {
  .mobile-nav__btn {
    margin-left: -50px;
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .mobile-nav__btn {
    margin-left: -40px;
    margin-right: 10px;
  }
}
@media (min-width: 1200px) {
  .mobile-nav__btn {
    display: none;
  }
}
.mobile-nav__btn span {
  width: 100%;
  height: 2px;
  background-color: var(--rofiex-black, #000000);
}
.mobile-nav__btn span:nth-child(2) {
  margin-top: 4px;
  margin-bottom: 4px;
}

.main-menu {
  /* after third level no menu */
}
.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}
@media (min-width: 1200px) {
  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul {
    display: flex;
  }
}
.main-menu .main-menu__list > li {
  padding-top: 37px;
  padding-bottom: 37px;
  position: relative;
}
.main-menu .main-menu__list > li.dropdown > a {
  position: relative;
}
.main-menu .main-menu__list > li.dropdown > a::after {
  position: relative;
  right: 0px;
  top: 2px;
  border-radius: 0px;
  font-size: 10px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  color: inherit;
  line-height: 10px;
  margin-left: 5px;
}
.main-menu .main-menu__list > li + li {
  margin-left: 42px;
}
@media (max-width: 1590px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1300px) {
  .main-menu .main-menu__list > li + li {
    margin-left: 24px;
  }
}
.main-menu .main-menu__list > li > a {
  font-size: 16px;
  display: flex;
  align-items: center;
  color: var(--rofiex-black3, #333333);
  font-weight: 600;
  text-transform: capitalize;
  position: relative;
  transition: all 500ms ease;
}
.main-menu .main-menu__list > li.current > a,
.main-menu .main-menu__list > li:hover > a {
  color: var(--rofiex-base, #FE574F);
  text-shadow: 0 0 0.5px currentColor;
}
.main-menu .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: -25px;
  min-width: 270px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transform-origin: top center;
  transform: scaleY(0) translateZ(100px);
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  z-index: 99;
  background-color: var(--rofiex-white, #fff);
  box-shadow: 0px 10px 60px 0px RGBA(var(--rofiex-white-rgb, 255, 255, 255), 0.07);
  padding: 15px 20px 11px;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}
.main-menu .main-menu__list li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1) translateZ(0px);
}
.main-menu .main-menu__list > .megamenu {
  position: static;
}
.main-menu .main-menu__list > .megamenu > ul {
  top: 100% !important;
  left: -130px !important;
  right: 0 !important;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
}
.main-menu .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}
.main-menu .main-menu__list li ul li > a {
  font-size: 15px;
  line-height: 26px;
  color: var(--rofiex-text, #636363);
  font-weight: 500;
  display: flex;
  text-transform: capitalize;
  padding: 8px 20px;
  transition: 400ms;
  margin-bottom: 4px;
}
.main-menu .main-menu__list li ul li > a::after {
  position: absolute;
  right: 20px;
  top: 8px;
  border-radius: 0;
  font-size: 6px;
  font-weight: 700;
  font-family: "Font Awesome 5 Free";
  content: "\f111";
  color: var(--rofiex-base, #FE574F);
  visibility: hidden;
  opacity: 0;
  transition: all 500ms ease;
  transform: scale(0);
}
.main-menu .main-menu__list li ul li.current > a,
.main-menu .main-menu__list li ul li:hover > a {
  background-color: var(--rofiex-gray, #F5F1EF);
  color: var(--rofiex-base, #FE574F);
}
.main-menu .main-menu__list li ul li.current > a::after,
.main-menu .main-menu__list li ul li:hover > a::after {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}
.main-menu .main-menu__list li ul li > ul {
  top: 0;
  left: calc(100% + 20px);
}
.main-menu .main-menu__list li ul li > ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}
.main-menu .main-menu__list li ul li > ul ul {
  display: none;
}

@media (min-width: 1200px) and (max-width: 1400px) {
  .main-menu__list li:nth-last-child(1) ul li > ul,
  .main-menu__list li:nth-last-child(2) ul li > ul {
    left: auto;
    right: calc(100% + 20px);
  }
}
/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/
.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul {
  position: fixed;
  top: 0 !important;
  left: 0 !important;
  width: 100vw;
  height: 100vh;
  visibility: visible;
  overflow-y: scroll;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
  z-index: 999999;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll;
  padding: 0;
  background-color: var(--rofiex-white, #fff);
  display: block !important;
  margin: 0;
}

.main-menu__list > li.megamenu-clickable > ul::-webkit-scrollbar {
  display: none;
}

.mobile-nav__container .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.main-menu .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active,
.stricky-header .main-menu__list > .megamenu.megamenu-clickable > ul.megamenu-clickable--active {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
  transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

body.megamenu-popup-active {
  overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
  bottom: 0;
}

body.megamenu-popup-active .mobile-nav__content {
  overflow: unset;
}

.mobile-nav__content .demo-one .container {
  padding-left: 15px;
  padding-right: 15px;
}

.megamenu-popup {
  position: relative;
}
.megamenu-popup .megamenu-clickable--close {
  position: absolute;
  top: 18px;
  right: 20px;
  display: block;
  color: var(--rofiex-black, #000000);
}
@media (min-width: 1300px) {
  .megamenu-popup .megamenu-clickable--close {
    top: 38px;
    right: 40px;
  }
}
.megamenu-popup .megamenu-clickable--close:hover {
  color: var(--rofiex-base, #FE574F);
}
.megamenu-popup .megamenu-clickable--close span {
  width: 24px;
  height: 24px;
  display: block;
  position: relative;
  color: currentColor;
  transition: all 500ms ease;
}
.megamenu-popup .megamenu-clickable--close span::before, .megamenu-popup .megamenu-clickable--close span::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.megamenu-popup .megamenu-clickable--close span::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.demo-one {
  padding-top: 120px;
  padding-bottom: 120px;
}
.demo-one .row {
  --bs-gutter-y: 30px;
}
.demo-one__card {
  background-color: var(--rofiex-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--rofiex-black3-rgb, 51, 51, 51), 0.1);
  text-align: center;
  transition: 500ms ease;
  transform: translateY(0px);
}
.demo-one__card:hover {
  transform: translateY(-10px);
}
.demo-one__title {
  margin: 0;
  text-transform: uppercase;
  font-size: 16px;
  color: var(--rofiex-black, #000000);
  font-weight: 600;
}
.demo-one__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.demo-one__title a:hover {
  background-size: 100% 1px;
}
.demo-one__image {
  position: relative;
  overflow: hidden;
}
.demo-one__image img {
  max-width: 100%;
  transition: filter 500ms ease;
  filter: blur(0px);
}
.demo-one__card:hover .demo-one__image img {
  filter: blur(2px);
}
.demo-one__btns {
  background-color: rgba(var(--rofiex-black3-rgb, 51, 51, 51), 0.7);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  transform: scale(1, 0);
  transition: transform 500ms ease, opacity 600ms linear;
  transform-origin: bottom center;
  opacity: 0;
}
.demo-one__card:hover .demo-one__btns {
  transform: scale(1, 1);
  opacity: 1;
  transform-origin: top center;
}
.demo-one__btn {
  font-size: 14px;
  padding: 12px 20px;
}
@media (min-width: 768px) {
  .demo-one__btn {
    display: inline-flex;
  }
}
.demo-one__title {
  padding-top: 20.5px;
  padding-bottom: 20.5px;
}

.home-showcase .row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 20px;
}
.home-showcase__inner {
  padding: 40px 40px 21px;
  background-color: var(--rofiex-white, #fff);
  box-shadow: 0px 10px 60px 0px rgba(var(--rofiex-black3-rgb, 51, 51, 51), 0.07);
}
.home-showcase .demo-one__card {
  box-shadow: none;
}
.home-showcase .demo-one__btns {
  flex-direction: column;
}
.home-showcase .demo-one__btn {
  min-width: 135px;
  text-align: center;
  justify-content: center;
}
.home-showcase .demo-one__title {
  padding: 0;
  font-weight: 600;
  font-size: 14px;
  margin-top: 15px;
  padding-bottom: 15px;
}

/*--------------------------------------------------------------
# Why choose
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  background-color: var(--rofiex-black2, #222222);
  padding: 120px 0 90px;
}
.why-choose-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  opacity: 0.08;
}
@media (max-width: 767px) {
  .why-choose-one {
    padding: 80px 0 50px;
  }
}
.why-choose-one__image {
  position: relative;
}
.why-choose-one__image img {
  width: 100%;
  border-radius: 50px;
  height: auto;
}
.why-choose-one__box {
  position: relative;
  z-index: 2;
  background-color: transparent;
  padding: 0 30px 31px;
  margin-bottom: 30px;
}
.why-choose-one__box::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 256px;
  content: "";
  transition: all 0.5s ease;
  background-color: var(--rofiex-white, #fff);
  z-index: -1;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 370 257" xmlns="http://www.w3.org/2000/svg"><path d="M370 58.0522C370 53.3513 366.726 49.2851 362.133 48.2823L142.054 0.230166C141.353 0.0771666 140.638 0 139.921 0L41.4716 0C39.223 0 37.0401 0.757845 35.2752 2.15117L3.80356 26.9972C1.40146 28.8936 0 31.7856 0 34.846V247C0 252.523 4.47714 257 10 257H360C365.523 257 370 252.523 370 247V58.0522Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 370 257" xmlns="http://www.w3.org/2000/svg"><path d="M370 58.0522C370 53.3513 366.726 49.2851 362.133 48.2823L142.054 0.230166C141.353 0.0771666 140.638 0 139.921 0L41.4716 0C39.223 0 37.0401 0.757845 35.2752 2.15117L3.80356 26.9972C1.40146 28.8936 0 31.7856 0 34.846V247C0 252.523 4.47714 257 10 257H360C365.523 257 370 252.523 370 247V58.0522Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: top left;
  mask-position: top left;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.why-choose-one__box:hover::after {
  background-color: var(--rofiex-base, #FE574F);
}
.why-choose-one__box__shape {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto;
  transition: all 0.5s ease;
  opacity: 0;
}
.why-choose-one__box:hover .why-choose-one__box__shape {
  opacity: 1;
  right: 0;
  bottom: 0;
}
.why-choose-one__box__icon {
  position: relative;
  width: 105px;
  height: 105px;
  background-color: var(--rofiex-base, #FE574F);
  border: 9px solid var(--rofiex-white, #fff);
  border-radius: 50%;
  font-size: 45px;
  color: var(--rofiex-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  margin-bottom: 13px;
}
.why-choose-one__box:hover .why-choose-one__box__icon {
  background-color: var(--rofiex-black, #000000);
  animation-name: wobble-horizontal-on-hover;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}
.why-choose-one__box__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  margin: 0 0 14px;
  transition: all 0.3s ease;
}
.why-choose-one__box:hover .why-choose-one__box__title {
  color: var(--rofiex-white, #fff);
}
.why-choose-one__box__text {
  margin: 0 0 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.why-choose-one__box:hover .why-choose-one__box__text {
  color: var(--rofiex-white, #fff);
}
.why-choose-one__box__btn {
  color: var(--rofiex-black3, #333333);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  z-index: 1;
  position: relative;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.why-choose-one__box__btn span {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  display: inline-block;
}
.why-choose-one__box__btn:hover span {
  background-size: 100% 1px;
}
.why-choose-one__box__btn i {
  color: var(--rofiex-base, #FE574F);
  font-size: 20px;
  transition: all 0.3s ease;
}
.why-choose-one__box:hover .why-choose-one__box__btn {
  color: var(--rofiex-white, #fff);
}
.why-choose-one__box:hover .why-choose-one__box__btn i {
  color: var(--rofiex-white, #fff);
}

.why-choose-two {
  position: relative;
  z-index: 1;
  padding: 120px 0;
  counter-reset: count;
}
@media (max-width: 767px) {
  .why-choose-two {
    padding: 80px 0;
  }
}
.why-choose-two::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 65%;
  content: "";
  z-index: -1;
  background-color: var(--rofiex-black, #000000);
  clip-path: polygon(50% 0, 100% 60%, 100% 100%, 0 100%, 0 60%);
}
.why-choose-two__shape {
  position: absolute;
  right: 0;
  z-index: -1;
  top: 0;
  height: 100%;
  width: 100%;
  background-position: top left;
  background-repeat: no-repeat;
  background-size: auto;
}
.why-choose-two__wrapper {
  position: relative;
  z-index: 1;
  background-color: var(--rofiex-gray, #F5F1EF);
  padding: 15px;
}
.why-choose-two__wrapper::after {
  position: absolute;
  right: 0;
  top: 0;
  width: 255px;
  height: 100%;
  content: "";
  z-index: -1;
  background-color: var(--rofiex-base, #FE574F);
}
@media (max-width: 991px) {
  .why-choose-two__wrapper::after {
    display: none;
  }
}
.why-choose-two__content {
  position: relative;
  padding: 40px 0 40px 50px;
}
@media (max-width: 991px) {
  .why-choose-two__content {
    padding: 40px 50px;
  }
}
@media (max-width: 767px) {
  .why-choose-two__content {
    padding: 40px 5px;
  }
}
.why-choose-two__content__title {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 9px;
}
.why-choose-two__content__text {
  line-height: 30px;
  font-weight: 500;
  margin: 0 0 34px;
}
.why-choose-two__box {
  position: relative;
  transition: all 500ms ease;
  background-color: var(--rofiex-white, #fff);
  padding: 16px 100px 16px 72px;
  min-height: 89px;
  margin-top: 30px;
  counter-increment: count;
}
.why-choose-two__box__number {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  padding: 13px 7px;
  height: 100%;
  background-color: var(--rofiex-black, #000000);
  font-size: 16px;
  font-weight: 700;
  color: var(--rofiex-white, #fff);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(180deg);
  white-space: nowrap;
  writing-mode: vertical-rl;
  transition: all 500ms ease;
}
.why-choose-two__box__number::after {
  position: absolute;
  left: -12px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 22px;
  background-color: var(--rofiex-base, #FE574F);
  content: "";
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  transition: all 500ms ease;
}
.why-choose-two__box__number__count {
  position: relative;
  display: inline-block;
}
.why-choose-two__box__number__count::after {
  content: counters(count, ".", decimal-leading-zero);
  display: inline-block;
}
.why-choose-two__box:hover {
  filter: drop-shadow(0px 4px 12.5px rgba(0, 0, 0, 0.06));
}
.why-choose-two__box:hover .why-choose-two__box__number {
  background-color: var(--rofiex-base, #FE574F);
}
.why-choose-two__box:hover .why-choose-two__box__icon {
  background-color: var(--rofiex-black, #000000);
}
.why-choose-two__box:hover .why-choose-two__box__icon i {
  transform: scale(1.05);
}
.why-choose-two__box__title {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 4px;
}
.why-choose-two__box__text {
  margin: 0;
  font-weight: 500;
}
.why-choose-two__box__icon {
  position: absolute;
  right: 0;
  top: 0;
  width: 90px;
  height: 100%;
  font-size: 50px;
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
  display: flex;
  align-items: center;
  transition: all 500ms ease;
  justify-content: center;
}
.why-choose-two__box__icon i {
  display: inline-block;
  transition: all 500ms ease;
  transform: scale(1);
}
.why-choose-two__image {
  position: relative;
  margin-left: auto;
  max-width: 499px;
}
@media (max-width: 991px) {
  .why-choose-two__image {
    margin: 0 50px;
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .why-choose-two__image {
    margin: 0 5px;
  }
}
.why-choose-two__image > img {
  min-height: 608px;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 991px) {
  .why-choose-two__image > img {
    width: auto;
    max-width: 100%;
    min-height: auto;
  }
}
.why-choose-two__image__two {
  position: absolute;
  left: 10px;
  top: 10px;
  display: inline-block;
  border: 8px solid var(--rofiex-white, #fff);
}
.why-choose-two__slide-text {
  position: relative;
  display: block;
  padding: 0;
  white-space: nowrap;
  margin-top: 120px;
}
@media (max-width: 767px) {
  .why-choose-two__slide-text {
    margin-top: 80px;
  }
}
.why-choose-two__slide-text__list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  animation: text-scrolling 19s linear infinite;
  will-change: transform;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
  gap: 95px;
}
@media (max-width: 767px) {
  .why-choose-two__slide-text__list {
    animation: text-scrolling 7s linear infinite;
  }
}
.why-choose-two__slide-text__list:hover {
  animation-play-state: paused;
}
.why-choose-two__slide-text__list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 40px;
  color: var(--rofiex-white, #fff);
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  letter-spacing: 0;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1;
  margin: 0;
  transition: all 300ms ease;
}
.why-choose-two__slide-text__list li:hover {
  color: var(--rofiex-base, #FE574F);
}
.why-choose-two__slide-text__list li::after {
  position: absolute;
  right: -52px;
  top: 0;
  content: "|";
  color: currentColor;
  transform: rotate(27deg);
}
@keyframes text-scrolling {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/
.funfact-one {
  position: relative;
  z-index: 1;
}
.funfact-one__list {
  position: relative;
  z-index: 2;
  margin: 0;
  background-color: var(--rofiex-white, #fff);
  padding: 0 40px;
  margin-bottom: -117px;
}
@media (min-width: 768px) {
  .funfact-one__list {
    display: flex;
    flex-wrap: wrap;
    row-gap: 20px;
  }
}
@media (min-width: 1200px) {
  .funfact-one__list {
    justify-content: space-between;
    gap: 0;
  }
}
@media (max-width: 767px) {
  .funfact-one__list {
    padding: 0 20px;
  }
}
.funfact-one__item {
  display: flex;
  align-items: center;
  padding: 15px 0 58px;
  position: relative;
}
@media (max-width: 1199px) {
  .funfact-one__item:last-child {
    margin-top: -55px;
  }
}
@media (max-width: 767px) {
  .funfact-one__item {
    padding: 30px 0;
  }
  .funfact-one__item:last-child {
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  .funfact-one__item {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .funfact-one__item {
    flex: 0 0 auto;
    max-width: none;
  }
}
.funfact-one__item:hover .funfact-one__item__icon i {
  transform: rotateY(180deg);
}
.funfact-one__item__icon {
  font-size: 110px;
  line-height: 1;
  color: var(--rofiex-base, #FE574F);
  border-right: 1px solid var(--rofiex-border-color, #DDDDDD);
  margin-right: 28px;
  padding-right: 28px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .funfact-one__item__icon {
    font-size: 100px;
    margin-right: 20px;
    padding-right: 20px;
  }
}
.funfact-one__item__icon i {
  display: inline-block;
  transition: all 0.6s ease;
}
.funfact-one__item__count {
  margin: 0 0 6px;
  color: var(--rofiex-black2, #222222);
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}
.funfact-one__item__text {
  margin: 0;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

.funfact-two {
  position: relative;
}
.funfact-two__list {
  background-color: var(--rofiex-white, #fff);
  padding: 0;
  margin: 0;
  border-radius: 50px;
  border: 1px solid var(--rofiex-border-color, #DDDDDD);
  list-style: none;
  display: flex;
  overflow: hidden;
  z-index: 2;
  position: relative;
  margin: 0 0 -173px;
}
@media (max-width: 991px) {
  .funfact-two__list {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .funfact-two__list {
    flex-direction: column;
    padding: 30px 0;
  }
}
.funfact-two__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  transition: all 500ms ease;
  margin: 0;
  padding: 100px 0 55px;
  flex-grow: 1;
  overflow: hidden;
}
@media (max-width: 767px) {
  .funfact-two__item {
    padding: 45px 0 20px;
  }
}
.funfact-two__item:not(:last-of-type)::before {
  content: "";
  width: 1px;
  height: 200px;
  background-color: var(--rofiex-border-color, #DDDDDD);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
@media (max-width: 767px) {
  .funfact-two__item:not(:last-of-type)::before {
    display: none;
  }
}
.funfact-two__item:hover .funfact-two__icon {
  background-color: var(--rofiex-black, #000000);
  animation-name: wobble-horizontal-on-hover;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}
.funfact-two__item:hover .funfact-two__icon::after {
  background-color: var(--rofiex-black, #000000);
}
.funfact-two__icon {
  background-color: var(--rofiex-base, #FE574F);
  border-bottom: none;
  width: 90px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 45px;
  color: var(--rofiex-white, #fff);
  transition: all 400ms ease;
}
.funfact-two__icon::after {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: 38px;
  top: -38px;
  left: -10px;
  background-color: var(--rofiex-base, #FE574F);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: -1;
  transition: all 400ms ease;
}
.funfact-two__icon span {
  display: inline-block;
  top: -10px;
  position: relative;
}
.funfact-two__count {
  font-size: 50px;
  font-weight: 700;
  line-height: 26px;
  color: var(--rofiex-black, #000000);
  margin: 35px 0 17px;
}
.funfact-two__text {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  line-height: 24px;
  margin: 0;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials-one {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .testimonials-one {
    padding: 80px 0;
  }
}
.testimonials-one .container {
  max-width: 1730px;
}
.testimonials-one .col-xl-3 {
  width: 25%;
}
@media (max-width: 1499px) {
  .testimonials-one .col-xl-3 {
    width: 33.33333333%;
  }
}
@media (max-width: 1199px) {
  .testimonials-one .col-xl-3 {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .testimonials-one .col-xl-3 {
    width: 100%;
  }
}

.testimonials-card {
  transition: all 500ms ease;
  background-color: var(--rofiex-gray, #F5F1EF);
  border-radius: 50px;
  padding: 55px 30px 46px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .testimonials-card {
    padding: 39px 25px 50px;
  }
}
.testimonials-card:hover {
  background-color: var(--rofiex-black, #000000);
}
.testimonials-card:hover .testimonials-card__name,
.testimonials-card:hover .testimonials-card__designation,
.testimonials-card:hover .testimonials-card__content {
  color: var(--rofiex-white, #fff);
}
.testimonials-card:hover .testimonials-card__image {
  border-color: var(--rofiex-white, #fff);
}
.testimonials-card:hover .testimonials-card__shape {
  visibility: hidden;
  opacity: 0;
}
.testimonials-card:hover .testimonials-card__shape-hover {
  visibility: visible;
  opacity: 1;
}
.testimonials-card__shape {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto;
  transition: all 400ms ease;
}
.testimonials-card__shape-hover {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto;
  transition: all 400ms ease;
  visibility: hidden;
  opacity: 0;
}
.testimonials-card__image {
  width: 88px;
  height: 88px;
  position: absolute;
  border: 5px solid var(--rofiex-base, #FE574F);
  border-radius: 0 0 50px 50px;
  overflow: hidden;
  border-top: none;
  z-index: 1;
  right: 50px;
  top: 0;
  transition: all 300ms ease;
}
@media (max-width: 400px) {
  .testimonials-card__image {
    right: 25px;
  }
}
.testimonials-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials-card__name {
  margin: 0;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 11px;
  transition: all 300ms ease;
}
.testimonials-card__designation {
  display: block;
  margin: 0 0 23px;
  line-height: 1;
  transition: all 300ms ease;
}
.testimonials-card__content {
  margin: 0 0 26px;
  font-style: italic;
  transition: all 300ms ease;
}
.testimonials-card__rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  transition: all 300ms ease;
  color: var(--rofiex-base, #FE574F);
  font-size: 22px;
  letter-spacing: 11px;
}

.testimonials-two {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .testimonials-two {
    padding: 80px 0;
  }
}
.testimonials-two__item {
  position: relative;
  background-color: var(--rofiex-gray, #F5F1EF);
  border-radius: 10px 10px 10px 100px;
  padding: 40px 25px 40px 180px;
  overflow: hidden;
  z-index: 2;
}
@media (max-width: 767px) {
  .testimonials-two__item {
    padding: 30px;
    border-radius: 10px;
  }
}
.testimonials-two__item::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0;
  bottom: auto;
  left: 0;
  visibility: hidden;
  height: 0;
  width: 100%;
  transition: 0.5s;
  background-color: var(--rofiex-black, #000000);
  overflow: hidden;
}
.testimonials-two__item:hover:after {
  height: 100%;
  visibility: visible;
}
.testimonials-two__item:hover .testimonials-two__item__bg {
  opacity: 1;
}
.testimonials-two__item:hover .testimonials-two__item__content,
.testimonials-two__item:hover .testimonials-two__item__name,
.testimonials-two__item:hover .testimonials-two__item__designation {
  color: var(--rofiex-white, #fff);
}
.testimonials-two__item:hover .testimonials-two__item__quote {
  opacity: 1;
}
.testimonials-two__item__quote {
  position: absolute;
  right: 30px;
  bottom: 20px;
  transition: 0.3s;
  font-size: 60px;
  line-height: 1;
  color: var(--rofiex-base, #FE574F);
  opacity: 0.2;
}
.testimonials-two__item__bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  opacity: 0.5;
  transition: 0.5s;
}
.testimonials-two__item__border {
  position: absolute;
  width: 113px;
  height: 120px;
  border-radius: 10px;
  border: 2px solid var(--rofiex-base, #FE574F);
  left: -15px;
  top: -15px;
}
.testimonials-two__item__border::after {
  position: absolute;
  content: "";
  width: 113px;
  height: 120px;
  border-radius: 10px;
  border: 2px dotted var(--rofiex-base, #FE574F);
  left: -12px;
  top: -12px;
}
.testimonials-two__item__image {
  position: absolute;
  left: 40px;
  top: 40px;
  border-radius: 10px;
  width: 113px;
  height: 121px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .testimonials-two__item__image {
    position: relative;
    left: 0;
    top: 0;
    margin: 0 0 15px;
  }
}
.testimonials-two__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials-two__item__rating {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: var(--rofiex-base, #FE574F);
  font-size: 20px;
  letter-spacing: 8px;
  margin: 0 0 14px;
  transition: all 300ms ease;
}
.testimonials-two__item__content {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 20px;
  transition: all 300ms ease;
}
.testimonials-two__item__name {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1;
  margin-bottom: 10px;
  transition: all 300ms ease;
}
.testimonials-two__item__designation {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  text-transform: capitalize;
  transition: all 300ms ease;
  margin: 0;
}

.testimonials-three {
  position: relative;
  overflow: hidden;
  background-color: var(--rofiex-black, #000000);
  padding: 120px 0;
}
@media (max-width: 767px) {
  .testimonials-three {
    padding: 80px 0;
  }
}
.testimonials-three__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.testimonials-three__content {
  position: relative;
  transform: rotate(180deg);
  white-space: nowrap;
  writing-mode: vertical-rl;
}
@media (max-width: 1199px) {
  .testimonials-three__content {
    transform: none;
    writing-mode: inherit;
    margin: 0 0 40px;
  }
}
.testimonials-three__content .sec-title {
  padding: 0;
}
@media (min-width: 1200px) {
  .testimonials-three__content .sec-title__tagline {
    margin: 0 0 0 14px;
  }
  .testimonials-three__content .sec-title__tagline img {
    margin: 0 0 12px 0;
  }
}
.testimonials-three__wrapper {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-blend-mode: color-burn;
  background-color: var(--rofiex-black2, #222222);
}
.testimonials-three__wrapper .prev {
  border: none;
  outline: none;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  opacity: 1;
  background-color: var(--rofiex-white, #fff);
  transform: rotate(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 0;
  color: var(--rofiex-base, #FE574F);
  transition: all 500ms ease;
  position: absolute;
  z-index: 3;
  left: 0;
  bottom: 0;
}
.testimonials-three__wrapper .prev:hover {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}
.testimonials-three__wrapper .next {
  border: none;
  outline: none;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  opacity: 1;
  background-color: var(--rofiex-base, #FE574F);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 0;
  color: var(--rofiex-white, #fff);
  transition: all 500ms ease;
  position: absolute;
  z-index: 2;
  left: 49px;
  bottom: 0;
}
.testimonials-three__wrapper .next:hover {
  background-color: var(--rofiex-white, #fff);
  color: var(--rofiex-base, #FE574F);
}
.testimonials-three__item {
  position: relative;
  padding: 56px 30px 93px;
}
@media (max-width: 767px) {
  .testimonials-three__item {
    padding: 35px 22px 80px;
    z-index: 1;
    margin-bottom: 40px;
  }
}
.testimonials-three__item__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonials-three__item__rating {
  display: flex;
  align-items: center;
  margin: 0;
}
.testimonials-three__item__rating i {
  color: var(--rofiex-base, #FE574F);
  font-size: 18px;
  letter-spacing: 8px;
}
.testimonials-three__item__quote {
  width: 50px;
  height: 37px;
  background-position: center center;
}
.testimonials-three__item__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--rofiex-white, #fff);
  font-style: italic;
  text-transform: capitalize;
  margin: 30px 0 19px;
}
.testimonials-three__item__content {
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  color: var(--rofiex-white, #fff);
  font-style: italic;
  margin: 0;
}
.testimonials-three__image__wrapper {
  position: relative;
}
@media (max-width: 767px) {
  .testimonials-three__image__wrapper {
    overflow: hidden;
    height: 395px;
    padding: 30px 0 20px;
  }
}
.testimonials-three__image {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 355px;
}
@media (max-width: 767px) {
  .testimonials-three__image {
    position: relative;
  }
}
.testimonials-three__image .slick-list {
  overflow: visible;
}
.testimonials-three__image .slick-slide {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  border: none;
}
.testimonials-three__image .slick-active {
  visibility: visible;
  opacity: 1;
}
.testimonials-three__image__item {
  position: relative;
  background-color: var(--rofiex-black2, #222222);
  border: 1px solid transparent;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 20px;
  transition: all 400ms ease;
  margin-bottom: 20px;
}
.testimonials-three__image__item__image {
  width: 70px;
  height: 70px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.testimonials-three__image__item__image::after {
  position: absolute;
  left: -8px;
  bottom: -8px;
  background-color: var(--rofiex-base, #FE574F);
  z-index: -1;
  width: 100%;
  height: 100%;
  content: "";
}
.testimonials-three__image__item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials-three__image__item__author {
  position: relative;
  text-align: left;
}
.testimonials-three__image__item__author__name {
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--rofiex-white, #fff);
  line-height: 1;
  margin-bottom: 9px;
}
.testimonials-three__image__item__author__designation {
  line-height: 1;
  text-transform: capitalize;
  color: var(--rofiex-white, #fff);
  opacity: 0.7;
  margin: 0;
}
.testimonials-three__image .slick-current.slick-active.slick-center .testimonials-three__image__item {
  border-color: var(--rofiex-base, #FE574F);
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/
.cta-one {
  position: relative;
}
.cta-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.cta-one__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(90deg, rgba(var(--rofiex-base-rgb, 254, 87, 79), 1) 0%, rgba(var(--rofiex-base-rgb, 254, 87, 79), 0.6) 100%);
}
.cta-one__content {
  position: relative;
  z-index: 1;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .cta-one__content {
    padding: 120px 0 30px;
  }
}
@media (max-width: 767px) {
  .cta-one__content {
    padding: 80px 0 30px;
  }
}
.cta-one__content .sec-title {
  padding-bottom: 30px;
}
.cta-one__content .sec-title__tagline {
  color: var(--rofiex-white, #fff);
}
.cta-one__content .sec-title__title {
  color: var(--rofiex-white, #fff);
}
.cta-one__content .rofiex-btn {
  background-color: transparent;
  color: var(--rofiex-white, #fff);
  border: 1px solid var(--rofiex-white, #fff);
}
.cta-one__content .rofiex-btn::after {
  background-color: var(--rofiex-white, #fff);
}
.cta-one__content .rofiex-btn:hover {
  color: var(--rofiex-base, #FE574F);
}
.cta-one__image {
  position: relative;
  z-index: 1;
  text-align: right;
  padding: 76px 100px 0 0;
}
@media (max-width: 991px) {
  .cta-one__image {
    text-align: left;
    padding: 0 0 0;
  }
}
.cta-one__image__bg {
  position: absolute;
  z-index: -1;
  right: -200px;
  top: 0;
  width: 730px;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  .cta-one__image__bg {
    display: none;
  }
}
.cta-one__image img {
  max-width: none;
  height: auto;
  animation: movebounce2 3s linear 0s infinite;
}
@media (max-width: 767px) {
  .cta-one__image img {
    max-width: 100%;
  }
}
.cta-one--service-details {
  position: relative;
}
@media (max-width: 991px) {
  .cta-one--service-details {
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .cta-one--service-details {
    padding-bottom: 50px;
  }
}
.cta-one--service-details .cta-one__bg::after {
  background: rgba(var(--rofiex-black-rgb, 0, 0, 0), 0.7);
}
.cta-one--service-details .cta-one__content .rofiex-btn {
  border: none;
  background-color: var(--rofiex-base, #FE574F);
}

.cta-two {
  position: relative;
  background-color: var(--rofiex-base, #FE574F);
  padding: 78px 0;
  overflow: hidden;
}
.cta-two__shape {
  position: absolute;
  right: 0;
  top: 0;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: auto;
  width: 100%;
  height: 100%;
  animation: movebounce2 3s linear 0s infinite;
}
@media (max-width: 1199px) {
  .cta-two__shape {
    display: none;
  }
}
.cta-two__bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 16.1%;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
}
@media (max-width: 1600px) {
  .cta-two__bg {
    display: none;
  }
}
.cta-two__content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}
@media (max-width: 991px) {
  .cta-two__content {
    flex-direction: column;
    gap: 30px;
  }
}
.cta-two__content__title {
  color: var(--rofiex-white, #fff);
  font-size: 40px;
  line-height: 55px;
  font-weight: 700;
  margin: 0;
}
@media (max-width: 1199px) {
  .cta-two__content__title {
    font-size: 36px;
    line-height: 52px;
  }
}
@media (max-width: 991px) {
  .cta-two__content__title {
    text-align: center;
  }
}
.cta-two__content__info {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--rofiex-white, #fff);
  border-radius: 10px;
  padding: 26px 40px 26px;
  gap: 20px;
}
.cta-two__content__info i {
  font-size: 39px;
  line-height: 39px;
  color: var(--rofiex-black, #000000);
  flex-shrink: 0;
  display: inline-block;
  transition: all 500ms ease;
  transform: scale(1);
}
.cta-two__content__info:hover i {
  transform: scale(0.9);
}
.cta-two__content__info__title {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.cta-two__content__info__text {
  margin: 0;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
}
.cta-two__content__info__text a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.cta-two__content__info__text a:hover {
  background-size: 100% 1px;
}
.cta-two__content__info__text a:hover {
  color: var(--rofiex-base, #FE574F);
}

.tab-section {
  position: relative;
  border-top: 1px solid var(--rofiex-border-color, #DDDDDD);
  padding: 120px 0;
}
@media (max-width: 767px) {
  .tab-section {
    padding: 80px 0;
  }
}
.tab-section__btns {
  position: relative;
  margin: 0 0 60px;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .tab-section__btns {
    flex-direction: column;
    gap: 15px;
  }
}
.tab-section__btns li {
  display: inline-block;
  width: 100%;
  background-color: var(--rofiex-gray, #F5F1EF);
  position: relative;
  text-align: center;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  font-size: 22px;
  color: var(--rofiex-black, #000000);
  font-weight: 700;
  text-transform: uppercase;
  padding: 43px 20px;
  cursor: pointer;
  transition: all 500ms ease;
}
.tab-section__btns li::after {
  position: absolute;
  left: 60px;
  bottom: 0;
  width: 2px;
  height: 60px;
  background-color: var(--rofiex-base, #FE574F);
  content: "";
  visibility: hidden;
  opacity: 0;
  transition: all ease 0.3s;
  z-index: 1;
}
.tab-section__btns li:hover, .tab-section__btns li.active-btn {
  background-color: var(--rofiex-white, #fff);
  box-shadow: 0px 10px 32px 0px rgba(0, 0, 0, 0.07);
}
.tab-section__btns li:hover::after, .tab-section__btns li.active-btn::after {
  visibility: visible;
  opacity: 1;
  bottom: -44px;
}
@media (max-width: 767px) {
  .tab-section__btns li:hover::after, .tab-section__btns li.active-btn::after {
    bottom: -24px;
  }
}
.tab-section__image {
  position: relative;
}
.tab-section__image img {
  max-width: 100%;
  height: auto;
}
.tab-section__content {
  position: relative;
}
@media (max-width: 991px) {
  .tab-section__content {
    margin-top: 15px;
  }
}
.tab-section__content__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  text-transform: capitalize;
  margin: 0 0 13px;
}
.tab-section__content__text {
  font-weight: 500;
  line-height: 30px;
  margin: 0 0 30px;
}
.tab-section__content__list {
  margin: 0 0 45px;
  padding: 0;
  list-style: none;
}
.tab-section__content__list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 18px;
  line-height: 29px;
  font-weight: 600;
  color: var(--rofiex-black, #000000);
  text-transform: capitalize;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
}
.tab-section__content__list li:hover .tab-section__content__list__icon {
  background-color: var(--rofiex-black, #000000);
}
.tab-section__content__list li:hover .tab-section__content__list__icon i {
  transform: rotateY(180deg);
}
.tab-section__content__list li + li {
  border-top: 1px solid var(--rofiex-border-color, #DDDDDD);
  margin-top: 20px;
  padding-top: 20px;
}
.tab-section__content__list__icon {
  width: 72px;
  height: 72px;
  background-color: var(--rofiex-base, #FE574F);
  flex-shrink: 0;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--rofiex-white, #fff);
  transition: all 0.4s ease;
}
.tab-section__content__list__icon i {
  display: inline-block;
  top: -5px;
  transition: all 0.5s ease;
}

.skill-one {
  position: relative;
  background-color: var(--rofiex-gray, #F5F1EF);
  padding: 120px 0;
  background-position: right center;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (max-width: 767px) {
  .skill-one {
    padding: 80px 0;
  }
}
.skill-one__content {
  position: relative;
}
.skill-one__content .sec-title {
  padding-bottom: 20px;
}
.skill-one__content__text {
  font-weight: 500;
  line-height: 30px;
  margin: 0 0 33px;
}
.skill-one__progress {
  position: relative;
  margin-bottom: 26px;
}
.skill-one__progress__title {
  text-transform: capitalize;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .skill-one__progress__title {
    font-size: 16px;
  }
}
.skill-one__progress__bar {
  width: 100%;
  height: 10px;
  background-color: var(--rofiex-border-color, #DDDDDD);
  position: relative;
  border-radius: 10px;
}
.skill-one__progress__inner {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--rofiex-base, #FE574F);
  border-radius: 10px;
  transition: all 700ms linear;
  width: 0px;
}
.skill-one__progress__number {
  position: absolute;
  bottom: calc(100% + 4px);
  right: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--rofiex-base, #FE574F);
}
.skill-one__image {
  position: relative;
  animation: movebounce2 3s linear 0s infinite;
}
@media (max-width: 1199px) {
  .skill-one__image {
    margin-top: 40px;
  }
  .skill-one__image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery-page {
  padding: 120px 0;
  position: relative;
}
@media (max-width: 767px) {
  .gallery-page {
    padding: 80px 0;
  }
}
.gallery-page__card {
  position: relative;
  overflow: hidden;
  background-color: var(--rofiex-black, #000000);
}
.gallery-page__card img {
  transform: scale(1);
  width: 100%;
  transition: transform 500ms ease, opacity 500ms ease;
  opacity: 1;
}
.gallery-page__card__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--rofiex-base-rgb, 254, 87, 79), 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
}
.gallery-page__card__hover .img-popup {
  position: relative;
}
.gallery-page__card:hover img {
  transform: scale(1.05);
}
.gallery-page__card:hover .gallery-page__card__hover {
  transform-origin: top center;
  transform: scale(1, 1);
}
.gallery-page__card__icon {
  width: 52px;
  height: 52px;
  background-color: var(--rofiex-white, #fff);
  border-radius: 50%;
  display: block;
  position: relative;
  transition: all 0.4s ease;
}
.gallery-page__card__icon::after, .gallery-page__card__icon::before {
  content: "";
  width: 2px;
  height: 20px;
  background-color: var(--rofiex-base, #FE574F);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gallery-page__card__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
.sidebar__single {
  position: relative;
  background-color: var(--rofiex-gray, #F5F1EF);
  padding: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .sidebar__single {
    padding: 30px 20px;
  }
}
.sidebar__single + .sidebar__single {
  margin-top: 30px;
}
.sidebar__title {
  text-transform: capitalize;
  margin: 0;
  margin-top: -4px;
  margin-bottom: 30px;
  padding-bottom: 6px;
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  position: relative;
  display: inline-block;
}
.sidebar__title::after {
  content: "";
  width: 50%;
  height: 3px;
  background-color: var(--rofiex-base, #FE574F);
  position: absolute;
  bottom: 0;
  left: 0;
}
.sidebar__search {
  position: relative;
}
.sidebar__search input[type=search],
.sidebar__search input[type=text] {
  outline: none;
  width: 100%;
  height: 60px;
  background-color: var(--rofiex-white, #fff);
  font-size: 16px;
  color: var(--rofiex-text, #636363);
  border: none;
  padding-left: 20px;
  padding-right: 20px;
  transition: all 400ms ease;
}
.sidebar__search input[type=search]:focus,
.sidebar__search input[type=text]:focus {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
}
.sidebar__search button[type=submit] {
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0);
  position: absolute;
  padding: 0;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: auto;
  font-size: 20px;
  color: var(--rofiex-base, #FE574F);
  transition: all 400ms ease;
}
.sidebar__search button[type=submit]:hover {
  color: var(--rofiex-black, #000000);
}
.sidebar__posts {
  margin-bottom: 0;
}
.sidebar__posts__item {
  display: flex;
  align-items: center;
}
.sidebar__posts__item:not(:last-of-type) {
  margin-bottom: 30px;
}
.sidebar__posts__image {
  flex-shrink: 0;
  margin-right: 20px;
}
.sidebar__posts__title {
  margin: 0;
  text-transform: capitalize;
  color: var(--rofiex-black, #000000);
  font-size: 17px;
  font-weight: bold;
  line-height: 22px;
}
.sidebar__posts__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.sidebar__posts__title a:hover {
  background-size: 100% 1px;
}
.sidebar__posts__title a:hover {
  color: var(--rofiex-base, #FE574F);
}
.sidebar__posts__meta {
  line-height: 1em;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--rofiex-text, #636363);
  transition: all 500ms ease;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  margin-bottom: 13px;
}
.sidebar__posts__meta i {
  color: var(--rofiex-black, #000000);
}
.sidebar__categories {
  margin-bottom: -5px;
  margin-top: -10px;
}
.sidebar__categories li {
  font-size: 17px;
  font-weight: 400;
  color: var(--rofiex-text, #636363);
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding-left: 26px;
  transition: all 500ms ease;
  position: relative;
}
.sidebar__categories li::before {
  content: "\e934";
  font-family: "icomoon" !important;
  font-weight: 400;
  transition: all 500ms ease;
  font-size: 15px;
  color: currentColor;
  position: absolute;
  left: 0;
}
.sidebar__categories li a {
  color: inherit;
  transition: all 500ms ease;
}
.sidebar__categories li:hover {
  color: var(--rofiex-base, #FE574F);
}
.sidebar__categories li + li {
  margin-top: 10px;
}
.sidebar__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}
.sidebar__tags a {
  background-color: var(--rofiex-white, #fff);
  text-transform: capitalize;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  color: var(--rofiex-text, #636363);
  transition: all 500ms ease;
  display: inline-flex;
  padding: 1px 20px;
  border: 1px solid var(--rofiex-border-color, #DDDDDD);
}
.sidebar__tags a:hover {
  color: var(--rofiex-white, #fff);
  background-color: var(--rofiex-base, #FE574F);
  border-color: var(--rofiex-base, #FE574F);
}
.sidebar__comments {
  margin-top: -2px;
  margin-bottom: -2px;
}
.sidebar__comments__item {
  display: flex;
  align-items: center;
}
.sidebar__comments__item:not(:last-of-type) {
  margin-bottom: 32px;
}
.sidebar__comments__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--rofiex-base, #FE574F);
  font-size: 20px;
  color: var(--rofiex-white, #fff);
  margin-right: 20px;
  border-radius: 50%;
  transition: all 500ms ease;
}
.sidebar__comments__item:hover .sidebar__comments__icon {
  background-color: var(--rofiex-black, #000000);
  color: var(--rofiex-white, #fff);
}
.sidebar__comments__title {
  margin: 0;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--rofiex-text, #636363);
}
.sidebar__comments__title a {
  color: inherit;
  transition: all 500ms ease;
}
.sidebar__comments__title a:hover {
  color: var(--rofiex-black, #000000);
}

.service-sidebar {
  position: relative;
}
.service-sidebar__single + .service-sidebar__single {
  margin-top: 30px;
}
.service-sidebar__nav {
  margin: 0;
  padding: 30px;
  background-color: var(--rofiex-gray, #F5F1EF);
}
.service-sidebar__nav li {
  position: relative;
}
.service-sidebar__nav li a {
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 21px;
  color: var(--rofiex-black, #000000);
  display: block;
  margin: 0;
  padding: 16px 20px;
  padding-left: 20px;
  background-color: var(--rofiex-white, #fff);
  border-radius: 50px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-left: 70px;
}
.service-sidebar__nav li a::after {
  content: "\e934";
  font-family: "icomoon" !important;
  transition: all 500ms ease;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}
.service-sidebar__nav li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--rofiex-black, #000000);
  z-index: -1;
  transform: scale(0, 1);
  perspective: 400px;
  visibility: hidden;
  transition: transform 500ms ease-in-out, visibility 500ms ease-in-out;
  transform-origin: bottom center;
}
.service-sidebar__nav li.current a, .service-sidebar__nav li:hover a {
  color: var(--rofiex-white, #fff);
}
.service-sidebar__nav li.current a::after, .service-sidebar__nav li:hover a::after {
  background-color: var(--rofiex-white, #fff);
  color: var(--rofiex-base, #FE574F);
  transform: rotate(-45deg);
}
.service-sidebar__nav li.current a::before, .service-sidebar__nav li:hover a::before {
  transform: scale(1, 1);
  visibility: visible;
  transform-origin: left;
}
.service-sidebar__nav li + li {
  margin-top: 16px;
}
.service-sidebar__contact {
  padding: 147px 25px 144px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}
.service-sidebar__contact::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--rofiex-black-rgb, 0, 0, 0), 0.7);
}
.service-sidebar__contact__left-triangle {
  position: absolute;
  z-index: 1;
  left: 20px;
  top: 20px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 41px 47px 0 0;
  border-color: var(--rofiex-base, #FE574F) transparent transparent transparent;
  transform: rotate(0deg);
}
.service-sidebar__contact__right-triangle {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 0 41px 47px;
  border-color: transparent transparent var(--rofiex-base, #FE574F) transparent;
  transform: rotate(0deg);
}
.service-sidebar__contact__icon {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  width: 72px;
  height: 72px;
  background-color: var(--rofiex-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 500ms ease;
  margin-bottom: 36px;
}
.service-sidebar__contact__icon i {
  color: var(--rofiex-base, #FE574F);
  font-size: 36px;
  transition: color 500ms ease, transform 500ms ease;
  transform: scale(1);
}
.service-sidebar__contact:hover .service-sidebar__contact__icon {
  background-color: var(--rofiex-base, #FE574F);
}
.service-sidebar__contact:hover .service-sidebar__contact__icon i {
  transform: scale(0.9);
  color: var(--rofiex-white, #fff);
}
.service-sidebar__contact__number {
  position: relative;
  z-index: 1;
  color: var(--rofiex-white, #fff);
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: -0.9px;
  margin-bottom: 0;
}
.service-sidebar__contact__number span {
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: -0.48px;
  font-weight: 600;
  display: block;
  line-height: 1;
  margin-bottom: 9px;
}
.service-sidebar__contact__number a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-sidebar__contact__number a:hover {
  background-size: 100% 1px;
}
.service-sidebar__contact__number a:hover {
  color: var(--rofiex-base, #FE574F);
}

/*--------------------------------------------------------------
# Sidebar Popup
--------------------------------------------------------------*/
.sidebar-one {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(100%);
  transform-origin: right center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}
.sidebar-one.active {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}
.sidebar-one.active .sidebar-one__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}
.sidebar-one__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--rofiex-black3, #333333);
  opacity: 0.5;
  cursor: url(../images/close.png), auto;
}
.sidebar-one__close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 16px;
  color: var(--rofiex-white, #fff);
  transition: all 0.4s ease;
  cursor: pointer;
}
.sidebar-one__close:hover {
  color: var(--rofiex-base, #FE574F);
}
.sidebar-one__content {
  width: 350px;
  background-color: var(--rofiex-black2, #222222);
  z-index: 10;
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  overflow-y: auto;
  padding-top: 40px;
  padding-bottom: 30px;
  padding-left: 30px;
  padding-right: 30px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  scrollbar-width: none;
}
.sidebar-one__text {
  color: var(--rofiex-gray, #F5F1EF);
  font-weight: 500;
  margin: 35px 0 30px;
}
.sidebar-one__title {
  color: var(--rofiex-white, #fff);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 18px;
}
.sidebar-one__info {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-one__info li {
  position: relative;
  padding: 0 0 0 28px;
  margin-bottom: 10px;
  color: var(--rofiex-gray, #F5F1EF);
}
.sidebar-one__info li span {
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 15px;
  color: var(--rofiex-base, #FE574F);
  line-height: inherit;
}
.sidebar-one__info li a {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  color: inherit;
}
.sidebar-one__info li a:hover {
  background-size: 100% 1px;
}
.sidebar-one__info li a:hover {
  color: var(--rofiex-base, #FE574F);
}
.sidebar-one__social {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 25px 0 40px;
}
.sidebar-one__social a {
  width: 37px;
  height: 37px;
  background-color: RGBA(var(--rofiex-white-rgb, 255, 255, 255), 0.08);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--rofiex-white, #fff);
}
.sidebar-one__social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.sidebar-one__social a:hover {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}
.sidebar-one__social a:hover i {
  animation: iconTranslateY 0.4s forwards;
}
.sidebar-one__newsletter {
  position: relative;
}
.sidebar-one__newsletter input[type=text] {
  width: 100%;
  display: block;
  border: none;
  outline: none;
  height: 60px;
  background-color: RGBA(var(--rofiex-white-rgb, 255, 255, 255), 0.08);
  color: var(--rofiex-gray, #F5F1EF);
  font-size: 16px;
  font-weight: 500;
  padding-left: 30px;
  padding-right: 50px;
  text-transform: capitalize;
  transition: all 500ms ease;
  border-radius: 5px;
}
.sidebar-one__newsletter button[type=submit] {
  background-color: transparent;
  width: auto;
  height: auto;
  border: none;
  outline: none;
  color: var(--rofiex-white, #fff);
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: all 500ms ease;
}
.sidebar-one__newsletter button[type=submit]:hover {
  color: var(--rofiex-base, #FE574F);
}

/*--------------------------------------------------------------
# Blog details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .blog-details {
    padding: 80px 0;
  }
}
.blog-details__image {
  position: relative;
  margin: 0 0 40px;
}
.blog-details__image img {
  max-width: 100%;
  height: auto;
}
.blog-details__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}
.blog-details__meta li {
  font-size: 16px;
  font-weight: 500;
  color: var(--rofiex-text, #636363);
}
.blog-details__meta li i {
  color: var(--rofiex-base, #FE574F);
  margin-right: 10px;
}
.blog-details__meta li a {
  color: inherit;
}
.blog-details__meta li a:hover {
  color: var(--rofiex-base, #FE574F);
}
.blog-details__meta li img {
  margin-right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--rofiex-base, #FE574F);
}
.blog-details__meta .blog-details__meta__tag {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  text-transform: capitalize;
  padding: 7px 25px;
  border-radius: 40px;
}
.blog-details__meta .blog-details__meta__tag:hover {
  background-color: var(--rofiex-black, #000000);
  color: var(--rofiex-white, #fff);
}
.blog-details__title {
  font-size: 22px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}
.blog-details__text {
  font-weight: 500;
  margin: 0 0 15px;
}
@media (min-width: 1200px) {
  .blog-details__text {
    padding-right: 50px;
  }
}
.blog-details__bottom-meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  border-top: 1px solid var(--rofiex-border-color, #DDDDDD);
  border-bottom: 1px solid var(--rofiex-border-color, #DDDDDD);
  padding: 29px 0;
  margin: 63px 0;
}
@media (max-width: 767px) {
  .blog-details__bottom-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.blog-details__bottom-meta__categories, .blog-details__bottom-meta__tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-details__bottom-meta__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 19px;
  color: var(--rofiex-black2, #222222);
  margin-bottom: 0;
  margin-right: 10px;
}
.blog-details__bottom-meta a {
  padding: 4px 19px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 500;
  line-height: 25px;
  background-color: var(--rofiex-gray, #F5F1EF);
  color: var(--rofiex-text, #636363);
}
.blog-details__bottom-meta a:hover {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}
.blog-details__paginations {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .blog-details__paginations {
    grid-template-columns: repeat(2, 1fr);
  }
}
.blog-details__paginations .sidebar__posts__item:not(:last-of-type) {
  border-bottom: 0px solid var(--rofiex-border-color, #e8e3da);
  margin-bottom: 0px;
  padding-bottom: 0px;
}
.blog-details__paginations .sidebar__posts__item {
  background-color: var(--rofiex-gray, #F5F1EF);
  padding: 20px !important;
}
@media (min-width: 1200px) {
  .blog-details__paginations .sidebar__posts__item {
    padding: 30px;
  }
}
.blog-details__paginations .sidebar__posts__item:nth-of-type(2) {
  flex-direction: row-reverse;
  text-align: right;
}
.blog-details__paginations .sidebar__posts__item:nth-of-type(2) .sidebar__posts__image {
  margin-right: 0;
  margin-left: 20px;
}
.blog-details__paginations .sidebar__posts__item:nth-of-type(2) .sidebar__posts__meta {
  flex-direction: row-reverse;
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/
.comments-one {
  margin-top: 55px;
}
.comments-one__title {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 26px;
}
.comments-one__list {
  margin: 0;
  margin-top: 35px;
}
.comments-one__card {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--rofiex-border-color, #DDDDDD);
  position: relative;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .comments-one__card {
    flex-direction: column;
    gap: 25px;
  }
}
.comments-one__card__image {
  width: 89px;
  height: 89px;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 30px;
}
.comments-one__card__image img {
  border-radius: 50%;
}
.comments-one__card__title {
  margin: 0;
  margin-bottom: 10px;
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}
.comments-one__card__text {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  color: var(--rofiex-text, #636363);
  margin-bottom: 20px;
  margin-bottom: 30px;
}
.comments-one__card__date {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  font-family: var(--rofiex-font, "Mulish", sans-serif);
  color: var(--rofiex-base, #FE574F);
  text-transform: none;
  margin-left: 20px;
}
.comments-one__card .rofiex-btn {
  padding: 4px 20px;
  border-radius: 5px;
  font-size: 14px;
}
.comments-one__card .rofiex-btn::after {
  bottom: -23px;
}
.comments-one__card__content {
  position: relative;
}

.comments-form {
  margin-top: 68px;
}
.comments-form__title {
  margin: 0;
  margin-top: -4px;
  margin-bottom: -4px;
  font-size: 30px;
  font-weight: 700;
  line-height: 42px;
}
.comments-form__form {
  margin-top: 30px;
}
.comments-form__input-box {
  position: relative;
  line-height: 1;
  margin: 0 0 30px;
}
.comments-form__input-box textarea,
.comments-form__input-box input[type=text],
.comments-form__input-box input[type=email],
.comments-form__input-box input[type=tel] {
  height: 60px;
  width: 100%;
  border: none;
  border-radius: 6px;
  background-color: var(--rofiex-gray, #F5F1EF);
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 16px;
  color: var(--rofiex-text, #636363);
  text-transform: capitalize;
  font-family: var(--rofiex-font, "Mulish", sans-serif);
  display: block;
  font-weight: 400;
}
.comments-form__input-box textarea {
  height: 190px;
}
.comments-form .rofiex-btn:hover i {
  transform: none;
}

/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/
.product {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .product {
    padding: 80px 0;
  }
}
.product__sidebar {
  position: relative;
}
.product__sidebar--title {
  position: relative;
  font-size: 22px;
  text-transform: capitalize;
  font-weight: bold;
  margin-top: -5px;
}
.product__search {
  position: relative;
  display: block;
  background-color: var(--rofiex-gray, #F5F1EF);
  padding: 15px;
  margin-bottom: 30px;
}
.product__search form {
  border-radius: 0;
  position: relative;
}
.product__search form input[type=text] {
  width: 100%;
  height: 60px;
  background-color: var(--rofiex-white, #fff);
  padding-left: 20px;
  padding-right: 15px;
  font-family: var(--rofiex-font, "Mulish", sans-serif);
  font-size: 16px;
  color: var(--rofiex-text, #636363);
  border: none;
  outline: none;
  font-weight: 500;
  border-radius: 0;
}
.product__search form button[type=submit] {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  padding: 0;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: auto;
  font-size: 20px;
  color: var(--rofiex-base, #FE574F);
  transition: all 400ms ease;
}
.product__search form button[type=submit]:hover {
  color: var(--rofiex-black, #000000);
}
.product__price-ranger {
  background-color: var(--rofiex-gray, #F5F1EF);
  padding: 30px;
  margin-bottom: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product__price-ranger {
    padding: 30px 20px;
  }
}
.product__price-ranger #slider-range {
  margin: 22px 0 0 0px;
  background: var(--rofiex-white, #fff);
  border: none;
  border: 1px solid var(--rofiex-base, #FE574F);
  height: 7px;
  border-radius: 10px;
  position: relative;
}
.product__price-ranger #slider-range .ui-slider-range {
  height: 100%;
  background: var(--rofiex-base, #FE574F);
}
.product__price-ranger #slider-range .ui-slider-handle {
  position: absolute;
  top: -7px;
  background: var(--rofiex-base, #FE574F);
  border: 0;
  height: 18px;
  width: 18px !important;
  border-radius: 50%;
  margin-left: -2px;
  outline: medium none;
  cursor: pointer;
  z-index: 2;
}
.product__price-ranger #slider-range .ui-slider-handle::after {
  width: 8px;
  height: 8px;
  content: "";
  background-color: var(--rofiex-gray, #F5F1EF);
  border-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
}
.product__price-ranger .ranger-min-max-block {
  position: relative;
  display: block;
  margin: 18px 0 0 0px;
}
.product__price-ranger .ranger-min-max-block input[type=text] {
  position: relative;
  display: inline-block;
  color: var(--rofiex-text, #636363);
  font-size: 14px;
  font-weight: 500;
  width: 40px;
  line-height: 30px;
  border: none;
  outline: none;
  font-family: var(--rofiex-font, "Mulish", sans-serif);
  padding: 0;
  text-align: center;
  background-color: transparent;
}
.product__price-ranger .ranger-min-max-block span {
  position: relative;
  display: inline-block;
  color: var(--rofiex-text, #636363);
  font-size: 14px;
  font-weight: 500;
  line-height: 40px;
  left: -2px;
}
.product__price-ranger .ranger-min-max-block input[type=submit] {
  position: relative;
  display: block;
  background-color: var(--rofiex-white, #fff);
  font-family: var(--rofiex-font, "Mulish", sans-serif);
  float: right;
  text-align: center;
  border: none;
  color: var(--rofiex-black, #000000);
  font-size: 10px;
  letter-spacing: var(--rofiex-letter-space, 0.1em);
  font-weight: 600;
  line-height: 38px;
  margin: 0;
  cursor: pointer;
  padding: 0 20px;
  height: 38px;
  border-radius: 0;
  box-shadow: 0px 10px 30px 0px rgba(var(--rofiex-black-rgb, 0, 0, 0), 0.07);
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product__price-ranger .ranger-min-max-block input[type=submit] {
    padding: 0 15px;
  }
}
.product__price-ranger .ranger-min-max-block input[type=submit]:hover {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}
.product__categories {
  background-color: var(--rofiex-gray, #F5F1EF);
  padding: 30px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .product__categories {
    padding: 30px 20px;
  }
}
.product__categories .product__sidebar--title {
  margin-bottom: 22px;
}
.product__categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.product__categories ul li {
  position: relative;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 24px;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--rofiex-text, #636363);
  background-color: var(--rofiex-white, #fff);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  z-index: 1;
  cursor: pointer;
  padding: 9px 20px 11px 42px;
}
.product__categories ul li::before {
  content: "\e934";
  font-family: "icomoon" !important;
  font-weight: 400;
  transition: all 500ms ease;
  font-size: 14px;
  color: currentColor;
  position: absolute;
  left: 18px;
  top: 1px;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
}
.product__categories ul li a {
  color: inherit;
  transition: all 0.3s ease;
}
.product__categories ul li:hover, .product__categories ul li.active {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}
.product__categories ul li + li {
  margin-top: 10px;
}
.product__info-top {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .product__info-top {
    align-items: flex-start;
    flex-direction: column;
  }
}
.product__showing-text {
  margin: 0;
  font-weight: 500;
}
.product__showing-sort {
  margin: 0;
  font-size: 16px;
}
.product__showing-sort .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 210px !important;
  font-family: var(--rofiex-font, "Mulish", sans-serif);
}
.product__showing-sort .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.product__showing-sort .bootstrap-select .dropdown-menu {
  border: none;
}
.product__showing-sort .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 50px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: var(--rofiex-gray, #F5F1EF) !important;
  margin: 0;
  padding: 0;
  padding-left: 20px;
  padding-right: 20px;
  color: var(--rofiex-text, #636363) !important;
  font-size: 16px;
  line-height: 50px;
  font-weight: 400;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}
.product__showing-sort .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 2px;
  bottom: 0;
  right: 20px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-size: 14px;
  color: var(--rofiex-base, #FE574F);
  display: flex;
  align-items: center;
}
.product__showing-sort .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--rofiex-border-color, #DDDDDD);
}
.product__showing-sort .bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 400;
  padding: 12px 20px;
  color: var(--rofiex-text, #636363);
  text-transform: capitalize;
  background-color: var(--rofiex-gray, #F5F1EF);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.product__showing-sort .bootstrap-select .dropdown-menu > li:hover > a,
.product__showing-sort .bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
  border-color: var(--rofiex-base, #FE574F);
}

.product__item {
  position: relative;
  background-color: var(--rofiex-white, #fff);
  border: 1px solid var(--rofiex-border-color, #DDDDDD);
  overflow: hidden;
  transition: all 500ms ease;
}
.product__item:hover {
  border-color: var(--rofiex-base, #FE574F);
}
.product__item__img {
  background-color: var(--rofiex-white, #fff);
  position: relative;
  text-align: center;
  padding: 29px 15px 0;
}
.product__item__img::after {
  background: rgba(var(--rofiex-white-rgb, 255, 255, 255), 0.3);
  bottom: 0;
  content: "";
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
  transition: all 400ms linear;
}
.product__item__img img {
  max-width: 100%;
  width: auto !important;
  height: auto;
  margin: auto;
  mix-blend-mode: multiply;
  transition: all 500ms ease;
  transform: scale(1);
}
.product__item:hover .product__item__img::after {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 400ms linear;
}
.product__item:hover .product__item__img img {
  transform: scale(1.05);
}
.product__item__btn {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 2;
}
.product__item__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: var(--rofiex-gray, #F5F1EF);
  border-radius: 50%;
  color: var(--rofiex-black, #000000);
  font-size: 13px;
  visibility: hidden;
  opacity: 0;
}
.product__item__btn a:hover {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}
.product__item__btn a:nth-child(1) {
  transition: transform 350ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transform: translate3d(30px, 0, 0);
}
.product__item__btn a:nth-child(2) {
  transition: transform 450ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transform: translate3d(30px, 0, 0);
}
.product__item__btn a:nth-child(3) {
  transition: transform 550ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transform: translate3d(30px, 0, 0);
}
.product__item__btn a:nth-child(4) {
  transition: transform 650ms cubic-bezier(0.445, 0.05, 0.55, 0.95), opacity ease 300ms, visibility ease 300ms, background ease 300ms, color ease 300ms, border ease 300ms;
  transform: translate3d(30px, 0, 0);
}
.product__item__btn a + a {
  margin-top: 10px;
}
.product__item:hover .product__item__btn a {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
.product__item__content {
  position: relative;
  text-align: center;
  padding: 27px 20px 45px;
}
.product__item__title {
  font-size: 22px;
  text-transform: capitalize;
  font-weight: 700;
  margin: 0 0 12px;
}
.product__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.product__item__title a:hover {
  background-size: 100% 1px;
}
.product__item__title a:hover {
  color: var(--rofiex-base, #FE574F);
}
.product__item__price {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--rofiex-text, #636363);
  line-height: 1em;
  font-weight: 500;
  margin-bottom: 17px;
}
.product__item__ratings {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: var(--rofiex-base, #FE574F);
  letter-spacing: 7px;
  margin-bottom: 27px;
}
.product__item__link {
  border-radius: 5px;
  background-color: var(--rofiex-gray, #F5F1EF);
  padding: 8px 25px;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--rofiex-black, #000000);
}
.product__item__link:hover {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}

.product-one {
  position: relative;
}
.product-one__title {
  font-size: 24px;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 55px;
  position: relative;
}
@media (max-width: 767px) {
  .product-one__title {
    margin-bottom: 35px;
  }
}
.product-one__title::after {
  position: absolute;
  right: 129px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 490px);
  height: 1px;
  content: "";
  background-color: var(--rofiex-border-color, #DDDDDD);
}
@media (max-width: 991px) {
  .product-one__title::after {
    width: calc(100% - 290px);
    right: 0;
  }
}
.product-one__categories {
  position: relative;
  background-color: var(--rofiex-black, #000000);
  border-radius: 20px;
  overflow: hidden;
}
.product-one__categories__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.5;
}
.product-one__categories__list {
  margin: 0;
  padding: 25px 0;
  list-style: none;
  position: relative;
}
.product-one__categories__list li {
  padding: 0 30px;
  font-size: 16px;
  font-weight: 600;
  color: var(--rofiex-base, #FE574F);
  letter-spacing: -0.32px;
  text-transform: capitalize;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-one__categories__list li a {
  color: var(--rofiex-white, #fff);
}
.product-one__categories__list li a:hover {
  color: var(--rofiex-base, #FE574F);
}
.product-one__categories__list li + li {
  border-top: 1px solid rgba(var(--rofiex-border-color-rgb, 221, 221, 221), 0.2);
  padding-top: 14px;
  margin-top: 14px;
}
.product-one .rofiex-owl__carousel--basic-nav.owl-carousel .owl-nav {
  position: absolute;
  right: 0;
  top: -89px;
  margin: 0;
  gap: 15px;
}
@media (max-width: 991px) {
  .product-one .rofiex-owl__carousel--basic-nav.owl-carousel .owl-nav {
    position: relative;
    top: 0;
    margin: 40px 0 0;
  }
}
.product-one .rofiex-owl__carousel--basic-nav.owl-carousel .owl-nav button {
  background-color: transparent;
  border: 1px solid rgba(var(--rofiex-border-color-rgb, 221, 221, 221), 0.75);
  border-radius: 50%;
  color: var(--rofiex-base, #FE574F);
  font-size: 16px;
}
.product-one .rofiex-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
  border-color: var(--rofiex-base, #FE574F);
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}

.product-two {
  position: relative;
  padding: 0 0 60px;
}
.product-two__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 40px;
}
@media (max-width: 767px) {
  .product-two__top {
    margin: 0 0 30px;
  }
}
.product-two__top__title {
  font-size: 24px;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0;
}
.product-two__top__rm {
  position: relative;
  z-index: 1;
  font-weight: 500;
  color: var(--rofiex-black, #000000);
  font-size: 14px;
  line-height: 20px;
  text-transform: capitalize;
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.product-two__top__rm:hover {
  background-size: 100% 1px;
}
.product-two__top__rm i {
  color: var(--rofiex-base, #FE574F);
  display: inline-block;
  margin-left: 3px;
  position: relative;
  top: 3px;
  width: 12px;
  font-size: 20px;
}
.product-two__top__rm:hover {
  color: var(--rofiex-base, #FE574F);
  text-shadow: 0 0 1px currentColor;
}
.product-two__filter {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -65px auto 40px;
  padding: 0;
}
@media (max-width: 991px) {
  .product-two__filter {
    padding-left: 160px;
  }
}
@media (max-width: 767px) {
  .product-two__filter {
    padding: 0;
    flex-wrap: wrap;
    margin: 0 0 35px;
    justify-content: flex-start;
  }
}
.product-two__filter__list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 0;
  padding: 0 0 9px;
  border-bottom: 1px solid var(--rofiex-border-color, #DDDDDD);
}
@media (max-width: 991px) {
  .product-two__filter__list {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .product-two__filter__list {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.product-two__filter__list li {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: var(--rofiex-black, #000000);
  text-transform: capitalize;
  cursor: pointer;
  transition: all 400ms linear;
}
.product-two__filter__list li::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  margin: 0 auto;
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--rofiex-base, #FE574F);
  transition: all 400ms linear;
}
.product-two__filter__list li:hover, .product-two__filter__list li.active {
  color: var(--rofiex-base, #FE574F);
}
.product-two__filter__list li:hover::after, .product-two__filter__list li.active::after {
  width: 100%;
}

.product-three {
  position: relative;
  padding: 60px 0;
}
.product-three__title {
  font-size: 24px;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  margin: 0 0 34px;
  position: relative;
}
.product-three__title::before {
  position: absolute;
  height: 1px;
  width: calc(50% - 118px);
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  content: "";
  background-color: var(--rofiex-border-color, #DDDDDD);
}
.product-three__title::after {
  position: absolute;
  height: 1px;
  width: calc(50% - 118px);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  content: "";
  background-color: var(--rofiex-border-color, #DDDDDD);
}
.product-three__item {
  position: relative;
  background-color: var(--rofiex-gray, #F5F1EF);
  border-radius: 10px;
  min-height: 148px;
  padding: 20px 150px 15px 20px;
}
.product-three__item__img {
  background-color: var(--rofiex-gray, #F5F1EF);
  position: absolute;
  overflow: hidden;
  right: 0;
  top: 0;
  padding: 0;
}
.product-three__item__img img {
  max-width: 100%;
  height: auto;
  mix-blend-mode: multiply;
  transition: all 500ms ease;
}
.product-three__item:hover .product-three__item__img img {
  transform: scale(1.03);
}
.product-three__item__ratings {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--rofiex-base, #FE574F);
  letter-spacing: 7px;
  margin-bottom: 14px;
}
.product-three__item__title {
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 14px;
}
.product-three__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.product-three__item__title a:hover {
  background-size: 100% 1px;
}
.product-three__item__title a:hover {
  color: var(--rofiex-base, #FE574F);
}
.product-three__item__text {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 5px;
}
.product-three__item__price {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--rofiex-black, #000000);
  font-weight: 500;
  margin: 0;
}

.product-four {
  position: relative;
}
.product-four__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 35px;
}
@media (max-width: 767px) {
  .product-four__top {
    margin: 0 0 25px;
    flex-wrap: wrap;
    gap: 20px;
  }
}
.product-four__top__title {
  font-size: 24px;
  letter-spacing: -0.48px;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0;
}
.product-four__top__rm {
  position: relative;
  z-index: 1;
  font-weight: 500;
  color: var(--rofiex-black, #000000);
  font-size: 14px;
  line-height: 20px;
  text-transform: capitalize;
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.product-four__top__rm:hover {
  background-size: 100% 1px;
}
.product-four__top__rm i {
  color: var(--rofiex-base, #FE574F);
  display: inline-block;
  margin-left: 3px;
  position: relative;
  top: 3px;
  width: 12px;
  font-size: 20px;
}
.product-four__top__rm:hover {
  color: var(--rofiex-base, #FE574F);
  text-shadow: 0 0 1px currentColor;
}
.product-four__carousel {
  position: relative;
  padding: 0 75px;
}
@media (max-width: 1499px) {
  .product-four__carousel {
    padding: 0 30px;
  }
}
@media (max-width: 1299px) {
  .product-four__carousel {
    padding: 0 20px;
  }
}
.product-four .product__item__price {
  margin: 0;
}

/*--------------------------------------------------------------
# Shop details
--------------------------------------------------------------*/
.product-details {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .product-details {
    padding: 80px 0;
  }
}
.product-details__img {
  background-color: var(--rofiex-white, #fff);
  border: 1px solid var(--rofiex-border-color, #DDDDDD);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 570px;
}
@media (max-width: 767px) {
  .product-details__img {
    min-height: 420px;
  }
}
.product-details__img img {
  max-width: 100%;
  height: auto;
}
.product-details__img-search {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 2;
  line-height: 1;
}
.product-details__img-search a {
  display: inline-block;
  font-size: 21px;
  color: var(--rofiex-black, #000000);
  transition: all 500ms ease;
}
.product-details__img-search a:hover {
  color: var(--rofiex-base, #FE574F);
}
.product-details__content {
  position: relative;
  margin: 0 0 0;
}
@media (max-width: 991px) {
  .product-details__content {
    margin: 50px 0 0;
  }
}
.product-details__top {
  display: flex;
  align-items: baseline;
  gap: 145px;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  margin-bottom: 18px;
}
@media (max-width: 767px) {
  .product-details__top {
    flex-direction: column;
    gap: 8px;
  }
}
.product-details__title {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}
.product-details__price {
  font-size: 24px;
  color: var(--rofiex-base, #FE574F);
  font-weight: 700;
  margin: 0;
}
.product-details__review {
  position: relative;
  display: flex;
  align-items: center;
  letter-spacing: 9px;
  font-size: 16px;
  color: var(--rofiex-base, #FE574F);
}
.product-details__review a {
  display: inline-block;
  color: var(--rofiex-text, #636363);
  font-size: 16px;
  text-transform: capitalize;
  letter-spacing: 0;
  margin-left: 1px;
  font-weight: 400;
  transition: all 500ms ease;
}
.product-details__review a:hover {
  color: var(--rofiex-base, #FE574F);
}
.product-details__divider {
  width: 100%;
  height: 1px;
  background-color: var(--rofiex-border-color, #DDDDDD);
  margin: 25px 0 21px;
}
.product-details__excerpt {
  margin: 0;
  line-height: 30px;
  margin: 0 0 31px;
}
.product-details__quantity {
  position: relative;
  display: flex;
  align-items: center;
  margin: 32px 0 40px;
}
.product-details__quantity-title {
  margin: 0;
  font-size: 16px;
  line-height: 1;
  text-transform: uppercase;
  margin-right: 20px;
  font-weight: bold;
}
.product-details__quantity .quantity-box {
  position: relative;
  width: 98px;
  height: 53px;
}
.product-details__quantity .quantity-box input {
  width: 98px;
  height: 53px;
  border: 1px solid var(--rofiex-border-color, #DDDDDD);
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
  font-family: var(--rofiex-font, "Mulish", sans-serif);
  color: var(--rofiex-base, #FE574F);
  padding-left: 30px;
  outline: none;
  font-size: 16px;
  font-weight: 700;
  background-color: transparent;
}
.product-details__quantity .quantity-box button {
  width: 24px;
  height: 24px;
  color: var(--rofiex-text, #636363);
  font-size: 8px;
  position: absolute;
  top: 1px;
  right: 1px;
  background-color: transparent;
  border: none;
  border-left: 1px solid var(--rofiex-border-color, #DDDDDD);
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: all 500ms ease;
}
.product-details__quantity .quantity-box button.sub {
  bottom: 1px;
  top: auto;
  border-top: 1px solid var(--rofiex-border-color, #DDDDDD);
}
.product-details__quantity .quantity-box button:hover {
  color: var(--rofiex-base, #FE574F);
}
.product-details__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.product-details__buttons .rofiex-btn {
  border-radius: 0;
  padding: 15.4px 32px;
  font-size: 15px;
  font-weight: 700;
}
.product-details__buttons .rofiex-btn i {
  font-size: 15px;
  margin: 0 0 0 12px;
  padding-left: 9px;
  border-left: 1px solid rgba(var(--rofiex-white-rgb, 255, 255, 255), 0.2);
  transform: none !important;
}
.product-details__buttons .rofiex-btn.wishlist {
  background-color: var(--rofiex-black, #000000);
}
.product-details__buttons .rofiex-btn.wishlist::after, .product-details__buttons .rofiex-btn.wishlist:hover {
  background-color: var(--rofiex-base, #FE574F);
}
.product-details__socials {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
.product-details__socials__title {
  font-size: 16px;
  text-transform: capitalize;
  margin: 0;
  font-weight: 500;
  margin-right: 10px;
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .product-details__socials__title {
    flex: 0 0 auto;
  }
}
.product-details__socials a {
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 1px solid var(--rofiex-border-color, #DDDDDD);
  font-size: 14px;
  color: var(--rofiex-text, #636363);
  transition: all 500ms ease;
  border-radius: 0;
}
.product-details__socials a:hover {
  background-color: var(--rofiex-base, #FE574F);
  border-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}
.product-details__description {
  position: relative;
  margin: 54px 0 0;
}
.product-details__description__title {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 24px;
  font-weight: bold;
}
.product-details__description__lists {
  margin: 32px 0;
  padding: 0;
}
.product-details__description__lists li {
  position: relative;
  padding: 0 0 0 30px;
  font-weight: 700;
  color: var(--rofiex-black, #000000);
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .product-details__description__lists li {
    min-width: 50%;
  }
}
.product-details__description__lists li span {
  position: absolute;
  left: 0;
  top: 6px;
  transition: all 0.3s ease-in;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 10px;
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 500ms ease;
}
.product-details__description__lists li:hover span {
  background-color: var(--rofiex-base, #FE574F);
}
.product-details__description__text {
  margin-bottom: 30px;
  font-weight: 500;
}
.product-details__comment {
  border-top: 1px solid var(--rofiex-border-color, #DDDDDD);
  margin: 32px 0 0;
  padding: 54px 0 0;
  position: relative;
}
.product-details__review-title {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 44px;
  font-weight: bold;
}
.product-details__comment-box {
  position: relative;
  padding: 5px 0 32px 182px;
  margin-bottom: 30px;
  min-height: 166px;
  border-bottom: 1px solid var(--rofiex-border-color, #DDDDDD);
}
@media (max-width: 767px) {
  .product-details__comment-box {
    padding-left: 0;
  }
}
.product-details__comment-box__thumb {
  width: 150px;
  height: 150px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  margin: 0;
  border: none;
}
@media (max-width: 767px) {
  .product-details__comment-box__thumb {
    position: relative;
    margin: 0 0 20px;
  }
}
.product-details__comment-box__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.product-details__comment-box__meta {
  font-size: 22px;
  line-height: 30px;
  text-transform: capitalize;
  margin: 0 0 9px;
  font-weight: bold;
  color: var(--rofiex-black, #000000);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.product-details__comment-box__date {
  font-size: 16px;
  line-height: 26px;
  display: block;
  text-transform: inherit;
  font-family: var(--rofiex-font, "Mulish", sans-serif);
  color: var(--rofiex-base, #FE574F);
  font-weight: 500;
  letter-spacing: 0;
  margin: 3px 0 0 0;
  position: relative;
}
.product-details__comment-box__date::before {
  position: relative;
  display: inline-block;
  width: 19px;
  height: 1px;
  background-color: currentColor;
  content: "";
  margin: 0 15px;
  top: -4px;
}
.product-details__comment-box__text {
  font-weight: 500;
  margin: 0;
}
.product-details__comment-box__ratings {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  letter-spacing: 9px;
  font-size: 16px;
  color: var(--rofiex-base, #FE574F);
}
@media (max-width: 991px) {
  .product-details__comment-box__ratings {
    position: relative;
    top: 0;
    margin: 15px 0 22px;
  }
}
.product-details__form {
  position: relative;
  margin: 55px 0 0;
}
.product-details__form .row {
  --bs-gutter-x: 20px;
}
.product-details__form-title {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 5px;
  font-weight: bold;
}
.product-details__form-ratings {
  display: flex;
  align-items: center;
  letter-spacing: 9px;
  font-size: 16px;
  color: var(--rofiex-base, #FE574F);
  margin: 0 0 30px;
}
.product-details__form-ratings__label {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  color: var(--rofiex-text, #636363);
  margin: 0 17px 0 0;
}
.product-details__form__form {
  margin-top: 0;
}
.product-details__form__form input[type=text],
.product-details__form__form input[type=tel],
.product-details__form__form input[type=email],
.product-details__form__form textarea {
  height: 60px;
  font-weight: 500;
}
.product-details__form__form textarea {
  height: 190px;
  padding-top: 20px;
}
.product-details__form__form .rofiex-btn:hover i {
  transform: none;
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/
.cart-page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .cart-page {
    padding: 80px 0;
  }
}
.cart-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 1199px) {
  .cart-page .table-responsive {
    margin-bottom: 30px;
  }
}
.cart-page__table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 31px;
}
@media (max-width: 1199px) {
  .cart-page__table {
    min-width: 1170px;
  }
}
.cart-page__table thead tr th {
  color: var(--rofiex-black, #000000);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding: 0 0 24px;
  text-transform: capitalize;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  border: none;
  background-color: transparent;
  border-bottom: 1px solid var(--rofiex-border-color, #DDDDDD) !important;
  box-shadow: none;
}
.cart-page__table thead tr th:last-child {
  text-align: right;
}
.cart-page__table tbody tr td {
  font-size: 16px;
  font-weight: 500;
  color: var(--rofiex-text, #636363);
  vertical-align: middle;
  border: none;
  box-shadow: none;
  background-color: transparent;
  border-top: 1px solid var(--rofiex-border-color, #DDDDDD);
  border-bottom: 1px solid var(--rofiex-border-color, #DDDDDD);
  padding: 30px 0;
  letter-spacing: 0;
}
.cart-page__table tbody tr td:last-child {
  text-align: right;
}
.cart-page__table__meta {
  display: flex;
  align-items: center;
}
.cart-page__table__meta-img {
  width: 100px;
  height: 100px;
  background-color: transparent;
  border: 1px solid var(--rofiex-border-color, #DDDDDD);
  padding: 5px;
  margin-right: 21px;
  border-radius: 0;
}
.cart-page__table__meta-img img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.cart-page__table__meta-title {
  font-size: 18px;
  text-transform: capitalize;
  margin: 0;
  font-weight: 700;
  color: var(--rofiex-black, #000000);
}
.cart-page__table__meta-title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.cart-page__table__meta-title a:hover {
  background-size: 100% 1px;
}
.cart-page__table__meta-title a:hover {
  color: var(--rofiex-base, #FE574F);
}
.cart-page__table__remove {
  display: block;
  color: var(--rofiex-text, #636363);
  font-size: 14px;
}
.cart-page__table__remove:hover {
  color: var(--rofiex-base, #FE574F);
}
.cart-page .product-details__quantity {
  margin: 0;
}
.cart-page__coupone-form {
  position: relative;
  width: 100%;
}
.cart-page__coupone-form__inner {
  position: relative;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cart-page__coupone-form__inner {
    display: block;
  }
}
.cart-page__coupone-form label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--rofiex-black, #000000);
  margin: 0 0 8px;
}
.cart-page__coupone-form input[type=text] {
  height: 57px;
  width: 260px;
  border: 1px solid var(--rofiex-border-color, #DDDDDD);
  background-color: transparent;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: var(--rofiex-text, #636363);
  display: block;
  font-weight: 500;
  margin-right: 15px;
}
@media (max-width: 767px) {
  .cart-page__coupone-form input[type=text] {
    width: 100%;
    margin: 0 0 10px;
  }
}
.cart-page__coupone-form .rofiex-btn {
  border-radius: 0;
}
.cart-page__coupone-form .rofiex-btn.update {
  margin-left: auto;
  background-color: transparent;
  border: 1px solid var(--rofiex-base, #FE574F);
  color: var(--rofiex-base, #FE574F);
}
.cart-page__coupone-form .rofiex-btn.update:hover {
  color: var(--rofiex-white, #fff);
}
.cart-page__coupone-form .rofiex-btn.update:after {
  background-color: var(--rofiex-base, #FE574F);
}
.cart-page__cart-total {
  position: relative;
  margin: 60px 0 0 auto;
  max-width: 315px;
}
.cart-page__cart-total__title {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  border-bottom: 1px solid var(--rofiex-border-color, #DDDDDD);
  margin: 0 0 33px;
  padding: 0 0 20px;
}
.cart-page__cart-total__list {
  position: relative;
  margin: 0 0 24px;
  padding: 0;
}
.cart-page__cart-total__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  color: var(--rofiex-black, #000000);
  text-transform: capitalize;
  font-weight: 700;
  margin: 0 0 12px;
}
.cart-page__cart-total__list li.shipping {
  display: block;
  font-size: 16px;
}
.cart-page__cart-total__list li.shipping p {
  line-height: 26px;
  font-weight: 400;
  color: var(--rofiex-text, #636363);
  font-size: 16px;
  margin: 8px 0 0;
}
.cart-page__cart-total__list li:last-child {
  padding-top: 17px;
  margin-top: 18px;
  border-top: 1px solid var(--rofiex-border-color, #DDDDDD);
}
.cart-page__buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.cart-page__buttons .rofiex-btn {
  border-radius: 0;
}

/*--------------------------------------------------------------
# Wishlist
--------------------------------------------------------------*/
.wishlist-page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .wishlist-page {
    padding: 80px 0;
  }
}
.wishlist-page .table-responsive {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
@media (max-width: 1199px) {
  .wishlist-page .table-responsive {
    margin-bottom: 30px;
  }
}
.wishlist-page__table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 31px;
}
@media (max-width: 1199px) {
  .wishlist-page__table {
    min-width: 1170px;
  }
}
.wishlist-page__table thead tr th {
  color: var(--rofiex-black, #000000);
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  padding: 0 0 24px;
  text-transform: capitalize;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  border: none;
  background-color: transparent;
  border-bottom: 1px solid var(--rofiex-border-color, #DDDDDD) !important;
  box-shadow: none;
}
.wishlist-page__table thead tr th:last-child {
  text-align: right;
}
.wishlist-page__table tbody tr td {
  font-size: 16px;
  font-weight: 500;
  color: var(--rofiex-text, #636363);
  vertical-align: middle;
  border: none;
  box-shadow: none;
  background-color: transparent;
  border-top: 1px solid var(--rofiex-border-color, #DDDDDD);
  border-bottom: 1px solid var(--rofiex-border-color, #DDDDDD);
  padding: 30px 0;
  letter-spacing: 0;
}
.wishlist-page__table tbody tr td:last-child {
  text-align: right;
}
.wishlist-page__table__meta {
  display: flex;
  align-items: center;
}
.wishlist-page__table__meta-img {
  width: 100px;
  height: 100px;
  background-color: transparent;
  border: 1px solid var(--rofiex-border-color, #DDDDDD);
  padding: 5px;
  margin-right: 21px;
  border-radius: 0;
}
.wishlist-page__table__meta-img img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.wishlist-page__table__meta-title {
  font-size: 18px;
  text-transform: capitalize;
  margin: 0;
  font-weight: 700;
  color: var(--rofiex-black, #000000);
}
.wishlist-page__table__meta-title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.wishlist-page__table__meta-title a:hover {
  background-size: 100% 1px;
}
.wishlist-page__table__meta-title a:hover {
  color: var(--rofiex-base, #FE574F);
}
.wishlist-page__table__remove {
  display: block;
  color: var(--rofiex-text, #636363);
  font-size: 14px;
}
.wishlist-page__table__remove:hover {
  color: var(--rofiex-base, #FE574F);
}

/*--------------------------------------------------------------
# Checkout
--------------------------------------------------------------*/
.checkout-page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .checkout-page {
    padding: 80px 0;
  }
}
.checkout-page .bs-gutter-x-20 {
  --bs-gutter-x: 30px;
}
.checkout-page__billing-address {
  position: relative;
}
.checkout-page__billing-address__title {
  font-size: 22px;
  text-transform: capitalize;
  margin: 0 0 41px;
  font-weight: bold;
}
.checkout-page__shipping-address {
  position: relative;
  margin: 54px 0 0;
}
.checkout-page__shipping-address__title {
  font-size: 22px;
  text-transform: capitalize;
  margin: 0 0 21px;
  font-weight: 700;
}
.checkout-page__shipping-address__title input[type=checkbox] {
  display: none;
}
.checkout-page__shipping-address__title label {
  position: relative;
  display: inline-block;
  padding-right: 29px;
  cursor: pointer;
}
.checkout-page__shipping-address__title label span:before {
  position: absolute;
  top: 0;
  left: 5px;
  line-height: 20px;
  display: inline-block;
  color: var(--rofiex-white, #fff);
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 8px;
  font-weight: 900;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.checkout-page__shipping-address__title input[type=checkbox] + label span {
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 19px;
  height: 19px;
  background-color: var(--rofiex-base, #FE574F);
  border-radius: 50%;
  border: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.checkout-page__shipping-address__title input[type=checkbox]:checked + label span:before {
  opacity: 1;
}
.checkout-page__input-box {
  position: relative;
  line-height: 1;
  margin: 0 0 20px;
}
.checkout-page__input-box label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: capitalize;
  color: var(--rofiex-black, #000000);
  cursor: pointer;
  margin: 0 0 18px;
}
.checkout-page__input-box input[type=text],
.checkout-page__input-box input[type=email],
.checkout-page__input-box input[type=tel] {
  height: 60px;
  width: 100%;
  border: none;
  background-color: var(--rofiex-gray, #F5F1EF);
  padding-left: 30px;
  padding-right: 20px;
  outline: none;
  font-size: 16px;
  color: var(--rofiex-text, #636363);
  text-transform: capitalize;
  font-family: var(--rofiex-font, "Mulish", sans-serif);
  display: block;
  font-weight: 500;
}
.checkout-page__input-box .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  position: relative;
  display: block;
  width: 100% !important;
  font-family: var(--rofiex-font, "Mulish", sans-serif);
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle::after {
  display: none;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle {
  position: relative;
  height: 60px;
  outline: none !important;
  border-radius: 0;
  border: 0;
  background-color: var(--rofiex-gray, #F5F1EF) !important;
  margin: 0;
  padding: 0;
  padding-left: 30px;
  padding-right: 20px;
  color: var(--rofiex-text, #636363) !important;
  font-size: 16px;
  line-height: 60px;
  text-transform: capitalize;
  font-weight: 500;
  box-shadow: none !important;
  background-repeat: no-repeat;
  background-size: 14px 12px;
  background-position: right 25.75px center;
}
.checkout-page__input-box .bootstrap-select > .dropdown-toggle:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  content: "\f078";
  font-size: 14px;
  color: var(--rofiex-base, #FE574F);
  display: flex;
  align-items: center;
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li + li > a {
  border-top: 1px solid var(--rofiex-border-color, #DDDDDD);
}
.checkout-page__input-box .bootstrap-select .dropdown-menu {
  border: none;
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li > a {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 20px;
  color: var(--rofiex-text, #636363);
  text-transform: capitalize;
  background-color: var(--rofiex-gray, #F5F1EF);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.checkout-page__input-box .bootstrap-select .dropdown-menu > li:hover > a,
.checkout-page__input-box .bootstrap-select .dropdown-menu > li.selected > a {
  background: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
  border-color: var(--rofiex-base, #FE574F);
}
.checkout-page__input-box textarea {
  font-size: 16px;
  font-weight: 500;
  color: var(--rofiex-text, #636363);
  height: 177px;
  width: 100%;
  background-color: var(--rofiex-gray, #F5F1EF);
  font-family: var(--rofiex-font, "Mulish", sans-serif);
  padding: 20px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
}
.checkout-page__check-box {
  position: relative;
  display: block;
  margin-top: -6px;
}
.checkout-page__check-box input[type=checkbox] {
  display: none;
}
.checkout-page__check-box label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--rofiex-text, #636363);
  font-size: 15px;
  line-height: 24px;
  text-transform: none;
  cursor: pointer;
}
.checkout-page__check-box label span:before {
  position: absolute;
  top: 0;
  left: 5px;
  line-height: 20px;
  display: inline-block;
  color: var(--rofiex-white, #fff);
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-size: 8px;
  font-weight: 900;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  opacity: 0;
}
.checkout-page__check-box input[type=checkbox] + label span {
  position: absolute;
  top: 4px;
  left: 0;
  width: 19px;
  height: 19px;
  background-color: var(--rofiex-base, #FE574F);
  border-radius: 50%;
  border: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}
.checkout-page__check-box input[type=checkbox]:checked + label span:before {
  opacity: 1;
}
.checkout-page__your-order {
  position: relative;
  margin: 40px 0 0;
}
.checkout-page__your-order__title {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: bold;
}
.checkout-page__your-order .rofiex-btn {
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  margin-top: 30px;
}
.checkout-page__order-table {
  position: relative;
  width: 100%;
  border: none;
  margin: 0 0 0;
}
.checkout-page__order-table thead tr th {
  font-size: 16px;
  color: var(--rofiex-black, #000000);
  text-transform: capitalize;
  font-weight: 700;
  margin: 0;
  padding: 15.5px 0;
  border: none;
  border-top: 1px solid var(--rofiex-border-color, #DDDDDD);
  border-bottom: 1px solid var(--rofiex-border-color, #DDDDDD);
}
.checkout-page__order-table thead tr th:last-child {
  text-align: right;
}
.checkout-page__order-table tbody tr td {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--rofiex-text, #636363);
  margin: 0;
  padding: 0 0 24px;
  border: none;
}
.checkout-page__order-table tbody tr td:last-child {
  text-align: right;
}
.checkout-page__order-table tbody tr:first-child td {
  padding-top: 25px;
}
.checkout-page__order-table tbody tr:last-child td {
  padding-bottom: 0;
  padding-top: 24px;
  font-weight: 700;
  color: var(--rofiex-black, #000000);
  border-top: 1px solid var(--rofiex-border-color, #DDDDDD);
}
.checkout-page__payment {
  background-color: var(--rofiex-gray, #F5F1EF);
  padding: 30px 30px;
  min-height: 295px;
  margin-top: 6px;
}
@media (max-width: 991px) {
  .checkout-page__payment {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .checkout-page__payment {
    padding-left: 25px;
    padding-right: 25px;
  }
}
.checkout-page__payment__item {
  position: relative;
}
.checkout-page__payment__title {
  display: flex;
  font-size: 16px;
  text-transform: capitalize;
  margin: 0;
  align-items: center;
  margin-bottom: 15px;
  cursor: pointer;
  font-weight: bold;
  color: var(--rofiex-black, #000000);
}
.checkout-page__payment__title::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: transparent;
  border: 1px solid var(--rofiex-text, #636363);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 14px;
  position: relative;
  top: 1px;
  transition: all 500ms ease;
}
.checkout-page__payment__title::after {
  position: absolute;
  left: 7px;
  top: 8px;
  width: 6px;
  height: 6px;
  content: "";
  background-color: var(--rofiex-text, #636363);
  border-radius: 50%;
  transition: all 500ms ease;
}
.checkout-page__payment__item--active .checkout-page__payment__title::before {
  border-color: var(--rofiex-base, #FE574F);
}
.checkout-page__payment__item--active .checkout-page__payment__title::after {
  background-color: var(--rofiex-base, #FE574F);
}
.checkout-page__payment__content {
  margin-left: 34px;
  margin-bottom: 30px;
  padding-right: 2px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Login
--------------------------------------------------------------*/
.login-page {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .login-page {
    padding: 80px 0;
  }
}
.login-page__image {
  position: relative;
}
@media (max-width: 991px) {
  .login-page__image {
    margin-bottom: 45px;
  }
}
.login-page__image img {
  width: 100%;
  height: auto;
}
.login-page__wrap {
  position: relative;
  background-color: var(--rofiex-gray, #F5F1EF);
  border-radius: 0;
  padding: 55px 80px 50px;
}
@media (min-width: 991px) and (max-width: 1199px) {
  .login-page__wrap {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .login-page__wrap {
    padding: 40px 25px;
  }
}
.login-page__wrap__title {
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 40px 0 25px;
}
.login-page__form {
  position: relative;
  display: block;
}
.login-page__form-input-box {
  position: relative;
  display: block;
  margin-bottom: 18px;
}
.login-page__form-input-box input[type=text],
.login-page__form-input-box input[type=email],
.login-page__form-input-box input[type=password] {
  height: 48px;
  width: 100%;
  border: 0.5px solid rgba(var(--rofiex-border-color-rgb, 221, 221, 221), 0.5);
  border-radius: 0;
  background-color: var(--rofiex-white, #fff);
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 15px;
  color: var(--rofiex-text, #636363);
  display: block;
  font-weight: 400;
}
.login-page__form-input-box label {
  display: block;
  line-height: 1;
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  color: var(--rofiex-black, #000000);
  letter-spacing: 0.3px;
  margin: 0 0 7px 16px;
}
.login-page__form-input-box__icon {
  position: absolute;
  right: 15px;
  bottom: 13px;
  color: var(--rofiex-text, #636363);
  font-size: 12px;
}
.login-page__form-check-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 0 0 29px;
}
.login-page__checked-box {
  position: relative;
}
.login-page__checked-box label {
  position: relative;
  display: inline-block;
  padding-left: 50px;
  margin-right: 0px;
  margin-bottom: 0;
  color: var(--rofiex-text, #636363);
  font-size: 14px;
  font-weight: 400;
  text-transform: none;
  cursor: pointer;
}
.login-page__checked-box label span:before {
  position: absolute;
  top: 2px;
  left: 2px;
  display: block;
  content: "";
  width: 16px;
  height: 16px;
  background: var(--rofiex-text, #636363);
  border-radius: 50%;
  pointer-events: none;
  transform-origin: 66% 66%;
  transition: all 300ms ease;
}
.login-page__checked-box input[type=checkbox] {
  display: none;
}
.login-page__checked-box input[type=checkbox] + label span {
  position: absolute;
  top: 1px;
  left: 0;
  width: 40px;
  height: 20px;
  vertical-align: middle;
  background: var(--rofiex-border-color, #DDDDDD);
  border-radius: 40px;
  cursor: pointer;
  transition: all 300ms ease;
}
.login-page__checked-box input[type=checkbox]:checked + label span:before {
  left: auto;
  left: 22px;
}
.login-page__form-forgot-password {
  position: relative;
  margin-top: 0;
}
.login-page__form-forgot-password a {
  font-size: 14px;
  font-weight: 400;
  color: var(--rofiex-text, #636363);
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.login-page__form-forgot-password a:hover {
  background-size: 100% 1px;
}
.login-page__form-forgot-password a:hover {
  color: var(--rofiex-base, #FE574F);
}
.login-page__form-btn-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.login-page__form-btn-box .rofiex-btn {
  width: 100%;
  font-weight: 700;
  padding: 7px 30px;
}
.login-page__form-btn-box__border {
  height: 1px;
  background-color: var(--rofiex-border-color, #DDDDDD);
  width: 100%;
  margin: 30px 0;
}
.login-page__form-btn-box__google.rofiex-btn {
  background-color: var(--rofiex-black, #000000);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  padding: 10px 30px;
}
.login-page__form-btn-box__google.rofiex-btn img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.login-page__form-btn-box__google.rofiex-btn:after {
  background-color: var(--rofiex-base, #FE574F);
}
.login-page__form-btn-box__google.rofiex-btn:hover {
  background-color: var(--rofiex-base, #FE574F);
}
.login-page__form-btn-box__register-text {
  margin: 22px auto 0;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: var(--rofiex-black, #000000);
}
.login-page__form-btn-box__register-text a {
  color: var(--rofiex-base, #FE574F);
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.login-page__form-btn-box__register-text a:hover {
  background-size: 100% 1px;
}

/*--------------------------------------------------------------
# error 404
--------------------------------------------------------------*/
.error-404 {
  position: relative;
  padding: 120px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .error-404 {
    padding: 80px 0;
  }
}
.error-404__image {
  position: relative;
  margin-bottom: 13px;
}
.error-404__image img {
  max-width: 100%;
  height: auto;
  animation: movebounce2 3s linear 0s infinite;
}
.error-404__title {
  font-size: 150px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
  position: relative;
}
.error-404__sub-title {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 12px;
}
@media (max-width: 450px) {
  .error-404__sub-title {
    font-size: 28px;
  }
}
.error-404__text {
  font-weight: 500;
  margin-bottom: 27px;
}
.error-404 .rofiex-btn {
  border-radius: 0;
  padding: 14px 38px;
}
.error-404 .rofiex-btn:hover i {
  transform: none;
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/
.faq-one {
  position: relative;
  background-color: var(--rofiex-gray, #F5F1EF);
}
.faq-one__shape {
  position: absolute;
  right: 3%;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 139px;
  height: 100%;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto;
}
@media (max-width: 1599px) {
  .faq-one__shape {
    display: none;
  }
}
.faq-one__image {
  text-align: left;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.faq-one__image img {
  min-height: 793px;
  object-fit: cover;
  max-width: 100%;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 899 793" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H689L761.5 136.5L899 198.25V396.5V793H0V0Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 899 793" xmlns="http://www.w3.org/2000/svg"><path d="M0 0H689L761.5 136.5L899 198.25V396.5V793H0V0Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: right top;
  mask-position: right top;
  -webkit-mask-size: cover;
  mask-size: cover;
}
@media (max-width: 767px) {
  .faq-one__image img {
    min-height: 500px;
    width: 100%;
  }
}
.faq-one__image__icon {
  width: 156px;
  height: 156px;
  background-color: var(--rofiex-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--rofiex-base, #FE574F);
  font-size: 79px;
  z-index: 1;
  position: absolute;
  right: 55px;
  top: 30px;
}
.faq-one__image__icon::after {
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  content: "";
  border: 1px dashed var(--rofiex-base, #FE574F);
  border-radius: 50%;
  left: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}
.faq-one__image__icon i {
  transition: all 500ms ease;
  transform: scale(1);
}
.faq-one__image__icon:hover i {
  transform: scale(0.9);
}
.faq-one__content {
  position: relative;
  padding: 98px 0;
}
@media (max-width: 767px) {
  .faq-one__content {
    padding: 80px 0;
  }
}
.faq-one__content .sec-title {
  padding-bottom: 23px;
}
.faq-one__content__text {
  font-weight: 500;
  margin: 0 0 31px;
}
.faq-one__accordion {
  position: relative;
}
.faq-one__accordion .accrodion {
  margin: 10px 0 0;
  position: relative;
  background-color: var(--rofiex-white, #fff);
}
.faq-one__accordion .accrodion-title {
  padding: 21px 30px 20px;
  padding-right: 50px;
  cursor: pointer;
}
.faq-one__accordion .accrodion-title h4 {
  text-transform: uppercase;
  font-weight: bold;
  color: var(--rofiex-black, #000000);
  font-size: 16px;
  margin: 0;
  transition: all 500ms ease;
  position: relative;
}
.faq-one__accordion .accrodion-title__icon {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
}
.faq-one__accordion .accrodion-title__icon::after {
  width: 100%;
  height: 100%;
  position: absolute;
  color: var(--rofiex-text, #636363);
  top: 0;
  left: 0;
  font-family: "icomoon" !important;
  font-size: 16px;
  content: "\e94a";
  font-weight: normal;
  transition: all 500ms ease;
}
.faq-one__accordion .active .accrodion-title h4 {
  color: var(--rofiex-base, #FE574F);
}
.faq-one__accordion .active .accrodion-title__icon::after {
  color: var(--rofiex-base, #FE574F);
  transform: rotate(90deg);
}
.faq-one__accordion .accrodion-content .inner {
  padding: 12px 28px 23px;
  margin-top: -2px;
  border-top: 1px solid var(--rofiex-border-color, #DDDDDD);
}
.faq-one__accordion .accrodion-content p {
  margin: 0;
  font-weight: 500;
}
.faq-one--page {
  padding: 110px 0 120px;
}
@media (max-width: 767px) {
  .faq-one--page {
    padding: 70px 0 80px;
  }
}
.faq-one--two {
  position: relative;
  background-color: transparent;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .faq-one--two {
    padding: 80px 0;
  }
}
.faq-one--two .contact-one__form {
  padding: 90px 40px 77px;
}
@media (max-width: 1199px) {
  .faq-one--two .contact-one__form {
    margin-bottom: 45px;
  }
}
@media (max-width: 767px) {
  .faq-one--two .contact-one__form {
    padding: 90px 20px 50px;
  }
}
.faq-one--two .contact-one__form .rofiex-btn {
  height: 60px;
}
.faq-one--two .faq-one__content {
  padding: 0;
}
@media (min-width: 1200px) {
  .faq-one--two .faq-one__content {
    margin-left: 15px;
  }
}
.faq-one--two .faq-one__accordion .accrodion {
  border: 1px solid var(--rofiex-border-color, #DDDDDD);
  border-radius: 5px;
}

.faq-page-search {
  position: relative;
  padding-top: 105px;
  padding-bottom: 120px;
}
@media (max-width: 767px) {
  .faq-page-search {
    padding-top: 70px;
    padding-bottom: 80px;
  }
}
.faq-page-search__inner {
  max-width: 750px;
  position: relative;
  margin: 0 auto;
  text-align: center;
}
.faq-page-search__title {
  text-transform: capitalize;
  margin: 0;
  font-weight: bold;
  color: var(--rofiex-black, #000000);
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .faq-page-search__title {
    font-size: 40px;
    line-height: 52px;
    margin-bottom: 40px;
  }
}
.faq-page-search__form {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.faq-page-search__form input[type=text] {
  border: 1px solid var(--rofiex-border-color, #DDDDDD);
  outline: none;
  display: block;
  background-color: transparent;
  color: var(--rofiex-text, #636363);
  font-size: 14px;
  width: 100%;
  padding-left: 22px;
  height: 55px;
}
.faq-page-search__form__btn {
  border: none;
  outline: none;
  background-color: transparent;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--rofiex-base, #FE574F);
}
.faq-page-search__form__btn:hover {
  color: var(--rofiex-black, #000000);
}

/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/
.package-one {
  padding: 240px 0 120px;
  background-color: #0D0D0D;
  position: relative;
}
@media (max-width: 767px) {
  .package-one {
    padding: 200px 0 80px;
  }
}
.package-one__item {
  position: relative;
  z-index: 2;
  padding: 0 0 50px;
  margin-top: 23px;
  background-color: var(--rofiex-white, #fff);
  transition: all 400ms ease;
  text-align: center;
}
.package-one__item::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 65px;
  height: 65px;
  content: "";
  background-color: var(--rofiex-base, #FE574F);
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  transition: all 400ms ease;
  visibility: hidden;
  opacity: 0;
}
.package-one__item::before {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 65px;
  height: 65px;
  content: "";
  background-color: var(--rofiex-base, #FE574F);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  transition: all 400ms ease;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
.package-one__item__hover {
  position: absolute;
  right: 0;
  bottom: 0;
  transition: all 400ms ease;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: auto;
  transform: scale(0.8);
  visibility: hidden;
  opacity: 0;
}
.package-one__item:hover .package-one__item__hover {
  visibility: visible;
  opacity: 0.1;
  transform: scale(1);
}
.package-one__item:hover::before, .package-one__item:hover::after {
  visibility: visible;
  opacity: 1;
}
.package-one__item__title {
  margin: 0;
  position: relative;
  top: -23px;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--rofiex-white, #fff);
  background-color: var(--rofiex-base, #FE574F);
  font-size: 22px;
  line-height: 20px;
  display: inline-block;
  padding: 13px 20px;
  min-width: 238px;
  clip-path: polygon(100% 0, 85% 50%, 100% 100%, 0 100%, 11% 50%, 0 0);
}
.package-one__item__price {
  color: var(--rofiex-black, #000000);
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  margin: 7px 0 30px;
}
.package-one__item__period {
  background-color: var(--rofiex-gray, #F5F1EF);
  width: 100%;
  color: var(--rofiex-black, #000000);
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  font-weight: 600;
  font-size: 22px;
  padding: 14px 20px;
  position: relative;
  z-index: 1;
  transition: all 400ms ease;
}
.package-one__item__period::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  content: "";
  z-index: -1;
  background-color: var(--rofiex-base, #FE574F);
  transition: all 400ms ease;
}
.package-one__item:hover .package-one__item__period {
  color: var(--rofiex-white, #fff);
}
.package-one__item:hover .package-one__item__period::after {
  width: 100%;
}
.package-one__item__list {
  margin: 24px 0 37px;
  padding: 0 55px;
  list-style: none;
}
@media (max-width: 1199px) {
  .package-one__item__list {
    padding: 0 15px;
  }
}
@media (max-width: 991px) {
  .package-one__item__list {
    padding: 0 30px;
  }
}
.package-one__item__list li {
  font-size: 16px;
  line-height: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
  font-weight: 500;
}
.package-one__item .rofiex-btn {
  background-color: var(--rofiex-black, #000000);
}
.package-one__item .rofiex-btn::after {
  background-color: var(--rofiex-base, #FE574F);
}
.package-one--page {
  background-color: transparent;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .package-one--page {
    padding: 80px 0;
  }
}
.package-one--page .package-one__item {
  border: 1px solid var(--rofiex-border-color, #DDDDDD);
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }
  30% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  50% {
    -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
    transform: translateY(50px) translateX(100px) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }
  80% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}
@keyframes cloudMove {
  0% {
    background-position: 1920px 100%;
  }
  100% {
    background-position: 0 100%;
  }
}
@keyframes startIconOne {
  0% {
    transform: scale(1) rotate(0);
  }
  100% {
    transform: scale(0.5) rotate(45deg);
  }
}
@keyframes iconTranslateX {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-webkit-keyframes widths {
  0% {
    width: 0%;
  }
  50% {
    width: 97%;
    left: 0;
  }
  100% {
    width: 0;
  }
}
@keyframes widths {
  0% {
    width: 0%;
  }
  50% {
    width: 97%;
    left: 0;
  }
  100% {
    width: 0;
  }
}
@keyframes shapeMover {
  0%, 100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }
  50% {
    transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}
@keyframes banner3Shake {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
  30% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  60% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
}
@keyframes squareMover {
  0%, 100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }
  20%, 60% {
    -webkit-transform: translate(20px, 40px) rotate(180deg);
    transform: translate(20px, 40px) rotate(180deg);
  }
  30%, 80% {
    -webkit-transform: translate(40px, 60px) rotate(0deg);
    transform: translate(40px, 60px) rotate(0deg);
  }
}
@keyframes treeMove {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }
  50% {
    -webkit-transform: rotate(10deg) translateX(30px);
    transform: rotate(10deg) translateX(30px);
  }
}
@keyframes treeMove2 {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    -webkit-transform: rotate(-10deg) translateX(0);
    transform: rotate(-10deg) translateX(0);
  }
  50% {
    -webkit-transform: rotate(10deg) translateX(0);
    transform: rotate(10deg) translateX(0);
  }
}
@keyframes treeMove3 {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    -webkit-transform: rotate(-10deg) translateX(0);
    transform: rotate(-3deg) translateX(0);
  }
  50% {
    -webkit-transform: rotate(3deg) translateX(0);
    transform: rotate(3deg) translateX(0);
  }
}
@keyframes leafMove {
  0%, 100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }
  25%, 75% {
    transform: rotate(-2deg) translateX(5px);
  }
  50% {
    transform: rotate(-4deg) translateX(10px);
  }
}
@keyframes messageMove {
  0%, 100% {
    transform: translateX(0);
  }
  25%, 75% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(10px);
  }
}
@keyframes textRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes flowerRotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  25%, 75% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
@keyframes zump {
  0%, 100% {
    transform: translateY(0);
  }
  25%, 75% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(-5px);
  }
}
@-webkit-keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}
@keyframes videoZoom {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
    border-width: 3px;
  }
  40% {
    opacity: 1;
    border-width: 2px;
  }
  65% {
    border-width: 1px;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    border-width: 1px;
  }
}
@keyframes zumpX {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-30px);
  }
}
@keyframes zumpY {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-30px);
  }
}
@keyframes zumpXtwo {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(30px);
  }
}
@keyframes zoom-hover {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 120%;
    height: 120%;
    opacity: 0;
  }
}
@keyframes zoomsIn {
  100%, 0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
}
@keyframes shrinkAnim {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 0 50%;
  }
  10% {
    transform: rotate(2deg);
  }
  20%, 40%, 60% {
    transform: rotate(-4deg);
  }
  30%, 50%, 70% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  90% {
    transform: rotate(2deg);
  }
}
@keyframes shrinkAnim2 {
  0%, 100% {
    transform: rotate(0deg);
    transform-origin: 100% 50%;
  }
  10% {
    transform: rotate(2deg);
  }
  20%, 40%, 60% {
    transform: rotate(-4deg);
  }
  30%, 50%, 70% {
    transform: rotate(4deg);
  }
  80% {
    transform: rotate(-2deg);
  }
  90% {
    transform: rotate(2deg);
  }
}
@keyframes rollInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes rollInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes vibrant {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-2px, 2px);
  }
  40% {
    transform: translate(-2px, -2px);
  }
  60% {
    transform: translate(2px, 2px);
  }
  80% {
    transform: translate(2px, -2px);
  }
  100% {
    transform: translate(0);
  }
}
@keyframes blinkAnim {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}
@keyframes movebounce2 {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-15px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes movebounce3 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes shapeMove {
  0%, 100% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
}
@keyframes rotated {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

@keyframes iconTranslateY {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes zumpXtwo {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(5px);
  }
}
@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
@keyframes shadows {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--rofiex-white-rgb, 255, 255, 255), 0.2), 0 0 0 30px rgba(var(--rofiex-white-rgb, 255, 255, 255), 0.2), 0 0 0 50px rgba(var(--rofiex-white-rgb, 255, 255, 255), 0.2);
  }
  100% {
    box-shadow: 0 0 0 30px rgba(var(--rofiex-white-rgb, 255, 255, 255), 0.2), 0 0 0 50px rgba(var(--rofiex-white-rgb, 255, 255, 255), 0.2), 0 0 0 70px rgba(var(--rofiex-white-rgb, 255, 255, 255), 0);
  }
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@keyframes wobble-horizontal-on-hover {
  16.65% {
    transform: translateX(8px);
  }
  33.3% {
    transform: translateX(-6px);
  }
  49.95% {
    transform: translateX(4px);
  }
  66.6% {
    transform: translateX(-2px);
  }
  83.25% {
    transform: translateX(1px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes float-bob-y-2 {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}
@keyframes animateTop {
  0% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes animateRight {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}
@keyframes animateBottom {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes animateLeft {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}
/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  visibility: hidden;
  position: fixed;
}
.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}
.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  flex: 0 0 100%;
}
.mobile-nav__wrapper .home-showcase {
  margin-bottom: -1px;
  margin-top: 0;
  border-bottom: 1px solid RGBA(var(--rofiex-white-rgb, 255, 255, 255), 0.1);
}
.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: transparent;
  box-shadow: none;
}
.mobile-nav__wrapper .home-showcase__title {
  color: var(--rofiex-white, #fff);
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}
.mobile-nav__wrapper.expanded .mobile-nav__content {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--rofiex-black, #000000);
  opacity: 0.3;
  cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--rofiex-black2, #222222);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}
.mobile-nav__content .main-menu__nav {
  display: block;
  padding: 0;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--rofiex-white, #fff);
  cursor: pointer;
}
.mobile-nav__close:hover {
  color: var(--rofiex-base, #FE574F);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid RGBA(var(--rofiex-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list ul li > a {
  padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid RGBA(var(--rofiex-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list li > a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: var(--rofiex-white, #fff);
  font-size: 12px;
  font-family: var(--rofiex-font, "Mulish", sans-serif);
  text-transform: uppercase;
  font-weight: 500;
  height: 46px;
  letter-spacing: var(--rofiex-letter-space, 0.1em);
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--rofiex-base, #FE574F);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--rofiex-base, #FE574F);
  border: none;
  outline: none;
  color: var(--rofiex-white, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: var(--rofiex-white, #fff);
  color: var(--rofiex-black, #000000);
}

.mobile-nav__social {
  display: flex;
  align-items: center;
}
.mobile-nav__social a {
  font-size: 16px;
  color: var(--rofiex-white, #fff);
  transition: 500ms;
}
.mobile-nav__social a + a {
  margin-left: 20px;
}
.mobile-nav__social a:hover {
  color: var(--rofiex-base, #FE574F);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}
.mobile-nav__contact li {
  color: var(--rofiex-white, #fff);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}
.mobile-nav__contact li + li {
  margin-top: 15px;
}
.mobile-nav__contact li a {
  color: inherit;
  transition: 500ms;
}
.mobile-nav__contact li a:hover {
  color: var(--rofiex-base, #FE574F);
}
.mobile-nav__contact li > i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--rofiex-base, #FE574F);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 12px;
  margin-right: 10px;
  color: var(--rofiex-white, #fff);
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
  display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000;
  opacity: 0.9;
  cursor: url(../images/close.png), auto;
}
@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}
.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}
.search-popup__form {
  position: relative;
}
.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  background-color: var(--rofiex-white, #fff);
  font-size: 15px;
  color: var(--rofiex-text, #636363);
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
}
.search-popup__form .rofiex-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
}
.search-popup__form .rofiex-btn i {
  font-size: 16px;
  margin: 0;
  transform: none;
}
.search-popup.active {
  z-index: 9999;
}
.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.9;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}
@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}
.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  background-color: var(--rofiex-black, #000000);
  position: relative;
  padding-top: 200px;
  padding-bottom: 203px;
}
@media (max-width: 767px) {
  .page-header {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.page-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(../images/backgrounds/page-header-bg-1-1.jpg);
}
.page-header__bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/shapes/page-header-bg-overlay.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}
.page-header__shape {
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 288px;
  height: 230px;
  opacity: 0.1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url(../images/shapes/page-header-shape.png);
  animation: treeMove 6s linear 0s infinite;
}
@media (max-width: 1490px) {
  .page-header__shape {
    display: none;
  }
}
.page-header .container {
  position: relative;
  z-index: 1;
}
.page-header__title {
  margin: 0 0 16px;
  font-size: 40px;
  color: var(--rofiex-white, #fff);
  font-weight: 700;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .page-header__title {
    font-size: 60px;
  }
}
.page-header--details {
  position: relative;
}
.page-header--details .rofiex-breadcrumb li span {
  color: var(--rofiex-white, #fff);
}

.rofiex-breadcrumb {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
}
.rofiex-breadcrumb li {
  font-size: 18px;
  line-height: 20px;
  color: var(--rofiex-base, #FE574F);
  text-transform: capitalize;
  font-weight: 500;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .rofiex-breadcrumb li {
    font-size: 17px;
  }
}
.rofiex-breadcrumb li:not(:last-of-type)::after {
  content: "/";
  position: relative;
  font-weight: normal;
  top: 1px;
  margin-left: 5px;
  margin-right: 5px;
  color: var(--rofiex-white, #fff);
}
.rofiex-breadcrumb li a {
  color: var(--rofiex-white, #fff);
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.rofiex-breadcrumb li a:hover {
  background-size: 100% 1px;
}
.rofiex-breadcrumb li a:hover {
  color: var(--rofiex-base, #FE574F);
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
}
.google-map iframe {
  position: relative;
  display: block;
  border: none;
  height: 430px;
  width: 100%;
  mix-blend-mode: luminosity;
}
.google-map__contact {
  overflow: hidden;
  background-color: var(--rofiex-gray, #F5F1EF);
}

.contact-map {
  position: relative;
  overflow: hidden;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/
.client-carousel {
  background-color: var(--rofiex-gray, #F5F1EF);
  padding: 100px 0;
}
@media (max-width: 767px) {
  .client-carousel {
    padding: 60px 0;
  }
}
.client-carousel__one__item {
  text-align: center;
}
.client-carousel__one__item img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  transition: all 500ms ease;
  max-width: 100%;
  width: auto !important;
  margin: 0 auto;
}
.client-carousel__one__item:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.client-carousel--two {
  background-color: transparent;
  border-top: 1px solid var(--rofiex-border-color, #DDDDDD);
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/
.main-slider-one {
  position: relative;
  overflow: hidden;
}
.main-slider-one__carousel {
  position: relative;
  width: 100%;
}
.main-slider-one__item {
  background-color: var(--rofiex-black, #000000);
  position: relative;
  z-index: 3;
  padding-top: 228px;
  padding-bottom: 228px;
}
@media (max-width: 1199px) {
  .main-slider-one__item {
    padding-top: 180px;
    padding-bottom: 150px;
  }
}
@media (max-width: 767px) {
  .main-slider-one__item {
    padding-top: 100px;
    padding-bottom: 200px;
  }
}
.main-slider-one__bg {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-size: auto;
  background-repeat: no-repeat;
  background-position: right center;
  overflow: hidden;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transition-delay: 0s, 0s;
  transform: translatex(50%) scalex(2);
  filter: blur(10px);
}
.main-slider-one__bg::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../images/shapes/slider-1-overlay.png);
  z-index: 1;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: auto;
}
.main-slider-one__shape-one {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: left top;
  background-repeat: no-repeat;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: scale(1.2) translateY(-100%) translateX(-100%);
}
@media (max-width: 1299px) {
  .main-slider-one__shape-one {
    display: none;
  }
}
.main-slider-one__shape-two {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 10px;
  width: 151px;
  height: 158px;
  background-position: left bottom;
  background-repeat: no-repeat;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: scale(1.2) translateY(100%) translateX(100%);
  animation: movebounce3 4s linear infinite;
}
@media (max-width: 1299px) {
  .main-slider-one__shape-two {
    display: none;
  }
}
.main-slider-one__content {
  position: relative;
  z-index: 3;
}
.main-slider-one__sub-title {
  color: var(--rofiex-base, #FE574F);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--rofiex-special-font, "Work Sans", sans-serif);
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 16px;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: scale(1.2) translateY(200px);
}
@media (max-width: 767px) {
  .main-slider-one__sub-title {
    font-size: 16px;
  }
}
.main-slider-one__sub-title img {
  width: 24px;
}
.main-slider-one__title {
  color: var(--rofiex-white, #fff);
  font-size: 60px;
  font-weight: 700;
  line-height: 70px;
  text-transform: capitalize;
  margin: 0 0 14px;
  opacity: 0;
  transition: transform 1100ms ease, opacity 1100ms ease;
  transform: scale(1.2) translateY(200px);
}
@media (max-width: 991px) {
  .main-slider-one__title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media (max-width: 767px) {
  .main-slider-one__title {
    font-size: 38px;
    line-height: 50px;
  }
}
.main-slider-one__text {
  color: var(--rofiex-white, #fff);
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 36px;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: scale(1.2) translateY(200px);
}
@media (max-width: 767px) {
  .main-slider-one__text br {
    display: none;
  }
}
.main-slider-one__btn {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  z-index: 5;
  gap: 15px;
  overflow: hidden;
  opacity: 0;
  transition: transform 1200ms ease, opacity 1200ms ease;
  transform: scale(1.2) translateY(200px);
}
.main-slider-one__btn .rofiex-btn::after {
  background-color: var(--rofiex-white, #fff);
}
.main-slider-one__btn .rofiex-btn:hover {
  color: var(--rofiex-black, #000000);
}
.main-slider-one .slick-active .main-slider-one__bg {
  opacity: 1;
  transform: translatex(0) scalex(1);
  filter: blur(0);
  transition-delay: 1000ms;
}
.main-slider-one .slick-active .main-slider-one__shape-one {
  opacity: 1;
  transform: scale(1) translateY(0) translateX(0);
  transition-delay: 1100ms;
}
.main-slider-one .slick-active .main-slider-one__shape-two {
  opacity: 1;
  transform: scale(1) translateY(0) translateX(0);
  transition-delay: 1200ms;
}
.main-slider-one .slick-active .main-slider-one__sub-title {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 1400ms;
}
.main-slider-one .slick-active .main-slider-one__title {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 1600ms;
}
.main-slider-one .slick-active .main-slider-one__text {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 1800ms;
}
.main-slider-one .slick-active .main-slider-one__btn {
  opacity: 1;
  transform: scale(1) translateY(0);
  transition-delay: 2000ms;
}
.main-slider-one__nav {
  margin: 0;
  padding: 0;
  position: absolute;
  right: 50px;
  bottom: 50px;
  width: 112px;
}
@media (max-width: 767px) {
  .main-slider-one__nav {
    height: 282px;
    width: 112px;
    right: 0;
    left: 0;
    bottom: -65px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(90deg);
  }
}
.main-slider-one__nav .item {
  position: relative;
  text-align: center;
  display: inline-block;
  padding: 0 0;
  transition: all 400ms ease;
}
.main-slider-one__nav .item .main-slider-one__nav__item {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  border: 5px solid var(--rofiex-white, #fff);
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
  margin-bottom: 5px;
  transition: all 400ms ease;
  cursor: pointer;
}
.main-slider-one__nav .item .main-slider-one__nav__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.main-slider-one__nav .item::after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 59px;
  height: 39px;
  background-color: var(--rofiex-base, #FE574F);
  border-radius: 40px;
  z-index: -1;
  font-size: 15px;
  color: var(--rofiex-white, #fff);
  padding-right: 11px;
  content: "\e934";
  font-family: "icomoon" !important;
  transition: all 400ms ease;
}
.main-slider-one__nav .slick-current.slick-center .item::after {
  right: -35px;
}

.main-slider-two {
  position: relative;
  background-color: var(--rofiex-base, #FE574F);
}
.main-slider-two__shape {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0.4;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: auto;
  animation: movebounce2 3s linear 0s infinite;
}
@media (max-width: 1490px) {
  .main-slider-two__shape {
    display: none;
  }
}
.main-slider-two__carousel {
  position: relative;
  z-index: 2;
}
.main-slider-two__carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 60px;
  z-index: 99;
  width: 1170px;
  gap: 20px;
  transform: none;
  text-align: left;
}
@media (max-width: 1199px) {
  .main-slider-two__carousel .owl-dots {
    justify-content: center;
    text-align: center;
    width: 100%;
    bottom: 40px;
  }
}
.main-slider-two__carousel .owl-dots .owl-dot span {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background-color: var(--rofiex-border-color, #DDDDDD);
  border: none;
  position: relative;
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-slider-two__carousel .owl-dots .owl-dot span::after {
  width: 22px;
  height: 22px;
  position: absolute;
  content: "";
  left: -8px;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
  border: 1px solid var(--rofiex-white, #fff);
  transform: scale(0);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.main-slider-two__carousel .owl-dots .owl-dot:hover span, .main-slider-two__carousel .owl-dots .owl-dot.active span {
  background-color: var(--rofiex-white, #fff);
}
.main-slider-two__carousel .owl-dots .owl-dot:hover span::after, .main-slider-two__carousel .owl-dots .owl-dot.active span::after {
  transform: scale(1);
}
.main-slider-two__carousel .active .main-slider-two__image {
  opacity: 1;
  transform: translatex(0) scalex(1);
  filter: blur(0);
  transition-delay: 1900ms;
}
.main-slider-two__carousel .active .main-slider-two__sub-title {
  opacity: 1;
  animation-delay: 1.2s;
  animation-name: rotateInUpLeft;
}
.main-slider-two__carousel .active .main-slider-two__title {
  opacity: 1;
  animation-delay: 1.4s;
  animation-name: rotateInUpRight;
}
.main-slider-two__carousel .active .main-slider-two__text {
  opacity: 1;
  animation-delay: 1.6s;
  animation-name: rotateInUpLeft;
}
.main-slider-two__carousel .active .main-slider-two__btn {
  opacity: 1;
  transform: perspective(400px) rotateY(0deg) translateY(0px);
  transition-delay: 1800ms;
}
.main-slider-two__carousel .container {
  padding-top: 300px;
  padding-bottom: 200px;
}
@media (max-width: 767px) {
  .main-slider-two__carousel .container {
    padding-top: 210px;
    padding-bottom: 120px;
  }
}
.main-slider-two__image {
  position: absolute;
  right: 0;
  top: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 49%;
  opacity: 0;
  transition: transform 1000ms ease, opacity 1000ms ease;
  transform: translatex(50%) scalex(2);
  filter: blur(10px);
  overflow: hidden;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 997 688" xmlns="http://www.w3.org/2000/svg"><path d="M1155 688H69.6359L70.0275 687.621L72.1295 685.31L74.8499 683.298L74.3553 679.592L76.8695 677.141L76.9725 673.893L77.5496 670.824L79.6928 667.856L78.6212 664.488L79.157 661.42L80.7439 658.59L81.0118 655.522L82.6192 652.314L80.8057 648.907L81.3003 645.898L79.8577 642.391L77.1992 639.701L73.3454 638.008L73.366 634.461V630.994L74.5613 627.607L71.7792 625.594L69.3474 623.323L67.7812 620.234L64.0304 619.298L61.4956 617.126L60.0736 613.978L59.7645 610.55L57.8479 607.362L57.8273 603.577L53.7262 602.839L51.1914 599.89L47.8322 598.516L45.9362 595.567L45.6271 592.319L45.5653 589.011L46.0186 585.724L44.4936 582.675L44.1639 579.607L42.9274 576.618L40.2895 574.227L39.5476 570.76L41.6084 568.289L43.896 566.237L46.5751 564.583L47.9146 562.012L47.9558 559.063L49.1717 556.433L52.9225 554.401L55.7046 551.611L57.7861 547.905L62.1551 547.088L63.9274 544.259L66.4622 542.565L69.368 541.868L68.6467 538.421L69.1001 534.794L68.6879 531.387L67.9666 528.498L67.1629 525.41L66.421 522.301L67.3278 519.91L70.2542 518.276L74.0049 517.938L75.6124 513.793L78.1884 510.386L78.9715 500.264L75.7772 497.355L75.9627 492.792L73.1806 489.385L69.8214 487.054L68.5231 483.148L66.3386 479.841L62.7321 477.549L61.2071 473.843L59.3111 470.555L58.0952 466.511L58.6722 462.545L57.7861 458.66L54.1384 455.771L56.0137 452.344V448.897L57.0236 445.629L58.6722 442.56L60.4446 439.572L61.3925 436.384L61.8459 433.514L62.3817 430.446L60.7537 427.856L58.6104 425.923L55.9313 424.408L52.5721 424.488L49.5015 422.276L46.843 419.507L43.0922 418.431L42.6183 415.482L39.8155 413.29L39.527 410.142L42.0824 407.552V404.144L42.6595 401.335L40.5986 399.163L38.0638 396.951L36.9921 393.624L35.3641 391.173L32.4377 389.041L32.4171 385.634L30.6447 382.785L28.419 380.314L25.7812 378.381L27.6153 376.329L29.1197 373.699L31.634 372.144L35.6114 369.833L36.4357 365.39L40.2895 363.039L41.0932 359.093L40.5368 356.423L40.3513 353.554L40.5162 350.785L40.8871 347.915L41.052 344.827L43.5044 342.037L41.7115 339.128L40.7017 336.299L39.2591 333.748L37.0746 331.238L33.8391 329.524L31.0981 326.655L33.0147 323.387L33.3238 320.299L34.0039 317.39L34.6634 313.983L33.9627 310.476L34.1688 307.427L34.9313 304.897L33.4269 302.386L30.6241 300.533L30.1914 296.966L28.5839 294.077L25.6163 291.666L23.8852 289.036L21.1236 287.123L18.0736 285.031L14.3229 284.433L12.5711 281.743L9.12954 280.986L7.68695 278.217L5.77036 275.746L4.84298 272.837L3.50343 270.087L4.18351 265.724L0.556428 262.635L0 258.61L0.206084 254.526L2.32875 252.095L2.10206 248.986L4.1423 246.615L4.78116 243.826L4.55447 240.817L4.94603 238.007L7.68695 235.756L6.24436 232.488L7.04809 229.878L8.07851 225.913L9.45927 222.047L12.1384 219.039L14.2198 215.352L15.2709 212.583L16.6516 210.052L19.1452 208.219L21.4122 206.247L22.8135 203.696L23.9676 201.046L25.5339 198.057L23.9676 194.77L25.7193 192.08L28.7694 189.39L30.7684 185.465L33.2002 183.791L33.736 180.842L35.4259 178.79L35.9411 174.665L34.2924 170.799L31.84 167.691L30.6241 164.144L28.9342 160.857L26.2345 157.27L29.9853 154.56L33.4269 152.608L36.6006 151.313L33.7566 149.699L32.211 146.012L28.79 144L28.3984 140.115L26.5643 136.946L30.7684 131.168L34.4779 129.833L35.0343 125.489L36.106 121.445L39.8773 119.193L41.8763 115.706L42.7625 111.701L45.1737 108.533L47.8528 107.218L50.5731 105.484L53.6438 103.95L52.5721 100.483L50.7998 97.2951L52.0569 93.7285L52.5103 90.7397L52.0775 87.3923L52.6133 84.0847L55.6016 81.5143L57.6418 78.4259L60.4858 75.9552L62.9382 73.0062L65.1639 69.858L66.5447 64.7173L64.0304 62.7248L60.7949 61.1108L60.3827 56.7671L58.8577 52.9016L55.6016 49.873L54.7978 45.6887L53.314 41.8431L51.0059 38.3761L49.3572 35.746L46.5545 33.9726L43.6075 31.5816L45.7713 28.3935L47.0903 25.5044L47.6467 22.1768L50.8822 19.3275L54.0765 16.4981L53.7468 13.1507L54.8597 10.2217L55.4779 7.23288L55.1276 4.24408L53.8705 1.63387L52.7782 0H1155V688Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 997 688" xmlns="http://www.w3.org/2000/svg"><path d="M1155 688H69.6359L70.0275 687.621L72.1295 685.31L74.8499 683.298L74.3553 679.592L76.8695 677.141L76.9725 673.893L77.5496 670.824L79.6928 667.856L78.6212 664.488L79.157 661.42L80.7439 658.59L81.0118 655.522L82.6192 652.314L80.8057 648.907L81.3003 645.898L79.8577 642.391L77.1992 639.701L73.3454 638.008L73.366 634.461V630.994L74.5613 627.607L71.7792 625.594L69.3474 623.323L67.7812 620.234L64.0304 619.298L61.4956 617.126L60.0736 613.978L59.7645 610.55L57.8479 607.362L57.8273 603.577L53.7262 602.839L51.1914 599.89L47.8322 598.516L45.9362 595.567L45.6271 592.319L45.5653 589.011L46.0186 585.724L44.4936 582.675L44.1639 579.607L42.9274 576.618L40.2895 574.227L39.5476 570.76L41.6084 568.289L43.896 566.237L46.5751 564.583L47.9146 562.012L47.9558 559.063L49.1717 556.433L52.9225 554.401L55.7046 551.611L57.7861 547.905L62.1551 547.088L63.9274 544.259L66.4622 542.565L69.368 541.868L68.6467 538.421L69.1001 534.794L68.6879 531.387L67.9666 528.498L67.1629 525.41L66.421 522.301L67.3278 519.91L70.2542 518.276L74.0049 517.938L75.6124 513.793L78.1884 510.386L78.9715 500.264L75.7772 497.355L75.9627 492.792L73.1806 489.385L69.8214 487.054L68.5231 483.148L66.3386 479.841L62.7321 477.549L61.2071 473.843L59.3111 470.555L58.0952 466.511L58.6722 462.545L57.7861 458.66L54.1384 455.771L56.0137 452.344V448.897L57.0236 445.629L58.6722 442.56L60.4446 439.572L61.3925 436.384L61.8459 433.514L62.3817 430.446L60.7537 427.856L58.6104 425.923L55.9313 424.408L52.5721 424.488L49.5015 422.276L46.843 419.507L43.0922 418.431L42.6183 415.482L39.8155 413.29L39.527 410.142L42.0824 407.552V404.144L42.6595 401.335L40.5986 399.163L38.0638 396.951L36.9921 393.624L35.3641 391.173L32.4377 389.041L32.4171 385.634L30.6447 382.785L28.419 380.314L25.7812 378.381L27.6153 376.329L29.1197 373.699L31.634 372.144L35.6114 369.833L36.4357 365.39L40.2895 363.039L41.0932 359.093L40.5368 356.423L40.3513 353.554L40.5162 350.785L40.8871 347.915L41.052 344.827L43.5044 342.037L41.7115 339.128L40.7017 336.299L39.2591 333.748L37.0746 331.238L33.8391 329.524L31.0981 326.655L33.0147 323.387L33.3238 320.299L34.0039 317.39L34.6634 313.983L33.9627 310.476L34.1688 307.427L34.9313 304.897L33.4269 302.386L30.6241 300.533L30.1914 296.966L28.5839 294.077L25.6163 291.666L23.8852 289.036L21.1236 287.123L18.0736 285.031L14.3229 284.433L12.5711 281.743L9.12954 280.986L7.68695 278.217L5.77036 275.746L4.84298 272.837L3.50343 270.087L4.18351 265.724L0.556428 262.635L0 258.61L0.206084 254.526L2.32875 252.095L2.10206 248.986L4.1423 246.615L4.78116 243.826L4.55447 240.817L4.94603 238.007L7.68695 235.756L6.24436 232.488L7.04809 229.878L8.07851 225.913L9.45927 222.047L12.1384 219.039L14.2198 215.352L15.2709 212.583L16.6516 210.052L19.1452 208.219L21.4122 206.247L22.8135 203.696L23.9676 201.046L25.5339 198.057L23.9676 194.77L25.7193 192.08L28.7694 189.39L30.7684 185.465L33.2002 183.791L33.736 180.842L35.4259 178.79L35.9411 174.665L34.2924 170.799L31.84 167.691L30.6241 164.144L28.9342 160.857L26.2345 157.27L29.9853 154.56L33.4269 152.608L36.6006 151.313L33.7566 149.699L32.211 146.012L28.79 144L28.3984 140.115L26.5643 136.946L30.7684 131.168L34.4779 129.833L35.0343 125.489L36.106 121.445L39.8773 119.193L41.8763 115.706L42.7625 111.701L45.1737 108.533L47.8528 107.218L50.5731 105.484L53.6438 103.95L52.5721 100.483L50.7998 97.2951L52.0569 93.7285L52.5103 90.7397L52.0775 87.3923L52.6133 84.0847L55.6016 81.5143L57.6418 78.4259L60.4858 75.9552L62.9382 73.0062L65.1639 69.858L66.5447 64.7173L64.0304 62.7248L60.7949 61.1108L60.3827 56.7671L58.8577 52.9016L55.6016 49.873L54.7978 45.6887L53.314 41.8431L51.0059 38.3761L49.3572 35.746L46.5545 33.9726L43.6075 31.5816L45.7713 28.3935L47.0903 25.5044L47.6467 22.1768L50.8822 19.3275L54.0765 16.4981L53.7468 13.1507L54.8597 10.2217L55.4779 7.23288L55.1276 4.24408L53.8705 1.63387L52.7782 0H1155V688Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: left top;
  mask-position: left top;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.main-slider-two__image:after {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  content: "";
  height: 100%;
  background-color: rgba(var(--rofiex-black-rgb, 0, 0, 0), 0.5);
}
@media (max-width: 991px) {
  .main-slider-two__image {
    display: none;
  }
}
.main-slider-two__content {
  position: relative;
  display: inline-block;
  z-index: 3;
  overflow: hidden;
}
.main-slider-two__sub-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  color: var(--rofiex-white, #fff);
  text-transform: uppercase;
  font-family: var(--rofiex-special-font, "Work Sans", sans-serif);
  margin-bottom: 12px;
  position: relative;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.main-slider-two__sub-title img {
  width: 24px !important;
}
@media (max-width: 767px) {
  .main-slider-two__sub-title {
    font-size: 16px;
  }
}
.main-slider-two__title {
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--rofiex-white, #fff);
  margin-bottom: 15px;
  position: relative;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@media (max-width: 767px) {
  .main-slider-two__title {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  .main-slider-two__title {
    font-size: 52px;
    line-height: 62px;
  }
}
.main-slider-two__text {
  color: var(--rofiex-white, #fff);
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  margin: 0 0 39px;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@media (max-width: 767px) {
  .main-slider-two__text br {
    display: none;
  }
}
.main-slider-two__btn {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 5;
  overflow: hidden;
  opacity: 0;
  transform: perspective(400px) rotateY(0deg) translateY(80px);
  transform-origin: bottom;
  transition: all 1500ms ease;
}
.main-slider-two__btn .rofiex-btn {
  background-color: var(--rofiex-black, #000000);
}
.main-slider-two__btn .rofiex-btn::after {
  background-color: var(--rofiex-white, #fff);
}
.main-slider-two__btn .rofiex-btn:hover {
  color: var(--rofiex-base, #FE574F);
}

.main-slider-three {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.main-slider-three__carousel {
  position: relative;
}
.main-slider-three__carousel.owl-carousel .owl-nav {
  left: 80px;
  margin: auto;
  position: absolute;
  right: 0;
  text-align: left;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
@media (min-width: 1300px) and (max-width: 1600px) {
  .main-slider-three__carousel.owl-carousel .owl-nav {
    left: 15px;
  }
}
@media (max-width: 1300px) {
  .main-slider-three__carousel.owl-carousel .owl-nav {
    display: flex;
    transform: none;
    top: auto;
    left: 25px;
    bottom: 30px;
    text-align: center;
    justify-content: flex-start;
  }
}
@media (max-width: 991x) {
  .main-slider-three__carousel.owl-carousel .owl-nav {
    left: 0;
    justify-content: center;
  }
}
.main-slider-three__carousel.owl-carousel .owl-nav button {
  transition: all 400ms ease;
  width: 60px;
  height: 60px;
  outline: none;
  box-shadow: none;
  border: none;
  background-color: RGBA(var(--rofiex-white-rgb, 255, 255, 255), 0.1);
  border-radius: 50%;
  display: block;
  color: var(--rofiex-white, #fff);
  line-height: 60px;
  font-size: 16px;
  margin: 9px 0;
  text-align: center;
}
@media (max-width: 1300px) {
  .main-slider-three__carousel.owl-carousel .owl-nav button {
    margin: 0 5px;
  }
}
.main-slider-three__carousel.owl-carousel .owl-nav button:hover {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}
.main-slider-three__item {
  position: relative;
  padding-top: 210px;
  padding-bottom: 200px;
  background-color: var(--rofiex-black, #000000);
}
@media (max-width: 767px) {
  .main-slider-three__item {
    padding-top: 120px;
    padding-bottom: 150px;
  }
}
.main-slider-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left top;
}
.main-slider-three__left-image {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: auto;
  opacity: 0.2;
  visibility: hidden;
  transition: transform 1100ms ease, opacity 1100ms ease;
  transform: translateX(-100%);
}
@media (max-width: 1299px) {
  .main-slider-three__left-image {
    display: none;
  }
}
.main-slider-three__shape-1 {
  position: absolute;
  top: 0;
  right: 33.2%;
  z-index: 2;
  opacity: 0;
  transition: transform 1100ms ease, opacity 1100ms ease;
  transform: translateX(200px);
}
@media (min-width: 991px) and (max-width: 1199px) {
  .main-slider-three__shape-1 {
    right: 29.2%;
  }
}
@media (max-width: 991px) {
  .main-slider-three__shape-1 {
    display: none;
  }
}
.main-slider-three__shape-1 img {
  width: auto !important;
  animation: movebounce2 4s linear infinite;
}
.main-slider-three__shape-2 {
  position: absolute;
  bottom: 0;
  right: 38.4%;
  z-index: 2;
  opacity: 0;
  transition: transform 1100ms ease, opacity 1100ms ease;
  transform: translateY(100%);
}
@media (max-width: 1199px) {
  .main-slider-three__shape-2 {
    display: none;
  }
}
.main-slider-three__shape-2 img {
  width: auto !important;
  animation: movebounce2 4s linear infinite;
}
.main-slider-three__shape-3 {
  position: absolute;
  bottom: 0;
  right: 44%;
  z-index: 2;
  opacity: 0;
  transition: transform 1100ms ease, opacity 1100ms ease;
  transform: translateY(100%);
}
@media (max-width: 1500px) {
  .main-slider-three__shape-3 {
    right: 46.5%;
  }
}
@media (max-width: 1199px) {
  .main-slider-three__shape-3 {
    display: none;
  }
}
.main-slider-three__shape-3 img {
  width: auto !important;
  animation: movebounce2 4s linear infinite;
}
.main-slider-three__shape-bg {
  position: absolute;
  top: 0;
  right: 0;
  visibility: hidden;
  transition: transform 1100ms ease, opacity 1100ms ease;
  transform: translateX(100%);
  background-color: var(--rofiex-black, #000000);
  opacity: 0.6;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}
@media (max-width: 1600px) {
  .main-slider-three__shape-bg {
    right: -200px;
  }
}
@media (min-width: 991px) and (max-width: 1199px) {
  .main-slider-three__shape-bg {
    right: -350px;
  }
}
@media (max-width: 991px) {
  .main-slider-three__shape-bg {
    display: none;
  }
}
.main-slider-three__shape-bg img {
  width: auto !important;
  mix-blend-mode: luminosity;
}
.main-slider-three__content {
  position: relative;
  z-index: 3;
}
.main-slider-three__video {
  margin-bottom: 20px;
  position: relative;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.main-slider-three__video .video-popup {
  width: 95px;
  height: 95px;
  background-color: var(--rofiex-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--rofiex-base, #FE574F);
  position: relative;
  z-index: 2;
  transform: scale(1);
  transition: all 500ms ease;
}
.main-slider-three__video .video-popup:hover {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
  transform: scale(1.07);
}
.main-slider-three__video .video-popup .ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.main-slider-three__video .video-popup .ripple::before,
.main-slider-three__video .video-popup .ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
  animation: ripple 3s infinite;
  border-radius: 50%;
}
.main-slider-three__video .video-popup .ripple:before {
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}
.main-slider-three__video .video-popup .ripple::after {
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}
.main-slider-three__title {
  font-size: 60px;
  line-height: 70px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--rofiex-white, #fff);
  margin-bottom: 30px;
  position: relative;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@media (max-width: 1199px) {
  .main-slider-three__title {
    font-size: 52px;
    line-height: 62px;
  }
}
@media (max-width: 767px) {
  .main-slider-three__title {
    font-size: 38px;
    line-height: 48px;
  }
}
.main-slider-three__title-anim {
  position: relative;
  display: inline-block;
  overflow: hidden;
  line-height: 0.8;
}
.main-slider-three__title-anim::after {
  content: "";
  width: 101%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 100%;
  background: currentColor;
  transition: 1s cubic-bezier(0.858, 0.01, 0.068, 0.99);
  transition-delay: 1s;
  z-index: 3;
  transform: translateX(-100%);
  transition-delay: 1s;
}
.main-slider-three__btn {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
.main-slider-three__arrow {
  position: absolute;
  left: 310px;
  bottom: 15px;
  overflow: hidden;
  opacity: 0;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@media (max-width: 1400px) {
  .main-slider-three__arrow {
    left: 250px;
  }
}
@media (max-width: 1199px) {
  .main-slider-three__arrow {
    display: none;
  }
}
.main-slider-three__arrow img {
  animation-name: float-bob-y-2;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.main-slider-three .active .main-slider-three__shape-1 {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 1200ms;
}
.main-slider-three .active .main-slider-three__shape-2 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1300ms;
}
.main-slider-three .active .main-slider-three__shape-3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1500ms;
}
.main-slider-three .active .main-slider-three__shape-bg {
  visibility: visible;
  transform: translateX(0);
  transition-delay: 1100ms;
}
.main-slider-three .active .main-slider-three__left-image {
  visibility: visible;
  transform: translateX(0);
  transition-delay: 1400ms;
}
.main-slider-three .active .main-slider-three__video {
  opacity: 1;
  animation-name: rollInLeft;
  animation-delay: 1.6s;
}
.main-slider-three .active .main-slider-three__title {
  opacity: 1;
  animation-delay: 1.8s;
  animation-name: bounceInLeft;
}
.main-slider-three .active .main-slider-three__title-anim::after {
  transform: translateX(1%);
  transition-delay: 2000ms;
}
.main-slider-three .active .main-slider-three__btn {
  opacity: 1;
  animation-delay: 2s;
  animation-name: backInUp;
}
.main-slider-three .active .main-slider-three__arrow {
  opacity: 1;
  animation-delay: 2.3s;
  animation-name: backInUp;
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/
.feature-one {
  position: relative;
}
.feature-one__item {
  position: relative;
  overflow: hidden;
  background-color: var(--rofiex-white, #fff);
  filter: drop-shadow(0px 4px 12.5px rgba(0, 0, 0, 0.06));
  padding-bottom: 12px;
  transition: all 500ms ease;
}
.feature-one__item:hover {
  filter: drop-shadow(0px 4px 12.5px rgba(0, 0, 0, 0.1));
  padding-bottom: 44px;
}
.feature-one__item__top {
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--rofiex-border-color, #DDDDDD);
}
.feature-one__item__icon {
  width: 104px;
  height: 105px;
  background-color: var(--rofiex-gray, #F5F1EF);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  color: var(--rofiex-base, #FE574F);
  font-size: 55px;
  line-height: 1;
  transition: 400ms ease;
  border: 4px solid var(--rofiex-base, #FE574F);
  border-left: none;
  border-top: none;
}
.feature-one__item__icon i {
  display: inline-block;
  transform: scale(1);
  transition: 500ms ease;
}
.feature-one__item:hover .feature-one__item__icon {
  color: var(--rofiex-white, #fff);
  background-color: var(--rofiex-base, #FE574F);
}
.feature-one__item:hover .feature-one__item__icon i {
  transform: scale(0.9);
}
.feature-one__item__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
  text-transform: capitalize;
  margin: 0;
}
.feature-one__item__title span {
  transition: 400ms ease;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
}
.feature-one__item:hover .feature-one__item__title span {
  background-size: 100% 1px;
}
.feature-one__item__text {
  font-weight: 500;
  margin: 25px 25px 18px 30px;
}
.feature-one__item__rm {
  color: var(--rofiex-base, #FE574F);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  z-index: 1;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  left: 30px;
  position: absolute;
  bottom: 24px;
  transition: all 500ms ease;
  visibility: hidden;
  opacity: 0;
}
.feature-one__item__rm span {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  display: inline-block;
}
.feature-one__item__rm:hover {
  color: var(--rofiex-base, #FE574F);
}
.feature-one__item__rm:hover span {
  background-size: 100% 1px;
}
.feature-one__item__rm i {
  font-size: 12px;
  position: relative;
  top: 1px;
}
.feature-one__item:hover .feature-one__item__rm {
  visibility: visible;
  opacity: 1;
}

.feature-two {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .feature-two {
    padding: 80px 0;
  }
}
.feature-two__item {
  position: relative;
  z-index: 2;
  transition: 300ms ease;
  padding: 0 20px 20px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .feature-two__item {
    padding: 0 10px 10px;
  }
}
.feature-two__item:hover::after {
  background-color: var(--rofiex-base, #FE574F);
}
.feature-two__item:hover .feature-two__item__content {
  background-color: var(--rofiex-black, #000000);
  border-color: var(--rofiex-black, #000000);
  transform: translateY(-5px);
}
.feature-two__item:hover .feature-two__item__text,
.feature-two__item:hover .feature-two__item__title {
  color: var(--rofiex-white, #fff);
}
.feature-two__item::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 128px;
  background-color: var(--rofiex-gray, #F5F1EF);
  content: "";
  transition: 400ms ease;
  z-index: -1;
}
.feature-two__item__content {
  position: relative;
  padding: 28px 30px 25px;
  background-color: var(--rofiex-white, #fff);
  border: 1px solid var(--rofiex-border-color, #DDDDDD);
  border-radius: 10px;
  overflow: hidden;
  transition: 400ms ease;
}
.feature-two__item__icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  position: absolute;
  right: -35px;
  top: -35px;
  z-index: 1;
  color: var(--rofiex-base, #FE574F);
  background-color: rgba(var(--rofiex-base-rgb, 254, 87, 79), 0.15);
  font-size: 45px;
  line-height: 1;
  transition: 300ms ease;
  margin: auto;
  padding: 0 0 30px 28px;
}
.feature-two__item__icon::after {
  position: absolute;
  content: "";
  background-color: var(--rofiex-base, #FE574F);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: all 500ms ease;
}
.feature-two__item__icon::before {
  width: calc(100% + 18px);
  height: calc(100% + 18px);
  content: "";
  border: 1px dashed var(--rofiex-base, #FE574F);
  border-radius: 50%;
  position: absolute;
  bottom: -9px;
  left: -9px;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}
.feature-two__item__icon i {
  display: inline-block;
  transform: scale(1);
  transition: 500ms ease;
}
.feature-two__item:hover .feature-two__item__icon {
  color: var(--rofiex-white, #fff);
  border-color: var(--rofiex-base, #FE574F);
}
.feature-two__item:hover .feature-two__item__icon::after {
  height: 100%;
}
.feature-two__item:hover .feature-two__item__icon::before {
  border-color: var(--rofiex-white, #fff);
}
.feature-two__item:hover .feature-two__item__icon i {
  transform: scale(0.9);
}
.feature-two__item__title {
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  transition: 200ms ease;
  text-transform: capitalize;
  margin: 0 0 13px;
  padding-right: 60px;
}
.feature-two__item__text {
  font-weight: 500;
  transition: 200ms ease;
  margin: 0 0 14px;
}
.feature-two__item__rm {
  color: var(--rofiex-base, #FE574F);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  z-index: 1;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 200ms ease;
}
.feature-two__item__rm span {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 300ms ease;
  display: inline-block;
}
.feature-two__item__rm:hover {
  color: var(--rofiex-base, #FE574F);
}
.feature-two__item__rm:hover span {
  background-size: 100% 1px;
}
.feature-two__item__rm i {
  font-size: 12px;
  position: relative;
  top: 1px;
}
.feature-two__item:hover .feature-two__item__rm {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-one {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about-one {
    padding: 80px 0;
  }
}
.about-one__shape {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 404px;
  height: 436px;
  animation: movebounce2 4s linear infinite;
}
@media (max-width: 1500px) {
  .about-one__shape {
    display: none;
  }
}
.about-one__image {
  position: relative;
  z-index: 1;
  display: inline-block;
}
.about-one__image img {
  max-width: 100%;
  height: 100%;
}
.about-one__image__shape-one {
  position: absolute;
  left: -25px;
  top: -25px;
  width: 64px;
  height: 98px;
  z-index: -1;
  animation: startIconOne 1.2s infinite alternate;
}
@media (max-width: 1299px) {
  .about-one__image__shape-one {
    display: none;
  }
}
.about-one__image__shape-two {
  position: absolute;
  right: -25px;
  bottom: -25px;
  width: 64px;
  height: 98px;
  z-index: -1;
  animation: startIconOne 1s infinite alternate;
}
@media (max-width: 1299px) {
  .about-one__image__shape-two {
    display: none;
  }
}
.about-one__experiance {
  position: absolute;
  right: 21px;
  bottom: 21px;
  z-index: 2;
  width: 177px;
  height: 177px;
  background-color: var(--rofiex-base, #FE574F);
  border: 6px solid var(--rofiex-white, #fff);
  border-radius: 10px;
  padding: 19px 15px 15px;
  text-align: center;
}
.about-one__experiance__years {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rofiex-white, #fff);
  font-size: 65px;
  font-weight: 700;
  line-height: 1;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
}
.about-one__experiance__text {
  color: var(--rofiex-white, #fff);
  font-size: 22px;
  font-weight: 500;
  line-height: 25px;
  text-transform: capitalize;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  margin: 8px 0 0;
}
.about-one__content {
  position: relative;
  padding: 0 0 0;
}
@media (max-width: 991px) {
  .about-one__content {
    padding: 45px 0 0;
  }
}
.about-one__content .sec-title {
  padding-bottom: 21px;
}
.about-one__content__text {
  font-weight: 500;
  margin: 0 0 27px;
}
.about-one__content__list {
  margin: 0 0 44px;
  padding: 0;
}
.about-one__content__list li {
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  text-transform: capitalize;
  font-weight: 700;
  font-size: 22px;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  color: var(--rofiex-black, #000000);
  border-top: 1px solid var(--rofiex-border-color, #DDDDDD);
  border-bottom: 1px solid var(--rofiex-border-color, #DDDDDD);
  margin-bottom: -1px;
  padding: 30px 0;
}
@media (max-width: 767px) {
  .about-one__content__list li {
    font-size: 18px;
  }
}
.about-one__content__list li:hover .about-one__content__list__icon {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}
.about-one__content__list li:hover .about-one__content__list__icon i {
  transform: rotateY(180deg);
}
.about-one__content__list li img {
  position: absolute;
  right: 0;
  bottom: 0;
  clip-path: polygon(25% 0%, 100% 1%, 100% 100%, 25% 100%, 0% 50%);
}
@media (max-width: 767px) {
  .about-one__content__list li img {
    display: none;
  }
}
.about-one__content__list__icon {
  width: 87px;
  height: 87px;
  background-color: var(--rofiex-gray, #F5F1EF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 45px;
  color: var(--rofiex-base, #FE574F);
  transition: all 0.4s ease;
}
.about-one__content__list__icon i {
  display: inline-block;
  transition: all 0.6s ease;
}

.about-two {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .about-two {
    padding: 80px 0;
  }
}
.about-two__image {
  position: relative;
}
@media (max-width: 1199px) {
  .about-two__image {
    max-width: 570px;
  }
}
.about-two__image img {
  width: 100%;
  height: auto;
}
.about-two__experiance {
  position: absolute;
  left: 0;
  right: 0;
  top: 100px;
  bottom: 0;
  margin: auto;
  width: 190px;
  height: 190px;
  background-color: var(--rofiex-white, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 0 0 0;
}
@media (max-width: 767px) {
  .about-two__experiance {
    top: auto;
    bottom: 70px;
  }
}
.about-two__experiance::after {
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  content: "";
  border: 1px dashed var(--rofiex-base, #FE574F);
  border-radius: 50%;
  left: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  animation: textRotate 15s linear 0s forwards infinite alternate;
}
.about-two__experiance__text {
  font-size: 20px;
  font-weight: 500;
  color: var(--rofiex-base, #FE574F);
  line-height: 25px;
  text-transform: capitalize;
  margin: 2px 0 0;
}
.about-two__experiance__text br {
  display: block;
}
.about-two__experiance__years {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  font-size: 50px;
  font-weight: 700;
  color: var(--rofiex-base, #FE574F);
  line-height: 1;
  gap: 8px;
}
.about-two__content {
  position: relative;
  padding: 0;
}
@media (max-width: 1199px) {
  .about-two__content {
    margin: 0 0 45px;
  }
}
.about-two__content .sec-title {
  padding-bottom: 20px;
}
.about-two__content__text {
  font-weight: 500;
  margin: 0 0 35px;
}
@media (min-width: 1200px) {
  .about-two__content__text {
    padding-right: 50px;
  }
}
.about-two__content__box {
  position: relative;
  padding: 0 0 0 100px;
  min-height: 78px;
}
.about-two__content__box__icon {
  width: 78px;
  height: 78px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rofiex-white, #fff);
  font-size: 42px;
  background-color: var(--rofiex-base, #FE574F);
  position: absolute;
  left: 0;
  top: 0;
}
.about-two__content__box__icon i {
  display: inline-block;
  transition: all 500ms ease;
}
.about-two__content__box:hover .about-two__content__box__icon i {
  transform: rotateY(180deg);
}
.about-two__content__box__title {
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 700;
  margin: 0 0 5px;
}
.about-two__content__box__text {
  font-weight: 500;
  margin: 0;
}
@media (min-width: 1200px) {
  .about-two__content__box__text {
    padding-right: 50px;
  }
}
.about-two__content__box-border {
  margin-top: 25px;
  border-top: 1px solid var(--rofiex-border-color, #DDDDDD);
  padding-top: 25px;
  margin-right: 50px;
}
.about-two__content__info-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 45px;
}
@media (max-width: 767px) {
  .about-two__content__info-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}
.about-two__content__info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-two__content__info__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 20px;
  color: var(--rofiex-base, #FE574F);
  background-color: transparent;
  border: 1px solid var(--rofiex-base, #FE574F);
  transition: all 400ms ease;
}
.about-two__content__info:hover .about-two__content__info__icon {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
}
.about-two__content__info__title {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}
.about-two__content__info__number {
  font-size: 24px;
  font-weight: 600;
  color: var(--rofiex-base, #FE574F);
  margin: 0;
}
.about-two__content__info__number a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.about-two__content__info__number a:hover {
  background-size: 100% 1px;
}
.about-two__content__info__number a:hover {
  color: var(--rofiex-black, #000000);
}

.about-three {
  position: relative;
  padding: 0 0 120px;
}
@media (max-width: 767px) {
  .about-three {
    padding: 0 0 80px;
  }
}
.about-three__shape {
  position: absolute;
  right: -20px;
  bottom: -190px;
  width: 100%;
  height: 100%;
  background-position: right bottom;
  background-repeat: no-repeat;
  animation: movebounce2 3s linear 0s infinite;
}
@media (max-width: 1300px) {
  .about-three__shape {
    display: none;
  }
}
.about-three__image {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 24px;
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 1300px) {
  .about-three__image {
    margin-right: 15px;
  }
}
@media (max-width: 1199px) {
  .about-three__image {
    justify-content: flex-start;
    max-width: 660px;
    margin-left: 35px;
  }
}
@media (max-width: 767px) {
  .about-three__image {
    gap: 10px;
    margin: 0 15px;
  }
}
.about-three__image img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .about-three__image img {
    min-height: auto;
  }
}
.about-three__experiance {
  position: absolute;
  right: 145px;
  top: 0;
  bottom: 0;
  width: 364px;
  height: 81px;
  margin: auto;
  background-color: var(--rofiex-base, #FE574F);
  border: 6px solid var(--rofiex-white, #fff);
  border-radius: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
  padding: 0 20px;
}
@media (max-width: 500px) {
  .about-three__experiance {
    width: calc(100% - 30px);
    right: auto;
    left: 20px;
  }
}
.about-three__experiance__text {
  font-size: 20px;
  font-weight: 500;
  color: var(--rofiex-white, #fff);
  line-height: 25px;
  text-transform: capitalize;
  margin: 0 0 0;
}
.about-three__experiance__years {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--rofiex-white, #fff);
  line-height: 1;
  gap: 0;
}
.about-three__content {
  position: relative;
  padding: 0;
}
@media (max-width: 1199px) {
  .about-three__content {
    padding: 45px 0 0;
  }
}
.about-three__content .sec-title {
  padding-bottom: 20px;
}
.about-three__content__text {
  font-weight: 500;
  margin: 0 0 26px;
}
.about-three__content__box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--rofiex-border-color, #DDDDDD);
  border-bottom: 1px solid var(--rofiex-border-color, #DDDDDD);
  padding: 30px 0;
  margin: 0 0 23px;
}
@media (max-width: 767px) {
  .about-three__content__box {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.about-three__content__box__item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.about-three__content__box__item__icon {
  font-size: 45px;
  line-height: 45px;
  color: var(--rofiex-base, #FE574F);
  flex-shrink: 0;
  transform: scale(1);
  transition: 500ms ease;
}
.about-three__content__box__item:hover .about-three__content__box__item__icon {
  transform: scale(0.95);
}
.about-three__content__box__item__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 0;
}
.about-three__content__box__item__text {
  font-weight: 500;
  margin: 0;
}
.about-three__content__box__item + .about-three__content__box__item {
  position: relative;
}
.about-three__content__box__item + .about-three__content__box__item::after {
  position: absolute;
  left: -25px;
  top: 0;
  height: 51px;
  width: 2px;
  content: "";
  background-color: var(--rofiex-base, #FE574F);
}
.about-three__content__list {
  margin: 0 0 39px;
  padding: 0;
}
.about-three__content__list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  line-height: 30px;
  font-weight: 500;
  color: var(--rofiex-black3, #333333);
  margin: 0 0 8px;
}
.about-three__content__list li i {
  line-height: 1;
  position: relative;
  top: 1px;
  display: inline-block;
  color: var(--rofiex-base, #FE574F);
  transition: all 0.6s ease;
}
.about-three__content__list li:hover i {
  transform: rotateY(180deg);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service-one {
  position: relative;
  background-color: var(--rofiex-gray, #F5F1EF);
  padding: 120px 0;
  counter-reset: count;
}
.service-one__shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .service-one {
    padding: 80px 0;
  }
}
.service-one__item {
  position: relative;
  z-index: 2;
  counter-increment: count;
  margin-top: 88px;
}
.service-one__item__icon {
  position: absolute;
  left: 0;
  right: 0;
  top: -50px;
  z-index: 3;
  width: 90px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  font-size: 45px;
  color: var(--rofiex-white, #fff);
  background-color: var(--rofiex-base, #FE574F);
  margin: 0 auto;
  transition: all 500ms ease;
}
.service-one__item__icon i {
  top: -12px;
  position: relative;
  display: inline-block;
}
.service-one__item__icon::after {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: 38px;
  top: -38px;
  left: -10px;
  background-color: var(--rofiex-base, #FE574F);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: -1;
  transition: all 400ms ease;
}
.service-one__item:hover .service-one__item__icon {
  animation-name: wobble-horizontal-on-hover;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}
.service-one__item__inner {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: var(--rofiex-white, #fff);
  border-radius: 10px;
  padding: 40px 30px 0;
  text-align: center;
  transition: all 500ms ease;
}
.service-one__item__title {
  position: relative;
  z-index: 2;
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 15px;
}
.service-one__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-one__item__title a:hover {
  background-size: 100% 1px;
}
.service-one__item__title a:hover {
  color: var(--rofiex-base, #FE574F);
}
.service-one__item:hover .service-one__item__title {
  color: var(--rofiex-white, #fff);
}
.service-one__item__text {
  position: relative;
  z-index: 2;
  font-weight: 500;
  transition: all 300ms ease;
  margin: 0 0 18px;
}
.service-one__item:hover .service-one__item__text {
  color: var(--rofiex-white, #fff);
}
.service-one__item__rm {
  color: var(--rofiex-black3, #333333);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  z-index: 1;
  position: relative;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.service-one__item__rm span {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  display: inline-block;
}
.service-one__item__rm:hover span {
  background-size: 100% 1px;
}
.service-one__item__rm i {
  color: var(--rofiex-base, #FE574F);
  font-size: 20px;
  transition: all 0.3s ease;
}
.service-one__item:hover .service-one__item__rm {
  color: var(--rofiex-base, #FE574F);
}
.service-one__item__number {
  position: relative;
  z-index: 2;
  font-size: 50px;
  font-weight: 700;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  line-height: 1;
  color: rgba(var(--rofiex-black-rgb, 0, 0, 0), 0.2);
  transition: all 300ms ease;
  margin: 15px 0 -17px;
}
.service-one__item__number::before {
  content: counters(count, ".", decimal-leading-zero);
  position: relative;
  display: inline-block;
}
.service-one__item__number::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -88px;
  margin: 0 auto;
  background-color: rgba(var(--rofiex-base-rgb, 254, 87, 79), 0.2);
  width: 118px;
  height: 118px;
  content: "";
  border-radius: 50%;
  transition: all 300ms ease;
  z-index: -1;
}
.service-one__item:hover .service-one__item__number {
  color: var(--rofiex-white, #fff);
}
.service-one__item:hover .service-one__item__number::after {
  background-color: rgba(var(--rofiex-base-rgb, 254, 87, 79), 1);
}
.service-one__item__hover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.5s;
  transform: translatex(50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}
.service-one__item__hover::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--rofiex-black2-rgb, 34, 34, 34), 0.8);
}
.service-one__item:hover .service-one__item__hover {
  transform: translatex(0) scalex(1);
  opacity: 1;
  filter: blur(0);
}
.service-one--page {
  background-color: transparent;
}
.service-one--page .service-one__item__inner {
  background-color: var(--rofiex-gray, #F5F1EF);
}
.service-one--page .service-one__item__icon {
  border-color: var(--rofiex-gray, #F5F1EF);
}

.service-two {
  position: relative;
  padding: 120px 0;
  counter-reset: count;
}
.service-two__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 567px;
  background-color: var(--rofiex-black, #000000);
}
@media (max-width: 767px) {
  .service-two {
    padding: 80px 0;
  }
}
.service-two__item {
  position: relative;
  z-index: 2;
  transition: all 500ms ease;
  margin: 0 0 20px;
}
.service-two__item::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background-color: var(--rofiex-gray, #F5F1EF);
  clip-path: polygon(100% 0, 100% 88%, 50% 100%, 0 88%, 0 0);
}
.service-two__item::before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
  background-color: var(--rofiex-base, #FE574F);
  clip-path: polygon(100% 0, 100% 88%, 50% 100%, 0 88%, 0 0);
  transition: all 0.4s ease;
  opacity: 0;
}
.service-two__item:hover::before {
  opacity: 1;
  clip-path: polygon(100% 0, 100% 92%, 50% 100%, 0 92%, 0 0);
}
.service-two__item__image {
  position: relative;
}
.service-two__item__image img {
  width: 100%;
  height: auto;
}
.service-two__item__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 28px 70px;
}
.service-two__item__icon {
  background-color: var(--rofiex-base, #FE574F);
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 2;
  width: 80px;
  height: 60px;
  font-size: 50px;
  color: var(--rofiex-white, #fff);
  margin: 0 auto;
}
.service-two__item__icon::after {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: 38px;
  top: -38px;
  left: -10px;
  background-color: var(--rofiex-base, #FE574F);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: -1;
}
.service-two__item__icon i {
  display: inline-block;
  top: -5px;
  position: relative;
  transition: all 500ms ease;
}
.service-two__item:hover .service-two__item__icon i {
  transform: rotateY(180deg);
}
.service-two__item__title {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 25px 0 15px;
}
.service-two__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-two__item__title a:hover {
  background-size: 100% 1px;
}
.service-two__item__title a:hover {
  color: var(--rofiex-base, #FE574F);
}
.service-two__item__text {
  font-weight: 500;
  margin: 0;
}
@media (max-width: 991px) {
  .service-two__item__text {
    margin: 16px 0 20px;
  }
}
.service-two__item__rm {
  width: 48px;
  height: 48px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
  font-size: 14px;
  transition: all 0.4s ease;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  margin: 0 auto;
}
.service-two__item__rm:hover {
  background-color: var(--rofiex-black, #000000);
  color: var(--rofiex-white, #fff);
  transform: rotate(45deg);
}
.service-two .rofiex-owl__carousel--basic-nav.owl-carousel .owl-nav {
  position: absolute;
  right: 0;
  top: -130px;
  margin: 0;
}
@media (max-width: 767px) {
  .service-two .rofiex-owl__carousel--basic-nav.owl-carousel .owl-nav {
    position: relative;
    top: 0;
    margin-top: 40px;
  }
  .service-two .rofiex-owl__carousel--basic-nav.owl-carousel .owl-nav button {
    border-color: var(--rofiex-border-color, #DDDDDD);
    color: var(--rofiex-black, #000000);
  }
  .service-two .rofiex-owl__carousel--basic-nav.owl-carousel .owl-nav button:hover {
    border-color: var(--rofiex-base, #FE574F);
    color: var(--rofiex-white, #fff);
  }
}

.service-three {
  position: relative;
  background-color: var(--rofiex-black, #000000);
  padding: 290px 0 120px;
  overflow: hidden;
  counter-reset: count;
}
.service-three__shape {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media (max-width: 1199px) {
  .service-three__shape {
    display: none;
  }
}
@media (max-width: 767px) {
  .service-three {
    padding: 250px 0 80px;
  }
}
.service-three__item {
  position: relative;
  z-index: 2;
  transition: all 500ms ease;
  margin: 0;
}
.service-three__item__icon {
  background-color: var(--rofiex-base, #FE574F);
  display: flex;
  align-items: baseline;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 2;
  width: 80px;
  height: 60px;
  font-size: 50px;
  color: var(--rofiex-white, #fff);
  margin: 40px auto 0;
}
.service-three__item__icon::after {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: 38px;
  top: -38px;
  left: -10px;
  background-color: var(--rofiex-base, #FE574F);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  z-index: -1;
}
.service-three__item__icon i {
  display: inline-block;
  top: -5px;
  position: relative;
  transition: all 500ms ease;
}
.service-three__item:hover .service-three__item__icon i {
  transform: rotateY(180deg);
}
.service-three__item__image {
  position: relative;
}
.service-three__item__image img {
  width: 100%;
  height: auto;
}
.service-three__item__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 44px 28px 38px;
  background-color: var(--rofiex-white, #fff);
  transition: all 500ms ease;
}
.service-three__item__content::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  content: "";
  z-index: -1;
  background-color: var(--rofiex-base, #FE574F);
  transition: all 500ms ease;
  opacity: 0;
}
.service-three__item:hover .service-three__item__content::after {
  height: 100%;
  opacity: 1;
}
.service-three__item__title {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 15px;
}
.service-three__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.service-three__item__title a:hover {
  background-size: 100% 1px;
}
.service-three__item:hover .service-three__item__title {
  color: var(--rofiex-white, #fff);
}
.service-three__item__text {
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 0;
}
.service-three__item:hover .service-three__item__text {
  color: var(--rofiex-white, #fff);
}
.service-three__item__rm {
  width: 48px;
  height: 48px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
  font-size: 14px;
  transition: all 0.4s ease;
  position: absolute;
  left: 0;
  right: 0;
  top: -24px;
  margin: 0 auto;
}
.service-three__item__rm:hover {
  background-color: var(--rofiex-white, #fff);
  color: var(--rofiex-base, #FE574F);
  transform: rotate(45deg);
}

/*--------------------------------------------------------------
# Service details
--------------------------------------------------------------*/
.service-details {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .service-details {
    padding: 80px 0;
  }
}
.service-details__thumbnail {
  margin-bottom: 24px;
}
.service-details__thumbnail img {
  width: 100%;
}
.service-details__title {
  margin: 0;
  text-transform: capitalize;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 16px;
}
.service-details__title-two {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 16px;
}
.service-details__text {
  margin: 0 0 18px;
  font-weight: 500;
}
.service-details__quote {
  background-color: var(--rofiex-gray, #F5F1EF);
  border-left: 6px solid var(--rofiex-base, #FE574F);
  padding: 21px 25px 22px;
  font-size: 20px;
  line-height: 35px;
  font-weight: 500;
  color: var(--rofiex-black, #000000);
  margin: 30px 0 28px;
}
.service-details__list {
  margin: 0;
  padding: 0;
}
.service-details__list li {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--rofiex-black, #000000);
}
.service-details__list li + li {
  margin-top: 8px;
}
.service-details__list li > i {
  color: var(--rofiex-base, #FE574F);
}
.service-details .mb {
  margin-top: -21px;
  margin-bottom: 32px;
}
.service-details__video {
  position: relative;
  margin-top: 6px;
}
.service-details__video img {
  width: 100%;
  height: auto;
}
.service-details__video .video-popup {
  width: 47px;
  height: 47px;
  transition: all 500ms ease;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
}
.service-details__video .video-popup i {
  background-color: var(--rofiex-white, #fff);
  border-radius: 50%;
  z-index: 2;
  width: 47px;
  height: 47px;
  transition: all 500ms ease;
  font-size: 14px;
  color: var(--rofiex-base, #FE574F);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-details__video .video-popup .ripple {
  content: "";
  border: 1px solid var(--rofiex-white, #fff);
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(100% + 25px);
  height: calc(100% + 25px);
  border-radius: 50%;
  animation: videoZoom 3s linear infinite;
  animation-delay: 0s;
  animation-delay: 0.55s;
}
.service-details__video .video-popup .ripple::after {
  content: "";
  border: 1px solid var(--rofiex-white, #fff);
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(100% + 50px);
  height: calc(100% + 50px);
  border-radius: 50%;
  animation: videoZoom 1.5s linear infinite;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.service-details__video .video-popup:hover i {
  color: var(--rofiex-white, #fff);
  background-color: var(--rofiex-base, #FE574F);
}
.service-details .faq-one__accordion {
  margin: 53px 0 0;
}
.service-details .faq-one__accordion .accrodion {
  border-radius: 10px;
  filter: drop-shadow(0px 4px 15px rgba(0, 0, 0, 0.05));
  background-color: var(--rofiex-white, #fff);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio-one {
  padding: 245px 0 120px;
  position: relative;
  counter-reset: count;
}
@media (max-width: 767px) {
  .portfolio-one {
    padding: 205px 0 80px;
  }
}
.portfolio-one--page {
  padding: 120px 0;
}
@media (max-width: 767px) {
  .portfolio-one--page {
    padding: 80px 0;
  }
}
.portfolio-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 708px;
}
.portfolio-one__bg::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--rofiex-black2-rgb, 34, 34, 34), 0.8);
}
.portfolio-one__carousel {
  position: relative;
  padding: 0 35px;
}
@media (max-width: 991px) {
  .portfolio-one__carousel {
    padding: 0 25px;
  }
}
.portfolio-one__item {
  position: relative;
  overflow: hidden;
  counter-increment: count;
}
.portfolio-one__item::after {
  background: linear-gradient(90deg, rgba(var(--rofiex-white-rgb, 255, 255, 255), 0.05) 0px, rgba(var(--rofiex-white-rgb, 255, 255, 255), 0.05) 77%, rgba(var(--rofiex-white-rgb, 255, 255, 255), 0.25) 92%, rgba(var(--rofiex-white-rgb, 255, 255, 255), 0));
  content: "";
  height: 200%;
  left: -210%;
  opacity: 0;
  position: absolute;
  top: -50%;
  transition: all 0.7s ease 0s;
  width: 200%;
}
.portfolio-one__item:hover::after {
  left: -30%;
  opacity: 1;
  top: -20%;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-property: left, top, opacity;
  transition-timing-function: linear;
}
.portfolio-one__item img {
  width: 100%;
  height: auto;
  transition: all 400ms ease;
}
.portfolio-one__item__content {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  background-color: rgba(var(--rofiex-black2-rgb, 34, 34, 34), 0.8);
  padding: 20px;
  transform: scale(1, 0);
  transition: transform 500ms ease;
  transform-origin: bottom center;
  overflow: hidden;
}
@media (min-width: 1200px) and (max-width: 1350px) {
  .portfolio-one__item__content {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
@media (max-width: 991px) {
  .portfolio-one__item__content {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
  }
}
@media (max-width: 450px) {
  .portfolio-one__item__content {
    padding: 10px;
  }
}
.portfolio-one__item__content__inner {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  padding: 33px 40px 30px;
}
@media (max-width: 450px) {
  .portfolio-one__item__content__inner {
    padding: 23px 30px 20px;
  }
}
.portfolio-one__item__content__item {
  position: absolute;
  background-color: var(--rofiex-base, #FE574F);
}
.portfolio-one__item__content__item:nth-child(1) {
  top: -1px;
  left: 0;
  width: 100%;
  height: 6px;
  animation: 2s animateTop linear infinite;
}
.portfolio-one__item__content__item:nth-child(2) {
  top: 0;
  right: 0;
  height: 100%;
  width: 6px;
  animation: 2s animateRight linear -1s infinite;
}
.portfolio-one__item__content__item:nth-child(3) {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
  animation: 2s animateBottom linear infinite;
}
.portfolio-one__item__content__item:nth-child(4) {
  top: 0;
  left: 0;
  height: 100%;
  width: 6px;
  animation: 2s animateLeft linear -1s infinite;
}
.portfolio-one__item:hover .portfolio-one__item__content {
  transform-origin: top center;
  transform: scale(1, 1);
}
.portfolio-one__item__title {
  margin: 0 0 12px;
  position: relative;
  z-index: 2;
  font-weight: 700;
  color: var(--rofiex-white, #fff);
  text-transform: capitalize;
  font-size: 22px;
  line-height: 30px;
}
.portfolio-one__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.portfolio-one__item__title a:hover {
  background-size: 100% 1px;
}
.portfolio-one__item__title a:hover {
  color: var(--rofiex-base, #FE574F);
}
.portfolio-one__item__text {
  position: relative;
  z-index: 2;
  color: var(--rofiex-white, #fff);
  font-weight: 500;
  margin: 0 0 15px;
}
.portfolio-one__item__number {
  position: absolute;
  right: 58px;
  bottom: 50px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--rofiex-special-font, "Work Sans", sans-serif);
  font-size: 70px;
  color: transparent;
  -webkit-text-stroke: 2px var(--rofiex-white, #fff);
}
@media (max-width: 575px) {
  .portfolio-one__item__number {
    font-size: 50px;
  }
}
.portfolio-one__item__number::before {
  content: counters(count, ".", decimal-leading-zero);
  display: inline-block;
}
.portfolio-one__item__rm {
  position: relative;
  z-index: 2;
  color: var(--rofiex-base, #FE574F);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
}
.portfolio-one__item__rm span {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  display: inline-block;
}
.portfolio-one__item__rm:hover {
  color: var(--rofiex-white, #fff);
}
.portfolio-one__item__rm:hover span {
  background-size: 100% 1px;
}
.portfolio-one__item__rm i {
  font-size: 20px;
}

.portfolio-two {
  padding: 120px 0;
  background-color: var(--rofiex-gray, #F5F1EF);
  position: relative;
}
@media (max-width: 767px) {
  .portfolio-two {
    padding: 80px 0;
  }
}
.portfolio-two__wrapper {
  display: flex;
  width: 100%;
  gap: 30px;
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  .portfolio-two__wrapper {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .portfolio-two__wrapper {
    flex-direction: column;
  }
}
.portfolio-two__item {
  position: relative;
  overflow: hidden;
  flex: 1;
  overflow: hidden;
  transition: 0.4s;
  margin: 0;
  line-height: 0;
  height: 479px;
}
@media (max-width: 767px) {
  .portfolio-two__item {
    height: auto;
  }
}
.portfolio-two__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  pointer-events: none;
  background: linear-gradient(transparent, var(--rofiex-black2, #222222) 80%, var(--rofiex-black2, #222222) 80%);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 2;
}
.portfolio-two__item.active::after {
  height: 100%;
}
.portfolio-two__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.4s;
}
.portfolio-two__item.active {
  flex: 1 1 17.1%;
}
@media (max-width: 1199px) {
  .portfolio-two__item.active {
    flex: 1 1 22%;
  }
}
@media (max-width: 991px) {
  .portfolio-two__item.active {
    flex: 1 1 38%;
  }
}
.portfolio-two__item.active .portfolio-two__item__text {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 400ms;
}
.portfolio-two__item.active .portfolio-two__item__title {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 300ms;
}
.portfolio-two__item.active .portfolio-two__item__rm {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 200ms;
}
.portfolio-two__item__content {
  position: absolute;
  z-index: 9;
  left: 0;
  bottom: 0;
  padding: 30px;
}
.portfolio-two__item__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--rofiex-text, #636363);
  margin: 0 0 3px;
  text-transform: capitalize;
  padding: 1px 20px;
  background-color: var(--rofiex-white, #fff);
  display: inline-block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 700ms ease;
}
.portfolio-two__item__title {
  margin: 0 0 24px;
  padding: 8px 20px;
  background-color: var(--rofiex-white, #fff);
  display: inline-block;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 22px;
  line-height: 30px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 600ms ease;
}
.portfolio-two__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.portfolio-two__item__title a:hover {
  background-size: 100% 1px;
}
.portfolio-two__item__title a:hover {
  color: var(--rofiex-base, #FE574F);
}
.portfolio-two__item__rm {
  position: relative;
  z-index: 2;
  width: 48px;
  height: 48px;
  background-color: var(--rofiex-base, #FE574F);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  color: var(--rofiex-white, #fff);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-50px);
  transition: all 500ms ease;
}
.portfolio-two__item__rm i {
  display: inline-block;
  transition: all 400ms ease;
}
.portfolio-two__item__rm:hover i {
  transform: rotate(45deg);
}

.portfolio-three {
  padding: 120px 0 90px;
  position: relative;
}
@media (max-width: 767px) {
  .portfolio-three {
    padding: 80px 0 50px;
  }
}
.portfolio-three__btn {
  position: relative;
  text-align: right;
  margin: 58px 0 0;
}
@media (max-width: 991px) {
  .portfolio-three__btn {
    margin: 0 0 45px;
    text-align: left;
  }
}
.portfolio-three .post-filter {
  position: relative;
  height: 479px;
  z-index: 2;
  margin: 0;
  padding: 29px 0 29px 40px;
  list-style: none;
  text-align: right;
}
@media (max-width: 991px) {
  .portfolio-three .post-filter {
    margin: 0 0 30px;
  }
}
.portfolio-three .post-filter::after {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: calc(100% - 100px);
  content: "";
  background-color: var(--rofiex-black, #000000);
}
.portfolio-three .post-filter li {
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: 0.4s;
  background-color: var(--rofiex-white, #fff);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 27px;
  border: 1px solid var(--rofiex-border-color, #DDDDDD);
  padding: 18px 45px;
  font-size: 22px;
  color: var(--rofiex-black, #000000);
  font-weight: 700;
  text-transform: capitalize;
}
@media (max-width: 991px) {
  .portfolio-three .post-filter li {
    padding: 18px 35px;
  }
}
.portfolio-three .post-filter li i {
  font-size: 45px;
  color: var(--rofiex-base, #FE574F);
  transition: 0.4s;
}
.portfolio-three .post-filter li:hover, .portfolio-three .post-filter li.active {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
  border-color: var(--rofiex-base, #FE574F);
}
.portfolio-three .post-filter li:hover i, .portfolio-three .post-filter li.active i {
  color: var(--rofiex-white, #fff);
}
.portfolio-three .post-filter li + li {
  margin-top: 30px;
}
.portfolio-three__item {
  position: relative;
  overflow: hidden;
  transition: 0.4s;
  margin: 0;
  height: 479px;
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .portfolio-three__item {
    height: auto;
  }
}
.portfolio-three__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  pointer-events: none;
  background: linear-gradient(transparent, var(--rofiex-black2, #222222) 80%, var(--rofiex-black2, #222222) 80%);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 2;
}
.portfolio-three__item:hover::after {
  height: 100%;
}
.portfolio-three__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.4s;
}
@media (max-width: 767px) {
  .portfolio-three__item img {
    min-height: 300px;
  }
}
.portfolio-three__item:hover .portfolio-three__item__text {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 100ms;
}
.portfolio-three__item:hover .portfolio-three__item__title {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 300ms;
}
.portfolio-three__item:hover .portfolio-three__item__rm {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 400ms;
}
.portfolio-three__item__content {
  position: absolute;
  z-index: 9;
  left: 0;
  bottom: 0;
  padding: 30px;
}
.portfolio-three__item__text {
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: var(--rofiex-text, #636363);
  margin: 0 0 3px;
  text-transform: capitalize;
  padding: 1px 20px;
  background-color: var(--rofiex-white, #fff);
  display: inline-block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(50px);
  transition: all 500ms ease;
}
.portfolio-three__item__title {
  margin: 0 0 24px;
  padding: 8px 20px;
  background-color: var(--rofiex-white, #fff);
  display: inline-block;
  font-weight: 700;
  text-transform: capitalize;
  font-size: 20px;
  line-height: 30px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 400ms ease;
}
.portfolio-three__item__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.portfolio-three__item__title a:hover {
  background-size: 100% 1px;
}
.portfolio-three__item__title a:hover {
  color: var(--rofiex-base, #FE574F);
}
.portfolio-three__item__rm {
  position: relative;
  z-index: 2;
  color: var(--rofiex-base, #FE574F);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  visibility: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 300ms ease;
}
.portfolio-three__item__rm span {
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
  display: inline-block;
}
.portfolio-three__item__rm:hover {
  color: var(--rofiex-white, #fff);
}
.portfolio-three__item__rm:hover span {
  background-size: 100% 1px;
}
.portfolio-three__item__rm i {
  font-size: 20px;
}

/*--------------------------------------------------------------
# Portfolio details
--------------------------------------------------------------*/
.portfolio-details {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .portfolio-details {
    padding: 80px 0;
  }
}
.portfolio-details__image {
  position: relative;
  margin: 0 0 30px;
}
.portfolio-details__image img {
  width: 100%;
  height: auto;
}
.portfolio-details__title {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 16px;
}
.portfolio-details__content {
  position: relative;
}
.portfolio-details__content__title {
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0 0 16px;
}
.portfolio-details__content__title.mt {
  margin-top: 24px;
}
.portfolio-details__content__text {
  font-weight: 500;
  margin: 0 0 20px;
}
.portfolio-details__content__list {
  margin: 25px 0 37px;
  padding: 0;
  list-style: none;
}
.portfolio-details__content__list li {
  font-size: 16px;
  line-height: 28px;
  color: var(--rofiex-black, #000000);
  font-weight: 600;
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.portfolio-details__content__list li i {
  color: var(--rofiex-base, #FE574F);
  display: inline-block;
}
.portfolio-details__content__image {
  position: relative;
}
.portfolio-details__content__image img {
  width: 100%;
  height: auto;
}
.portfolio-details__content__image .video-popup {
  width: 62px;
  height: 62px;
  transition: all 500ms ease;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
}
.portfolio-details__content__image .video-popup i {
  background-color: var(--rofiex-white, #fff);
  border-radius: 50%;
  z-index: 2;
  width: 62px;
  height: 62px;
  transition: all 500ms ease;
  font-size: 16px;
  color: var(--rofiex-base, #FE574F);
  display: flex;
  align-items: center;
  justify-content: center;
}
.portfolio-details__content__image .video-popup .ripple {
  content: "";
  border: 1px solid var(--rofiex-white, #fff);
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(100% + 25px);
  height: calc(100% + 25px);
  border-radius: 50%;
  animation: videoZoom 3s linear infinite;
  animation-delay: 0s;
  animation-delay: 0.55s;
}
.portfolio-details__content__image .video-popup .ripple::after {
  content: "";
  border: 1px solid var(--rofiex-white, #fff);
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: calc(100% + 50px);
  height: calc(100% + 50px);
  border-radius: 50%;
  animation: videoZoom 1.5s linear infinite;
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.portfolio-details__content__image .video-popup:hover i {
  color: var(--rofiex-white, #fff);
  background-color: var(--rofiex-base, #FE574F);
}
.portfolio-details__content .mb {
  margin-bottom: 21px;
}
.portfolio-details__info {
  position: relative;
  background-color: var(--rofiex-gray, #F5F1EF);
}
.portfolio-details__info__title {
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
  font-size: 22px;
  font-weight: 700;
  text-transform: capitalize;
  margin: 0;
  padding: 20px 30px;
}
.portfolio-details__info__list {
  margin: 0;
  padding: 22px 30px;
  list-style: none;
}
.portfolio-details__info__list li {
  display: block;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--rofiex-text, #636363);
}
.portfolio-details__info__list li span {
  display: block;
  color: var(--rofiex-black, #000000);
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  font-weight: 700;
  margin: 0 0 5px;
}
.portfolio-details__info__list li + li {
  border-top: 1px solid var(--rofiex-border-color, #DDDDDD);
  padding: 22px 0 0;
  margin: 23px 0 0;
}
.portfolio-details__service {
  margin-top: 40px;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 25px 30px 30px;
}
.portfolio-details__service::after {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(var(--rofiex-black-rgb, 0, 0, 0), 0.8);
}
.portfolio-details__service__price {
  position: relative;
  z-index: 1;
  font-size: 50px;
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  line-height: 1;
  font-weight: 700;
  color: var(--rofiex-base, #FE574F);
  margin-bottom: 18px;
}
.portfolio-details__service__title {
  position: relative;
  z-index: 1;
  color: var(--rofiex-white, #fff);
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 8px;
}
.portfolio-details__service__text {
  position: relative;
  z-index: 1;
  color: var(--rofiex-white, #fff);
  margin: 0 0 82px;
}
.portfolio-details__service .rofiex-btn {
  border-radius: 0;
}
.portfolio-details__service .rofiex-btn::after {
  background-color: var(--rofiex-white, #fff);
}
.portfolio-details__service .rofiex-btn:hover {
  color: var(--rofiex-base, #FE574F);
}
.portfolio-details .funfact-one__list {
  margin: 60px 0 0;
}

/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/
body.boxed-wrapper {
  position: relative;
}
body.boxed-wrapper .page-wrapper {
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--rofiex-white, #fff);
  box-shadow: 0px 0px 100px 0px rgba(var(--rofiex-black-rgb, 0, 0, 0), 0.08);
}
body.boxed-wrapper .faq-one__shape,
body.boxed-wrapper .main-header__call {
  display: none;
}

/*--------------------------------------------------------------
# Work Process
--------------------------------------------------------------*/
.work-process-one {
  position: relative;
  counter-reset: count;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .work-process-one {
    padding: 80px 0;
  }
}
.work-process-one__border {
  width: 100%;
  height: 193px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto;
  top: 150px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  animation: movebounce2 3s linear 0s infinite;
}
@media (max-width: 991px) {
  .work-process-one__border {
    display: none;
  }
}
.work-process-one__item {
  position: relative;
  counter-increment: count;
}
.work-process-one__item__image {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: all 0.5s ease;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 307 329" xmlns="http://www.w3.org/2000/svg"><path d="M279.515 114.687L135.722 6.83276C129.853 2.45629 121.913 -0.000197909 113.637 -0.000197909C105.361 -0.000197909 97.4206 2.45629 91.551 6.83276C88.6148 9.01718 86.2842 11.6161 84.6938 14.4795C83.1033 17.3429 82.2845 20.4142 82.2845 23.5161C82.2845 26.6181 83.1033 29.6894 84.6938 32.5528C86.2842 35.4162 88.6148 38.0151 91.551 40.1995L-0.000154107 139.383C2.9361 141.568 5.26666 144.167 6.8571 147.03C8.44754 149.893 9.26639 152.965 9.26639 156.067C9.26639 159.169 8.44754 162.24 6.8571 165.103C5.26666 167.967 2.9361 170.566 -0.000154107 172.75L91.551 288.805C85.652 293.199 82.3215 299.17 82.2921 305.406C82.2627 311.641 85.5369 317.63 91.3944 322.055C97.2519 326.479 105.213 328.978 113.526 329C121.839 329.022 129.823 326.566 135.722 322.172L279.515 214.318C297.114 201.1 307 183.183 307 164.502C307 145.822 297.114 127.905 279.515 114.687Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 307 329" xmlns="http://www.w3.org/2000/svg"><path d="M279.515 114.687L135.722 6.83276C129.853 2.45629 121.913 -0.000197909 113.637 -0.000197909C105.361 -0.000197909 97.4206 2.45629 91.551 6.83276C88.6148 9.01718 86.2842 11.6161 84.6938 14.4795C83.1033 17.3429 82.2845 20.4142 82.2845 23.5161C82.2845 26.6181 83.1033 29.6894 84.6938 32.5528C86.2842 35.4162 88.6148 38.0151 91.551 40.1995L-0.000154107 139.383C2.9361 141.568 5.26666 144.167 6.8571 147.03C8.44754 149.893 9.26639 152.965 9.26639 156.067C9.26639 159.169 8.44754 162.24 6.8571 165.103C5.26666 167.967 2.9361 170.566 -0.000154107 172.75L91.551 288.805C85.652 293.199 82.3215 299.17 82.2921 305.406C82.2627 311.641 85.5369 317.63 91.3944 322.055C97.2519 326.479 105.213 328.978 113.526 329C121.839 329.022 129.823 326.566 135.722 322.172L279.515 214.318C297.114 201.1 307 183.183 307 164.502C307 145.822 297.114 127.905 279.515 114.687Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  mask-position: center center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.work-process-one__item__image img {
  max-width: 100%;
  height: auto;
}
.work-process-one__item:hover .work-process-one__item__image {
  animation-name: wobble-horizontal-on-hover;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}
.work-process-one__item__content {
  position: relative;
  text-align: center;
  background-color: transparent;
  padding: 198px 25px 0;
  margin-top: -175px;
}
.work-process-one__item__content::after {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  height: calc(100% - 20px);
  border-radius: 30px 30px 0 0;
  content: "";
  transition: all 0.5s ease;
  background-color: var(--rofiex-gray, #F5F1EF);
  z-index: -1;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 370 355" xmlns="http://www.w3.org/2000/svg"><path d="M0 50C0 22.3858 22.3858 0 50 0H320C347.614 0 370 22.3858 370 50V284L293 336.5L182 355L91 336.5L0 284V50Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 370 355" xmlns="http://www.w3.org/2000/svg"><path d="M0 50C0 22.3858 22.3858 0 50 0H320C347.614 0 370 22.3858 370 50V284L293 336.5L182 355L91 336.5L0 284V50Z"/></svg>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: bottom center;
  mask-position: bottom center;
  -webkit-mask-size: cover;
  mask-size: cover;
}
.work-process-one__item:hover .work-process-one__item__content::after {
  background-color: var(--rofiex-black, #000000);
}
.work-process-one__item__number {
  position: absolute;
  left: 0;
  top: -25px;
  z-index: 2;
  width: 60px;
  height: 60px;
  background-color: var(--rofiex-base, #FE574F);
  border: 2px solid var(--rofiex-base, #FE574F);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--rofiex-white, #fff);
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  transition: all 500ms ease;
  transition-delay: 0.1s;
  transform: scale(1);
}
.work-process-one__item__number::before {
  content: counters(count, ".", decimal-leading-zero);
  display: inline-block;
}
.work-process-one__item:hover .work-process-one__item__number {
  border-color: var(--rofiex-white, #fff);
  background-color: var(--rofiex-black, #000000);
  transform: scale(1.1);
}
.work-process-one__item__title {
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  text-transform: capitalize;
  transition: all 0.3s ease;
  margin: 0 0 14px;
}
.work-process-one__item:hover .work-process-one__item__title {
  color: var(--rofiex-white, #fff);
}
.work-process-one__item__text {
  font-weight: 500;
  margin: 0 0 31px;
  transition: all 0.3s ease;
}
.work-process-one__item:hover .work-process-one__item__text {
  color: var(--rofiex-white, #fff);
}
.work-process-one__item__rm {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  background-color: var(--rofiex-black, #000000);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  color: var(--rofiex-white, #fff);
  transform: rotate(45deg);
  margin: 0 auto 0;
}
.work-process-one__item:hover .work-process-one__item__rm {
  background-color: var(--rofiex-base, #FE574F);
  transform: rotate(0deg);
}

/*--------------------------------------------------------------
# Repair
--------------------------------------------------------------*/
.repair-one {
  position: relative;
  padding: 120px 0;
}
@media (max-width: 767px) {
  .repair-one {
    padding: 80px 0;
  }
}
.repair-one__content {
  position: relative;
}
.repair-one__content .sec-title {
  padding-bottom: 21px;
}
.repair-one__content__text {
  font-weight: 500;
  margin: 0 0 21px;
}
.repair-one__content__heading {
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 30px;
}
.repair-one__content__list {
  margin: 0 0 40px;
  padding: 15px 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--rofiex-border-color, #DDDDDD);
  border-bottom: 1px solid var(--rofiex-border-color, #DDDDDD);
  gap: 31px 30px;
  position: relative;
}
@media (max-width: 767px) {
  .repair-one__content__list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.repair-one__content__list::after {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  content: "";
  background-color: var(--rofiex-border-color, #DDDDDD);
}
@media (max-width: 767px) {
  .repair-one__content__list::after {
    display: none;
  }
}
.repair-one__content__list::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 100%;
  content: "";
  background-color: var(--rofiex-border-color, #DDDDDD);
}
@media (max-width: 767px) {
  .repair-one__content__list::before {
    display: none;
  }
}
.repair-one__content__list li {
  position: relative;
  padding: 0 0 0 28px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .repair-one__content__list li {
    border-bottom: 1px solid var(--rofiex-border-color, #DDDDDD);
    padding-bottom: 20px;
  }
  .repair-one__content__list li:last-child {
    border: none;
  }
}
.repair-one__content__list li i {
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--rofiex-black, #000000);
  transition: all 400ms ease;
}
.repair-one__content__list li span {
  transition: all 400ms ease;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
}
.repair-one__content__list li:hover i {
  color: var(--rofiex-base, #FE574F);
}
.repair-one__content__list li:hover span {
  background-size: 100% 1px;
}
.repair-one__image {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-left: 30px;
}
@media (max-width: 1199px) {
  .repair-one__image {
    margin: 40px 0 0;
  }
}
.repair-one__image::after {
  position: absolute;
  left: -13px;
  bottom: -13px;
  z-index: -1;
  width: 220px;
  height: 220px;
  background-color: var(--rofiex-base, #FE574F);
  content: "";
}
.repair-one__image img {
  max-width: 100%;
  height: auto;
}
.repair-one__image__two {
  position: absolute;
  right: -230px;
  top: 30px;
  display: inline-block;
  border: 7px solid var(--rofiex-white, #fff);
  border-radius: 120px 0 120px 120px;
  transform: rotate(-135deg);
  overflow: hidden;
}
.repair-one__image__two img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .repair-one__image__two {
    display: none;
  }
}
.repair-one__image__info {
  position: absolute;
  right: -230px;
  bottom: 50px;
  background-color: var(--rofiex-gray, #F5F1EF);
  border-radius: 70px;
  border: 10px solid var(--rofiex-white, #fff);
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 22px;
  font-weight: 700;
  color: var(--rofiex-black, #000000);
  font-family: var(--rofiex-heading-font, "Montserrat", sans-serif);
  text-transform: capitalize;
  padding-right: 30px;
}
@media (max-width: 767px) {
  .repair-one__image__info {
    display: none;
  }
}
.repair-one__image__info:hover {
  color: var(--rofiex-base, #FE574F);
}
.repair-one__image__info:hover .repair-one__image__info__icon i {
  transform: scale(1.1);
}
.repair-one__image__info__icon {
  width: 106px;
  height: 106px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--rofiex-base, #FE574F);
  color: var(--rofiex-white, #fff);
  font-size: 47px;
  border-radius: 50%;
  flex-shrink: 0;
}
.repair-one__image__info__icon i {
  display: inline-block;
  transition: all 600ms ease;
  transform: scale(1);
}
/*# sourceMappingURL=rofiex.css.map */
