/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

.truncate, .truncate p span {
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 3; /* number of lines to show */
			line-clamp: 3;
	-webkit-box-orient: vertical;
 }


/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --futxo-font: 'Manrope', sans-serif;
  --futxo-font-two: 'Syne', sans-serif;
  --futxo-reey-font: 'reeyregular';
  --futxo-gray: #878c8f;
  --futxo-gray-rgb: 135, 140, 143;
  --futxo-white: #ffffff;
  --futxo-white-rgb: 255, 255, 255;
  --futxo-base: #c3002f;
  --futxo-base-rgb: 195, 0, 47;
  --futxo-black: #1c1b1f;
  --futxo-black-rgb: 28, 27, 31;
  --futxo-primary: #f5f5f5;
  --futxo-primary-rgb: 245, 245, 245;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--futxo-font);
  color: var(--futxo-gray);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--futxo-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 {
  font-family: var(--futxo-font-two);
  color: var(--futxo-black);
  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(--futxo-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(--futxo-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;
}

.custom-cursor__cursor-two {
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--futxo-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;
}

.custom-cursor__hover {
  background-color: var(--futxo-base);
  opacity: 0.4;
}

.custom-cursor__innerhover {
  width: 25px;
  height: 25px;
  opacity: .4;
}

.thm-btn-plain {
	position: relative;
	display: inline-block;
	-webkit-appearance: none;
	outline: none !important;
	background-color: var(--futxo-base);
	color: var(--futxo-white);
	font-size: 16px;
	font-weight: 600;
	padding: 16px 60px 17px;
	border-radius: 30px;
	text-align: center;
	overflow: hidden;
	letter-spacing: 0.1em;
	text-transform: capitalize;
	transition: 0.5s;
	z-index: 1;
	border-radius: 0;
  padding: 17px 44px 17px;
  letter-spacing: 0;
  }

  .thm-btn-plain:hover {
	color: var(--futxo-black);
	background-color: var(--futxo-white);
  }

.thm-btn {
  position: relative;
  display: inline-block;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--futxo-base);
  color: var(--futxo-white);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 60px 17px;
  border-radius: 30px;
  text-align: center;
  overflow: hidden;
  letter-spacing: 0.1em;
  text-transform: capitalize;
  transition: 0.5s;
  z-index: 1;
}

.thm-btn span {
  position: absolute;
  width: 20%;
  height: 100%;
  background-color: var(--futxo-black);
  transform: translateY(150%);
  border-radius: 50%;
  left: calc((var(--n) - 1) * 25%);
  transition: 0.5s;
  transition-delay: calc((var(--n) - 1) * 0.1s);
  z-index: -1;
}

.thm-btn:hover {
  color: var(--futxo-white);
}

.thm-btn:hover span {
  transform: translateY(0) scale(2);
}

.thm-btn span:nth-child(1) {
  --n: 1;
}

.thm-btn span:nth-child(2) {
  --n: 2;
}

.thm-btn span:nth-child(3) {
  --n: 3;
}

.thm-btn span:nth-child(4) {
  --n: 4;
}

.thm-btn span:nth-child(5) {
  --n: 5;
}

.section-title {
  position: relative;
  display: block;
  margin-top: -7px;
  margin-bottom: 46px;
}

.section-title__tagline-box {
  position: relative;
  display: block;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  color: var(--futxo-base);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.section-title__title {
  margin: 0;
  color: var(--futxo-black);
  font-size: 50px;
  line-height: 60px;
  font-weight: 600;
  margin-top: 7px;
}

.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;
}

.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(--futxo-black);
  color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 20px;
  color: #ffffff;
  background: var(--futxo-base);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
  background: var(--futxo-black);
  color: var(--futxo-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: var(--futxo-base);
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  transform: rotate(180deg);
}

.scroll-to-top i {
  color: var(--futxo-white);
  font-size: 18px;
  line-height: 50px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  position: relative;
  display: inline-block;
  transform: rotate(90deg);
}

.scroll-to-top:hover {
  background-color: var(--futxo-black);
}

.scroll-to-top:hover i {
  color: #fff;
}


/** xs sidebar **/
.xs-sidebar-group .xs-overlay {
  left: 0%;
  top: 0;
  position: fixed;
  height: 100%;
  opacity: 0;
  width: 100%;
  visibility: hidden;
  -webkit-transition: all .4s ease-in .8s;
  -o-transition: all .4s ease-in .8s;
  transition: all .4s ease-in .8s;
  cursor: url(../images/icon/cross-out.png),
    pointer;
  z-index: 999;
}

.xs-sidebar-group.isActive .xs-overlay {
  opacity: .8;
  visibility: visible;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s;
  transition: all .8s ease-out 0s;
  right: 100%;
}

.xs-sidebar-group .widget-heading {
  position: absolute;
  top: 0;
  right: 0;
  padding: 25px;
}

.xs-sidebar-group .widget-heading a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .widget-heading a:hover {
  color: var(--futxo-base);
  border-color: var(--futxo-base);
}

.xs-sidebar-widget {
  position: fixed;
  left: -100%;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 360px;
  z-index: 999999;
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  -o-transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  transition: all 0.5s cubic-bezier(0.9, 0.03, 0, 0.96) 0.6s;
  visibility: hidden;
  opacity: 0;
}

.xs-sidebar-group.isActive .xs-sidebar-widget {
  opacity: 1;
  visibility: visible;
  left: 0;
  background-color: var(--futxo-black);
  -webkit-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  -o-transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
  transition: all 0.7s cubic-bezier(0.9, 0.03, 0, 0.96) 0.4s;
}

.sidebar-textwidget {
  padding: 70px 30px;
}

.sidebar-widget-container {
  position: relative;
  top: 150px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease-in .3s;
  -o-transition: all .3s ease-in .3s;
  transition: all .3s ease-in .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-sidebar-group.isActive .sidebar-widget-container {
  top: 0px;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 1s ease-out 1.2s;
  -o-transition: all 1s ease-out 1.2s;
  transition: all 1s ease-out 1.2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.xs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: .8;
  z-index: 0;
}

.xs-bg-black {
  background-color: #000000;
}

.xs-sidebar-group .content-inner .logo {
  position: relative;
  max-width: 172px;
  width: 100%;
  margin-bottom: 30px;
}

.xs-sidebar-group .content-inner h4 {
  position: relative;
  display: block;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.xs-sidebar-group .content-inner .content-box {
  margin-bottom: 30px;
  padding-right: 15px;
}

.xs-sidebar-group .content-inner .content-box p {
  color: #ffffff;
}

.xs-sidebar-group .content-inner .form-inner .form-group {
  position: relative;
  margin-bottom: 20px;
}

.xs-sidebar-group .content-inner .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input[type='text'],
.xs-sidebar-group .content-inner .form-inner .form-group input[type='email'],
.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 50px;
  font-size: 15px;
  padding: 10px 20px;
  color: #848484;
  border: none;
  outline: none;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn {
  border: none;
  outline: none;
  background-color: var(--futxo-white);
  color: var(--futxo-black);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 13px 45px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn:hover {
  color: var(--futxo-white);
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn:after {
  background-color: var(--futxo-base);
}

.xs-sidebar-group .content-inner .form-inner .form-group .form-inner__btn span {
  background-color: var(--futxo-base);
}

.xs-sidebar-group .content-inner .form-inner .form-group textarea {
  resize: none;
  height: 120px;
}

.xs-sidebar-group .content-inner .form-inner .form-group input:focus,
.xs-sidebar-group .content-inner .form-inner .form-group textarea:focus {
  border-color: #00224f;
}




/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  background: transparent;
  position: relative;
  display: block;
  transition: all 500ms ease;
  z-index: 999;
}

.main-header__top {
  position: relative;
  display: block;
}

.main-header__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background-color: #040405;
  padding: 12px 200px 12px;
}

.main-header__contact-list {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__contact-list li+li {
  margin-left: 70px;
}

.main-header__contact-list li:before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: -35px;
  width: 1px;
  background-color: var(--futxo-white);
}

.main-header__contact-list li:first-child:before {
  display: none;
}

.main-header__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__contact-list li .icon i {
  font-size: 16px;
  color: var(--futxo-white);
}

.main-header__contact-list li .text {
  margin-left: 20px;
}

.main-header__contact-list li .text p {
  font-size: 16px;
  color: var(--futxo-white);
  letter-spacing: 0.03em;
}

.main-header__contact-list li .text p a {
  color: var(--futxo-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__contact-list li .text p a:hover {
  color: var(--futxo-base);
}

.main-header__top-menu-and-social {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-header__top-menu {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-header__top-menu li {
  position: relative;
  display: block;
}

.main-header__top-menu li+li {
  margin-left: 34px;
}

.main-header__top-menu li:before {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: -17px;
  width: 1px;
  background-color: var(--futxo-white);
  transform: rotate(15deg);
}

.main-header__top-menu li:first-child:before {
  display: none;
}

.main-header__top-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--futxo-white);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__top-menu li a:hover {
  color: var(--futxo-base);
}

.main-header__top-social-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.main-header__top-social-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--futxo-white);
  margin-right: 15px;
}

.main-header__top-social {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__top-social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--futxo-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__top-social a:hover {
  color: var(--futxo-base);
}

.main-header__top-social a+a {
  margin-left: 28px;
}

.main-menu {
  position: relative;
  display: block;
}

.main-menu__wrapper {
  position: relative;
  display: block;
}

.main-menu__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 200px 0;
  z-index: 1;
}

.main-menu__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  z-index: 1;
}

.main-menu__logo {
  display: block;
  margin-right: 100px;
  z-index: 1;
}

.main-menu__logo a {
  position: relative;
  display: flex;
  background-color: var(--futxo-base);
  padding: 27px 0;
  padding-right: 36px;
}

.main-menu__logo a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: -1000000px;
  background-color: var(--futxo-base);
  z-index: -1;
}

.main-menu__main-menu-box {
  display: block;
}

.main-menu__right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu__search-box {
  position: relative;
  display: block;
  padding: 36px 0;
}

.main-menu__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--futxo-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__search span {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--futxo-gray);
  font-family: var(--futxo-font);
  font-weight: 500;
  padding-left: 10px;
}

.main-menu__search:hover {
  color: var(--futxo-base);
}

.main-menu__btn-box {
  position: relative;
  display: block;
  margin-left: 45px;
  margin-right: 45px;
  padding: 20px 0;
}

.main-menu__btn {
  font-size: 16px;
  font-weight: 600;
  color: var(--futxo-white);
  background-color: var(--futxo-base);
  padding: 12px 50px 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.main-menu__btn:hover {
  background-color: var(--futxo-black);
  color: var(--futxo-white);
}

.main-menu__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  color: var(--futxo-base);
  padding: 27.5px 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu__nav-sidebar-icon .navSidebar-button:hover {
  color: var(--futxo-black);
}

.stricky-header.main-menu {
  background-color: var(--futxo-white);
}

.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: 32px;
  padding-bottom: 32px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 55px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--futxo-gray);
  position: relative;
  letter-spacing: 0.02em;
  font-weight: 500;
  padding-right: 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu .main-menu__list>li.dropdown>a:after {
  position: absolute;
  top: 50%;
  right: 0;
  font-family: "Font Awesome 5 Free";
  content: "\f067";
  font-size: 11px;
  color: var(--futxo-gray);
  font-weight: 700;
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.main-menu .main-menu__list>li.current>a::after,
.main-menu .main-menu__list>li:hover>a::after,
.stricky-header .main-menu__list>li.current>a::after,
.stricky-header .main-menu__list>li:hover>a::after {
  color: var(--futxo-base);
}

.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(--futxo-base);
  text-shadow: 0.05px 0 0 rgb(195 0 47 / 80%);
}

.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%;
  left: 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: 25px 20px 34px;
}

.sub-menu {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  top: 99% !important;
}

.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: 4px;
}

.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: 15px;
  line-height: 30px;
  color: var(--futxo-gray);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 20px 6px;
  -webkit-transition: 500ms;
  transition: 500ms;
  background-color: var(--futxo-white);
  font-family: var(--futxo-font-two);
}

.main-menu .main-menu__list>li>ul>li:last-child>a,
.main-menu .main-menu__list>li>ul>li>ul>li:last-child>a,
.stricky-header .main-menu__list>li>ul>li:last-child>a,
.stricky-header .main-menu__list>li>ul>li>ul>li:last-child>a {
  border-bottom: 0;
}

.main-menu .main-menu__list>li>ul>li:hover>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: var(--futxo-primary);
  color: var(--futxo-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%;
  right: 20px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f061";
  font-size: 14px;
  color: var(--futxo-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>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;
}

.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(--futxo-base);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--futxo-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--futxo-base);
  cursor: pointer;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--futxo-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(--futxo-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -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;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--futxo-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-left: 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;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--futxo-font);
  font-weight: 500;
  height: 46px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 500ms;
  transition: 500ms;
}

.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(--futxo-base);
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--futxo-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(--futxo-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(--futxo-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;
}

.mobile-nav__top .main-menu__login a {
  color: var(--futxo-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(--futxo-white);
  -webkit-transition: 500ms;
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--futxo-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--futxo-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(--futxo-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--futxo-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-right: 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: -26px;
  margin-bottom: -26px;
}

.home-showcase__inner {
  padding: 40px 40px 36px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.home-showcase .row {
  --bs-gutter-x: 42px;
  --bs-gutter-y: 20px;
}

.home-showcase__image {
  position: relative;
  background-color: var(--futxo-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 11px;
  width: 150px;
  text-align: center;
}

.home-showcase__buttons__item::before {
  height: 56px;
  right: -41px;
  border-radius: 45%;
}

.home-showcase__buttons__item+.home-showcase__buttons__item {
  margin-top: 10px;
}

.home-showcase__title {
  margin: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--futxo-black);
  margin-top: 17px;
}

.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(--futxo-white, #ffffff);
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  position: relative;
  display: block;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
}

.main-menu-two__wrapper-inner {
  position: relative;
  display: block;
  padding-left: 270px;
  padding-right: 60px;
  z-index: 1;
}

.main-menu-two__logo {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 270px;
  background-color: var(--futxo-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-menu-two__logo a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--futxo-base);
}

.main-menu-two__top {
  position: relative;
  display: block;
}

.main-menu-two__top-inner {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: var(--futxo-black);
  padding-left: 60px;
}

.main-menu-two__contact-list {
  position: relative;
  display: flex;
  align-items: center;
  padding: 7px 0;
}

.main-menu-two__contact-list li {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li+li {
  margin-left: 30px;
}

.main-menu-two__contact-list li .icon {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__contact-list li .icon i {
  font-size: 16px;
  color: var(--futxo-white);
}

.main-menu-two__contact-list li .text {
  margin-left: 20px;
}

.main-menu-two__contact-list li .text p {
  font-size: 15px;
  color: var(--futxo-white);
  letter-spacing: 0.03em;
}

.main-menu-two__contact-list li .text p a {
  color: var(--futxo-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__contact-list li .text p a:hover {
  color: var(--futxo-base);
}

.main-menu-two__top-menu-and-social {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-two__top-menu {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-two__top-menu li {
  position: relative;
  display: block;
}

.main-menu-two__top-menu li+li {
  margin-left: 34px;
}

.main-menu-two__top-menu li:before {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: -17px;
  width: 1px;
  background-color: var(--futxo-white);
  transform: rotate(15deg);
}

.main-menu-two__top-menu li:first-child:before {
  display: none;
}

.main-menu-two__top-menu li a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--futxo-white);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__top-menu li a:hover {
  color: var(--futxo-base);
}

.main-menu-two__top-social-box {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--futxo-base);
  margin-left: 40px;
  padding-left: 70px;
  z-index: 1;
}

.main-menu-two__top-social-box:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: -100000000px;
  background-color: var(--futxo-base);
  z-index: -1;
}

.main-menu-two__top-social-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--futxo-white);
  margin-right: 40px;
}

.main-menu-two__top-social {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-two__top-social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #161735;
  height: 40px;
  width: 50px;
  background-color: var(--futxo-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__top-social a:hover {
  color: var(--futxo-white);
  background-color: var(--futxo-black);
}

.main-menu-two__top-social a+a {
  margin-left: 10px;
}

.main-menu-two__bottom {
  display: block;
}

.main-menu-two__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-left: 60px;
}

.main-menu-two__main-menu-box {
  display: block;
}

.main-menu-two__right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.main-menu-two__btn-box {
  position: relative;
  display: block;
  padding: 20px 0;
}

.main-menu-two__btn {
  font-size: 16px;
  font-weight: 600;
  color: var(--futxo-white);
  background-color: var(--futxo-base);
  padding: 12px 50px 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.main-menu-two__btn:hover {
  background-color: var(--futxo-black);
  color: var(--futxo-white);
}

.main-menu-two__call {
  position: relative;
  display: flex;
  align-items: center;
  padding: 22.5px 0;
  margin-left: 40px;
  margin-right: 70px;
  z-index: 5;
}

.main-menu-two__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  background-color: var(--futxo-primary);
  border-radius: 50%;
  font-size: 20px;
  color: var(--futxo-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__call-icon:hover {
  background-color: var(--futxo-base);
  color: var(--futxo-white);
}

.main-menu-two__call-content {
  margin-left: 10px;
}

.main-menu-two__call-sub-title {
  font-size: 13px;
  line-height: 13px;
  margin-bottom: 4px;
}

.main-menu-two__call-number {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  font-family: var(--futxo-font);
}

.main-menu-two__call-number a {
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__call-number a:hover {
  color: var(--futxo-base);
}

.main-menu-two__search-box {
  position: relative;
  display: block;
  padding: 36px 0;
}

.main-menu-two__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__search span {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--futxo-gray);
  font-family: var(--futxo-font);
  font-weight: 500;
  padding-left: 10px;
}

.main-menu-two__search:hover {
  color: var(--futxo-base);
}

.main-menu-two__cart-box {
  position: relative;
  display: block;
  margin-left: 10px;
  margin-right: 40px;
  padding: 33px 0;
}

.main-menu-two__cart {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 24px;
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__cart:hover {
  color: var(--futxo-base);
}

.main-menu-two__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  color: var(--futxo-black);
  padding: 27.5px 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__nav-sidebar-icon .navSidebar-button:hover {
  color: var(--futxo-base);
}


.stricky-header.main-menu-two {
  background-color: var(--futxo-white);
}

.stricky-header .main-menu-two__top-inner {
  display: none;
}

/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-header-three {
  background: transparent;
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0;
  width: 100%;
  transition: all 500ms ease;
  z-index: 999;
}

.main-menu-three__wrapper {
  position: relative;
  display: block;
}

.main-menu-three__wrapper-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 200px 0;
  z-index: 1;
}

.main-menu-three__wrapper-inner:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(221, 212, 212, .10);
  z-index: -1;
}

.main-menu-three__left {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  z-index: 1;
}

.main-menu-three__logo {
  display: block;
  margin-right: 100px;
  z-index: 1;
}

.main-menu-three__logo a {
  position: relative;
  display: flex;
  background-color: var(--futxo-base);
  padding: 27px 0;
  padding-right: 36px;
}

.main-menu-three__logo a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: -1000000px;
  background-color: var(--futxo-base);
  z-index: -1;
}

.main-menu-three__main-menu-box {
  display: block;
}

.main-menu-three__right {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__search-box {
  position: relative;
  display: block;
  padding: 36px 0;
}

.main-menu-three__search {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--futxo-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__search span {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 18px;
  color: var(--futxo-white);
  font-family: var(--futxo-font);
  font-weight: 500;
  padding-left: 10px;
}

.main-menu-three__search:hover {
  color: var(--futxo-base);
}

.main-menu-three__call {
  position: relative;
  display: flex;
  align-items: center;
  padding: 22.5px 0;
  margin-left: 40px;
  margin-right: 40px;
  z-index: 5;
}

.main-menu-three__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  background-color: var(--futxo-primary);
  border-radius: 50%;
  font-size: 20px;
  color: var(--futxo-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__call-icon:hover {
  background-color: var(--futxo-base);
  color: var(--futxo-white);
}

.main-menu-three__call-content {
  margin-left: 10px;
}

.main-menu-three__call-sub-title {
  font-size: 13px;
  line-height: 13px;
  margin-bottom: 4px;
}

.main-menu-three__call-number {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  font-family: var(--futxo-font);
}

.main-menu-three__call-number a {
  color: var(--futxo-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__call-number a:hover {
  color: var(--futxo-base);
}

.main-menu-three__nav-sidebar-icon {
  position: relative;
  display: block;
}

.main-menu-three__nav-sidebar-icon .navSidebar-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  color: var(--futxo-base);
  padding: 27.5px 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__nav-sidebar-icon .navSidebar-button:hover {
  color: var(--futxo-white);
}

.main-menu-three .main-menu__list>li>a,
.stricky-header.main-menu-three .main-menu__list>li>a {
  color: var(--futxo-white);
}

.main-menu-three .main-menu__list>li.dropdown>a:after {
  color: var(--futxo-white);
}

.main-menu-three .main-menu__list>li.current>a::after,
.main-menu-three .main-menu__list>li:hover>a::after,
.stricky-header.main-menu-three .main-menu__list>li.current>a::after,
.stricky-header.main-menu-three .main-menu__list>li:hover>a::after {
  color: var(--futxo-base);
}

.main-menu-three .main-menu__list>li.current>a,
.main-menu-three .main-menu__list>li:hover>a,
.stricky-header.main-menu-three .main-menu__list>li.current>a,
.stricky-header.main-menu-three .main-menu__list>li:hover>a {
  color: var(--futxo-base);
  text-shadow: 0.05px 0 0 rgb(195 0 47 / 80%);
}

.stricky-header.main-menu-three {
  background-color: var(--futxo-black);
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  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-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.search-popup.active {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--futxo-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
  background-color: #fff;
  border-radius: 0px;
  overflow: hidden;
}

.search-popup__content form input[type="search"],
.search-popup__content form input[type="text"] {
  width: 100%;
  background-color: #fff;
  font-size: 16px;
  border: none;
  outline: none;
  height: 66px;
  padding-left: 30px;
  border-radius: 0px;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  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;
  position: absolute;
  top: 0;
  right: -1px;
  background-color: var(--futxo-base);
  border: 0;
  border-radius: 0;
}

.search-popup__content .thm-btn i {
  height: auto;
  width: auto;
  background-color: transparent;
  border-radius: 50%;
  color: var(--futxo-white);
  font-size: 22px;
  line-height: inherit;
  text-align: center;
  top: 0;
  margin-right: 0;
  padding-left: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.search-popup__content .thm-btn:hover {
  background-color: var(--futxo-black);
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/
.main-slider {
  position: relative;
  background-color: #090909;
  z-index: 10;
}

.main-slider .item {
  background-color: #090909;
  position: relative;
  padding-top: 174px;
  padding-bottom: 280px;
  z-index: 10;
}

.main-slider__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: luminosity;
  opacity: .40;
  z-index: 1;
}

.main-slider__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: .22;
}

.main-slider__shape-1 img {
  width: auto !important;
}

.main-slider__shape-2 {
  position: absolute;
  right: -75px;
  bottom: -175px;
  height: 555px;
  width: 555px;
  background-color: var(--futxo-base);
  border-radius: 50%;
}

.main-slider__video-link {
  position: absolute;
  bottom: 160px;
  right: 180px;
  z-index: 1;
}

.main-slider__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: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 25px;
  color: var(--futxo-base);
  background-color: var(--futxo-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;
}

.main-slider__video-icon:hover {
  background-color: var(--futxo-base);
  color: var(--futxo-white);
}

.main-slider__video-icon:before {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  content: "";
  border-radius: 50%;
  border: 1px solid rgba(var(--futxo-white-rgb), 1);
  z-index: 1;
}

.main-slider__video-link .ripple,
.main-slider__video-icon .ripple:before,
.main-slider__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.main-slider__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.main-slider__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.main-slider__content {
  position: relative;
  display: block;
  z-index: 10;
}

.main-slider__sub-title {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  color: var(--futxo-white);
  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;
  bottom: -11px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--futxo-base);
}

.main-slider__title {
  position: relative;
  display: block;
  font-size: 100px;
  color: var(--futxo-white);
  font-weight: 600;
  line-height: 110px;
  text-transform: capitalize;
  margin-top: 31px;
  margin-bottom: 24px;
  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-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;
}

.active .main-slider__title,
.active .main-slider__sub-title,
.active .main-slider__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}

.main-slider .owl-theme .owl-dots {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  max-width: 150px;
  width: 100%;
  position: absolute;
  right: 430px;
  top: 48%;
  transform: translateY(-50%);
  padding: 0;
  margin: 0 auto !important;
  height: 0;
  line-height: 0;
  counter-reset: count;
}

.main-slider .owl-theme .owl-dots .owl-dot+.owl-dot {
  margin-top: 15px;
}

.main-slider .owl-theme .owl-dots .owl-dot span {
  position: relative;
  display: block;
  width: 100px;
  height: 2px;
  border-radius: 0;
  background-color: rgba(var(--futxo-white-rgb), .30);
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-slider .owl-theme .owl-dots .owl-dot span:before {
  position: absolute;
  height: 35px;
  width: 35px;
  text-align: center;
  color: #ffffff;
  font-size: 30px;
  line-height: 30px;
  font-weight: 500;
  counter-increment: count;
  content: "0"counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  top: -16px;
  right: -59px;
  opacity: 0;
  transform: scale(0);
}

.main-slider .owl-theme .owl-dots .owl-dot:hover span,
.main-slider .owl-theme .owl-dots .owl-dot.active span:before {
  opacity: 1;
  transform: scale(1);
}

.main-slider .owl-theme .owl-dots .owl-dot:hover span,
.main-slider .owl-theme .owl-dots .owl-dot.active span {
  background-color: rgba(var(--futxo-base-rgb), 1);
  width: 150px;
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
  position: relative;
  background-color: #090909;
  z-index: 10;
}

.main-slider-two .item {
  background-color: #090909;
  position: relative;
  padding-top: 219px;
  padding-bottom: 225px;
  z-index: 10;
}

.main-slider-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: luminosity;
  opacity: .30;
  z-index: 1;
}

.main-slider-two__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  opacity: .10;
  z-index: -1;
}

.main-slider-two__shape-2 {
  position: absolute;
  bottom: -120px;
  right: 0;
  mix-blend-mode: overlay;
  opacity: .70;
  z-index: 1;
}

.main-slider-two__shape-2 img {
  width: auto !important;
}

.main-slider-two__content {
  position: relative;
  display: block;
  z-index: 10;
}

.main-slider-two__sub-title {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  color: var(--futxo-white);
  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:before {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--futxo-white);
}

.main-slider-two__title {
  position: relative;
  display: block;
  font-size: 100px;
  color: var(--futxo-white);
  font-weight: 600;
  line-height: 110px;
  text-transform: capitalize;
  margin-top: 31px;
  margin-bottom: 24px;
  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-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 {
  border-radius: 0;
  padding: 16px 50px 17px;
}

.main-slider-two__btn:hover {
  color: var(--futxo-base);
}

.main-slider-two__btn span {
  background-color: var(--futxo-white);
}

.main-slider-two__video-link {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.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: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  font-size: 20px;
  color: var(--futxo-white);
  background-color: var(--futxo-base);
  border-radius: 0;
  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;
}

.main-slider-two__video-icon:hover {
  background-color: var(--futxo-white);
  color: var(--futxo-base);
}

.main-slider-two__video-icon:before {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  content: "";
  border-radius: 0;
  border: 1px solid #dddddd;
  z-index: 1;
}

.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: 120px;
  height: 120px;
  border-radius: 0%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.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;
}

.active .main-slider-two__title,
.active .main-slider-two__sub-title,
.active .main-slider-two__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}



.main-slider-two .owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  max-width: 100%;
  width: 100%;
  padding: 0px 0px;
  margin: 0 auto;
  height: 0;
  line-height: 0;
  transform: translateY(-50%);
}

.main-slider-two .owl-theme .owl-nav [class*=owl-] {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 60px;
  height: 180px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: rgba(var(--futxo-white-rgb), 1);
  background-color: rgba(var(--futxo-white-rgb), .10);
  border: none;
  border-radius: 0;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
  padding: 0px 0px !important;
}

.main-slider-two .owl-theme .owl-nav [class*=owl-]:hover {
  color: rgba(var(--futxo-black-rgb), 1);
  background-color: rgba(var(--futxo-white-rgb), 1);
}

.main-slider-two .owl-theme .owl-nav [class*=owl-]+[class*=owl-] {
  margin-left: 0px;
}


.main-slider-two .owl-theme .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  width: 100%;
  position: absolute;
  bottom: 82px;
  left: 0;
  right: 0;
  padding: 0 15px;
  margin: 0 auto;
  height: 0;
  line-height: 0;
}

.main-slider-two .owl-theme .owl-dots .owl-dot+.owl-dot {
  margin-left: 10px;
}

.main-slider-two .owl-theme .owl-dots .owl-dot span {
  width: 40px;
  height: 4px;
  border-radius: 0;
  background-color: rgba(var(--futxo-white-rgb), 1);
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-slider-two .owl-theme .owl-dots .owl-dot:hover span,
.main-slider-two .owl-theme .owl-dots .owl-dot.active span {
  background-color: rgba(var(--futxo-base-rgb), 1);
}

/*--------------------------------------------------------------
# Main Slider Three
--------------------------------------------------------------*/
.main-slider-three {
  position: relative;
  display: block;
  background-color: #090909;
  z-index: 10;
}

.main-slider-three .item {
  background-color: #090909;
  position: relative;
  padding-top: 244px;
  padding-bottom: 180px;
  z-index: 10;
}

.main-slider-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  mix-blend-mode: luminosity;
  opacity: .10;
  z-index: 1;
}

.main-slider-three__shape-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateX(100px);
  opacity: 0;
  z-index: 1;
}

.main-slider-three__shape-1 img {
  width: auto !important;
}

.active .main-slider-three__shape-1 {
  opacity: 1;
  transform: translateX(0px);
  transition: all 1000ms ease;
  transition-delay: 1000ms;
}


.main-slider-three__img {
  position: absolute;
  bottom: 80px;
  right: 260px;
  background-color: #090909;
  border-radius: 50%;
  overflow: hidden;
  transform: translateX(500px);
  opacity: 0;
  z-index: 2;
}

.main-slider-three__img img {
  width: auto !important;
  border-radius: 50%;
  mix-blend-mode: luminosity;
}

.active .main-slider-three__img {
  opacity: 1;
  transform: translateX(0px);
  transition: all 1000ms ease;
  transition-delay: 1500ms;
  z-index: 1;
}

.main-slider-three__content {
  position: relative;
  display: block;
  z-index: 10;
}

.main-slider-three__sub-title {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  color: var(--futxo-white);
  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;
  bottom: -11px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--futxo-base);
}

.main-slider-three__title {
  position: relative;
  display: block;
  font-size: 100px;
  color: var(--futxo-white);
  font-weight: 600;
  line-height: 110px;
  text-transform: capitalize;
  margin-top: 31px;
  margin-bottom: 37px;
  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-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 {
  border-radius: 0;
}

.main-slider-three__btn:hover {
  color: var(--futxo-base);
}

.main-slider-three__btn span {
  background-color: var(--futxo-white);
}

.active .main-slider-three__title,
.active .main-slider-three__sub-title,
.active .main-slider-three__btn-box {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0) translateX(0);
  transform: translateY(0) translateX(0);
}


.main-slider-three .owl-theme .owl-dots {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1200px;
  width: 100%;
  position: absolute;
  bottom: 68px;
  left: 0;
  right: 0;
  padding: 0 15px;
  margin: 0 auto !important;
  height: 0;
  line-height: 0;
}

.main-slider-three .owl-theme .owl-dots .owl-dot+.owl-dot {
  margin-left: 10px;
}

.main-slider-three .owl-theme .owl-dots .owl-dot span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: rgba(var(--futxo-white-rgb), .30);
  border: 2px solid transparent;
  margin: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-slider-three .owl-theme .owl-dots .owl-dot:hover span,
.main-slider-three .owl-theme .owl-dots .owl-dot.active span {
  background-color: rgba(var(--futxo-white-rgb), 0);
  border: 2px solid var(--futxo-white);
}



/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  display: block;
  counter-reset: count;
  margin-top: -102px;
  padding: 0;
  z-index: 10;
}

.feature-one__inner {
  position: relative;
  display: block;
}

.feature-one__inner .row {
  --bs-gutter-x: 0px;
}

.feature-one__single {
  position: relative;
  display: block;
  background-color: var(--futxo-white);
  padding: 39px 40px 34px;
  margin-bottom: 30px;
  overflow: hidden;
  z-index: 1;
}

.feature-one__single::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--futxo-base);
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.feature-one__single:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.feature-one__icon {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.feature-one__icon span, .feature-one__icon i {
  position: relative;
  display: inline-block;
  font-size: 53px;
  color: var(--futxo-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.feature-one__single:hover .feature-one__icon span, .feature-one__single:hover .feature-one__icon i {
  transform: scale(0.9);
  color: var(--futxo-white);
}

.feature-one__shape-1 {
  position: absolute;
  bottom: -10px;
  left: 0;
  opacity: .10;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.feature-one__shape-1>img {
  width: auto;
}

.feature-one__single:hover .feature-one__shape-1 {
  opacity: 0;
}

.feature-one__shape-2 {
  position: absolute;
  bottom: -10px;
  left: 0;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: -1;
}

.feature-one__single:hover .feature-one__shape-2 {
  opacity: .20;
}

.feature-one__shape-2>img {
  width: auto;
}

.feature-one__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}

.feature-one__title a {
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__single:hover .feature-one__title a {
  color: var(--futxo-white);
}

.feature-one__count {
  position: absolute;
  top: 34px;
  right: 37px;
  z-index: 2;
}

.feature-one__count:before {
  position: relative;
  font-size: 45px;
  line-height: 45px;
  font-weight: 700;
  color: transparent;
  letter-spacing: -0.02em;
  -webkit-text-stroke: 1px #e0e4e8;
  counter-increment: count;
  content: "0"counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.feature-one__single:hover .feature-one__count:before {
  color: var(--futxo-white);
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
  position: relative;
  display: block;
  padding: 0 0 120px;
  z-index: 1;
}

.about-one__left {
  position: relative;
  display: block;
  margin-left: 64px;
  margin-right: 10px;
}

.about-one__img-box {
  position: relative;
  display: block;
}

.about-one__img-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -36px;
  width: 12px;
  height: 220px;
  background-color: #090909;
}

.about-one__img {
  position: relative;
  display: block;
  background-color: #090909;
  overflow: hidden;
  z-index: 1;
}

.about-one__img::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .3) 100%);
  transform: skewX(17deg);
  z-index: 1;
}

.about-one__img:hover::before {
  -webkit-animation: shine 1.9s;
  animation: shine 1.9s;
}

.about-one__img img {
  width: 100%;
  mix-blend-mode: luminosity;
  transition: all 500ms linear;
  transition-delay: 0.2s;
}

.about-one__img:hover img {
  transform: scale(1.1) rotate(0deg);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.about-one__img-2 {
  position: absolute;
  right: -40px;
  bottom: -1px;
  background-color: #090909;
  overflow: hidden;
  z-index: 1;
}

.about-one__img-2::before {
  background: rgba(255, 255, 255, 0.4);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}

.about-one__img-2:hover::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.about-one__img-2 img {
  width: auto;
  mix-blend-mode: luminosity;
  transition: .5s ease;
  transform: scale(1.05);
}

.about-one__img-2:hover img {
  transform: scale(1);
}

.about-one__img-3 {
  position: absolute;
  right: -40px;
  top: -52px;
  z-index: -1;
}

.about-one__img-3 img {
  width: auto;
}

.about-one__experience-box {
  position: absolute;
  left: -62px;
  bottom: 37px;
  max-width: 170px;
  width: 100%;
  z-index: 2;
}

.about-one__experience-box::before {
  content: "";
  position: absolute;
  bottom: -37px;
  left: 0;
  border-top: 18px solid #090909;
  border-left: 32px solid transparent;
  border-right: 30px solid #090909;
  border-bottom: 19px solid transparent;
}

.about-one__experience {
  position: relative;
  display: block;
  padding: 45px 40px 52px;
  background-color: #090909;
  clip-path: polygon(0 14%, 100% 0, 100% 100%, 0% 100%);
}

.about-one__count {
  position: relative;
  display: block;
}

.about-one__count h3 {
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
  font-family: var(--futxo-font);
  letter-spacing: -0.04em;
  color: var(--futxo-white);
}

.about-one__experience-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  color: var(--futxo-white);
  letter-spacing: -0.04em;
  margin-top: 4px;
}

.about-one__right {
  position: relative;
  display: block;
  margin-left: 66px;
}

.about-one__right .section-title {
  margin-bottom: 24px;
}

.about-one__points {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 27px;
}

.about-one__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__points li+li {
  margin-top: 8px;
}

.about-one__points li .icon {
  position: relative;
  display: inline-block;
  top: 4px;
}

.about-one__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--futxo-base);
}

.about-one__points li p {
  font-size: 18px;
  color: var(--futxo-black);
  margin-left: 17px;
}

.about-one__btn-and-contact {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__btn-box {
  position: relative;
  display: block;
}

.about-one__contact {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
  top: -4px;
}

.about-one__contact .icon {
  position: relative;
  display: inline-block;
}

.about-one__contact .icon span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 59px;
  height: 59px;
  font-size: 22px;
  color: var(--futxo-base);
  border-radius: 50%;
  border: 1px solid #efeee6;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.07);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-one__contact .icon span:hover {
  color: var(--futxo-white);
  background-color: var(--futxo-base);
}

.about-one__contact .content {
  position: relative;
  display: block;
  margin-left: 10px;
}

.about-one__contact .content p {
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-one__contact .content h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 27px;
}

.about-one__contact .content h4 a {
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-one__contact .content h4 a:hover {
  color: var(--futxo-base);
}

/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  display: block;
  background-color: #090909;
  overflow: hidden;
  z-index: 1;
}

.why-choose-one__shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 410px;
  height: 370px;
  background-image: -moz-linear-gradient(90deg, rgba(251, 175, 43, 0) 0%, rgb(195, 0, 47) 100%);
  background-image: -webkit-linear-gradient(90deg, rgba(251, 175, 43, 0) 0%, rgb(195, 0, 47) 100%);
  background-image: -ms-linear-gradient(90deg, rgba(251, 175, 43, 0) 0%, rgb(195, 0, 47) 100%);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: -1;
}

.why-choose-one__shape-3 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 263px;
  height: 240px;
  background-color: var(--futxo-base);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  z-index: -1;
}

.why-choose-one__shape-4 {
  position: absolute;
  right: 0;
  top: 0;
  width: 480px;
  height: 466px;
  background-image: -moz-linear-gradient(90deg, rgba(251, 175, 43, 0) 0%, rgb(195, 0, 47) 100%);
  background-image: -webkit-linear-gradient(90deg, rgba(251, 175, 43, 0) 0%, rgb(195, 0, 47) 100%);
  background-image: -ms-linear-gradient(90deg, rgba(251, 175, 43, 0) 0%, rgb(195, 0, 47) 100%);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  z-index: 1;
}

.why-choose-one__shape-5 {
  position: absolute;
  right: 0;
  top: 0;
  width: 342px;
  height: 342px;
  background-color: var(--futxo-base);
  clip-path: polygon(0 0, 100% 100%, 100% 0);
  z-index: 1;
}

.why-choose-one__left {
  position: relative;
  display: block;
  padding-top: 120px;
}

.why-choose-one__left .section-title__title {
  color: var(--futxo-white);
}

.why-choose-one__left .section-title {
  margin-bottom: 24px;
}

.why-choose-one__text {
  color: #beb5b5;
}

.why-choose-one__points {
  position: relative;
  display: block;
  margin-top: 42px;
}

.why-choose-one__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.why-choose-one__points li+li {
  margin-top: 41px;
}

.why-choose-one__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 6px solid var(--futxo-white);
  background-color: var(--futxo-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.why-choose-one__points li:hover .icon {
  background-color: var(--futxo-black);
}

.why-choose-one__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 30px;
  color: var(--futxo-white);
}

.why-choose-one__points li .content {
  margin-left: 20px;
}

.why-choose-one__points li .content h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  color: var(--futxo-white);
}

.why-choose-one__points li .content p {
  color: #beb5b5;
  margin-top: 13px;
}

.why-choose-one__right {
  position: relative;
  display: block;
  margin-right: -375px;
}

.why-choose-one__img {
  position: relative;
  display: block;
  background-color: #090909;
}

.why-choose-one__img img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.why-choose-one__curved-circle {
  position: absolute;
  bottom: 120px;
  left: 100px;
  height: 145px;
  width: 145px;
  border-radius: 50%;
  background-color: var(--futxo-white);
  z-index: 1;
}


@keyframes textRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.why-choose-one__curved-circle .curved-circle {
  position: absolute;
  font-size: 16px;
  font-weight: 400;
  color: var(--futxo-black);
  text-transform: uppercase;
  letter-spacing: 0.29em;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-family: var(--futxo-font-two);
  animation: textRotate 10s linear 0s forwards infinite alternate;
  height: 145px !important;
  width: 145px;
}

.why-choose-one__video-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 2;
}

.why-choose-one__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: 85px;
  height: 85px;
  line-height: 85px;
  text-align: center;
  font-size: 20px;
  color: var(--futxo-base);
  border: 1px solid var(--futxo-black);
  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;
}

.why-choose-one__video-icon:hover {
  color: var(--futxo-white);
  background-color: var(--futxo-base);
  border: 1px solid var(--futxo-base);
}

.why-choose-one__dot-1 {
  position: absolute;
  bottom: 95px;
  left: 75px;
  opacity: .40;
}

.why-choose-one__dot-1 img {
  width: auto;
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.services-one__single {
  position: relative;
  display: block;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-bottom: 30px;
  z-index: 1;
}

.services-one__single::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  bottom: 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.services-one__img-box {
  position: relative;
  display: block;
}

.services-one__img {
  position: relative;
  display: block;
  background-color: var(--futxo-black);
  overflow: hidden;
  z-index: 1;
}

.services-one__img:before {
  background: var(--futxo-black);
  position: absolute;
  height: 0;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  -moz-transition: all 400ms ease-out 0s;
  -webkit-transition: all 400ms ease-out 0s;
  -ms-transition: all 400ms ease-out 0s;
  -o-transition: all 400ms ease-out 0s;
  transition: all 400ms ease-out 0s;
  content: "";
  z-index: 1;
}

.services-one__single:hover .services-one__img:before {
  height: 100%;
  opacity: 0.3;
}

.services-one__img:after {
  position: absolute;
  content: "";
  background: var(--futxo-black);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  z-index: 1;
  -moz-transition: all 600ms ease-out 0s;
  -webkit-transition: all 600ms ease-out 0s;
  -ms-transition: all 600ms ease-out 0s;
  -o-transition: all 600ms ease-out 0s;
  transition: all 600ms ease-out 0s;
}

.services-one__single:hover .services-one__img:after {
  height: 0;
  opacity: 0.2;
}

.services-one__img img {
  width: 100%;
  mix-blend-mode: luminosity;
  transition: .5s ease;
  transform: scale(1.05);
}

.services-one__single:hover .services-one__img img {
  transform: scale(1);
}

.services-one__icon {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  background-color: var(--futxo-base);
  border-radius: 50%;
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--futxo-white);
}

.services-one__content {
  position: relative;
  display: block;
  text-align: center;
  padding: 24px 45px 0;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.services-one__shape-1 {
  position: absolute;
  top: -3px;
  right: 0;
  opacity: .10;
  z-index: -1;
}

.services-one__shape-1 img {
  width: auto;
}

.services-one__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 29px;
}

.services-one__title a {
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__title a:hover {
  color: var(--futxo-base);
}

.services-one__text {
  font-size: 15px;
  line-height: 30px;
  margin-top: 19px;
  margin-bottom: 23px;
}

.services-one__arrow {
  position: relative;
  display: inline-block;
}

.services-one__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 55px;
  background-color: var(--futxo-base);
  font-size: 20px;
  color: var(--futxo-white);
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.services-one__arrow a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  background-color: var(--futxo-black);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.services-one__arrow a:hover::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}

/*--------------------------------------------------------------
# Video One
--------------------------------------------------------------*/
.video-one {
  position: relative;
  display: block;
  text-align: center;
  padding: 177px 0 164px;
  background-color: #090909;
  z-index: 1;
}

.video-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .60;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.video-one__inner {
  position: relative;
  display: block;
}

.video-one__video-link {
  position: relative;
  display: inline-block;
  z-index: 3;
}

.video-one__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: 30px;
  color: var(--futxo-white);
  background-color: var(--futxo-base);
  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;
}

.video-one__video-icon:hover {
  background-color: var(--futxo-white);
  color: var(--futxo-base);
}

.video-one__video-link .ripple,
.video-one__video-icon .ripple:before,
.video-one__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.video-one__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.video-one__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.video-one__title {
  font-size: 50px;
  font-weight: 600;
  color: var(--futxo-white);
  line-height: 60px !important;
  padding-top: 39px;
}

/*--------------------------------------------------------------
# Portfolio One
--------------------------------------------------------------*/
.portfolio-one {
  position: relative;
  display: block;
  padding: 30px 0 30px;
  z-index: 1;
}

.portfolio-one__carousel {
  position: relative;
  display: block;
}

.portfolio-one__single {
  position: relative;
  display: block;
}

.portfolio-one__img-box {
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.portfolio-one__img {
  position: relative;
  display: block;
  background-color: #090909;
  border-radius: 10px;
  z-index: 1;
}

.portfolio-one__img:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: #090909;
  opacity: 0.2;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 1;
}

.portfolio-one__single:hover .portfolio-one__img:before {
  opacity: 0.20;
  transform: scaleY(1.0);
}

.portfolio-one__img:after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: #090909;
  opacity: 0.2;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  opacity: 1;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 1;
}

.portfolio-one__single:hover .portfolio-one__img:after {
  opacity: 0.20;
  transform: scaleY(1.0);
}

.portfolio-one__img img {
  width: 100%;
  mix-blend-mode: luminosity;
  border-radius: 10px;
  transform: scale(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.portfolio-one__single:hover .portfolio-one__img img {
  transform: scale(1.2) rotate(1deg);
}

.portfolio-one__content {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: space-between;
  bottom: 0;
  left: 0;
  right: 60px;
  background-color: var(--futxo-base);
  border-radius: 8px;
  padding: 23px 30px 25px;
  background-position: center bottom;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: left;
  transform-style: preserve-3d;
  transform: scalex(0);
  z-index: 2;
}

.portfolio-one__single:hover .portfolio-one__content {
  transform: scalex(1.0);
}

.portfolio-one__title-box {
  position: relative;
  display: block;
}

.portfolio-one__sub-title {
  font-size: 14px;
  color: var(--futxo-white);
}

.portfolio-one__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}

.portfolio-one__title a {
  color: var(--futxo-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.portfolio-one__title a:hover {
  color: var(--futxo-black);
}

.portfolio-one__arrow {
  position: relative;
  display: inline-block;
}

.portfolio-one__arrow a {
  font-size: 18px;
  color: var(--futxo-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.portfolio-one__arrow a:hover {
  color: var(--futxo-black);
}

.portfolio-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.team-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .10;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  z-index: -1;
}

.team-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-one__img-box {
  position: relative;
  display: block;
}

.team-one__img {
  position: relative;
  display: block;
  background-color: #090909;
  overflow: hidden;
  z-index: 1;
}

.team-one__img img {
  width: 100%;
  mix-blend-mode: luminosity;
  transition: .5s ease;
  transform: scale(1.05);
}

.team-one__single:hover .team-one__img img {
  transform: scale(1);
}

.team-one__img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  background: rgba(var(--futxo-black-rgb), 0.5);
  opacity: 0;
  z-index: 1;
  content: "";
}

.team-one__single:hover .team-one__img::before {
  opacity: 1;
}

.team-one__share-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}

.team-one__share-btn>a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  color: var(--futxo-black);
  border-radius: 2px;
  border-bottom-right-radius: 0;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__share-btn>a:hover {
  color: var(--futxo-white);
  background-color: var(--futxo-base);
}

.team-one__social {
  position: absolute;
  bottom: 65px;
  right: 0;
  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: right center;
  z-index: 2;
}

.team-one__single:hover .team-one__social {
  transform: scaleY(1.0);
  transform-origin: bottom center;
  transition-delay: 500ms;
}

.team-one__social>a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 20px;
  color: var(--futxo-black);
  border-radius: 2px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__social>a:hover {
  color: var(--futxo-white);
  background-color: var(--futxo-base);
}

.team-one__social>a+a {
  margin-top: 15px;
}

.team-one__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.team-one__content-inner {
  position: relative;
  display: block;
  padding: 20px 40px 18px;
  overflow: hidden;
  z-index: 1;
}

.team-one__sub-title {
  font-size: 14px;
}

.team-one__name {
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
}

.team-one__name a {
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-one__name a:hover {
  color: var(--futxo-base);
}

.team-one__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: .10;
  z-index: -1;
}

.team-one__shape-1 img {
  width: auto;
}

/*--------------------------------------------------------------
# FAQ One
--------------------------------------------------------------*/
.faq-one {
  position: relative;
  display: block;
  padding: 120px 0 115px;
  z-index: 1;
}

.faq-one__left {
  position: relative;
  display: block;
}

.faq-one__left .section-title {
  margin-bottom: 34px;
}

.faq-one__points-and-img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: -30px;
  margin-top: 37px;
}

.faq-one__points {
  position: relative;
  display: block;
}

.faq-one__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.faq-one__points li+li {
  margin-top: 23px;
}

.faq-one__points li .icon {
  position: relative;
  display: inline-block;
}

.faq-one__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--futxo-black);
}

.faq-one__points li .text {
  margin-left: 10px;
}

.faq-one__points li .text p {
  color: var(--futxo-black);
  font-weight: 500;
}

.faq-one__img {
  position: relative;
  display: block;
  background-color: #090909;
  overflow: hidden;
}

.faq-one__img::before {
  background: rgba(255, 255, 255, 0.5);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.faq-one__img:hover::before {
  height: 100%;
  opacity: 0;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.faq-one__img img {
  width: auto;
  mix-blend-mode: luminosity;
}

.faq-one__right {
  position: relative;
  display: block;
  margin-left: 40px;
}

.faq-one__right .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  background-color: transparent;
  border: 2px solid #777777;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__right .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 21px 30px 23px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  padding-right: 25px;
}

.faq-one__right .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 24px;
  color: var(--futxo-black);
  font-weight: 400;
  line-height: 34px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one__right .faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--futxo-base);
}

.faq-one__right .faq-one-accrodion .accrodion+.accrodion {
  margin-top: 30px;
}

.faq-one__right .faq-one-accrodion .accrodion-title h4::before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 13px;
  color: var(--futxo-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;
  width: 21px;
  height: 21px;
}

.faq-one__right .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f068";
  color: var(--futxo-base);
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-one__right .faq-one-accrodion .accrodion-content {
  position: relative;
  padding-bottom: 23px;
  padding-left: 30px;
  padding-right: 35px;
  margin-top: -7px;
}

.faq-one__right .faq-one-accrodion .accrodion-content p {
  margin: 0;
}

/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
  position: relative;
  display: block;
  background-color: #090909;
  padding: 30px 0 30px;
  overflow: hidden;
  z-index: 1;
}

.testimonial-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.08;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.testimonial-one__shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -30px;
  opacity: .10;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.testimonial-one .section-title__title {
  color: var(--futxo-white);
}

.testimonial-one__carousel {
  position: relative;
  display: block;
}

.testimonial-one__single {
  position: relative;
  display: block;
  background-color: var(--futxo-white);
}

.testimonial-one__single-top {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
}

.testimonial-one__single-top-inner {
  position: relative;
  display: block;
  padding: 34px 50px 30px;
  margin-bottom: 30px;
  overflow: hidden;
  z-index: 1;
}

.testimonial-one__shape-1 {
  position: absolute;
  top: -3px;
  right: -22px;
  opacity: .10;
  z-index: -1;
}

.testimonial-one__shape-1 img {
  width: auto;
}

.testimonial-one__quote {
  position: absolute;
  top: 35px;
  right: 60px;
}

.testimonial-one__quote img {
  width: auto;
}

.testimonial-one__ratting {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 58px;
}

.testimonial-one__ratting span {
  font-size: 13px;
  color: var(--futxo-black);
}

.testimonial-one__ratting span+span {
  margin-left: 4px;
}

.testimonial-one__text {
  line-height: 30px;
}

.testimonial-one__client-info-box {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 50px 30px;
}

.testimonial-one__client-img {
  position: relative;
  display: block;
}

.testimonial-one__client-img img {
  width: auto;
  border-radius: 50%;
  mix-blend-mode: luminosity;
}

.testimonial-one__client-info {
  position: relative;
  display: block;
  margin-left: 30px;
}

.testimonial-one__client-info p {
  font-size: 14px;
}

.testimonial-one__client-info h3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 34px;
}

/*--------------------------------------------------------------
# Blog One
--------------------------------------------------------------*/
.blog-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.blog-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-one__img-box {
  position: relative;
  display: block;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.blog-one__img {
  position: relative;
  display: block;
  background-color: #090909;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  z-index: 1;
}

.blog-one__img::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 50%;
  background-color: rgba(var(--futxo-black-rgb), .40);
  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;
}

.blog-one__single:hover .blog-one__img::before {
  -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;
}

.blog-one__img::after {
  content: "";
  position: absolute;
  bottom: 50%;
  left: 0;
  right: 0;
  height: 50%;
  background-color: rgba(var(--futxo-black-rgb), .40);
  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: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  background-position: center center;
  z-index: 1;
}

.blog-one__single:hover .blog-one__img::after {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
}

.blog-one__img img {
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  mix-blend-mode: luminosity;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}

.blog-one__single:hover .blog-one__img img {
  transform: scale(1.05);
}

.blog-one__date {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70px;
  background-color: var(--futxo-base);
  padding: 21px 0 15px;
  border-top-left-radius: 10px;
}

.blog-one__date p {
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  color: var(--futxo-white);
  font-family: var(--futxo-font-two);
  text-align: center;
  text-transform: uppercase;
}

.blog-one__date span {
  font-size: 10px;
  top: -4px;
  position: relative;
}

.blog-one__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.blog-one__content-inner {
  position: relative;
  display: block;
  padding: 24px 40px 32px;
  padding-right: 45px;
  overflow: hidden;
  z-index: 1;
}

.blog-one__meta {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-one__meta li {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-one__meta li+li {
  margin-left: 6px;
}

.blog-one__meta li a {
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__meta li a span {
  position: relative;
  margin-right: 4px;
  color: var(--futxo-base);
}

.blog-one__meta li a:hover {
  color: var(--futxo-base);
}

.blog-one__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  margin-top: 8px;
}

.blog-one__title a {
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-one__title a:hover {
  color: var(--futxo-base);
}

.blog-one__shape-1 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: .10;
  z-index: -1;
}

.blog-one__shape-1 img {
  width: auto;
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
  display: block;
  background-color: #090909;
  z-index: 1;
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 420px;
  width: 100%;
  mix-blend-mode: luminosity;
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  background-color: #090909;
  overflow: hidden;
  z-index: 1;
}

.site-footer__bg {
  position: absolute;
  top: -118px;
  left: 50px;
  bottom: 0;
  right: 37px;
  opacity: 0.03;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.site-footer__shape-1 {
  position: absolute;
  top: -118px;
  left: 0;
  bottom: 0;
  right: 212px;
  opacity: .15;
  mix-blend-mode: color-burn;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.site-footer__top {
  position: relative;
  display: block;
  padding: 102px 0 95px;
}

.footer-widget__about {
  position: relative;
  display: block;
  margin-top: 8px;
}

.footer-widget__logo {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.footer-widget__about-text {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.site-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 33px;
}

.site-footer__social a {
  position: relative;
  height: 43px;
  width: 43px;
  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(--futxo-white);
  background-color: rgba(var(--futxo-white-rgb), .10);
  font-size: 15px;
  border-radius: 17px;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer__social a:hover {
  color: var(--futxo-base);
  background-color: var(--futxo-white);
}

.site-footer__social a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--futxo-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-left: 10px;
}

.footer-widget__title-box {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.footer-widget__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  color: var(--futxo-white);
}

.footer-widget__explore {
  position: relative;
  display: block;
}

.footer-widget__explore-list {
  position: relative;
  display: block;
}

.footer-widget__explore-list li {
  position: relative;
  display: flex;
}

.footer-widget__explore-list li+li {
  margin-top: 26px;
}

.footer-widget__explore-list li .icon {
  position: relative;
  display: inline-block;
  top: 2px;
}

.footer-widget__explore-list li .icon span, .footer-widget__explore-list li .icon i {
  position: relative;
  display: inline-block;
  font-size: 24px;
  color: var(--futxo-base);
}

.footer-widget__explore-list li .text {
  margin-left: 15px;
}

.footer-widget__explore-list li .text p {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.footer-widget__explore-list li .text p a {
  color: var(--futxo-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__explore-list li .text p a:hover {
  color: var(--futxo-base);
}

.footer-widget__open-hour {
  position: relative;
  display: block;
  margin-top: 29px;
}

.footer-widget__open-hour-title {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--futxo-white);
}

.footer-widget__open-hour-text {
  font-size: 15px;
  letter-spacing: -0.02em;
  margin-top: 14px;
}

.footer-widget__portfolio {
  position: relative;
  display: block;
}

.footer-widget__portfolio .footer-widget__title-box {
  margin-bottom: 38px;
}

.footer-widget__portfolio-list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.footer-widget__portfolio-list li {
  position: relative;
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 10px;
}

.footer-widget__portfolio-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 5px;
  background-color: #090909;
  width: 80px;
  z-index: 1;
}

.footer-widget__portfolio-img:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  border-radius: 5px;
  background-color: rgba(var(--futxo-black-rgb), .30);
  transition: all 700ms ease;
  transform: translateY(-100%);
  z-index: 1;
}

.footer-widget__portfolio-list li:hover .footer-widget__portfolio-img:before {
  transform: translateY(0%);
}

.footer-widget__portfolio-img img {
  width: 100%;
  border-radius: 5px;
  mix-blend-mode: luminosity;
}

.footer-widget__portfolio-img a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--futxo-white);
  transform: translateY(100px);
  opacity: 0;
  transition: all 700ms ease;
  z-index: 2;
}

.footer-widget__portfolio-list li:hover .footer-widget__portfolio-img a {
  transform: translateY(0px);
  opacity: 1;
  transition-delay: 0.3s;
}

.footer-widget__portfolio-list li .footer-widget__portfolio-img a:hover {
  color: var(--futxo-base);
}

.footer-widget__contact {
  position: relative;
  display: block;
}

.footer-widget__contact-text {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.footer-widget__contact-form {
  position: relative;
  display: block;
  margin-top: 26px;
}

.footer-widget__contact-form-input-box {
  position: relative;
  display: block;
}

.footer-widget__contact-form-input-box input[type="email"] {
  height: 60px;
  width: 100%;
  background-color: rgba(var(--futxo-white-rgb), .20);
  outline: none;
  font-size: 14px;
  color: var(--futxo-gray);
  border: none;
  letter-spacing: -0.02em;
  padding-right: 55px;
  padding-left: 20px;
  border-radius: 10px;
}

.footer-widget__contact-btn {
  position: absolute;
  top: 50%;
  right: 5px;
  border: none;
  width: 40px;
  height: 40px;
  background-color: transparent;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-widget__contact-btn span {
  position: relative;
  display: inline-block;
  font-size: 13px;
  color: var(--futxo-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__contact-btn span:hover {
  color: var(--futxo-base);
}

.site-footer__bottom {
  position: relative;
  display: block;
  z-index: 1;
}

.site-footer__bottom-inner {
  position: relative;
  display: block;
  padding: 32px 0 35px;
  border-top: 2px solid rgba(var(--futxo-white-rgb), .10);
  text-align: center;
}

.site-footer__bottom-text {
  letter-spacing: -0.02em;
}

.site-footer__bottom-text a {
  color: var(--futxo-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
  color: var(--futxo-base);
}

.generic-page {
	position: relative;
	display: block;
	padding: 20px 0 60px;
	z-index: 1;
}

/*--------------------------------------------------------------
# About Two
--------------------------------------------------------------*/
.about-two {
  position: relative;
  display: block;
  padding: 120px 0 240px;
  z-index: 1;
}



.about-two__left {
  position: relative;
  display: block;
  margin-right: 10px;
  z-index: 1;
}

.about-two__left:before {
  content: "";
  position: absolute;
  top: -120px;
  bottom: -120px;
  left: -1000000px;
  right: 290px;
  background-color: var(--futxo-primary);
  z-index: 1;
}

.about-two__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.about-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #090909;
  mix-blend-mode: luminosity;
  z-index: 2;
}

.about-two__img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 155px;
  width: 170px;
  background-color: rgba(var(--futxo-white-rgb), .50);
  z-index: 1;
}

.about-two__img::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .3) 100%);
  transform: skewX(17deg);
  z-index: 1;
}

.about-two__img:hover::before {
  -webkit-animation: shine 1.9s;
  animation: shine 1.9s;
}

.about-two__img img {
  width: 100%;
  mix-blend-mode: luminosity;
  transition: all 500ms linear;
  transition-delay: 0.2s;
}

.about-two__img:hover img {
  transform: scale(1.1) rotate(0deg);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.about-two__video-link {
  position: absolute;
  bottom: 45px;
  left: 30px;
  z-index: 2;
}

.about-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: 75px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  font-size: 20px;
  color: var(--futxo-white);
  background-color: var(--futxo-base);
  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;
}

.about-two__video-icon:hover {
  background-color: var(--futxo-white);
  color: var(--futxo-base);
}

.about-two__video-icon:before {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  content: "";
  border-radius: 50%;
  border: 1px solid rgba(var(--futxo-white-rgb), .30);
  z-index: 1;
}

.about-two__video-link .ripple,
.about-two__video-icon .ripple:before,
.about-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 103px;
  height: 103px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.about-two__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.about-two__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.about-two__big-text {
  position: absolute;
  bottom: 198px;
  left: -439px;
  font-size: 155px;
  line-height: 155px;
  text-transform: uppercase;
  font-weight: 700;
  transform: rotate(-90deg);
  color: var(--futxo-white);
}

.about-two__right {
  position: relative;
  display: block;
  margin-left: 30px;
}

.about-two__right .section-title {
  margin-bottom: 28px;
}

.about-two__text-1 {
  font-size: 18px;
  line-height: 34px;
  margin-bottom: 30px;
}

.about-two__text-2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: var(--futxo-black);
}

.about-two__points {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 35px;
  margin-bottom: 38px;
}

.about-two__points li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.about-two__points li+li {
  margin-left: 50px;
}

.about-two__points li .icon {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--futxo-black);
}

.about-two__points li .content {
  margin-left: 15px;
}

.about-two__points li .content h5 {
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 9px;
}

.about-two__points li .content p {
  opacity: .80;
}

.about-two__btn-and-user {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.about-two__btn-box {
  position: relative;
  display: block;
}

.about-two__btn {
  border-radius: 0;
}

.about-two__user {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 40px;
}

.about-two__user-img {
  position: relative;
  display: block;
  width: 65px;
  border-radius: 50%;
  background-color: #090909;
  mix-blend-mode: luminosity;
}

.about-two__user-img img {
  width: 100%;
  border-radius: 50%;
  mix-blend-mode: luminosity;
}

.about-two__user-content {
  margin-left: 15px;
}

.about-two__user-name {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  font-family: var(--futxo-reey-font);
}

.about-two__user-title {
  position: relative;
  display: inline-block;
  line-height: 16px;
  margin-left: 86px;
  top: -5px;
}

/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
  position: relative;
  display: block;
  padding: 0px 0 90px;
  overflow: hidden;
  z-index: 1;
}

.services-two__shape-2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.services-two__single {
  position: relative;
  display: block;
  margin-bottom: 45px;
}

.services-two__img {
  position: relative;
  display: block;
  clip-path: polygon(0 0, 100% 17%, 100% 100%, 0% 100%);
  background-color: #090909;
  mix-blend-mode: luminosity;
  z-index: 1;
}

.services-two__img img {
  width: 100%;
  mix-blend-mode: luminosity;
  transition: .5s ease;
  transform: scale(1.05);
}

.services-two__single:hover .services-two__img img {
  transform: scale(1);
  mix-blend-mode: normal;
}

.services-two__img:before {
  background: #ffffff;
  position: absolute;
  height: 0;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  -moz-transition: all 400ms ease-out 0s;
  -webkit-transition: all 400ms ease-out 0s;
  -ms-transition: all 400ms ease-out 0s;
  -o-transition: all 400ms ease-out 0s;
  transition: all 400ms ease-out 0s;
  content: "";
  z-index: 1;
}

.services-two__single:hover .services-two__img:before {
  height: 100%;
  opacity: 0.3;
}

.services-two__img:after {
  position: absolute;
  content: "";
  background: #ffffff;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  opacity: 0;
  z-index: 1;
  -moz-transition: all 600ms ease-out 0s;
  -webkit-transition: all 600ms ease-out 0s;
  -ms-transition: all 600ms ease-out 0s;
  -o-transition: all 600ms ease-out 0s;
  transition: all 600ms ease-out 0s;
}

.services-two__single:hover .services-two__img:after {
  height: 0;
  opacity: 0.2;
}

.services-two__content-box {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.services-two__content-box:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--futxo-base);
  transform: scaleX(0.0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.25, 0.45, 0.22);
  z-index: 2;
}

.services-two__single:hover .services-two__content-box:before {
  transform: scaleX(1.0);
}

.services-two__content-inner {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  text-align: center;
  overflow: hidden;
  padding: 25px 0 53px;
  z-index: 1;
}

.services-two__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.services-two__shape-1 img {
  width: auto;
}

.services-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75px;
  width: 100px;
  background-color: var(--futxo-base);
  margin: 0 auto 18px;
}

.services-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--futxo-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-two__single:hover .services-two__icon span {
  transform: scale(0.9);
}

.services-two__title {
  font-size: 24px;
  line-height: 34px;
}

.services-two__title a {
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__title a:hover {
  color: var(--futxo-base);
}

.services-two__plus {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.services-two__plus a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  font-size: 15px;
  background-color: var(--futxo-primary);
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__plus a:hover {
  color: var(--futxo-white);
  background-color: var(--futxo-base);
}


/*--------------------------------------------------------------
# Portfolio Two
--------------------------------------------------------------*/
.portfolio-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.portfolio-two .container {
  max-width: 1830px;
}

.portfolio-two__list {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  flex-wrap: wrap;
}

.portfolio-two__list li {
  position: relative;
  flex: 0 0 50%;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
  transition: 0.5s;
}

.portfolio-two__list li.active {
  flex: 0 0 50%;
}



@media(min-width: 768px) {
  .portfolio-two__list li.active {
    flex: 2;

  }
}


@media(min-width: 768px) {
  .portfolio-two__list li {
    flex: 1;

  }
}




.portfolio-two__single {
  position: relative;
  display: block;
  transition: all 500ms ease;
}

.portfolio-two__img {
  position: relative;
  display: block;
  min-height: 425px;
  background-size: cover;
  background-position: center center;
  border-radius: 7px;
  background-color: #090909;
  mix-blend-mode: luminosity;
  z-index: 1;
}

.portfolio-two__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: top right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  border-radius: 7px;
  background-color: rgba(9, 9, 9, .20);
  z-index: -1;
}

.portfolio-two__single:hover .portfolio-two__img:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: bottom center;
}

.portfolio-two__title-box {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 145px;
  border-radius: 7px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  background-position: center bottom;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 2;
}

.portfolio-two__list li.active .portfolio-two__single .portfolio-two__title-box,
.portfolio-two__single:hover .portfolio-two__title-box {
  transform: scaleY(1.0);
}

.portfolio-two__title-box-inner {
  position: relative;
  display: block;
  border-radius: 7px;
  background-color: rgb(255, 255, 255);
  padding: 25px 25px 22px;
  overflow: hidden;
  z-index: 2;
}

.portfolio-two__sub-title {
  font-size: 14px;
  line-height: 24px;
}

.portfolio-two__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}

.portfolio-two__title a {
  color: var(--futxo-black);
  transition: all 500ms ease;
}

.portfolio-two__title a:hover {
  color: var(--futxo-base);
}

.portfolio-two__shape-1 {
  position: absolute;
  top: -10px;
  right: -80px;
  z-index: -1;
}

.portfolio-two__shape-1 img {
  width: auto;
}

.portfolio-two__arrow {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.portfolio-two__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--futxo-base);
  color: var(--futxo-white);
  font-size: 16px;
  border: 5px solid var(--futxo-white);
  transition: all 500ms ease;
}

.portfolio-two__arrow a:hover {
  background-color: var(--futxo-black);
  color: var(--futxo-white);
}

/*--------------------------------------------------------------
# Process One
--------------------------------------------------------------*/
.process-one {
  position: relative;
  display: block;
  counter-reset: count;
  padding: 0 0 90px;
  z-index: 1;
}

.process-one .section-title {
  margin-bottom: 77px;
}

.process-one .row {
  --bs-gutter-x: 45px;
}

.process-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  z-index: 1;
}

.process-one__single:before {
  content: "";
  position: absolute;
  top: 40px;
  left: 44px;
  right: 130px;
  bottom: 190px;
  border: 2px solid var(--futxo-base);
  z-index: -1;
}

.process-one__img-box {
  position: relative;
  display: block;
  margin-left: 65px;
  margin-right: 65px;
  z-index: 2;
}

.process-one__count {
  position: absolute;
  top: -30px;
  left: 20px;
  height: 80px;
  width: 80px;
  z-index: 2;
}

.process-one__count:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  counter-increment: count;
  content: "0"counter(count);
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 24px;
  font-weight: 700;
  color: var(--futxo-white);
  background-color: var(--futxo-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-one__count:after {
  content: "";
  position: absolute;
  top: 0;
  right: -22px;
  border-top: 30px solid transparent;
  border-left: 22px solid var(--futxo-base);
}

.process-one__img {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #090909;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}

.process-one__img img {
  width: 100%;
  mix-blend-mode: luminosity;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.process-one__single:hover .process-one__img img {
  transform: scale(1.05);
  opacity: .50;
}

.process-one__content {
  position: relative;
  display: block;
  overflow: hidden;
  text-align: center;
  padding: 122px 30px 25px;
  margin-top: -70px;
  z-index: 1;
}

.process-one__shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  opacity: .30;
  z-index: -1;
}

.process-one__title {
  font-size: 24px;
  line-height: 34px;
}

.process-one__text {
  padding: 13px 0 15px;
}

.process-one__more-details {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--futxo-black);
  font-family: var(--futxo-font-two);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.process-one__more-details span {
  position: relative;
  display: inline-block;
  transform: rotate(-45deg);
  font-size: 15px;
  top: -3px;
}

.process-one__more-details:hover {
  color: var(--futxo-base);
}


/*--------------------------------------------------------------
# Video Two
--------------------------------------------------------------*/
.video-two {
  position: relative;
  display: block;
  background-color: #090909;
  padding: 160px 0 150px;
  overflow: hidden;
  z-index: 1;
}

.video-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  opacity: .30;
  z-index: -1;
}

.video-two__shape-2 {
  position: absolute;
  top: -200px;
  bottom: -200px;
  left: 47%;
  width: 230px;
  background-color: rgba(var(--futxo-white-rgb), .15);
  transform: translateX(-50%) rotate(30deg);
  z-index: -1;
}

.video-two__inner {
  position: relative;
  display: block;
  text-align: center;
  z-index: 1;
}

.video-two__video-link {
  position: relative;
  display: inline-block;
  z-index: 1;
}

.video-two__shape-1 {
  position: absolute;
  top: -45px;
  left: -45px;
  opacity: .40;
  z-index: -1;
}

.video-two__shape-1 img {
  width: auto;
}

.video-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: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 17px;
  color: var(--futxo-base);
  background-color: var(--futxo-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;
}

.video-two__video-icon:hover {
  background-color: var(--futxo-base);
  color: var(--futxo-white);
}

.video-two__video-icon:before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 15px solid rgba(var(--futxo-white-rgb), .20);
  border-radius: 50%;
  z-index: -1;
}

.video-two__video-link .ripple,
.video-two__video-icon .ripple:before,
.video-two__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.video-two__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.video-two__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.video-two__title {
  font-size: 50px;
  font-weight: 600;
  color: var(--futxo-white);
  line-height: 60px;
  margin-top: 69px;
}

/*--------------------------------------------------------------
# Faq Two
--------------------------------------------------------------*/
.faq-two {
  position: relative;
  display: block;
  padding: 30px 0 30px;
}

.faq-two__left {
  position: relative;
  display: block;
}

.faq-two__left .section-title {
  margin-bottom: 30px;
}

.faq-two__points-box {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.faq-two__points {
  position: relative;
  display: block;
}

.faq-two__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.faq-two__points li+li {
  margin-top: 17px;
}

.faq-two__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 15px;
  width: 15px;
  background-color: var(--futxo-base);
  border-radius: 50%;
  font-size: 7px;
  color: var(--futxo-white);
}

.faq-two__points li .text {
  margin-left: 20px;
}

.faq-two__points li .text p {
  font-size: 18px;
  font-weight: 500;
  color: var(--futxo-black);
}

.faq-two__points--two {
  margin-left: 25px;
}

.faq-two__img-boxes {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

.faq-two__img-boxes li {
  position: relative;
  display: block;
}

.faq-two__img-boxes li+li {
  margin-left: 40px;
}

.faq-two__img {
  position: relative;
  display: block;
  background-color: #090909;
  mix-blend-mode: luminosity;
}

.faq-two__img img {
  width: 100%;
}

.faq-two__right {
  position: relative;
  display: block;
}

.faq-two__right .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  background-color: var(--futxo-white);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-two__right .faq-one-accrodion .accrodion.active {
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.faq-two__right .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 20px 40px 20px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
}

.faq-two__right .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-two__right .faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--futxo-base);
}

.faq-two__right .faq-one-accrodion .accrodion+.accrodion {
  margin-top: 20px;
}

.faq-two__right .faq-one-accrodion .accrodion-title h4::before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 13px;
  color: var(--futxo-base);
  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;
  width: 21px;
  height: 21px;
}

.faq-two__right .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f068";
  color: var(--futxo-black);
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-two__right .faq-one-accrodion .accrodion-content {
  position: relative;
  padding-bottom: 27px;
  padding-left: 40px;
  padding-right: 40px;
  margin-top: -11px;
}

.faq-two__right .faq-one-accrodion .accrodion-content p {
  margin: 0;
  font-size: 14px;
}

/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/
.team-two {
  position: relative;
  display: block;
  padding: 0 0 90px;
  z-index: 1;
}

.team-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-two__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.team-two__img {
  position: relative;
  display: block;
  background-color: #090909;
  overflow: hidden;
  z-index: 1;
}

.team-two__img:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 70px;
  background-color: var(--futxo-white);
  transform: translateY(110%);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}

.team-two__single:hover .team-two__img:before {
  visibility: visible;
  transform: translateY(0%);
  opacity: 1;
}

.team-two__img img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.team-two__content-box {
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 30px;
  text-align: center;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 5px 0px rgba(38, 38, 56, 0.07);
  transform: translateY(-66%);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
}

.team-two__single:hover .team-two__content-box {
  visibility: visible;
  transform: translateY(0%);
  opacity: 1;
}

.team-two__content-box-inner {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: rgb(255, 255, 255);
  text-align: center;
  padding: 30px 0 23px;
  z-index: 2;
}

.team-two__shape-1 {
  position: absolute;
  top: -25px;
  right: -2px;
  opacity: 0.03;
  z-index: -1;
}

.team-two__shape-1 img {
  width: auto;
}

.team-two__social {
  position: relative;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  justify-content: center;
}

.team-two__social a {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--futxo-black);
  background-color: var(--futxo-primary);
  border-radius: 50%;
  font-size: 15px;
  height: 45px;
  width: 45px;
  transform: rotate(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.team-two__social a:hover {
  color: var(--futxo-white);
  transform: rotate(360deg);
}

.team-two__social a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--futxo-base);
  border-radius: 50%;
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.team-two__social a:hover:before {
  transform: scaleX(1);
}

.team-two__social a+a {
  margin-left: 10px;
}

.team-two__title-box {
  position: relative;
  display: block;
  margin-top: 17px;
}

.team-two__name {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 4px;
}

.team-two__name a {
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-two__name a:hover {
  color: var(--futxo-base);
}

/*--------------------------------------------------------------
# Meeting One
--------------------------------------------------------------*/
.meeting-one {
  position: relative;
  display: block;
  background-color: #090909;
  padding: 130px 0 116px;
  z-index: 1;
}

.meeting-one__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  mix-blend-mode: luminosity;
  opacity: .50;
  z-index: -1;
}

.meeting-one__inner {
  position: relative;
  display: block;
  text-align: center;
}

.meeting-one__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  background-color: var(--futxo-base);
  border-radius: 50%;
  font-size: 45px;
  color: var(--futxo-white);
  margin: 0 auto;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.meeting-one__icon:hover {
  background-color: var(--futxo-white);
  color: var(--futxo-base);
}

.meeting-one__title {
  font-size: 50px;
  font-weight: 600;
  color: var(--futxo-white);
  line-height: 60px;
  margin-top: 39px;
}

/*--------------------------------------------------------------
# Blog Two
--------------------------------------------------------------*/
.blog-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.blog-two__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-two__img {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #090909;
  margin-left: 6px;
  z-index: 1;
}

.blog-two__img:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background-color: var(--futxo-white);
  clip-path: polygon(0 100%, 101% 0%, 101% 100%, 0 100%);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  z-index: 2;
}

.blog-two__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  border-radius: 5px;
  background-color: rgba(var(--futxo-black-rgb), .30);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: 1;
}

.blog-two__single:hover .blog-two__img::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.blog-two__img img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.blog-two__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
  padding: 19px 35px 0px;
  z-index: 2;
}

.blog-two__date {
  background-color: rgb(195, 0, 47);
  width: 128px;
  height: 115px;
  position: absolute;
  top: -60px;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  clip-path: polygon(-429% 100%, 101% 0%, 101% 100%, 0 100%);
}

.blog-two__date p {
  font-size: 20px;
  font-weight: 700;
  color: var(--futxo-white);
  line-height: 24px;
  letter-spacing: 0.1em;
  font-family: var(--futxo-font-two);
}

.blog-two__comments {
  position: relative;
  display: block;
}

.blog-two__comments a {
  position: relative;
  display: inline-block;
  background-color: #f8f8f8;
  font-size: 12px;
  color: var(--futxo-gray);
  padding: 5px 16px 5px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-two__comments a:hover {
  color: var(--futxo-base);
}

.blog-two__comments a i {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--futxo-base);
  padding-right: 10px;
}

.blog-two__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  margin-top: 21px;
  margin-bottom: 12px;
}

.blog-two__title a {
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-two__title a:hover {
  color: var(--futxo-base);
}

.blog-two__text {
  font-size: 14px;
}

.blog-two__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e4eaed;
  padding: 12px 0 21px;
  margin-top: 27px;
}

.blog-two__read-more {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--futxo-black);
  letter-spacing: 0.1em;
  font-family: var(--futxo-font-two);
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-two__read-more:hover {
  color: var(--futxo-base);
}

.blog-two__arrow {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-two__arrow:hover {
  color: var(--futxo-base);
}

/*--------------------------------------------------------------
# About Three
--------------------------------------------------------------*/
.about-three {
  position: relative;
  display: block;
  padding: 30px 0 30px;
  z-index: 1;
}

.about-three__left {
  position: relative;
  display: block;
  margin-left: 30px;
  margin-right: -30px;
}

.about-three__img {
  position: relative;
  display: block;
  background-color: #090909;
}

.about-three__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: -30px;
  width: 10px;
  height: 280px;
  background-color: var(--futxo-base);
}

.about-three__img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -30px;
  width: 10px;
  height: 280px;
  background-color: var(--futxo-base);
}

.about-three__img img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.about-three__shape-1 {
  position: absolute;
  top: 50%;
  left: -30px;
  width: 10px;
  height: 10px;
  background-color: var(--futxo-base);
  border-radius: 50%;
  transform: translateY(-50%);
}

.about-three__right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.about-three__right .section-title {
  margin-bottom: 22px;
}

.about-three__text {
  font-size: 14px;
  line-height: 28px;
}

.about-three__points {
  position: relative;
  display: block;
  margin-top: 27px;
  margin-bottom: 33px;
}

.about-three__points li {
  position: relative;
  display: flex;
}

.about-three__points li+li {
  margin-top: 32px;
}

.about-three__points li .icon {
  position: relative;
  display: inline-block;
  top: 4px;
}

.about-three__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 22px;
  color: var(--futxo-base);
}

.about-three__points li .content {
  position: relative;
  display: block;
  margin-left: 16px;
}

.about-three__points li .content h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  margin-bottom: 8px;
}

.about-three__btn-box {
  position: relative;
  display: block;
}

.about-three__btn {
  border-radius: 0;
  padding: 17px 44px 17px;
  letter-spacing: 0;
}

/*--------------------------------------------------------------
# Services Three 
--------------------------------------------------------------*/
.services-three {
  position: relative;
  display: block;
  background-color: #090909;
  padding: 120px 0 90px;
  overflow: hidden;
  z-index: 1;
}

.services-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.07;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.services-three .section-title {
  margin-bottom: 56px;
}

.services-three .section-title__title {
  color: var(--futxo-white);
}

.services-three__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
  margin-bottom: 30px;
}

.services-three__img {
  position: relative;
  display: block;
}

.services-three__img img {
  width: 100%;
}

.services-three__icon {
  position: absolute;
  left: 40px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 75px;
  background-color: var(--futxo-base);
}

.services-three__icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--futxo-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.services-three__single:hover .services-three__icon span {
  transform: scale(0.9);
}

.services-three__content {
  position: relative;
  display: block;
  padding: 23px 70px 23px;
}

.services-three__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
}

.services-three__title a {
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-three__title a:hover {
  color: var(--futxo-base);
}

.services-three__text {
  font-size: 14px;
  margin-top: 7px;
}

/*--------------------------------------------------------------
# FAQ Three
--------------------------------------------------------------*/
.faq-three {
  position: relative;
  display: block;
  padding: 120px 0 0px;
  overflow: hidden;
  z-index: 1;
}

.faq-three__shape-1 {
  position: absolute;
  top: -826px;
  right: 637px;
  opacity: .14;
  z-index: -1;
}

.faq-three__shape-1 img {
  width: auto;
  mix-blend-mode: luminosity;
}

.faq-three__shape-2 {
  position: absolute;
  top: -38px;
  left: 857px;
  opacity: 0.05;
  z-index: -1;
}

.faq-three__shape-2 img {
  width: auto;
}

.faq-three__img-1 {
  position: absolute;
  left: 3px;
  top: 32px;
  z-index: -1;
}

.faq-three__img-1 img {
  width: auto;
  filter: grayscale(1);
}

.faq-three__left {
  position: relative;
  display: block;
  margin-right: 40px;
}

.faq-three__form {
  position: relative;
  display: block;
  border: 1px solid #eaeaea;
  padding: 56px 40px 60px;
  border-top: 4px solid var(--futxo-base);
  background-color: var(--futxo-white);
}

.faq-three__form .row {
  --bs-gutter-x: 10px;
}

.faq-three__input-box {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.faq-three__input-box input[type="text"],
.faq-three__input-box input[type="email"] {
  height: 63px;
  width: 100%;
  border: none;
  background-color: #f6f6f6;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--futxo-gray);
  display: block;
  font-weight: 400;
}

.faq-three__input-box textarea {
  font-size: 14px;
  color: var(--futxo-gray);
  height: 185px;
  width: 100%;
  background-color: #f6f6f6;
  padding: 15px 30px 30px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 400;
}

.faq-three__input-box.text-message-box {
  height: 185px;
  margin-bottom: 10px;
}

.faq-three__btn-box {
  position: relative;
  display: block;
}

.faq-three__btn {
  border: none;
  border-radius: 0;
  letter-spacing: 0;
  text-transform: uppercase;
  padding: 18px 60px 19px;
}

.faq-three__right {
  position: relative;
  display: block;
  margin-left: 40px;
}

.faq-three__right .faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  background-color: #fdfdfd;
  border: 1px solid #eaeaea;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-three__right .faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 21px 40px 21px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  padding-right: 25px;
}

.faq-three__right .faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 16px;
  color: var(--futxo-black);
  font-weight: 400;
  line-height: 26px;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-three__right .faq-one-accrodion .accrodion.active .accrodion-title h4 {
  color: var(--futxo-base);
}

.faq-three__right .faq-one-accrodion .accrodion+.accrodion {
  margin-top: 20px;
}

.faq-three__right .faq-one-accrodion .accrodion-title h4::before {
  content: "\f067";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 12px;
  color: var(--futxo-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;
  width: 21px;
  height: 21px;
}

.faq-three__right .faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f068";
  color: var(--futxo-base);
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-three__right .faq-one-accrodion .accrodion-content {
  position: relative;
  padding-bottom: 26px;
  padding-left: 40px;
  padding-right: 70px;
  margin-top: -11px;
}

.faq-three__right .faq-one-accrodion .accrodion-content p {
  margin: 0;
  font-size: 14px;
}


/*--------------------------------------------------------------
# Portfolio Three
--------------------------------------------------------------*/
.portfolio-three {
  position: relative;
  display: block;
  padding: 30px 0 30px;
  z-index: 1;
}

.portfolio-three .section-title {
  margin-bottom: 56px;
}

.portfolio-three__carousel {
  position: relative;
  display: block;
}

.portfolio-three__single {
  position: relative;
  display: block;
}

.portfolio-three__img-box {
  position: relative;
  display: block;
}

.portfolio-three__img {
  position: relative;
  display: block;
  background-color: #090909;
  overflow: hidden;
}

.portfolio-three__img::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  content: "";
  background: rgb(21, 21, 21);
  background: linear-gradient(0deg, rgba(21, 21, 21, 1) 5%, rgba(21, 21, 21, 0) 84%);
  opacity: 0;
  z-index: 1;
}

.portfolio-three__single:hover .portfolio-three__img::before {
  opacity: .90;
}

.portfolio-three__img img {
  width: 100%;
  mix-blend-mode: luminosity;
  transition: .5s ease;
  transform: scale(1.05);
}

.portfolio-three__single:hover .portfolio-three__img img {
  transform: scale(1);
  mix-blend-mode: normal;
}

.portfolio-three__content {
  position: absolute;
  bottom: 45px;
  left: 50px;
  background-position: center bottom;
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .5s;
  transition-property: all;
  transform-origin: bottom;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: 2;
}

.portfolio-three__single:hover .portfolio-three__content {
  transform: scaleY(1.0);
}

.portfolio-three__sub-title {
  color: var(--futxo-white);
}

.portfolio-three__title {
  font-size: 35px;
  font-weight: 500;
  line-height: 45px;
  margin-top: 2px;
}

.portfolio-three__title a {
  color: var(--futxo-white);
}

/*--------------------------------------------------------------
# Company Logo
--------------------------------------------------------------*/
.company-logo {
  position: relative;
  display: block;
  padding: 0 0 102px;
  z-index: 1;
}

.company-logo .section-title {
  margin-bottom: 40px;
}

.company-logo__left {
  position: relative;
  display: block;
}

.company-logo__box {
  position: relative;
  display: block;
  padding-left: 16px;
}

.company-logo__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -23px;
}

.company-logo__list li {
  position: relative;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  width: 100%;
  padding: 0 23px;
  margin-bottom: 46px;
}

.company-logo__img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  border: 1px solid #b8b8b8;
}

.company-logo__img img {
  width: auto;
}

.company-logo__right {
  position: relative;
  display: block;
  margin-left: 9px;
}

.company-logo__right-img-box {
  position: relative;
  display: block;
}

.company-logo__right-img {
  position: relative;
  display: block;
  background-color: #090909;
  overflow: hidden;
}

.company-logo__right-img::before {
  position: absolute;
  top: 0%;
  right: 0%;
  display: block;
  content: '';
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, .4);
  border-radius: 50%;
  -webkit-transform: translateX(-50%, -50%);
  transform: translateX(-50%, -50%);
  opacity: 0;
  z-index: 1;
}

.company-logo__right-img:hover::before {
  -webkit-animation: circle .95s;
  animation: circle .95s;
}

.company-logo__right-img img {
  width: 100%;
  mix-blend-mode: luminosity;
  transform: scale(1.0);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
}

.company-logo__right-img:hover img {
  transform: scale(1.1) rotate(1deg);
}

.company-logo__agency {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 75px;
  display: flex;
  align-items: center;
  background-color: var(--futxo-base);
  border-top-right-radius: 6px;
  border-bottom-left-radius: 6px;
  padding: 36px 40px 36px;
  padding-right: 20px;
}

.company-logo__agency .icon {
  position: relative;
  display: inline-block;
}

.company-logo__agency .icon span {
  position: relative;
  display: inline-block;
  font-size: 50px;
  color: var(--futxo-white);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.company-logo__agency:hover .icon span {
  transform: scale(.9);
}

.company-logo__agency-title {
  margin-left: 18px;
  font-size: 24px;
  font-weight: 400;
  line-height: 28px;
  color: var(--futxo-white);
}

/*--------------------------------------------------------------
# Feature Two
--------------------------------------------------------------*/
.feature-two {
  position: relative;
  display: block;
  z-index: 2;
}

.feature-two .row {
  --bs-gutter-x: 0px;
}

.feature-two__single {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  padding: 33px 50px 39px;
  border-radius: 10px;
}

.feature-two__content {
  position: relative;
  display: flex;
  align-items: center;
}

.feature-two__icon {
  position: relative;
  display: inline-block;
  top: 4px;
}

.feature-two__icon span {
  position: relative;
  display: inline-block;
  font-size: 60px;
  color: var(--futxo-base);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.feature-two__single:hover .feature-two__icon span {
  transform: scale(.9);
}

.feature-two__title {
  margin-left: 28px;
  font-size: 24px;
  font-weight: 400;
  line-height: 29px;
  color: var(--futxo-black);
  font-family: var(--futxo-font);
}

.feature-two__title a {
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__title a:hover {
  color: var(--futxo-base);
}

.feature-two__arrow {
  position: relative;
  display: block;
}

.feature-two__arrow a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  font-size: 18px;
  color: var(--futxo-black);
  background-color: #f1f1f5;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__arrow a:hover {
  color: var(--futxo-white);
  background-color: var(--futxo-base);
}

/*--------------------------------------------------------------
# Video Three
--------------------------------------------------------------*/
.video-three {
  position: relative;
  display: block;
  background-color: #090909;
  padding: 193px 0 134px;
  margin-top: -68px;
  z-index: 1;
}

.video-three__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .15;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.video-three__left {
  position: relative;
  display: block;
}

.video-three__title {
  font-size: 50px;
  font-weight: 600;
  line-height: 60px;
  color: var(--futxo-white);
}

.video-three__btn-box {
  position: relative;
  display: block;
  margin-top: 31px;
}

.video-three__btn {
  border-radius: 0;
  letter-spacing: 0;
  padding: 16px 44px 17px;
}

.video-three__btn:hover {
  color: var(--futxo-base);
}

.video-three__btn span {
  background-color: var(--futxo-white);
}

.video-three__right {
  position: relative;
  display: block;
  margin-left: 165px;
  margin-top: 40px;
}

.video-three__img {
  position: relative;
  display: block;
  background-color: #090909;
}

.video-three__img img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.video-three__video-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.video-three__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: 68px;
  height: 68px;
  line-height: 68px;
  text-align: center;
  font-size: 20px;
  color: var(--futxo-base);
  background-color: var(--futxo-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;
}

.video-three__video-icon::before {
  content: "";
  position: absolute;
  top: -13px;
  left: -13px;
  right: -13px;
  bottom: -13px;
  border-radius: 50%;
  border: 2px solid rgba(var(--futxo-white-rgb), .31);
}

.video-three__video-icon:hover {
  background-color: var(--futxo-base);
  color: var(--futxo-white);
}

.video-three__video-link .ripple,
.video-three__video-icon .ripple:before,
.video-three__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--futxo-white-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.video-three__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.video-three__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

/*--------------------------------------------------------------
# Team Three
--------------------------------------------------------------*/
.team-three {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.team-three__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.team-three__img-box {
  position: relative;
  display: block;
}

.team-three__img {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #090909;
  z-index: 1;
}

.team-three__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(var(--futxo-black-rgb), .40);
  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: 1;
}

.team-three__single:hover .team-three__img:before {
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.team-three__img img {
  width: 100%;
  mix-blend-mode: luminosity;
  transition: all 500ms ease;
  transform: scale(1);
}

.team-three__single:hover .team-three__img img {
  transform: scale(1.05);
}

.team-three__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 110px;
  background-color: var(--futxo-white);
  text-align: center;
  padding: 22px 0 23px;
  clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  z-index: 2;
}

.team-three__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
}

.team-three__title a {
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-three__title a:hover {
  color: var(--futxo-base);
}

.team-three__social {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: var(--futxo-base);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 12px 10px;
  transform: translateY(110%);
  transition: opacity 700ms ease, visibility 700ms ease, transform 700ms ease;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
}

.team-three__single:hover .team-three__social {
  visibility: visible;
  transform: translateY(0%);
  transition-delay: 300ms;
  opacity: 1;
}

.team-three__social a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  color: var(--futxo-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.team-three__social a:hover {
  color: var(--futxo-base);
}

.team-three__social a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--futxo-white);
  transform: scale(0);
  transform-origin: center;
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  z-index: -1;
}

.team-three__social a:hover:before {
  transform: scaleX(1);
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
  position: relative;
  display: block;
  background-color: #090909;
  padding: 120px 0 112px;
  z-index: 1;
}

.testimonial-two__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  mix-blend-mode: luminosity;
  opacity: .10;
  z-index: -1;
}

.testimonial-two__side-img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.testimonial-two__side-img img {
  width: auto;
}

.testimonial-two__left {
  position: relative;
  display: block;
}

.testimonial-two__left .section-title__title {
  color: var(--futxo-white);
}

.testimonial-two__slider {
  position: relative;
  display: block;
}

.testimonial-two__thumb-outer-box {
  position: relative;
  display: block;
  max-width: 278px;
  width: 100%;
  margin-left: 0;
  margin-right: auto;
  padding-bottom: 44px;
}

.testimonial-two__thumb-carousel {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.testimonial-two__thumb-carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

.testimonial-two__thumb-carousel .owl-item {
  position: relative;
  opacity: 1;
}

.testimonial-two__thumb-item {
  position: relative;
  display: block;
}

.testimonial-two__img-holder-box {
  position: relative;
  display: block;
  border-radius: 50%;
}

.testimonial-two__img-holder {
  position: relative;
  display: block;
  border-radius: 50%;
  transform: scale(.85);
  cursor: pointer;
  background-color: #090909;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 1;
}

.testimonial-two__img-holder>img {
  border-radius: 50%;
  border: 5px solid var(--futxo-white);
  mix-blend-mode: luminosity;
  transition: all 0.5s ease-in-out;
}

.testimonial-two__thumb-outer-box .owl-item.current .testimonial-two__img-holder>img {
  border: 5px solid var(--futxo-white);
}

.testimonial-two__thumb-outer-box .owl-item.current .testimonial-two__img-holder {
  transform: scale(1);
}

.testimonial-two__main-content {
  position: relative;
  display: block;
}

.testimonial-two__carousel {
  position: relative;
  display: block;
}

.testimonial-two__item {
  position: relative;
  display: block;
}

.testimonial-two__inner-content {
  position: relative;
  display: flex;
}

.testimonial-two__content-img {
  position: relative;
  display: block;
  width: 120px;
  border-radius: 50%;
}

.testimonial-two__content-img img {
  width: 100%;
  border-radius: 50%;
  mix-blend-mode: luminosity;
}

.testimonial-two__content-box {
  position: relative;
  display: block;
  max-width: 420px;
  width: 100%;
  margin-left: 20px;
}

.testimonial-two__text {
  color: #d0d2d0;
}

.testimonial-two__client-info-and-quote {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 15px;
}

.testimonial-two__client-info {
  position: relative;
  display: block;
}

.testimonial-two__client-name {
  font-size: 24px;
  color: var(--futxo-white);
  line-height: 34px;
}

.testimonial-two__client-sub-title {
  font-size: 14px;
  line-height: 14px;
}

.testimonial-two__quote {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonial-two__quote span {
  position: relative;
  display: inline-block;
  color: #757a7b;
  font-size: 58px;
}


.testimonial-two__carousel.owl-theme .owl-nav {
  position: absolute;
  top: -123px;
  right: 0;
  display: flex;
  align-items: center;
  margin-top: 0 !important;
  z-index: 100;
}

.testimonial-two__carousel .owl-nav .owl-next,
.testimonial-two__carousel .owl-nav .owl-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px !important;
  color: var(--futxo-black) !important;
  background-color: rgba(var(--futxo-white-rgb), .70) !important;
  border-radius: 50%;
  margin: 0;
  text-align: center;
  opacity: 1;
  transition: all 500ms ease;
  z-index: 100;
}


.testimonial-two__carousel.owl-theme .owl-nav .owl-next {
  margin-left: 5px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-prev {
  margin-right: 5px;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next span,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-two__carousel.owl-theme .owl-nav .owl-next:hover,
.testimonial-two__carousel.owl-theme .owl-nav .owl-prev:hover {
  background-color: var(--futxo-base) !important;
  color: var(--futxo-white) !important;
}


/*--------------------------------------------------------------
# Blog Three
--------------------------------------------------------------*/
.blog-three {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.blog-three__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 46px;
}

.blog-three__top .section-title {
  margin-bottom: 0;
}

.blog-three__btn-box {
  position: relative;
  display: block;
}

.blog-three__left {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-three__left-content-box {
  position: relative;
  display: block;
}

.blog-three__left-content-img {
  position: relative;
  display: block;
  background-color: #090909;
  overflow: hidden;
  z-index: 1;
}

.blog-three__left-content-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  background-color: rgba(var(--futxo-black-rgb), .30);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: 1;
}

.blog-three__left-content-box:hover .blog-three__left-content-img::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.blog-three__left-content-img img {
  width: 100%;
  mix-blend-mode: luminosity;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-three__left-content-box:hover .blog-three__left-content-img img {
  transform: scale(1.05);
}

.blog-three__left-content {
  position: relative;
  display: block;
  z-index: 1;
}

.blog-three__user {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  border-radius: 50%;
  background-color: #090909;
  z-index: 2;
}

.blog-three__user img {
  width: 100%;
  border-radius: 50%;
  mix-blend-mode: luminosity;
}

.blog-three__left-content-inner {
  position: relative;
  display: block;
  border: 1px solid #eaeaea;
  border-top: 0;
  text-align: center;
  overflow: hidden;
  padding: 56px 0 20px;
  z-index: 1;
}

.blog-three__shape-1 {
  position: absolute;
  top: 0;
  right: -2px;
  opacity: .10;
  z-index: -1;
}

.blog-three__shape-1 img {
  width: auto;
}

.blog-three__meta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}

.blog-three__meta>li {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-three__meta>li+li {
  margin-left: 15px;
}

.blog-three__meta>li a {
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-three__meta>li a i {
  position: relative;
  margin-right: 4px;
  color: var(--futxo-base);
}

.blog-three__meta>li a:hover {
  color: var(--futxo-base);
}

.blog-three__title-1 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
}

.blog-three__title-1 a {
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-three__title-1 a:hover {
  color: var(--futxo-base);
}

.blog-three__right {
  position: relative;
  display: block;
}

.blog-three__list {
  position: relative;
  display: block;
}

.blog-three__list>li {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-three__single {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.blog-three__img {
  position: relative;
  display: block;
  max-width: 240px;
  width: 100%;
  background-color: #090909;
  overflow: hidden;
  z-index: 1;
}

.blog-three__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  background-color: rgba(var(--futxo-black-rgb), .30);
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: 1;
}

.blog-three__list>li:hover .blog-three__img::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.blog-three__img img {
  width: 100%;
  mix-blend-mode: luminosity;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-three__list>li:hover .blog-three__img img {
  transform: scale(1.05);
}

.blog-three__content {
  position: relative;
  display: block;
  max-width: 330px;
  width: 100%;
  border: 1px solid #eaeaea;
  padding: 29px 30px 29px;
  min-height: 160px;
}

.blog-three__meta-two {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.blog-three__meta-two>li {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-three__meta-two>li+li {
  margin-left: 15px;
}

.blog-three__meta-two>li a {
  font-size: 14px;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-three__meta-two>li a i {
  position: relative;
  margin-right: 4px;
  color: var(--futxo-base);
}

.blog-three__meta-two>li a:hover {
  color: var(--futxo-base);
}

.blog-three__title-2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
}

.blog-three__title-2 a {
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-three__title-2 a:hover {
  color: var(--futxo-base);
}



/*--------------------------------------------------------------
# Case Single
--------------------------------------------------------------*/
.case-single {
  position: relative;
  display: block;
  padding: 120px 0 0px;
}

.case-single__img {
  position: relative;
  display: block;
  border-radius: 10px;
  background-color: #090909;
}

.case-single__img img {
  width: 100%;
  border-radius: 10px;
  mix-blend-mode: luminosity;
}

.case-single__details {
  position: relative;
  display: block;
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  margin-left: 40px;
  margin-right: 40px;
  margin-top: -55px;
  z-index: 1;
}

.case-single__details-inner {
  position: relative;
  display: block;
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  padding: 40px 60px 40px;
  overflow: hidden;
  z-index: 1;
}

.case-single__details-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.case-single__details-list li {
  position: relative;
  display: block;
}

.case-single__details-list li:last-child {
  padding: 19.5px 0;
}

.case-single__details-list li:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -65px;
  width: 1px;
  background-color: #e4e4ea;
}

.case-single__details-list li:first-child:before {
  display: none;
}

.case-single__details-content {
  position: relative;
  display: block;
}

.case-single__details-content p {
  font-size: 20px;
  font-weight: 700;
  color: var(--futxo-black);
  line-height: 20px;
  margin-bottom: 18px;
}

.case-single__details-content h4 {
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  color: var(--futxo-base);
}

.case-single__social {
  position: relative;
  display: flex;
  align-items: center;
}

.case-single__social a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 17px;
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.case-single__social a+a {
  margin-left: 28px;
}

.case-single__social a:hover {
  color: var(--futxo-base);
}

.case-single__content {
  position: relative;
  display: block;
  margin-top: 36px;
}

.case-single__content-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 38px;
}

.case-single__content-text-1 {
  margin-bottom: 38px;
}

.case-details__pagination-box {
  position: relative;
  display: block;
  text-align: center;
  border-top: 1px solid #e4e4ea;
  border-bottom: 1px solid #e4e4ea;
  padding: 30px 0 30px;
  margin-top: 72px;
}

.case-details__pagination li {
  display: inline-block;
}

.case-details__pagination li.next {
  float: right;
  position: relative;
}

.case-details__pagination li a {
  font-size: 18px;
  color: var(--futxo-black);
  font-weight: 700;
  display: flex;
  align-items: center;
  transition: all 500ms ease;
  padding: 0 15px;
  height: 52px;
  margin: 0;
}

.case-details__pagination li.active a, .case-details__pagination li a:hover {
  color: var(--futxo-white);
  background-color: var(--futxo-base);
}

.case-details__pagination li.next a:hover, .case-details__pagination li.previous a:hover {
  color: var(--futxo-black);
  background-color: transparent;
}

.case-details__pagination li.next i {
  position: relative;
  height: 52px;
  width: 52px;
  background-color: var(--futxo-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--futxo-black);
  font-size: 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-right: 20px;
  z-index: 1;
}

.case-details__pagination li.previous {
  position: relative;
  float: left;
}

.case-details__pagination li.previous i {
  position: relative;
  height: 52px;
  width: 52px;
  background-color: var(--futxo-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--futxo-black);
  font-size: 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  margin-left: 20px;
  z-index: 1;
}

.case-details__pagination li a:hover i {
  color: var(--futxo-white);
  background-color: var(--futxo-base);
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  position: relative;
  display: block;
  padding: 120px 0 0;
}

.portfolio-details__left {
  position: relative;
  display: block;
}

.portfolio-details__content-box-one {
  position: relative;
  display: block;
}

.portfolio-details__content-one-img {
  position: relative;
  display: block;
  background-color: #090909;
}

.portfolio-details__content-one-img img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.portfolio-details__content-one {
  position: relative;
  display: block;
  margin-top: 33px;
}

.portfolio-details__content-one-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 19px;
}

.portfolio-details__content-one-text-2 {
  margin-top: 14px;
  margin-bottom: 29px;
}

.portfolio-details__planing {
  position: relative;
  display: block;
  margin-bottom: 54px;
}

.portfolio-details__planing-left {
  position: relative;
  display: block;
  margin-right: 33px;
}

.portfolio-details__planing-img {
  position: relative;
  display: block;
  background-color: #090909;
}

.portfolio-details__planing-img img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.portfolio-details__planing-right {
  position: relative;
  display: block;
  margin-left: -35px;
  margin-top: -7px;
}

.portfolio-details__planing-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 42px;
}

.portfolio-details__planing-text {
  margin-top: 9px;
  margin-bottom: 29px;
}

.portfolio-details__planing-points {
  position: relative;
  display: block;
}

.portfolio-details__planing-points li {
  position: relative;
  display: flex;
  align-items: center;
}

.portfolio-details__planing-points li+li {
  margin-top: 20px;
}

.portfolio-details__planing-points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: #f2f2f2;
  border-radius: 50%;
  font-size: 15px;
  color: var(--futxo-gray);
}

.portfolio-details__planing-points li .text {
  margin-left: 15px;
}

.portfolio-details__planing-points li .text p {
  letter-spacing: -0.025em;
}

.portfolio-details__sidebar {
  position: relative;
  display: block;
}

.portfolio-details__info {
  position: relative;
  display: block;
  background-color: #f2f2f2;
  padding: 32px 30px 45px;
}

.portfolio-details__info-title {
  font-size: 25px;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 30px;
}

.portfolio-details__info-list {
  position: relative;
  display: block;
}

.portfolio-details__info-list li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--futxo-white);
  padding: 17px 20px 17px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.portfolio-details__info-list li:hover {
  background-color: var(--futxo-base);
}

.portfolio-details__info-list li+li {
  margin-top: 15px;
}

.portfolio-details__info-left {
  position: relative;
  display: block;
}

.portfolio-details__info-left p {
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.portfolio-details__info-list li:hover .portfolio-details__info-left p {
  color: var(--futxo-white);
}

.portfolio-details__info-right {
  position: relative;
  display: block;
}

.portfolio-details__info-right span {
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.portfolio-details__info-list li:hover .portfolio-details__info-right span {
  color: var(--futxo-white);
}

.portfolio-details__sidebar-img {
  position: relative;
  display: block;
  background-color: #090909;
  margin-top: 30px;
}

.portfolio-details__sidebar-img img {
  width: 100%;
  mix-blend-mode: luminosity;
}

/*--------------------------------------------------------------
# Testimonial Page
--------------------------------------------------------------*/
.testimonial-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
  z-index: 1;
}

.testimonial-page .testimonial-one__single {
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
## Error Page
--------------------------------------------------------------*/
.error-page {
  position: relative;
  display: block;
  padding: 8px 0 120px;
}

.error-page__inner {
  position: relative;
  display: block;
  text-align: center;
}

.error-page__title {
  position: relative;
  display: inline-block;
  font-size: 350px;
  line-height: 350px;
  font-weight: 700;
  margin-bottom: 16px;
}

.error-page__tagline {
  font-size: 40px;
  line-height: 49px;
  margin-bottom: 19px;
  text-transform: uppercase;
  font-weight: 500;
}

.error-page__text {
  margin: 0;
  line-height: 18px;
}

.error-page__form {
  position: relative;
  display: block;
  margin: 61px auto 20px;
}

.error-page__form-input {
  position: relative;
  display: block;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}

.error-page__form input[type="search"] {
  height: 68px;
  width: 100%;
  border: none;
  outline: none;
  background-color: #f6f4f9;
  font-size: 18px;
  color: var(--futxo-gray);
  font-weight: 400;
  padding-left: 50px;
  padding-right: 75px;
}

.error-page__form button[type="submit"] {
  background-color: transparent;
  color: var(--futxo-black);
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0px;
  bottom: 0;
  width: 70px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  padding: 0;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  padding: 228px 0 233px;
  background-color: #090909;
  overflow: hidden;
  z-index: 1;
}

.page-header__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: .30;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

.page-header__shape-1 {
  position: absolute;
  top: 0;
  bottom: -30px;
  left: 0;
  right: 0;
  opacity: .10;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;

  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.page-header__shape-2 {
  position: absolute;
  bottom: -320px;
  right: -30px;
  opacity: .30;
  z-index: -1;

  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

.page-header__shape-2 img {
  width: auto;
  mix-blend-mode: overlay;
}

.page-header__inner {
  position: relative;
  display: block;
  z-index: 15;
}

.page-header__inner h2 {
  font-size: 80px;
  font-weight: 600;
  line-height: 80px;
  color: var(--futxo-white);
  font-family: var(--futxo-font);
}

.thm-breadcrumb__box {
  position: relative;
  display: inline-block;
  margin-top: 30px;
  z-index: 1;
}

.thm-breadcrumb {
  position: relative;
  display: inline-block;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-weight: 500;
  color: var(--futxo-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  color: var(--futxo-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--futxo-base);
}

/*--------------------------------------------------------------
# Services Details
--------------------------------------------------------------*/
.services-details {
  position: relative;
  display: block;
  padding: 30px 0 30px;
  z-index: 1;
}

.services-details__left {
  position: relative;
  display: block;
}

.services-details__img {
  position: relative;
  display: block;
  background-color: #090909;
}

.services-details__img img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.services-details__title-1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
  margin-bottom: 17px;
  margin-top: 45px;
}

.services-details__text-1 {
  font-size: 18px;
  line-height: 35px;
}

.services-details__text-2 {
  font-size: 18px;
  line-height: 35px;
  margin-top: 15px;
  margin-bottom: 43px;
}

.services-details__points {
  position: relative;
  display: block;
}

.services-details__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.services-details__points li+li {
  margin-top: 20px;
}

.services-details__points li .icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f2f2f2;
  border-radius: 50%;
}

.services-details__points li .icon span {
  position: relative;
  display: inline-block;
  font-size: 13px;
  color: var(--futxo-gray);
}

.services-details__points li p {
  font-size: 18px;
  line-height: 35px;
  letter-spacing: -25;
  margin-left: 16px;
}

.services-details__text-3 {
  font-size: 18px;
  line-height: 35px;
  margin-top: 32px;
  margin-bottom: 60px;
}

.services-details__img-2 {
  position: relative;
  display: block;
  background-color: #090909;
}

.services-details__img-2 img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.services-details__video-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.services-details__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: 90px;
  height: 90px;
  line-height: 90px;
  text-align: center;
  font-size: 23px;
  color: var(--futxo-white);
  background-color: var(--futxo-base);
  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;
}

.services-details__video-icon::before {
  content: "";
  position: absolute;
  top: -17px;
  left: -17px;
  right: -17px;
  bottom: -17px;
  border-radius: 50%;
  border: 1px solid rgb(255, 99, 14, .31);
}

.services-details__video-icon:hover {
  background-color: var(--futxo-white);
  color: var(--futxo-base);
}

.services-details__video-link .ripple,
.services-details__video-icon .ripple:before,
.services-details__video-icon .ripple:after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -ms-box-shadow: 0 0 0 0 rgba(var(--futxo-base-rgb), 0.6);
  -o-box-shadow: 0 0 0 0 rgba(var(--futxo-base-rgb), 0.6);
  -webkit-box-shadow: 0 0 0 0 rgba(var(--futxo-base-rgb), 0.6);
  box-shadow: 0 0 0 0 rgba(var(--futxo-base-rgb), 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
}

.services-details__video-icon .ripple:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.services-details__video-icon .ripple:after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.services-details__text-4 {
  font-size: 18px;
  line-height: 35px;
  margin-top: 27px;
  margin-bottom: 44px;
}

.services-details__tab {
  position: relative;
  display: block;
}

.services-details__tab .tab-buttons {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 49px;
}

.services-details__tab .tab-buttons .tab-btn {
  position: relative;
  display: block;
}

.services-details__tab .tab-buttons .tab-btn+.tab-btn {
  margin-left: 15px;
}

.services-details__tab .tab-buttons .tab-btn span {
  position: relative;
  display: block;
  text-align: center;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  font-size: 15px;
  line-height: 15px;
  color: var(--futxo-gray);
  background-color: #f1f3f2;
  padding: 22px 30px 23px;
  font-weight: 600;
  font-family: var(--futxo-font-two);
  cursor: pointer;
  font-family: var(--futxo-font-two);
  transition: all 0.3s ease;
  z-index: 1;
}

.services-details__tab .tab-buttons .tab-btn.active-btn span {
  color: var(--futxo-white);
}

.services-details__tab .tab-buttons .tab-btn span:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 0%;
  content: "";
  background-color: var(--futxo-base);
  transition: all 0.3s ease;
  z-index: -1;
}

.services-details__tab .tab-buttons .tab-btn.active-btn span:before {
  height: 100%;
}

.services-details__tab .tabs-content {
  position: relative;
  display: block;
}

.services-details__tab .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  -ms-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.services-details__tab .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.services-details__text-5 {
  font-size: 18px;
  line-height: 35px;
  margin-bottom: 27px;
}

.services-details__points-two {
  position: relative;
  display: block;
}

.services-details__points-two li {
  position: relative;
  display: flex;
  align-items: center;
}

.services-details__points-two li+li {
  margin-top: 9px;
}

.services-details__points-two-shape {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  background-color: #bfc2c3;
  border-radius: 50%;
  top: 2px;
}

.services-details__points-two-text {
  margin-left: 10px;
  font-size: 18px;
  line-height: 35px;
}

.services-details__img-and-points {
  position: relative;
  display: flex;
  margin-top: 53px;
}

.services-details__points-img {
  position: relative;
  display: block;
  background-color: #090909;
}

.services-details__points-img img {
  width: auto;
  mix-blend-mode: luminosity;
}

.services-details__points-box {
  position: relative;
  display: block;
  margin-left: 30px;
  margin-top: -8px;
}

.services-details__points-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
}

.services-details__points-text {
  font-size: 18px;
  line-height: 35px;
  margin-top: 13px;
  margin-bottom: 30px;
}

.services-details__points-three {
  position: relative;
  display: block;
}

.services-details__points-three li {
  position: relative;
  display: flex;
  align-items: center;
}

.services-details__points-three li+li {
  margin-top: 20px;
}

.services-details__points-three li .icon {
  position: relative;
  display: inline-block;
}

.services-details__points-three li .icon span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #f2f2f2;
  border-radius: 50%;
  font-size: 14px;
  color: var(--futxo-gray);
}

.services-details__points-three li .text {
  margin-left: 15px;
}

.services-details__points-three li .text p {
  font-size: 18px;
  letter-spacing: -0.025em;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }
}

.sidebar__single+.sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  position: relative;
  margin: 0;
  font-size: 28px;
  margin-bottom: 21px;
  font-weight: 600;
}

.sidebar__search {
  position: relative;
  display: block;
  background-color: #f1f3f2;
  padding: 48px 30px 50px;
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: var(--futxo-white);
  color: var(--futxo-gray);
  font-size: 15px;
  font-weight: 400;
  padding-left: 20px;
  height: 65px;
  width: 100%;
  padding-right: 50px;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--futxo-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--futxo-gray);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--futxo-gray);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--futxo-gray);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--futxo-gray);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--futxo-gray);
}

.sidebar__search-form button[type="submit"] {
  background-color: transparent;
  color: var(--futxo-gray);
  font-size: 15px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52px;
  outline: none;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.sidebar__category {
  position: relative;
  display: block;
  background-color: #f1f3f2;
  padding: 48px 30px 50px;
}

.sidebar__category .sidebar__title {
  margin-bottom: 29px;
}

.sidebar__category-list {
  position: relative;
  display: block;
}

.sidebar__category-list li {
  position: relative;
  display: block;
}

.sidebar__category-list li+li {
  margin-top: 10px;
}

.sidebar__category-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--futxo-white);
  font-size: 17px;
  font-weight: 600;
  line-height: 27px;
  color: var(--futxo-black);
  padding: 17px 25px 21px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.sidebar__category-list li a:hover,
.sidebar__category-list li.active a {
  color: var(--futxo-white);
}

.sidebar__category-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  background-color: var(--futxo-base);
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.sidebar__category-list li:hover a::before,
.sidebar__category-list li.active a::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.sidebar__have-your-question {
  position: relative;
  display: block;
  background-color: #f1f3f2;
  padding: 48px 30px 50px;
}

.sidebar__contact-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.sidebar__contact-form {
  position: relative;
  display: block;
}

.sidebar__contact-input-box {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.sidebar__contact-input-box input[type="text"],
.sidebar__contact-input-box input[type="email"] {
  height: 65px;
  width: 100%;
  border: none;
  background-color: var(--futxo-white);
  padding-left: 20px;
  padding-right: 55px;
  outline: none;
  font-size: 15px;
  color: var(--futxo-gray);
  display: block;
  font-weight: 400;
  border-radius: 5px;
}

.sidebar__contact-input-box textarea {
  font-size: 15px;
  color: var(--futxo-gray);
  height: 123px;
  width: 100%;
  background-color: var(--futxo-white);
  padding: 15px 20px 30px;
  border-radius: 5px;
  border: none;
  outline: none;
  margin-bottom: 0px;
  font-weight: 400;
}

.sidebar__contact-input-box.text-message-box {
  height: 123px;
  margin-bottom: 15px;
}

.sidebar__contact-btn {
  border: none;
  border-radius: 5px;
  padding: 16px 35px 17px;
  letter-spacing: 0;
}

.sidebar__contact-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.sidebar__contact-icon span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--futxo-base);
}

.sidebar__contact-icon-2 {
  top: 23%;
}

.sidebar__download {
  position: relative;
  display: block;
  background-color: #f1f3f2;
  padding: 50px 30px 50px;
}

.sidebar__download-list {
  position: relative;
  display: block;
}

.sidebar__download-list li {
  position: relative;
  display: block;
}

.sidebar__download-list li+li {
  margin-top: 20px;
}

.sidebar__download-list li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 600;
  color: var(--futxo-black);
  padding: 24px 25px 23px;
  font-family: var(--futxo-font-two);
  background-color: var(--futxo-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.sidebar__download-list li a:hover {
  color: var(--futxo-white);
}

.sidebar__download-list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0px;
  right: 0;
  background-color: var(--futxo-base);
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  transform-origin: bottom right;
  -webkit-transform: scale(1, 0);
  transform: scale(1, 0);
  z-index: -1;
}

.sidebar__download-list li:hover a::before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  transform-origin: top center;
}

.sidebar__download-list li a span {
  font-size: 26px;
}

.sidebar__support {
  position: relative;
  display: block;
  background-color: #090909;
  text-align: center;
  padding: 84px 40px 87px;
  z-index: 1;
}

.sidebar__support-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .15;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.sidebar__support-title {
  font-size: 40px;
  font-weight: 500;
  line-height: 50px;
  color: var(--futxo-white);
}

.sidebar__support-text {
  font-size: 15px;
  color: var(--futxo-white);
  line-height: 27px;
  margin-top: 28px;
  margin-bottom: 42px;
}

.sidebar__support-btn-box {
  position: relative;
  display: block;
}

.sidebar__support-btn {
  letter-spacing: 0;
  padding: 16px 35px 17px;
}

.sidebar__support-btn:hover {
  color: var(--futxo-base);
}

.sidebar__support-btn span {
  background-color: var(--futxo-white);
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
  position: relative;
  display: block;
  padding: 112px 0 120px;
  z-index: 1;
}

.contact-page__left {
  position: relative;
  display: block;
}

.contact-page__title {
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
  margin-bottom: 60px;
}

.contact-page__contact-list {
  position: relative;
  display: block;
}

.contact-page__contact-list li {
  position: relative;
  display: flex;
}

.contact-page__contact-list li+li {
  margin-top: 40px;
}

.contact-page__contact-list li .icon {
  position: relative;
  display: inline-block;
  top: 6px;
}

.contact-page__contact-list li .icon span {
  position: relative;
  display: inline-block;
  font-size: 48px;
  color: var(--futxo-base);
  -webkit-transition: all 500ms linear;
  transition: all 500ms linear;
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.contact-page__contact-list li:hover .icon span {
  transform: scale(.9);
}

.contact-page__contact-list li .content {
  position: relative;
  display: block;
  margin-left: 35px;
}

.contact-page__contact-list li .content h3 {
  font-size: 27px;
  font-weight: 600;
  line-height: 37px;
  margin-bottom: 14px;
}

.contact-page__contact-list li .content a {
  color: var(--futxo-gray);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page__contact-list li .content a:hover {
  color: var(--futxo-base);
}

.contact-page__right {
  position: relative;
  display: block;
  margin-top: 124px;
}

.contact-page__form {
  position: relative;
  display: block;
}

.contact-page__form .row {
  --bs-gutter-x: 20px;
}

.contact-page__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.contact-page__input-box input[type="text"],
.contact-page__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  border: none;
  background-color: transparent;
  border: 1px solid #dfe0e5;
  border-radius: 15px;
  padding-left: 30px;
  padding-right: 30px;
  outline: none;
  font-size: 14px;
  color: var(--futxo-gray);
  display: block;
  font-weight: 400;
}

.contact-page__input-box textarea {
  font-size: 14px;
  color: var(--futxo-gray);
  height: 200px;
  width: 100%;
  background-color: transparent;
  border: 1px solid #dfe0e5;
  border-radius: 15px;
  padding: 15px 30px 30px;
  outline: none;
  margin-bottom: 0px;
  font-weight: 400;
}

.contact-page__input-box.text-message-box {
  height: 200px;
  margin-bottom: 30px;
}

.contact-page__btn-box {
  position: relative;
  display: block;
}

.contact-page__btn {
  border: none;
  letter-spacing: 0;
  padding: 18px 45px 19px;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog-details {
  position: relative;
  display: block;
  padding: 30px 0 30px;
  z-index: 1;
}

.blog-details__left {
  position: relative;
  display: block;
}

.blog-details__left h1, .blog-details__left h2, .blog-details__left h3, .blog-details__left h4, .blog-details__left h5, .blog-details__left h6 {
	margin-bottom: 0.5rem;
	margin-top: 0.5rem;

}

.blog-details__img-1 {
  position: relative;
  display: block;
  background-color: #090909;
}

.blog-details__img-1 img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.blog-details__meta {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 29px;
  margin-bottom: 24px;
}

.blog-details__meta li {
  position: relative;
  display: block;
}

.blog-details__meta li+li {
  margin-left: 20px;
}

.blog-details__meta li a {
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-details__meta li a:hover {
  color: var(--futxo-base);
}

.blog-details__meta li a span {
  position: relative;
  color: var(--futxo-base);
  margin-right: 6px;
  font-size: 14px;
}

.blog-details__title-1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
}

.blog-details__text-1 {
  font-size: 18px;
  line-height: 35px;
  margin-top: 17px;
  margin-bottom: 5px;
}

.blog-details__text-2 {
  font-size: 18px;
  line-height: 35px;
}

.blog-details__quote-and-text {
  position: relative;
  display: flex;
  margin-top: 17px;
  margin-bottom: 18px;
}

.blog-details__quote {
  position: relative;
  display: inline-block;
  top: 9px;
}

.blog-details__quote span {
  position: relative;
  display: inline-block;
  font-size: 36px;
  color: var(--futxo-black);
}

.blog-details__quote-text {
  margin-left: 20px;
  font-size: 18px;
  line-height: 35px;
}

.blog-details__points {
  position: relative;
  display: block;
}

.blog-details__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.blog-details__points li+li {
  margin-top: 9px;
}

.blog-details__points-shape-1 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #bfc2c3;
}

.blog-details__points li p {
  margin-left: 16px;
  font-size: 18px;
  line-height: 35px;
  letter-spacing: -0.025em;
}

.blog-details__text-3 {
  font-size: 18px;
  line-height: 35px;
  margin-top: 32px;
  margin-bottom: 15px;
}

.blog-details__text-4 {
  font-size: 18px;
  line-height: 35px;
}

.blog-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;
  margin-top: 45px;
  margin-bottom: 40px;
}

.blog-details__bottom p {
  margin: 0;
}

.blog-details__tags a {
  position: relative;
  color: var(--futxo-gray);
  font-size: 14px;
  border: 1px solid #dcdfe2;
  display: inline-block;
  padding: 3px 30px 5px;
  letter-spacing: 0.035em;
  font-weight: 400;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-details__tags a:hover {
  background-color: var(--futxo-base);
  color: var(--futxo-white);
  border: 1px solid var(--futxo-base);
}

.blog-details__tags a+a {
  margin-left: 10px;
}

.blog-details__social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.blog-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(--futxo-black);
  background-color: #f2f2f2;
  font-size: 14px;
  border-radius: 50%;
  overflow: hidden;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.blog-details__social-list a:hover {
  color: var(--futxo-white);
}

.blog-details__social-list a:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background-color: var(--futxo-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: scalex(0);
  transform: scaleX(0);
  z-index: -1;
}

.blog-details__social-list a:hover:after {
  opacity: 1;
  -webkit-transform: scalex(1);
  transform: scalex(1);
}

.blog-details__social-list a+a {
  margin-left: 10px;
}

.author {
  position: relative;
  display: flex;
  align-items: center;
  background-color: #f2f2f2;
  padding: 28px 30px 34px;
  padding-right: 70px;
}

.author__img {
  position: relative;
  display: block;
  background-color: #090909;
  border-radius: 50%;
}

.author__img img {
  width: auto;
  border-radius: 50%;
  mix-blend-mode: luminosity;
}

.author__content {
  position: relative;
  display: block;
  margin-left: 30px;
}

.author__name {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
}

.author__text {
  font-size: 15px;
  line-height: 27px;
  margin-top: 8px;
  margin-bottom: 15px;
}

.author__social {
  position: relative;
  display: flex;
  align-items: center;
}

.author__social a {
  font-size: 14px;
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.author__social a:hover {
  color: var(--futxo-base);
}

.author__social a+a {
  margin-left: 20px;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-one {
  position: relative;
  display: block;
  margin-top: 56px;
  margin-bottom: 46px;
}

.comment-one__title,
.comment-form__title {
  margin: 0;
  color: var(--futxo-black);
  font-size: 32px;
  margin-bottom: 32px;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.comment-one__single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}

.comment-one__single+.comment-one__single {
  margin-top: 53px;
}

.comment-one__content {
  position: relative;
  margin-left: 30px;
}

.comment-one__content h3 {
  margin: 0;
  font-size: 22px;
  color: var(--futxo-black);
  font-weight: 600;
}

.comment-one__content p {
  font-size: 15px;
  line-height: 27px;
  margin-bottom: 14px;
  margin-top: 12px;
}

.comment-one__content span {
  font-size: 15px;
  line-height: 27px;
}

.comment-one__btn {
  position: absolute;
  left: 152px;
  bottom: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--futxo-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.comment-one__btn:hover {
  color: var(--futxo-black);
}

.comment-one__image {
  position: relative;
  display: block;
  border-radius: 50%;
  background-color: #090909;
}

.comment-one__image img {
  border-radius: 50%;
  mix-blend-mode: luminosity;
}

.comment-form.comment-one__title,
.comment-form__title {
  margin-bottom: 42px;
}

.comment-form__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  height: 60px;
  width: 100%;
  background-color: transparent;
  border: 1px solid #dcdfe2;
  border-radius: 2px;
  padding-left: 20px;
  padding-right: 20px;
  outline: none;
  font-size: 12px;
  color: var(--futxo-gray);
  display: block;
}

.comment-form__input-box textarea {
  font-size: 12px;
  color: var(--futxo-gray);
  height: 200px;
  width: 100%;
  background-color: transparent;
  border-radius: 2px;
  border: 1px solid #dcdfe2;
  padding: 25px 20px 30px;
  outline: none;
  margin-bottom: 0px;
}

.comment-form__btn {
  border: none;
  padding: 16px 43px 17px;
  letter-spacing: 0;
}

.comment-form__input-box.text-message-box {
  height: 200px;
  margin-bottom: 30px;
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 45px 30px 48px;
  background-color: var(--futxo-primary);
  z-index: 1;
}

.sidebar__post .sidebar__title {
  margin-bottom: 29px;
}

.sidebar__post-list {
  margin: 0;
}

.sidebar__post-list li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-list li+li {
  margin-top: 16px;
}

.sidebar__post-image {
  margin-right: 10px;
  background-color: #090909;
}

.sidebar__post-image>img {
  width: 70px;
  mix-blend-mode: luminosity;
}

.sidebar__post-content {
  position: relative;
  top: -3px;
}

.sidebar__post-content p {
  font-size: 14px;
  margin: 0;
  line-height: 26px;
  font-weight: 500;
  color: var(--futxo-black);
}

.sidebar__post-content-meta {
  position: relative;
  display: block;
  line-height: 22px;
  font-size: 13px;
  font-weight: 500;
  color: var(--futxo-gray);
  font-family: var(--futxo-font);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__post-content p a {
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
}

.footer-widget__column .sidebar__post-content p a {
	color: var(--futxo-white);
  }

.sidebar__post-content p a:hover {
  color: var(--futxo-base);
}

.sidebar__support-two {
  position: relative;
  display: block;
  background-color: #090909;
  text-align: center;
  padding: 77px 40px 87px;
  z-index: 1;
}

.sidebar__support-two-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .15;
  mix-blend-mode: luminosity;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.sidebar__support-two-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 60px;
  color: var(--futxo-white);
}

.sidebar__support-two-text {
  font-size: 15px;
  color: var(--futxo-white);
  line-height: 27px;
  margin-top: 20px;
  margin-bottom: 36px;
}

.sidebar__support-two-btn-box {
  position: relative;
  display: block;
}

.sidebar__support-two-btn {
  letter-spacing: 0;
  padding: 16px 35px 17px;
}

.sidebar__support-two-btn:hover {
  color: var(--futxo-base);
}

.sidebar__support-two-btn span {
  background-color: var(--futxo-white);
}

.sidebar__tag {
  position: relative;
  display: block;
  background-color: #f2f2f2;
  padding: 46px 30px 50px;
}

.sidebar__tag .sidebar__title-box {
  margin-bottom: 19px;
}

.sidebar__tag-list {
  margin-left: -15px;
}

.sidebar__tag-list a {
  font-size: 14px;
  font-weight: 400;
  color: var(--futxo-gray);
  background-color: var(--futxo-white);
  display: inline-block;
  padding: 10px 20px 10px;
  margin-left: 15px;
  line-height: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.sidebar__tag-list a+a {
  margin-left: 15px;
  margin-top: 15px;
}

.sidebar__tag-list a:hover {
  background-color: var(--futxo-base);
  color: var(--futxo-white);
}

/*--------------------------------------------------------------
# Blog List
--------------------------------------------------------------*/
.blog-list {
  position: relative;
  display: block;
  padding: 30px 0 30px;
  z-index: 1;
}

.blog-list__single {
  position: relative;
  display: block;
}

.blog-list__single+.blog-list__single {
  margin-top: 32px;
}

.blog-list__img {
  position: relative;
  display: block;
  background-color: #090909;
}

.blog-list__img img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.blog-list__date {
  position: absolute;
  bottom: -20px;
  right: 70px;
  width: 70px;
  border-radius: 6px;
  text-align: center;
  background-color: var(--futxo-base);
  padding: 13px 10px 13px;
}

.blog-list__date p {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  color: var(--futxo-white);
}

.blog-list__meta {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 29px;
  margin-bottom: 17px;
}

.blog-list__meta li {
  position: relative;
  display: block;
}

.blog-list__meta li+li {
  margin-left: 20px;
}

.blog-list__meta li a {
  font-size: 15px;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-list__meta li a:hover {
  color: var(--futxo-base);
}

.blog-list__meta li a span {
  position: relative;
  color: var(--futxo-base);
  margin-right: 6px;
  font-size: 14px;
}

.blog-list__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
}

.blog-list__title a {
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-list__title a:hover {
  color: var(--futxo-base);
}

.blog-list__text {
  font-size: 18px;
  line-height: 35px;
  margin-top: 17px;
  margin-bottom: 5px;
}

.blog-list__text-2 {
  font-size: 18px;
  line-height: 35px;
}

.blog-list__read-more {
  position: relative;
  display: block;
  margin-top: 20px;
}

.blog-list__read-more a {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: var(--futxo-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-list__read-more a:hover {
  color: var(--futxo-base);
}

.blog-list__read-more a span {
  position: relative;
  margin-left: 11px;
  font-size: 18px;
}

.blog-list__pagination {
  position: relative;
  display: block;
  margin-top: 62px;
}

.blog-list__pagination .pg-pagination li {
  display: inline-block;
  margin-right: 20px;
}

.blog-page__pagination .pg-pagination li:last-child {
  margin-right: 0;
}

.blog-list__pagination .pg-pagination li a {
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  display: inline-block;
  color: var(--futxo-black);
  border: 1px solid #dee1e3;
  border-radius: 50%;
  font-weight: 400;
  font-size: 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-list__pagination .pg-pagination li a:hover {
  background-color: var(--futxo-base);
  color: var(--futxo-white);
  border: 1px solid var(--futxo-base);
}

/*--------------------------------------------------------------
# About Page Portfolio 
--------------------------------------------------------------*/
.about-page-portfolio {
  padding-top: 0;
}

/*--------------------------------------------------------------
# About Page Team 
--------------------------------------------------------------*/
.about-page-team {
  padding-top: 120px;
}


/*--------------------------------------------------------------
# Process Two
--------------------------------------------------------------*/
.services-four {
  padding-top: 110px;
}

/*--------------------------------------------------------------
# Process Two
--------------------------------------------------------------*/
.process-two {
  padding-top: 120px;
}

/*--------------------------------------------------------------
# Team Page
--------------------------------------------------------------*/
.team-page {
  padding-top: 120px;
}

/*--------------------------------------------------------------
# General Page
--------------------------------------------------------------*/
.general-page {
	position: relative;
	display: block;
	padding: 75px 0;
  }

/*--------------------------------------------------------------
# Faq Page
--------------------------------------------------------------*/
.faq-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.faq-page .faq-one__right {
  margin-left: 0;
  margin-bottom: 30px;
}

.faq-page .faq-one__right .faq-one-accrodion .accrodion-title h4 {
  font-size: 22px;
}

/*--------------------------------------------------------------
# Gallery Two
--------------------------------------------------------------*/
.gallery-page {
  position: relative;
  display: block;
  padding: 120px 0 110px;
}

.gallery-page .row {
  --bs-gutter-x: 10px;
}

.gallery-page .container {
  max-width: 1572px;
}

.gallery-page__single {
  position: relative;
  display: block;
  margin-bottom: 10px;
}

.gallery-page__img {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.gallery-page__img:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -2px;
  left: 0;
  right: 0;
  background-color: var(--futxo-base);
  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: 2;
}

.gallery-page__single:hover .gallery-page__img:before {
  opacity: .90;
  visibility: visible;
  -webkit-transform: scaleY(1) translateZ(0px);
  transform: scaleY(1) translateZ(0px);
}

.gallery-page__img-box {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #090909;
}

.gallery-page__img img {
  width: 100%;
  mix-blend-mode: luminosity;
}

.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: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: var(--futxo-white);
  -webkit-transform: scale(0);
  transform: scale(0);
  opacity: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 2;
}


.gallery-page__single:hover .gallery-page__icon a {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition-delay: 500ms;
  opacity: 1;
}

.gallery-page__icon a:hover {
  color: var(--futxo-black);
}

/***
=============================================
    Team Details
=============================================
***/
.team-details {
  position: relative;
  display: block;
  background: #ffffff;
  padding: 120px 0px 0px;
  z-index: 1;
}

.team-details__top {
  position: relative;
  display: block;
  padding: 0px 0px 92px;
}

.team-details__top-left {
  position: relative;
  display: block;
  overflow: hidden;
}

.team-details__top-img {
  position: relative;
  display: block;
  background: #090909;
  overflow: hidden;
  z-index: 1;
}

.team-details__top-img::before {
  position: absolute;
  top: 0;
  left: -100%;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(var(--futxo-base-rgb), .7) 0%, rgba(var(--futxo-base-rgb), .3) 100%);
  transform: skewX(25deg);
  z-index: 1;
}

.team-details__top-img:hover::before {
  -webkit-animation: shine 1.9s;
  animation: shine 1.9s;
}

.team-details__top-img img {
  width: 100%;
  mix-blend-mode: luminosity;
  transition: all 500ms linear;
  transition-delay: 0.2s;
}

.team-details__top-img img:hover {
  transform: scale(1.1) rotate(0deg);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}


.team-details__top-right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.team-details__top-content {
  position: relative;
  display: block;
  margin-top: -7px;
}

.team-details__top-title {
  color: var(--futxo-gray);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--futxo-font-two);
  margin: 0;
  margin-bottom: 6px;
}

.team-details__top-name {
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  text-transform: capitalize;
}

.team-details__social {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 31px;
  margin-bottom: 28px;
}

.team-details__social a {
  position: relative;
  height: 45px;
  width: 45px;
  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;
  background-color: #f6f4f9;
  color: var(--futxo-black);
  font-size: 15px;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-details__social a:hover {
  background-color: var(--futxo-base);
  color: var(--futxo-white);
}

.team-details__social a+a {
  margin-left: 10px;
}

.team-details__top-text-1 {
  color: var(--futxo-base);
  font-size: 30px;
  line-height: 46px;
  font-weight: 400;
  margin: 0;
}

.team-details__top-text-2 {
  font-size: 18px;
  line-height: 34px;
  font-weight: 400;
  padding-top: 36px;
  padding-bottom: 34px;
  margin: 0;
}

.team-details__top-text-3 {
  font-size: 18px;
  line-height: 34px;
  font-weight: 400;
  margin: 0;
}


.team-details__certificate {
  position: relative;
  display: block;
  padding: 0px 0px 120px;
}

.team-details__certificate-title {
  position: relative;
  display: block;
  margin-bottom: 32px;
}

.team-details__certificate-title h2 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  text-transform: uppercase;
}

.team-details__certificate-list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -15px;
  margin-right: -15px;
}

.team-details__certificate-single {
  position: relative;
  display: block;
  padding: 0px 15px 0px;
}

.team-details__certificate-single-img {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--futxo-black);
}

.team-details__certificate-single-img:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  background: rgba(0, 0, 0, 0.60);
  transition-delay: .1s;
  transition-timing-function: ease-in-out;
  transition-duration: .7s;
  transition-property: all;
  opacity: 0;
  z-index: 5;
}

.team-details__certificate-single:hover .team-details__certificate-single-img:before {
  opacity: 1;
}

.team-details__certificate-single-img img {
  width: 100%;
  mix-blend-mode: luminosity;
}


/***
=============================================
    Team Details Bottom
=============================================
***/
.team-details-bottom {
  position: relative;
  display: block;
  background: #f6f4f9;
  padding: 120px 0px 109px;
}

.team-details-bottom__left {
  position: relative;
  display: block;
}

.team-details-bottom__left .section-title {
  margin-bottom: 0px;
}

.team-details-bottom__right {
  position: relative;
  display: block;
}

.team-details-bottom__progress {
  position: relative;
  display: block;
}

.team-details-bottom__progress-single {
  position: relative;
  display: block;
}

.team-details-bottom__progress-title {
  font-size: 20px;
  line-height: 30px;
  margin-bottom: 13px;
  text-transform: uppercase;
  font-weight: 500;
}

.team-details-bottom__progress .bar {
  position: relative;
  width: 100%;
  height: 7px;
  background-color: var(--futxo-white);
  border-radius: 5px;
  margin-bottom: 11px;
}

.team-details-bottom__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 7px;
  border-radius: 5px;
  background: var(--futxo-base);
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.team-details-bottom__progress .count-text {
  position: absolute;
  right: -41px;
  bottom: 20px;
  color: var(--futxo-white);
  line-height: 22px;
  font-size: 12px;
  text-align: center;
  font-weight: 500;
  opacity: 0;
  background-color: var(--futxo-black);
  padding-left: 10px;
  padding-right: 10px;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
  font-family: var(--futxo-font-two);
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.team-details-bottom__progress .count-text:before {
  position: absolute;
  bottom: -6px;
  left: 0;
  border: 3px solid var(--futxo-black);
  content: "";
  border-right: 4px solid transparent;
  border-bottom: 3px solid transparent;
}

.team-details-bottom__progress .bar-inner.counted .count-text {
  opacity: 1;
}

/*--------------------------------------------------------------
# Team Carousel Page
--------------------------------------------------------------*/
.team-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 170px;
}

.team-carousel-page .team-two__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: -50px;
  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(--futxo-base);
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.carousel-dot-style.owl-carousel .owl-dot.active {
  width: 10px;
  height: 10px;
  background-color: var(--futxo-black);
}

.carousel-dot-style.owl-carousel .owl-dot:focus {
  outline: none;
}

.carousel-dot-style.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Team Carousel Page
--------------------------------------------------------------*/
.services-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 170px;
}

.services-carousel-page .services-two__single {
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Services Carousel Page
--------------------------------------------------------------*/
.blog-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 170px;
}

.blog-carousel-page .blog-one__single {
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Portfolio Carousel Page
--------------------------------------------------------------*/
.Portfolio-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 170px;
}

/*--------------------------------------------------------------
# Testimonial Carousel Page
--------------------------------------------------------------*/
.testimonial-carousel-page {
  position: relative;
  display: block;
  padding: 120px 0 170px;
}

.testimonial-carousel-page .testimonial-one__single {
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
}


/*--------------------------------------------------------------
# Custom CSS
--------------------------------------------------------------*/

section > .container h1, section > .container h2, section > .container h3, section > .container h4, section > .container h5, section > .container h6{
     margin-bottom: 0.5rem;
     margin-top: 0.5rem;
}
section > .container p {
	 margin-bottom: 1rem;
}


/*--------------------------------------------------------------
# The End
--------------------------------------------------------------*/