

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/


@import 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.3/css/font-awesome.min.css';
:root {
  --step-font:  'Cairo', sans-serif;
  --step-reey-font: "reeyregular";
  --step-gray: #818487;
  --step-gray-rgb: 129, 135, 132;
  --step-white: #ffffff;
  --step-white-rgb: 255, 255, 255;
  --step-base: #dd332d;
  --step-base-rgb: 254, 144, 67;
  --step-black: #30353a;
  --step-black-rgb: 48, 53, 58;
  --step-primary: #dd332d;
  --step-primary-rgb: 8, 159, 172;
  --step-extra: #f7f5f1;
  --step-extra-rgb: 247, 245, 241;
  --step-bdr-color: #e6e1d8;
  --step-bdr-color-rgb: 230, 225, 216;

}

.row {
  --bs-gutter-x: 30px;
}

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

body {
  font-family: var(--step-font);
  color: var(--step-gray);
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  position: relative;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--step-gray);
}

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

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #dee2e6;
  margin: 0;
  
}

p {
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

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

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

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

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 1;
}

:-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

::-ms-input-placeholder {
  color: inherit;
  opacity: 1;
}

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

.section-separator {
  border-color: var(--step-border);
  border-width: 1px;
  margin-top: 0;
  margin-bottom: 0;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  opacity: 0.4;
  z-index: -1;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
.custom-cursor__cursor {
  width: 25px;
  height: 25px;
  border-radius: 100%;
  border: 1px solid var(--step-base);
  -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;
  display: none;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--step-base);
  opacity: .3;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  -webkit-transition: width .3s, height .3s, opacity .3s;
  transition: width .3s, height .3s, opacity .3s;
  z-index: 999991;
  display: none;
}

.custom-cursor__hover {
  background-color: var(--step-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}


.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--step-base);
  color: var(--step-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  /*! border-radius: 25px; */
  padding: 10px 50px 10px;
  transition: all 0.5s linear;
  overflow: hidden;
  z-index: 1;
  border-radius: 10px;
}

.thm-btn::before {
  position: absolute;
  content: '';
  background-color: var(--step-black);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 25px;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: all 500ms ease;
}

.thm-btn:hover {
  color: var(--step-white);
}

.thm-btn:hover:before {
  height: 380%;
}


.section-title {
  position: relative;
  display: block;
  margin-top: -11px;
  margin-bottom: 48px;
  text-align: right;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 14px;
  color: var(--step-base);
  font-weight: 700;
  text-transform: uppercase;
  
  padding-left: 20px;
  z-index: 1;
}

.section-title__tagline:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  height: 10px;
  width: 2px;
  background-color: var(--step-base);
  transform: rotate(15deg);
}

.section-title__tagline:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  height: 10px;
  width: 2px;
  background-color: var(--step-base);
  transform: rotate(15deg);
}

.section-title__title {
  margin: 0;
  color: var(--step-black);
  font-size: 42px;
  line-height: 60px;
  font-weight: 800;
  margin-top: 5px;
}

.bootstrap-select .btn-light:not(:disabled):not(.disabled).active,
.bootstrap-select .btn-light:not(:disabled):not(.disabled):active,
.bootstrap-select .show>.btn-light.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
  border-radius: 0;
}

.bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
  background: var(--step-primary);
  color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 20px;
  color: #ffffff;
  background: var(--step-base);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
  background: var(--step-black);
  color: var(--step-white);
  cursor: pointer;
}

.preloader {
  position: fixed;
  background-color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-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-image: url(../images/loader.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 60px auto;
  width: 100%;
  height: 100%;
}

/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 50px;
  height: 50px;
  background: #111;
  position: fixed;
  bottom: 0rem;
  right: 0;
  transform:translate(-50%, -50%);
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  cursor: pointer;
}

.scroll-to-top i {
  color: var(--step-white);
  font-size: 18px;
  line-height: 50px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.scroll-to-top:hover {
  background-color: var(--step-base);
}

.scroll-to-top:hover i {
  color: #fff;
}


/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  background: transparent;
  position: absolute;
  left: 0px;
  top: 0;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
  direction: rtl;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  display: block;
  padding-left: 40px;
  background-color: transparent;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.main-menu__left {
  position: relative;
  display: block;
  float: right;
  max-width: 210px;
  width: 100%;
  /*! margin-left: 40px; */
  /*! background: #fff; */
}

.main-menu__logo {
  display: block;
  padding: 20px 0;
}

.main-menu__logo img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 100%;
  height: 80px;
}

.main-menu__right {
  display: block;
  float: right;
  max-width: 920px;
  width: 100%;
}

.main-menu__right-top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: -moz-linear-gradient(60deg, rgba(39,43,48,1) 50%, rgba(48,53,58,1) 100%);
  background-image: -webkit-linear-gradient(60deg, rgba(39,43,48,1) 50%, rgba(48,53,58,1) 100%);
  background-image: -ms-linear-gradient(60deg, rgba(39,43,48,1) 50%, rgba(48,53,58,1) 100%);
  padding-right: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
  z-index: 1;
}

.main-menu__right-top:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  left: -40px;
  content: "";
  background-color: #272b30;
  z-index: -1;
}

.main-menu__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__contact-list li+li {
  margin-right: 27px;
}

.main-menu__contact-list li .icon {
  display: flex;
  align-items: center;
}

.main-menu__contact-list li .icon i {
  font-size: 14px;
  color: #dd332d;
}

.main-menu__contact-list li .text {
  margin-right: 6px;
  direction: initial;
}

.main-menu__contact-list li .text p {
  font-size: 14px;
  font-weight: 500;
  color: var(--step-white);
}

.main-menu__contact-list li .text p a {
  color: var(--step-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__contact-list li .text p a:hover {
  color: #dd332d;
}

.main-menu__social {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--step-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__social a:hover {
  color: #dd332d;
}

.main-menu__social a+a {
  margin-right: 25px;
}

.main-menu__right-bottom {
  display: flex;
  align-items: center;
  margin-right: 2rem;
  justify-content: space-between;
}

.main-menu__main-menu-box {
  display: block;
}

.main-menu__main-menu-content-box {
  display: block;
}

.main-menu__search-help-line {
  display: flex;
  align-items: center;
}

.main-menu__search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__search-box .main-menu__search+.main-menu__search {
  margin-left: 20px;
}

.main-menu__search-box:before {
  content: "";
  position: absolute;
  top: -4px;
  bottom: -4px;
  right: -20px;
  width: 1px;
  background-color: var(--step-bdr-color);
}

.main-menu__search {
  font-size: 24px;
  color: var(--step-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search:hover {
  color: var(--step-base);
}

.main-menu__help-line {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.main-menu__help-line-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  background-color: var(--step-extra);
  border-radius: 50%;
  font-size: 24px;
  color: #ffff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__help-line-icon:hover {
  background-color: #dd332d;
  color: var(--step-white);
}

.main-menu__help-line-content {
  margin-right: 10px;
}

.main-menu__help-line-sub-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 13px;
}

.main-menu__help-line-number {
  font-size: 16px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0;
  margin-top: 2px;
}

.main-menu__help-line-number a {
  color: var(--step-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__help-line-number a:hover {
  color: var(--step-base);
}

.stricky-header.main-menu {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 10px 60px;
}

.stricky-header .main-menu__wrapper {
  padding-left: 0;
  padding-right: 0;
  box-shadow: none;
}

.stricky-header .main-menu__right-top {
  padding-left: 40px;
}

.stricky-header .main-menu__right-top:before {
  display: none;
}

.main-menu .main-menu__list,
.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: none;
}



@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list>li>ul,
  .main-menu .main-menu__list>li>ul>li>ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list>li>ul,
  .stricky-header .main-menu__list>li>ul>li>ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding-top: 23px;
  padding-bottom: 23px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-right: 45px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--step-gray);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  font-weight: 700;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a,
.stricky-header .main-menu__list>li.current>a,
.stricky-header .main-menu__list>li:hover>a {
  color: var(--step-black);
}

.main-menu .main-menu__list>li>ul,
.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 270px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-transform: scaleY(0) translateZ(100px);
  transform: scaleY(0) translateZ(100px);
  -webkit-transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, -webkit-transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
  transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease, -webkit-transform 700ms ease;
  z-index: 99;
  background-color: rgb(255, 255, 255);
  padding: 31px 20px 31px;
}

.dropdown-services {
  height: 440px;
  overflow-y: scroll;
}
.shadow-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list>li>ul>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul>li>ul {
  display: none;
}

.main-menu .main-menu__list>li:hover>ul,
.main-menu .main-menu__list>li>ul>li:hover>ul,
.stricky-header .main-menu__list>li:hover>ul,
.stricky-header .main-menu__list>li>ul>li:hover>ul {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>li>ul>li,
.main-menu .main-menu__list>li>ul>li>ul>li,
.stricky-header .main-menu__list>li>ul>li,
.stricky-header .main-menu__list>li>ul>li>ul>li {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list>li>ul>li+li,
.main-menu .main-menu__list>li>ul>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li+li,
.stricky-header .main-menu__list>li>ul>li>ul>li+li {
  border-top: none;
  margin-top: 10px;
}

.main-menu .main-menu__list>li>ul>li>a,
.main-menu .main-menu__list>li>ul>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>a,
.stricky-header .main-menu__list>li>ul>li>ul>li>a {
  position: relative;
  font-size: 16px;
  line-height: 30px;
  color: var(--step-gray);
  letter-spacing: 0;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px 20px 5px;
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: var(--step-white);
}

.main-menu .main-menu__list>li>ul>li:hover>a,
.main-menu .main-menu__list>li>ul>li.active a,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li:hover>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a {
  background-color: #1111110a;
  color: var(--step-black);
}

.main-menu .main-menu__list>li>ul>li>a::before,
.main-menu .main-menu__list>li>ul>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li>a::before {
  position: absolute;
  top: 50%;
  left: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f30b";
  font-size: 14px;
  color: var(--step-base);
  transform: translateY(-50%) scale(0);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .main-menu__list>li>ul>li:hover>a::before,
.main-menu .main-menu__list>li>ul>li.active >a::before,
.main-menu .main-menu__list>li>ul>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li:hover>a::before,
.stricky-header .main-menu__list>li>ul>li>ul>li:hover>a::before {
  transform: translateY(-50%) scale(1);
}

.main-menu .main-menu__list>li>ul>li>ul,
.stricky-header .main-menu__list>li>ul>li>ul {
  top: 0;
  left: 100%;
}

.main-menu .main-menu__list li ul li>ul.right-align,
.stricky-header .main-menu__list li ul li>ul.right-align {
  top: 0;
  left: auto;
  right: 100%;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu,
.main-menu-two__main-menu-box .main-menu__list>.megamenu,
.main-menu__wrapper .main-menu__list>.megamenu {
  position: static;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul,
.main-menu__wrapper .main-menu__list>.megamenu>ul {
  top: 100% !important;
  left: 0 !important;
  right: 0 !important;
  background-color: transparent;
}

.main-menu-three__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu-two__main-menu-box .main-menu__list>.megamenu>ul>li,
.main-menu__wrapper .main-menu__list>.megamenu>ul>li {
  padding: 0 !important;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  -webkit-transform: translateY(-120%);
  transform: translateY(-120%);
  -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: visibility 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease;
  transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 1199px) {
  .stricky-header {
    display: none !important;
  }
}

.stricky-header.stricky-fixed {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  visibility: visible;
  direction: rtl;
  background: #00000036;
  backdrop-filter: blur(4px);
}

.stricky-header .main-menu__inner {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: 10px;
}

@media (min-width: 1200px) {
  .mobile-nav__buttons {
    display: none;
  }
}

.mobile-nav__buttons a {
  font-size: 20px;
  color: var(--step-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--step-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: #dd332d;
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--step-black);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

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

.mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: pointer;
}

.mobile-nav__content {
  width: 300px;
  background-color: var(--step-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 60px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

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

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*! background: #fff; */
}

.mobile-nav__content .logo-box img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -ms-transform: translateZ(0);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  width: 90%;
  height: 110px;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  left: 15px;
  font-size: 18px;
  color: var(--step-white);
  cursor: pointer;
}

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

.mobile-nav__content .main-menu__list>li>ul,
.mobile-nav__content .main-menu__list>li>ul>li>ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-right: 0.5em;
}

.mobile-nav__content .main-menu__list>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li:not(:last-child),
.mobile-nav__content .main-menu__list>li>ul>li>ul>li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list>li>a>.main-menu-border {
  display: none !important;
}

.mobile-nav__content .main-menu__list>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>a,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--step-font, "Rubik", sans-serif);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
  flex-flow: row-reverse;
}

.mobile-nav__content .main-menu__list>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>a.expanded .mobile-nav__content .main-menu__list>li>ul>li>ul>li>a.expanded {
  color: var(--step-base);
}

.mobile-nav__content .main-menu__list>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button {
  width: 30px;
  height: 30px;
  background-color: var(--step-base);
  border: none;
  outline: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  padding: 0;
}

.mobile-nav__content .main-menu__list>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>a>button.expanded,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button.expanded {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--step-base);
}

/* no menu after 2rd level dropdown */
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>a>button,
.mobile-nav__content .main-menu__list>li>ul>li>ul>li>ul {
  display: none !important;
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
  direction: rtl;
}

.mobile-nav__top .main-menu__login a {
  color: var(--step-text-dark);
}

.mobile-nav__container {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--step-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-right: 30px;
}

.mobile-nav__social a:hover {
  color: var(--step-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
  direction: rtl;
  padding: 0;
}

.mobile-nav__contact li {
  color: var(--step-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--step-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--step-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 11px;
  margin-left: 10px;
  color: #fff;
}

.mobile-nav__container .main-logo,
.mobile-nav__container .topbar__buttons,
.mobile-nav__container .main-menu__language,
.mobile-nav__container .main-menu__login {
  display: none;
}



/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/
.home-showcase {
  margin-top: -31px;
  margin-bottom: -31px;
}

.mobile-nav__container .home-showcase {
  margin: 0;
}

.home-showcase__inner {
  padding: 40px 40px 40px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 39.2px 0.8px rgb(0 0 0 / 10%);
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}

.home-showcase__image {
  position: relative;
  background-color: var(--step-base);
  overflow: hidden;
}

.home-showcase__image>img {
  width: 100%;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.home-showcase__image:hover>img {
  opacity: 0.75;
}

.home-showcase__image:hover .home-showcase__buttons {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  opacity: 1;
  visibility: visible;
}

.home-showcase__buttons {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  opacity: 0;
  visibility: hidden;
  -webkit-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transition: 500ms ease;
  transition: 500ms ease;
}

.home-showcase__buttons__item {
  padding: 10px 20px;
  width: 150px;
  text-align: center;
}

.home-showcase__buttons__item+.home-showcase__buttons__item {
  margin-top: 10px;
}

.home-showcase__title {
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--step-black);
  margin-top: 17px;
  font-family: var(--step-font);
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase__inner {
  padding: 15px 0px;
  background-color: rgba(0, 0, 0, 0);
}

.mobile-nav__wrapper .home-showcase__title {
  color: var(--step-white, #ffffff);
}

.stricky-header .megamenu-left .container {
  margin: 0;
  margin-left: -35px;
}


/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  display: block;
  z-index: 91;
}

.main-slider .swiper-slide {
  position: relative;
  background-color: var(--step-black);
  direction: rtl;
}

.main-slider .container {
  position: relative;
  padding-top: 295px;
  padding-bottom: 155px;
  z-index: 30;
}

.main-slider .image-layer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider .swiper-slide-active .image-layer {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.main-slider .image-layer:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(39, 43, 48, .50);
  z-index: -1;
}

.main-slider-border {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 14.29%;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 10;
}

.main-slider-border-two {
  left: 14.29%;
}

.main-slider-border-three {
  left: 28.59%;
}

.main-slider-border-four {
  left: 42.88%;
}

.main-slider-border-five {
  left: 57.17%;
}

.main-slider-border-six {
  left: 71.46%;
}


.main-slider__content {
  position: relative;
  display: block;
  text-align: right;
}

.main-slider__sub-title {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--step-white);
  font-weight: 800;
  line-height: 20px;
  padding-left: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__sub-title:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  height: 15px;
  width: 2px;
  background-color: var(--step-white);
  transform: rotate(15deg);
}

.main-slider__sub-title:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  height: 15px;
  width: 2px;
  background-color: var(--step-white);
  transform: rotate(15deg);
}

.main-slider__title {
  position: relative;
  font-size: 80px;
  color: var(--step-white);
  font-weight: 800;
  line-height: 90px;
  
  margin-top: 5px;
  margin-bottom: 16px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__text {
  color: var(--step-white);
  padding-bottom: 31px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider .swiper-slide-active .main-slider__text {
  visibility: visible;
  opacity: .50;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider__btn-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider__btn:hover {
  color: var(--step-base);
}

.main-slider__btn:before {
  background-color: var(--step-white);
}

.main-slider__bottom {
  position: absolute;
  bottom: -43px;
  left: 324px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(220px);
  transform: translateX(220px);
  -webkit-transition-delay: 2000ms;
  transition-delay: 2000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider .swiper-slide-active .main-slider__bottom {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider__bottom-text {
  font-size: 20px;
  color: var(--step-white);
  font-family: var(--step-reey-font);
  line-height: 28px;
}

.main-slider__icon {
  position: absolute;
  bottom: 0px;
  left: 70px;
}

.main-slider__icon img {
  width: auto;
}

.main-slider .swiper-slide-active .main-slider__title,
.main-slider .swiper-slide-active .main-slider__sub-title,
.main-slider .swiper-slide-active .main-slider__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider__nav {
  position: absolute;
  top: 52%;
  right: 140%;
  z-index: 100;
  transform: translateY(50%) translateX(50%);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  height: 0;
  line-height: 0;
}


.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: rgba(var(--step-white-rgb), .20);
  border: 2px solid rgba(var(--step-white-rgb), .20);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  padding: 23px 0;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
  color: rgba(var(--step-white-rgb), 1);
  border: 2px solid rgba(var(--step-white-rgb), 1);
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
  display: none;
}

.main-slider__nav .swiper-button-prev {
  margin-bottom: 10px;
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
  position: relative;
  display: block;
  z-index: 91;
}

.main-slider-two .swiper-slide {
  position: relative;
  background-color: var(--step-black);
}

.main-slider-two .container {
  position: relative;
  padding-top: 240px;
  padding-bottom: 130px;
  z-index: 30;
}

.image-layer-two {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider-two .swiper-slide-active .image-layer-two {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.image-layer-two:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(39, 43, 48, .40);
}

.main-slider-two-shape-1 {
  position: absolute;
  top: 0px;
  right: 159px;
  mix-blend-mode: soft-light;
  opacity: .90;
  z-index: 1;
}

.main-slider-two-shape-1 img {
  width: auto;
}

.main-slider-two-shape-2 {
  position: absolute;
  top: 0;
  right: -1px;
  opacity: .40;
  mix-blend-mode: overlay;
  z-index: 1;
}

.main-slider-two-shape-2 img {
  width: auto;
}

.main-slider-two-border {
  position: absolute;
  top: 116px;
  left: 0;
  bottom: 0;
  width: 14.29%;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 10;
}

.main-slider-two-border-two {
  left: 14.29%;
}

.main-slider-two-border-three {
  left: 28.59%;
}

.main-slider-two-border-four {
  left: 42.88%;
}

.main-slider-two-border-five {
  left: 57.17%;
}

.main-slider-two-border-six {
  left: 71.46%;
}

.main-slider-two__content {
  position: relative;
  display: block;
  margin-right: -30px;
}

.main-slider-two__sub-title-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__sub-title-box span {
  font-size: 12px;
  color: var(--step-white);
  font-weight: 800;
  line-height: 12px;
  position: relative;
  display: inline-block;
  padding: 6px 10px;
  z-index: 1;
}

.main-slider-two__sub-title-box span:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--step-white-rgb), .20);
  z-index: -1;
}

.main-slider-two__sub-title-box span+span {
  margin-left: 10px;
}

.main-slider-two__title-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__title {
  position: relative;
  font-size: 70px;
  color: var(--step-white);
  font-weight: 800;
  line-height: 80px;
  
}

.main-slider-two__text-1 {
  font-size: 14px;
  color: var(--step-white);
  font-weight: 700;
  padding-top: 9px;
  padding-bottom: 21px;
}

.main-slider-two__text-1 i {
  color: var(--step-base);
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.main-slider-two__text-2 {
  color: var(--step-white);
  opacity: .40;
}

.main-slider-two__list {
  position: relative;
  display: block;
  margin-top: 22px;
  margin-bottom: 41px;
}

.main-slider-two__list li {
  position: relative;
  display: block;
  overflow: hidden;
}

.main-slider-two__list li+li {
  margin-top: 8px;
}

.main-slider-two__list li .left {
  position: relative;
  display: block;
  float: left;
  max-width: 50px;
  width: 100%;
}

.main-slider-two__list li .right {
  position: relative;
  display: block;
  float: left;
  margin-left: 30px;
}

.main-slider-two__list li .left p {
  color: var(--step-white);
  font-weight: 800;
  opacity: .40;
}

.main-slider-two__list li .right h5 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--step-white);
  line-height: 30px;
}

.main-slider-two__btn-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-two__btn:hover {
  color: var(--step-base);
}

.main-slider-two__btn:before {
  background-color: var(--step-white);
}

.main-slider-two .swiper-slide-active .main-slider-two__sub-title-box,
.main-slider-two .swiper-slide-active .main-slider-two__title-box,
.main-slider-two .swiper-slide-active .main-slider-two__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-two__video-box {
  position: relative;
  display: block;
  margin-top: 109px;
}

.main-slider-two__video-link {
  position: relative;
  display: block;
  float: right;
  z-index: 3;
}

.main-slider-two__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  line-height: 140px;
  text-align: center;
  font-size: 25px;
  color: var(--step-black);
  background-color: rgba(0, 0, 0, .20);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  z-index: 1;
}

.main-slider-two__video-icon:hover {
  background-color: var(--step-white);
  color: var(--step-white);
}

.main-slider-two__video-icon:before {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  content: "";
  border-radius: 50%;
  background-color: var(--step-white);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  z-index: -1;
}

.main-slider-two__video-icon:hover:before {
  background-color: var(--step-base);
}

.main-slider-two__video-link .ripple,
.main-slider-two__video-icon .ripple:before,
.main-slider-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--step-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--step-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--step-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--step-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.main-slider-two__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.main-slider-two__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.main-slider-two__video-text-box {
  position: absolute;
  bottom: -55px;
  left: -169px;
}

.main-slider-two__video-text {
  font-size: 24px;
  color: var(--step-white);
  line-height: 34px;
  font-family: var(--step-reey-font);
}

.main-slider-two__video-arrow {
  position: absolute;
  bottom: 5px;
  right: -43px;
}

.main-slider-two__video-arrow img {
  width: auto;
}


.main-slider-two__nav {
  position: absolute;
  top: 51%;
  left: 45px;
  z-index: 100;
  transform: translateY(-50%) translateX(0%);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  height: 0;
  line-height: 0;
}

.main-slider-two__nav .swiper-button-next,
.main-slider-two__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: rgba(var(--step-white-rgb), .20);
  border: 2px solid rgba(var(--step-white-rgb), .20);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  padding: 23px 0;
}

.main-slider-two__nav .swiper-button-prev {
  margin-bottom: 10px;
}

.main-slider-two__nav .swiper-button-next:hover,
.main-slider-two__nav .swiper-button-prev:hover {
  color: rgba(var(--step-white-rgb), 1);
  border: 2px solid rgba(var(--step-white-rgb), 1);
}

.main-slider-two__nav .swiper-button-next:hover,
.main-slider-two__nav .swiper-button-prev:hover {
  opacity: 1;
}

.main-slider-two__nav .swiper-button-next::after,
.main-slider-two__nav .swiper-button-prev::after {
  display: none;
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-three {
  position: relative;
  display: block;
  z-index: 91;
}

.main-slider-three .swiper-slide {
  position: relative;
  background-color: var(--step-black);
}

.main-slider-three .container {
  position: relative;
  padding-top: 194px;
  padding-bottom: 180px;
  z-index: 30;
}

.image-layer-three {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
  z-index: 1;
}

.main-slider-three .swiper-slide-active .image-layer-three {
  -webkit-transform: scale(1.15);
  transform: scale(1.15);
}

.image-layer-three:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(39, 43, 48, .50);
}

.main-slider-three__content {
  position: relative;
  display: block;
  text-align: center;
}

.main-slider-three__sub-title {
  position: relative;
  display: inline-block;
  font-size: 20px;
  color: var(--step-white);
  font-weight: 800;
  line-height: 20px;
  padding-left: 20px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__sub-title:before {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  height: 15px;
  width: 2px;
  background-color: var(--step-white);
  transform: rotate(15deg);
}

.main-slider-three__sub-title:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  height: 15px;
  width: 2px;
  background-color: var(--step-white);
  transform: rotate(15deg);
}

.main-slider-three__title {
  position: relative;
  font-size: 80px;
  color: var(--step-white);
  font-weight: 800;
  line-height: 90px;
  
  margin-top: 7px;
  margin-bottom: 35px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-120px);
  transform: translateY(-120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__title span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.main-slider-three__title span:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  right: 0;
  height: 19px;
  width: 211px;
  background-image: url(../images/shapes/main-slider-three-shape-1.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.main-slider-three__btn-box {
  position: relative;
  display: block;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(120px);
  transform: translateY(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__btn:hover {
  color: var(--step-base);
}

.main-slider-three__btn:before {
  background-color: var(--step-white);
}

.main-slider-three__shape-1 {
  position: absolute;
  top: -7px;
  right: 194px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(120px);
  transform: translateX(120px);
  -webkit-transition-delay: 1000ms;
  transition-delay: 1000ms;
  -webkit-transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: opacity 2000ms ease, -webkit-transform 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease;
  transition: transform 2000ms ease, opacity 2000ms ease, -webkit-transform 2000ms ease;
}

.main-slider-three__shape-1 img {
  width: auto;
}

.main-slider-three .swiper-slide-active .main-slider-three__shape-1 {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-three .swiper-slide-active .main-slider-three__sub-title,
.main-slider-three .swiper-slide-active .main-slider-three__title,
.main-slider-three .swiper-slide-active .main-slider-three__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider-three__nav {
  width: 100%;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 0;
  line-height: 0;
}

.main-slider-three__nav .swiper-button-next,
.main-slider-three__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: rgba(var(--step-white-rgb), .20);
  border: 2px solid rgba(var(--step-white-rgb), .20);
  border-radius: 50%;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
}

.main-slider-three__nav .swiper-button-next:hover,
.main-slider-three__nav .swiper-button-prev:hover {
  color: rgba(var(--step-white-rgb), 1);
  border: 2px solid rgba(var(--step-white-rgb), 1);
}

.main-slider-three__nav .swiper-button-next:hover,
.main-slider-three__nav .swiper-button-prev:hover {
  opacity: 1;
}

.main-slider-three__nav .swiper-button-next::after,
.main-slider-three__nav .swiper-button-prev::after {
  display: none;
}


/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  display: block;
  padding: 60px 0 90px;
}

.feature-one__single {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.feature-one__single:hover {
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

.feature-one__single-content-box {
  position: relative;
  display: block;
  background-color: var(--step-extra);
  padding-left: 50px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 80px;
  margin-bottom: 30px;
  overflow: hidden;
  z-index: 1;
}

.feature-one__single-content-box:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--step-black);
  opacity: 0;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0.2, 1);
  transform: scale(0.2, 1);
  z-index: -1;
}

.feature-one__single:hover .feature-one__single-content-box:before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.feature-one-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  transform: perspective(380px) translateX(100%);
  transform-origin: right;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.feature-one__single:hover .feature-one-shape {
  transform: perspective(380px) translateX(0);
  transition: all 900ms ease;
  transition-delay: 0.3s;
}

.feature-one-shape img {
  width: 200px;
  opacity: 0.08;
}

.feature-one__single-inner {
  position: relative;
  display: block;
  padding-left: 185px;
}

.feature-one__content {
  position: absolute;
  top: 13px;
  left: 0;
}

.feature-one__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 15px;
}

.feature-one__title a {
  color: var(--step-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__title a {
  color: var(--step-white);
}

.feature-one__text {
  font-size: 15px;
  line-height: 24px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__text {
  color: #a4a9ae;
}

.feature-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.03);
  height: 104px;
  width: 104px;
  z-index: 1;
}

.feature-one__icon:before {
  position: absolute;
  top: -1px;
  left: -1px;
  bottom: -1px;
  right: -1px;
  background-color: #272b30;
  border-radius: 50%;
  transition: .5s;
  transform: scale(.5);
  opacity: 0;
  content: '';
  z-index: -1;
}

.feature-one__single:hover .feature-one__icon:before {
  transform: scale(1);
  opacity: 1;
}

.feature-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 65px;
  color: var(--step-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.feature-one__single:hover .feature-one__icon span {
  transform: scale(0.9);
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
  position: relative;
  display: block;
  padding: 20px 0 0px;
}

.about-one__left {
  position: relative;
  display: block;
  margin-right: 100px;
}

.about-one__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.about-one__img-1 {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.about-one__img-1:after {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  transform: skewX(-25deg);
  z-index: 1;
}

.about-one__img-box:hover .about-one__img-1:after {
  -webkit-animation: shine 1.5s;
  animation: shine 1.5s;
}

.about-one__img-1 img {
  width: 100%;
}

.about-one__img-2 {
  position: absolute;
  right: -220px;
  bottom: -120px;
  overflow: hidden;
  z-index: 2;
}

.about-one__img-2 img {
  width: auto;
}

.about-one__img-2:after {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  transform: skewX(-25deg);
  z-index: 1;
}

.about-one__img-box:hover .about-one__img-2:after {
  -webkit-animation: shine 1.5s;
  animation: shine 1.5s;
}

.about-one-shape {
  position: absolute;
  top: 90px;
  left: 130px;
  background-image: -moz-linear-gradient(0deg, rgb(8, 159, 172) 0%, rgb(254, 144, 67) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(8, 159, 172) 0%, rgb(254, 144, 67) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(8, 159, 172) 0%, rgb(254, 144, 67) 100%);
  width: 230px;
  height: 387px;
  z-index: -1;
}

.about-one__right {
  position: relative;
  display: block;
  text-align: right;
}

.about-one__right .section-title {
  margin-bottom: 29px;
}

.about-one__text-1 {
  font-size: 18px;
  color: var(--step-primary);
  font-weight: 700;
  line-height: 30px;
}

.about-one__text-2 {
  padding-top: 34px;
  padding-bottom: 29px;
}

.about-one__points {
  position: relative;
  display: inline-block;
  margin-bottom: 41px;
}

.about-one__points li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: right;
}

.about-one__points li .icon {
  width: 15px;
  height: 15px;
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--step-base);
  border-radius: 50%;
  font-size: 9px;
  justify-content: center;
  color: var(--step-white);
}

.about-one__points li .text {
  margin-left: 10px;
  font-size: 16px;
  font-weight: 800;
  line-height: 30px;
}

.about-one__points li .text p {
  color: var(--step-black);
}


/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  display: block;
  background-color: var(--step-extra);
  padding: 120px 0 90px;
  overflow: hidden;
  z-index: 1;
}

.why-choose-one-shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: .10;
}

.why-choose-one-shape-1 img {
  width: auto;
}

.why-choose-one-shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: .10;
}

.why-choose-one-shape-2 img {
  width: auto;
}

.why-choose-one__top {
  position: relative;
  display: block;
  margin-bottom: 48px;
}

.why-choose-one__left {
  position: relative;
  display: block;
}

.why-choose-one__left .section-title {
  margin-bottom: 0;
}

.why-choose-one__right {
  position: relative;
  display: block;
  margin-top: 21px;
  margin-left: 70px;
}

.why-choose-one__bottom {
  position: relative;
  display: block;
}

.why-choose-one__list {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -3px;
  margin-left: -3px;
}

.why-choose-one__single {
  position: relative;
  width: 100%;
  padding-right: 3px;
  padding-left: 3px;
  -ms-flex: 0 0 16.6666667%;
  flex: 0 0 16.6666667%;
  max-width: 16.6666667%;
  text-align: center;
  margin-bottom: 30px;
}

.why-choose-one__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.03);
  padding: 35px 0 32px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.why-choose-one__single:hover .why-choose-one__content {
  transform: translateY(-10px);
}

.why-choose-one__icon {
  position: relative;
  display: block;
  margin-bottom: 16px;
}

.why-choose-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 65px;
  color: var(--step-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.why-choose-one__single:hover .why-choose-one__icon span {
  transform: rotateY(360deg) scale(1.2);
  color: var(--step-primary);
}

.why-choose-one__title {
  font-size: 18px;
  color: var(--step-black);
  font-weight: 800;
  
}

/*--------------------------------------------------------------
# Why Choose Us
--------------------------------------------------------------*/
.why-choose-us {
  position: relative;
  display: block;
  background-color: var(--step-black);
  padding: 120px 0 120px;
  z-index: 1;
}

.why-choose-us-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 68%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right center;
  z-index: -1;
}

.why-choose-us-bg:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  right: 0;
  content: "";
  background-image: -moz-linear-gradient(0deg, rgb(48, 53, 58) 0%, rgba(48, 53, 58, 0) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(48, 53, 58) 0%, rgba(48, 53, 58, 0) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(48, 53, 58) 0%, rgba(48, 53, 58, 0) 100%);
}

.why-choose-us-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 38%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  mix-blend-mode: color-burn;
  opacity: .45;
  z-index: -1;
}

.why-choose-us__left {
  position: relative;
  display: block;
  margin-right: 60px;
  text-align: right;
}

.why-choose-us__left .section-title {
  margin-bottom: 29px;
}

.why-choose-us__left .section-title__title {
  color: var(--step-white);
}

.why-choose-us__text {
  color: #a4a9ae;
  font-weight: 600;
  text-align: right;
}

.why-choose-us__bundal {
  position: relative;
  display: flex;
  margin-top: 36px;
  margin-bottom: 42px;
}

.why-choose-us__btn:hover {
  color: var(--step-base);
}

.why-choose-us__btn::before {
  background-color: var(--step-white);
}

.why-choose-us__bundal-icon {
  position: relative;
  display: block;
}

.why-choose-us__bundal-icon span {
  position: relative;
  display: inline-block;
  color: var(--step-base);
  font-size: 64px;
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.why-choose-us__bundal-icon:hover span {
  transform: scale(.9);
}

.why-choose-us__bundal-content {
  margin-left: 14px;
}

.why-choose-us__bundal-price {
  font-size: 40px;
  color: var(--step-white);
  font-weight: 800;
  line-height: 40px;
}

.why-choose-us__bundal-price sup {
  top: -10px;
  left: 5px;
  font-size: .6em;
}

.why-choose-us__bundal-price span {
  font-size: 16px;
  color: #a4a9ae;
  font-weight: 500;
  letter-spacing: 0;
}

.why-choose-us__bundal-text {
  font-weight: 600;
  color: #08939f;
  line-height: 16px;
}

.why-choose-us__right {
  position: relative;
  display: block;
  margin-right: 30px;
  margin-top: 150px;
}

.why-choose-us__video-link {
  position: relative;
  display: block;
  float: right;
  z-index: 3;
}

.why-choose-us__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  line-height: 140px;
  text-align: center;
  font-size: 25px;
  color: var(--step-white);
  background-color: rgba(0, 0, 0, .20);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  z-index: 1;
}

.why-choose-us__video-icon:hover {
  background-color: var(--step-white);
  color: var(--step-white);
}

.why-choose-us__video-icon:before {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  content: "";
  border-radius: 50%;
  background-color: #dd332d;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  z-index: -1;
}

.why-choose-us__video-icon:hover:before {
  background-color: var(--step-base);
}

.why-choose-us__video-link .ripple,
.why-choose-us__video-icon .ripple:before,
.why-choose-us__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 140px;
  height: 140px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 #dd332d;
  -o-box-shadow: 0 0 0 0 #dd332d;
  -webkit-box-shadow: 0 0 0 0 #dd332d;
  box-shadow: 0 0 0 0 #dd332d;
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.why-choose-us__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.why-choose-us__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.why-choose-us__video-text-box {
  position: absolute;
  bottom: -55px;
  left: -189px;
}

.why-choose-us__video-text {
  font-size: 24px;
  color: var(--step-white);
  line-height: 34px;
  font-family: var(--step-reey-font);
}

.why-choose-us__video-arrow {
  position: absolute;
  bottom: 5px;
  right: -43px;
}

.why-choose-us__video-arrow img {
  width: auto;
}


/*--------------------------------------------------------------
# News One
--------------------------------------------------------------*/
.news-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.news-one:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 525px;
  content: "";
  background-color: var(--step-extra);
  z-index: -1;
}

.news-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  z-index: 1;
}

.news-one__img-box {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
  height: 250px;
}

.news-one__img-box>a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--step-base);
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  background-position: center center;
  z-index: 1;
}

.news-one__single:hover .news-one__img-box>a {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}

.news-one__img-box>a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--step-black-rgb), .50);
  z-index: -1;
}

.news-one__img-box img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  object-fit: cover;
  height: 100%;
}

.news-one__single:hover .news-one__img-box img {
  transform: scale(1.05);
}

.news-one__content-box {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  padding: 21px 40px 0;
  margin-right: 20px;
  margin-top: -30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
  text-align: right;
}

.news-one__single:hover .news-one__content-box {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.news-one__content {
  position: relative;
  display: block;
}

.news-one__meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-one__meta li+li {
  margin-left: 10px;
}

.news-one__meta li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--step-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__meta li a:hover {
  color: var(--step-primary);
}

.news-one__meta li a i {
  color: var(--step-primary);
  padding-right: 5px;
}

.news-one__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 29px;
  text-align: center;
  margin-top: 6px;
  margin-bottom: 25px;
}

.news-one__title a {
  color: var(--step-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__title a:hover {
  color: var(--step-base);
}

.news-one__bottom {
  position: relative;
  display: block;
  text-align: center;
}

.news-one__read-more {
  font-size: 12px;
  font-weight: 700;
  color: var(--step-gray);
  text-transform: uppercase;
  
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--step-bdr-color);
  padding: 10px 0px 9px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__read-more:hover {
  color: var(--step-base);
}

.news-one__date {
  position: absolute;
  top: -34px;
  right: 0;
  background-color: var(--step-base);
  padding: 12px 20px 12px;
}

.news-one__date p {
  font-size: 10px;
  font-weight: 800;
  color: var(--step-white);
  line-height: 10px;
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Service Available
--------------------------------------------------------------*/
.service-available {
  position: relative;
  display: block;
  padding: 0 0 120px;
  z-index: 1;
}

.service-available__inne {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #1aa1ae;
  padding: 77px 60px 77px;
  overflow: hidden;
  z-index: 1;
}

.service-available__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.service-available__shape-1 img {
  width: auto;
}

.service-available__shape-2 {
  position: absolute;
  top: 0;
  right: 138px;
  bottom: 0;
  mix-blend-mode: color-dodge;
  opacity: .90;
  z-index: -1;
}

.service-available__shape-2 img {
  width: auto;
}

.service-available__shape-3 {
  position: absolute;
  top: 0;
  right: 62px;
  bottom: 0;
  mix-blend-mode: soft-light;
  opacity: .40;
  z-index: -1;
}

.service-available__shape-3 img {
  width: auto;
}

.service-available__shape-4 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .15;
}

.service-available__shape-4 img {
  width: auto;
}

.service-available__left {
  position: relative;
  display: block;
}

.service-available__title {
  font-size: 30px;
  color: var(--step-white);
  font-weight: 800;
  line-height: 38px;
}

.service-available__right {
  position: relative;
  display: block;
  max-width: 600px;
  width: 100%;
}

.service-available__form {
  position: relative;
  display: block;
}

.service-available__input-box {
  position: relative;
  display: block;
}

.service-available__input-box input[type="text"] {
  height: 80px;
  width: 100%;
  max-width: 600px;
  background-color: #15909c;
  border: 1px solid #31abb6;
  border-radius: 40px;
  font-size: 16px;
  color: var(--step-white);
  padding-left: 40px;
  padding-right: 245px;
  outline: none;
}

.service-available__btn {
  position: absolute;
  top: 50%;
  right: 15px;
  border: 0;
  background-color: var(--step-white);
  color: var(--step-black);
  transform: translateY(-50%);
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  background-color: var(--step-black);
  z-index: 1;
  direction: rtl;
  text-align: right;
}

.site-footer-shape-bg {
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  mix-blend-mode: luminosity;
  opacity: 0.09;
  z-index: -1;

  -webkit-animation-duration: 9s;
  animation-duration: 9s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  animation-name: shapeMover;
}

.footer-widget__title {
  font-size: 18px;
  color: var(--step-white);
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 27px;
  
}

.site-footer__top {
  position: relative;
  display: block;
  padding: 117px 0 111px;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-top: -6px;
}

.footer-widget__about-text-box {
  position: relative;
  display: block;
}

.footer-widget__about-text-box img {
  width: 85%;
  margin-bottom: 1rem;
  border-radius: 1em;
}

.footer-widget__about-text {
  color: var(--step-white);
  font-weight: 700;
  font-size: 17px;
  line-height: 40px;
  
}


.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 21px;
}

.site-footer__social a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--step-white);
  background-color: #272b30;
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer__social a:hover {
  color: var(--step-base);
  background-color: var(--step-white);
}

.site-footer__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--step-white);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.site-footer__social a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.site-footer__social a+a {
  margin-right: 10px;
}


.footer-widget__links {
  position: relative;
  display: block;
}

.footer-widget__links-list {
  position: relative;
  display: block;
  padding: 0;
}

.footer-widget__links-list li {
  position: relative;
  display: block;
}

.footer-widget__links-list li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: #a4a9ae;
  font-weight: 500;
  
  transition: all 500ms ease;
}

.footer-widget__links-list li a:hover {
  padding-right: 15px;
  color: var(--step-base);
}

.footer-widget__links-list li a:before {
  position: absolute;
  top: 9px;
  right: 0;
  content: "";
  opacity: 0;
  height: 10px;
  width: 2px;
  background-color: var(--step-base);
  transform: rotate(15deg);
  transition: all 500ms ease;
}

.footer-widget__links-list li a:hover:before {
  opacity: 1;
}

.footer-widget__links-list li a:after {
  position: absolute;
  top: 9px;
  right: 4px;
  content: "";
  opacity: 0;
  height: 10px;
  width: 2px;
  background-color: var(--step-base);
  transform: rotate(15deg);
  transition: all 500ms ease;
}

.footer-widget__links-list li a:hover:after {
  opacity: 1;
}

.footer-widget__meet-us {
  position: relative;
  display: block;
}

.ooter-widget__meet-us-text {
  color: #a3a8ad;
  font-size: 15px;
  
}

.footer-widget__contact {
  position: relative;
  display: block;
}

.footer-widget__contact-list {
  position: relative;
  display: block;
  padding: 0;
}

.footer-widget__contact-list li {
  position: relative;
  display: block;
}


.footer-widget__contact-list li .text {
  position: relative;
  display: block;
}

.footer-widget__contact-list li .text p {
  font-size: 15px;
  font-weight: 700;
  
}

.footer-widget__contact-list li .text p a {
  position: relative;
  display: inline-block;
  color: var(--step-primary);
  transition: all 500ms ease;
}

.footer-widget__contact-list li .text p a:before {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #216b74;
}

.footer-widget__contact-list li:last-child .text p a {
  color: var(--step-white);
}

.footer-widget__contact-list li:last-child .text p a:before {
  display: none;
}

.footer-widget__contact-list li:hover .text p a {
  color: var(--step-base);
}

.site-footer__bottom {
  position: relative;
  display: block;
}

.site-footer__bottom-inner {
  position: relative;
  display: block;
  text-align: center;
  padding: 32px 0;
  background-color: rgb(48, 53, 58);
  box-shadow: 0px -1px 0px 0px rgba(255, 255, 255, 0.1);
}

.site-footer__bottom-text {
  font-size: 15px;
  color: #a3a8ad;
  font-weight: 500;
}

.site-footer__bottom-text a {
  color: #98a8a5;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
  color: var(--step-white);
}

/*--------------------------------------------------------------
# All Time HIt Two
--------------------------------------------------------------*/
.all-time-hit--two {
  background-color: var(--step-white);
}

.all-time-hit--two .section-title__title {
  color: var(--step-black);
}


/*--------------------------------------------------------------
# featured-one
--------------------------------------------------------------*/
.feature-two {
  position: relative;
  display: block;
  padding: 120px 0 133px;
  background-color: #f7f5f1;
  overflow: hidden;
  z-index: 1;
}

.feature-two-shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: .10;
  z-index: -1;
}

.feature-two-shape-1 img {
  width: auto;
}

.feature-two-shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: .10;
  z-index: -1;
}

.feature-two-shape-2 img {
  width: auto;
}

.feature-two__inner {
  position: relative;
  display: block;
}

.feature-two__inner .section-title {
  position: absolute;
  top: -12px;
  left: 0;
  margin: 0;
}

.feature-two__carousel {
  position: relative;
  display: block;
}

.feature-two__single {
  position: relative;
  display: block;
}

.feature-two__left {
  position: relative;
  display: block;
  margin-right: 100px;
  margin-top: 152px;
}

.feature-two__text {
  font-size: 14px;
  font-weight: 700;
  color: var(--step-black);
  line-height: 28px;
  padding-bottom: 24px;
}

.feature-two__text i {
  color: var(--step-base);
  padding-left: 25px;
  padding-right: 5px;
}

.feature-two__text-two {
  line-height: 27px;
}

.feature-two__right {
  position: relative;
  display: block;
  margin-left: 15px;
}

.feature-two__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.feature-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.feature-two__img img {
  width: 100%;
}

.feature-two__bg-img {
  position: absolute;
  top: 50%;
  left: -20px;
  width: 555px;
  height: 348px;
  background-image: -moz-linear-gradient(90deg, rgb(254, 144, 67) 0%, rgb(8, 159, 172) 100%);
  background-image: -webkit-linear-gradient(90deg, rgb(254, 144, 67) 0%, rgb(8, 159, 172) 100%);
  background-image: -ms-linear-gradient(90deg, rgb(254, 144, 67) 0%, rgb(8, 159, 172) 100%);
  transform: translateY(-50%);
  z-index: -1;
}

.feature-two__video-link {
  position: absolute;
  bottom: 0;
  right: 0;
}

.feature-two__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  font-size: 25px;
  color: var(--step-white);
  background-color: var(--step-primary);
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  z-index: 1;
}

.feature-two__video-icon:hover {
  background-color: var(--step-base);
  color: var(--step-white);
}

.feature-two__video-link .ripple,
.feature-two__video-icon .ripple:before,
.feature-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101px;
  height: 101px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--step-primary-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--step-primary-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--step-primary-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--step-primary-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.feature-two__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.feature-two__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.feature-two__carousel.owl-theme .owl-nav {
  position: absolute;
  bottom: 22px;
  left: 0px;
  margin: 0;
}

.feature-two__carousel.owl-theme .owl-nav .owl-next {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: var(--step-black);
  background-color: var(--step-white);
  font-size: 15px;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__carousel.owl-theme .owl-nav .owl-prev {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  color: var(--step-black);
  background-color: var(--step-white);
  font-size: 15px;
  margin: 0;
  text-align: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.feature-two__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.feature-two__carousel.owl-theme .owl-nav .owl-next:hover,
.feature-two__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--step-base);
  color: var(--step-white);
}

/*--------------------------------------------------------------
# Free Access
--------------------------------------------------------------*/
.free-access {
  position: relative;
  display: block;
  padding: 106px 0 240px;
  overflow: hidden;
  z-index: 1;
}

.free-access-bg {
  position: absolute;
  top: 0;
  bottom: -1px;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.free-access-bg:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(var(--step-black-rgb), .60);
}

.free-access-shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  mix-blend-mode: overlay;
  z-index: -1;
}

.free-access-shape-1 img {
  width: auto;
}

.free-access-shape-2 {
  position: absolute;
  top: -1px;
  left: 75px;
  bottom: 0;
  mix-blend-mode: soft-light;
  opacity: .40;
  z-index: -1;
}

.free-access-shape-2 img {
  width: auto;
}

.free-access-shape-3 {
  position: absolute;
  top: 0;
  left: 243px;
  mix-blend-mode: color-dodge;
  opacity: .90;
  z-index: -1;
}

.free-access-shape-3 img {
  width: auto;
}

.free-access__inner {
  position: relative;
  display: block;
  text-align: center;
}

.free-access__title {
  font-size: 60px;
  font-weight: 800;
  color: var(--step-white);
  line-height: 70px;
}

.free-access__title span {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.free-access__title span:before {
  position: absolute;
  bottom: -6px;
  left: -2px;
  right: -6px;
  content: "";
  height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../images/shapes/free-access-shape-4.png);
  z-index: -1;
}

.free-access__btn-box {
  position: relative;
  display: block;
  margin-top: 48px;
}

.free-access__btn:hover {
  color: var(--step-base);
}

.free-access__btn::before {
  background-color: var(--step-white);
}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  display: block;
  margin-top: -120px;
}

.counter-one__inner {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 47px 0 28px;
  z-index: 1;
}

.counter-one__inner:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  content: "";
  background-image: -moz-linear-gradient(0deg, rgb(254, 144, 67) 0%, rgb(8, 147, 159) 100%);
  background-image: -webkit-linear-gradient(0deg, rgb(254, 144, 67) 0%, rgb(8, 147, 159) 100%);
  background-image: -ms-linear-gradient(0deg, rgb(254, 144, 67) 0%, rgb(8, 147, 159) 100%);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.counter-one__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.counter-one__single {
  position: relative;
  flex: 0 0 25%;
  max-width: 25%;
  width: 100%;
  text-align: center;
  margin-bottom: 33px;
}

.counter-one__single:before {
  position: absolute;
  top: 13px;
  bottom: -8px;
  left: 0;
  content: "";
  width: 1px;
  background-color: var(--step-bdr-color);
}

.counter-one__single:first-child:before {
  display: none;
}

.counter-one__count-box {
  position: relative;
  display: block;
  margin-bottom: 5px;
}

.counter-one__count-box h3 {
  font-size: 60px;
  color: var(--step-black);
  font-weight: 800;
  line-height: 60px !important;
  font-family: var(--step-font) !important;
}

.counter-one__text {
  position: relative;
  display: inline-block;
  line-height: 26px;
}

/*--------------------------------------------------------------
# Categories One
--------------------------------------------------------------*/
.categories-one {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.categories-one__left {
  position: relative;
  display: block;
}

.categories-one__left .section-title {
  margin-bottom: 30px;
}

.categories-one__btn-box {
  position: relative;
  display: block;
  margin-top: 41px;
}

.categories-one__btn:hover:before {
  height: 480%;
}

.categories-one__right {
  position: relative;
  display: block;
}

.categories-one__right .row {
  --bs-gutter-x: 6px;
}

.categories-one__single {
  position: relative;
  display: block;
  text-align: center;
  background-color: var(--step-extra);
  margin-bottom: 6px;
  padding: 34px 0 37px;
  z-index: 1;
}

.categories-one__single:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--step-base);
  transform: scale(0, 1);
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  z-index: -1;
}

.categories-one__single:hover:before {
  transform: scale(1, 1);
}

.categories-one__icon {
  position: relative;
  display: block;
  margin-bottom: 23px;
}

.categories-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 65px;
  color: var(--step-base);
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}

.categories-one__single:hover .categories-one__icon span {
  color: var(--step-white);
  transform: scale(.9);
}

.categories-one__title {
  font-size: 18px;
  font-weight: 800;
  line-height: 18px;
  
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}

.categories-one__single:hover .categories-one__title {
  color: var(--step-white);
}

/*--------------------------------------------------------------
# All Time Hit Two
--------------------------------------------------------------*/
.all-time-hit-two {
  position: relative;
  display: block;
  background-color: var(--step-black);
  padding: 120px 0 90px;
  z-index: 1;
}

.all-time-hit-two-bg-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.02;
  z-index: -1;
}

.all-time-hit-two__top {
  position: relative;
  display: block;
}

.all-time-hit-two__top-left {
  position: relative;
  display: block;
  margin-bottom: 48px;
}

.all-time-hit-two__top-left .section-title {
  margin-bottom: 0;
}

.all-time-hit-two__top-left .section-title__title {
  color: var(--step-white);
}

.all-time-hit-two__top-right {
  position: relative;
  display: block;
  float: right;
  margin-top: 111px;
}

.all-time-hit-two__filter {
  position: relative;
  display: flex;
  align-items: center;
}

.all-time-hit-two__filter.style1 li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.all-time-hit-two__filter.style1 li+li {
  margin-left: 20px;
}

.all-time-hit-two__filter.style1 li .filter-text {
  position: relative;
  display: inline-block;
  color: #a4a9ae;
  font-size: 16px;
  font-weight: 600;
  padding-left: 15px;
  cursor: pointer;
  transition: all 0.4s ease;
  z-index: 1;
}

.all-time-hit-two__filter.style1 li .filter-text:before {
  position: absolute;
  top: 9px;
  left: 0;
  content: "";
  opacity: 0;
  height: 12px;
  width: 2px;
  background-color: var(--step-base);
  transform: rotate(15deg);
  transition: all 0.4s ease;
}

.all-time-hit-two__filter.style1 li .filter-text:after {
  position: absolute;
  top: 9px;
  left: 6px;
  content: "";
  opacity: 0;
  height: 12px;
  width: 2px;
  background-color: var(--step-base);
  transform: rotate(15deg);
  transition: all 0.4s ease;
}

.all-time-hit-two__filter.style1 li:hover .filter-text:before,
.all-time-hit-two__filter.style1 li:hover .filter-text:after {
  opacity: 1;
}

.all-time-hit-two__filter.style1 li:hover .filter-text,
.all-time-hit-two__filter.style1 li.active .filter-text {
  color: var(--step-base);
}

.all-time-hit-two__filter.style1 li.active .filter-text:before,
.all-time-hit-two__filter.style1 li.active .filter-text:after {
  opacity: 1;
}

.all-time-hit-two__bottom {
  position: relative;
  display: block;
}

.all-time-hit-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.2);
}

.all-time-hit-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.all-time-hit-two__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-image: -moz-linear-gradient(90deg, rgb(14, 17, 23) 0%, rgba(14, 17, 23, 0) 65%);
  background-image: -webkit-linear-gradient(90deg, rgb(14, 17, 23) 0%, rgba(14, 17, 23, 0) 65%);
  background-image: -ms-linear-gradient(90deg, rgb(14, 17, 23) 0%, rgba(14, 17, 23, 0) 65%);
  z-index: 1;
}

.all-time-hit-two__img img {
  width: 100%;
  transition: all 500ms ease;
}

.all-time-hit-two__single:hover .all-time-hit-two__img img {
  transform: scale(1.05);
}

.all-time-hit-two__content {
  position: absolute;
  left: 50px;
  bottom: 53px;
  z-index: 2;
}

.all-time-hit-two__title {
  font-size: 30px;
  color: var(--step-white);
  font-weight: 800;
  line-height: 30px;
  margin-bottom: 10px;
}

.all-time-hit-two__title a {
  color: var(--step-white);
  transition: all 500ms ease;
}

.all-time-hit-two__title a:hover {
  color: var(--step-base);
}

.all-time-hit-two__text {
  font-size: 13px;
  color: #9da6b9;
  font-weight: 600;
  
  line-height: 13px;
}

.all-time-hit-two__text i {
  color: var(--step-base);
  position: relative;
  display: inline-block;
  padding-left: 8px;
}

.all-time-hit-two__text span {
  color: var(--step-white);
}

.all-time-hit-two__content--two {
  left: 40px;
  bottom: 38px;
}

.all-time-hit-two__title--two {
  font-size: 20px;
  line-height: 24px;
}

/*--------------------------------------------------------------
# Watch Devices
--------------------------------------------------------------*/
.watch-devices {
  position: relative;
  display: block;
  padding: 120px 0 0;
}

.watch-devices__content {
  position: relative;
  display: block;
  text-align: center;
}

.watch-devices__content .section-title {
  margin-bottom: 29px;
}

.watch-devices__text {
  padding-bottom: 50px;
}

.watch-devices__img-box {
  position: relative;
  display: block;
  margin-right: 130px;
}

.watch-devices__img-box img {
  width: 100%;
}

.watch-devices__price-box {
  position: absolute;
  top: -45px;
  right: 41px;
  height: 114px;
  width: 114px;
  background-color: rgb(254, 144, 67);
  box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: fa-spin 5s ease infinite;
  z-index: 1;
}

.watch-devices__price-box:before {
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 8px;
  right: 8px;
  content: "";
  border-style: solid;
  border-width: 1px;
  border-color: rgb(255, 255, 255);
  border-radius: 50%;
  opacity: 0.4;
}

.watch-devices__price-box-shape {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.watch-devices__price-box h4 {
  font-size: 30px;
  font-weight: 800;
  color: var(--step-white);
  line-height: 30px;
}

.watch-devices__price-box p {
  font-size: 11px;
  color: #ffe3d0;
  
  text-transform: uppercase;
  line-height: 21px;
}


/*--------------------------------------------------------------
# FAQ One
--------------------------------------------------------------*/
.faq-one {
  position: relative;
  display: block;
}

.faq-one__wrapper {
  position: relative;
  display: block;
  max-width: 1560px;
  width: 100%;
  background-color: var(--step-extra);
  margin: 0 auto;
  padding: 120px 0 120px;
}

.faq-one__left {
  position: relative;
  display: block;
  margin-right: 70px;
}

.faq-one__left .section-title {
  margin-bottom: 35px;
}

.faq-one__left-content {
  position: relative;
  display: flex;
  align-items: center;
}

.faq-one__left-img {
  position: relative;
  display: inline-block;
}

.faq-one__left-img img {
  width: 150px;
  border-radius: 50%;
}

.faq-one__left-text-box {
  margin-left: 30px;
}

.faq-one__right {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  padding: 0 30px 0;
}

.faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 23px 0px 24px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  border-bottom: 1px solid var(--step-bdr-color);
}

.faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 26px;
  color: var(--step-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion+.accrodion {
  margin-top: 0px;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
  color: var(--step-base);
}

.faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--step-base);
}

.faq-one-accrodion .accrodion-title h4::before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 15px;
  color: var(--step-black);
  position: absolute;
  top: 50%;
  right: 0;
  line-height: 15px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-align: center;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f068";
  color: var(--step-base);
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-one-accrodion .accrodion-content {
  position: relative;
  padding: 23px 0px 23px;
  border-bottom: 1px solid var(--step-bdr-color);
}

.faq-one-accrodion .accrodion-content p {
  margin: 0;
}

.faq-one-accrodion .accrodion.last-chiled .accrodion-title {
  border-bottom: 1px solid transparent;
}

.faq-one-accrodion .accrodion.active.last-chiled .accrodion-title {
  border-bottom: 1px solid var(--step-bdr-color);
}

.faq-one-accrodion .accrodion.last-chiled .accrodion-content {
  border-bottom: 1px solid transparent;
}

/*--------------------------------------------------------------
# Wifi Pack
--------------------------------------------------------------*/
.wifi-pack {
  position: relative;
  display: block;
}

.wifi-pack__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 60px 40px;
  background-color: var(--step-primary);
}

.wifi-pack-shape {
  position: absolute;
  top: 0;
  right: 50px;
  opacity: .30;
}

.wifi-pack-shape img {
  width: auto;
}

.wifi-pack__left {
  position: relative;
  display: flex;
  align-items: center;
}

.wifi-pack__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  background-color: var(--step-black);
  border-radius: 50%;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.wifi-pack__icon span {
  position: relative;
  display: inline-block;
  font-size: 60px;
  color: var(--step-white);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.wifi-pack__icon:hover {
  background-color: var(--step-base);
}

.wifi-pack__icon:hover span {
  transform: scale(.9);
}

.wifi-pack__content {
  margin-left: 30px;
}

.wifi-pack__price {
  font-size: 30px;
  color: var(--step-white);
  font-weight: 800;
  line-height: 30px;
}

.wifi-pack__price sup {
  position: relative;
  top: -9px;
  left: 5px;
}

.wifi-pack__price span {
  font-size: 16px;
  left: -4px;
  position: relative;
}

.wifi-pace__text {
  font-size: 30px;
  font-weight: 800;
  color: var(--step-white);
  line-height: 32px;
  
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-two {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.about-two__left {
  position: relative;
  display: block;
}

.about-two__left .section-title {
  margin-bottom: 31px;
}

.about-two__points {
  position: relative;
  display: flex;
  align-items: center;
}

.about-two__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.about-two__points li+li {
  margin-left: 50px;
}

.about-two__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.about-two__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 65px;
  color: var(--step-primary);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.about-two__points li:hover .icon span {
  transform: scale(.9);
}

.about-two__points li .content {
  margin-left: 18px;
}

.about-two__points li .content .title-box {
  position: relative;
  display: flex;
  align-items: center;
}

.about-two__points li .content .title-box h3 {
  font-size: 36px;
  font-weight: 800;
  font-family: var(--step-font) !important;
  color: var(--step-base);
  line-height: 36px !important;
}

.about-two__points li .content .title-box .letter {
  font-size: 36px;
  font-weight: 800;
  font-family: var(--step-font);
  color: var(--step-base);
  line-height: 36px;
}

.about-two__points li .content p {
  color: var(--step-black);
  font-weight: 800;
  line-height: 26px;
}

.about-two__text {
  padding-top: 38px;
  padding-bottom: 40px;
}

.about-two__right {
  position: relative;
  display: block;
  margin-left: 100px;
}

.about-two__img-box {
  position: relative;
  display: block;
}

.about-two__img {
  position: relative;
  display: block;
}

.about-two__img img {
  width: 100%;
}

.about-two__img-two {
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
}

.about-two__img-two img {
  width: auto;
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
  position: relative;
  display: block;
  padding: 120px 0 115px;
  background-color: var(--step-extra);
  overflow: hidden;
  z-index: 1;
}

.services-one-shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: .10;
  z-index: -1;
}

.services-one-shape-1 img {
  width: auto;
}

.services-one-shape-2 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: .10;
  z-index: -1;
}

.services-one-shape-2 img {
  width: auto;
}

.services-one__top {
  position: relative;
  display: block;
  margin-bottom: 48px;
}

.services-one__top-left {
  position: relative;
  display: block;
}

.services-one__top-left .section-title {
  margin-bottom: 0;
}

.services-one__top-right {
  position: relative;
  display: block;
  margin-top: 31px;
}

.services-one__bottom {
  position: relative;
  display: block;
}

.services-one__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  margin-bottom: 30px;
  z-index: 1;
}

.services-one__single-inner {
  position: relative;
  display: block;
  padding: 40px 40px 52px;
  overflow: hidden;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  z-index: 1;
}

.services-one__single:hover .services-one__single-inner {
  background-color: var(--step-black);
}

.services-one__single-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: var(--step-black);
  background-blend-mode: luminosity;
  opacity: 0.08;
  background-position: center top;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.services-one__single:hover .services-one__single-bg {
  transform: scaleY(1.0);
}

.services-one__icon {
  position: relative;
  display: block;
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 72px;
  color: var(--step-base);
}

.services-one__title {
  font-size: 24px;
  font-weight: 800;
  line-height: 24px;
  margin-top: 16px;
  margin-bottom: 18px;
}

.services-one__title a {
  color: var(--step-black);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.services-one__single:hover .services-one__title a {
  color: var(--step-white);
}

.services-one__text {
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.services-one__single:hover .services-one__text {
  color: #a4a9ae;
}

.services-one__arrow {
  position: absolute;
  bottom: -25px;
  right: 20px;
  z-index: 2;
}

.services-one__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  height: 50px;
  width: 50px;
  font-size: 15px;
  color: var(--step-black);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
}

.services-one__single:hover .services-one__arrow a {
  background-color: var(--step-base);
  color: var(--step-white);
}

/*--------------------------------------------------------------
# Entertainment
--------------------------------------------------------------*/
.entertainment {
  position: relative;
  display: block;
  padding: 120px 0 0;
  background-color: var(--step-black);
  z-index: 1;
  direction: rtl;
}

.entertainment-shape-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.02;
  z-index: -1;
}

.entertainment .section-title__title {
  color: var(--step-white);
}

.entertainment__single {
  position: relative;
  display: block;
  background-color: rgb(39, 43, 48);
  margin-bottom: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.entertainment__single:hover {
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.15);
}

.entertainment__img {
  position: relative;
  display: block;
  overflow: hidden;
  height: 300px;
}

.entertainment__img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--step-black-rgb), .30);
  opacity: 1;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  -webkit-transform: perspective(400px) rotateX(-90deg) scale(0.2);
  -ms-transform: perspective(400px) rotateX(-90deg) scale(0.2);
  transform: perspective(400px) rotateX(-90deg) scale(0.2);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  z-index: 1;
}

.entertainment__single:hover .entertainment__img:before {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(1.0);
  -ms-transform: perspective(400px) rotateX(0deg) scale(1.0);
  transform: perspective(400px) rotateX(0deg) scale(1.0);
}

.entertainment__img img {
  width: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  height: 100%;
  object-fit: cover;
}

.entertainment__single:hover .entertainment__img img {
  transform: scale(1.1) rotate(2deg);
}

.entertainment__hover-box {
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  padding: 30px 30px;
  transform: scaleY(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  transform-origin: bottom center;
  z-index: 2;
}

.entertainment__single:hover .entertainment__hover-box {
  transform: scaleY(1.0);
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
}

.entertainment__hover-box:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-color: rgba(var(--step-black-rgb), .90);
  z-index: -1;
}

.entertainment__hover-text {
  font-size: 13px;
  color: var(--step-white);
  
}

.entertainment__hover-text i {
  color: var(--step-base);
  font-size: 13px;
  position: relative;
  display: inline-block;
  padding-left: 10px;
}

.entertainment__hover-text span {
  font-weight: 600;
}

.entertainment__hover-title {
  font-size: 24px;
  color: var(--step-white);
  font-weight: 800;
  line-height: 24px;
  text-align: right;
}

.entertainment__hover-title a {
  color: inherit;
  transition: all 500ms ease;
}

.entertainment__hover-title a:hover {
  color: var(--step-base);
}

.entertainment__video-link {
  position: absolute;
  top: -17px;
  right: 30px;
}

.entertainment__video-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 15px;
  color: var(--step-black);
  background-color: var(--step-white);
  border-radius: 50%;
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  z-index: 1;
}

.entertainment__video-icon:hover {
  background-color: var(--step-base);
  color: var(--step-white);
}

.entertainment__video-link .ripple,
.entertainment__video-icon .ripple:before,
.entertainment__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 35px;
  height: 35px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--step-primary-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--step-primary-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--step-primary-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--step-primary-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
}

.entertainment__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.entertainment__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}


/*--------------------------------------------------------------
# Newsletter
--------------------------------------------------------------*/
.newsletter {
  position: relative;
  display: block;
  background-color: var(--step-extra);
}

.newsletter__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 250px;
  padding-top: 52px;
  padding-bottom: 53px;
}

.newsletter__left {
  position: relative;
  display: flex;
  align-items: center;
}

.newsletter__icon {
  position: relative;
  display: flex;
  align-items: center;
}

.newsletter__icon span {
  position: relative;
  display: inline-block;
  font-size: 65px;
  background: rgb(20, 158, 167);
  background: linear-gradient(90deg, rgba(20, 158, 167, 1) 18%, rgba(250, 144, 69, 1) 91%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.newsletter__content {
  margin-left: 20px;
}

.newsletter__content h3 {
  font-size: 24px;
  font-weight: 800;
  line-height: 30px;
}

.newsletter__right {
  position: relative;
  display: block;
  max-width: 425px;
  width: 100%;
  margin-top: -25px;
}

.newsletter__form {
  position: relative;
  display: block;
}

.newsletter__input-box {
  position: relative;
  display: block;
}

.newsletter__input-box:before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #eeebe5;
}

.newsletter__input-box input[type="email"] {
  height: 50px;
  width: 100%;
  border: none;
  background-color: transparent;
  font-size: 16px;
  font-weight: 500;
  color: var(--step-gray);
  
  outline: none;
}

.newsletter__btn {
  border: none;
  position: absolute;
  top: 73%;
  right: -198px;
  transform: translateY(-50%);
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  padding: 130px 0 110px;
  z-index: 1;
}

.page-header-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.page-header-bg:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: rgba(39, 43, 48, .60);
}

.page-header__inner {
  position: relative;
  display: block;
  text-align: center;
  z-index: 15;
}

.page-header__inner h2 {
  font-size: 40px;
  color: var(--step-white);
  line-height: 50px;
  margin-bottom: 6px;
  font-weight: 800;
  
}

.thm-breadcrumb {
  position: relative;
  display: block;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  color: var(--step-white);
  font-size: 16px;
  font-weight: 800;
  opacity: .6;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li+li {
  margin-left: 2px;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  color: var(--step-white);
  font-size: 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--step-base);
  opacity: 1;
}

/*--------------------------------------------------------------
# News Page
--------------------------------------------------------------*/
.news-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# News Sidebar
--------------------------------------------------------------*/
.news-sidebar {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.news-sidebar__left {
  position: relative;
  display: block;
}

.news-sidebar__content {
  position: relative;
  display: block;
  direction: rtl;
  text-align: right;
}

.news-sidebar__single {
  position: relative;
  display: block;
}

.news-sidebar__single+.news-sidebar__single {
  margin-top: 39px;
}

.news-sidebar__img {
  position: relative;
  display: block;
}

.news-sidebar__img img {
  width: 100%;
}

.news-sidebar__date {
  position: absolute;
  bottom: 0px;
  right: 0;
  background-color: var(--step-base);
  padding: 12px 20px 12px;
  z-index: 1;
}

.news-sidebar__date p {
  font-size: 10px;
  font-weight: 800;
  color: var(--step-white);
  line-height: 10px;
  text-transform: uppercase;
}

.news-sidebar__content-box {
  position: relative;
  display: block;
  margin-top: 21px;
}

.news-sidebar__meta {
  display: flex;
  align-items: center;
  padding-right: 0;
}

.news-sidebar__meta li+li {
  margin-right: 10px;
}

.news-sidebar__meta li a {
  font-size: 14px;
  color: var(--step-gray);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-sidebar__meta li a:hover {
  color: var(--step-primary);
}

.news-sidebar__meta li a i {
  color: var(--step-primary);
  padding-right: 3px;
}

.news-sidebar__title {
  font-size: 30px;
  line-height: 40px;
  font-weight: 800;
  
  margin-top: 3px;
}

.news-sidebar__title a {
  color: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-sidebar__title a:hover {
  color: var(--step-base);
}

.news-sidebar__text {
  margin: 0;
  padding-top: 12px;
  padding-bottom: 11px;
  font-size: 16px;
}

.news-sidebar__bottom {
  display: flex;
  align-items: center;
}

.news-sidebar__read-more {
  font-size: 12px;
  color: var(--step-black);
  font-weight: 800;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  text-transform: uppercase;
  
}

.news-sidebar__read-more:hover {
  color: var(--step-base);
}

.news-sidebar__arrow {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--step-black);
  margin-left: 10px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-sidebar__arrow:hover {
  color: var(--step-base);
}


.news-sidebar__bottom-box {
  position: relative;
  display: block;
  background-color: var(--step-extra);
  padding: 60px 60px 56px;
  margin-top: 39px;
  overflow: hidden;
  z-index: 1;
}

.news-sidebar__bottom-box-icon {
  margin-bottom: 21px;
}

.news-sidebar__bottom-box-text {
  font-size: 16px;
}

.news-sidebar__delivering-services {
  position: relative;
  display: block;
  background-color: var(--step-extra);
  padding: 60px 60px 59px;
  margin-top: 50px;
  margin-bottom: 50px;
  overflow: hidden;
  z-index: 1;
}

.news-sidebar__delivering-services-icon {
  margin-bottom: 23px;
}

.news-sidebar__delivering-services-title {
  font-size: 30px;
  line-height: 35px;
  font-weight: 800;
  
}

.news-sidebar__delivering-services-title a {
  color: var(--step-black);
  transition: all 500ms ease;
}

.news-sidebar__delivering-services-title a:hover {
  color: var(--step-base);
}

.news-sidebar__shape-1 {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: luminosity;
  opacity: .30;
  z-index: -1;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }
}

.sidebar__single+.sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  margin: 0;
  /*! font-size: 20px; */
  margin-bottom: 5px;
  font-weight: 800;
  
}

.sidebar__search {
  position: relative;
  display: block;
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: var(--step-primary);
  color: var(--step-white);
  font-size: 18px;
  font-weight: 500;
  padding-left: 50px;
  height: 74px;
  width: 100%;
  padding-right: 80px;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--step-white);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--step-white);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--step-white);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--step-white);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--step-white);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--step-white);
}

.sidebar__search-form button[type="submit"] {
  background-color: transparent;
  color: var(--step-white);
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 46px 30px 30px;
  background-color: #11111103;
  overflow: hidden;
  z-index: 1;
  direction: rtl;
  text-align: right;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sidebar__post .sidebar__title {
  margin-right: 20px;
  text-align: right;
  color: #dd332d;
}

.sidebar__post-list {
  margin: 0;
}

.sidebar__post-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 20px 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-list li:hover {
  /*! background-color: var(--step-white); */
}

.sidebar__post-list li+li {
  margin-top: 10px;
}

.sidebar__post-image {
  margin-left: 20px;
}

.sidebar__post-image>img {
  width: 70px;
}

.sidebar__post-content {
  position: relative;
  top: -3px;
}

.sidebar__post-content h3 {
  font-size: 18px;
  margin: 0;
  line-height: 26px;
}

.sidebar__post-content-meta {
  font-size: 14px;
  font-weight: 500;
  color: var(--step-gray) !important;
  font-family: var(--step-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-content-meta i {
  color: var(--step-base);
  font-size: 15px;
  padding-left: 4px;
}

.sidebar__post-content h3 a {
  color: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  font-size: 16px;
  font-weight: 800;
  
}

.sidebar__category {
  position: relative;
  display: block;
  background-color: var(--step-extra);
  padding: 46px 30px 36px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__category .sidebar__title {
  padding-left: 20px;
  margin-bottom: 9px;
}

.sidebar__category-list {
  margin: 0;
}

.sidebar__category-list li+li {
  margin-top: 6px;
}

.sidebar__category-list li a {
  color: var(--step-gray);
  font-size: 16px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background: none;
  padding: 7px 20px 7px;
  font-weight: 500;
}

.sidebar__category-list li a:hover {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  color: var(--step-black);
}

.sidebar__category-list li.active a {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  color: var(--step-black);
}

.sidebar__category-list li a span {
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--step-base);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
}

.sidebar__category-list li a:hover span {
  color: var(--step-base);
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

.sidebar__category-list li.active a span {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  color: var(--step-base);
}

.sidebar__tags {
  position: relative;
  display: block;
  background: var(--step-extra);
  padding: 46px 45px 50px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__tags .sidebar__title {
  margin-left: 5px;
  margin-bottom: 25px;
}

.sidebar__tags-list {
  margin-top: -10px;
}

.sidebar__tags-list a {
  font-size: 13px;
  color: var(--step-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--step-white);
  display: inline-block;
  padding: 5px 25px 5px;
  margin-left: 5px;
  font-weight: 800;
  border-radius: 20px;
}

.sidebar__tags-list a+a {
  margin-left: 5px;
  margin-top: 10px;
}

.sidebar__tags-list a:hover {
  color: var(--step-white);
  background: var(--step-base);
}

.sidebar__comments {
  position: relative;
  display: block;
  background-color: var(--step-extra);
  padding: 46px 50px 43px;
  overflow: hidden;
  z-index: 1;
}

.sidebar__comments .sidebar__title {
  margin-bottom: 25px;
}

.sidebar__comments-list {
  position: relative;
  display: block;
}

.sidebar__comments-list li {
  position: relative;
  display: block;
  padding-left: 65px;
}

.sidebar__comments-list li+li {
  margin-top: 23px;
}

.sidebar__comments-icon {
  height: 45px;
  width: 45px;
  background-color: var(--step-white);
  border-radius: 50%;
  font-size: 15px;
  color: var(--step-black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.sidebar__comments-list li:hover .sidebar__comments-icon {
  background-color: var(--step-base);
  color: var(--step-white);
}

.sidebar__comments-text-box p {
  font-size: 15px;
  margin: 0;
  line-height: 26px;
  font-weight: 500;
}

.sidebar__comments-text-box p span {
  color: var(--step-black);
}

.sidebar__comments-text-box h5 {
  font-size: 15px;
  margin: 0;
  line-height: 26px;
  color: var(--step-gray);
  font-weight: 500;
  letter-spacing: 0;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.news-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.news-details__left {
  position: relative;
  display: block;
}

.news-details__img {
  position: relative;
  display: block;
}

.news-details__img img {
  width: 100%;
}

.news-details__date {
  position: absolute;
  bottom: 0px;
  left: 0;
  background-color: var(--step-base);
  padding: 12px 20px 12px;
  z-index: 1;
}

.news-details__date p {
  font-size: 10px;
  font-weight: 800;
  color: var(--step-white);
  line-height: 10px;
  text-transform: uppercase;
}

.news-details__content {
  position: relative;
  display: block;
  margin-top: 21px;
}

.news-details__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.news-details__meta li+li {
  margin-left: 10px;
}

.news-details__meta li a {
  font-size: 14px;
  color: var(--step-gray);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-details__meta li a:hover {
  color: var(--step-primary);
}

.news-details__meta li a i {
  color: var(--step-primary);
  padding-right: 3px;
}

.news-details__title {
  font-size: 30px;
  line-height: 40px;
  margin-top: 3px;
  margin-bottom: 12px;
  font-weight: 800;
  
}

.news-details__text-1 {
  font-size: 16px;
}

.news-details__text-2 {
  font-size: 16px;
  padding-top: 31px;
}

.news-details__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 30px 0 30px;
  margin-top: 51px;
  border-top: 1px solid var(--step-extra);
}

.news-details__bottom p {
  margin: 0;
}

.news-details__tags span {
  color: var(--step-black);
  font-size: 20px;
  margin-right: 14px;
  font-weight: 800;
  
}

.news-details__tags a {
  position: relative;
  color: var(--step-white);
  font-size: 13px;
  background-color: var(--step-base);
  display: inline-block;
  padding: 5px 25px 5px;
  font-weight: 800;
  border-radius: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-details__tags a:hover {
  background-color: var(--step-primary);
  color: var(--step-white);
}

.news-details__tags a+a {
  margin-left: 6px;
}

.news-details__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-details__social-list a {
  position: relative;
  height: 40px;
  width: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--step-black);
  background-color: var(--step-extra);
  font-size: 15px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.news-details__social-list a:hover {
  color: var(--step-white);
}

.news-details__social-list a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--step-base);
  -webkit-transition-delay: .1s;
  transition-delay: .1s;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transition-duration: .4s;
  transition-duration: .4s;
  -webkit-transition-property: all;
  transition-property: all;
  opacity: 1;
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  z-index: -1;
}

.news-details__social-list a:hover:after {
  opacity: 1;
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.news-details__social-list a+a {
  margin-left: 10px;
}

.news-details__pagenation-box {
  position: relative;
  display: block;
  overflow: hidden;
  margin-bottom: 54px;
}

.news-details__pagenation {
  position: relative;
  display: block;
}

.news-details__pagenation li {
  position: relative;
  float: left;
  font-size: 20px;
  color: var(--step-black);
  font-weight: 800;
  background-color: var(--step-extra);
  line-height: 35px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  max-width: 370px;
  width: 100%;
  padding-left: 60px;
  padding-right: 60px;
  padding-top: 50px;
  padding-bottom: 50px;
  
}

.news-details__pagenation li+li {
  margin-left: 30px;
}

.news-details__pagenation li:hover {
  background-color: var(--step-primary);
  color: var(--step-white);
}


/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
  position: relative;
  display: block;
  padding: 50px 0 120px;
  direction: rtl;
}

.service-details__left {
  position: relative;
  display: flex;
  flex-flow: column;
}

.service-details__category {
  position: relative;
  display: block;
}

.service-details__category-title {
  font-size: 20px;
  color: var(--step-base);
  line-height: 20px;
  display: block;
  background-color: #e4e5ea;
  padding: 20px 50px 20px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.service-details__category-list {
  position: relative;
  display: block;
  direction: rtl;
  padding-right: 0;
}

.service-details__category-list li {
  position: relative;
  display: block;
}

.service-details__category-list li+li {
  margin-top: 10px;
}

.service-details__category-list li a {
  color: var(--step-black);
  font-size: 16px;
  font-weight: 800;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background: none;
  padding: 13px 30px 12px;
  background-color: var(--step-extra);
  z-index: 1;
  border-radius: 10px;
}

.service-details__category-list li:hover a {
  color: var(--step-white);
}

.service-details__category-list li.active a {
  color: var(--step-white);
}

.service-details__category-list li a:after {
  position: absolute;
  bottom: 0px;
  top: 0px;
  left: 0;
  right: 0px;
  content: "";
  background-color: var(--step-black);
  transform: scaleX(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.service-details__category-list li:hover a:after {
  transform: scaleX(1);
}

.service-details__category-list li.active a:after {
  transform: scaleX(1);
}

.service-details__category-list li a span {
  position: absolute;
  top: 50%;
  left: 30px;
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--step-black);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
}

.service-details__category-list li a:hover span {
  color: var(--step-base);
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
}

.service-details__category-list li.active a span {
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  color: var(--step-base);
}


.service-details__need-help {
  position: relative;
  display: block;
  padding: 50px 35px 45px;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: right;
  z-index: 1;
  background-color: #1222;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  direction: rtl;
}
.service-details__need-address {
  height: 500px;
  position: relative;
  display: block;
  padding: 50px 20px 30px;
  margin-top: 30px;
  /*! margin-bottom: 30px; */
  text-align: right;
  z-index: 1;
  background-color: #1222;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  direction: rtl;
  overflow: hidden;
}

.service-details__need-help-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #111;
  opacity: 0.10;
  border-radius: 30px;
  background-blend-mode: luminosity;
  z-index: -1;
}

.service-details__need-help-icon {
  height: 85px;
  width: 85px;
  background-color: var(--step-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 28px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__need-help-icon:hover {
  background-color: var(--step-base);
}

.service-details__need-help-icon span {
  font-size: 30px;
  color: #222;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__need-help-icon:hover span {
  color: var(--step-white);
}

.service-details__need-help-title {
  font-size: 26px;
  color: var(--step-white);
  line-height: 32px;
  font-weight: 800;
  letter-spacing: 0;
}
.service-details__need-address-title {
    font-size: 26px;
  line-height: 32px;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: 2rem;
  color: #dd332d;
}

.service-details__need-address-title h2{
  color: #dd332d;
  margin-bottom: 2rem;
}

.service-details__need-help-title h2 {
  color: #dd332d;
  margin-bottom: 2rem;
}

.service-details__need-help-contact {
  position: relative;
  display: block;
  margin-top: 38px;
}

.service-details__need-help-contact p {
  font-size: 16px;
  color: var(--step-white);
  margin: 0;
  line-height: 16px;
  font-weight: 500;
  margin-bottom: 2px;
}

.service-details__need-help-contact a {
  font-size: 20px;
  color: var(--step-white);
  font-weight: 800;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__need-help-contact a:hover {
  color: #dd332d;
}

.service-details__download {
  position: relative;
  display: block;
}

.service-details__btn {
  width: 100%;
  text-align: center;
}

.service-details__btn:hover:before {
  height: 580%;
}

.service-details__right {
  position: relative;
  display: block;
  direction: rtl;
}

.service-details__content-box {
  position: relative;
  display: block;
}

.service-details__img {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.service-details__img img {
  width: 100%;
}

.service-details__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 46px;
  margin-bottom: 21px;
  color: #fff;
}

.service-details__quote {
  position: relative;
  display: block;
  border: 2px solid var(--step-base);
  padding: 15px 40px 22px;
  margin-top: 41px;
  margin-bottom: 41px;
}

.service-details__quote-text {
  font-size: 18px;
  color: var(--step-black);
  font-weight: 800;
  line-height: 30px;
  
}

.service-details__benefit {
  position: relative;
  display: block;
  margin-top: 56px;
  margin-bottom: 60px;
}

.service-details__benefit-img {
  position: relative;
  display: block;
}

.service-details__benefit-img img {
  width: 100%;
}

.service-details__benefit-content {
  position: relative;
  display: block;
  margin-top: -3px;
}

.service-details__benefit-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 24px;
}

.service-details__benefit-text {
  padding-top: 28px;
  padding-bottom: 28px;
}

.service-details__benefit-points {
  position: relative;
  display: block;
}

.service-details__benefit-points li {
  position: relative;
  display: flex;
  align-items: center;
}

.service-details__benefit-points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  background-color: var(--step-base);
  font-size: 9px;
  color: var(--step-white);
}

.service-details__benefit-points li .text {
  margin-left: 10px;
}

.service-details__benefit-points li .text p {
  font-size: 16px;
  font-weight: 600;
  color: var(--step-black);
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
  position: relative;
  display: block;
  padding: 120px 0 120px;
  direction: rtl;
}

.contact-page__left {
  position: relative;
  display: block;
}
.contact-page__left .section-title__title {
  font-size: 35px;
}
.contact-page__left .google-map__one {
  width: 100%;
  height: 535px;
}


.contact-page__left .section-title {
  margin-bottom: 30px;
}

.contact-page__contact-list {
  position: relative;
  display: block;
  margin-top: 41px;
}

.contact-page__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-page__contact-list li+li {
  margin-top: 15px;
}

.contact-page__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  width: 80px;
  border: 2px solid var(--step-base);
  border-radius: 50%;
  font-size: 30px;
  color: var(--step-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page__contact-list li:hover .icon {
  background-color: var(--step-base);
  color: var(--step-white);
}

.contact-page__contact-list li .content {
  margin-right: 20px;
  color: #fff;
}

.contact-page__contact-list li .content h4 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 28px;
  color: #fff;
}

.contact-page__contact-list li .content h4 a {
  color: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page__contact-list li .content h4 a:hover {
  color: var(--step-base);
}

.contact-page__right {
  position: relative;
  display: block;
}

.contact-page__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  z-index: 1;
}

.contact-page__content-inner {
  position: relative;
  display: block;
  padding: 60px 80px 60px;
  border: 1px solid var(--step-bdr-color);
  overflow: hidden;
  z-index: 1;
}

.contact-page-shape-1 {
  position: absolute;
  bottom: 0;
  left: 80px;
  z-index: -1;
}

.contact-page-shape-1 img {
  width: auto;
}

.contact-page__right .section-title {
  margin-bottom: 30px;
}

.contact-page__right .section-title__title {
  font-size: 36px;
  margin-top: 0;
  line-height: 46px;
}

.contact-page__form {
  position: relative;
  display: block;
}

.contact-page__form-input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}


.news-sidebar .contact-page__form-input-box input[type="text"], 
.news-sidebar .contact-page__form-input-box input[type="email"],
.news-sidebar .contact-page__form-input-box textarea,
.service-details .contact-page__form-input-box input[type="text"], 
.service-details .contact-page__form-input-box input[type="email"],
.service-details .contact-page__form-input-box textarea {
    background-color: #fff;
}

.contact-page__form-input-box input[type="text"],
.contact-page__form-input-box input[type="email"] {
  height: 50px;
  width: 100%;
  border: none;
  background-color: #83838321;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: #111;
  display: block;
  font-weight: 500;
  border-radius: 10px;
}

.contact-page__form-input-box textarea {
  font-size: 14px;
  color: #111;
  height: 150px;
  width: 100%;
  background-color: #83838321;
  padding: 15px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 500;
  border-radius: 10px;
}

.contact-page__form-input-box.text-message-box {
  height: 150px;
}

.contact-page__btn {
  border: none;
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
  display: block;
  background-color: var(--step-extra);
}
.google-map-address {
  width: 100%;
  height: 85%;
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 450px;
  width: 100%;
}
.google-map__address {
    position: relative;
  display: block;
  border: none;
  height: 100%;
  width: 100%;
}



/*--------------------------------------------------------------
# Gallery Page
--------------------------------------------------------------*/
.gallery-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}
.video-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.video-page__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  width: 100%;
  height: 350px;
}
.video-page__single iframe{
  width: 100%;
  height: 100%;
}

.gallery-page__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.gallery-page__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.gallery-page__img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  content: "";
  background-color: #272b3085;
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transform: translateY(-102%);
  transform: translateY(-102%);
  z-index: 1;
}

.gallery-page__single:hover .gallery-page__img:before {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.gallery-page__img img {
  width: 100%;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
  height: 250px;
}

.gallery-page__single:hover .gallery-page__img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.gallery-page__icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
}

.gallery-page__icon a {
  height: 95px;
  width: 95px;
  background-color: var(--step-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 22px;
  color: var(--step-white);
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
  opacity: 0;
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
  z-index: 2;
}

.gallery-page__single:hover .gallery-page__icon a {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
}

.gallery-page__icon a:hover {
  background-color: var(--step-white);
  color: var(--step-base);
}



/*--------------------------------------------------------------
# Service Available TWo
--------------------------------------------------------------*/
.service-available-two {
  padding-top: 120px;
}

/*--------------------------------------------------------------
# News Carousel Page
--------------------------------------------------------------*/
.news-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 165px;
}

.news-carousel-page .news-one__single {
  margin-bottom: 0;
}

.carousel-dot-style.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.carousel-dot-style.owl-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.carousel-dot-style.owl-carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.carousel-dot-style.owl-carousel .owl-dots {
  position: absolute;
  bottom: -48px;
  left: 0px;
  right: 0;
  text-align: center;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--step-primary);
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.carousel-dot-style.owl-carousel .owl-dot.active {
  width: 16px;
  height: 16px;
  background-color: var(--step-base);
}

.carousel-dot-style.owl-carousel .owl-dot:focus {
  outline: none;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Gallery Carousel Page
--------------------------------------------------------------*/
.gallery-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 165px;
}

.gallery-carousel-page .gallery-page__single {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Testimonial Carousel Page
--------------------------------------------------------------*/
.testimonials-carousel-page {
  position: relative;
  display: block;
  padding: 152px 0 165px;
}

/*--------------------------------------------------------------
# Team Carousel Page
--------------------------------------------------------------*/
.team-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 165px;
}

.team-carousel-page .team-one__single {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Carousel Page
--------------------------------------------------------------*/
.services-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 165px;
  background-color: var(--step-extra);
}

.services-carousel-page .services-one__single {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Boxed Version
--------------------------------------------------------------*/

body.boxed-wrapper {
  background-color: #f7f5f1;
}

.boxed-wrapper .page-wrapper {
  max-width: 1530px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 0px 100px 0px rgba(0, 0, 0, 0.08);
}

.about-twentytwenty-image {
  position: relative;
  padding-right: 0;
}

.about-twentytwenty-image .text {
  position: absolute;
  right: 0;
  top: 60%;
  -webkit-transform: translateY(-60%);
  transform: translateY(-60%);
  border: 8px solid #f9fafb;
  background-color: #1a4777;
  color: #f9fafb;
  width: 150px;
  border-radius: 50%;
  text-align: center;
  height: 150px;
}

.about-twentytwenty-image .text p {
  color: #ffffff;
  line-height: initial;
  text-transform: uppercase;
  position: absolute;
  right: 0;
  left: 0;
  top: 45%;
  -webkit-transform: translateY(-45%);
  transform: translateY(-45%);
  font-size: 16px;
  font-weight: 700;
}

.about-twentytwenty-image .text p span {
  display: inline-block;
  font-size: 30px;
}

.about-twentytwenty-image .twentytwenty-overlay {
  display: none;
}

.gallery__single {
  position: relative;
  display: block;
  background-color: rgb(39, 43, 48);
  margin-bottom: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.gallery__single:hover {
  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.15);
}

/* Social media */
#wrapper {
  padding: 0;
  z-index: 10000;
  transition: 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  list-style: none;
  /* z-index: 1000; */
  position: fixed;
  top: -59px;
  left: 0;
  transform: translate(-100%, 100%);
  margin-top: 340px;
  /* direction: rtl; */
}

#wrapper .Icon {
  position: relative;
  background: #c52d28;
  border-radius: 50%;
  padding: 15px;
  margin: 9px;
  width: 50px;
  height: 50px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#wrapper .tooltip {
  position: absolute;
  left: 0;
  font-size: 14px;
  background: #ffffff;
  color: #ffffff;
  padding: 5px 8px;
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#wrapper .tooltip::before {
  position: absolute;
  content: "";
  height: 8px;
  width: 8px;
  background: #ffffff;
  left: 0px;
  top: 11px;
  transform: translate(-50%) rotate(45deg);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

#wrapper .Icon:hover .tooltip {
  left: 60px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#wrapper .Icon a{
  color: #ffffff;
}

#wrapper .Icon:hover span,
#wrapper .Icon:hover .tooltip {
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.1);
}
#wrapper .Icon:hover a{
  color: #fff;
}
#wrapper .facebook:hover,
#wrapper .facebook:hover .tooltip,
#wrapper .facebook:hover .tooltip::before {
  background: #1877F2;
  color: #ffffff;
}

#wrapper .call:hover,
#wrapper .call:hover .tooltip,
#wrapper .call:hover .tooltip::before {
  background: #128C7E;
  color: #ffffff;
}

#wrapper .instagram:hover,
#wrapper .instagram:hover .tooltip,
#wrapper .instagram:hover .tooltip::before {
  background: #E4405F;
  color: #ffffff;
}

#wrapper .github:hover,
#wrapper .github:hover .tooltip,
#wrapper .github:hover .tooltip::before {
  background: #333333;
  color: #ffffff;
}

#wrapper .whatsapp:hover,
#wrapper .whatsapp:hover .tooltip,
#wrapper .whatsapp:hover .tooltip::before {
  background: #25D366;
  color: #ffffff;
}
.contact{
    position: relative;
    width: 100%;
    height: 50px;
    margin: 20px 0;
}
.contact .btn-call{
    position: absolute;
    left: 15%;
    font-size: 15px;
    background: #00acee;
    padding: 10px 15px;
    color: #fff;
    border-radius: 10px;
}
.contact .btn-whts{
    position: absolute;
    right: 15%;
    font-size: 15px;
    background: #25d366;
    color: #fff;
    border-radius: 10px;
    padding: 10px 15px;
}
