@import url("https://fonts.cdnfonts.com/css/satoshi");
:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme-color:#2490EB;
  --theme-color-2:#0e2540;
  --theme-color-4:#279846;
  --theme-color-5:#FFD252;
  --header:#28241F;
  --text:#4B5563;
  --border:#E6EFFF;
  --ratting:#F8BC26;
  --bg:#EEF5F5;
  --bg-2:#051828;
  ---box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
}

body {
  font-family: "Satoshi", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

input:focus {
  color: var(--white);
  outline: none;
}

input {
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Helvetica Neue", sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0px;
  padding: 0;
  color: var(--header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 68px;
  line-height: 122%;
}

@media (max-width: 1399px) {
  h1 {
    font-size: 60px;
  }
}

@media (max-width: 991px) {
  h1 {
    font-size: 58px;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  h1 {
    font-size: 40px;
  }
}

@media (max-width: 470px) {
  h1 {
    font-size: 32px;
  }
}

h2 {
  font-size: 52px;
  font-weight: 500;
  line-height: 131%;
}

@media (max-width: 1199px) {
  h2 {
    font-size: 40px;
  }
}

@media (max-width: 575px) {
  h2 {
    font-size: 35px;
  }
}

@media (max-width: 470px) {
  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 150%;
}

@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
}

h5 {
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
}

h6 {
  font-size: 14px;
  font-weight: 500;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

/*-----------------------[ 2.Button CSS ]------------------------*/
button {
    border: none;
    background-color: transparent;
    padding: 0;
}

/*-----------------------[ 3.Preloader CSS ]------------------------*/
.preloader {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: default;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
}

.preloader .animation-preloader {
  z-index: 1000;
}

.preloader .animation-preloader .spinner {
  -webkit-animation: spinner 1s infinite linear;
          animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme-color);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}

.preloader p {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme-color);
}

.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}

.preloader .loader .row {
  height: 100%;
}

.preloader .loader .loader-section {
  padding: 0px;
}

.preloader .loader .loader-section .bg {
  background-color: var(--white);
  height: 100%;
  left: 0;
  width: 100%;
  -webkit-transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader.loaded .animation-preloader {
  opacity: 0;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.preloader.loaded .loader-section .bg {
  width: 0;
  -webkit-transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

/*-----------------------[ 4.Back To Top & Search Bar CSS ]------------------------*/

.back-to-top {
  border-radius: 10px;
  background-color: var(--theme-color);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 9999;
  right: 30px;
  bottom: 30px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  border-radius: 50%;
}

.back-to-top:hover {
  background-color: var(--header);
  color: var(--white);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0);
          transform: translate(0);
}

.header-search-bar {
  height: 270px;
  position: fixed;
  top: -200%;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--white);
  -webkit-transition: .3s;
  transition: .3s;
}

.header-search-bar.search-open {
  top: 0;
}

.search-close {
  position: absolute;
  right: 50px;
  top: 35px;
  font-size: 50px;
  color: var(--header);
  font-weight: 300;
  width: 45px;
  height: 45px;
}

.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .section-title {
    text-align: center;
    margin-bottom: 0;
  }
}

.section-title h3 {
  font-size: 38px;
  font-weight: 500;
}

@media (max-width: 575px) {
  .section-title h3 {
    font-size: 30px;
  }
}

.section-title span {
  font-size: 14px;
  font-weight: 500;
  color: var(--theme-color-2);
  display: inline-block;
  position: relative;
  border-radius: 2px;
  background: rgba(2, 201, 184, 0.11);
  padding: 18px 19px;
  letter-spacing: 3.92px;
  line-height: 1px;
  margin-bottom: 15px;
}

.section-title span.style-2 {
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
  letter-spacing: 3.92px;
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg-2 {
  background-color: var(--bg-2) !important;
}

.section-bg-3 {
  background: rgba(36, 144, 235, 0.05);
}

.section-padding {
  padding: 120px 0;
}

.section-padding2 {
  padding: 60px 0;
}

@media (max-width: 1199px) {
  .section-padding {
    padding: 100px 0;
  }
  .section-padding2 {
  padding: 40px 0;
}
}

@media (max-width: 991px) {
  .section-padding {
    padding: 80px 0;
  }
  .section-padding2 {
  padding: 20px 0;
}
}

/*-----------------------[ 5.Animation CSS ]------------------------*/

@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes arryUpDown {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@keyframes arryUpDown {
  0% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}

@-webkit-keyframes arryLeftRight {
  0% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}

@keyframes arryLeftRight {
  0% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}

@-webkit-keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  to {
    -webkit-mask-position: -50%;
  }
}

@keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  to {
    -webkit-mask-position: -50%;
  }
}

@-webkit-keyframes cir36 {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes cir36 {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* Defining animation Keyframes */
@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-150);
            transform: translateX(-150);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-90);
            transform: translateX(-90);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateX(90);
            transform: translateX(90);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(150);
            transform: translateX(150);
  }
}

@keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-150);
            transform: translateX(-150);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-90);
            transform: translateX(-90);
  }
  80% {
    opacity: 1;
    -webkit-transform: translateX(90);
            transform: translateX(90);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(150);
            transform: translateX(150);
  }
}

.img-custom-anim-left {
  -webkit-animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
          animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@-webkit-keyframes img-anim-left {
  0% {
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes img-anim-left {
  0% {
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-right {
  -webkit-animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
          animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@-webkit-keyframes img-anim-right {
  0% {
    -webkit-transform: translateX(5%);
            transform: translateX(5%);
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes img-anim-right {
  0% {
    -webkit-transform: translateX(5%);
            transform: translateX(5%);
    -webkit-clip-path: inset(0 0 0 100%);
            clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.img-custom-anim-left {
  -webkit-animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
          animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    -webkit-transform: translateX(-5%);
            transform: translateX(-5%);
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@-webkit-keyframes img-anim-top {
  0% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes img-anim-top {
  0% {
    -webkit-transform: translateY(-5%);
            transform: translateY(-5%);
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@-webkit-keyframes img-anim-bottom {
  0% {
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes img-anim-bottom {
  0% {
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
    -webkit-clip-path: inset(100% 0 0 0);
            clip-path: inset(100% 0 0 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}

@keyframes cir36 {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes rounded {
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}

@keyframes rounded {
  50% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
}

@-webkit-keyframes up-down {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}

@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
            transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    -webkit-transform: rotateY(-90deg);
            transform: rotateY(-90deg);
  }
  25%,
  50% {
    opacity: 1;
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
}

@keyframes loaderspin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-webkit-keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes loaderspin {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@-webkit-keyframes loaderpulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes loaderpulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes rounded {
  50% {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
  }
}

@keyframes cir36 {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}

.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes ShapeAnim {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left 2000px;
  }
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left 2000px;
  }
}

/*-----------------------[ 6. Main Header CSS ]------------------------*/

.header-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
}

.header-main .main-menu ul {
  margin-bottom: 0;
}

.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  -webkit-margin-end: 30px;
          margin-inline-end: 30px;
}

@media (max-width: 1399px) {
  .header-main .main-menu ul li {
    -webkit-margin-end: 25px;
            margin-inline-end: 25px;
  }
}

.header-main .main-menu ul li:last-child {
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}

.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  font-family: "Satoshi", sans-serif;
  padding: 20px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.header-main .main-menu ul li a i {
  margin-left: 5px;
  font-size: 14px;
}

.header-main .main-menu ul li a:hover {
  color: var(--theme-color-2) !important;
}

.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 100%;
  inset-inline-start: 0;
  min-width: 250px;
  background: var(--white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  color: var(--header);
  -webkit-box-shadow: 0px 0px 40px 0px rgba(11, 13, 17, 0.08);
          box-shadow: 0px 0px 40px 0px rgba(11, 13, 17, 0.08);
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  padding: 30px 30px;
}

.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

.header-main .main-menu ul li .submenu li:not(:last-child) {
  padding-bottom: 15px;
}

.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
  padding: 0 0;
  padding-bottom: 0;
  padding-top: 0;
  text-transform: u;
  font-family: "Satoshi", sans-serif;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-main .main-menu ul li .submenu li a:hover {
  color: var(--white) !important;
}

.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}

.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 113%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme-color-2) !important;
}

.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme-color-2);
}

.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li:hover > a {
  color: var(--theme-color-2);
}

.header-main .main-menu ul li:hover > a::after {
  color: var(--theme-color-2);
}

.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

.header-main .header-right {
  gap: 40px;
}

@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}

.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
  color: var(--header);
}

.header-top-section {
  background: #172965;
  padding: 14px;
}

@media (max-width: 1199px) {
  .header-top-section {
    display: none;
  } 
}

.header-top-section .header-top-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-top-section .header-top-wrapper p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.header-top-section .header-top-wrapper p a {
  color: var(--white);
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  font-weight: 700;
}

.header-top-section .header-top-wrapper .top-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}

.header-top-section .header-top-wrapper .top-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

.header-top-section .header-top-wrapper .top-list li i {
  color: white;
}

.header-top-section .header-top-wrapper .top-list li a {
  color: rgba(255, 255, 255, 0.85);
}

.header-top-section.style-2 {
  background: #EFF7FF;
  padding: 0;
}

.header-top-section.style-2 .header-top-wrapper .top-list li i {
  color: var(--theme-color-2);
}

.header-top-section.style-2 .header-top-wrapper .top-list li a {
  color: #4b5563;
}

.header-top-section.style-2 .header-top-wrapper .top-list li p {
  color: #4b5563;
}

.header-top-section.style-2 .header-top-wrapper .form {
  position: relative;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 30px;
}

.header-top-section.style-2 .header-top-wrapper .social-icon {
  gap: 15px;
}

.header-top-section.style-2 .header-top-wrapper .social-icon a {
  color: var(--header);
}

.header-top-section.style-2 .header-top-wrapper .social-icon a:hover {
  color: var(--theme-color);
}

.header-1 .header-contact-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

@media (max-width: 1199px) {
  .header-1 .header-contact-info {
    display: none;
  }
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 9999;
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: var(---box-shadow);
          box-shadow: var(---box-shadow);
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme-color-2);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -webkit-transition: opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
  transition: opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out, -webkit-transform 0.45s ease-in-out;
  z-index: 99999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__logo a img {
  width: 150px;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}

.offcanvas__wrapper .offcanvas-title {
  font-size: 28px;
  margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content p {
  color: var(--header);
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color-2);
  position: relative;
  z-index: 9;
  cursor: pointer;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}

.offcanvas__wrapper .offcanvas__content .social-icon {
  margin-top: 30px;
  gap: 10px;
  margin-bottom: 30px;
}

.offcanvas__wrapper .offcanvas__content .social-icon a {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  font-size: 16px;
  border-radius: 50%;
  display: block;
  background: transparent;
  color: var(--header);
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.15);
}

.offcanvas__wrapper .offcanvas__content .social-icon a:hover {
  background-color: var(--theme-color-2);
  color: var(--white);
  border: 1px solid var(--theme-color-2);
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 350px;
  }
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}

.side_bar_hidden {
  visibility: hidden;
  opacity: 0;
  right: -30px;
}

.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--header);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}

.mean-container .mean-nav ul li a.border-none {
  border: none;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme-color);
}

.mean-container .mean-nav ul li a .head-icon {
  display: none;
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--theme-color);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
}

.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

@media (max-width: 1199px) {
  .mean-container .mean-nav ul li.menu-thumb {
    display: none;
  }
}

/*-----------------------[ 7. Hero Sections CSS ]------------------------*/
.hero-1 {
  padding: 0 0 0;
}

@media (max-width: 991px) {
  .hero-1 {
    padding-top: 120px;
  }
}

@media (max-width: 767px) {
  .hero-1 {
    padding-top: 50px;
  }
}

.hero-1 .hero-content {
  margin-bottom: 170px;
}

@media (max-width: 991px) {
  .hero-1 .hero-content {
    margin-bottom: 0;
  }
}

@media (max-width: 767px) {
  .hero-1 .hero-content {
    text-align: center;
  }
}

.hero-1 .hero-content h1 {
  color: #172965;
}

@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 40px;
  }
}

.hero-1 .hero-content p {
  font-size: 20px;
  margin-top: 15px;
}

@media (max-width: 1199px) {
  .hero-1 .hero-content p {
    font-size: 17px;
  }
  .hero-1 .hero-content p br {
    display: none;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-content p {
    font-size: 16px;
  }
}

@media (max-width: 1399px) {
  .hero-1 .hero-image {
    margin-left: -120px;
  }
}

@media (max-width: 1199px) {
  .hero-1 .hero-image {
    margin-left: -50px;
  }
}

@media (max-width: 991px) {
  .hero-1 .hero-image {
    margin-left: 0;
  }
  .hero-1 .hero-image img {
    width: 100%;
    height: 100%;
  }
}

.hero-2 .swiper-slide.swiper-slide-active .hero-bg {
  -webkit-transform: scale(1.35);
  transform: scale(1.35);
}

.hero-2 .swiper-slide.swiper-slide-active .hero-content {
  opacity: 1;
  -webkit-transform: translatey(0px);
          transform: translatey(0px);
  -webkit-transition: all 2500ms ease;
  transition: all 2500ms ease;
}

.hero-2 .swiper-slide.swiper-slide-active .hero-button {
  opacity: 1;
  -webkit-transform: translatey(0px);
          transform: translatey(0px);
  -webkit-transition: all 2500ms ease;
  transition: all 2500ms ease;
}

.hero-feature-wrapper {
  border-radius: 12px;
  background: var(--white);
  -webkit-box-shadow: 14px 18px 84px 82px rgba(6, 3, 48, 0.04);
          box-shadow: 14px 18px 84px 82px rgba(6, 3, 48, 0.04);
  max-width: 950px;
  margin-top: -200px;
  position: relative;
  z-index: 9;
  margin-left: auto;
}

@media (max-width: 1199px) {
  .hero-feature-wrapper {
    margin-top: -50px;
  }
}

@media (max-width: 991px) {
  .hero-feature-wrapper {
    padding: 30px;
  }
}

.hero-feature-wrapper .hero-feature-icon {
  padding: 30px 30px;
  border-right: 1px solid rgba(23, 41, 101, 0.15);
}

@media (max-width: 991px) {
  .hero-feature-wrapper .hero-feature-icon {
    border-right: none;
    padding: 0;
  }
}

.hero-feature-wrapper .hero-feature-icon .icon {
  margin-bottom: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.hero-feature-wrapper .hero-feature-icon .icon h4 {
  font-weight: 500;
}

.hero-feature-wrapper .hero-feature-icon.border-none {
  padding-left: 0;
  border-right: none;
}

/*-----------------------[ 8.Sections Two CSS ]------------------------*/

.feature-treatment-items {
  margin-top: 30px;
      padding: 30px;
    border: 1px solid;
    border-color: #000;
    border-radius: 16px;
}

.feature-treatment-items .feature-icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
  border-bottom: 1px solid rgba(12, 27, 43, 0.14);
  padding-bottom: 20px;
}

.feature-treatment-items .feature-icon-box i {
  color: var(--theme-color);
  font-size: 53px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.feature-treatment-items p {
  margin-top: 20px;
}

.feature-treatment-items:hover .feature-icon-box i {
  -webkit-transform: scaleX(-1) !important;
          transform: scaleX(-1) !important;
}

.feature-treatment-section {
  position: relative;
  z-index: 9;
}

.counter-wrapper {
  border-radius: 12px;
  background-color: var(--theme-color-2);
  padding: 80px 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 1399px) {
  .counter-wrapper {
    padding: 60px 50px;
  }
}

@media (max-width: 1199px) {
  .counter-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
    padding: 50px 40px;
  }
}

.counter-wrapper .counter-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  color: var(--white);
}

.counter-wrapper .counter-items .icon {
  width: 83px;
  height: 83px;
  line-height: 83px;
  border-radius: 50%;
  background-color: var(--white);
  text-align: center;
}

.counter-wrapper .counter-items h2 {
  font-size: 66px;
  color: var(--white);
}

@media (max-width: 1399px) {
  .counter-wrapper .counter-items h2 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .counter-wrapper .counter-items h2 {
    font-size: 40px;
  }
}

.vedio-bg-section {
  background-attachment: fixed;
}

.vedio-wrapper {
  padding: 200px 0;
  text-align: center;
  position: relative;
}

@media (max-width: 1199px) {
  .vedio-wrapper {
    padding: 120px 0;
  }
}

.vedio-wrapper .video {
  position: relative;
}

.vedio-wrapper .video .video-btn {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 100px;
  background-color: var(--white);
  color: var(--theme-color);
  display: inline-block;
  text-align: center;
  font-size: 20px;
}

.why-choose-us-wrapper-3 {
  margin-top: 60px;
}

.why-choose-us-wrapper-3 .why-choose-us-box-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  border-radius: 12px;
  background-color: var(--theme-color-2);
  padding: 35px 40px 35px 30px;
  position: relative;
}

@media (max-width: 1199px) {
  .why-choose-us-wrapper-3 .why-choose-us-box-3 {
    padding: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .why-choose-us-wrapper-3 .why-choose-us-box-3 {
    padding: 25px;
  }
}

.why-choose-us-wrapper-3 .why-choose-us-box-3 .shape {
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 1199px) {
  .why-choose-us-wrapper-3 .why-choose-us-box-3 .shape {
    display: none;
  }
}

@media (max-width: 1199px) {
  .why-choose-us-wrapper-3 .why-choose-us-box-3 .why-choose-us-image {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}

.why-choose-us-wrapper-3 .why-choose-us-box-3 .why-choose-us-image img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

.why-choose-us-wrapper-3 .why-choose-us-box-3 .why-choose-us-content h2 {
  color: var(--white);
}

.why-choose-us-wrapper-3 .why-choose-us-box-3 .why-choose-us-content h5 {
  color: var(--white);
  margin-bottom: 10px;
}

.why-choose-us-wrapper-3 .why-choose-us-box-3 .why-choose-us-content p {
  color: var(--white);

}

.why-choose-us-wrapper-3 .why-choose-us-image img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

.why-choose-us-section-3 {
  position: relative;
}

.feature-box-items-3 {
  background-color: var(--white);
  border-radius: 6px;
  -webkit-box-shadow: 14px 18px 84px 82px rgba(6, 3, 48, 0.03);
          box-shadow: 14px 18px 84px 82px rgba(6, 3, 48, 0.03);
  padding: 30px 25px;
}

@media (max-width: 1199px) {
  .feature-box-items-3 {
    padding: 25px 18px;
  }
}

.feature-box-items-3 .feature-icon-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  align-items: center;
}

@media (max-width: 1199px) {
  .feature-box-items-3 .feature-icon-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.feature-box-items-3 .feature-icon-item .content h3 {
  margin-bottom: 15px;
}

@media (max-width: 1600px) {
  .feature-box-items-3 .feature-icon-item .content h3 {
    font-size: 20px;
  }
}

.feature-box-items-3 .feature-icon-item .content p {
  /*max-width: 251px;*/
  font-size: 18px;
  font-weight: 400;
}

@media (max-width: 1600px) {
  .feature-box-items-3 .feature-icon-item .content p {
    font-size: 15px;
  }
}

.feature-section-3 {
  margin-bottom: -20px;
}

.feature-section-3 .container-fluid {
  padding: 0 140px;
}

@media (max-width: 1199px) {
  .feature-section-3 .container-fluid {
    padding: 0 60px;
  }
}

@media (max-width: 991px) {
  .feature-section-3 .container-fluid {
    padding: 0 50px;
  }
}

@media (max-width: 767px) {
  .feature-section-3 .container-fluid {
    padding: 0 40px;
  }
}

@media (max-width: 575px) {
  .feature-section-3 .container-fluid {
    padding: 0 30px;
  }
}

.process-section-3 {
  position: relative;
}

.why-choose-us-section-5 {
  position: relative;
  z-index: 9;
}

.why-choose-us-section-5::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #1C235B;
  z-index: -1;
  /*height: 74%;*/
}

@media (max-width: 1199px) {
  .why-choose-us-section-5::before {
    height: 100%;
  }
}

.why-choose-us-wrapper-5 .why-choose-us-content .text {
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
  margin-top: 30px;
}

.why-choose-us-wrapper-5 .why-choose-us-content .why-choose-us-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
  margin-top: 60px;
  margin-bottom: 60px;
}

@media (max-width: 1199px) {
  .why-choose-us-wrapper-5 .why-choose-us-content .why-choose-us-item {
    margin-top: 30px;
    margin-bottom: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
  }
}

.why-choose-us-wrapper-5 .why-choose-us-content .why-choose-us-item .why-choose-us-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.why-choose-us-wrapper-5 .why-choose-us-content .why-choose-us-item .why-choose-us-icon .content h5 {
  color: var(--white);
}

.why-choose-us-wrapper-5 .why-choose-us-image {
  position: relative;
  margin-left: 40px;
}

@media (max-width: 1199px) {
  .why-choose-us-wrapper-5 .why-choose-us-image {
    margin-right: 0;
  }
}

.why-choose-us-wrapper-5 .why-choose-us-image .shape {
  position: absolute;
  left: -20px;
  top: 250px;
}

@media (max-width: 1199px) {
  .why-choose-us-wrapper-5 .why-choose-us-image .shape {
    top: 90px;
  }
}

@media (max-width: 991px) {
  .why-choose-us-wrapper-5 .why-choose-us-image .shape {
    top: 300px;
  }
}

@media (max-width: 575px) {
  .why-choose-us-wrapper-5 .why-choose-us-image .shape {
    top: 90px;
  }
}

.why-choose-us-wrapper-5 .why-choose-us-image img {
  width: 100%;
  height: 100%;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@-webkit-keyframes scrolly {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-60%);
            transform: translateY(-60%);
  }
}

@keyframes scrolly {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-60%);
            transform: translateY(-60%);
  }
}

@-webkit-keyframes scrollRight {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

@keyframes scrollRight {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.process-section-3 .process-dot .swiper-pagination-bullet {
  width: 250px;
  height: 3px;
  border-radius: 4px;
  background: rgba(2, 201, 184, 0.22);
  opacity: 1;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  margin: 0 !important;
}

@media (max-width: 1399px) {
  .process-section-3 .process-dot .swiper-pagination-bullet {
    display: none;
  }
}

.process-section-3 .process-dot .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--theme-color-2);
}


/*-----------------------[ 9.Sections Three CSS ]------------------------*/

.about-wrapper .about-image {
  max-width: 515px;
  position: relative;
}

@media (max-width: 991px) {
  .about-wrapper .about-image {
    max-width: 800px;
  }
}

.about-wrapper .about-image img {
  width: 100%;
  height: 100%;
}

.about-wrapper .about-image .about-img-2 {
  max-width: 533px;
  position: absolute;
  bottom: -90%;
  left: 10%;
  z-index: 1;
}

@media (max-width: 991px) {
  .about-wrapper .about-image .about-img-2 {
    bottom: 0;
    left: 0;
    max-width: 250px;
  }
}

@media (max-width: 575px) {
  .about-wrapper .about-image .about-img-2 {
    max-width: 140px;
  }
}

.about-wrapper .about-image .about-img-2 img {
  border: 10px solid var(--white);
  border-radius: 8px;
}

.about-wrapper .about-image .about-img-3 {
  max-width: 275px;
  position: absolute;
  top: 107px;
  right: -120px;
}

@media (max-width: 991px) {
  .about-wrapper .about-image .about-img-3 {
    right: 0;
    top: 0;
  }
}

@media (max-width: 767px) {
  .about-wrapper .about-image .about-img-3 {
    max-width: 180px;
  }
}

@media (max-width: 470px) {
  .about-wrapper .about-image .about-img-3 {
    max-width: 120px;
  }
}

.about-wrapper .about-image .about-img-3 img {
  border: 10px solid var(--white);
  border-radius: 8px;
}

.about-wrapper .about-content {
  margin-left: 110px;
}

@media (max-width: 991px) {
  .about-wrapper .about-content {
    margin-left: 0;
  }
}

.about-wrapper .about-content .about-text {
  margin-top: 25px;
}

.about-wrapper .about-content .about-icon-area {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
}

@media (max-width: 1199px) {
  .about-wrapper .about-content .about-icon-area {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}

.about-wrapper .about-content .about-icon-area .about-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}

.about-wrapper .about-content .list-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 50px;
}

@media (max-width: 1199px) {
  .about-wrapper .about-content .list-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
  }
}

.about-wrapper .about-content .list-box ul li {
  color: #454E59;
  font-size: 18px;
  font-weight: 500;
}

.about-wrapper .about-content .list-box ul li i {
  color: var(--theme-color);
  margin-right: 5px;
}

.about-wrapper .about-content .list-box ul li:not(:last-child) {
  margin-bottom: 15px;
}

.about-wrapper .about-content .about-btn {
  margin-top: 50px;
}

.about-section {
  position: relative;
}

.about-wrapper-3 .about-left-item .about-image {
  margin-bottom: 60px;
  max-width: 600px;
}

@media (max-width: 1199px) {
  .about-wrapper-3 .about-left-item .about-image {
    margin-bottom: 30px;
    max-width: initial;
  }
}

.about-wrapper-3 .about-left-item .about-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.about-wrapper-3 .about-left-item h5 {
  font-weight: 500;
}

.about-wrapper-3 .about-left-item .about-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 60px;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .about-wrapper-3 .about-left-item .about-list-item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 15px;
  }
}

.about-wrapper-3 .about-left-item .about-list-item .list li {
  font-size: 18px;
  font-weight: 500;
}

.about-wrapper-3 .about-left-item .about-list-item .list li i {
  margin-right: 5px;
  color: var(--theme-color);
}

.about-wrapper-3 .about-left-item .about-list-item .list li:not(:last-child) {
  margin-bottom: 15px;
}

.about-wrapper-3 .about-content .about-text {
  max-width: 702px;
  margin-top: 30px;
}

.about-wrapper-3 .about-content .about-icon-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
  margin-top: 40px;
  margin-bottom: 55px;
}

@media (max-width: 1199px) {
  .about-wrapper-3 .about-content .about-icon-items {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px;
  }
}

.about-wrapper-3 .about-content .about-icon-items .icon-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

@media (max-width: 1199px) {
  .about-wrapper-3 .about-content .about-icon-items .icon-item {
    gap: 10px;
  }
}

.about-wrapper-3 .about-content .about-image-2 {
  position: relative;
}

.about-wrapper-3 .about-content .about-image-2 img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.about-section-3 {
  position: relative;
}


/*-----------------------[ 10.Sections Four CSS ]------------------------*/
.service-wrapper .nav {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.service-wrapper .nav .nav-item .nav-link {
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 24px;
  font-weight: 500;
  color: var(--header);
  font-family: "Helvetica Neue", sans-serif;
  border-radius: 4px;
  padding-left: 25px;
}

.service-wrapper .nav .nav-item .nav-link i {
  width: 61px;
  height: 61px;
  line-height: 61px;
  border-radius: 4px;
  background-color: var(--theme-color);
  text-align: center;
  color: var(--white);
}

.service-wrapper .nav .nav-item .nav-link.active {
  background-color: var(--theme-color);
  color: var(--white);
}

.service-wrapper .nav .nav-item .nav-link.active i {
  background-color: var(--white);
  color: var(--theme-color);
}

.service-wrapper .service-box-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 4px;
  background: #182D3E;
  padding: 30px;
  margin-top: 30px;
  gap: 20px;
  position: relative;
  z-index: 9;
  padding-left: 50px;
  margin-left: 40px;
}

@media (max-width: 1399px) {
  .service-wrapper .service-box-items {
    padding: 20px;
    margin-left: 0;
  }
}

@media (max-width: 1199px) {
  .service-wrapper .service-box-items {
    display: block;
  }
}

@media (max-width: 1199px) {
  .service-wrapper .service-box-items .service-icon-box {
    margin-bottom: 20px;
  }
}

.service-wrapper .service-box-items .service-icon-box .icon {
  width: 94px;
  height: 94px;
  line-height: 105px;
  text-align: center;
  background: var(--theme-color-2);
  border-radius: 50px;
}

.service-wrapper .service-box-items .service-icon-box .icon i {
  font-size: 45px;
  color: var(--white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.service-wrapper .service-box-items .service-icon-box h3 {
  margin-top: 60px;
}

@media (max-width: 1199px) {
  .service-wrapper .service-box-items .service-icon-box h3 {
    margin-top: 30px;
  }
}

.service-wrapper .service-box-items .service-icon-box h3 a {
  color: var(--white);
}

.service-wrapper .service-box-items .service-icon-box h3 a:hover {
  color: var(--theme-color);
}

.service-wrapper .service-box-items .service-icon-box p {
  color: var(--white);
  margin-top: 10px;
  font-size: 16px;
}

.service-wrapper .service-box-items .service-image {
  position: relative;
}

.service-wrapper .service-box-items .service-image img {
  width: 100%;
  height: 100%;
  border-radius: 4px;
}

.service-wrapper .service-box-items .service-image .post-box {
  display: inline-block;
  background-color: var(--theme-color);
  color: var(--white);
  padding: 12px 18px;
  line-height: 1;
  border-radius: 4px;
  position: absolute;
  top: 14px;
  left: 14px;
}

.service-wrapper .service-box-items:hover .service-icon-box .icon i {
  -webkit-transform: scaleX(-1) !important;
          transform: scaleX(-1) !important;
}

.service-section {
  position: relative;
}

.service-box-items-2 {
  border-radius: 12px;
  background: #051828;
  padding: 40px 29px;
  margin-top: 30px;
}

@media (max-width: 575px) {
  .service-box-items-2 {
    padding: 24px;
  }
}

.service-box-items-2 h3 {
  margin-top: 40px;
}

@media (max-width: 575px) {
  .service-box-items-2 h3 {
    margin-top: 25px;
  }
}

.service-box-items-2 h3 a {
  color: var(--white);
}

.service-box-items-2 .service-btn {
  margin-top: 35px;
}

@media (max-width: 575px) {
  .service-box-items-2 .service-btn {
    margin-top: 25px;
  }
}

.service-box-items-2:hover {
  border-radius: 12px;
  background: var(--theme-color-2);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: #fff;
}

.service-box-items-2.style-2 {
  background-color: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(5, 24, 40, 0.19);
}

.service-box-items-2.style-2 h3 a {
  color: var(--header);
}

.service-box-items-2.style-2:hover {
  background: var(--theme-color-2);
}

.service-box-items-2.style-2:hover h3 a {
  color: var(--white);
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image {
  position: relative;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content {
  position: absolute;
  padding: 25px;
  bottom: 25px;
  left: 25px;
  right: 25px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content .icon {
  font-size: 70px;
  color: var(--white);
  margin-bottom: 35px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content h3 {
  margin-top: 15px;
}

.service-details-wrapper .service-details-sidebar .sidebar-widget-image .content h3 a {
  color: var(--white);
  font-size: 30px;
  font-weight: 500;
}

.service-details-wrapper .service-details-right-items h3 {
  font-size: 28px;
  margin-top: 20px;
}

.service-details-wrapper .service-details-right-items p {
  margin-top: 10px;
  font-size: 16px;
}

.service-details-wrapper .service-details-right-items h4 {
  font-size: 22px;
  font-weight: 500;
  margin-top: 20px;
}

.service-details-wrapper .service-details-right-items .list-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .service-details-wrapper .service-details-right-items .list-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}

.service-details-wrapper .service-details-right-items .list-box ul li {
  color: #454E59;
  font-size: 18px;
  font-weight: 500;
}

.service-details-wrapper .service-details-right-items .list-box ul li i {
  color: var(--theme-color);
  margin-right: 5px;
}

.service-details-wrapper .service-details-right-items .list-box ul li:not(:last-child) {
  margin-bottom: 15px;
}

.service-details-wrapper .service-details-right-items .pricing-plan {
  margin-top: 20px;
}

.service-details-wrapper .service-details-right-items .pricing-plan .pricing-plan-list {
  background-color: var(--white);
}

.service-details-wrapper .service-details-right-items .pricing-plan .pricing-plan-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  border-bottom: 1px dashed #CCC;
  padding: 20px 0;
  gap: 30px;
}

.service-details-wrapper .service-details-right-items .pricing-plan .pricing-plan-list li .pricing-content h6 {
  font-size: 18px;
  font-weight: 400;
}

.service-details-wrapper .service-details-right-items .pricing-plan .pricing-plan-list li span {
  font-size: 18px;
  font-weight: 400;
  color: var(--theme-color);
  line-height: 1;
}

.service-details-wrapper .service-details-right-items .pricing-plan .pricing-plan-list li:not(:last-child) {
  border-bottom: 1px dashed #CCC;
}
/*-----------------------[ 24.Shop CSS ]------------------------*/

/*-----------------------[ 21.Project CSS ]------------------------*/
.project-items {
  margin-top: 30px;
}

.project-items .project-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.project-items .project-content {
  border-radius: 12px;
  background: var(--white);
  -webkit-box-shadow: 14px 18px 84px 82px rgba(6, 3, 48, 0.04);
          box-shadow: 14px 18px 84px 82px rgba(6, 3, 48, 0.04);
  padding: 32px 37px;
  border-left: 3px solid var(--theme-color);
  max-width: 610px;
  margin: 0 30px;
  position: relative;
  z-index: 9;
  margin-top: -55px;
}

.project-items .project-content h6 {
  color: var(--theme-color-2);
  line-height: 200%;
}

.project-items .project-content h3 a:hover {
  color: var(--theme-color);
}

.project-section {
  position: relative;
  z-index: 9;
}

::-webkit-scrollbar {
  width: 6px;
  height: 4px;
}

/* Track */
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 5px var(--theme-color);
          box-shadow: inset 0 0 5px var(--theme-color);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ripple {
  position: relative;
}

.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100px;
  height: 100px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
          box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.9);
  -webkit-animation: rippleOne 3s infinite;
          animation: rippleOne 3s infinite;
}

.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.swiper-dot .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  background: var(--theme-color);
  opacity: 1;
  border-radius: 7px;
}

.swiper-dot .swiper-pagination-bullet:not(:last-child) {
  margin-right: 15px;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  -webkit-transition: 0.6s;
  transition: 0.6s;
  position: relative;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 22px;
  height: 22px;
  line-height: 22px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: transparent;
  border: 1px solid var(--theme-color);
  content: "";
}

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

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

.sticky-style {
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 100px;
}

.team-box-items {
  margin-top: 30px;
}

.team-box-items .team-image {
  position: relative;
}

.team-box-items .team-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.team-box-items .team-image .post-box {
  border-radius: 4px;
  display: inline-block;
  background-color: var(--theme-color);
  padding: 12px 18px;
  color: var(--white);
  position: absolute;
  bottom: 20px;
  left: 15px;
  line-height: 1;
}

.team-box-items .team-content {
  margin-top: 20px;
}

.team-box-items .team-content h3 {
  margin-bottom: 10px;
}

.team-box-items .team-content h3 a:hover {
  color: var(--theme-color);
}



.choose-us-wrapper .faq-items .accordion-item {
  border-radius: 0;
  margin-top: 0;
  border: none;
  border-bottom: 1px solid rgba(58, 54, 54, 0.32);
  padding: 15px 0;
}

.choose-us-wrapper .faq-items .accordion-item .accordion-header .accordion-button {
  font-size: 20px;
  font-weight: 500;
  color: var(--header);
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  background-color: var(--white);
  padding: 10px 0;
  text-transform: capitalize;
  border-radius: 0;
  font-family: "Helvetica Neue", sans-serif;
}

.choose-us-wrapper .faq-items .accordion-item .accordion-body {
  background-color: var(--white) !important;
  font-size: 16px;
  font-weight: 400;
  color: #4B5563;
  padding: 0;
  border-radius: 0;
}

.choose-us-wrapper .choose-us-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.counter-section {
  position: relative;
  z-index: 9;
}

.counter-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  height: 50%;
  z-index: -1;
}

.cta-newsletter-wrapper {
  background-color: var(--theme-color);
  padding: 30px 44px;
  border-radius: 12px;
}

.cta-newsletter-wrapper .section-title span {
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.11);
  color: var(--white);
}

.cta-newsletter-wrapper .section-title h2 {
  font-size: 32px;
  color: var(--white);
}

@media (max-width: 767px) {
  .cta-newsletter-wrapper .section-title h2 {
    font-size: 28px;
    line-height: 1.4;
  }
}

.cta-newsletter-wrapper .form-content {
  margin-left: 25px;
  margin-right: 25px;
}

@media (max-width: 1199px) {
  .cta-newsletter-wrapper .form-content {
    margin-left: 0;
    margin-right: 0;
  }
}

.cta-newsletter-wrapper .form-content form {
  position: relative;
}

.cta-newsletter-wrapper .form-content form input {
  width: 100%;
  background-color: var(--white);
  border-radius: 40px;
  background: #F7F9FB;
  padding: 20px 30px;
  border: none;
  outline: none;
  line-height: 1;
  color: var(--text);
}

@media (max-width: 767px) {
  .cta-newsletter-wrapper .form-content form input {
    padding: 15px 25px;
    font-size: 16px;
  }
}

.cta-newsletter-wrapper .form-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 15px;
}

.cta-newsletter-wrapper .form-content p a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: underline;
}

@media (max-width: 1399px) {
  .cta-newsletter-wrapper img {
    width: 100%;
    height: 100%;
  }
}

.cta-newsletter-wrapper.style-2 {
  padding: 60px;
  position: relative;
  z-index: 9;
}

@media (max-width: 575px) {
  .cta-newsletter-wrapper.style-2 {
    padding: 40px 30px;
  }
}

.cta-newsletter-wrapper.style-2 .form-content {
  max-width: 685px;
  margin: 30px auto 0;
}

.cta-newsletter-section {
  position: relative;
  z-index: 9;
}

.cta-newsletter-section::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  z-index: -1;
  height: 50%;
}

.testimonial-section-2 {
  position: relative;
  z-index: 9;
}

.testimonial-wrapper-2 .testimonial-image {
  max-width: 507px;
  position: relative;
  margin-left: 100px;
}

@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-image {
    margin-left: 0;
  }
}

.testimonial-wrapper-2 .testimonial-image img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
}

.testimonial-wrapper-2 .testimonial-image .counter-box {
  background-color: var(--theme-color);
  border-radius: 12px;
  display: inline-block;
  padding: 40px;
  position: absolute;
  bottom: 67px;
  left: -89px;
}

@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-image .counter-box {
    left: 0;
    bottom: 0;
  }
}

.testimonial-wrapper-2 .testimonial-image .counter-box h2 {
  color: var(--white);
}

.testimonial-wrapper-2 .testimonial-image .counter-box p {
  color: var(--white);
}

.testimonial-wrapper-2 .testimonial-content .star-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-top: 25px;
}

.testimonial-wrapper-2 .testimonial-content .star-items .star {
  color: var(--theme-color-5);
}

@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonial-content .star-items {
    display: block;
  }
}

.testimonial-wrapper-2 .testimonial-content .testimonial-box-items {
  border-radius: 12px;
  border-top: 1px solid rgba(6, 3, 48, 0.09);
  border-right: 1px solid rgba(6, 3, 48, 0.09);
  border-bottom: 7px solid rgba(6, 3, 48, 0.09);
  border-left: 1px solid rgba(6, 3, 48, 0.09);
  background: var(--white);
  padding: 50px 45px;
  margin-bottom: 25px;
}

@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-content .testimonial-box-items {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonial-content .testimonial-box-items {
    padding: 40px 35px;
  }
}

@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-content .testimonial-box-items {
    padding: 30px;
  }
}

.testimonial-wrapper-2 .testimonial-content .testimonial-box-items h5 {
  font-size: 18px;
  font-weight: 400;
  color: var(--text);
}

@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-content .testimonial-box-items h5 {
    font-size: 16px;
  }
}

.testimonial-wrapper-2 .testimonial-content .testimonial-box-items .client-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  position: relative;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .testimonial-wrapper-2 .testimonial-content .testimonial-box-items .client-info {
    margin-top: 30px;
  }
}

.testimonial-wrapper-2 .testimonial-content .testimonial-box-items .client-info h6 {
  font-size: 18px;
  font-weight: 500;
}

.testimonial-wrapper-2 .testimonial-content .testimonial-box-items .client-info p {
  font-size: 16px;
}

.testimonial-wrapper-2 .testimonial-content .testimonial-box-items .client-info .quote-img {
  position: absolute;
  right: 10px;
  bottom: 0px;
}

@media (max-width: 575px) {
  .testimonial-wrapper-2 .testimonial-content .testimonial-box-items .client-info .quote-img {
    position: static;
  }
}

.testimonial-wrapper-2 .testimonial-box-area {
  max-height: 560px;
  overflow-y: auto;
  padding-right: 50px;
  margin-top: 30px;
}

@media (max-width: 1199px) {
  .testimonial-wrapper-2 .testimonial-box-area {
    padding-right: 0;
    max-height: initial;
    overflow-y: initial;
  }
}


/*-----------------------[ 20.Blog Page CSS ]------------------------*/

.news-box-items-2 {
  border-radius: 12px;
  border-top: 1px solid rgba(6, 3, 48, 0.09);
  border-right: 1px solid rgba(6, 3, 48, 0.09);
  border-bottom: 7px solid rgba(6, 3, 48, 0.09);
  border-left: 1px solid rgba(6, 3, 48, 0.09);
  background: var(--white);
  padding: 15px;
  margin-top: 30px;
}

.news-box-items-2 .news-img img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}

.news-box-items-2 .news-content {
  padding: 10px;
  margin-top: 10px;
}

.news-box-items-2 .news-content h3 {
  margin-top: 10px;
}

@media (max-width: 1199px) {
  .news-box-items-2 .news-content h3 {
    font-size: 20px;
  }
}

.news-box-items-2 .news-content h3 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-box-items-2 .news-content h3 a:hover {
  color: var(--theme-color);
  background-size: 100% 2px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--theme-color)), to(var(--theme-color)));
  background-image: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color) 100%);
}

.news-box-items-2 .news-content p {
  margin-top: 8px;
  font-size: 16px;
}

.news-wrapper-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

@media (max-width: 1199px) {
  .news-wrapper-4 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
    width: 100% !important;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.news-wrapper-4 .news-image-items {
  margin-top: 30px;
}

.news-wrapper-4 .news-image-items .content {
  margin-top: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 8px;
  position: relative;
  z-index: 99;
}

.news-wrapper-4 .news-image-items .content span {
  font-size: 16px;
  font-weight: 400;
  color: var(--theme-color);
  margin-bottom: 5px;
  position: relative;
  padding-left: 35px;
  display: inline-block;
}

.news-wrapper-4 .news-image-items .content span::before {
  width: 24px;
  height: 1px;
  line-height: 4px;
  position: absolute;
  top: 15px;
  left: 0;
  content: "";
  background-color: var(--theme-color);
}

.news-wrapper-4 .news-image-items .content h4 {
  font-weight: 500;
  font-size: 18px;
}

.news-wrapper-4 .news-image-items .content h4 a {
  background-position: 0 95%;
  background-repeat: no-repeat;
  background-size: 0% 2px;
  display: inline;
}

.news-wrapper-4 .news-image-items .content h4 a:hover {
  color: var(--theme-color);
  background-size: 100% 2px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--theme-color)), to(var(--theme-color)));
  background-image: linear-gradient(180deg, var(--theme-color) 0%, var(--theme-color) 100%);
}

.news-wrapper-4 .news-image-items.active .content {
  max-width: initial;
  position: relative;
  z-index: 99;
}

.news-wrapper-4 .news-image-items.active .content h4 {
  font-size: 20px;
}

/*-----------------------[ 21.Blog Details CSS ]------------------------*/


/*-----------------------[ 22. Appointment CSS ]------------------------*/

/*-----------------------[ 22.Contact CSS ]------------------------*/

/*-----------------------[ 30.Footer CSS ]------------------------*/
.footer-widget-wrapper {
  padding: 90px 0 120px;
  position: relative;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper {
    padding: 70px 0 100px;
  }
}

@media (max-width: 991px) {
  .footer-widget-wrapper {
    padding: 50px 0 80px;
  }
}

.footer-widget-wrapper .single-footer-widget-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 1399px) {
  .footer-widget-wrapper .single-footer-widget-area {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 100px;
  }
}

.footer-widget-wrapper .single-footer-widget {
  margin-top: 30px;
  padding-top: 50px;
}

@media (max-width: 1199px) {
  .footer-widget-wrapper .single-footer-widget {
    padding-top: 0;
  }
}

.footer-widget-wrapper .single-footer-widget.style-bg-white {
  position: relative;
  z-index: 99;
  padding: 45px 25px;
}

.footer-widget-wrapper .single-footer-widget.style-bg-white ul {
  margin-top: 30px;
}

.footer-widget-wrapper .single-footer-widget.style-bg-white ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 15px;
}

.footer-widget-wrapper .single-footer-widget.style-bg-white ul li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-widget-wrapper .single-footer-widget.style-bg-white .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .footer-widget-wrapper .single-footer-widget.style-bg-white .icon {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    vertical-align: middle;
    text-align: center;
    margin: 25px auto 0px;
    width: 250px;
  }
}

.footer-widget-wrapper .single-footer-widget.style-bg-white .icon p {
  font-size: 16px;
}

.footer-widget-wrapper .single-footer-widget.style-bg-white .icon h4 {
  font-weight: 500;
  font-size: 18px;
  font-family: "Satoshi", sans-serif;
  text-decoration: underline;
}

.footer-widget-wrapper .single-footer-widget.style-bg-white::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  z-index: -1;
  border-radius: 12px;
}

.footer-widget-wrapper .single-footer-widget.style-bg-white .widget-head {
  padding-bottom: 0;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .footer-widget-wrapper .single-footer-widget.style-bg-white .widget-head {
    text-align: center;
  }
}

.footer-widget-wrapper .single-footer-widget.style-bg-white .widget-head::before {
  display: none;
}

.footer-widget-wrapper .single-footer-widget .widget-head {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget-wrapper .single-footer-widget .widget-head::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  background-color: var(--theme-color);
  height: 3px;
  width: 57px;
}

.footer-widget-wrapper .single-footer-widget .widget-head h3 {
  font-size: 20px;
  color: var(--white);
  font-weight: 500;
}

.footer-widget-wrapper .single-footer-widget .list-area li {
  font-weight: 500;
  font-size: 16px;
}

.footer-widget-wrapper .single-footer-widget .list-area li:not(:last-child) {
  margin-bottom: 32px;
}

.footer-widget-wrapper .single-footer-widget .list-area li a {
  color: var(--white);
  position: relative;
}

.footer-widget-wrapper .single-footer-widget .list-area li a:hover {
  color: var(--theme-color);
}

.footer-widget-wrapper .single-footer-widget .list-area li a:hover::before {
  background-color: var(--theme-color);
}

.footer-widget-wrapper .single-footer-widget .footer-contect {
  margin-top: 30px;
}

.footer-widget-wrapper .single-footer-widget .footer-contect li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  font-size: 16px;
}

.footer-widget-wrapper .single-footer-widget .footer-contect li i {
  font-size: 20px;
  color: var(--theme-color);
}

.footer-widget-wrapper .single-footer-widget .footer-contect li .content p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-widget-wrapper .single-footer-widget .footer-contect li .content p a {
  color: rgba(255, 255, 255, 0.8);
}

.footer-widget-wrapper .single-footer-widget .footer-contect li:not(:last-child) {
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .footer-widget-wrapper .single-footer-widget .footer-content > p {
    text-align: center !important;
  }
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon {
  gap: 16px;
  margin-top: 30px;
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon a {
  background-color: rgba(255, 255, 255, 0.12);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  display: inline-block;
}

.footer-widget-wrapper .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 18px 0;
}

.footer-bottom .footer-bottom-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 767px) {
  .footer-bottom .footer-bottom-wrapper {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 25px;
  }
}

.footer-bottom .footer-bottom-wrapper p {
  color: var(--white);
  font-size: 16px;
}

.footer-bottom .footer-bottom-wrapper .social-icon {
  gap: 16px;
}

.footer-bottom .footer-bottom-wrapper .social-icon a {
  background-color: rgba(255, 255, 255, 0.12);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  color: var(--white);
  display: inline-block;
}

.footer-bottom .footer-bottom-wrapper .social-icon a:hover {
  background-color: var(--theme-color);
}

.footer-section {
  position: relative;
  z-index: 9;
}

.contenedor{
   display: flex;
  justify-content: center; /* centra horizontalmente */
  align-items: center;     /* centra verticalmente */
  margin-bottom: 30px;

}

.contenedor img {
  max-width: 100%;
  height: auto;
}
.mt-30{
  margin-top: 30px;
}

.icon-container {
  display: flex;
  justify-content: center; /* centra horizontalmente */
  align-items: center;     /* centra verticalmente */
  height: 300px;           /* define altura del contenedor */
  background-color: #f0f0f0; /* opcional para visualizar el área */
  border-radius: 16px;
}

.icon-container i {
  font-size: 48px; /* tamaño del ícono */
  color: #333;     /* color del ícono */
}
.bg-red{
  background-color: #ffbf86;
  padding: 30px;
}
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 500;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: transform 0.2s;
    text-decoration: none;
      }

      .wa-float svg {
    width: 26px;
    height: 26px;
    fill: #fff;  }

.wa-float:hover {
  transform: scale(1.08);
}
