/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/
:root {
  --conult-font: "DM Sans", sans-serif;
  --conult-reey-font: "reeyregular";
  --conult-gray: #7a838b;
  --conult-gray-rgb: 122, 131, 139;
  --conult-white: #ffffff;
  --conult-white-rgb: 255, 255, 255;
  --conult-black: #000000;
  --conult-black-rgb: 0, 41, 75;
  --conult-base: #ED1B24;
  --conult-base-rgb: 5, 117, 188;
}

.row {
  --bs-gutter-x: 30px;
}

.gutter-y-30 {
  --bs-gutter-y: 30px;
}

body {
  font-family: var(--conult-font);
  color: var(--conult-gray);
  font-size: 18px;
  line-height: 34px;
  font-weight: 400;
}

body.locked {
  overflow: hidden;
}

a {
  color: var(--conult-gray);
}

a,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
}

::placeholder {
  color: inherit;
  opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--conult-black);
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

::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;
  }
}

::placeholder {
  color: inherit;
  opacity: 1;
}

.section-separator {
  border-color: var(--conult-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: 1;
  z-index: -1;
}

.thm-btn {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
 background: #ED1B24;
 margin-top: 10px;
  color: var(--conult-white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 15px 60px 15px;
  transition: all 0.3s linear;
  overflow: hidden;
  letter-spacing: 0.1em;
  z-index: 1;
  border-radius: 10px;
}
.thm-btn-cta {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--conult-base);
  color: var(--conult-white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 15px 60px 15px;
  transition: all 0.3s linear;
  overflow: hidden;
  letter-spacing: 0.1em;
  z-index: 1;
}
.thm-btn-cta2 {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: #fff;
  color: var(--conult-base);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 15px 60px 15px;
  transition: all 0.3s linear;
  overflow: hidden;
  letter-spacing: 0.1em;
  z-index: 1;
  border-radius: 10px;
}
.thm-btn-top {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--conult-base);
  color: var(--conult-white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 14px;
  transition: all 0.3s linear;
  overflow: hidden;
  letter-spacing: 0.1em;
  z-index: 1;
}

.thm-btn:hover {
  background-color: #fff;
  color: #000;
}
.thm-btn-top2 {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  outline: none !important;
  background-color: var(--conult-base);
  color: var(--conult-white);
  font-size: 12px;
  margin-top: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 14px;
  transition: all 0.3s linear;
  overflow: hidden;
  letter-spacing: 0.1em;
  z-index: 1;
}
.thm-btn-top2:hover {
  background-color: #100101;
  color: #f5efef;
}
.thm-btn-cta:hover{
  background-color: #fff;
  color: #000;
}
.thm-btn-cta2:hover{
  background-color: var(--conult-base);
  color: #fff;
}
.thm-btn-top:hover {
  color: var(--conult-white);
}

.thm-btn:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: -2px;
  bottom: 0;
  background-color: #fff;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: -1;
}
.thm-btn-cta:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: -2px;
  bottom: 0;
  background-color: #fff;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: -1;
}
.thm-btn-cta2:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: -2px;
  bottom: 0;
  background-color: var(--conult-base);
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: -1;
}
.thm-btn-top:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: -2px;
  bottom: 0;
  background-color: var(--conult-black);
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: -1;
}

.thm-btn:hover:after {
  transform: scale(1, 1);
  transform-origin: right center;
}
.thm-btn-cta:hover:after {
  transform: scale(1, 1);
  transform-origin: left center;
}
.thm-btn-top:hover:after {
  transform: scale(1, 1);
  transform-origin: right center;
}

.section-title {
  margin-top: 9px;
  margin-bottom: 18px;
}

.section-title__tagline {
  position: relative;
  display: inline-block;
  color: var(--conult-gray);
  font-size: 14px;
  line-height: 24px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.section-title__tagline:before {
  position: absolute;
  top: -15px;
  left: 0;
  width: 13px;
  content: "";
  height: 2px;
  background-color: var(--conult-base);
}
.offerings .section-title__tagline:before {
  position: absolute;
  top: -15px;
  left: 50%;
  width: 13px;
  content: "";
  height: 2px;
  margin-top: 10px;
  background-color: var(--conult-base);
}

.section-title__tagline:after {
  position: absolute;
  top: -15px;
  left: 17px;
  width: 13px;
  content: "";
  height: 2px;
  background-color: var(--conult-base);
}
.offerings .section-title__tagline:after {
  position: absolute;
  top: -15px;
  left: 52%;
  width: 13px;
  content: "";
  height: 2px;
  margin-top: 10px;
  background-color: var(--conult-base);
}

.section-title__title {
  margin: 0;
  font-size: 50px;
  line-height: 60px;
  font-weight: 500;
}
.section-title__title2 {
  margin: 0;
  font-size: 40px;
  line-height: 46px;
  font-weight: 500;
}
.brand-one .section-title__title{
  color: #fff;
  padding-bottom: 20px;
}
.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 {
  box-shadow: none !important;
  outline: none !important;
}

.bootstrap-select>.dropdown-toggle {
  box-shadow: none !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
  outline: none !important;
}

.bootstrap-select .dropdown-menu {
  border: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  z-index: 991;
  border-radius: 0;
}

.bootstrap-select .dropdown-menu>li+li>a {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.bootstrap-select .dropdown-menu>li.selected>a {
  background: var(--conult-primary);
  color: #fff;
}

.bootstrap-select .dropdown-menu>li>a {
  font-size: 16px;
  font-weight: 500;
  padding: 4px 20px;
  color: #ffffff;
  background: var(--conult-black);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.bootstrap-select .dropdown-menu>li>a:hover {
  background: var(--conult-primary);
  color: #fff;
  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: 9991;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  text-align: center;
}

.preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* scroll to top */
.scroll-to-top {
  display: inline-block;
  width: 45px;
  height: 45px;
  background: var(--conult-base);
  position: fixed;
  bottom: 10px;
  right: 14px;
  z-index: 99;
  text-align: center;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  display: none;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.scroll-to-top i {
  color: #ffffff;
  font-size: 18px;
  line-height: 45px;
}

.scroll-to-top:hover {
  background-color: var(--conult-black);
}

.scroll-to-top:hover i {
  color: #fff;
}

/*--------------------------------------------------------------
# Navigations One
--------------------------------------------------------------*/
.main-header {
  background: transparent;
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 999;
  transition: all 500ms ease;
}

.main-header:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  content: "";
  background-color: rgba(var(--conult-white-rgb), 0.1);
  z-index: -1;
}

.main-header__top {
  position: relative;
  display: block;
  padding: 0px 80px;
  background-color: var(--conult-black);
}

.main-header__top-inner {
  position: relative;
  display: block;
  padding: 5px 0;
}

.main-header__top-left {
  position: relative;
  display: block;
  float: left;
}

.main-header__top-address {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header__top-address li {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 35px;
}

.main-header__top-address li+li {
  margin-left: 30px;
}

.main-header__top-address li .icon span {
  font-size: 14px;
  color: var(--conult-base);
}

.main-header__top-address li .text {
  margin-left: 10px;
}

.main-header__top-address li .text p {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

.main-header__top-address li .text a {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__top-address li .text a:hover {
  color: var(--conult-white);
}

.main-header__top-right {
  position: relative;
  display: flex;
  float: right;
  align-items: center;
}

.main-header__top-right-social {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 10px 0;
}

.main-header__top-right-social a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--conult-white);
  font-size: 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header__top-right-social a:hover {
  color: var(--conult-base);
}

.main-header__top-right-social a+a {
  margin-left: 25px;
}

.main-menu {
  position: relative;
  padding: 0 80px;
  z-index: 91;
}

.main-menu-wrapper {
  position: relative;
  display: block;
}

.main-menu-wrapper__left {
  position: relative;
  display: block;
  float: left;
}

.main-menu-wrapper__logo {
  position: relative;
  float: left;
  padding-top: 36px;
  padding-bottom: 36px;
  margin-right: 145px;
}

.main-menu-wrapper__logo:before {
  position: absolute;
  top: 28px;
  bottom: 28px;
  right: -80px;
  content: "";
  background-color: rgba(var(--conult-white-rgb), 0.1);
  width: 1px;
}

.main-menu-wrapper__main-menu {
  position: relative;
  display: block;
  float: left;
}

.main-menu-wrapper__right {
  position: relative;
  display: flex;
  float: right;
  padding: 24px 0;
  align-items: center;
}

.main-menu-wrapper__call {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-wrapper__call-icon {
  position: relative;
  display: flex;
  align-items: center;
  height: 58px;
  width: 58px;
  background-color: var(--conult-base);
  border-radius: 50%;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-wrapper__call-icon:hover {
  background-color: var(--conult-white);
}

.main-menu-wrapper__call-icon span {
  font-size: 30px;
  color: var(--conult-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-wrapper__call-icon:hover span {
  color: var(--conult-base);
}

.main-menu-wrapper__call-number {
  margin-left: 20px;
}

.main-menu-wrapper__call-number h5 {
  font-size: 18px;
  line-height: 25px;
  font-weight: 700;
}

.main-menu-wrapper__call-number h5 a {
  color: var(--conult-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-wrapper__call-number a:hover {
  color: var(--conult-base);
}

.main-menu-wrapper__call-number p {
  font-size: 14px;
  margin: 0;
  line-height: 26px;
  color: #000;
}

.main-menu-wrapper__search-cat {
  position: relative;
  display: flex;
  align-items: center;
  padding: 17px 0;
  margin-right: 40px;
}

.main-menu-wrapper__search-cat:before {
  position: absolute;
  top: 4px;
  bottom: 5px;
  left: -40px;
  content: "";
  background-color: rgba(var(--conult-white-rgb), 0.1);
  width: 1px;
}

.main-menu-wrapper__search {
  font-size: 24px;
  color: var(--conult-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-wrapper__search:hover {
  color: var(--conult-base);
}

.main-menu-wrapper__cart {
  font-size: 24px;
  color: var(--conult-white);
  margin-left: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-wrapper__cart:hover {
  color: var(--conult-base);
}

.stricky-header.main-menu {
  padding: 0 80px;
  background-color: var(--conult-black);
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul,
.stricky-header .main-menu__list,
.stricky-header .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  align-items: center;
  display: none;
}

@media (min-width: 1200px) {

  .main-menu .main-menu__list,
  .main-menu .main-menu__list ul,
  .stricky-header .main-menu__list,
  .stricky-header .main-menu__list ul {
    display: flex;
  }
}

.main-menu .main-menu__list>li,
.stricky-header .main-menu__list>li {
  padding: 15px 0px;
  position: relative;
}

.main-menu .main-menu__list>li+li,
.stricky-header .main-menu__list>li+li {
  margin-left: 70px;
}

.main-menu .main-menu__list>li>a,
.stricky-header .main-menu__list>li>a {
  font-size: 16px;
  display: flex;
  align-items: center;
  color: var(--conult-white);
  position: relative;
  transition: all 500ms ease;
  font-weight: 400;
}

.main-menu .main-menu__list>li>a::before,
.stricky-header .main-menu__list>li>a::before {
  content: "";
  height: 2px;
  width: 12px;
  border-radius: 0px;
  background-color: var(--conult-base);
  position: absolute;
  bottom: 16px;
  left: -22px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: 1;
}

.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(--conult-white);
}

.main-menu .main-menu__list>li.current>a::before,
.main-menu .main-menu__list>li:hover>a::before,
.stricky-header .main-menu__list>li.current>a::before,
.stricky-header .main-menu__list>li:hover>a::before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.main-menu .main-menu__list>li.current>a::before {
  background-color: var(--conult-base);
}

.main-menu .main-menu__list>li:hover>a::before {
  background-color: var(--conult-base);
}

.main-menu .main-menu__list li ul,
.stricky-header .main-menu__list li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background-color: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: 500ms ease;
  z-index: 99;
  box-shadow: 0px 0px 65px 0px rgba(0, 0, 0, 0.1);
}

.main-menu .main-menu__list li:hover>ul,
.stricky-header .main-menu__list li:hover>ul {
  opacity: 1;
  visibility: visible;
}

.main-menu .main-menu__list li ul li,
.stricky-header .main-menu__list li ul li {
  flex: 1 1 100%;
  width: 100%;
  position: relative;
}

.main-menu .main-menu__list li ul li+li,
.stricky-header .main-menu__list li ul li+li {
  border-top: 1px solid RGBA(var(--conult-black), 0.1);
}

.main-menu .main-menu__list li ul li a,
.stricky-header .main-menu__list li ul li a {
  font-size: 15px;
  line-height: 30px;
  color: var(--conult-black);
  text-transform: capitalize;
  letter-spacing: 0;
  font-weight: 500;
  display: flex;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: 500ms;
}

.main-menu .main-menu__list li ul li:hover>a,
.stricky-header .main-menu__list li ul li:hover>a {
  background-color: var(--conult-base);
  color: var(--conult-white);
}

.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 .main-menu__list li ul li>ul ul,
.stricky-header .main-menu__list li ul li>ul ul {
  display: none;
}

.stricky-header {
  position: fixed;
  z-index: 991;
  top: 0;
  left: 0;
  background-color: #fff;
  width: 100%;
  visibility: hidden;
  transform: translateY(-120%);
  transition: transform 500ms ease, visibility 500ms ease;
  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 {
  transform: translateY(0);
  visibility: visible;
}

.stricky-header .main-menu__inner {
  box-shadow: none;
  padding-right: 0;
  max-width: 1170px;
  width: 100%;
  margin: 0 auto;
}

.mobile-nav__buttons {
  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(--conult-black);
  cursor: pointer;
}

.mobile-nav__buttons a+a {
  margin-left: 10px;
}

.mobile-nav__buttons a:hover {
  color: var(--conult-base);
}

.main-menu .mobile-nav__toggler {
  font-size: 20px;
  color: var(--conult-white);
  cursor: pointer;
  transition: 500ms;
}

.main-menu .mobile-nav__toggler:hover {
  color: var(--conult-base);
}

@media (min-width: 1200px) {
  .main-menu .mobile-nav__toggler {
    display: none;
  }
}

/*--------------------------------------------------------------
# Navigations Two
--------------------------------------------------------------*/
.main-header-two {
  position: relative;
  display: block;
}

.main-header-two__top {
  position: relative;
  display: block;
  background-color: var(--conult-base);
}

.main-header-two__top-inner {
  position: relative;
  display: block;
}

.main-header-two__top-left {
  position: relative;
  display: block;
  float: left;
  padding: 5px 0;
}

.main-header-two__top-address {
  position: relative;
  display: flex;
  align-items: center;
}

.main-header-two__top-address li {
  position: relative;
  display: flex;
  align-items: center;
  line-height: 35px;
}

.main-header-two__top-address li+li {
  margin-left: 30px;
}

.main-header-two__top-address li .icon {
  display: flex;
  align-items: center;
}

.main-header-two__top-address li .icon span {
  font-size: 14px;
  color: var(--conult-white);
}

.main-header-two__top-address li .text {
  margin-left: 10px;
}

.main-header-two__top-address li .text p {
  font-size: 14px;
  color: var(--conult-white);
  font-weight: 500;
  margin: 0;
}

.main-header-two__top-address li .text a {
  font-size: 14px;
  color: var(--conult-white);
  font-weight: 500;
  margin: 0;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__top-address li .text a:hover {
  color: var(--conult-black);
}

.main-header-two__top-right {
  position: relative;
  display: block;
  float: right;
}

.main-header-two__top-right-social {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  background-color: #000;
  padding: 15px 30px;
}

.main-header-two__top-right-social a {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--conult-white);
  font-size: 15px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-header-two__top-right-social a:hover {
  color: #ed1b24;
}

.main-header-two__top-right-social a+a {
  margin-left: 25px;
}

.main-menu-two {
  padding: 0 0 0;
}

.main-menu-two__wrapper {
  position: relative;
  display: block;
}

.main-menu-two__wrapper-left {
  position: relative;
  display: block;
  float: left;
}

.main-menu-two__wrapper-logo {
  position: relative;
  display: block;
  float: left;
  padding: 5px 0;
  margin-right: 120px;
}
.main-menu-two__wrapper-logo img{
  width: 190px !important;
}
.main-menu-two__wrapper-main-menu {
  position: relative;
  display: block;
  float: left;
}

.main-menu-two__wrapper-right {
  position: relative;
  display: block;
  float: right;
  padding: 10px 0;
}

.main-menu-two__wrapper-search-cat {
  position: relative;
  display: flex;
  align-items: center;
}
/*
.main-menu-two__wrapper-search-cat:before {
  position: absolute;
  top: -7px;
  bottom: -8px;
  left: -40px;
  content: "";
  background-color: #c9d5db;
  width: 1px;
}*/

.main-menu-two__wrapper-search {
  font-size: 24px;
  color: var(--conult-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__wrapper-search:hover {
  color: var(--conult-base);
}

.main-menu-two__wrapper-cart {
  font-size: 24px;
  color: var(--conult-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-two__wrapper-cart:hover {
  color: var(--conult-base);
}

.main-menu-two .main-menu__list>li>a,
.stricky-header .main-menu-two .main-menu__list>li>a {
  color: var(--conult-black);
}

.main-menu-two .main-menu__list>li.current>a,
.main-menu-two .main-menu__list>li:hover>a,
.stricky-header .main-menu-two .main-menu__list>li.current>a,
.stricky-header .main-menu-two .main-menu__list>li:hover>a {
  color: var(--conult-base);
}

.main-menu-two .main-menu__list>li+li,
.stricky-header .main-menu-two .main-menu__list>li+li {
  margin-left: 55px;
}

.stricky-header.main-menu-two {
  background-color: var(--conult-white);
  padding: 0 0 0;
}

/*--------------------------------------------------------------
# Navigations Three
--------------------------------------------------------------*/
.main-menu-three__wrapper {
  position: relative;
  display: block;
}

.main-menu-three__wrapper-logo {
  position: relative;
  float: left;
  padding-top: 36px;
  padding-bottom: 36px;
}

.main-menu-three__wrapper-main-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 89%;
  float: left;
}

.main-menu-three__wrapper-right {
  position: relative;
  display: block;
  float: right;
  padding: 41px 0;
}

.main-menu-three__wrapper-search-cat {
  position: relative;
  display: flex;
  align-items: center;
}

.main-menu-three__wrapper-search-cat:before {
  position: absolute;
  top: -7px;
  bottom: -8px;
  left: -40px;
  content: "";
  background-color: rgba(var(--conult-white-rgb), 0.1);
  width: 1px;
}

.main-menu-three__wrapper-search {
  font-size: 24px;
  color: var(--conult-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__wrapper-search:hover {
  color: var(--conult-base);
}

.main-menu-three__wrapper-cart {
  font-size: 24px;
  color: var(--conult-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu-three__wrapper-cart:hover {
  color: var(--conult-base);
}

.main-menu-three .main-menu__list>li.current>a::before {
  background-color: var(--conult-white);
}

.main-menu-three .main-menu__list>li:hover>a::before {
  background-color: var(--conult-white);
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes bubbleMover {
  0% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
  }

  30% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }

  50% {
    -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
    transform: translateY(50px) translateX(100px) rotate(45deg);
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
  }

  80% {
    -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
    transform: translateY(30px) translateX(50px) rotate(15deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
  }

  100% {
    -webkit-transform: translateY(0px) translateX(0) rotate(0);
    transform: translateY(0px) translateX(0) rotate(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
}

@keyframes shapeMover {

  0%,
  100% {
    transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
  }

  50% {
    transform: perspective(400px) rotate(0deg) translateZ(20px) translateY(20px) translateX(20px);
  }
}

@keyframes banner3Shake {
  0% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }

  30% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  60% {
    -webkit-transform: rotate3d(1, 0, 0, 0deg);
    transform: rotate3d(1, 0, 0, 0deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 1, 0, 0deg);
    transform: rotate3d(0, 1, 0, 0deg);
  }
}

@keyframes squareMover {

  0%,
  100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }

  20%,
  60% {
    -webkit-transform: translate(20px, 40px) rotate(180deg);
    transform: translate(20px, 40px) rotate(180deg);
  }

  30%,
  80% {
    -webkit-transform: translate(40px, 60px) rotate(0deg);
    transform: translate(40px, 60px) rotate(0deg);
  }
}

@keyframes treeMove {

  0%,
  100% {
    -webkit-transform: rotate(0deg) translateX(0);
    transform: rotate(0deg) translateX(0);
  }

  25%,
  75% {
    -webkit-transform: rotate(5deg) translateX(15px);
    transform: rotate(5deg) translateX(15px);
  }

  50% {
    -webkit-transform: rotate(10deg) translateX(30px);
    transform: rotate(10deg) translateX(30px);
  }
}

/*--------------------------------------------------------------
#     Zoom Fade Css
--------------------------------------------------------------*/
.zoom-fade {
  animation-name: zoom-fade;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;

  -webkit-animation-name: zoom-fade;
  -webkit-animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;

  -moz-animation-name: zoom-fade;
  -moz-animation-duration: 5s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;

  -ms-animation-name: zoom-fade;
  -ms-animation-duration: 5s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;

  -o-animation-name: zoom-fade;
  -o-animation-duration: 5s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}

@-webkit-keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes zoom-fade {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@-moz-keyframes service_hexagon_2 {
  0% {
    -moz-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }

  100% {
    -moz-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

@-o-keyframes service_hexagon_2 {
  0% {
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }

  100% {
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

@keyframes service_hexagon_2 {
  0% {
    -webkit-transform: rotateY(0deg);
    -moz-transform: rotateY(0deg);
    -o-transform: rotateY(0deg);
    transform: rotateY(0deg);
  }

  100% {
    -webkit-transform: rotateY(360deg);
    -moz-transform: rotateY(360deg);
    -o-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/
.mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  transform: translateX(-50%);
  transform-origin: right center;
  transition: transform 500ms ease-in, opacity 500ms linear,
    visibility 500ms ease-in;
  z-index: 999;
  visibility: hidden;
}

.mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.mobile-nav__wrapper.expanded {
  opacity: 1;
  transform: translateX(0%);
  visibility: visible;
}

.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(--conult-black);
  z-index: 10;
  position: relative;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
}

.mobile-nav__content .conult-btn {
  padding: 8px 0;
  width: 100%;
  text-align: center;
}

.mobile-nav__content .logo-box {
  margin-bottom: 40px;
  display: flex;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 15px;
  font-size: 18px;
  color: var(--conult-text-dark);
  cursor: pointer;
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav__content .main-menu__list li a {
  display: flex;
  justify-content: space-between;
  line-height: 30px;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--conult-font);
  font-weight: 500;
  height: 46px;
  align-items: center;
  transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
  color: var(--conult-secondary);
}

.mobile-nav__content .main-menu__list li a button {
  width: 30px;
  height: 30px;
  background-color: var(--conult-base);
  border: none;
  outline: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-90deg);
  transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
  transform: rotate(0deg);
  background-color: #fff;
  color: var(--conult-black);
}

.mobile-nav__content .main-menu__list li.cart-btn span {
  position: relative;
  top: auto;
  right: auto;
  transform: translate(0, 0);
}

.mobile-nav__content .main-menu__list li.cart-btn i {
  font-size: 16px;
}

.mobile-nav__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.mobile-nav__top .main-menu__login a {
  color: var(--conult-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: flex;
  align-items: center;
}

.mobile-nav__social a {
  font-size: 16px;
  color: var(--conult-white);
  transition: 500ms;
}

.mobile-nav__social a+a {
  margin-left: 30px;
}

.mobile-nav__social a:hover {
  color: var(--conult-base);
}

.mobile-nav__contact {
  margin-bottom: 0;
  margin-top: 20px;
  margin-bottom: 20px;
}

.mobile-nav__contact li {
  color: var(--conult-text-dark);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
}

.mobile-nav__contact li+li {
  margin-top: 15px;
}

.mobile-nav__contact li a {
  color: #ffffff;
  transition: 500ms;
}

.mobile-nav__contact li a:hover {
  color: var(--conult-base);
}

.mobile-nav__contact li>i {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--conult-base);
  display: flex;
  justify-content: 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;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(-110%);
  transition: transform 500ms ease, opacity 500ms ease;
}

.search-popup.active {
  transform: translateY(0%);
}

.search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--conult-black);
  opacity: 0.75;
  cursor: pointer;
}

.search-popup__content {
  width: 100%;
  max-width: 560px;
}

.search-popup__content form {
  display: flex;
  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;
}

.search-popup__content .thm-btn {
  padding: 0;
  width: 68px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  background-color: var(--conult-base);
  border: 0;
}

.search-popup__content .thm-btn:hover {
  background-color: var(--conult-black);
}

.search-popup__content .thm-btn i {
  margin: 0;
}

/*--------------------------------------------------------------
# Main Slider
--------------------------------------------------------------*/

.home-top-sec{
  padding: ;
}

.main-slider {
  overflow: hidden;
  position: relative;
}

.main-slider .swiper-slide {
  position: relative;
  background-color: #002442;

}

.main-slider .container {
  position: relative;
  padding-top: 60px;
  padding-bottom: 60px;
  z-index: 30;
}

.main-slider .image-layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  opacity: 0.3;
  background-blend-mode: luminosity;
  transition: transform 7000ms ease, opacity 1500ms ease-in;
  z-index: 1;
}

.main-slider .swiper-slide-active .image-layer {
  transform: scale(1.15);
}

.main-slider .swiper-slide-active .image-layer {
  opacity: 0.4;
}

.main-slider-shape-1 {
  position: absolute;
  top: 215px;
  left: 345px;
  z-index: 3;
}

.main-slider-shape-1 img {
  opacity: 0;
  transform: translateX(-100%);
}

.swiper-slide-active .main-slider-shape-1 img {
  opacity: 1;
  transform: translateY(0) translateX(0);
  transition: all 1000ms ease;
}

.main-slider-shape-2 {
  position: absolute;
  bottom: 270px;
  right: 170px;
  z-index: 4;
}

.main-slider-shape-2 img {
  opacity: 0;
  transform: translateX(100%);
}

.swiper-slide-active .main-slider-shape-2 img {
  opacity: 1;
  transform: translateY(0) translateX(0);
  transition: all 1000ms ease;
  transition-delay: 3000ms;
}

.main-slider-shape-3 {
  position: absolute;
  bottom: -75px;
  right: 85px;
  z-index: 3;
}

.main-slider-shape-3 img {
  opacity: 0;
  transform: translateX(100%);
}

.swiper-slide-active .main-slider-shape-3 img {
  opacity: 1;
  transform: translateY(0) translateX(0);
  transition: all 1000ms ease;
  transition-delay: 1500ms;
}

.main-slider__content {
  position: relative;
  display: block;
}

.main-slider h2 {
  margin: 0;
  margin-bottom: 24px;
  color: var(--conult-white);
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transform: translateY(120px);
  transition-delay: 1000ms;
  transition: transform 2000ms ease, opacity 2000ms ease;
  font-size: 100px;
  line-height: 100px;
  letter-spacing: -0.04em;
}

.main-slider p {
  font-size: 22px;
  color: var(--conult-white);
  margin: 0;
  line-height: 40px;
  margin-bottom: 37px;
  opacity: 0;
  transform: translateY(-120px);
  transition-delay: 2500ms;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
    background 500ms ease;
}

.main-slider .thm-btn {
  opacity: 0;
  transform: translateY(100px);
  transition-delay: 2500ms;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
    background 500ms ease;
}

.main-slider .swiper-slide-active .thm-btn,
.main-slider .swiper-slide-active p,
.main-slider .swiper-slide-active h2,
.main-slider .swiper-slide-active p {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.main-slider__nav {
  width: 100%;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  top: 54%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

.main-slider__nav .swiper-button-next,
.main-slider__nav .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 63px;
  height: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: var(--conult-white);
  background-color: transparent;
  border: 2px solid rgba(var(--conult-white-rgb), 0.3);
  border-radius: 50%;
  opacity: 0.3;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
}

.main-slider__nav .swiper-button-next:hover,
.main-slider__nav .swiper-button-prev:hover {
  opacity: 1;
  border: 2px solid rgba(var(--conult-white-rgb), 1);
}

.main-slider__nav .swiper-button-next::after,
.main-slider__nav .swiper-button-prev::after {
  display: none;
}

.main-slider__nav .swiper-button-prev {
  margin-bottom: 10px;
}

.main-slider__nav .swiper-button-prev .icon-left-arrow {
  position: relative;
  transform: rotate(180deg);
}

/*--------------------------------------------------------------
# Main Slider Two
--------------------------------------------------------------*/
.main-slider-two {
  position: relative;
  display: block;
}

.main-slider-two .container {
  padding-top: 110px;
  padding-bottom: 115px;
}

.main-slider-two .main-slider__content {
  text-align: center;
}

.main-slider-two p {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.main-slider-two h2 {
  margin-bottom: 40px;
  font-size: 60px;
  padding: 5px 90px;
}

.main-slider-two .thm-btn {
  transform: translateY(-100px);
}

.main-slider__nav-two {
  width: 100%;
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 100;
  transform: translateY(-50%) translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main-slider__nav-two .swiper-button-next,
.main-slider__nav-two .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 100;
  width: 63px;
  height: 63px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--conult-white);
  background-color: transparent;
  border: 2px solid rgba(var(--conult-white-rgb), 0.3);
  border-radius: 50%;
  opacity: 0.3;
  margin: 0;
  text-align: center;
  transition: all 500ms ease;
}

.main-slider__nav-two .swiper-button-next {
  right: -63px;
}

.main-slider__nav-two .swiper-button-prev {
  left: -63px;
}

.main-slider__nav-two .swiper-button-next:hover,
.main-slider__nav-two .swiper-button-prev:hover {
  opacity: 1;
  border: 2px solid rgba(var(--conult-white-rgb), 1);
}

.main-slider__nav-two .swiper-button-next::after,
.main-slider__nav-two .swiper-button-prev::after {
  display: none;
}

.main-slider__nav-two .swiper-button-prev .icon-left-arrow {
  position: relative;
  transform: rotate(180deg);
}

/*--------------------------------------------------------------
# Main Slider Three
--------------------------------------------------------------*/
.main-slider-three {
  position: relative;
  display: block;
}

.main-slider-three-shape {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.main-slider-three-shape img {
  opacity: 0;
  transform: translateX(-100%);
  transition-delay: 2500ms;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
    background 500ms ease;
}

.swiper-slide-active .main-slider-three-shape img {
  visibility: visible;
  opacity: 0.9;
  transform: translateY(0) translateX(0);
}

.main-slider-three .container {
  padding-top: 309px;
  padding-bottom: 215px;
}

.main-slider-three h2 {
  font-size: 70px;
  line-height: 80px;
  margin-bottom: 25px;
  transform: translateY(120px);
}

.main-slider-three p {
  font-size: 18px;
  font-weight: 500;
  line-height: 34px;
  margin-bottom: 39px;
  transform: translateY(-120px);
}

.main-slider-three .thm-btn {
  opacity: 1;
  transform: translateY(0px);
}

.main-slider-three__bottom {
  position: relative;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(100px);
  transition-delay: 2500ms;
  transition: transform 2000ms ease, opacity 2000ms ease, color 500ms ease,
    background 500ms ease;
}

.swiper-slide-active .main-slider-three__bottom {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) translateX(0);
}

.main-slider-three__video {
  display: flex;
  align-items: center;
  margin-left: 30px;
}

.main-slider-three__btn {
  background-color: var(--conult-black);
}

.main-slider-three__btn:hover {
  color: var(--conult-base);
}

.main-slider-three__btn:after {
  background-color: var(--conult-white);
}

.main-slider-three__video-link {
  display: flex;
  align-items: center;
}

.main-slider-three__video-icon {
  height: 63px;
  width: 63px;
  background-color: var(--conult-white);
  font-size: 15px;
  color: var(--conult-black);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-slider-three__video-icon:hover {
  background-color: var(--conult-black);
  color: var(--conult-white);
}

.main-slider-three__video-text {
  font-size: 18px;
  color: var(--conult-white);
  font-family: var(--conult-reey-font);
  line-height: 28px;
  margin-left: 15px;
}

/***
=============================================
    Float Bob X Animation Css
=============================================
***/
@-webkit-keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

@keyframes float-bob-x {
  0% {
    transform: translateX(-30px);
  }

  50% {
    transform: translateX(-10px);
  }

  100% {
    transform: translateX(-30px);
  }
}

.float-bob-x {
  -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;
}

/*--------------------------------------------------------------
# Feature One
--------------------------------------------------------------*/
.feature-one {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.feature-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  z-index: 1;
}

.feature-one__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.feature-one__img {
  position: relative;
  display: block;
}

.feature-one__img img {
  width: 100%;
}

.feature-one__icon-box {
  position: relative;
  display: flex;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 30px 0px rgb(0, 0, 0, 0.06);
  padding: 29px 40px;
  align-items: center;
  justify-content: space-between;
  margin-top: -40px;
  margin-left: 20px;
  margin-right: 20px;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
}

.feature-one__single:hover .feature-one__icon-box {
  box-shadow: 0px 0px 30px 0px rgb(0, 0, 0, 0);
}

.feature-one__icon-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.feature-one__icon-title a {
  color: #041b52;
}

.feature-one__icon {
  position: relative;
  display: flex;
  align-items: center;
}

.feature-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 62px;
  color: var(--conult-base);
}

.feature-one__icon span::after {
  content: "";
  width: 38px;
  height: 38px;
  background-color: #edf3f6;
  position: absolute;
  top: -1px;
  left: -18px;
}

.feature-one__icon span::before {
  position: relative;
  z-index: 1;
}

.feature-one__hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  padding: 0 60px;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
}

.feature-one__single:hover .feature-one__hover {
  transform: scaleY(1);
}

.feature-one__hover:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--conult-black-rgb), 0.8);
  z-index: 1;
}

.feature-one__hover-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.feature-one__hover-icon {
  position: relative;
  display: inline-block;
  z-index: 2;
}

.feature-one__hover-icon span {
  position: relative;
  display: inline-block;
  font-size: 62px;
  color: var(--conult-white);
}

.feature-one__hover-title {
  position: relative;
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-top: 19px;
  margin-bottom: 19px;
  z-index: 2;
}

.feature-one__hover-title a {
  color: var(--conult-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-one__hover-title a:hover {
  color: var(--conult-base);
}

.feature-one__hover-text {
  position: relative;
  display: block;
  z-index: 2;
  font-size: 16px;
  font-weight: 500;
  color: var(--conult-white);
  line-height: 30px;
  margin: 0;
}

/*--------------------------------------------------------------
# About One
--------------------------------------------------------------*/
.about-one {
  position: relative;
  display: block;
  padding: 80px 30px;
}

.about-one__left {
  position: relative;
  display: block;
}

.about-one__img {
  position: relative;
  display: block;
  z-index: 2;
}

.about-one__img img {
  width: 100%;
}

.about-one__shape {
  position: absolute;
  top: -6px;
  left: -70px;
}

.about-one__shape img {
  opacity: 0.2;
  -webkit-animation-name: shapeMover;
  animation-name: shapeMover;
  -webkit-animation-duration: 9s;
  animation-duration: 9s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.about-one__right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.about-one__right .section-title {
  margin-bottom: 31px;
}

.about-one__business-start {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__business-start-icon {
  display: flex;
  align-items: center;
}

.about-one__business-start-icon span {
  font-size: 62px;
  color: var(--conult-base);
  position: relative;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0.1s;
  transform: scale(1);
}

.about-one__business-start:hover .about-one__business-start-icon span {
  transform: scale(0.9);
}

.about-one__business-start-text {
  font-size: 24px;
  font-weight: 500;
  color: var(--conult-black);
  line-height: 36px;
  letter-spacing: -0.02em;
  margin: 0;
  padding-left: 20px;
}

.about-one__points-box {
  position: relative;
  display: block;
  overflow: hidden;
  padding-top: 34px;
  padding-bottom: 27px;
}

.about-one__points {
  position: relative;
  display: block;
  float: left;
  margin-right: 68px;
}

.about-one__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.about-one__points li .icon {
  position: relative;
  height: 14px;
  width: 14px;
  background-color: var(--conult-base);
  border-radius: 50%;
  font-size: 8px;
  color: var(--conult-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-one__points li .text {
  margin-left: 10px;
}

.about-one__points li .text p {
  color: var(--conult-black);
  font-weight: 500;
  margin: 0;
}

.about-one__points-two {
  margin-right: 0;
}

.about-one__right-text {
  margin: 0;
}

.about-one__bottom {
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 39px;
}

.about-one__contact {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 20px;
}

.about-one__contact-icon {
  height: 63px;
  width: 63px;
  background-color: #edf3f6;
  border-radius: 50%;
  color: var(--conult-base);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-one__contact-icon:hover {
  background-color: var(--conult-base);
  color: var(--conult-white);
}

.about-one__contact-phone {
  margin-left: 10px;
}

.about-one__contact-text {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  line-height: 16px;
}

.about-one__contact-phone a {
  font-weight: 700;
  color: var(--conult-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.about-one__contact-phone a:hover {
  color: var(--conult-base);
}

/*--------------------------------------------------------------
# Our Mission
--------------------------------------------------------------*/
.our-mission {
  position: relative;
  display: block;
  padding: 80px 0 80px;
}

.our-mission-bg-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0) 70%);
  z-index: 1;
}

.our-mission-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  mix-blend-mode: normal;
  opacity: 0.3;
}

.our-mission__inner {
  position: relative;
  display: block;
  text-align: center;
  z-index: 2;
}

.our-mission__title {
  font-size: 60px;
  color: var(--conult-white);
  font-weight: 700;
  line-height: 72px;
  letter-spacing: -0.04em;
  margin-bottom: 45px;
}

.our-mission__title span {
  position: relative;
  display: inline-block;
}

.our-mission__title span:before {
  position: absolute;
  bottom: 0;
  left: -45px;
  right: -24px;
  content: "";
  background-image: url(../images/shapes/our-mission-shape.png);
  background-repeat: no-repeat;
  background-position: center;
  height: 14px;
}

/*--------------------------------------------------------------
# Building Experience
--------------------------------------------------------------*/
.building-experience {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.building-experience__top {
  position: relative;
  display: block;
}

.building-experience__top-left {
  position: relative;
  display: block;
}

.building-experience__top-right {
  position: relative;
  display: block;
  margin-top: 25px;
}

.building-experience__top-right-text {
  margin: 0;
}

.building-experience__bottom {
  position: relative;
  display: block;
}

.building-experience__bottom-content {
  position: relative;
  display: flex;
}

.building-experience__bottom-img {
  position: relative;
  display: inline-block;
}

.building-experience__progress {
  display: block;
  position: relative;
  text-align: center;
  margin-left: 65px;
}

.building-experience__progress-single {
  display: block;
  position: relative;
  text-align: center;
  border-bottom: 1px solid #c9d5db;
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.building-experience__progress-box {
  position: relative;
  display: inline-block;
}

.building-experience__progress-box canvas {
  transform: rotate(90deg);
}

.building-experience__progress-box span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  transform: translateY(-67%) translateX(-50%);
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  color: var(--conult-black);
}

.building-experience__progress h3 {
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: var(--conult-black);
  margin-top: 2px;
}

.building-experience__progress-single-last {
  border: 0;
  padding: 0;
  margin: 0;
}

.building-experience__bottom-faq {
  position: relative;
  display: block;
}

.faq-one-accrodion .accrodion {
  position: relative;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 0px;
  background-color: #edf3f6;
}

.faq-one-accrodion .accrodion.active {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
}

.faq-one-accrodion .accrodion-title {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 23px 40px 23px;
  padding-right: 27px;
  transition: all 200ms linear;
  transition-delay: 0.1s;
  border: 1px solid transparent;
}

.faq-one-accrodion .accrodion-title h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--conult-black);
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion+.accrodion {
  margin-top: 20px;
}

.faq-one-accrodion .accrodion.active .accrodion-title {
  border: 1px solid #c9d5db;
}

.faq-one-accrodion .accrodion-title h4::before {
  content: "\f106";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 17px;
  color: var(--conult-base);
  position: absolute;
  top: 50%;
  right: 0;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.faq-one-accrodion .accrodion.active .accrodion-title h4::before {
  content: "\f107";
  color: var(--conult-black);
  height: 35px;
  width: 35px;
  border-radius: 50%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.faq-one-accrodion .accrodion-content {
  position: relative;
  padding: 30px 40px 30px;
  border: 1px solid transparent;
  border-top: 0;
}

.faq-one-accrodion .accrodion.active .accrodion-content {
  border: 1px solid #c9d5db;
  border-top: 0;
}

.faq-one-accrodion .accrodion-content p {
  margin: 0;
}

/*--------------------------------------------------------------
# Case One
--------------------------------------------------------------*/
.case-one {
  position: relative;
  display: block;
  padding: 0 0 180px;
}

.case-one__container {
  position: relative;
  display: block;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.case-one .section-title__tagline:before {
  left: 52%;
  transform: translateX(-50%);
}

.case-one .section-title__tagline:after {
  right: 52%;
  left: inherit;
  transform: translateX(-50%);
}

.case-one__carousel {
  position: relative;
  display: block;
}

.case-one__single {
  position: relative;
  display: block;
  overflow: hidden;
  z-index: 1;
}

.case-one__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.case-one__img {
  position: relative;
  display: block;
  z-index: 1;
}

.case-one__img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--conult-base-rgb), 0.9);
  overflow: hidden;
  -webkit-transition: all 700ms ease;
  -ms-transition: all 700ms ease;
  -o-transition: all 700ms ease;
  transition: all 700ms ease;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 2;
}

.case-one__single:hover .case-one__img:before {
  opacity: 1;
  -webkit-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  -moz-transform: translateY(0%);
  transform: translateY(0%);
}

.case-one__img img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.case-one__single:hover .case-one__img img {
  transform: scale(1.05);
}

.case-one__content {
  position: absolute;
  bottom: 40px;
  left: 50px;
  opacity: 1;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.case-one__single:hover .case-one__content {
  opacity: 0;
  visibility: hidden;
}

.case-one__tagline-line {
  font-size: 12px;
  color: var(--conult-white);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0;
  line-height: 29px;
}

.case-one__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.case-one__title a {
  color: var(--conult-white);
}

.case-one__icon {
  margin-top: 23px;
}

.case-one__icon a {
  height: 55px;
  width: 55px;
  color: var(--conult-white);
  font-size: 20px;
  background-color: rgba(var(--conult-white-rgb), 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.case-one__hover {
  position: absolute;
  bottom: 50px;
  left: 50px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
  -ms-transform: translateY(50px);
  transform: translateY(50px);
  z-index: 3;
}

.case-one__single:hover .case-one__hover {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: all 500ms ease 500ms;
  -webkit-transition: all 500ms ease 500ms;
  -ms-transition: all 500ms ease 500ms;
  -o-transition: all 500ms ease 500ms;
}

.case-one__hover-tagline-line {
  font-size: 12px;
  color: var(--conult-white);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin: 0;
  line-height: 29px;
}

.case-one__hover-title {
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.case-one__hover-title a {
  color: var(--conult-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.case-one__hover-title a:hover {
  color: var(--conult-black);
}

.case-one__hover-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--conult-white);
  line-height: 30px;
  margin: 0;
  padding: 24px;
}

.case-one__hover-icon a {
  height: 55px;
  width: 55px;
  color: var(--conult-base);
  font-size: 20px;
  background-color: var(--conult-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.case-one__hover-icon a:hover {
  color: var(--conult-white);
  background-color: var(--conult-black);
}

.case-one__carousel.owl-carousel .owl-dots {
  position: absolute;
  bottom: -71px;
  right: 0px;
  left: 0;
  margin: 0 !important;
}

.case-one__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 3px;
  height: 10px;
  background: #c9d5db;
  opacity: 0.4;
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.case-one__carousel.owl-carousel .owl-dot.active {
  background: var(--conult-base);
  opacity: 1;
  height: 20px;
}

.case-one__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.case-one__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# CTA One
--------------------------------------------------------------*/
.cta-one {
  position: relative;
  display: block;
  background-color: var(--conult-base);
  overflow: hidden;
}

.cta-one__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 111px 0 119px;
}

.cta-one__title {
  position: relative;
  font-size: 40px;
  color: var(--conult-white);
  font-weight: 700;
  line-height: 48px;
  z-index: 2;
}

.cta-one__btn {
  background-color: var(--conult-white);
  color: var(--conult-black);
}

.cta-one__shape {
  position: absolute;
  top: -122px;
  left: -257px;
  bottom: 0;
  opacity: 0.1;
}

.cta-two {
  position: relative;
  display: block;
}

.cta-two .cta-one__inner {
  padding-bottom: 239px;
}

/*--------------------------------------------------------------
# Testimonial One
--------------------------------------------------------------*/
.testimonial-one {
  position: relative;
  display: block;
  background-color: #edf3f6;
  padding: 120px 0 494px;
  z-index: 1;
}

.testimonial-one-map {
  position: absolute;
  top: 0;
  left: 50%;
  right: 0;
  width: 1170px;
  height: 566px;
  transform: translateX(-50%);
  opacity: 0.04;
  z-index: -1;
}

.testimonial-one .section-title__tagline:before {
  left: 52%;
  transform: translateX(-50%);
}

.testimonial-one .section-title__tagline:after {
  right: 52%;
  left: inherit;
  transform: translateX(-50%);
}

.testimonial-one__carousel {
  position: relative;
  display: block;
}

.testimonial-one__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
  padding: 30px;
  height: 370px;
}

.testimonial-one__single:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--conult-base);
  height: 2px;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
}

.testimonial-one__single:hover:before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.testimonial-one__rating {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  padding-bottom: 18px;
}

.testimonial-one__rating i {
  font-size: 15px;
  color: var(--conult-base);
}

.testimonial-one__rating i+i {
  margin-left: 5px;
}

.testimonial-one__text {
  font-size: 18px;
  margin: 0;
  line-height: 38px;
}

.testimonial-one__author {
  position: absolute;
  bottom: -100px;
  left: 60px;
}

.testimonial-one__author-img {
  position: relative;
  display: block;
  border-radius: 50%;
}

.testimonial-one__author-img img {
  border-radius: 50%;
  border: 2px solid transparent;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  width: 80px !important;
}

.testimonial-one__single:hover .testimonial-one__author-img img {
  border: 2px solid var(--conult-base);
}

.testimonial-one__author-name {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  margin-top: 12px;
}

.testimonial-one__author-title {
  font-size: 16px;
  margin: 0;
  line-height: 24px;
}

.testimonial-one__quote-icon {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.testimonial-one__carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
  padding: 0 0 0;
}

.testimonial-one__carousel .owl-stage-outer .owl-item {
  opacity: 0;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.testimonial-one__carousel .owl-stage-outer .owl-item.active {
  opacity: 1;
  transition: all 200ms linear;
}

/*--------------------------------------------------------------
# Counter One
--------------------------------------------------------------*/
.counter-one {
  position: relative;
  display: block;
  margin-top: -281px;
  z-index: 1;
}

.counter-one-wrap {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 1410px;
  width: 100%;
  background-color: var(--conult-black);
  overflow: hidden;
  z-index: 1;
}

.counter-one-shape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  opacity: 0.04;
}

.counter-one-img {
  position: absolute;
  top: 60px;
  right: 0;
}

.counter-one-shape-2 {
  position: absolute;
  bottom: -60px;
  right: 45px;
}

.counter-one-shape-2 img {
  -webkit-animation: animation1 5s ease-in infinite;
  animation: animation1 5s ease-in infinite;
}

.counter-one-shape-3 {
  position: absolute;
  bottom: 195px;
  right: 110px;
  -webkit-animation-name: squareMover;
  animation-name: squareMover;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-perspective: 100px;
  perspective: 100px;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.counter-one__top {
  position: relative;
  display: block;
  padding-top: 109px;
}

.counter-one__top-title {
  font-size: 50px;
  color: var(--conult-white);
  line-height: 60px;
  font-weight: 500;
}

.counter-one__bottom {
  position: relative;
  display: block;
  padding: 20px 0 90px;
}

.counter-one__list {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.counter-one__single {
  position: relative;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.counter-one__icon {
  position: relative;
  background-color: #002442;
  height: 125px;
  width: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.counter-one__icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--conult-white);
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: -1;
}

.counter-one__single:hover .counter-one__icon:before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.counter-one__icon span {
  position: relative;
  display: inline-block;
  color: var(--conult-white);
  font-size: 66px;
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.counter-one__single:hover .counter-one__icon span {
  transform: rotateY(360deg);
  color: var(--conult-base);
}

.counter-one__content {
  margin-left: 30px;
}

.counter-one__content h3 {
  font-size: 40px;
  color: var(--conult-white);
  font-weight: 700;
  font-family: var(--conult-font) !important;
  line-height: 50px !important;
}

.counter-one__text {
  color: #fff;
  margin: 0;
}

/*--------------------------------------------------------------
# News One
--------------------------------------------------------------*/
.news-one {
  position: relative;
  display: block;
  padding: 120px 0 180px;
}

.news-one__container {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 1600px;
  padding: 0 15px;
  width: 100%;
}

.news-one .section-title__tagline:before {
  left: 52%;
  transform: translateX(-50%);
}

.news-one .section-title__tagline:after {
  right: 52%;
  left: inherit;
  transform: translateX(-50%);
}

.news-one__carousel {
  position: relative;
  display: block;
}

.news-one__carousel .owl-stage-outer {
  overflow: visible;
}

.news-one__carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  transition: all 500ms ease;
}

.news-one__carousel .owl-item.active {
  opacity: 1;
  visibility: visible;
}

.news-one__single {
  position: relative;
  display: block;
}

.news-one__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.news-one__img img {
  width: 100%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__single:hover .news-one__img img {
  transform: scale(1.05);
}

.news-one__img>a {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(var(--conult-black-rgb), 0.3);
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--conult-base);
  transition: opacity 500ms ease, visibility 500ms ease, transform 500ms ease;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-30%);
}

.news-one__img>a>span {
  position: relative;
}

.news-one__img>a>span::before {
  content: "";
  width: 20px;
  height: 2px;
  background-color: var(--conult-base);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 500ms ease;
}

.news-one__img>a>span::after {
  content: "";
  transition: all 500ms ease;
  width: 2px;
  height: 20px;
  background-color: var(--conult-base);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.news-one__img>a:hover>span::before,
.news-one__img>a:hover>span::after {
  background-color: var(--conult-white);
}

.news-one__single:hover .news-one__img>a {
  visibility: visible;
  transform: translateY(0%);
  opacity: 1;
}

.news-one__date {
  position: absolute;
  left: 50px;
  bottom: 0;
  background-color: var(--conult-base);
  padding: 0 20px;
}

.news-one__date p {
  font-size: 10px;
  color: var(--conult-white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.news-one__content {
  position: relative;
  display: block;
  background-color: #edf3f6;
  padding: 20px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__single:hover .news-one__content {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.05);
}

.news-one__meta {
  display: flex;
  align-items: center;
}

.news-one__meta li+li {
  margin-left: 10px;
}

.news-one__meta li a {
  font-size: 14px;
  color: #7b848b;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__meta li a:hover {
  color: var(--conult-base);
}

.news-one__meta li a i {
  color: var(--conult-base);
}

.news-one__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 34px;
  margin-top: 5px;
  margin-bottom: 12px;
  height:150px;
}

.news-one__title a {
  color: var(--conult-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__single:hover .news-one__title a {
  color: var(--conult-base);
}

.news-one__text {
  font-size: 16px;
  color: #7a838b;
  margin: 0;
  line-height: 30px;
}

.news-one__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #cbd7dd;
  padding-top: 7px;
  margin-top: 30px;
}

.news-one__btn {
  font-size: 12px;
  color: var(--conult-black);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__single:hover .news-one__btn {
  color: var(--conult-base);
}

.news-one__arrow {
  font-size: 18px;
  color: var(--conult-black);
  display: flex;
  align-items: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-one__single:hover .news-one__arrow {
  color: var(--conult-base);
}

.news-one__carousel.owl-carousel .owl-dots {
  position: absolute;
  bottom: -71px;
  right: 0px;
  left: 0;
  margin: 0 !important;
}

.news-one__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 3px;
  height: 10px;
  background: #c9d5db;
  opacity: 0.4;
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.news-one__carousel.owl-carousel .owl-dot.active {
  background: var(--conult-base);
  opacity: 1;
  height: 20px;
}

.news-one__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.news-one__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Brand One
--------------------------------------------------------------*/
.brand-one {
  position: relative;
  display: block;
  padding: 60px 0px;
  border-top: 1px solid #fff;
  background: url(/images/black-bg.jpg);
  background-size: cover;
}
.client-bg{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.overlay {
  padding: 60px 0px;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
} 
.brand-one .swiper-slide {
  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;

}

.brand-one .swiper-slide img {
  -webkit-transition: 500ms;
  transition: 500ms;
  opacity: 1;
  max-width: 100%;
}

.brand-one .swiper-slide img:hover {
  opacity: 1;
  -webkit-filter: none;
}

/*--------------------------------------------------------------
# Site Footer
--------------------------------------------------------------*/
.site-footer {
  position: relative;
  display: block;
  background-color: #000;
}

.site-footer__top {
  position: relative;
  display: block;
  padding-top: 30px;
}

.site-footer__top-left {
  position: relative;
  display: block;
}

.site-footer__top-logo-content {
  position: relative;
  display: block;
  align-items: flex-start;
}

.site-footer__top-logo-content>a {
  position: relative;
  display: block;
  align-items: center;
}

.site-footer__top-text {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 30px;
  margin-left: 55px;
}

.site-footer__top-newsletter {
  position: relative;
  display: block;
  background-color: #000;
  padding: 25px;
  margin-top: 20px;
}

.site-footer__top-newsletter-title {
  font-size: 16px;
  font-weight: 500;
  color: var(--conult-white);
  line-height: 26px;
  margin-bottom: 22px;
}

.site-footer__top-newsletter-form {
  position: relative;
  display: block;
}

.site-footer__top-newsletter-input-box {
  position: relative;
  display: block;
}

.site-footer__top-newsletter-input-box input[type="email"] {
  height: 46px;
  width: 100%;
  background-color: transparent;
  border: 1px solid #1a3a55;
  outline: none;
  color: #b9b9b9;
  font-size: 14px;
  padding-left: 20px;
  padding-right: 85px;
}

.site-footer__top-newsletter-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0;
  background-color: var(--conult-base);
  border: 0;
  transition: all 500ms ease;
  padding: 0;
  font-size: 14px;
  color: var(--conult-white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer__top-newsletter-btn:hover {
  background-color: var(--conult-white);
  color: var(--conult-base);
}

.site-footer__top-right {
  position: relative;
  display: block;
}

.site-footer__top-widget-box {
  position: relative;
  display: block;
}

.footer-widget__explore {
  position: relative;
  display: block;
}

.footer-widget__title {
  font-size: 20px;
  font-weight: 700;
  color: #e81a23;
  line-height: 30px;
  margin-bottom: 15px;
}

.footer-widget__explore-list {
  position: relative;
  display: block;
}

.footer-widget__explore-list li a {
  position: relative;
  display: inline-block;
  font-size: 17px;
  color: #fff;
  line-height: 44px;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__explore-list li a:hover {
  color: #ED1B24;
}

.footer-widget__explore-list li a:before {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  content: "";
  height: 1px;
  background-color: #000;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
}

.footer-widget__explore-list li a:hover:before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.footer-widget__links {
  position: relative;
  display: block;
  margin-right: -50px;
  margin-left: 30px;
}

.footer-widget__links-list {
  position: relative;
  display: block;
}

.footer-widget__links-list li a {
  position: relative;
  display: inline-block;
  font-size: 14px;
  color: #000;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__links-list li a:hover {
  color: #ed1b24;
}

.footer-widget__links-list li a:before {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  content: "";
  height: 1px;
  background-color: #000;
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
}

.footer-widget__links-list li a:hover:before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.footer-widget__contact {
  position: relative;
  display: block;
  margin-left: 89px;
}

.footer-widget__contact>a {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.footer-widget__contact>a:hover {
  color: #ED1C25;
}

.footer-widget__contact-text {
  font-size: 14px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

.site-footer__top-contact-details {
  position: relative;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(var(--conult-white-rgb), 0.1);
  margin-top: 18px;
}

.site-footer__top-right-social {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.site-footer__top-right-social a {
  position: relative;
  height: 47px;
  width: 47px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--conult-black);
  font-size: 15px;
  background-color: var(--conult-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.site-footer__top-right-social a:hover {
  color: var(--conult-white);
}

.site-footer__top-right-social a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--conult-base);
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: -1;
}

.site-footer__top-right-social a:hover:before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.site-footer__top-right-social a+a {
  margin-left: 15px;
}

.site-footer__top-right-phone {
  margin-left: 97px;
}

.site-footer__top-right-phone-tagline {
  margin: 0;
  color: #fff;
  font-weight: 500;
  line-height: 31px;
}

.site-footer__top-right-phone>a {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__top-right-phone>a:hover {
  color: #E81A23;
}

.site-footer__bottom {
  position: relative;
  display: block;
  text-align: center;
  border-top: 2px solid #E81A23;
  padding: 10px 0;
  margin-top: 12px;
}

.site-footer__bottom-text {
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
  line-height: 30px;
  margin: 0;
}

.site-footer__bottom-text a {
  color: #ffffff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.site-footer__bottom-text a:hover {
  color: var(--conult-white);
}

/*--------------------------------------------------------------
# Feature Two
--------------------------------------------------------------*/
.feature-two {
  position: relative;
  display: block;
  padding: 60px 0px;
}

.feature-two__top {
  position: relative;
  display: block;
  background-color: var(--conult-black);
  padding: 90px 0 156px;
}

.feature-two__top-inner {
  position: relative;
  display: block;
  text-align: center;
}

.feature-two__top-text {
  color: #fff;
  margin: 0;
}

.feature-two__top-text a {
  color: var(--conult-white);
  font-weight: 700;
  position: relative;
  display: inline-block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__top-text a:hover {
  color: var(--conult-base);
}

.feature-two__top-text a:before {
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--conult-base);
  height: 2px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__bottom {
  position: relative;
  display: block;
  padding-bottom: 12px;
}

.feature-two__single {
  position: relative;
  display: flex;
  align-items: center;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgb(0 0 0 / 7%);
  padding: 20px;
  margin-bottom: 30px;
  z-index: 1;
  height: 100%;
  min-height: 196px;
}

.feature-two__single:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--conult-base);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.feature-two__single:hover:before {
  transform: scaleY(1);
}

.feature-two__icon {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1;
}


.feature-two__single:hover .feature-two__icon:before {
  background-color: #016bae;
}

.feature-two__icon span {
  font-size: 62px;
  color: var(--conult-base);
  position: relative;
  display: inline-block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__single:hover .feature-two__icon span {
  color: var(--conult-white);
}

.feature-two__content {
  margin-left: 20px;
}

.feature-two__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 3px;
}

.feature-two__title a {
  color: var(--conult-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__single:hover .feature-two__title a {
  color: var(--conult-white);
}

.feature-two__text {
  font-size: 16px;
  margin: 0;
  line-height: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-two__single:hover .feature-two__text {
  color: var(--conult-white);
}

/*--------------------------------------------------------------
# Work Together
--------------------------------------------------------------*/
.work-together {
  position: relative;
  display: block;
  padding: 60px 60px;
}

.work-together__left {
  position: relative;
  display: block;
}

.work-together__img-box {
  position: relative;
  display: block;
  z-index: 1;
}

.work-together__img-box:before {
  position: absolute;
  top: -50px;
  right: 131px;
  width: 175px;
  height: 161px;
  border: 5px solid var(--conult-base);
  content: "";
  z-index: -1;
}

.work-together__img-box:after {
  position: absolute;
  bottom: -107px;
  left: 134px;
  width: 6px;
  height: 78px;
  background-color: var(--conult-base);
  content: "";
  z-index: -1;
}

.work-together__img-1 {
  position: relative;
  display: block;
}

.work-together__img-1>img {
  width: 400;
}

.work-together__img-2 {
  position: absolute;
  top: 100px;
  right: 31px;
}

.work-together__img-2>img {
  width: 500px;
}

.work-together__right {
  position: relative;
  display: block;
  margin-left: 32px;
}

.work-together__right .section-title {
  margin-bottom: 26px;
}

.work-together__right-text {
  margin: 0;
}

.work-together__points {
  position: relative;
  display: block;
  margin-top: 30px;
  margin-bottom: 48px;
}

.work-together__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.work-together__points li+li {
  margin-top: 4px;
}

.work-together__points li .icon {
  position: relative;
  height: 14px;
  width: 14px;
  background-color: var(--conult-base);
  border-radius: 50%;
  font-size: 8px;
  color: var(--conult-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-together__points li .text {
  margin-left: 20px;
}

.work-together__points li .text p {
  color: var(--conult-black);
  font-weight: 500;
  margin: 0;
}

.work-together__person {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 7px;
}

.work-together__person-img {
  position: relative;
  display: inline-block;
  border-radius: 50%;
}

.work-together__person-img>img {
  border-radius: 50%;
}

.work-together__person-img:before {
  position: absolute;
  top: -7px;
  bottom: -7px;
  left: -7px;
  right: -7px;
  border: 2px solid var(--conult-base);
  content: "";
  border-radius: 50%;
}

.work-together__person-name {
  font-size: 24px;
  line-height: 34px;
  font-family: var(--conult-reey-font);
  color: var(--conult-base);
  margin-left: 22px;
}

/*--------------------------------------------------------------
# Services One
--------------------------------------------------------------*/
.services-one {
  position: relative;
  display: block;
  background: url(/images/black-bg.jpg);
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 160px;
}

.services-one .section-title__tagline:before {
  left: 52%;
  transform: translateX(-50%);
}

.services-one .section-title__tagline:after {
  right: 52%;
  left: inherit;
  transform: translateX(-50%);
}

.services-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  z-index: 2;
}

.services-one__img-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
padding: 10px 20px;
background:url(/images/7082673_23964.jpg);
background-repeat: no-repeat;
background-position:bottom;
background-size: cover;
box-shadow: 0px -2px 10px rgba(255, 255, 255, 0.5);
border-radius: 12px;
height: 90px;
}

.services-one__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.services-one__img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--conult-black-rgb), 0.3);
  opacity: 1;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: perspective(400px) rotateX(-90deg) scale(0.2);
  -ms-transform: perspective(400px) rotateX(-90deg) scale(0.2);
  transform: perspective(400px) rotateX(-90deg) scale(0.2);
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
  z-index: 1;
}

.services-one__single:hover .services-one__img:before {
  opacity: 1;
  -webkit-transform: perspective(400px) rotateX(0deg) scale(1);
  -ms-transform: perspective(400px) rotateX(0deg) scale(1);
  transform: perspective(400px) rotateX(0deg) scale(1);
}

.services-one__img img {
  width: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.services-one__single:hover .services-one__img img {
  transform: scale(1.1) rotate(2deg);
}

.services-one__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__single:hover .services-one__icon {
  bottom: 0;
}

.services-one__icon span {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: var(--conult-white);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.services-one__single:hover .services-one__icon span {
  transform: rotateY(360deg);
}

.services-one__content {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.07);
  padding: 12px;
  position: relative;
  z-index: -1;
border-radius:12px;
}

.services-one__title {
  width: 70% !important;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
}

.services-one__title a {
  color: #ffffff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}



.services-one__text {
  font-size: 16px;
  margin: 0;
  color: #000;
  line-height: 30px;
  text-align: justify;
}

.services-one__bottom {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #cdd8dd;
  padding-top: 7px;
  margin-top: 20px;
  background-color: #000;
  padding: 10px 20px;
  border-radius: 10px;
  z-index: 2;
}
.services-one__bottom:hover{
  background: url(/images/7082673_23964.jpg);
  background-size: cover;
  background-position: bottom;
}
.services-one__btn {
  font-size: 12px;
  color: var(--conult-black);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__arrow {
  font-size: 18px;
  color: var(--conult-black);
  display: flex;
  align-items: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-one__single:hover .services-one__arrow {
  color: var(--conult-base);
}

/*--------------------------------------------------------------
# Testimonial Two
--------------------------------------------------------------*/
.testimonial-two {
  position: relative;
  display: block;
  background: url(/images/workflow-bg.jpg);
  background-size: cover;
}

.testimonial-two__container {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  padding: 70px 0 50px;
  overflow: hidden;
}

.testimonial-two-bg-box {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--conult-black);
  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;
  z-index: 1;
  mix-blend-mode: luminosity;
  opacity: 0.05;
}

.testimonial-two-big-text {
  position: absolute;
  top: 0px;
  left: 50%;
  right: 0;
  transform: translateX(-50%);
  color: var(--conult-white);
  font-size: 90px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 1;
  z-index: 2;
}

.testimonial-two-shape-1 {
  position: absolute;
  bottom: 160px;
  right: 130px;
  z-index: 3;
}

.testimonial-two-shape-1>img {
  -webkit-animation-name: squareMover;
  animation-name: squareMover;
  -webkit-animation-duration: 10s;
  animation-duration: 10s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-perspective: 100px;
  perspective: 100px;
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

.testimonial-two-shape-2 {
  position: absolute;
  bottom: -100px;
  right: 66px;
  z-index: 1;
}

.testimonial-two-shape-2>img {
  -webkit-animation: animation1 5s ease-in infinite;
  animation: animation1 5s ease-in infinite;
}

.testimonial-two__slider {
  position: relative;
  display: block;
}

#testimonials-two__thumb {
  width: 315px;
  margin-right: auto;
  margin-left: auto;
}

.testimonial-two__img-holder {
  position: relative;
  display: block;
  overflow: hidden;
  transition: all 500ms ease;
  width: 92px;
  cursor: pointer;
}

.testimonial-two__img-holder:before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(9, 50, 84, 0.5);
  content: "";
  z-index: 1;
  transition: all 500ms ease;
}

#testimonials-two__thumb .swiper-slide-thumb-active .testimonial-two__img-holder:before {
  background-color: rgba(var(--conult-base-rgb), 0);
}

.testimonial-two__img-holder>img {
  width: 92px;
  border: 8px solid rgba(var(--conult-white-rgb), 1);
  transition: all 500ms ease;
}

#testimonials-two__thumb .swiper-slide-thumb-active .testimonial-two__img-holder>img {
  border: 8px solid var(--conult-base);
}

.testimonials-two__main-content {
  position: relative;
  display: block;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  width: 100%;
}

.testimonial-two__conent-box {
  position: relative;
  display: block;
  margin-top: 36px;
}

.testimonial-two__text {
  font-size: 22px;
  color: #fff;
  font-weight: 400;
  line-height: 46px;
  margin: 0;
}

.testimonial-two__client-details {
  position: relative;
  display: flex;
  padding-top: 33px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.testimonial-two__client-name {
  font-size: 20px;
  color: #000;
  line-height: 22px;
  font-weight: 700;
}

.testimonial-two__clinet-title {
  font-size: 14px;
  color: #000000;
  font-weight: 500;
  line-height: 22px;
  margin-left: 12px;
}

/*--------------------------------------------------------------
# Case Two
--------------------------------------------------------------*/
.case-two {
  position: relative;
  display: block;
  padding: 120px 0 180px;
}

.case-two .section-title__tagline:before {
  left: 52%;
  transform: translateX(-50%);
}

.case-two .section-title__tagline:after {
  right: 52%;
  left: inherit;
  transform: translateX(-50%);
}

.case-two__carousel {
  position: relative;
  display: block;
}

.case-two .case-one__content {
  bottom: 50px;
  left: 60px;
}

.case-two .case-one__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  padding-bottom: 2px;
}

.case-two .case-one__hover-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 30px;
  padding-bottom: 2px;
}

.case-two__carousel.owl-carousel .owl-dots {
  position: absolute;
  bottom: -71px;
  right: 0px;
  left: 0;
  margin: 0 !important;
}

.case-two__carousel.owl-carousel .owl-dots .owl-dot {
  position: relative;
  display: inline-block;
  width: 3px;
  height: 10px;
  background: #c9d5db;
  opacity: 0.4;
  margin: 0px 5px;
  padding: 0px;
  transition: all 100ms linear;
  transition-delay: 0.1s;
}

.case-two__carousel.owl-carousel .owl-dot.active {
  background: var(--conult-base);
  opacity: 1;
  height: 20px;
}

.case-two__carousel.owl-carousel .owl-dot:focus {
  outline: none;
}

.case-two__carousel.owl-carousel .owl-dots .owl-dot span {
  display: none;
}

/*--------------------------------------------------------------
# Why Choose One
--------------------------------------------------------------*/
.why-choose-one {
  position: relative;
  display: block;
  background-color: #edf3f6;
  padding: 120px 0 0;
}

.why-choose-one__left {
  position: relative;
  display: block;
  margin-right: 40px;
}

.why-choose-one__img {
  position: relative;
  display: block;
}

.why-choose-one__img img {
  width: 100%;
}

.why-choose-one__video-link {
  position: absolute;
  bottom: 0;
  right: 0;
}

.why-choose-one__video-icon {
  height: 147px;
  width: 162px;
  background-color: var(--conult-base);
  font-size: 25px;
  color: var(--conult-white);
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.why-choose-one__video-icon:hover {
  background-color: var(--conult-white);
  color: var(--conult-base);
}

.why-choose-one__right {
  position: relative;
  display: block;
  margin-left: -20px;
}

.why-choose-one__right .section-title {
  margin-bottom: 27px;
}

.why-choose-one__right-text {
  margin: 0;
}

.why-choose-one__points {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 39px;
}

.why-choose-one__points li {
  position: relative;
  display: flex;
  align-items: center;
  background-color: var(--conult-white);
  padding: 13px 30px;
}

.service {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 26px 6px;
}
.service-cont {
  display: block;
  margin: 0px 20px;
}
.service-cont h3{
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  text-align: center;
}
.service-cont p {
  font-weight: 300;
}
.why-choose-one__points li+li {
  margin-left: 15px;
}

.why-choose-one__points li .icon {
  position: relative;
  padding: 6px 6px;
  background-color: var(--conult-base);
  border-radius: 50%;
  font-size: 36px;
  color: var(--conult-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-choose-one__points li .text {
  margin-left: 15px;
}

.why-choose-one__points li .text p {
  font-weight: 700;
  margin: 0;
  color: var(--conult-black);
}

.why-choose-one__progress {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 42px;
}

.why-choose-one__progress-single {
  position: relative;
  display: block;
}

.why-choose-one__progress-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--conult-black);
  margin-bottom: 6px;
}

.why-choose-one__progress .bar {
  position: relative;
  width: 100%;
  height: 13px;
  background: var(--conult-white);
  border-radius: 30px;
  margin-bottom: 13px;
}

.why-choose-one__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 13px;
  border-radius: 30px;
  background: var(--conult-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;
}

.why-choose-one__progress .count-text {
  position: absolute;
  right: 0px;
  bottom: 21px;
  color: var(--conult-gray);
  line-height: 24px;
  font-size: 16px;
  text-align: center;
  font-weight: 500;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.why-choose-one__progress .bar-inner.counted .count-text {
  opacity: 1;
}

.why-choose-one__progress .bar.marb-0 {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Brand Two
--------------------------------------------------------------*/
.brand-two {
  border-top: 0;
  border-bottom: 1px solid #c9d5db;
}

/*--------------------------------------------------------------
# News Two
--------------------------------------------------------------*/
.news-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.news-two .section-title__tagline:before {
  left: 52%;
  transform: translateX(-50%);
}

.news-two .section-title__tagline:after {
  right: 52%;
  left: inherit;
  transform: translateX(-50%);
}

.news-two .news-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# Newsletter
--------------------------------------------------------------*/
.newsletter {
  position: relative;
  display: block;
  z-index: 1;
}

.newsletter__container {
  position: relative;
  display: block;
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  background-color: var(--conult-base);
}

.newsletter__inner {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 95px 0;
}

.newsletter__inner-left {
  position: relative;
  display: block;
  float: left;
  max-width: 280px;
  width: 100%;
}

.newsletter__inner-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.newsletter__inner-icon span {
  position: relative;
  display: inline-block;
  font-size: 62px;
  color: var(--conult-white);
}

.newsletter__inner-icon-title {
  font-size: 30px;
  font-weight: 700;
  color: var(--conult-white);
  line-height: 36px;
  margin-left: 15px;
}

.newsletter__inner-right {
  position: relative;
  display: block;
  float: left;
  max-width: 890px;
  width: 100%;
  padding-left: 93px;
  padding-top: 4px;
  padding-bottom: 4px;
}

.newsletter__inner-main-form {
  position: relative;
  display: block;
}

.newsletter__inner-form {
  position: relative;
  display: flex;
  align-items: center;
}

.newsletter__inner-input-box {
  position: relative;
  display: block;
  max-width: 265px;
  width: 100%;
  margin-right: 30px;
}

.newsletter__inner-input-box input[type="text"],
.newsletter__inner-input-box input[type="email"] {
  font-size: 14px;
  font-weight: 500;
  width: 100%;
  height: 64px;
  border: none;
  outline: none;
  background-color: transparent;
  border-bottom: 2px solid var(--conult-white);
  color: var(--conult-white);
}

.newsletter__btn {
  border: none;
  background-color: var(--conult-black);
}

.newsletter__btn:hover {
  color: var(--conult-base);
}

.newsletter__btn:after {
  background-color: var(--conult-white);
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/
.google-map {
  position: relative;
  display: block;
  margin-top: 0px;
}

.google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 555px;
  width: 100%;
}

/*--------------------------------------------------------------
# Brand Three
--------------------------------------------------------------*/
.brand-three {
  position: relative;
  display: block;
  padding: 118px 0 119px;
  background-color: var(--conult-black);
}

.brand-three .swiper-slide {
  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;
}

.brand-three .swiper-slide img {
  -webkit-transition: 500ms;
  transition: 500ms;
  opacity: 0.2;
  max-width: 100%;
}

.brand-three .swiper-slide img:hover {
  opacity: 0.6;
}

/*--------------------------------------------------------------
# Real World
--------------------------------------------------------------*/
.real-world {
  position: relative;
  display: block;
  padding: 120px 0 107px;
}

.real-world__left {
  position: relative;
  display: block;
  margin-right: 70px;
}

.real-world .section-title {
  margin-bottom: 32px;
}

.real-world .section-title__title {
  font-size: 40px;
  line-height: 48px;
}

.real-world__left-text {
  font-weight: 700;
  color: var(--conult-base);
  margin: 0;
}

.real-world__points {
  position: relative;
  display: block;
  margin-top: 26px;
  margin-bottom: 36px;
}

.real-world__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.real-world__points li+li {
  margin-top: 4px;
}

.real-world__points li .icon {
  position: relative;
  height: 14px;
  width: 14px;
  background-color: var(--conult-base);
  border-radius: 50%;
  font-size: 8px;
  color: var(--conult-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.real-world__points li .text {
  margin-left: 15px;
}

.real-world__points li .text p {
  margin: 0;
}

.real-world__progress {
  position: relative;
  display: block;
  width: 100%;
}

.real-world__progress-single {
  position: relative;
  display: block;
}

.real-world__progress-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: var(--conult-black);
  margin-bottom: 9px;
}

.real-world__progress .bar {
  position: relative;
  width: 100%;
  height: 8px;
  background: #edf3f6;
  border-radius: 30px;
  margin-bottom: 13px;
}

.real-world__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 8px;
  border-radius: 30px;
  background: var(--conult-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;
}

.real-world__progress .count-text {
  position: absolute;
  right: 0px;
  bottom: 18px;
  color: var(--conult-gray);
  line-height: 24px;
  font-size: 14px;
  text-align: center;
  font-weight: 500;
  opacity: 0;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.real-world .bar-inner.counted .count-text {
  opacity: 1;
}

.real-world__middle {
  position: relative;
  display: block;
  margin-right: -30px;
}

.real-world__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.real-world__img::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: "";
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: 10;
}

.real-world__img:hover:before {
  -webkit-animation: circle 0.75s;
  animation: circle 0.75s;
}

.real-world__img img {
  width: 100%;
}

.real-world__counter-box {
  position: relative;
  display: block;
  margin-left: 70px;
}

.real-world__counter {
  position: relative;
  display: block;
}

.real-world__counter-single {
  position: relative;
  display: flex;
  align-items: center;
}

.real-world__counter-single+.real-world__counter-single {
  border-top: 1px solid #c9d5db;
  margin-top: 41px;
  padding-top: 42px;
}

.real-world__counter-content {
  position: relative;
  display: block;
  text-align: right;
}

.real-world__counter-content h3 {
  font-size: 40px;
  font-weight: 500;
  font-family: var(--conult-font) !important;
  line-height: 50px !important;
}

.real-world__counter-text {
  font-weight: 500;
  margin: 0;
  line-height: 30px;
}

.real-world__counter-icon {
  position: relative;
  height: 120px;
  width: 120px;
  background-color: #edf3f6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 25px;
  z-index: 1;
}

.real-world__counter-icon:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--conult-base);
  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;
}

.real-world__counter-single:hover .real-world__counter-icon:before {
  transform: scaleX(1);
}

.real-world__counter-icon span {
  position: relative;
  display: inline-block;
  font-size: 66px;
  color: var(--conult-base);
  transition: all 500ms linear;
  transition-delay: 0.1s;
}

.real-world__counter-single:hover .real-world__counter-icon span {
  transform: scale(0.9);
  color: var(--conult-white);
}

/*--------------------------------------------------------------
# Services Two
--------------------------------------------------------------*/
.services-two {
  position: relative;
  display: block;
  padding: 30px 0px;
  background-color: #ffffff;
  z-index: 1;
}

.services-two:before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: var(--conult-white);
  height: auto;
  z-index: -1;
}

.services-two .section-title__tagline:before {
  left: 52%;
  transform: translateX(-50%);
}

.services-two .section-title__tagline:after {
  right: 52%;
  left: inherit;
  transform: translateX(-50%);
}

.services-two__single {
  position: relative;
  display: block;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 30px 0px rgb(0, 0, 0, 0.05);
  padding: 20px 30px;
  margin-bottom: 30px;
  z-index: 1;
}

.services-two__single:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--conult-base);
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.services-two__single:hover:before {
  transform: scaleY(1);
}

.services-two_icon {
  position: relative;
  display: block;
}

.services-two_icon span {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: var(--conult-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__single:hover .services-two_icon span {
  transform: scale(0.9);
  color: var(--conult-white);
}

.services-two__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  margin-top: 12px;
  margin-bottom: 33px;
}

.services-two__title a {
  color: var(--conult-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.services-two__single div  p{
  color: #000 !important;
}
.services-two__single:hover p{
  color: #fff !important;
}

.services-two__single:hover .services-two__title a {
  color: var(--conult-white);
}

.services-two__text {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 32px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__single:hover .services-two__text {
  color: var(--conult-white);
}




.services-two__single1 {
  position: relative;
  display: block;
  background-color: #FFE6D2;
  box-shadow: 0px 10px 30px 0px rgb(0, 0, 0, 0.05);
  padding: 20px 30px;
  margin-bottom: 30px;
  z-index: 1;
}

.services-two__single1:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: #fd740a;
  border-radius: 14px;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.services-two__single1:hover:before {
  transform: scaleY(1);
}

.services-two_icon {
  position: relative;
  display: block;
}

.services-two_icon span {
  position: relative;
  display: inline-block;
  font-size: 64px;
  color: var(--conult-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__single1:hover .services-two_icon span {
  transform: scale(0.9);
  color: var(--conult-white);
}

.services-two__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 34px;
  margin-top: 12px;
  margin-bottom: 33px;
}

.services-two__title a {
  color: var(--conult-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.services-two__single1 div  p{
  color: #000 !important;
}
.services-two__single1:hover p{
  color: #fff !important;
}

.services-two__single1:hover .services-two__title a {
  color: var(--conult-white);
}

.services-two__text {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 32px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.services-two__single1:hover .services-two__text {
  color: var(--conult-white);
}
/*--------------------------------------------------------------
# We Improve
--------------------------------------------------------------*/
.we-improve {
  position: relative;
  display: block;
  background-color: var(--conult-black);
  padding: 120px 0 110px;
}

.we-improve-bg {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.we-improve-bg:before {
  position: absolute;
  top: 120px;
  left: 0;
  bottom: 120px;
  content: "";
  background-color: var(--conult-base);
  width: 13px;
}

.we-improve__inner {
  position: relative;
  display: block;
  max-width: 530px;
  width: 100%;
}

.we-improve .section-title {
  margin-bottom: 27px;
}

.we-improve .section-title__tagline {
  color: #fff;
}

.we-improve .section-title__title {
  color: var(--conult-white);
}

.we-improve__text {
  color: #fff;
  margin: 0;
}

.we-improve__funded {
  position: relative;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(var(--conult-white-rgb), 0.1);
  border-bottom: 1px solid rgba(var(--conult-white-rgb), 0.1);
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 39px;
  margin-bottom: 40px;
}

.we-improve__funded-img {
  position: relative;
  display: flex;
  align-items: center;
}

.we-improve__funded-content {
  font-size: 20px;
  color: var(--conult-white);
  margin: 0;
  line-height: 32px;
  margin-left: 30px;
}

.we-improve__funded-content span {
  font-size: 30px;
  font-weight: 700;
  color: var(--conult-base);
}

.we-improve__points {
  position: relative;
  display: flex;
  align-items: center;
}

.we-improve__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.we-improve__points li+li {
  margin-left: 85px;
}

.we-improve__points li .icon {
  position: relative;
  height: 14px;
  width: 14px;
  background-color: var(--conult-base);
  border-radius: 50%;
  font-size: 8px;
  color: var(--conult-black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.we-improve__points li .text {
  margin-left: 15px;
}

.we-improve__points li .text p {
  font-weight: 500;
  margin: 0;
}

/*--------------------------------------------------------------
# Team One
--------------------------------------------------------------*/
.team-one {
  position: relative;
  display: block;
  padding: 120px 0 245px;
  z-index: 1;
}

.team-one:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  background-color: #edf3f6;
  height: 487px;
  z-index: -1;
}

.team-one__container {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 1450px;
  width: 100%;
  padding: 0 15px;
}

.team-one .section-title__tagline:before {
  left: 52%;
  transform: translateX(-50%);
}

.team-one .section-title__tagline:after {
  right: 52%;
  left: inherit;
  transform: translateX(-50%);
}

.team-one__single {
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.team-one__img {
  position: relative;
  display: block;
  overflow: hidden;
}

.team-one__img:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(var(--conult-black-rgb), 0.3);
  width: 0%;
  transform: translateY(100%);
  transition: all 500ms ease;
  z-index: 1;
}

.team-one__single:hover .team-one__img:before {
  transform: translateY(0);
  width: 100%;
}

.team-one__img img {
  width: 100%;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.7s;
  transition-property: all;
}

.team-one__single:hover .team-one__img img {
  transform: scale(1.1) rotate(2deg);
}

.team-one__social {
  position: absolute;
  bottom: 20px;
  right: 20px;
  transform: scaleX(0);
  transform-origin: center;
  transform-style: preserve-3d;
  -webkit-transition: all 0.4s linear;
  -o-transition: all 0.4s linear;
  transition: all 0.4s linear;
  transform-origin: bottom center;
  z-index: 2;
}

.team-one__single:hover .team-one__social {
  transform: scaleX(1);
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
}

.team-one__social li+li {
  margin-top: 10px;
}

.team-one__social li a {
  position: relative;
  height: 47px;
  width: 47px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--conult-black);
  font-size: 15px;
  background-color: var(--conult-white);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.team-one__social li a:hover {
  color: var(--conult-white);
}

.team-one__social li a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--conult-base);
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: -1;
}

.team-one__social li a:hover:before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.team-one__content {
  position: relative;
  display: block;
  text-align: center;
  margin-top: 22px;
}

.team-one__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
}

.team-one__title {
  font-size: 14px;
  margin: 0;
  line-height: 26px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Feature Three
--------------------------------------------------------------*/
.feature-three {
  position: relative;
  display: block;
  margin-top: -82px;
  z-index: 2;
}

.feature-three .row {
  --bs-gutter-x: 0px;
}

.feature-three__single {
  position: relative;
  display: flex;
  min-height: 238px !important;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 10px 60px 0px rgb(0, 0, 0, 0.1);
  padding: 40px 40px 40px;
  z-index: 1;
}

.feature-three__single:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: #ed1b24;
  transition-delay: 0.1s;
  transition-timing-function: ease-in-out;
  transition-duration: 0.5s;
  transition-property: all;
  opacity: 1;
  transform-origin: top;
  transform-style: preserve-3d;
  transform: scaleY(0);
  z-index: -1;
}

.feature-three__single:hover:before {
  transform: scaleY(1);
}

.feature-three__icon {
  position: relative;
  display: inline-block;
  z-index: 1;
}


.feature-three__single:hover .feature-three__icon:before {
  background-color: #ed1b24;
}

.feature-three__icon span {
  position: relative;
  display: inline-block;
  font-size: 66px;
  color: var(--conult-base);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-three__single:hover .feature-three__icon span {
  color: var(--conult-white);
}

.feature-three__content {
  margin-left: 35px;
  margin-top: -7px;
}

.feature-three__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 13px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-three__single:hover .feature-three__title {
  color: var(--conult-white);
}

.feature-three__text {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  line-height: 30px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.feature-three__single:hover .feature-three__text {
  color: #fff;
}

/*--------------------------------------------------------------
# News Two
--------------------------------------------------------------*/
.news-three {
  position: relative;
  display: block;
  padding: 180px 0 90px;
  margin-top: -60px;
}

.news-three .section-title {
  position: relative;
  display: block;
  z-index: 5;
}

.news-three-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 637px;
  background-color: var(--conult-base);
  z-index: -1;
}

.news-three-bg:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-image: url(../images/shapes/news-three-shape.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
  opacity: 0.06;
}

.news-three .section-title__tagline {
  color: #b8e3fe;
}

.news-three .section-title__title {
  color: var(--conult-white);
}

.news-three .section-title__tagline:before {
  left: 52%;
  transform: translateX(-50%);
  background-color: var(--conult-white);
}

.news-three .section-title__tagline:after {
  right: 52%;
  left: inherit;
  transform: translateX(-50%);
  background-color: var(--conult-white);
}

.news-three .news-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
  z-index: 3;
}

/*--------------------------------------------------------------
# Contact One
--------------------------------------------------------------*/
.contact-one {
  position: relative;
  display: block;
}

.contact-one__left {
  position: relative;
  display: block;
}

.contact-one .section-title {
  margin-bottom: 28px;
}

.contact-one__text {
  margin: 0;
}

.contact-one__founder {
  font-size: 24px;
  color: var(--conult-base);
  line-height: 34px;
  font-weight: 400;
  font-family: var(--conult-reey-font);
  margin-top: 37px;
  margin-bottom: 49px;
}

.contact-one__founder span {
  font-size: 16px;
  color: var(--conult-black);
  font-family: var(--conult-font);
  font-weight: 500;
}

.contact-one__bottom {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-one__bottom-img {
  display: flex;
  align-items: center;
}

.contact-one__bottom-points {
  position: relative;
  display: block;
  margin-left: 30px;
}

.contact-one__bottom-points li {
  position: relative;
  display: flex;
  align-items: center;
}

.contact-one__bottom-points li+li {
  margin-top: 4px;
}

.contact-one__bottom-points li .icon {
  position: relative;
  height: 14px;
  width: 14px;
  background-color: var(--conult-base);
  border-radius: 50%;
  font-size: 8px;
  color: var(--conult-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-one__bottom-points li .text {
  margin-left: 15px;
}

.contact-one__bottom-points li .text p {
  color: var(--conult-black);
  font-weight: 500;
  margin: 0;
}

.contact-one__right {
  position: relative;
  display: block;
}

.contact-one__form-box {
  position: relative;
  display: block;
  padding: 60px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    z-index: 2;
    background:  linear-gradient(0deg, #f38f1e 0%, #fe8037 45%, #f55f00 100%);
}

.contact-one__form-box:before {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 4px;
  content: "";
  background-color: var(--conult-base);
}

.contact-one__form {
  position: relative;
  display: block;
}

.contact-one__form .row {
  --bs-gutter-x: 10px;
}

.contact-one__input-box {
  position: relative;
  display: block;
}

.contact-one__input-box input[type="text"],
.contact-one__input-box input[type="email"],
.contact-one__input-box textarea {
  height: 47px;
  width: 100%;
  background-color: #edf3f6;
  border: 1px solid #cbd9f5 !important;
  outline: none;
  margin-bottom: 10px;
  padding: 0 16px;
  font-size: 13px;
  color: var(--conult-gray);
  font-weight: 500;
}

.contact-one__input-box textarea {
  height: 100px;
  margin: 0;
  padding: 15px 30px;
}

.contact-one__btn {
  border: none;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  position: relative;
  display: block;
  padding: 120px;
  background-color: var(--conult-black);
  z-index: 1;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: var(--conult-black);
  background-blend-mode: luminosity;
  opacity: 0.5;
  z-index: -1;
}

.page-header__inner {
  position: relative;
  display: block;
  text-align: center;
  z-index: 15;
}

.page-header__inner h2 {
  font-size: 40px;
  color: var(--conult-white);
  line-height: 50px;
  font-weight: 700;
  margin-bottom: 7px;
}

.thm-breadcrumb {
  position: relative;
  display: block;
}

.thm-breadcrumb li {
  position: relative;
  display: inline-block;
  color: var(--conult-white);
  font-size: 16px;
  opacity: 0.7;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:before {
  position: absolute;
  top: 17px;
  left: -20px;
  content: "";
  background-color: #cfd4da;
  height: 1px;
  width: 7px;
}

.thm-breadcrumb li:first-child:before {
  display: none;
}

.thm-breadcrumb li+li {
  margin-left: 29px;
}

.thm-breadcrumb li a {
  position: relative;
  display: inline-block;
  color: var(--conult-white);
  font-size: 16px;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.thm-breadcrumb li:hover a {
  color: var(--conult-base);
}

/*--------------------------------------------------------------
# News Page
--------------------------------------------------------------*/
.news-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.news-page .news-one__single {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

/*--------------------------------------------------------------
# News Details
--------------------------------------------------------------*/
.news-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.news-details__left {
  position: relative;
  display: block;
}

.news-details__img {
  position: relative;
  display: block;
}

.news-details__img img {
  width: 100%;
}

.news-details__date-box {
  position: absolute;
  left: 50px;
  bottom: 0;
  background-color: var(--conult-base);
  padding: 0 20px;
}

.news-details__date-box p {
  font-size: 10px;
  color: var(--conult-white);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0;
}

.news-details__content {
  position: relative;
  display: block;
  margin-top: 19px;
}

.news-details__meta {
  display: flex;
  align-items: center;
}

.news-details__meta li+li {
  margin-left: 10px;
}

.news-details__meta li a {
  font-size: 14px;
  color: #7b848b;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-details__meta li a:hover {
  color: var(--conult-base);
}

.news-details__meta li a i {
  color: var(--conult-base);
}

.news-details__title {
  font-size: 30px;
  font-weight: 500;
  line-height: 40px;
  margin-bottom: 23px;
}

.news-details__text-1 {
  margin: 0;
  line-height: 36px;
}

.news-details__text-2 {
  margin: 0;
  line-height: 36px;
  padding-top: 33px;
  padding-bottom: 33px;
}

.news-details__text-3 {
  margin: 0;
  line-height: 36px;
}

.news-details__bottom {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 30px 0 30px;
  margin-top: 51px;
  border-top: 1px solid #c9d5db;
}

.news-details__bottom p {
  margin: 0;
}

.news-details__tags span {
  color: var(--conult-black);
  font-size: 18px;
  margin-right: 10px;
  font-weight: 800;
}

.news-details__tags a {
  position: relative;
  color: var(--conult-white);
  font-size: 12px;
  background-color: var(--conult-base);
  display: inline-block;
  padding: 5px 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.news-details__tags a:hover {
  background-color: var(--conult-black);
  color: var(--conult-white);
}

.news-details__tags a+a {
  margin-left: 6px;
}

.news-details__social-list {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
}

.news-details__social-list a {
  position: relative;
  height: 47px;
  width: 47px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--conult-black);
  font-size: 15px;
  background-color: #edf3f6;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.news-details__social-list a:hover {
  color: var(--conult-white);
}

.news-details__social-list a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--conult-base);
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: -1;
}

.news-details__social-list a:hover:before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.news-details__social-list a+a {
  margin-left: 15px;
}

/* author */

.author-one {
  background-color: #edf3f6;
  padding: 60px 60px 60px;
  display: -webkit-box;
  display: flex;
  margin-bottom: 44px;
}

.author-one__content {
  margin-left: 40px;
}

.author-one__content h3 {
  font-size: 24px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 25px;
}

.author-one__content p {
  margin: 0;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/

.comment-one__title,
.comment-form__title {
  margin: 0;
  color: var(--conult-black);
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 52px;
}

.comment-one__single {
  display: -webkit-box;
  display: flex;  
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.comment-one__content {
  position: relative;
  margin-left: 45px;
  padding: 20px 30px;
  background-color: #f4f4f4;
  border-radius: 8px;
}

.comment-one__content h3 {
  margin: 0;
  font-size: 20px;
  color: var(--conult-black);
  margin-bottom: 25px;
  font-weight: 700;
}

.comment-one__content p {
  font-size: 16px;
  line-height: 32px;
  margin: 0;
}

.comment-one__btn {
  font-size: 12px;
  padding: 5px 30px;
  position: absolute;
  top: 0;
  right: 0;
}

.comment-one__btn:hover {
  color: var(--conult-black);
}

.comment-one__btn:after {
  background-color: #edf3f6;
}

.comment-one__image {
  position: relative;
  display: block;
  border-radius: 50%;
}

.comment-one__image img {
  border-radius: 50%;
}

.comment-form .comment-form__title {
  margin-top: -8px;
}

.comment-form__input-box {
  position: relative;
  display: block;
}

.comment-form__input-box input[type="text"],
.comment-form__input-box input[type="email"] {
  height: 63px;
  width: 100%;
  border: none;
  background-color: #edf3f6;
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 30px;
  border-radius: 0;
  outline: none;
  font-size: 14px;
  color: var(--conult-gray);
  font-weight: 500;
  display: block;
}

.comment-form__input-box textarea {
  font-size: 14px;
  color: var(--conult-gray);
  height: 180px;
  width: 100%;
  background-color: #edf3f6;
  padding: 18px 30px 30px;
  border: none;
  border-radius: 0px;
  outline: none;
  margin-bottom: 0px;
  border-radius: 0;
  font-weight: 500;
}

.comment-form__btn {
  border: none;
  margin-top: 20px;
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

@media (max-width: 991px) {
  .sidebar {
    margin-top: 50px;
  }
}

.sidebar__single+.sidebar__single {
  margin-top: 30px;
}

.sidebar__title {
  margin: 0;
  font-size: 20px;
  margin-bottom: 4px;
  font-weight: 700;
}

.sidebar__search {
  position: relative;
  display: block;
}

.sidebar__search-form {
  position: relative;
}

.sidebar__search-form input[type="search"] {
  display: block;
  border: none;
  outline: none;
  background-color: var(--conult-base);
  color: var(--conult-white);
  font-size: 16px;
  font-weight: 500;
  padding-left: 50px;
  height: 84px;
  width: 100%;
  padding-right: 80px;
  border-radius: 0;
}

.sidebar__search-form ::-webkit-input-placeholder {
  color: var(--conult-white);
  opacity: 1;
}

.sidebar__search-form ::-moz-placeholder {
  color: var(--conult-white);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--conult-white);
  opacity: 1;
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--conult-white);
  opacity: 1;
}

.sidebar__search-form ::placeholder {
  color: var(--conult-white);
  opacity: 1;
}

.sidebar__search-form :-ms-input-placeholder {
  color: var(--conult-white);
}

.sidebar__search-form ::-ms-input-placeholder {
  color: var(--conult-white);
}

.sidebar__search-form button[type="submit"] {
  background-color: transparent;
  color: var(--conult-white);
  font-size: 22px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72px;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  padding: 0;
}

.sidebar__post {
  position: relative;
  display: block;
  padding: 45px 30px 30px;
  background-color: #edf3f6;
}

.sidebar__post .sidebar__title {
  margin-left: 20px;
}

.sidebar__post-list {
  margin: 0;
}

.sidebar__post-list li {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  padding: 17px 20px 17px;
  transition: all 500ms ease;
}

.sidebar__post-list li:hover {
  background-color: rgb(255, 255, 255);
}

.sidebar__post-list li+li {
  margin-top: 7px;
}

.sidebar__post-image {
  margin-right: 20px;
}

.sidebar__post-image>img {
  width: 70px;
}

.sidebar__post-content {
  position: relative;
}

.sidebar__post-content h3 {
  font-size: 16px;
  margin: 0;
  line-height: 26px;
}

.sidebar__post-content-meta {
  font-size: 14px;
  font-weight: 400;
  color: #7b848b !important;
  transition: all 500ms ease;
}

.sidebar__post-content-meta i {
  color: var(--conult-base);
  padding-right: 3px;
}

.sidebar__post-content h3 a {
  color: var(--conult-black);
  transition: all 500ms ease;
  margin-top: 4px;
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.sidebar__category {
  position: relative;
  display: block;
  background-color: #edf3f6;
  padding: 45px 30px 38px;
}

.sidebar__category .sidebar__title {
  padding-left: 20px;
  margin-bottom: 8px;
}

.sidebar__category-list {
  margin: 0;
}

.sidebar__category-list li+li {
  margin-top: 3px;
}

.sidebar__category-list li a {
  color: var(--conult-gray);
  font-size: 16px;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background: none;
  padding: 5px 20px;
  border-radius: var(--conult-bdr-radius);
}

.sidebar__category-list li a:hover {
  background-color: rgb(255, 255, 255);
  color: var(--conult-black);
}

.sidebar__category-list li.active a {
  background-color: rgb(255, 255, 255);
  color: var(--conult-black);
}

.sidebar__category-list li a span {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--conult-base);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.sidebar__category-list li a:hover span {
  color: var(--conult-base);
  transform: translateY(-50%) scale(1);
}

.sidebar__category-list li.active a span {
  transform: translateY(-50%) scale(1);
  color: var(--conult-base);
}

.sidebar__tags {
  position: relative;
  display: block;
  background: #edf3f6;
  padding: 45px 45px 50px;
}

.sidebar__tags .sidebar__title {
  margin-left: 5px;
  margin-bottom: 24px;
}

.sidebar__tags-list {
  margin-top: -10px;
}

.sidebar__tags-list a {
  font-size: 12px;
  color: #7b848b;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--conult-white);
  display: inline-block;
  padding: 5px 20px;
  margin-left: 5px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.sidebar__tags-list a+a {
  margin-left: 5px;
  margin-top: 10px;
}

.sidebar__tags-list a:hover {
  color: var(--conult-white) !important;
  background: var(--conult-base) !important;
}

/*--------------------------------------------------------------
# Cases Page
--------------------------------------------------------------*/
.cases-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.cases-page .case-one__single {
  margin-bottom: 30px;
}

.cases-page .case-one__content {
  bottom: 50px;
}

/*--------------------------------------------------------------
# Case Details
--------------------------------------------------------------*/
.case-single {
  position: relative;
  display: block;
  padding: 80px 0px;
}

.case-single__img-box {
  position: relative;
  display: block;
}

.case-single__img {
  position: relative;
  display: block;
}

.case-single__img img {
  width: 100%;
}

.case-single__details-box {
  position: relative;
  display: block;
  background-color: #edf3f6;
  max-width: 770px;
  width: 100%;
  padding: 40px 80px 45px;
}

.case-single__details {
  position: relative;
  display: flex;
  align-items: center;
}

.case-single__details li+li {
  margin-left: 70px;
}

.case-single__details li p {
  color: var(--conult-black);
  font-weight: 700;
  margin: 0;
  line-height: 27px;
}

.case-single__content {
  position: relative;
  display: block;
}

.case-single__content-left {
  position: relative;
  display: block;
}

.case-single__content-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 46px;
  margin-bottom: 18px;
}

.case-single__content-text-1 {
  margin: 0;
}

.case-single__content-text-2 {
  margin: 0;
  padding-top: 8px;
  padding-bottom: 8px;
}

.case-single__content-text-3 {
  margin: 0;
}

.case-single__content-right {
  position: relative;
  display: block;
}

.case-single__content-text-4 {
  margin: 0;
}

.case-single__content-points {
  position: relative;
  display: block;
  margin-top: 34px;
}

.case-single__content-points li {
  position: relative;
  display: flex;
  align-items: center;
}

.case-single__content-points li+li {
  margin-top: 6px;
}

.case-single__content-points li .icon {
  height: 15px;
  width: 15px;
  background-color: var(--conult-base);
  color: var(--conult-white);
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.case-single__content-points li .text {
  margin-left: 15px;
}

.case-single__content-points li .text p {
  color: var(--conult-black);
  margin: 0;
}

.case-single__pagination-box {
  position: relative;
  display: block;
  text-align: center;
  border-top: 1px solid #c9d5db;
  border-bottom: 1px solid #c9d5db;
  padding: 38px 0;
  margin-top: 113px;
}

.case-single__pagination li {
  display: inline-block;
}

.case-single__pagination li.next {
  float: left;
  position: relative;
}

.case-single__pagination li a {
  font-size: 12px;
  color: var(--conult-black);
  font-weight: 700;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  transition: all 500ms ease;
}

.case-single__pagination li a:hover {
  color: var(--conult-base);
}

.case-single__pagination li.next i {
  position: relative;
  transform: rotate(180deg);
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
}

.case-single__pagination li.previous {
  position: relative;
  float: right;
}

.case-single__pagination li.previous i {
  margin-left: 10px;
  font-size: 20px;
}

/*--------------------------------------------------------------
# Similar Case
--------------------------------------------------------------*/
.similar-case {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.similar-case .section-title__tagline:before {
  left: 52%;
  transform: translateX(-50%);
}

.similar-case .section-title__tagline:after {
  right: 52%;
  left: inherit;
  transform: translateX(-50%);
}

.similar-case .case-one__single {
  margin-bottom: 30px;
}

.similar-case .case-one__content {
  bottom: 50px;
}

/*--------------------------------------------------------------
# Similar Case
--------------------------------------------------------------*/
.services-page {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

/*--------------------------------------------------------------
# Service Details
--------------------------------------------------------------*/
.service-details {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.service-details__sidebar {
  position: relative;
  display: block;
}

.service-details__sidebar-service {
  position: relative;
  display: block;
}

.service-details__sidebar-service-list {
  margin: 0;
}

.service-details__sidebar-service-list li+li {
  margin-top: 2px;
}

.service-details__sidebar-service-list li a {
  color: var(--conult-black);
  font-size: 18px;
  font-weight: 500;
  position: relative;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  display: block;
  background-color: #edf3f6;
  padding: 20px 40px;
}

.service-details__sidebar-service-list li.current a,
.service-details__sidebar-service-list li a:hover {
  background-color: var(--conult-base);
  color: var(--conult-white);
}

.service-details__sidebar-service-list li a span {
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%) scale(0);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  color: var(--conult-black);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.service-details__sidebar-service-list li.current a span,
.service-details__sidebar-service-list li a:hover span {
  transform: translateY(-50%) scale(1);
  color: var(--conult-white);
}

.service-details__need-help {
  position: relative;
  display: block;
  padding: 53px 50px 51px;
  margin-top: 30px;
  text-align: center;
  z-index: 1;
  background-color: var(--conult-black);
}

.service-details__need-help-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--conult-black);
  opacity: 0.1;
  z-index: -1;
}

.service-details__need-help-icon {
  height: 57px;
  width: 57px;
  background-color: var(--conult-base);
  color: var(--conult-white);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 0;
  transition: all 500ms ease;
}

.service-details__need-help-icon:hover {
  background-color: var(--conult-white);
  color: var(--conult-base);
}

.service-details__need-help-title {
  font-size: 38px;
  color: var(--conult-white);
  line-height: 40px;
  margin-bottom: 33px;
}

.service-details__need-help-contact {
  position: relative;
  display: block;
  margin-top: 31px;
}

.service-details__need-help-contact p {
  font-size: 16px;
  color: #000;
  margin: 0;
  line-height: 29px;
}

.service-details__need-help-contact a {
  font-size: 24px;
  color: var(--conult-white);
  font-weight: 700;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-details__need-help-contact a:hover {
  color: var(--conult-base);
}

.service-details__right {
  position: relative;
  display: block;
}

.service-details__img {
  position: relative;
  display: block;
}

.service-details__img img {
  width: 100%;
}

.service-details__img-icon {
  position: absolute;
  bottom: -20px;
  right: 30px;
  height: 98px;
  width: 98px;
  background-color: var(--conult-base);
  color: var(--conult-white);
  font-size: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-details__content {
  position: relative;
  display: block;
  margin-top: 30px;
}

.service-details__title {
  font-size: 34px;
  font-weight: 700;
  line-height: 44px;
  margin-bottom: 23px;
}

.service-details__text-1 {
  margin: 0;
}

.service-details__text-2 {
  margin: 0;
  padding-top: 34px;
}

.service-details__two-icons {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 30px 30px;
}

.service-details__two-icon-single {
  position: relative;
  display: block;
  width: 100%;
  padding-left: 20px;
  float: left;
}

.service-details__two-icon-single+.service-details__two-icon-single {
  margin-left: 40px;
}

.service-details__two-icon {
  background-color: #edf3f6;
  font-size: 28px;
  color: var(--conult-base);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 11px;
  left: 0;
  padding: 20px;
}

.service-details__two-icon span {
  position: relative;
  display: inline-block;
}

.service-details__two-icon-content {
  font-size: 20px;
  color: var(--conult-black);
  font-weight: 500;
  line-height: 36px;
  margin: 0;
}

.service-details__text-3 {
  margin: 0;
}

.service-details__bottom {
  position: relative;
  display: flex;
  background-color: var(--conult-base);
  align-items: center;
  padding: 51px 60px 51px;
  margin-top: 55px;
  margin-bottom: 60px;
}

.service-details__bottom-icon {
  display: flex;
  align-items: center;
}

.service-details__bottom-icon span {
  font-size: 62px;
  color: var(--conult-white);
  position: relative;
  display: inline-block;
}

.service-details__bottom-text {
  font-size: 20px;
  color: var(--conult-white);
  margin: 0;
  font-weight: 500;
  line-height: 36px;
  margin-left: 30px;
}

.service-details__how-we-help {
  position: relative;
  display: block;
  margin-bottom: 60px;
}

.service-details__how-we-help-img {
  position: relative;
  display: block;
}

.service-details__how-we-help-img img {
  width: 100%;
}

.service-details__how-we-help-content {
  position: relative;
  display: block;
  margin-top: -9px;
}

.service-details__how-we-help-title {
  font-size: 26px;
  line-height: 36px;
  font-weight: 700;
}

.service-details__how-we-help-text {
  font-size: 20px;
  margin: 0;
  padding-top: 11px;
  padding-bottom: 35px;
}

.service-details__how-we-help-points {
  position: relative;
  display: block;
}

.service-details__how-we-help-points li {
  position: relative;
  display: flex;
  align-items: center;
}

.service-details__how-we-help-points li+li {
  margin-top: 6px;
}

.service-details__how-we-help-points li .icon {
  height: 15px;
  width: 15px;
  background-color: var(--conult-base);
  color: var(--conult-white);
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.service-details__how-we-help-points li .text {
  margin-left: 15px;
}

.service-details__how-we-help-points li .text p {
  color: var(--conult-black);
  margin: 0;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Get To Know
--------------------------------------------------------------*/
.get-to-know {
  position: relative;
  display: block;
  padding: 120px 0 120px;
}

.get-to-know__left {
  position: relative;
  display: block;
}

.get-to-know__left .section-title {
  margin-bottom: 26px;
}

.get-to-know__text {
  margin: 0;
  padding-bottom: 30px;
  text-align: justify;
}

.get-to-know__points {
  position: relative;
  display: block;
}

.get-to-know__points li {
  position: relative;
  display: flex;
  align-items: center;
}

.get-to-know__points li+li {
  margin-top: 4px;
}

.get-to-know__points li .icon {
  position: relative;
  height: 14px;
  width: 14px;
  background-color: var(--conult-base);
  border-radius: 50%;
  font-size: 8px;
  color: var(--conult-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.get-to-know__points li .text {
  margin-left: 20px;
}

.get-to-know__points li .text p {
  color: var(--conult-black);
  font-weight: 500;
  margin: 0;
}

.get-to-know__right {
  position: relative;
  display: block;
  margin-left: 70px;
}

.get-to-know__images {
  position: relative;
  display: block;
  overflow: hidden;
}

.get-to-know__images li {
  position: relative;
  display: block;
  float: left;
}

.get-to-know__images li+li {
  margin-left: 20px;
}

/*--------------------------------------------------------------
# Team Two
--------------------------------------------------------------*/
.team-two {
  position: relative;
  display: block;
  padding: 120px 0 90px;
}

.team-two .section-title__tagline:before {
  left: 52%;
  transform: translateX(-50%);
}

.team-two .section-title__tagline:after {
  right: 52%;
  left: inherit;
  transform: translateX(-50%);
}

/*--------------------------------------------------------------
# Contact Page Google Map
--------------------------------------------------------------*/
.contact-page-google-map {
  position: relative;
  display: block;
}

.contact-page-google-map__one {
  position: relative;
  display: block;
  border: none;
  height: 430px;
  width: 100%;
}

/*--------------------------------------------------------------
# Contact Page Details
--------------------------------------------------------------*/
.contact-page-details {
  position: relative;
  display: block;
}

.contact-page-details__left {
  position: relative;
  display: block;
}

.contact-page-details__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  margin-bottom: 40px;
}

.contact-page-details__content {
  position: relative;
  display: flex;
}

.contact-page-details__content-text-box {
  margin-left: 60px;
  margin-top: -11px;
}

.contact-page-details__content-text-1 {
  margin: 0;
  padding-bottom: 34px;
}

.contact-page-details__content-text-2 {
  margin: 0;
}

.contact-page-details__sign {
  font-size: 24px;
  color: var(--conult-base);
  font-family: var(--conult-reey-font);
  line-height: 34px;
  margin-top: 36px;
}

.contact-page-details__right {
  position: relative;
  display: block;
  margin-right: 40px;
  background-color: rgb(255, 255, 255);
  box-shadow: 60px 10px 60px 0px rgb(0, 0, 0, 0.05);
  padding: 38px 22px 50px;
}

.contact-page-details__right:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  content: "";
  height: 4px;
  background-color: var(--conult-base);
}

.contact-page-details__list {
  position: relative;
  display: block;
}

.contact-page-details__list li+li {
  margin-top: 27px;
}

.contact-page-details__list li span {
  font-size: 16px;
}

.contact-page-details__list li p {
  font-weight: 700;
  color: var(--conult-black);
  margin: 0;
  line-height: 25px;
}

.contact-page-details__list li p a {
  color: var(--conult-black);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.contact-page-details__list li p a:hover {
  color: var(--conult-base);
}

.contact-page-details__list li:last-child p {
  line-height: 30px;
}

.contact-page-details__social {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  border-top: 1px solid #c9d5db;
  padding-top: 30px;
  margin-top: 21px;
}

.contact-page-details__social a {
  position: relative;
  height: 47px;
  width: 47px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
  color: var(--conult-black);
  font-size: 15px;
  background-color: #edf3f6;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 1;
}

.contact-page-details__social a:hover {
  color: var(--conult-white);
}

.contact-page-details__social a:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: var(--conult-base);
  transition: transform 500ms ease;
  transform: scale(0, 1);
  transform-origin: left center;
  z-index: -1;
}

.contact-page-details__social a:hover:before {
  transform: scale(1, 1);
  transform-origin: right center;
}

.contact-page-details__social a+a {
  margin-left: 15px;
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-page {
  position: relative;
  display: block;
  padding: 60px 60px;
}

.contact-page .container {
  max-width: 768px;
  width: 100%;
}

.contact-page .section-title__tagline:before {
  left: 52%;
  transform: translateX(-50%);
}

.contact-page .section-title__tagline:after {
  right: 52%;
  left: inherit;
  transform: translateX(-50%);
}

.contact-page__form .comment-form__btn {
  margin: 20px auto 0;
  display: block;
}

.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:68px;
	right:10px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
  display: flex;
  justify-content: center;
  align-items: center;
}


.home-points li {
  min-height: 268px !important;
  align-items: flex-start !important;
}


label.error {
  color: #a94442;
  /*background-color: #f2dede;*/
  /*border-color: #ebccd1;*/
  /*padding:1px 20px 1px 20px;*/
}

.main-form {
  padding:20px;
  background-color: #fff;
  margin-top: 40px;
  border-radius: 8px;
}
/*.picture {*/
/*  width: 100%;*/
/*  height: 602px;*/
/*  background: url('/images/loss.jpg') no-repeat;*/
/*  background-size: cover;*/
/*  background-position: center;*/
/*  border-radius: 8px;*/
/*}*/

/*.picture:hover {*/
/*  background: url('/images/profit.jpg') no-repeat;*/
/*  background-size: cover;*/
/*  background-position: center;*/
/*  border-radius: 8px;*/
/*}*/

.offer-box{
  margin: 10px 10px;
  background-color: #fff;
  padding: 16px;
  color: #000;
  width: 30%;
  text-align: justify;
  border-radius: 10px;
  box-shadow: rgba(255, 255, 255, 0.2) 0px 7px 29px 0px;
  
}
.offer-box h2{
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.benefit-box{
  margin: 10px 10px;
  background-color: #fff;
  padding: 16px;
  color: #000;
  text-align: justify;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 29px 0px;
  
}
.benefit-box h2{
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.paddy{
  padding: 80px 0px;
}
.offerings{
  background-color: #000;
}
.industry{
  background-color: #000;
}
.benefits{
  background-color: rgb(247, 247, 247);
}
.text-red{
  color: #ed1b24;
}
.benefit-icon{
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.industry-icon{
  margin-top: -67px;
  padding: 10px;
  border-radius: 10px;
}
.industry-icon img{
  background-color: #ED1B24;
}
.industry-box{
  margin: 10px 10px;
  background-color: #fff;
  padding: 16px;
  color: #000;
  text-align: justify;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 29px 0px;
  margin-bottom: 80px;
  
}
.industry-box h2{
  text-align: center;
  font-size: 28px;
  color: #ed1b24;
  margin-bottom: 20px;
}
.differ{
  background-color: rgb(247, 247, 247);
}
.differ-icon{
  margin-top: -67px;
  padding: 10px;
}
.differ-icon img{
  border-radius: 18px;
  padding: 0px;
}
.differ-box{
  margin: 10px 10px;
  background-color: #fff;
  padding: 16px;
  color: #000;
  text-align: center;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 29px 0px;
  margin-bottom: 80px;
  
}
.differ-box h2{
  text-align: center;
  font-size: 28px;
  color: #ed1b24;
  margin-bottom: 20px;
}
.offerings .services-one__img img{
  height: 100px;
}
.offerings .services-one__content {
  padding: 22px 18px 12px;
}

.logo-box a{
    background-color: #fff;
    padding: 14px;
    border-radius: 14px;
}

.news-details .news-details__img img {
    width: -webkit-fill-available !important;
    height: auto !important;
    object-fit: cover;
}


/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* The Modal (background) */
.modal1 {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 9999; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  background:url(/images/landing-pages/ABSTRACT_BACKGROUND_01.jpg);
  background-size: cover;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 50%;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.close1 {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close1:hover,
.close1:focus {
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}
.thm-btn {
padding: 12px 28px !important;
}

.feature-two__single{
flex-direction:column;
gap:20px;
}
.feature-two__title {
    text-align: center;
}
.feature-two__icon img{
    width:100px !important;
}
.tag-blog{
    padding:20px;
    margin:60px 0px;
    background-color:#fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.tag-page{
        background-color:#edf3f6;

}
.tag-social{
    background-color:#fff;
    margin:20px;
    padding:20px;
}
.tag-details {
    position: relative;
    display: block;
     padding: 60px 0 60px; 
}
select {
    height: 47px;
    width: 100%;
    background-color: #edf3f6;
    border: 1px solid #cbd9f5 !important;
    outline: none;
    margin-bottom: 10px;
    padding: 0 16px;
    font-size: 13px;
    color: var(--conult-gray);
    font-weight: 500;
}
.career input[type="text"], .career input[type="email"], .career textarea , .career select, .career select option{
  height: 60px;
  font-size: 16px;
}
.bg-black{
  background-color: #000;
}
.career-step ul li{
  color: #fff;
  font-size: 24px;
  line-height: 46px;
}
#node {
  display: none;
  transition: display 0.5s ease;
}
.bg-gray{
  background-color: #d6d6d6;
}
.job-card{
  padding: 20px;
  transition: flex 0.3s ease-in-out;
  border-radius: 14px;
  background-color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.job-card p{
  color: #000;
}
.job-card button{
  background-color: #000;
  border-color: #000;
  color: #fff;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 8px 18px;
  width: 180px;
  border-radius: 10px;

}
.view-card{
  padding: 20px;
  background-color: #000;
border-radius: 20px;
margin-top: 20px;
}
.view-card p, .view-card ul li{
  color: #fff;
}
.job-cards{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.bordered{
  border-radius: 12px;
}
.custom-file-upload {
    display: inline-block;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-color: #edf3f6;
    color: #7a838b;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
}

.custom-file-upload span {
    font-size: 14px;
    font-weight: bold;
}

.custom-file-upload input[type="file"] {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
    cursor: pointer;
    height: 100%;
    width: 100%;
}
#file-name {
    display: none;
    margin-top: 10px;
    font-size: 14px;
    color: #555;
}






.contact-one__form-box:before{
  display: none !important;
}
.contact-one__form-box {
  border-radius: 20px;
}
.contact-one__input-box input[type="text"], .contact-one__input-box input[type="email"], .contact-one__input-box textarea, select{
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
}
.main-con{
  background-color: rgb(255 255 255 / 87%);
  border-radius: 20px;
  padding: 20px 0px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.why-box1{
  background-color: #dffff9;
  border-radius: 12px;
  padding: 10px 0px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}


.why-box3{
  background-color: #d1eaff;
  border-radius: 12px;
  padding: 10px 0px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.why-box3 h3{
  font-size: 20px;
  margin-left: -30px;
  font-weight: 600;
}
.why-box{
  background-color: #fff1e7;
  border-radius: 12px;
  padding: 10px 0px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.why-box h3{
  font-size: 20px;
  margin-left: -30px;
  font-weight: 600;
}
.why-box1 h3{
  font-size: 20px;
  margin-left: -30px;
  font-weight: 600;
}
.policy-con p{
text-align: justify;
font-size: 16px;
color: #000;
}
.policy-con h3{
  font-size: 20px;
  font-weight: 600;
}
.policy-con ul li{
  color: #000;
  margin-left: 30px;
}
.form-bg{
  background-color: #FFE6D2;
  padding: 20px;
  border-radius: 14px;
  position: relative;
  z-index: 1;
}
.contact-one__input-box label{
  color: #000000;
}
.techs{
  display: flex;
  gap: 20px;
}
.tech-box1{
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 14px;
}
.tech-box1 img{
  width: 100%;
  height: 60px;
  object-fit: contain;
  background-color: #fff;
}
.tech-box1 h3{
  font-size: 20px;
  font-weight: 600;
  color: #000000;
}
.tech-box{
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 14px;
}
.tech-box img{
  width: 100%;
  height: 120px;
  object-fit: contain;
  background-color: #fff;
}
.tech-box h3{
  font-size: 20px;
  font-weight: 600;
  color: #000000;
}
.fd-col{
  flex-direction: column;
}
.tech-sec1{
  display: flex;
  margin-top: 30px;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
}
.tech-sec1 h2{
  font-size: 30px;
  font-weight: 600;
  color: #ffffff;
}
.tech-sec{
  display: flex;
  margin-top: 30px;
  justify-content: flex-start;
  flex-direction: column;
  gap: 20px;
}
.tech-sec h2{
  font-size: 30px;
  font-weight: 600;
  color: #000000;
}
.why-img img{
  background-color: #00457c;
}

.pop-modal{
  background-color: #fff !important;
  padding: 0px !important;
  border-radius: 20px;
}
.pop-modal .section-title__title{
  font-size: 26px;
  font-weight: 600;
}
.pop-modal .close{
  margin: 10px !important;
  font-size: 40px !important;
  color: #000000 !important;
  background-color: #baf9ff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
}


canvas {
  display: block;
  vertical-align: bottom;
}

/* ---- particles.js container ---- */

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #b61924;
  background-image: url("");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
}

/* ---- stats.js ---- */

.count-particles{
  background: #000022;
  position: absolute;
  top: 48px;
  left: 0;
  width: 80px;
  color: #13E8E9;
  font-size: .8em;
  text-align: left;
  text-indent: 4px;
  line-height: 14px;
  padding-bottom: 2px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: bold;
}

.js-count-particles{
  font-size: 1.1em;
}

#stats,
.count-particles{
  -webkit-user-select: none;
}

#stats{
  border-radius: 3px 3px 0 0;
  overflow: hidden;
}

.count-particles{
  border-radius: 0 0 3px 3px;
}



.home-top-sec{
position: relative;
display: flex;
padding: 80px 0px;
justify-content: center;
align-items: center;
}
#stats{
  display: none;
}
.home-top-sec h1{
  font-size: 60px;
  color: #ED1B24;
  font-weight: 900;
  text-align: left;
}
.home-top-sec h2{
  font-size: 60px;
  color: #fff;
  font-weight: 800;
}
.home-top-sec h4{
  font-size: 34px;
  color: #fff;
  margin-top: 10px;
  font-weight: 600;
}
.home-top-sec p{
  font-size: 20px;
  color: #fff;
  margin-top: 10px;
  font-weight: 400;
  text-align: left;
}
.top-right video{
  width: 460px;
  height: 400px;
}
.top-right{
  background-color: #fff;
  border-radius: 24px;
  padding: 20px;
  justify-content: center;
}




.carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 1.4s ease-in-out; /* Adjust the transition duration */
}

.item {
  flex: 0 0 100%;
  min-width: 100%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.item.active {
  opacity: 1;
}





/* Default styles for larger screens (e.g., desktop) */
.carousel-container {
  display: flex;
  overflow: hidden;
  max-width: 100%;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.item {
  flex: 0 0 33.33%; /* Display 3 items in a row on desktop */
  padding: 20px;
  text-align: center;
}

/* Tablet styles (e.g., screens with a max-width of 768px) */
@media (max-width: 768px) {
  .item {
      flex: 0 0 50%; /* Display 2 items in a row on tablet */
  }
}

/* Mobile styles (e.g., screens with a max-width of 480px) */
@media (max-width: 480px) {
  .mobile-clients{
    display: block !important;
  }
  .desktop-clients, .no-mobile{
    display: none !important;
  }
  .get-to-know__img-1 img{
    width: 100% !important;
  }
  .location-box{
    flex-direction: column;
    padding: 20px 0px !important;
    margin-bottom: 20px !important;
  }
  .v-red-line{
    display: none;
  }
  .logoinfo-box{
    height: 415px !important;
  }
  .site-footer__top-right {
    margin-top: 16px !important;
}
  .ind-icon{
    width: 44% !important;
  }
  .about-video{
    height: auto !important;
  }
  .video-sec{
    padding: 60px 0px;
  }
 
  .top-left{
    background-color: transparent;
    border-radius: 24px;
    padding: 20px 0px;
    align-items: left;
    justify-content: left;
  }
  .top-left h1{
    font-size: 34px;
    font-weight: 800;
  }
  .top-left h4{
    font-size: 22px;
    text-align: left;
  }
  .top-left h2{
    font-size: 28px;
  }
  .top-left p{
    font-size: 14px;
    line-height: 20px;
  }
  .carousel{
    width: 100% !important;
  }
  .top-right video {
    width: 300px !important;
    height: 300px !important;
}
.carousel-container{
  height: auto !important;
  margin-top: 20px !important;
}
.home-top-sec{
  padding: 40px 0px !important;
}
.feature-two__content {
  margin-left: 0px !important;
}
.feature-two__single {
  height: auto !important;
  padding: 12px !important;
}
.feature-two__bottom .row{
  margin: 0px !important;
}
.feature-two {
  background-color: #ffb6b9;
  padding: 40px 0px;
}
.work-together {
  padding: 40px 8px;
}
.services-one .row{
  padding-bottom: 0px !important;
}
.why-choose-one .row .col-xl-6:last-child{
  padding: 0px 15px;
}
.service {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 26px 0px;
  flex-wrap: wrap;
  gap: 20px;
}
.success-sec{
  padding: 30px 15px !important;
}
.brand-one {
  padding: 40px 0px;
}
.contact-one .contact-one__right{
  margin-top: 30px !important;
}
.contact-one{
  padding: 0px !important;
}
.site-footer__bottom {
  flex-wrap: wrap;
  gap: 20px;
}
.site-footer__top-logo-content {
  flex-direction: column;
  align-items: center !important;
  justify-content: center !important;
  display: flex !important;
}
.sidebar{
  display: none;
}

}



  /* Add your CSS styles here */
  .carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.item {
    flex: 0 0 100%; /* Display one item per row */
    padding: 20px;
    text-align: center;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    cursor: pointer;
    z-index: 1;
}

.prev-arrow {
    left: 5%;
    color: #fff;
    background-color: #ED1B24;
    padding: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.prev-arrow:hover{
background-color: #fff;
 transition: background-color 0.5s ease;
color: #ED1B24;
}
.next-arrow:hover{
  background-color: #fff;
   transition: background-color 0.5s ease;
  color: #ED1B24;
}
.next-arrow {
    right: 5%;
    color: #fff;
    background-color: #ED1B24;
    padding: 10px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}


.top-left p strong{
  font-size: 28px;
}


a {
  text-decoration: none;
  vertical-align: middle;
  text-align: center;
}

p {
  margin: 0px;
}

.sidebar1 {
  height: auto;
  width: 0px;
  position: fixed;
  text-align: center;
  top: 25vh;
  padding: 10px;
  z-index: 9999;
}

p i {
  left: 30px;
  position: relative;
  vertical-align: middle;
  text-align: center;
  font-size: 20px;
}

.social {
  margin-left: -200px;
  width: 230px;
  padding: 0;
  display: inline-table;
  height: 0px;
  background-color: rgba(128, 128, 128, 0.73);
  -moz-transition-property: margin-left;
  -moz-transition-duration: 0.2s;
  -moz-transition-delay: 0.2s;
  -ms-transition-property: margin-left;
  -ms-transition-duration: 0.2s;
  -ms-transition-delay: 0.2s;
  -o-transition-property: margin-left;
  -o-transition-duration: 0.2s;
  -o-transition-delay: 0.2s;
  -webkit-transition-property: margin-left;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s;
  box-shadow: 0px 0px 6px 0px #3E3D3D;
  cursor: pointer;
}

.social:hover {
  margin-left: -30px;
  width: 230px;
}

.facebook {
  background-color: #3b5998;
}

.twitter {
  background-color: #4099FF;
}
.instagram {
  background-color: #EB7058;
}
.mail {
  background-color: #CD3D26;
}
.linkedin {
  background-color: #0976B4;
}

.youtube {
  background-color: #E52D27;
}
.youtube:hover {
  background-color: #E52D27;
}

.linkedin:hover {
  background-color: #0976B4;
}




.facebook p i{
  left: 53px !important;
  color: #fff;
}
.twitter p i{
  left: 64px !important;
  color: #fff;
}
.instagram p i{
  left: 53px !important;
  color: #fff;
}
.linkedin p i{
  left: 58px !important;
  color: #fff;
}
.youtube p i{
  left: 58px !important;
  color: #fff;
}
.mail p i{
  left: 75px !important;
  color: #fff;
}

.feature-two__content p{
  color: #000;
}
.sidebar1 .social p{
    color:#fff;
}


.rating-sec{
  padding: 30px 0px;
  background: url(/images/7082673_23964.jpg);
  background-position: left top;
  background-size: cover;
}
.rating-box{
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding: 20px;
  margin: 8px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.swiper-slide img{
  background-color: #fff;
 width: 100% !important;
 /* height: 160px !important; */
 object-fit: contain !important;
 border: 2px solid #ffffff;
}
.text-justify{
  text-align: justify;
}
.brand-one .swiper-slide img{
  object-fit: contain !important;
  height: 100px !important;
  border-radius: 8px !important;
}
/* .swiper-slide.swiper-slide-active img{
  opacity: 1 !important;
} */

.star-sec{
  padding: 60px 0px;
  background: #f0f8ff;
}
.star-box{
  background-color: #000000;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding: 12px;
  margin: 8px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.star-box img{
  width: 70%;
}
.services-one__icon img{
  background-color: #fff;
  padding: 10px;
  border-radius: 10px;
  width: 65px;
}
.services-one__bottom a, .services-one__bottom span{
  color: #fff;
}
.swiper-slide{
  margin-bottom: 30px !important;
}

.process-sec{
  padding: 60px 0px;
  background: url(/images/workflow-bg.jpg);
  background-size: cover;
}
.process-box{
  background: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding: 12px;
  margin: 8px;
  height: 410px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.process-icon{
  display: flex;
  justify-content: center;
  width: 80px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 50%;
}

.banner-top{
  background: linear-gradient(270deg, rgb(0 0 0) 0%, rgb(0 46 83) 78%);
  padding: 30px;
  border-radius: 12px;
  margin: 10px 30px 30px 30px;
}
.banner-top .section-title__title {
font-weight: 600;
}
.banner-top-right{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-direction: column;
}
.banner-btn{
  border-radius: 50px;
  padding: 6px 20px;
background: linear-gradient(180deg, rgba(253,118,10,1) 11%, rgba(237,27,36,1) 98%);
border: none;
color: #fff;
font-weight: 700;
text-transform: uppercase;
font-size: 16px;
display: flex;
justify-content: space-between;
gap: 10px;
}
.video-sec{
  padding-bottom: 40px;
  background: url(/images/main-ban-img.jpg);
  background-size: cover;
  background-position: center;
}
.video-sec h1{
font-size: 50px;
font-family: 'poppins', sans-serif;
font-weight: 600;
color: #000000;
margin-bottom: 30px;
text-transform: capitalize;
}
.video-sec p{
  color: #000000;
  font-family: 'poppins', sans-serif;
  font-weight: 400;
  text-transform: capitalize;
  }

  .video-sec button{
    margin-top: 30px;
    background-color: #000000;
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    border: none;
    padding: 6px 20px;
    border-radius: 8px;
  }
.video-sec .col-md-6:last-child{
  border-radius: 12px;
}

.image-gallery {
  display: flex;
  height: 100vh;
  overflow: hidden;
}
.image-gallery2 {
  display: flex;
  height: 50vh;
  overflow: hidden;
}


.image-list {
  padding: 30px 0px;
  display: flex;
  flex-direction: column;
  animation: scrollAnimation 12s cubic-bezier(0.42, 0, 0.58, 1) infinite; /* Adjust duration and timing function */
}
.image-list2 {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  animation: scrollAnimation 12s cubic-bezier(0.42, 0, 0.58, 1) infinite; /* Adjust duration and timing function */
}

@keyframes scrollAnimation {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(calc(-100% * 1)); /* Adjust the number of images */
  }
}

.image-list img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  margin-bottom: 60px; /* Adjust spacing between images */
}
.image-list2 img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  margin-bottom: 60px; /* Adjust spacing between images */
}

.about-video{
  height: 600px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.ind-icon{
  margin: 10px;
  width: 23.2%;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  background-color: #2c2c2c;
  padding: 20px 10px;
  border-radius: 8px;
  display: flex;
}
.location-box{
  background-color: #191919;
  box-shadow: rgb(255 255 255) 0px 0px 9px -3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 12px;
  padding: 5px 0px;
}
.logoinfo-box{
  background-color: #191919;
  box-shadow: rgb(255 255 255) 0px 0px 9px -3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-direction: column;
  border-radius: 12px;
  padding: 20px;
  height: 330px;
}

.location-box h3{
  font-size: 16px;
    font-weight: 700;
    margin: 0px !important;
    color: #ed1b24;
    line-height: 30px;
    margin-bottom: 15px;
}
.v-red-line{
  width: 1px;
  height: 100px;
  margin: 10px 0px;
  background-color: #ffffff;
  border-radius: 20px;
}
.site-footer__top-logo-content{
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.site-footer__top-right-social{
  justify-content: flex-start;
}
.loc-sec{
  background: url(/images/7082673_23964.jpg);
  background-size: cover;
  padding: 30px 0px;
}


.ind-icon {
  background: 
    linear-gradient(
      to top left, 
      rgba(52, 52, 52, 0) 0%,
      rgba(60, 60, 60, 0) 45%,
      rgba(74, 74, 74, 0.5) 48%,
      rgba(67, 67, 67, 0.8) 50%,
      rgba(70, 70, 70, 0.5) 52%,
      rgba(56, 56, 56, 0) 57%,
      rgba(41, 41, 41, 0) 100%
    ),
    #000;
  background-size: 600px 600px, 100% 100%;
  background-position: -250px -250px, center;
  background-repeat: no-repeat;
  animation: ShineAnimation 6s infinite cubic-bezier(.12, .20, .20, .27);
  color: #fff;
  position: relative;
  box-shadow: 0px 0px 14px rgb(120 120 120 / 50%);
}

@keyframes ShineAnimation {
  to {
    background-position: 250px 250px, center;
  }
}

.mobile-clients{
  display: none !important;
}
.serv-test .testimonial-two__text, .serv-test .testimonial-two__client-name, .serv-test .testimonial-two__clinet-title{
  color: #fff;
}

.fresher-sec{
  padding: 60px 0px;
  background-color: #000;
}
.fresher-sec .fresher{
  background: url(/images/New\ Project\ \(47\).jpg);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 20px;
  padding: 50px;
}
.fresher h2{
  color: #000000;
  font-size: 48px;
  margin-bottom: 30px;
  text-align: left;
}
.fresher p{
  color: #000000;
  margin-bottom: 30px;
  font-weight: 500;
  font-size: 20px;
  text-align: left;
}
.career-form{
  background-color: #000;
}
.career-form .contact-page-details__title, .career-form #file-name, .career-form .contact-one__input-box label{
  color: #fff;
}
.career-form .contact-one__input-box label span{
  color:  #000 !important;
}


.image-list3 {
  padding: 30px 0px;
  white-space: nowrap; /* Prevent line breaks for horizontal scrolling */
  display: flex;
  gap: 20px;
  flex-direction: row; /* Change to row for horizontal layout */
  animation: scrollAnimation1 12s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}
.image-list3  img{
  border-radius: 16px;
}

@keyframes scrollAnimation1 {
  0% {
      transform: translateX(0); /* Start from the initial position */
  }
  100% {
      transform: translateX(-100%); /* Scroll to the left by 100% of the container width */
  }
}
.dm-1st {
  position: relative;
  z-index: 1;
}

.dm-1st ul {
  list-style: none;
  padding: 0;
}

.dm-1st ul li {
  margin: 10px 0;
  padding-left: 26px;
  position: relative;
  color: #fff;
}

.dm-1st ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  margin-right: 20px;
  border-radius: 50%;
  background-color: #ed1b24;
}

.dm-1st li::after {
  content: '\2713'; /* Unicode for check mark */
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9em;
  color: white;
}
.br-3{
  border-radius: 12px;
}
.byVismeButton--PYBh3EN{
  display: none !important;
}
.counter h1{
  font-weight: 800;
}
.counter .line{
  width: 120px;
  border-top: 3px solid #000;
  padding: 10px 0px 0px 0px;
}
.lh-n{
  line-height: normal !important;
}
.counter-row{
  padding: 40px 0px;
}
.industries_wrapper {
  background-color: #000;
  margin-top: -1px;
}
.industry_demands {
  padding: 4rem;
}
.appi__head2 {
  color: #fff;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 50px;
}
.grid_colm_panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 2rem;
  position: relative;
}
.grid_colm_item {
  text-align: center;
  border-right: 1px solid #3c3c3c;
  border-bottom: 1px solid #3c3c3c;
  padding: 40px 50px;
}
.grid_colm_item figure {
  border-radius: 10px;
  background-image: linear-gradient(to bottom, #343338, #302e34, #2b2a2f, #27252b, #232127);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  margin: 0 auto;
  justify-content: center;
}
.grid_colm_item a {
  display: block;
}
.grid_colm_head {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  padding-top: 20px;
}
.contact-us-section {
  background-color: #1d1c39;
  position: relative;
}
.padding-b-150 {
  padding-bottom: 100px;
}
.padding-t-150 {
  padding-top: 100px;
}
.contact-us-section .left-box, .contact-us-section .right-box {
  padding: 80px 60px;
}
.contact-us-section .left-box {
  flex-basis: 44%;
  padding: 60px 30px;
  border-radius: 10px 0 0 10px;
}
.bg-dark-theme {
  background-color: #181732;
}
.contact-us-section .left-box h2 {
  margin: 0 !important;
}
.contact-us-section .left-box h2 {
  font-size: 34px;
  color: #ffffff;
}
.contact-us-section .list-box {
  padding-left: 60px;
  position: relative;
}
.contact-us-section .side-dash1::before {
  content: "1";
}
.contact-us-section .list-box::before {
  clear: both;
  color: #ffffff;
  background: #ed1b24;
  font-size: 18px;
  line-height: 21.09px;
  border-radius: 50px;
  height: 40px;
  width: 40px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  justify-content: center;
  display: flex;
  align-items: center;
  z-index: 1;
}
.contact-us-section .side-dash2::before {
  content: "2";
}
.contact-us-section .left-box h3 {
  color: #bdb7b7;
}
.contact-us-section .right-box {
  flex-basis: 56%;
  padding: 100px 70px;
  border-radius: 0 10px 10px 0;
}
.bg-voilet {
  background-color: #2b294d;
}
.contact-us-section .side-dash1 p {
  padding-bottom: 40px;
}
.contact-us-section .left-box p {
  font-size: 18px;
  line-height: 28px;
  margin-top: 8px;
  position: relative;
  color: #6f6f6f;
}
.dis-flex {
  display: flex;
  flex-wrap: wrap;
}
.contact-us-section .side-dash1::after {
  content: "";
  clear: both;
  display: block;
  height: 100%;
  border-left: 0.8px dashed rgba(223, 223, 223, 0.5);
  width: 4px;
  position: absolute;
  top: 0;
  left: 20px;
  z-index: 0;
}
.contact-us-section .right-box .form-head {
  color: #ffffff;
  font-weight: 600;
  font-size: 30px;
  line-height: 41px;
}
.contact-us-section .right-box p {
  color: #bdb7b7;
  font-weight: 500;
  font-size: 18px;
  line-height: 25px;
  margin-top: 10px;
}
.contact-us-section .form-text-cont:nth-child(2n -1) {
  padding-right: 35px;
}
.contact-us-section .form-text-cont {
  flex-basis: 50%;
  margin-bottom: 35px;
}
.contact-us-section .user-input {
  position: relative;
}
.contact-us-section .input-field {
  font-size: 16px;
}
.contact-us-section .input-field {
  border: 0.5px solid #ffffff;
  padding: 18px 35px 18px 15px;
  background: transparent;
  width: 100%;
  font-size: 18px;
  line-height: 25px;
  outline: 0;
}
.input-field {
  color: #ffffff;
}
.contact-us-section .right-box .form-head-box {
  margin-bottom: 50px;
}
.contact-us-section h3 {
  font-size: 20px;
  line-height: 28px;
}
.contact-us-section .width-full .user-input {
  border: 0.5px solid #ffffff;
  padding: 18px 15px;
  background: transparent;
  width: 100%;
  font-size: 18px;
  line-height: 25px;
  height: 200px;
  margin-bottom: 15px;
  padding-right: 35px;
}

.contact-us-section .user-input {
  position: relative;
}
.contact-us-section .checkout-submit {
  background: #ed1b24;
  border: 0;
  outline: 0;
  color: #ffffff;
  padding: 12px 27px;
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  letter-spacing: 0.5px;
  border-radius: 4px;
  font-weight: 600;
}
.contact-us-section .form-text-cont.width-full {
  flex-basis: 100%;
  padding-right: 0;
}
.contact-us-section .comment-input {
  height: 90px;
  resize: none;
  background: none;
  outline: 0;
  border: none;
  overflow-y: auto;
  padding: 0;
}
.headq__wrapper {
  background: #000;
  background-size: cover;
  background-position: center;
  border-top: 6px solid #ed1b24;
  margin-top: -1px;
  position: relative;
}
.headq__panel {
  padding: 3rem 0;
}
.flexrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 50px;
  position: relative;
}
.most_trust_badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ed1b24;
  padding: 5px 30px 5px 20px;
  border-radius: 10px;
}
.flex_al_baseline {
  align-items: flex-end;
}

.flex_spc_btw {
  justify-content: space-around;
}
.ds_flex {
  display: flex;
}
.hq__detail {
  text-align: center;
  opacity: .6;
}
.hq__detail img {
  border-bottom: 1px solid #fff;
  padding-bottom: 25px;
}
.hq_head {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  padding: 15px 0 10px;
}
.hq__detail:hover {
  opacity: 1;
}
.hq__detail p {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  display: inline-block;
  padding-top: 10px;
}
.hq_head {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  padding: 15px 0 10px;
}
.most_trust_badge span {
  padding-left: 15px;
  display: inline-block;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
}
.showcase_panel.cursor-btn .block_bubble {
  transform: scale(0);
}
.block_bubble {
  color: #fff;
  background-color: #6e726d;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  width: 106px;
  height: 106px;
  margin: -100px 0 0 -140px;
  border-radius: 50%;
  position: absolute;
  left: 440px;
  top: 100px;
  z-index: 4;
  pointer-events: none !important;
  will-change: transform;
  transform: scale(1);
  transition: .4s transform cubic-bezier(.68,.55,.265,.55);
}
.showcase {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 70vh;
  width: 100%;
  justify-content: space-between;
  -webkit-justify-content: space-between;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
}
.showcase_inner {
  position: relative;
  overflow: hidden;
  width: 35%;
  height: 100%;
}
.showcase_visuals {
  position: relative;
  overflow: hidden;
  width: 67%;
  height: 100%;
  margin-right: 60px;
}
.scr_bar {
  height: 550px;
  width: 2px;
  background: rgb(255 255 255 / 50%);
  border-radius: 100px;
  position: absolute;
  right: 20px;
  top: 0;
}
.showcase_card {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform: translateY(0%);
  opacity: 0;
  color: #fff;
  padding-right: 50px;
}
.app__head4 {
  font-size: 26px;
  font-weight: 600;
  margin: 30px 0;
}
.showcase_subhead {
  font-size: 22px;
  line-height: 1.5;
}
.showcase__results {
  padding-top: 40px;
}
.results_head {
  font-size: 14px;
  font-weight: 300;
}
.results_count {
  display: flex;
  color: #fff;
  padding: 15px 0 30px;
}
.states_head {
  width: 140px;
}
.common__btn {
  display: inline-block;
  margin-top: 50px;
}
.showcase_panel .common__btn a {
  position: relative;
  z-index: 5 !important;
}
.common__btn .btn-effect {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  transition: all .3s cubic-bezier(.19,1,.22,1);
  border: 2px solid #fff;
  padding: 14px 50px 14px 25px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
}
.showcase_view {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.bar {
  position: absolute;
  left: -1px;
  top: 0;
  width: 4px;
  height: 140px;
  background: #ed1b24;
  content: "";
  border-radius: 60px;
}
.appi_portfolio_panel {
  background: #000;
  background-position: center;
  background-size: cover;
  padding: 6rem 0 0;
  margin-top: -1px;
  min-height: 100vh;
}
.bg-red{
  background-color: #3b1012;
}
.appi__subhead {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
}
.left_sec, .right_sec {
  width: 45%;
}
.left_sec .appi__head2 {
  margin-bottom: 0;
}
.appi__head2 {
  color: #fff;
  font-size: 46px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 50px;
}
.showcase_panel {
  height: 100vh;
  display: flex;
  align-items: center;
}

.sub-text{
  background-color: #ED1B24;
  color: #fff;
  border-radius: 20px;
  padding: 0px 14px;
  width: fit-content;
  margin-bottom: 20px;
}
.f-600{
  font-weight: 600;
}

.dark-sec{
  background-color: #002442;
  padding: 60px 0px;
}
.cta-box{
  background-color: #fff;
  box-shadow: rgba(255, 255, 255, 0.35) 0px 5px 15px;
  border-radius: 12px;
  padding: 20px;
  margin-top: 40px;
}
.cta-box h3{
  font-weight: 600;
}
.cta-box p{
  line-height: 20px;
  color: #000;
}
.mb-6{
  margin-bottom: 30px;
}
.text-black{
  color: #000;
}

.box-shadow{
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}


.contact-form {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
}

.animated-person {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
  background-color: #007bff;
  border-radius: 50%;
  position: relative;
  animation: bounce 2s infinite;
}

.animated-person::before,
.animated-person::after {
  content: '';
  position: absolute;
  background-color: #007bff;
  border-radius: 50%;
}

.animated-person::before {
  width: 30px;
  height: 30px;
  top: -20px;
  left: 10px;
}

.animated-person::after {
  width: 10px;
  height: 30px;
  top: 50px;
  left: 20px;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
      transform: translateY(0);
  }
  40% {
      transform: translateY(-15px);
  }
  60% {
      transform: translateY(-10px);
  }
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

input[type="submit"] {
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}

input[type="submit"]:hover {
  background-color: #0056b3;
}

#subForm {
  position: relative;
  z-index: 10; /* Ensure the form is on top of other elements */
}

button[type="submit"] {
  position: relative;
  z-index: 11; /* Ensure the button is not overlapped */
}