/*CSS Table Of Content Ends Here*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&amp;display=swap");

:root {
  --body: #fff;
  --black: #020842;
  --black-2: #020842;
  --white: #fff;
  --white-2: #EAF0FF;
  --white-3: rgba(255, 255, 255, 0.75);
  --theme: #1f57f4;
  --theme-2: #173fa5;
  --theme-3: #0B163B;
  --theme-4: #A347FF;
  --header: #020842;
  --base: #C7D31C;
  --text: #49515B;
  --text-2: #636D6C;
  --border: rgba(255, 255, 255, 0.12);
  --border-2: rgba(4, 11, 41, 0.17);
  --ratting: #F8BC26;
  --bg: #F3F8FF;
  ---box-shadow: 11px 15px 79.9px 48px rgba(10, 6, 68, 0.05);
}

.theme-btn {
  position: relative;
  z-index: 2;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: capitalize;
  text-align: center;
  background: linear-gradient(135deg, #020b2d 0%, #0d3eb5 100%);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  padding: 18px 35px;
  max-height: 54px;
  border-radius: 4px;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  -webkit-appearance: none;
  outline: none !important;
  overflow: hidden;
  cursor: pointer;
}

.theme-btn.theme-btn-2 {
  background: linear-gradient(135deg, #020b2d 0%, #0d3eb5 100%);
  ;
}

.theme-btn.trasparent-btn {
  background: transparent;
  border: 1px solid var(--theme);
  color: var(--theme-2);
  border-radius: 4px;
}

.theme-btn.trasparent-btn::before,
.theme-btn.trasparent-btn::after {
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
}

.theme-btn.trasparent-btn:hover {
  color: var(--white);
}

.theme-btn.trasparent-btn-2 {
  background: transparent;
  border: 1px solid var(--theme-4);
  color: var(--theme-4);
  border-image-slice: 1;
  border-radius: 4px;
}

.theme-btn.white-btn {
  background: var(--white);
  color: var(--black-2);
}

.theme-btn.white-btn::before,
.theme-btn.white-btn::after {
  background-color: var(--black-2);
}

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

.theme-btn.black-btn::before,
.theme-btn.black-btn::after {
  background-color: var(--black-2);
}

.theme-btn.black-btn:hover {
  color: var(--white);
}

.theme-btn::before,
.theme-btn::after {
  content: "";
  width: 50%;
  height: 0%;
  position: absolute;
  background-color: var(--white);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  z-index: -1;
}

.theme-btn::before {
  top: 0%;
  right: 0%;
}

.theme-btn::after {
  left: 0%;
  bottom: 0%;
}

.theme-btn:hover::before,
.theme-btn:hover::after {
  width: 100%;
  height: 100%;
}

.theme-btn:hover {
  color: var(--theme-2);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

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

.container-fluid {
  padding: 0 70px;
}

@media (max-width: 450px) {
  .container-fluid {
    padding: 0 10px;
  }
}

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

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0px;
  padding: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-weight: 700;
  font-family: "Montserrat", serif;
  color: var(--black-2);
  letter-spacing: -0.2px;
}

h1 {
  font-size: 80px;
  line-height: 120%;
}

h2 {
  font-size: 60px;
  line-height: 130%;
}

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

@media (max-width: 767px) {
  h2 {
    font-size: 36px;
  }
}

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

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

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

h4 {
  font-size: 20px;
  line-height: 137%;
}

h5 {
  font-size: 18px;
  line-height: 150%;
}

h6 {
  font-size: 16px;
  line-height: 145%;
}



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

p {
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  line-height: 30px;
  margin: 0px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

/* =========================================
HOME LOADER
========================================= */

#sc-home-loader {
  position: fixed;
  inset: 0;

  width: 100%;
  height: 100vh;

  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 999999;

  transition:
    opacity .45s ease,
    visibility .45s ease;
}



/* HIDE */

#sc-home-loader.hide-loader {

  opacity: 0;
  visibility: hidden;
}



/* INNER */

.sc-home-loader-inner {

  width: 220px;

  text-align: center;
}



/* LOGO */

.sc-loader-logo {

  margin-bottom: 26px;
}

.sc-loader-logo img {

  width: 170px;

  object-fit: contain;
}



/* LINE */

.sc-loader-line {

  position: relative;

  width: 100%;
  height: 5px;

  border-radius: 30px;

  overflow: hidden;

  background:
    rgba(39, 37, 112, .08);
}

.sc-loader-line span {

  position: absolute;
  top: 0;
  left: -40%;

  width: 40%;
  height: 100%;

  border-radius: 30px;

  background:
    linear-gradient(90deg,
      var(--theme),
      #272570);

  animation:
    scLoaderMove 1.2s infinite ease-in-out;
}



/* ANIMATION */

@keyframes scLoaderMove {

  0% {
    left: -40%;
  }

  100% {
    left: 100%;
  }

}



/* MOBILE */

@media(max-width:767px) {

  .sc-home-loader-inner {

    width: 180px;
  }

  .sc-loader-logo img {

    width: 140px;
  }

}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(255, 255, 255, 0.9);
}

.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  -webkit-animation: slideInUp 0.3s;
  animation: slideInUp 0.3s;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search-wrap .search-field-holder {
    width: 70%;
  }
}

@media (max-width: 575px) {
  .search-wrap .search-field-holder {
    width: 80%;
  }
}

.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: capitalize;
  background: transparent;
  font-size: 25px;
  color: var(--black-2);
  border-bottom: 2px solid var(--black-2);
  text-align: center;
  letter-spacing: 2px;
}

@media (max-width: 575px) {
  .search-wrap .main-search-input {
    height: 50px;
    padding: 0 0;
    line-height: 50px;
    font-size: 18px;
  }
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: var(--black-2);
}

input.main-search-input::-webkit-input-placeholder {
  color: var(--black-2);
  opacity: 1;
  font-size: 25px;
}

input.main-search-input:-ms-input-placeholder {
  color: var(--black-2);
  opacity: 1;
  font-size: 25px;
}

input.main-search-input::-ms-input-placeholder {
  color: var(--black-2);
  opacity: 1;
  font-size: 25px;
}

input.main-search-input::placeholder {
  color: var(--black-2);
  opacity: 1;
  font-size: 25px;
}

@media (max-width: 575px) {
  input.main-search-input::-webkit-input-placeholder {
    font-size: 18px;
  }

  input.main-search-input:-ms-input-placeholder {
    font-size: 18px;
  }

  input.main-search-input::-ms-input-placeholder {
    font-size: 18px;
  }

  input.main-search-input::placeholder {
    font-size: 18px;
  }
}

.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: var(--theme);
  cursor: pointer;
}

.scroll-up {
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
  transform: translateY(15px);
  position: fixed;
  right: 25px;
  bottom: 35px;
  height: 50px;
  width: 50px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.scroll-up::after {
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  content: "\f176";
  text-align: center;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  color: var(--theme-2);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.scroll-up svg path {
  fill: none;
}

.scroll-up svg.scroll-circle path {
  stroke: var(--theme-2);
  stroke-width: 4px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.scroll-up.active-scroll {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

@media (max-width: 767px) {
  .mouse-cursor {
    display: none;
  }
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--theme-2);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--theme-2);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme-2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

.section-title {
  position: relative;
}

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

.section-title .sub-title {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  padding: 6px 19px;
  background: linear-gradient(84deg, rgba(63, 181, 253, 0.12) 0%, rgba(11, 110, 218, 0.12) 100%);
  margin-bottom: 15px;
  border-radius: 4px;
}

.section-title .sub-title.sub-title2 {
  background: linear-gradient(84deg, rgba(63, 181, 253, 0.12) 0%, rgba(11, 110, 218, 0.12) 100%);
}

.section-title .sub-title.white-sub-title {
  background: var(--white);
}

.section-title .sub-title span {
  font-size: 13px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.26px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-transform: uppercase;
}

.section-title h2 {
  color: var(--black-2);
  font-size: 42px;
  font-weight: 700;
  line-height: 55px;
  letter-spacing: -0.84px;
  text-transform: none;
}




.section-title h2 span {
  color: var(--theme-2);
}

.section-title-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: 991px) {
  .section-title-area {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

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

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

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

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

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

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

@-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);
  }
}

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

@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 rounded-2 {
  50% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
}

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

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

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

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

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

.animation__rotate {
  -webkit-animation: rotate 40s linear infinite;
  animation: rotate 40s linear infinite;
}

@-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);
  }
}

.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);
  }
}

@-webkit-keyframes top-image-bounce {
  0% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }

  50% {
    -webkit-transform: translateX(12px);
    transform: translateX(12px);
  }

  100% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }
}

@keyframes top-image-bounce {
  0% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }

  50% {
    -webkit-transform: translateX(12px);
    transform: translateX(12px);
  }

  100% {
    -webkit-transform: translateX(-8px);
    transform: translateX(-8px);
  }
}

@-webkit-keyframes top-image-bounce-2 {
  0% {
    -webkit-transform: translatey(-8px);
    transform: translatey(-8px);
  }

  50% {
    -webkit-transform: translatey(12px);
    transform: translatey(12px);
  }

  100% {
    -webkit-transform: translatey(-8px);
    transform: translatey(-8px);
  }
}

@keyframes top-image-bounce-2 {
  0% {
    -webkit-transform: translatey(-8px);
    transform: translatey(-8px);
  }

  50% {
    -webkit-transform: translatey(12px);
    transform: translatey(12px);
  }

  100% {
    -webkit-transform: translatey(-8px);
    transform: translatey(-8px);
  }
}

@-webkit-keyframes toggle {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes toggle {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes moveCursor1 {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@keyframes moveCursor1 {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  to {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}

@-webkit-keyframes moveCursor2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes moveCursor2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@-webkit-keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }

  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}

@-webkit-keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@keyframes criss-cross-right {
  0% {
    right: -20px;
  }

  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }

  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}

@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 icon-animation {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }

  20%,
  32%,
  44%,
  56%,
  68% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }

  23%,
  35%,
  47%,
  59%,
  71% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  26%,
  38%,
  50%,
  62%,
  74% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }

  29%,
  41%,
  53%,
  65%,
  77% {
    -webkit-transform: rotate3d(0, 0, 1, -15deg);
    transform: rotate3d(0, 0, 1, -15deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes icon-animation {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }

  20%,
  32%,
  44%,
  56%,
  68% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }

  23%,
  35%,
  47%,
  59%,
  71% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  26%,
  38%,
  50%,
  62%,
  74% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }

  29%,
  41%,
  53%,
  65%,
  77% {
    -webkit-transform: rotate3d(0, 0, 1, -15deg);
    transform: rotate3d(0, 0, 1, -15deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@-webkit-keyframes bounceIn {

  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {

  0%,
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

.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);
  }
}

@-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);
  }
}

.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

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

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

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

  100% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@-webkit-keyframes iconTranslateX {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  51% {
    opacity: 1;
  }
}

@keyframes iconTranslateX {
  49% {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }

  51% {
    opacity: 1;
  }
}

@-webkit-keyframes pulse-border {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}

@keyframes pulse-border {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}

@-webkit-keyframes pulse-border-2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@keyframes pulse-border-2 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@-webkit-keyframes zoomBig {
  0% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }

  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  100% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
}

@keyframes zoomBig {
  0% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }

  50% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }

  100% {
    -webkit-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
  }
}

@-webkit-keyframes topToBottom {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@keyframes topToBottom {
  0% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }

  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
  }
}

@-webkit-keyframes leftToRight {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes leftToRight {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }

  50% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@-webkit-keyframes rotateleft {
  0% {
    rotate: 0deg;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    rotate: 10deg;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    rotate: 0deg;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes rotateleft {
  0% {
    rotate: 0deg;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    rotate: 10deg;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    rotate: 0deg;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@-webkit-keyframes rotateleft2 {
  0% {
    rotate: 0deg;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    rotate: -10deg;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    rotate: 0deg;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

@keyframes rotateleft2 {
  0% {
    rotate: 0deg;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    rotate: -10deg;
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    rotate: 0deg;
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}

.topbar {
  background-color: var(--black-2);
  padding-top: 6px;
  padding-bottom: 6px;
  position: relative;
  z-index: 11;
}

@media (max-width: 991px) {
  .topbar {
    display: none;
  }
}

.topbar .topbar-inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 35px;
}

.topbar .topbar-inner ul li a {
  color: var(--white);
  opacity: 0.75;
  font-size: 14px;
  font-weight: 600;
  padding-left: 5px;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.topbar .topbar-inner ul li a:hover {
  color: var(--theme);
  background-size: 100% 1px;
}

.topbar .topbar-inner ul li i {
  font-size: 18px;
  background: var(--theme);
  background-clip: text;
  color: transparent;
}

.topbar .topbar-inner .social a {
  color: var(--white);
  opacity: 0.70;
  padding: 0 5px;
}

.topbar .topbar-inner .social a:hover {
  color: var(--theme);
  background-size: 100% 1px;
}

.topbar.style-2 {
  background-color: var(--white);
  border: 1px solid rgba(2, 8, 66, 0.13);
}

@media (max-width: 1399px) {
  .topbar.style-2 {
    display: none;
  }
}

.topbar.style-2 p {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
}

.topbar.style-2 .topbar-right {
  gap: 50px;
}

.topbar.style-2 .topbar-right ul {
  gap: 35px;
}

.topbar.style-2 .topbar-right ul li a {
  color: var(--text);
  opacity: 1;
}

.topbar.style-2 .topbar-right ul li a:hover {
  color: var(--theme);
}

.topbar.style-2 .topbar-right .social a {
  color: var(--black-2);
  opacity: 1;
}

.topbar.style-2 .topbar-right .social a:hover {
  color: var(--theme);
  background-size: 100% 1px;
}

.header-main {
  position: relative;
  z-index: 11;
}

.header-main .search-icon {
  position: relative;
}

.header-main .search-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  height: 50px;
  width: 2px;
  background: rgba(2, 8, 66, 0.13);
  left: -30px;
  right: auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header-main .main-menu {
  position: relative;
  margin-right: 30px;
  z-index: 11;
}

.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;
}

.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: 600;
  color: var(--black-2);
  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 {
  padding-left: 5px;
  vertical-align: middle;
}

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

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

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

.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 600;
  color: var(--black-2);
  padding: 0 25px;
  padding-bottom: 11px;
  padding-top: 11px;
  width: 100%;
  border-bottom: 1px solid #eeeeee;
}

.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: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

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

.header-main .main-menu ul li .submenu li:hover>a::after {
  color: var(--theme-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 .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}

.header-main .main-menu ul li .has-homemenu {
  width: 1000px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 991px) {
  .header-main .main-menu ul li .has-homemenu .homemenu-items {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb {
  position: relative;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin-top: 20px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  min-width: 130px;
  text-align: center;
  color: var(--white);
  padding: 10px 15px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb img {
  width: 100%;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-title {
  text-align: center;
  margin: 15px auto;
  display: inline-block;
  font-size: 16px;
}

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

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

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

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

.header-1 {
  padding: 6px 0;
  position: relative;
  z-index: 999;
}

@media (max-width: 1199px) {
  .header-1 {
    padding: 10px 0;
  }
}

.header-1 .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;
}

.header-1 .header-main .header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.header-2 {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

@media (max-width: 1199px) {
  .header-2 {
    padding: 16px 0;
  }
}

.header-2 .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;
}

.header-2 .header-main .search-icon::after {
  height: 80px;
  width: 2px;
  background: rgba(255, 255, 255, 0.13);
}

.header-2 .header-main .main-menu::after {
  background: rgba(255, 255, 255, 0.13);
  height: 80px;
}

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

.header-2 .header-main .header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.header-2 .header-main .header-right .contact-us {
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-2 .header-main .header-right .contact-us .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  color: var(--white);
  font-size: 20px;
  line-height: 20px;
}

.header-2 .header-main .header-right .contact-us p {
  color: var(--white-3);
}

.header-2 .header-main .header-right .contact-us span {
  color: var(--white);
  font-weight: 700;
}

.header-2 .header-main .header-right .search-icon {
  color: var(--white);
}

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

.header-2.style-3 {
  background-color: var(--white);
  padding: 0;
  border: none;
}

.header-2.style-3 .header-main .search-icon::after {
  height: 80px;
  width: 2px;
  background: rgba(2, 8, 66, 0.13);
}

.header-2.style-3 .header-main .has-homemenu {
  left: -0;
}

.header-2.style-3 .header-main .header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 70px;
}

@media (max-width: 1399px) {
  .header-2.style-3 .header-main .header-left {
    gap: 15px;
  }
}

.header-2.style-3 .header-main .header-left .logo {
  width: 300px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(84deg, #fff 0%, #fff 100%);
  margin-left: -70px;
  clip-path: polygon(0 0%, 80% 0%, 100% 100%, 0% 100%);
  overflow: hidden;
}

.header-2.style-3 .header-main .header-left .logo img {
  max-width: 180px;
  /* حجم اللوجو */
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.header-2.style-3 .header-main .header-left .main-menu::after {
  display: none;
}

@media (max-width: 1399px) {
  .header-2.style-3 .header-main .header-left .main-menu ul li {
    -webkit-margin-end: 20px;
    margin-inline-end: 20px;
  }
}

.header-2.style-3 .header-main .header-left .main-menu ul li a {
  color: var(--black-2);
}

.header-2.style-3 .header-main .header-right {
  position: relative;
}

.header-2.style-3 .header-main .header-right .contact-us {
  padding-right: 30px;
  gap: 15px;
}

@media (max-width: 1600px) {
  .header-2.style-3 .header-main .header-right .contact-us {
    display: none !important;
  }
}

.header-2.style-3 .header-main .header-right .contact-us .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  color: var(--white);
}

.header-2.style-3 .header-main .header-right .contact-us p {
  color: var(--theme);
}

.header-2.style-3 .header-main .header-right .contact-us span {
  color: var(--black-2);
}

.header-2.style-3 .header-main .header-right .search-icon {
  color: var(--black-2);
}

.header-2.style-3 .header-main .sidebar__toggle {
  font-size: 20px;
  color: var(--black-2);
}

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

.sticky.header-2 {
  background-color: var(--black-2);
}

.sticky.header-2.style-3 {
  background-color: var(--white);
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme-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::-webkit-scrollbar {
  display: none;
}

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

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

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

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

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

.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul {
  margin-top: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li {
  font-size: 16px;
  font-weight: 500;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 15px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon {
  margin-right: 20px;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li .offcanvas__contact-icon i {
  color: var(--theme-2);
}

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

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

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

.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: 300px;
  }
}

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

/* ===================================
   PREMIUM BREADCRUMB
=================================== */

.breadcrumb-wrapper {
  position: relative;

  overflow: hidden;

  z-index: 9;

  padding: 150px 0 130px;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}



/* ===================================
   DARK OVERLAY
=================================== */

.breadcrumb-wrapper::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(135deg,
      rgba(4, 10, 32, .88) 0%,
      rgba(8, 18, 58, .60) 40%,
      rgba(4, 12, 40, .88) 100%);

  z-index: -5;
}



/* ===================================
   EXTRA LIGHT EFFECT
=================================== */

.breadcrumb-wrapper::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    radial-gradient(circle at top right,
      rgba(59, 173, 74, .14),
      transparent 35%);

  z-index: -4;
}



/* ===================================
   GRID BACKGROUND
=================================== */

.sc-breadcrumb-grid {
  position: absolute;

  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);

  background-size: 65px 65px;

  opacity: .28;

  z-index: -3;
}



/* ===================================
   FLOATING SHAPES
=================================== */

.sc-shape {
  position: absolute;

  border-radius: 50%;

  filter: blur(140px);

  z-index: -2;

  opacity: .9;
}

.shape-one {

  width: 420px;
  height: 420px;

  top: -180px;
  right: -140px;

  background:
    rgba(59, 173, 74, .16);
}

.shape-two {

  width: 380px;
  height: 380px;

  bottom: -140px;
  left: -140px;

  background:
    rgba(39, 37, 112, .28);
}



/* ===================================
   DOT PATTERN
=================================== */

.sc-dots-pattern {
  position: absolute;

  top: 90px;
  right: 90px;

  width: 120px;
  height: 120px;

  background-image:
    radial-gradient(rgba(255, 255, 255, .22) 2px, transparent 2px);

  background-size: 18px 18px;

  opacity: .55;

  z-index: 1;
}



/* ===================================
   PAGE HEADING
=================================== */

.breadcrumb-wrapper .page-heading {
  position: relative;

  z-index: 5;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
}



/* ===================================
   GLASS CARD
=================================== */

.breadcrumb-wrapper .breadcrumb-sub-title {
  position: relative;

  width: 100%;
  max-width: 820px;

  padding: 58px 45px;

  border-radius: 34px;

  overflow: hidden;

  background:
    linear-gradient(135deg,
      rgba(255, 255, 255, .08),
      rgba(255, 255, 255, .04));

  border:
    1px solid rgba(255, 255, 255, .10);

  backdrop-filter: blur(16px);

  box-shadow:
    0 30px 100px rgba(0, 0, 0, .18);
}



/* TOP LIGHT */

.breadcrumb-wrapper .breadcrumb-sub-title::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 1px;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .65),
      transparent);
}



/* ===================================
   SMALL LABEL
=================================== */

.sc-page-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  height: 48px;

  padding: 0 24px;

  border-radius: 100px;

  background:
    rgba(255, 255, 255, .10);

  border:
    1px solid rgba(255, 255, 255, .12);

  backdrop-filter: blur(12px);

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 1.2px;

  text-transform: uppercase;

  color: #EAF1FF;

  margin-bottom: 28px;
}



/* ===================================
   TITLE
=================================== */

.breadcrumb-wrapper .breadcrumb-sub-title h1 {

  font-size:
    clamp(42px, 7vw, 62px);

  line-height: .95;

  font-weight: 900;

  letter-spacing: -4px;

  color: #fff;

  margin-bottom: 24px;
}



/* ===================================
   BREADCRUMB
=================================== */

.breadcrumb-wrapper .breadcrumb-items {

  display: flex;
  align-items: center;
  justify-content: center;

  flex-wrap: wrap;

  gap: 14px;

  margin: 0;
  padding: 0;
}

.breadcrumb-wrapper .breadcrumb-items li {

  list-style: none;

  font-size: 15px;

  font-weight: 600;

  color: rgba(255, 255, 255, .70);
}

.breadcrumb-wrapper .breadcrumb-items li a {

  color: #fff;

  transition: .35s ease;
}

.breadcrumb-wrapper .breadcrumb-items li a:hover {

  color: var(--theme);
}

.breadcrumb-wrapper .breadcrumb-items li i {

  font-size: 11px;

  color: rgba(255, 255, 255, .40);
}



/* ===================================
   FLOATING ANIMATION
=================================== */

.breadcrumb-sub-title {

  animation:
    floatingCard 6s ease-in-out infinite;
}

@keyframes floatingCard {

  0%,
  100% {

    transform:
      translateY(0px);
  }

  50% {

    transform:
      translateY(-8px);
  }
}



/* ===================================
   RESPONSIVE
=================================== */

@media(max-width:991px) {

  .breadcrumb-wrapper {

    padding: 120px 0;
  }

  .breadcrumb-wrapper .breadcrumb-sub-title {

    padding: 50px 35px;
  }

  .breadcrumb-wrapper .breadcrumb-sub-title h1 {

    font-size: 42px;

    letter-spacing: -2px;
  }

}



@media(max-width:767px) {

  .breadcrumb-wrapper {

    padding: 95px 0;
  }

  .breadcrumb-wrapper .breadcrumb-sub-title {

    padding: 38px 22px;

    border-radius: 26px;
  }

  .breadcrumb-wrapper .breadcrumb-sub-title h1 {

    font-size: 36px;

    line-height: 1;

    letter-spacing: -1px;
  }

  .breadcrumb-wrapper .breadcrumb-items li {

    font-size: 14px;
  }

  .sc-page-label {

    height: 42px;

    padding: 0 18px;

    font-size: 11px;
  }

}

.error-content h3 {
  font-size: 42px;
  margin: 20px 0;
}

.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 .mean-nav>ul .homemenu {
  position: relative;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb {
  position: relative;
  width: 280px;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 10px 30px;
  color: var(--white) !important;
  width: initial;
  font-size: 14px;
  text-align: center;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb::before {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(99, 92, 92, 0)), to(#292930));
  background: linear-gradient(to bottom, rgba(99, 92, 92, 0) 0%, #292930 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  content: "";
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb:hover::before {
  visibility: visible;
  opacity: 1;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb:hover .demo-button {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.mean-container .mean-nav>ul .homemenu .homemenu-thumb img {
  width: 100%;
}

.mean-container .mean-nav>ul .homemenu .homemenu-content .homemenu-title {
  margin-top: 15px;
  display: inline-block;
}

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

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

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

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

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

.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;
  }
}

.hero-1 {
  position: relative;
}

.hero-1 .shape-1 {
  position: absolute;
  bottom: 0;
  right: 200px;
  opacity: 8%;
}

.hero-1 .hero-bg {
  overflow: hidden;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: -2;
  background-size: cover;
  border-radius: 25px;
}

.hero-1 .hero-content {
  padding: 100px 0 160px;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

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

.hero-1 .hero-content h1 {
  color: var(--white);
  font-size: 60px;
  font-style: normal;
  font-weight: 800;
  line-height: 69px;
  padding-bottom: 20px;
}

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

@media (max-width: 1199px) {
  .hero-1 .hero-content h1 {
    font-size: 45px;
    line-height: 60px;
  }
}

.hero-1 .hero-content p {
  color: var(--white);
}

.hero-1 .hero-content .feedback {
  gap: 107px;
  padding-top: 30px;
}

@media (max-width: 575px) {
  .hero-1 .hero-content .feedback {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.hero-1 .hero-content .feedback .infu p {
  font-size: 18px;
  color: var(--white);
}

.hero-1 .hero-image {
  width: 591px;
  height: 778px;
  margin-left: 55px;
  position: relative;
  z-index: 9;
  margin-top: 50px;
}

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

@media (max-width: 991px) {
  .hero-1 .hero-image {
    height: 550px;
  }
}

.hero-1 .hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.hero-1.style-2 .hero-content {
  padding-top: 120px;
}

.hero-1.style-2 .hero-image {
  margin-top: 10px;
  -webkit-animation: topToBottom 3s infinite linear;
  animation: topToBottom 3s infinite linear;
}

.hero-1.style-2 .shape .shape-1 {
  position: absolute;
  bottom: 0;
  top: 8%;
  right: 16.5%;
  opacity: 6%;
  -webkit-animation: spinner 30s infinite linear;
  animation: spinner 30s infinite linear;
}

.hero-1.style-2 .shape .shape-2 {
  position: absolute;
  bottom: 0;
  top: 50%;
  left: -11.5%;
  opacity: 27%;
  -webkit-animation: spinner 30s infinite linear;
  animation: spinner 30s infinite linear;
}

.hero-1.style-2 .shape .shape-3 {
  position: absolute;
  bottom: -20%;
  right: 0%;
  opacity: 31%;
  -webkit-animation: zoomBig 3s infinite linear;
  animation: zoomBig 3s infinite linear;
}

.hero-1.style-2 .shape .shape-4 {
  position: absolute;
  top: 5%;
  right: 8%;
  opacity: 16%;
  -webkit-animation: topToBottom 3s infinite linear;
  animation: topToBottom 3s infinite linear;
}

.hero-1.style-2 .shape .shape-5 {
  position: absolute;
  bottom: -18%;
  right: 42%;
  opacity: 3%;
  z-index: -1;
  -webkit-animation: zoomBig 3s infinite linear;
  animation: zoomBig 3s infinite linear;
}

.hero-1.style-2 .shape .shape-6 {
  position: absolute;
  top: -80px;
  right: 0%;
  filter: blur(200px);
  -webkit-filter: blur(200px);
  z-index: -1;
}

.hero-1.style-2 .shape .shape-7 {
  width: 558px;
  height: 558px;
  border-radius: 50%;
  background: #05F;
  filter: blur(200px);
  -webkit-filter: blur(200px);
  z-index: -1;
  position: absolute;
  left: -170px;
  top: 0;
}

.hero-3 {
  position: relative;
}

.hero-3 .array-button {
  position: absolute;
  top: 50%;
  right: 60px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 99;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.array-button {
  display: none;
}

.hero-3 .array-button .array-prev {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.hero-3 .array-button .array-next {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

@media (max-width: 991px) {
  .hero-3 .array-button {
    display: none;
  }
}

.hero-3 .hero-inner {
  position: relative;
}

.hero-3 .hero-inner .bg-image {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  mix-blend-mode: saturation;
  -webkit-filter: grayscale(50%);
  filter: grayscale(50%);
}

.hero-3 .hero-inner .bg-image::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(89deg, rgba(2, 5, 36, 0.84) 0.44%, rgba(2, 5, 36, 0.1) 85.09%);
  z-index: -1;
}

.hero-3 .hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 0 180px;

  opacity: 0;
  -webkit-transform: translateY(-150px);
  transform: translateY(-150px);
}

@media (max-width: 1399px) {
  .hero-3 .hero-content {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .hero-3 .hero-content {
    padding-top: 150px;
    padding-bottom: 110px;
  }
}



.hero-3 .hero-content .text {
  color: var(--white);
  padding-right: 75px;
}

@media (max-width: 1399px) {
  .hero-3 .hero-content .text {
    padding-right: 0;
  }
}

.hero-3 .hero-content .hero-button {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .hero-3 .hero-content .hero-button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .hero-3 .hero-content .hero-button {
    margin-top: 20px;
  }
}

.hero-3 .hero-content .hero-button .contact-us {
  gap: 15px;
}

.hero-3 .hero-content .hero-button .contact-us .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  color: var(--white);
  font-size: 16px;
  line-height: 20px;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 11;
}

.hero-3 .hero-content .hero-button .contact-us .icon .video-button-ripple::before,
.hero-3 .hero-content .hero-button .contact-us .icon .video-button-ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 0 0 rgba(63, 181, 253, 0.6);
  box-shadow: 0 0 0 0 rgba(63, 181, 253, 0.6);
  -webkit-animation: popupVideo 3s infinite;
  animation: popupVideo 3s infinite;
  border-radius: 50%;
}

.hero-3 .hero-content .hero-button .contact-us .icon .video-button-ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.hero-3 .hero-content .hero-button .contact-us .icon .video-button-ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.hero-3 .hero-content .hero-button .contact-us p {
  color: var(--white-3);
  opacity: 0.5;
  text-align: start;
}

.hero-3 .hero-content .hero-button .contact-us h4 {
  color: var(--white);
}

.hero-3 .shape .shape-1 {
  position: absolute;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateX(-150px);
  transform: translateX(-150px);
}

@media (max-width: 991px) {
  .hero-3 .shape .shape-1 {
    display: none;
  }
}

.hero-3 .shape .shape-2 {
  position: absolute;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateX(-150px);
  transform: translateX(-150px);
}

@media (max-width: 991px) {
  .hero-3 .shape .shape-2 {
    display: none;
  }
}

.hero-3 .shape .shape-3 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
}

@media (max-width: 991px) {
  .hero-3 .shape .shape-3 {
    display: none;
  }
}

.hero-3 .shape .shape-4 {
  right: 0;
  top: 0;
  position: absolute;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateY(-150px);
  transform: translateY(-150px);
}

@media (max-width: 991px) {
  .hero-3 .shape .shape-4 {
    display: none;
  }
}

.hero-3 .shape .shape-5 {
  right: 20%;
  top: 5%;
  position: absolute;
  rotate: 90deg;
  z-index: 1;
}

@media (max-width: 991px) {
  .hero-3 .shape .shape-5 {
    display: none;
  }
}

.hero-3 .swiper-slide.swiper-slide-active .hero-content {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.hero-3 .swiper-slide.swiper-slide-active .hero-button {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 2000ms ease;
  transition: all 2000ms ease;
}

.hero-3 .swiper-slide.swiper-slide-active .shape-1 {
  opacity: 10%;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition: all 2500ms ease;
  transition: all 2500ms ease;
}

.hero-3 .swiper-slide.swiper-slide-active .shape-2 {
  opacity: 1;
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.hero-3 .swiper-slide.swiper-slide-active .shape-3 {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.hero-3 .swiper-slide.swiper-slide-active .shape-4 {
  opacity: 1;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.hero-3.style-2 {
  position: relative;
}

.hero-3.style-2 .hero-inner .bg-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  mix-blend-mode: normal;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  z-index: -1;
}

.hero-3.style-2 .hero-inner .bg-image::before {
  content: none;
}

.hero-3.style-2 .hero-inner .shape-1 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  -webkit-transform: translateY(-150px);
  transform: translateY(-150px);
}

.hero-3.style-2 .hero-inner .shape-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  min-width: 100%;
  position: absolute;
  font-family: "Montserrat", serif;
  bottom: 30px;
  z-index: 1;
  left: -49px;
  font-size: 150px;
  line-height: 120px;
  color: rgba(255, 255, 255, 0.16);
  font-weight: 900;
  letter-spacing: -3px;
  -webkit-animation: scroll3 50s linear infinite;
  animation: scroll3 50s linear infinite;
}

.hero-3.style-2 .hero-inner .social-shape {
  position: absolute;
  z-index: 1;
  left: -460px;
  top: 35px;
  opacity: 0;
  -webkit-transform: translateX(-150px);
  transform: translateX(-150px);
}

@media (max-width: 1899px) {
  .hero-3.style-2 .hero-inner .social-shape {
    display: none;
  }
}

.hero-3.style-2 .hero-inner .social-shape .social {
  position: absolute;
  right: 0;
  top: 42%;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  text-align: center;
}

.hero-3.style-2 .hero-inner .social-shape .social p {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 4.32px;
}

.hero-3.style-2 .hero-inner .social-shape .social .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.hero-3.style-2 .hero-inner .social-shape .social .icons a {
  width: 53px;
  height: 53px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: var(--white);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.hero-3.style-2 .hero-inner .social-shape .social .icons a:hover {
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
}

.hero-3.style-2 .hero-inner .hero-content {
  padding: 150px 0 310px;
  opacity: 0;
  -webkit-transform: translateY(-150px);
  transform: translateY(-150px);
}



@media (max-width: 1399px) {
  .hero-3.style-2 .hero-inner .hero-content {
    padding: 150px 0 190px;
  }
}

@media (max-width: 1199px) {
  .hero-3.style-2 .hero-inner .hero-content {
    padding: 150px 0 125px;
  }
}

@media (max-width: 991px) {
  .hero-3.style-2 .hero-inner .hero-content {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .hero-3.style-2 .hero-inner .hero-content .hero-button .avater {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.hero-3.style-2 .hero-inner .hero-image {
  position: relative;
  top: 40px;
  z-index: 1;
  margin-left: 170px;
  width: 630px;
  height: 865px;
  opacity: 0;
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
}

@media (max-width: 1199px) {
  .hero-3.style-2 .hero-inner .hero-image {
    margin-left: 0;
    top: 122px;
    width: 500px;
    height: 690px;
  }
}

@media (max-width: 991px) {
  .hero-3.style-2 .hero-inner .hero-image {
    top: 10px;
  }
}

.hero-3.style-2 .hero-inner .hero-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

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

.hero-3.style-2 .swiper-slide.swiper-slide-active .shape-1 {
  opacity: 12%;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.hero-3.style-2 .swiper-slide.swiper-slide-active .social-shape {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.hero-3.style-2 .swiper-slide.swiper-slide-active .hero-image {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.features-1 {
  margin-top: -130px;
  position: relative;
  z-index: 11;
}

.features-1 .single-feature-item {
  margin-top: 30px;
  height: 373px;
  border-radius: 12px;
  background: var(--white);
  padding: 40px;
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

@media (max-width: 1399px) {
  .features-1 .single-feature-item {
    padding: 20px 30px;
  }
}

.features-1 .single-feature-item .icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 30px;
  color: var(--white);
  overflow: hidden;
}

.features-1 .single-feature-item .icon i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.features-1 .single-feature-item:hover {
  background: var(--theme-2);
}

.features-1 .single-feature-item:hover .icon {
  background: var(--white);
}

.features-1 .single-feature-item:hover .icon i {
  -webkit-animation: iconTranslateX 0.4s forwards;
  animation: iconTranslateX 0.4s forwards;
  color: var(--theme-2);
}

.features-1 .single-feature-item:hover h4 {
  color: var(--white);
}

.features-1 .single-feature-item:hover p {
  color: var(--white-3);
}

.features-1 .single-feature-item:hover li {
  color: var(--white-3);
}

.features-1 .single-feature-item:hover li i {
  color: var(--white);
}

.features-1 .single-feature-item:hover a {
  color: var(--white);
}

.features-1 .single-feature-item h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: -0.2px;
  padding: 20px 0;
}

.features-1 .single-feature-item h4 a {
  color: var(--black-2);
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.features-1 .single-feature-item h4 a:hover {
  background-size: 100% 1px;
}

.features-1 .single-feature-item p {
  color: var(--text);
}

.features-1 .single-feature-item ul {
  padding-top: 15px;
}

.features-1 .single-feature-item ul li {
  color: var(--text);
  font-weight: 500;
  line-height: 26px;
  padding-bottom: 15px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.features-1 .single-feature-item ul li i {
  color: var(--theme-2);
  padding-right: 5px;
}

.features-2 {
  margin-top: -200px;
  position: relative;
  z-index: 11;
}

.features-2 .features-images {
  height: 680px;
  margin: 0 133px;
  margin-top: -30px;
  z-index: -1;
  border-radius: 30px;
}

@media (max-width: 1199px) {
  .features-2 .features-images {
    margin: 0 20px;
  }
}

.features-2 .features-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto auto auto;
  grid-template-columns: auto auto auto auto auto;
  -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: 1199px) {
  .features-2 .features-items {
    -ms-grid-columns: auto auto auto;
    grid-template-columns: auto auto auto;
    row-gap: 20px;
  }
}

@media (max-width: 767px) {
  .features-2 .features-items {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
  }
}

@media (max-width: 500px) {
  .features-2 .features-items {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.features-2 .features-items .single-feature-item {
  width: 218px;
  height: 218px;
  border-radius: 50%;
  border: 2px solid var(--white);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.features-2 .features-items .single-feature-item::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 11, 107, 0.55);
  border-radius: 50%;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.features-2 .features-items .single-feature-item h4 {
  color: var(--white);
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: -0.18px;
  z-index: 1;
  padding-top: 40px;
}

.features-2 .features-items .single-feature-item h4 a {
  color: var(--white);
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.features-2 .features-items .single-feature-item h4 a:hover {
  background-size: 100% 1px;
}

.features-2 .features-items .single-feature-item:hover::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 11, 107, 0.8);
  border-radius: 50%;
}

.features-3 {
  margin-top: -100px;
  position: relative;
  z-index: 1;
}

.features-3 .single-feature-item {
  height: 130px;
  border-radius: 12px;
  background: var(--white);
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  gap: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 40px;
  padding-right: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  cursor: pointer;
}

.features-3 .single-feature-item .icon {
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 61px;
}

.features-3 .single-feature-item h4 {
  font-weight: 600;
}

.features-3 .single-feature-item:hover {
  background: var(--black-2);
}

.features-3 .single-feature-item:hover h4 {
  color: var(--white);
}

.about-1 .about-images {
  position: relative;
}

.about-1 .about-images .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  font-size: 17px;
  color: var(--white);
  position: absolute;
  right: 165px;
  top: 25px;
}

@media (max-width: 1399px) {
  .about-1 .about-images .icon {
    right: 100px;
  }
}

.about-1 .about-images .icon::after,
.about-1 .about-images .icon::before {
  content: "";
  position: absolute;
  border: 1px solid var(--theme);
  border-radius: 50%;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  opacity: 100%;
  -webkit-animation: pulse-border 1.5s linear infinite;
  animation: pulse-border 1.5s linear infinite;
}

.about-1 .about-images .icon::before {
  border: 1px solid rgba(63, 181, 253, 0.2);
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  opacity: 100%;
  -webkit-animation: pulse-border-2 2s linear infinite;
  animation: pulse-border-2 2s linear infinite;
}

.about-1 .about-images .image-1 {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 440 564" fill="black"><path d="M98.9205 2.12847C100.926 0.742428 103.306 0 105.743 0H427.111C433.739 0 439.111 5.37258 439.111 12V551.667C439.111 558.294 433.739 563.667 427.111 563.667H12C5.37257 563.667 0 558.294 0 551.667V76.7933C0 72.8523 1.93507 69.1625 5.17703 66.9218L98.9205 2.12847Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 440 564" fill="black"><path d="M98.9205 2.12847C100.926 0.742428 103.306 0 105.743 0H427.111C433.739 0 439.111 5.37258 439.111 12V551.667C439.111 558.294 433.739 563.667 427.111 563.667H12C5.37257 563.667 0 558.294 0 551.667V76.7933C0 72.8523 1.93507 69.1625 5.17703 66.9218L98.9205 2.12847Z"/></svg>');
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  width: 439px;
  height: 563px;
  -webkit-mask-size: cover;
  mask-size: cover;
  position: relative;
}

.about-1 .about-images .image-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 991px) {
  .about-1 .about-images .image-1 {
    width: 100%;
    height: 100%;
  }
}

.about-1 .about-images .image-2 {
  position: absolute;
  bottom: -40px;
  left: 294px;
  mask: url('data:image/svg+xml;utf8,<svg width="390" height="474" viewBox="0 0 390 474" xmlns="http://www.w3.org/2000/svg"><path d="M0 12C0 5.37259 5.37258 0 12 0H377.5C384.127 0 389.5 5.37258 389.5 12V412.575C389.5 415.817 388.188 418.922 385.862 421.181L334.993 470.607C332.753 472.783 329.753 474 326.63 474H12C5.37258 474 0 468.627 0 462V12Z" /></svg>');
  -webkit-mask: url('data:image/svg+xml;utf8,<svg width="390" height="474" viewBox="0 0 390 474" xmlns="http://www.w3.org/2000/svg"><path d="M0 12C0 5.37259 5.37258 0 12 0H377.5C384.127 0 389.5 5.37258 389.5 12V412.575C389.5 415.817 388.188 418.922 385.862 421.181L334.993 470.607C332.753 472.783 329.753 474 326.63 474H12C5.37258 474 0 468.627 0 462V12Z" /></svg>');
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  width: 389.5px;
  height: 474px;
  -webkit-mask-size: cover;
  mask-size: cover;
}

@media (max-width: 1399px) {
  .about-1 .about-images .image-2 {
    left: 200px;
  }
}

.about-1 .about-images .image-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 991px) {
  .about-1 .about-images .image-2 {
    display: none;
  }
}

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

.about-1 .about-content p {
  padding-top: 20px;
}

.about-1 .about-content ul {
  padding-top: 30px;
  text-align: start;
}

.about-1 .about-content ul li {
  color: var(--text);
  font-weight: 500;
  line-height: 26px;
  padding-bottom: 10px;
}

.about-1 .about-content ul li i {
  color: var(--theme-2);
  padding-right: 10px;
}

.about-1 .about-content .about-infu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .about-1 .about-content .about-infu {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.about-1 .about-content .about-infu .contact-us {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}

.about-1 .about-content .about-infu .contact-us img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.about-1 .about-content .about-infu .contact-us .text span {
  color: var(--text);
  font-weight: 500;
  line-height: 26px;
}

.about-1 .about-content .about-infu .contact-us .text h4 {
  color: var(--black-2);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: -0.2px;
}

@media (max-width: 500px) {
  .about-1 .about-content .about-infu .contact-us {
    display: none;
  }
}

.about-1.style-2 .about-images-2 {
  position: relative;
  left: 130px;
}

@media (max-width: 1399px) {
  .about-1.style-2 .about-images-2 {
    left: 0;
  }
}

@media (max-width: 1199px) {
  .about-1.style-2 .about-images-2 {
    left: 0;
  }
}

.about-1.style-2 .about-images-2 .shape-1 {
  position: absolute;
  top: 50px;
  left: -130px;
  -webkit-animation: topToBottom 2s linear infinite;
  animation: topToBottom 2s linear infinite;
}

@media (max-width: 1399px) {
  .about-1.style-2 .about-images-2 .shape-1 {
    left: -70px;
  }
}

@media (max-width: 1199px) {
  .about-1.style-2 .about-images-2 .shape-1 {
    left: 0;
  }
}

.about-1.style-2 .about-images-2 .shape-2 {
  position: absolute;
  bottom: -60px;
  left: -130px;
  opacity: 28%;
  z-index: -1;
  width: 602px;
  height: 602px;
}

.about-1.style-2 .about-images-2 .image-1 {
  width: 509px;
  height: 660px;
}

@media (max-width: 991px) {
  .about-1.style-2 .about-images-2 .image-1 {
    width: 100%;
    height: auto;
  }
}

.about-1.style-2 .about-images-2 .image-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
}

.about-1.style-2 .about-images-2 .image-2 {
  width: 300px;
  position: absolute;
  right: 20%;
  bottom: -60px;
}

@media (max-width: 991px) {
  .about-1.style-2 .about-images-2 .image-2 {
    display: none;
  }
}

.about-1.style-2 .about-images-2 .image-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 28px 60px;
  object-fit: cover;
}

.about-1.style-2 .about-content p {
  color: var(--white);
  opacity: 75%;
}

.about-1.style-2 .about-content ul li {
  color: var(--white);
}

.about-1.style-2 .about-content .feedback {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
  padding-top: 40px;
}

@media (max-width: 500px) {
  .about-1.style-2 .about-content .feedback {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.about-1.style-2 .about-content .feedback .infu img {
  width: 176px;
  height: 50px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 15px;
}

.about-1.style-2 .about-content .feedback .infu h6 {
  color: var(--white);
  font-style: normal;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: -0.16px;
}

.about-1.style-2 .about-content .feedback .infu .icon-box {
  gap: 15px;
}

@media (max-width: 500px) {
  .about-1.style-2 .about-content .feedback .infu .icon-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.about-1.style-2 .about-content .feedback .infu .icon-box .icon {
  font-size: 40px;
  background: linear-gradient(84deg, var(--theme-2) 0%, var(--theme) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.about-1.about-page .about-content p {
  color: var(--text);
  opacity: 75%;
}

.about-1.about-page .about-content ul li {
  color: var(--text);
}

.about-1.about-page .about-content .feedback .infu h6 {
  color: var(--black-2);
}

.about-2 {
  position: relative;
  z-index: 1;
}

.about-2 .bg-image {
  overflow: hidden;
  position: absolute !important;
  top: -340px;
  width: 100%;
  height: 845px;
  z-index: -1;
  background-size: cover;
  border-radius: 25px;
}

@media (max-width: 1199px) {
  .about-2 .bg-image {
    top: -250px;
  }
}

.about-2 .about-content {
  position: relative;
}

.about-2 .about-content p {
  color: var(--white);
  padding-top: 20px;
}

.about-2 .about-content .infu {
  padding-top: 35px;
  gap: 30px;
}

@media (max-width: 1199px) {
  .about-2 .about-content .infu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.about-2 .about-content .infu .contact-us {
  gap: 12px;
}

.about-2 .about-content .infu .contact-us a {
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  width: 56px;
  height: 56px;
  font-size: 20px;
  color: var(--white);
  background: linear-gradient(84deg, var(--theme-2) 0%, var(--theme) 100%);
}

.about-2 .about-content .infu .contact-us .text span {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  line-height: 26px;
}

.about-2 .about-content .infu .contact-us .text h4 {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

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

.about-3 .about-images .image-1 {
  position: relative;
  width: 570px;
}

@media (max-width: 1399px) {
  .about-3 .about-images .image-1 {
    width: 500px;
  }
}

@media (max-width: 575px) {
  .about-3 .about-images .image-1 {
    width: 100%;
  }
}

.about-3 .about-images .image-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-animation: spinner 100s infinite linear;
  animation: spinner 100s infinite linear;
}

.about-3 .about-images .experience {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.about-3 .about-images .experience h2 {
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 120px;
  letter-spacing: -2.4px;
  line-height: 100px;
  text-align: center;
}

@media (max-width: 575px) {
  .about-3 .about-images .experience h2 {
    font-size: 88px;
  }
}

.about-3 .about-images .experience p {
  color: var(--text);
  font-size: 22px;
  font-weight: 500;
  text-align: center;
}

.about-3 .about-images .image-2 {
  width: 273px;
  height: 273px;
  position: absolute;
  right: 25px;
  bottom: -60px;
}

@media (max-width: 1399px) {
  .about-3 .about-images .image-2 {
    bottom: -130px;
  }
}

@media (max-width: 1199px) {
  .about-3 .about-images .image-2 {
    display: none;
  }
}

.about-3 .about-images .image-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  object-fit: cover;
}

.about-3 .about-content .section-title {
  margin-left: -85px;
}

@media (max-width: 1399px) {
  .about-3 .about-content .section-title {
    margin-left: 0;
  }
}

.about-3 .about-content p {
  padding-top: 30px;
  font-size: 18px;
}


.about-3 .about-content .text {
  padding: 20px 30px;
  position: relative;
  border-radius: 4px;
  background: var(--white);
  margin-top: 30px;
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
}

.about-3 .about-content .text::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 4px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  left: -3px;
  z-index: -1;
}

.about-3 .about-content .list {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about-3 .about-content .list ul li {
  color: var(--text);
  font-weight: 500;
  padding-bottom: 10px;
}

.about-3 .about-content .list ul li i {
  padding-right: 5px;
  color: var(--theme-2);
}

.about-3 .about-content .about-infu {
  gap: 25px;
  margin-top: 35px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about-3 .about-content .about-infu .contact-us {
  gap: 10px;
}

.about-4 {
  position: relative;
}

.about-4 .about-images {
  width: 870px;
  height: 700px;
  float: right;
  margin-right: 75px;
}

@media (max-width: 767px) {
  .about-4 .about-images {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.about-4 .about-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-fit: contain;
  object-fit: contain;
}

.about-4 .about-content .icon-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 35px;
  border-radius: 6px;
  background: var(--white);
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  padding: 15px 40px;
  max-width: 615px;
  margin-top: 25px;
}

@media (max-width: 767px) {
  .about-4 .about-content .icon-box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}

.about-4 .about-content .icon-box .icon {
  font-size: 55px;
  background-image: linear-gradient(135deg, #020b2d 0%, #0d3eb5 100%);
  ;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.about-4 .about-content .icon-box:hover .icon {
  -webkit-animation: bounceIn 1s linear;
  animation: bounceIn 1s linear;
}

.about-4 .about-content .infu {
  margin-top: 35px;
  gap: 50px;
}

@media (max-width: 767px) {
  .about-4 .about-content .infu {
    gap: 30px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.about-4 .about-content .infu .contact-us {
  gap: 20px;
}

.about-4 .about-content .infu .contact-us span {
  color: var(--theme-2);
  font-weight: 700;
  line-height: 26px;
}

.service-1,
.gallery-wrapper {
  position: relative;
}

.service-1 .shape-1,
.gallery-wrapper .shape-1 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 28%;
}

.service-1 .shape-2,
.gallery-wrapper .shape-2 {
  position: absolute;
  top: 140px;
  right: -15%;
  opacity: 8%;
}

.service-1 .service-inner {
  position: relative;
  z-index: 11;
}

.service-1 .service-inner .countbox h3 {
  font-size: 140px;
  font-weight: 700;
  line-height: 120px;
  letter-spacing: -2.8px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.service-1 .service-inner .countbox p {
  color: var(--text);
  font-size: 22px;
  padding-top: 15px;
}

@media (max-width: 767px) {
  .service-1 .service-inner .countbox {
    display: none;
  }
}

.service-1 .service-inner .title h3 {
  color: var(--black-2);
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: -0.6px;
}

@media (max-width: 767px) {
  .service-1 .service-inner .title h3 {
    font-size: 18px;
    margin-top: 20px;
    line-height: 30px;
    text-align: center;
  }
}

.service-1 .service-inner .single-service-item {
  position: relative;
  margin-top: 40px;
  z-index: 2;
  overflow: hidden;
}

.service-1 .service-inner .single-service-item .shape-3 {
  position: absolute;
  top: 0px;
  left: -0;
  z-index: 1;
  border-top-left-radius: 130px;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-1 .service-inner .single-service-item .shape-4 {
  position: absolute;
  bottom: 80px;
  right: -50px;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-1 .service-inner .single-service-item .image {
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 424 518" xmlns="http://www.w3.org/2000/svg"><path d="M0 51.688C0 44.4673 3.89212 37.8073 10.1831 34.263L66.4293 2.57504C69.4258 0.8869 72.8069 0 76.2462 0H404C415.046 0 424 8.9543 424 20V498C424 509.046 415.046 518 404 518H20C8.9543 518 0 509.046 0 498V51.688Z"/></svg>');
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 424 518" xmlns="http://www.w3.org/2000/svg"><path d="M0 51.688C0 44.4673 3.89212 37.8073 10.1831 34.263L66.4293 2.57504C69.4258 0.8869 72.8069 0 76.2462 0H404C415.046 0 424 8.9543 424 20V498C424 509.046 415.046 518 404 518H20C8.9543 518 0 509.046 0 498V51.688Z"/></svg>');
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.service-1 .service-inner .single-service-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
}

.service-1 .service-inner .single-service-item .content {
  background-color: var(--white);
  text-align: center;
  padding: 25px 30px;
  padding-top: 55px;
  position: absolute;
  bottom: 20px;
  width: calc(100% - 40px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 20px;
  z-index: 2;
}

.service-1 .service-inner .single-service-item .content .icon {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  font-size: 30px;
  color: var(--white);
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  overflow: hidden;
}

.service-1 .service-inner .single-service-item .content .icon i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.service-1 .service-inner .single-service-item .content h4 {
  color: var(--black-2);
  font-size: 20px;
  font-weight: 700;
  line-height: 29px;
  letter-spacing: -0.2px;
  padding-bottom: 5px;
}

.service-1 .service-inner .single-service-item .content h4 a {
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.service-1 .service-inner .single-service-item .content h4 a:hover {
  color: var(--theme);
  background-size: 100% 1px;
}

.service-1 .service-inner .single-service-item:hover .icon i {
  -webkit-animation: iconTranslateX 0.4s forwards;
  animation: iconTranslateX 0.4s forwards;
}

.service-1 .service-inner .single-service-item:hover .icon-list {
  opacity: 1;
  visibility: visible;
}

.service-1 .service-inner .single-service-item:hover .shape-3 {
  top: -2px;
  opacity: 1;
  left: -30px;
}

.service-1 .service-inner .single-service-item:hover .shape-4 {
  opacity: 1;
  right: 0;
}

.service-2 {
  background-color: rgba(255, 255, 255, 0.05);
}

.service-2 .service-inner {
  padding-bottom: 260px;
}

.service-2 .service-inner .service-items {
  padding-top: 60px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
  grid-template-columns: auto auto auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-column-gap: 123px;
  column-gap: 123px;
  row-gap: 90px;
}

@media (max-width: 1399px) {
  .service-2 .service-inner .service-items {
    -webkit-column-gap: 90px;
    column-gap: 90px;
  }
}

@media (max-width: 1199px) {
  .service-2 .service-inner .service-items {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
  }
}

@media (max-width: 767px) {
  .service-2 .service-inner .service-items {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
}

.service-2 .service-inner .service-items .signle-service-item {
  position: relative;
  cursor: pointer;
}

@media (max-width: 767px) {
  .service-2 .service-inner .service-items .signle-service-item {
    text-align: center;
  }
}

.service-2 .service-inner .service-items .signle-service-item::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  left: 60px;
}

@media (max-width: 1399px) {
  .service-2 .service-inner .service-items .signle-service-item::after {
    left: 45px;
  }
}

.service-2 .service-inner .service-items .signle-service-item::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  bottom: -45px;
  top: auto;
}

@media (max-width: 1199px) {

  .service-2 .service-inner .service-items .signle-service-item::after,
  .service-2 .service-inner .service-items .signle-service-item::before {
    display: none;
  }
}

.service-2 .service-inner .service-items .signle-service-item:nth-child(3)::after,
.service-2 .service-inner .service-items .signle-service-item:nth-child(6)::after {
  border-right: none;
}

.service-2 .service-inner .service-items .signle-service-item:nth-child(4)::before,
.service-2 .service-inner .service-items .signle-service-item:nth-child(5)::before,
.service-2 .service-inner .service-items .signle-service-item:nth-child(6)::before {
  border-bottom: none;
}

.service-2 .service-inner .service-items .signle-service-item .title {
  gap: 18px;
}

@media (max-width: 767px) {
  .service-2 .service-inner .service-items .signle-service-item .title {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.service-2 .service-inner .service-items .signle-service-item .title .icon {
  font-size: 43px;
  color: var(--white);
}

.service-2 .service-inner .service-items .signle-service-item .title h3 {
  color: var(--white);
  font-size: 20px;
}

.service-2 .service-inner .service-items .signle-service-item p {
  padding-left: 60px;
  line-height: 26px;
  padding-top: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  padding-bottom: 15px;
}

@media (max-width: 767px) {
  .service-2 .service-inner .service-items .signle-service-item p {
    padding-left: 0;
  }
}

.service-2 .service-inner .service-items .signle-service-item a {
  padding-left: 60px;
  font-size: 17px;
  font-weight: 700;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

@media (max-width: 767px) {
  .service-2 .service-inner .service-items .signle-service-item a {
    padding-left: 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.service-2 .service-inner .service-items .signle-service-item:hover .icon {
  -webkit-animation: bounceIn 1s linear;
  animation: bounceIn 1s linear;
}

.service-2 .service-inner .button {
  gap: 20px;
}

@media (max-width: 767px) {
  .service-2 .service-inner .button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .service-2 .service-inner .button .theme-btn {
    width: 100%;
  }
}

.service-3 .service-image {
  width: 100%;
  height: 355px;
  margin-top: 30px;
}

.service-3 .service-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
  object-fit: cover;
}

.service-3 .single-service-item {
  width: 100%;
  height: 355px;
  background-color: var(--theme-3);
  padding: 30px 42px;
  padding-right: 25px;
  position: relative;
  border-radius: 12px;
  margin-top: 30px;
}

.service-3 .single-service-item .icon {
  font-size: 50px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}

.service-3 .single-service-item h4 {
  color: var(--white);
  font-size: 20px;
  line-height: 29px;
  letter-spacing: -0.2px;
}

.service-3 .single-service-item .count-box {
  position: absolute;
  bottom: 30px;
}

.service-3 .single-service-item .count-box h2 {
  color: rgba(255, 255, 255, 0.32);
  font-size: 60px;
  font-weight: 800;
  line-height: 69px;
  letter-spacing: -1.2px;
}

.service-3 .single-service-item .count-box p {
  color: var(--white);
}

.service-3 .single-service-item:hover h2 {
  -webkit-text-stroke-width: 0;
  -webkit-text-stroke-color: transparent;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.service-4,
.testimonial-3 {
  position: relative;
  overflow: hidden;
}

.service-4 .shape-1,
.testimonial-3 .shape-1 {
  position: absolute;
  bottom: -50px;
  left: 20px;
  -webkit-animation: spinner 30s infinite linear;
  animation: spinner 30s infinite linear;
}

.service-4 .shape-2,
.testimonial-3 .shape-2 {
  position: absolute;
  top: 70px;
  right: 30%;
  rotate: 90deg;
  opacity: 0.17;
  -webkit-animation: zoomBig 3s infinite linear;
  animation: zoomBig 3s infinite linear;
}

.service-4 .shape-3,
.testimonial-3 .shape-3 {
  position: absolute;
  bottom: -50px;
  right: -50px;
  opacity: 0.12;
  -webkit-animation: zoomBig 3s infinite linear;
  animation: zoomBig 3s infinite linear;
}

.service-4 .array-button {
  position: absolute;
  top: 65%;
  right: 8%;
  left: 8%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 99;
}

.service-4 .array-button .array-prev {
  position: absolute;
  color: var(--black-2);
  border: 1px solid var(--black-2);
  left: 0;
}

.service-4 .array-button .array-next {
  position: absolute;
  color: var(--black-2);
  border: 1px solid var(--black-2);
  right: 0;
}

@media (max-width: 1600px) {
  .service-4 .array-button {
    display: none;
  }
}

.service-4 .signle-service-item {
  width: 100%;
  height: 350px;
  padding: 75px 30px;
  position: relative;
  margin-top: 60px;
  border-radius: 12px;
  text-align: center;
  background-color: var(--white);
  z-index: 1;
}

.service-4 .signle-service-item h4 a {
  color: var(--black-2);
}

.service-4 .signle-service-item .icon {
  position: absolute;
  top: -35px;
  left: 37%;
  -webkit-transform: translate(-50%);
  transform: translate(-50%);
  width: 70px;
  height: 70px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-radius: 12px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  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;
  color: var(--white);
  font-size: 33px;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .service-4 .signle-service-item .icon {
    left: 42%;
  }
}

.service-4 .signle-service-item .icon i {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.service-4 .signle-service-item .line {
  width: 130px;
  height: 4px;
  margin: 0 auto;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
}

.service-4 .signle-service-item .infu-btn {
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 17px;
  font-weight: 700;
  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;
  gap: 10px;
  margin-top: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-4 .signle-service-item .service-bg {
  position: relative;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  border-radius: 12px;
}

.service-4 .signle-service-item .service-bg::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--black-2);
}

.service-4 .signle-service-item:hover .icon i {
  -webkit-animation: iconTranslateX 0.4s forwards;
  animation: iconTranslateX 0.4s forwards;
}

.service-4 .signle-service-item:hover h4 a {
  color: var(--white);
}

.service-4 .signle-service-item:hover p {
  color: var(--white-3);
}

.service-4 .signle-service-item:hover .infu-btn {
  background: none;
  color: var(--white);
}

.service-4 .signle-service-item:hover .service-bg {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.service-5 .service-slide-2 {
  overflow: inherit;
}

.service-5 .signle-service-item {
  border-radius: 12px;
  background-color: var(--white);
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 40px 10px 50px 45px;
  gap: 40px;
}

@media (max-width: 767px) {
  .service-5 .signle-service-item {
    padding: 20px;
    gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.service-5 .signle-service-item .icon {
  -webkit-animation: spinner 30s infinite linear;
  animation: spinner 30s infinite linear;
}

.service-5 .signle-service-item h3 {
  font-size: 26px;
}

@media (max-width: 767px) {
  .service-5 .signle-service-item h3 {
    font-size: 18px;
  }
}

.service-5 .signle-service-item h3 a {
  color: var(--black-2);
}

.service-5 .signle-service-item ul li {
  color: var(--text);
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
  padding-top: 5px;
}

.service-5 .signle-service-item ul li i {
  color: var(--theme-2);
}

.service-details-wrapper .service-details-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.service-details-wrapper .service-details-content h4 {
  font-size: 22px;
}

.service-details-wrapper .service-details-content .service-details-video {
  margin-top: 50px;
}

@media (max-width: 575px) {
  .service-details-wrapper .service-details-content .service-details-video {
    margin-top: 25px;
    margin-bottom: 30px;
  }
}

@media (max-width: 575px) {
  .service-details-wrapper .service-details-content .service-details-video {
    margin-bottom: 20px;
    margin-top: 20px;
  }
}

.service-details-wrapper .service-details-content .service-details-video .details-video-content .feedback {
  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-top: 40px;
}

@media (max-width: 500px) {
  .service-details-wrapper .service-details-content .service-details-video .details-video-content .feedback {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.service-details-wrapper .service-details-content .service-details-video .details-video-content .feedback .infu img {
  width: 176px;
  height: 50px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 15px;
}

.service-details-wrapper .service-details-content .service-details-video .details-video-content .feedback .infu h6 {
  font-style: normal;
  font-weight: 600;
  line-height: 29px;
  letter-spacing: -0.16px;
}

.service-details-wrapper .service-details-content .service-details-video .details-video-content .feedback .infu .icon-box {
  gap: 15px;
}

@media (max-width: 500px) {
  .service-details-wrapper .service-details-content .service-details-video .details-video-content .feedback .infu .icon-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.service-details-wrapper .service-details-content .service-details-video .details-video-content .feedback .infu .icon-box .icon {
  font-size: 40px;
  background: linear-gradient(84deg, var(--theme-2) 0%, var(--theme) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.service-details-wrapper .service-details-content .service-details-video .video-image {
  position: relative;
}

.service-details-wrapper .service-details-content .service-details-video .video-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.service-details-wrapper .service-details-content .service-details-video .video-image .video-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.service-details-wrapper .service-details-content .service-details-video .video-image .video-box .video-button {
  position: relative;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  width: 80px;
  height: 80px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  color: var(--white);
  z-index: 11;
}

.service-details-wrapper .service-details-content .service-details-video .video-image .video-box .video-button .video-button-ripple::before,
.service-details-wrapper .service-details-content .service-details-video .video-image .video-box .video-button .video-button-ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 0 0 rgba(63, 181, 253, 0.6);
  box-shadow: 0 0 0 0 rgba(63, 181, 253, 0.6);
  -webkit-animation: popupVideo 3s infinite;
  animation: popupVideo 3s infinite;
  border-radius: 50%;
}

.service-details-wrapper .service-details-content .service-details-video .video-image .video-box .video-button .video-button-ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.service-details-wrapper .service-details-content .service-details-video .video-image .video-box .video-button .video-button-ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.service-details-wrapper .highlight-text {
  margin-top: 30px;
  padding: 18px;
  border-left: 4px solid var(--theme);
  -webkit-box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.06);
  background: var(--white);
}

.service-details-wrapper .highlight-text h5 {
  font-weight: 600;
  line-height: 167%;
}

.service-details-wrapper .service-image-item {
  margin-top: 60px;
  margin-bottom: 60px;
}

.service-details-wrapper .service-image-item h3 {
  font-size: 24px;
}

.service-details-wrapper .service-image-item .service-box-image {
  height: 218px;
}

.service-details-wrapper .service-image-item .service-box-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
}

.choose-us-1 {
  position: relative;
}

.choose-us-1 .shape {
  position: absolute;
  top: -10px;
  left: 0;
  opacity: 8%;
}

.choose-us-1 .choose-us-images {
  position: relative;
  width: 588px;
  height: 710px;
}

@media (max-width: 767px) {
  .choose-us-1 .choose-us-images {
    width: 100%;
    height: 100%;
  }
}

.choose-us-1 .choose-us-images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-fit: contain;
  object-fit: contain;
}

.choose-us-1 .choose-us-images .shape-img {
  position: absolute;
  top: 80px;
  left: 10px;
  z-index: -2;
  opacity: 50%;
  -webkit-animation: spinner 100s infinite linear;
  animation: spinner 100s infinite linear;
}

.choose-us-1 .choose-us-content .icon-box {
  gap: 20px;
}

@media (max-width: 767px) {
  .choose-us-1 .choose-us-content .icon-box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.choose-us-1 .choose-us-content .icon-box .single-icon-box .icon {
  font-size: 40px;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  margin-bottom: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: inline-block;
}

.choose-us-1 .choose-us-content .icon-box .single-icon-box h4 {
  color: #020842;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.2px;
  padding-bottom: 10px;
}

.choose-us-1 .choose-us-content .icon-box .single-icon-box:hover .icon {
  -webkit-animation: bounceIn 1s linear;
  animation: bounceIn 1s linear;
}

.choose-us-1 .choose-us-content .count-box {
  background-color: var(--white);
  margin-top: 55px;
  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: 15px 65px;
  padding-bottom: 35px;
  border-radius: 12px;
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
}

@media (max-width: 575px) {
  .choose-us-1 .choose-us-content .count-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.choose-us-1 .choose-us-content .count-box .single-count {
  padding-top: 20px;
}

.choose-us-1 .choose-us-content .count-box .single-count h2 {
  font-size: 60px;
  font-weight: 800;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  line-height: 60px;
}

@media (max-width: 767px) {
  .choose-us-1 .choose-us-content .count-box .single-count h2 {
    font-size: 40px;
    text-align: center;
  }
}

.choose-us-2 {
  position: relative;
  background-color: var(--theme-3);
  padding-bottom: 275px;
}

.choose-us-2 .choose-us-images {
  position: relative;
  z-index: 1;
}

.choose-us-2 .choose-us-images .shape-1 {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 35%;
  z-index: -1;
  -webkit-animation: spinner 100s infinite linear;
  animation: spinner 100s infinite linear;
}

.choose-us-2 .choose-us-images .image-1 {
  width: 450px;
  height: 410px;
}

@media (max-width: 1199px) {
  .choose-us-2 .choose-us-images .image-1 {
    width: 100%;
  }
}

.choose-us-2 .choose-us-images .image-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.choose-us-2 .choose-us-images .image-2 {
  width: 300px;
  height: 320px;
  position: absolute;
  bottom: -150px;
  right: 14%;
  -webkit-animation: topToBottom 3s infinite linear;
  animation: topToBottom 3s infinite linear;
}

@media (max-width: 1199px) {
  .choose-us-2 .choose-us-images .image-2 {
    display: none;
  }
}

.choose-us-2 .choose-us-images .experience {
  position: absolute;
  left: 0;
  margin-top: 10px;
}

@media (max-width: 1199px) {
  .choose-us-2 .choose-us-images .experience {
    position: inherit;
  }
}

.choose-us-2 .choose-us-images .experience h2 {
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 120px;
  letter-spacing: -2.4px;
  line-height: 100px;
}

.choose-us-2 .choose-us-images .experience p {
  color: var(--white);
  font-size: 22px;
  font-weight: 500;
}

.choose-us-2 .choose-us-content .text {
  font-size: 18px;
  color: var(--white-3);
  padding-top: 20p;
}

.choose-us-3 .choose-us-content .reviews {
  gap: 80px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .choose-us-3 .choose-us-content .reviews {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .choose-us-3 .choose-us-content .reviews .infu {
    text-align: center;
  }
}

.choose-us-3 .choose-us-content .reviews .infu img {
  width: 170px;
  height: 50px;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 15px;
}

.choose-us-3 .choose-us-content .reviews .infu h4 {
  font-size: 16px;
  font-weight: 600;
}

.choose-us-3 .choose-us-content .reviews .infu .head {
  gap: 12px;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .choose-us-3 .choose-us-content .reviews .infu .head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.choose-us-3 .choose-us-content .reviews .infu .head .icon {
  font-size: 40px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.choose-us-3 .choose-us-content .reviews .infu:hover .icon {
  -webkit-animation: bounceIn 1s linear;
  animation: bounceIn 1s linear;
}

.choose-us-3 .choose-us-images {
  position: relative;
}

.choose-us-3 .choose-us-images .shape-1 {
  position: absolute;
  left: 0;
  top: -50px;
  opacity: 8%;
  z-index: -1;
}

.choose-us-3 .choose-us-images .single-choose-item {
  width: 100%;
  height: 300px;
  position: relative;
  text-align: center;
  background-color: #F0F5FD;
  padding-top: 70px;
  background-image: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  z-index: 5;
}

.choose-us-3 .choose-us-images .single-choose-item .shape-2 {
  position: absolute;
  top: -100px;
  left: -50px;
  -webkit-animation: spinner 10s infinite linear;
  animation: spinner 10s infinite linear;
}

.choose-us-3 .choose-us-images .single-choose-item .shape-3 {
  position: absolute;
  bottom: -20px;
  right: 0px;
  opacity: 17%;
  rotate: 90deg;
  -webkit-animation: zoomBig 1s linear infinite;
  animation: zoomBig 1s linear infinite;
}

.choose-us-3 .choose-us-images .single-choose-item .icon {
  font-size: 43px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  padding-bottom: 10px;
}

.choose-us-3 .choose-us-images .single-choose-item .single-choose-hover {
  position: relative;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  padding: 30px 40px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.choose-us-3 .choose-us-images .single-choose-item .single-choose-hover .icon {
  background: none;
  color: var(--white);
}

.choose-us-3 .choose-us-images .single-choose-item .single-choose-hover h4 {
  color: var(--white);
}

.choose-us-3 .choose-us-images .single-choose-item .single-choose-hover p {
  color: var(--white);
}

.choose-us-3 .choose-us-images .single-choose-item h4 {
  font-size: 18px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.choose-us-3 .choose-us-images .single-choose-item p {
  font-size: 15px;
  line-height: 1.7;
}

.choose-us-3 .choose-us-images .single-choose-item .single-choose-hover.active {
  opacity: 1;
  visibility: visible;
}

.choose-us-3 .choose-us-images .single-choose-item::before,
.choose-us-3 .choose-us-images .single-choose-item::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 3, 37, 0.56)), to(rgba(0, 3, 37, 0.56))), ;
  background: linear-gradient(rgba(0, 3, 37, 0.56), rgba(0, 3, 37, 0.56)), url("../img/process/process-bg.jpg");
  -webkit-filter: grayscale(50%);
  filter: grayscale(50%);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  -ms-transition: 0.4s;
  -o-transition: 0.4s;
  z-index: 1;
}

.choose-us-3 .choose-us-images .single-choose-item::before {
  top: 0%;
  right: 0%;
}

.choose-us-3 .choose-us-images .single-choose-item::after {
  left: 0%;
  bottom: 0%;
}

.choose-us-3 .choose-us-images .single-choose-item:hover::before,
.choose-us-3 .choose-us-images .single-choose-item:hover::after {
  width: 100%;
  height: 100%;
}

.choose-us-3 .choose-us-images .single-choose-item:hover .single-choose-hover {
  opacity: 1;
  visibility: visible;
}

.choose-us-3 .choose-us-images .single-choose-item.active::before,
.choose-us-3 .choose-us-images .single-choose-item.active::after {
  height: 100%;
}

.choose-us-3.choose-us-page {
  padding-bottom: 340px;
}

.choose-us-4 {
  position: relative;
  overflow: hidden;
}

.choose-us-4 .shape-1 {
  position: absolute;
  bottom: 20%;
  right: 20%;
  -webkit-animation: zoomBig 2s infinite linear;
  animation: zoomBig 2s infinite linear;
}

@media (max-width: 767px) {
  .choose-us-4 .shape-1 {
    display: none;
  }
}

.choose-us-4 .shape-2 {
  position: absolute;
  bottom: -22%;
  right: 20%;
  -webkit-animation: spinner 50s infinite linear;
  animation: spinner 50s infinite linear;
}

@media (max-width: 767px) {
  .choose-us-4 .shape-2 {
    display: none;
  }
}

.choose-us-4 .shape-3 {
  position: absolute;
  top: 0%;
  right: 0%;
  -webkit-animation: zoomBig 3s infinite linear;
  animation: zoomBig 3s infinite linear;
  opacity: 0.6;
}

@media (max-width: 767px) {
  .choose-us-4 .shape-3 {
    display: none;
  }
}

.choose-us-4 .shape-4 {
  position: absolute;
  top: 5%;
  left: 0%;
  -webkit-animation: zoomBig 5s infinite linear;
  animation: zoomBig 5s infinite linear;
  opacity: 0.6;
}

@media (max-width: 767px) {
  .choose-us-4 .shape-4 {
    display: none;
  }
}

.choose-us-4 .bg-image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.choose-us-4 .choose-us-content .accordion-item {
  border: 0;
  margin-top: 15px;
  border-radius: 6px;
  background-color: var(--white);
}

.choose-us-4 .choose-us-content .accordion-item .accordion-header .accordion-button {
  color: var(--black-2);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.18px;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  padding: 20px 40px;
  padding-right: 30px;
}

.choose-us-4 .choose-us-content .accordion-item .accordion-header .accordion-button::after {
  content: "\f067";
  background: transparent;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  line-height: 1;
  width: auto;
}

.choose-us-4 .choose-us-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f068";
  background: transparent;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  line-height: 1;
}

.choose-us-4 .choose-us-content .accordion-item .accordion-collapse .accordion-body {
  padding-top: 0px;
  padding-left: 30px;
  color: var(--text-2);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  margin: 0 40px;
  margin-right: 30px;
  padding-top: 10px;
  border-top: 1px solid var(--border-2);
  padding-left: 0;
  padding-right: 0;
}

.choose-us-4 .choose-us-image {
  width: calc(100% + 40px);
  height: 314px;
  margin-left: -40px;
  position: relative;
}

@media (max-width: 991px) {
  .choose-us-4 .choose-us-image {
    width: 100%;
    margin-left: 0;
  }
}

.choose-us-4 .choose-us-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.brand-1 {
  margin-top: -80px;
}

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

.brand-1 .brand-inner h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
  letter-spacing: -0.6px;
}

.brand-1 .brand-inner .brand-logo img {
  width: 100%;
  height: 35px;
  -o-object-fit: contain;
  object-fit: contain;
}

/* Parent class to keep it safe */
.brand-wrapper.brand-1.style-3 {
  padding: 0px 0px 50px;
  background: #ffffff;
  padding-top: 50px;
  margin-bottom: 0px !important;
  padding-bottom: 0px;
}

.choose-us-wrapper.choose-us-page {
  margin-top: -100px !important;
  margin-bottom: -200px !important;
}

/* تكبير الحاوية الخاصة باللوجو */
.brand-1 .brand-inner .brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  /* زودنا الطول هنا */
  transition: all 0.3s ease;
}

/* تكبير اللوجو نفسه مع الحفاظ على الأبعاد */
.brand-1 .brand-inner .brand-logo img {
  width: auto;
  max-width: 180px;
  /* كبرنا العرض الأقصى */
  height: 85px;
  /* كبرنا الارتفاع من 35px لـ 60px */
  -o-object-fit: contain;
  object-fit: contain;
  filter: grayscale(100%);
  /* عشان يفضل شكلهم Professional */
  opacity: 0.6;
  transition: all 0.4s ease;
}

/* حركة عند الوقوف بالماوس */
.brand-1 .brand-inner .brand-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
  /* تكبير إضافي بسيط عند الـ hover */
}

.brand-1.style-2 {
  margin: 0;
}

.brand-1.style-3 {
  position: relative;
  margin: 0;
}

.brand-1.style-3 .shape-1 {
  position: absolute;
  right: 10px;
  top: 30px;
  opacity: 5%;
  -webkit-animation: rounded 5s infinite linear;
  animation: rounded 5s infinite linear;
}

.brand-1.style-3 .brand-inner .title {
  position: relative;
}

.brand-1.style-3 .brand-inner .title::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 208px;
  height: 1px;
  background-color: var(--black);
  opacity: 13%;
  left: 15%;
  top: 15px;
  right: auto;
}

.brand-1.style-3 .brand-inner .title::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  right: 15%;
  top: 15px;
  left: auto;
  width: 208px;
  height: 1px;
  background-color: var(--black);
  opacity: 13%;
}

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

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

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

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

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ripple {
  position: relative;
}

.ripple::before,
.ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 115px;
  height: 115px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(248, 96, 72, 0.5);
  box-shadow: 0 0 0 0 rgba(248, 96, 72, 0.5);
  -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: 6px;
  height: 6px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  background-color: var(--black-2);
  opacity: 1;
  border-radius: 10px;
  position: relative;
}

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

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme-2);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  position: relative;
}

.swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  top: -7px;
  left: -7px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--theme-2);
  content: "";
}

.swiper-dot-2 .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  background-color: var(--white);
  opacity: 1;
  border-radius: 10px;
  position: relative;
}

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

.swiper-dot-2 .swiper-pagination-bullet::before {
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  top: -7px;
  left: -7px;
  border-radius: 50%;
  background-color: black;
  border: 1.3px solid var(--white);
  content: "";
}

.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--white);
  -webkit-transition: 0.6s;
  transition: 0.6s;
  position: relative;
}

.swiper-dot-2 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 20px;
  height: 20px;
  line-height: 20px;
  top: -7px;
  left: -7px;
  border-radius: 50%;
  background-color: transparent;
  border: 1.3px solid var(--white);
  content: "";
}

.array-button {
  position: relative;
  z-index: 99;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.array-button .array-prev,
.array-button .array-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  color: var(--black-2);
  font-size: 18px;
  font-weight: 600;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.array-button .array-prev:hover,
.array-button .array-next:hover {
  color: var(--white);
  background: var(--theme-2);
  border: none;
}

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

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

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

.head-color {
  color: var(--black-2);
}

.footer-bg {
  background-color: var(--black-2);
}

.background-black {
  background-color: var(--black) !important;
}

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

.theme-bg {
  background-color: var(--theme);
}

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

.box-shadow {
  -webkit-box-shadow: var(---box-shadow);
  box-shadow: var(---box-shadow);
}

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

@media (max-width: 767px) {
  .mt-50 {
    margin-top: 30px;
  }
}

@media (max-width: 575px) {
  .mt-50 {
    margin-top: 20px;
  }
}

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

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

.theme-bg {
  background-color: #202426;
}

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

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

.border-none {
  border: none !important;
}

.progress-items {
  padding-top: 40px;
}

.progress-items .progress {
  background: transparent;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-radius: 100px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 14px;
  width: 100%;
  border-radius: 0;
  border-radius: 46px;
  border: 1px solid rgba(11, 110, 218, 0.53);
  padding-left: 3px;
}

.progress-items .progress .progress-value {
  position: absolute;
  height: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 3px;
  border-radius: 46px;
  background: var(--theme-2);
  width: 0;
  -webkit-transition: all 800ms linear;
  transition: all 800ms linear;
}

.progress-items .point {
  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;
  width: calc(100% - 88px);
  padding-top: 8px;
}

.case-study-1 {
  position: relative;
}

.case-study-1 .shape-1 {
  position: absolute;
  right: -6%;
  top: 12%;
  rotate: 90deg;
  -webkit-animation: zoomBig 5s infinite linear;
  animation: zoomBig 5s infinite linear;
}

.case-study-1 .caseStudy {
  overflow: inherit;
  right: 0;
}

.case-study-1 .single-case-item {
  position: relative;
}

.case-study-1 .single-case-item .image {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 536 475"  xmlns="http://www.w3.org/2000/svg"><path d="M0 103.277C0 97.0519 2.89825 91.1821 7.84034 87.3976L116.589 4.12101C120.079 1.44834 124.353 0 128.749 0H516C527.046 0 536 8.95431 536 20V455C536 466.046 527.046 475 516 475H20C8.95432 475 0 466.046 0 455V103.277Z"/> </svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 536 475"  xmlns="http://www.w3.org/2000/svg"><path d="M0 103.277C0 97.0519 2.89825 91.1821 7.84034 87.3976L116.589 4.12101C120.079 1.44834 124.353 0 128.749 0H516C527.046 0 536 8.95431 536 20V455C536 466.046 527.046 475 516 475H20C8.95432 475 0 466.046 0 455V103.277Z"/> </svg>');
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.case-study-1 .single-case-item .image::before {
  content: "";
  position: absolute;
  top: -125%;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(RGBA(var(--getizy-white-rgb, 255, 255, 255), 0%)), color-stop(300%, RGBA(var(--getizy-white-rgb, 255, 255, 255))));
  background: linear-gradient(to top, RGBA(var(--getizy-white-rgb, 255, 255, 255), 0%) 0%, RGBA(var(--getizy-white-rgb, 255, 255, 255)) 300%);
}

.case-study-1 .single-case-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 12px;
}

.case-study-1 .single-case-item .content {
  width: calc(100% - 84px);
  position: absolute;
  background: var(--black-2);
  border-radius: 12px;
  padding: 30px;
  bottom: -50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.case-study-1 .single-case-item .content .title {
  width: 70%;
}

.case-study-1 .single-case-item .content .title span {
  color: var(--theme-2);
  font-weight: 500;
}

.case-study-1 .single-case-item .content .title h4 {
  color: var(--white);
}

.case-study-1 .single-case-item .content .title h4 a {
  color: inherit;
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.case-study-1 .single-case-item .content .title h4 a:hover {
  color: var(--theme);
  background-size: 100% 1px;
}

.case-study-1 .single-case-item .content .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background-color: var(--white);
}

.case-study-1 .single-case-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.case-study-1 .single-case-item:hover .image::before {
  -webkit-animation: projectCardShine 0.50s;
  animation: projectCardShine 0.50s;
}

@-webkit-keyframes projectCardShine {
  100% {
    top: 125%;
  }
}

@keyframes projectCardShine {
  100% {
    top: 125%;
  }
}

.case-study-1.style-2 .single-case-item .image {
  width: 100%;
  -webkit-mask: none;
  mask: none;
}

.case-study-1.style-2 .single-case-item .content {
  width: 50%;
  height: 150px;
  position: absolute;
  background: var(--white);
  bottom: 0;
  left: 0;
  padding: 20px 30px;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  border-radius: 0px 12px;
}

.case-study-1.style-2 .single-case-item .content .title {
  width: 100%;
}

.case-study-1.style-2 .single-case-item .content .title h4 {
  color: var(--black-2);
}

.case-study-1.style-2 .single-case-item .content .icon {
  position: absolute;
  right: -21px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  color: var(--white);
}

.case-study-1.style-2 .swiper-dot .swiper-pagination-bullet {
  background-color: var(--white);
}

.case-study-2 .container-fluid {
  padding: 0 80px;
}

@media (max-width: 767px) {
  .case-study-2 .container-fluid {
    padding: 0 30px;
  }
}

.case-study-2 .case-study-grid {
  padding-top: 24px;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: auto auto auto;
  grid-template-columns: auto auto auto;
  gap: 24px;
  cursor: pointer;
}

@media (max-width: 1399px) {
  .case-study-2 .case-study-grid {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
  }
}

@media (max-width: 991px) {
  .case-study-2 .case-study-grid {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
}

.case-study-2 .case-study-grid .single-case-item {
  width: 645px;
  height: 424px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.case-study-2 .case-study-grid .single-case-item::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(2, 13, 68, 0.36);
  opacity: 0;
  visibility: hidden;
  height: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1899px) {
  .case-study-2 .case-study-grid .single-case-item {
    width: 100%;
  }
}

.case-study-2 .case-study-grid .single-case-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.case-study-2 .case-study-grid .single-case-item.style-2 {
  width: 532px;
  height: 424px;
}

@media (max-width: 1899px) {
  .case-study-2 .case-study-grid .single-case-item.style-2 {
    width: 100%;
  }
}

.case-study-2 .case-study-grid .single-case-item .hover {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 11;
}

@media (max-width: 575px) {
  .case-study-2 .case-study-grid .single-case-item .hover {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.case-study-2 .case-study-grid .single-case-item .hover .title span {
  color: var(--white);
  padding-left: 40px;
  font-weight: 600;
}

.case-study-2 .case-study-grid .single-case-item .hover .title h4 {
  border-radius: 0px 4px 4px 0px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  color: var(--white);
  padding: 5px 15px 5px 25px;
  margin-top: 6px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.case-study-2 .case-study-grid .single-case-item .hover .icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  color: var(--white);
  margin-right: 45px;
  margin-top: 45px;
}

@media (max-width: 575px) {
  .case-study-2 .case-study-grid .single-case-item .hover .icon {
    margin: 0;
    margin-top: 20px;
  }
}

.case-study-2 .case-study-grid .single-case-item:hover::after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}

.case-study-2 .case-study-grid .single-case-item:hover .hover {
  opacity: 1;
  visibility: visible;
  bottom: 35px;
}

.case-study-2 .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 10px;
}

.case-study-2 .nav .nav-link {
  font-size: 16px;
  font-weight: 700;
  padding: 10px 17px;
  color: var(--text-2);
  background-color: var(--white);
  border: 1px solid var(--border-2);
  line-height: 1;
  text-transform: capitalize;
}

.case-study-2 .nav .nav-link:hover {
  color: var(--white);
  border: 1px solid var(--theme);
}

.case-study-2 .nav .nav-link.active {
  -o-border-image: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  border-image: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  border-image-slice: 1;
  color: var(--white) !important;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
}

.page-nav-wrap ul li {
  display: inline-block;
}

.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 46px;
  height: 46px;
  line-height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--black-2);
  font-weight: 700;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}

.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}

@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}

.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}

.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--black-2);
  color: var(--white);
}

.project-details-wrapper .project-details-content .project-details-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.project-details-wrapper .project-details-content h3 {
  font-size: 42px;
}

.project-details-wrapper .project-details-content .image {
  height: 350px;
  margin-top: 35px;
}

.project-details-wrapper .project-details-content .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.project-details-wrapper .project-details-content h4 {
  font-size: 22px;
}

.project-details-wrapper .project-details-content .list {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 85px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.project-details-wrapper .project-details-content .list ul li {
  color: var(--text);
  font-weight: 500;
  padding-bottom: 10px;
}

.project-details-wrapper .project-details-content .list ul li i {
  padding-right: 5px;
  color: var(--theme-2);
}

.project-details-wrapper .project-sidebar-widget {
  padding: 40px 40px;
  background-color: var(--bg);
  margin-bottom: 30px;
  border-radius: 12px;
  border: 1px solid var(--theme);
}

.project-details-wrapper .project-sidebar-widget .wid-title {
  margin-bottom: 15px;
}

.project-details-wrapper .project-sidebar-widget .wid-title h3 {
  position: relative;
  padding-bottom: 15px;
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
}

.project-details-wrapper .project-sidebar-widget .wid-title h3::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 130px;
  height: 2px;
  content: "";
  background-color: var(--theme);
}

.project-details-wrapper .project-sidebar-widget .case-content-box .case-infobox li {
  color: var(--text);
  font-weight: 600;
  padding: 10px 30px;
  background-color: var(--white);
  margin-top: 25px;
  border-radius: 32px;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

.project-details-wrapper .project-sidebar-widget .social {
  margin-top: 24px;
}

.project-details-wrapper .project-sidebar-widget .social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  color: var(--theme-2);
  background-color: var(--white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin: 0 3px;
}

.project-details-wrapper .project-sidebar-widget .social a:hover {
  background: var(--theme-2);
  color: var(--white);
}

.team-1 {
  position: relative;
}

.team-1 .shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 5%;
}

.team-1 .single-team-item {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  margin-top: 40px;
}

.team-1 .single-team-item .shape-2 {
  position: absolute;
  top: 50px;
  left: -0;
  z-index: 1;
  border-top-left-radius: 120px;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.team-1 .single-team-item .shape-3 {
  position: absolute;
  bottom: 50px;
  right: -100px;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.team-1 .single-team-item .team-image {
  position: relative;
}

.team-1 .single-team-item .team-image .image {
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 312 382" xmlns="http://www.w3.org/2000/svg"><path d="M0 36.4468C0 32.1144 2.33527 28.1183 6.10988 25.9918L49.5029 1.54503C51.3007 0.532142 53.3294 0 55.393 0H300C306.627 0 312 5.37258 312 12V369.17C312 375.797 306.627 381.17 300 381.17H12C5.37259 381.17 0 375.797 0 369.17V36.4468Z" /></svg>');
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 312 382" xmlns="http://www.w3.org/2000/svg"><path d="M0 36.4468C0 32.1144 2.33527 28.1183 6.10988 25.9918L49.5029 1.54503C51.3007 0.532142 53.3294 0 55.393 0H300C306.627 0 312 5.37258 312 12V369.17C312 375.797 306.627 381.17 300 381.17H12C5.37259 381.17 0 375.797 0 369.17V36.4468Z" /></svg>');
  border-radius: 12px;
  height: 381px;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.team-1 .single-team-item .team-image .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
}

.team-1 .single-team-item .social-icon {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}

.team-1 .single-team-item .social-icon a {
  width: 42px;
  height: 42px;
  background: var(--white);
  color: var(--black-2);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.team-1 .single-team-item .social-icon a:nth-child(1) {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
}

.team-1 .single-team-item .social-icon a:nth-child(2) {
  -webkit-transition: all 0.55s;
  transition: all 0.55s;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
}

.team-1 .single-team-item .social-icon a:nth-child(3) {
  -webkit-transition: all 0.55s;
  transition: all 0.55s;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
}

.team-1 .single-team-item .social-icon a:nth-child(4) {
  -webkit-transition: all 0.85s;
  transition: all 0.85s;
  -webkit-transform: translate3d(0, 50px, 0);
  transform: translate3d(0, 50px, 0);
}

.team-1 .single-team-item .social-icon a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.team-1 .single-team-item .social-icon a:hover {
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  color: var(--white);
}

.team-1 .single-team-item .social-icon a:hover i {
  -webkit-animation: iconTranslateX 0.4s forwards;
  animation: iconTranslateX 0.4s forwards;
}

.team-1 .single-team-item:hover .social-icon a {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.team-1 .single-team-item:hover .shape-2 {
  top: -2px;
  opacity: 1;
  left: -30px;
}

.team-1 .single-team-item:hover .shape-3 {
  opacity: 1;
  right: 0;
}

.team-1 .single-team-item .content p {
  color: var(--theme-2);
}

.team-1 .single-team-item .content h3 {
  font-size: 20px;
}

.team-2 .single-team-item {
  width: 100%;
  position: relative;
  height: 261px;
  border-radius: 12px;
  background: var(--white);
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  margin-top: 170px;
}

.team-2 .single-team-item .shape-1 {
  position: absolute;
  top: -100px;
  z-index: -1;
  left: 10px;
  opacity: 0.12;
  -webkit-animation: zoomBig 2s infinite linear;
  animation: zoomBig 2s infinite linear;
}

.team-2 .single-team-item .team-image {
  position: absolute;
  width: 230px;
  height: 230px;
  margin: 0 auto;
  top: -150px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.team-2 .single-team-item .team-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  object-fit: cover;
}

.team-2 .single-team-item .content {
  padding-top: 100px;
  text-align: center;
}

.team-2 .single-team-item .content h4 a {
  color: var(--black-2);
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.team-2 .single-team-item .content h4 a:hover {
  color: var(--theme);
  background-size: 100% 1px;
}

.team-2 .single-team-item .content p {
  color: var(--theme-2);
  padding-bottom: 5px;
}

.team-2 .single-team-item .content .social {
  padding-top: 22px;
  gap: 10px;
}

.team-2 .single-team-item .content .social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: var(--white);
  border: 1px solid var(--border-2);
  color: var(--theme-2);
}

.team-2 .single-team-item .content .social a i {
  position: relative;
  z-index: 2;
  display: inline-block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.team-2 .single-team-item .content .social a:hover {
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  color: var(--white);
}

.team-2 .single-team-item .content .social a:hover i {
  -webkit-animation: iconTranslateX 0.4s forwards;
  animation: iconTranslateX 0.4s forwards;
}

.team-3 {
  position: relative;
}

.team-3 .shape-1 {
  position: absolute;
  bottom: -70px;
  z-index: -1;
  left: -80px;
  opacity: 0.12;
  -webkit-animation: spinner 20s infinite linear;
  animation: spinner 20s infinite linear;
}

.team-3 .shape-2 {
  position: absolute;
  bottom: 10%;
  z-index: -1;
  right: 14%;
  opacity: 60%;
  -webkit-animation: zoomBig 5s infinite linear;
  animation: zoomBig 5s infinite linear;
}

.team-3 .bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
}

.team-3 .single-team-item {
  width: 100%;
}

.team-3 .single-team-item .image {
  width: 100%;
  height: 266px;
}

.team-3 .single-team-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

.team-3 .single-team-item .content {
  background-color: var(--white);
  padding: 15px;
  border-radius: 71px;
  text-align: center;
  margin: 0 37px;
  margin-top: -50px;
  z-index: 1;
  position: relative;
}

@media (max-width: 1199px) {
  .team-3 .single-team-item .content {
    margin-left: 0;
    margin-right: 0;
  }
}

.team-3 .single-team-item .content p {
  color: var(--theme-2);
}

.team-3 .single-team-item .content h4 a {
  color: var(--black-2);
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.team-3 .single-team-item .content h4 a:hover {
  color: var(--theme);
  background-size: 100% 1px;
}

.team-details-wrapper .team-image {
  height: 385px;
}

.team-details-wrapper .team-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.team-details-wrapper .team-details-content span {
  color: var(--theme-2);
}

.team-details-wrapper .team-details-content h3 {
  font-size: 28px;
}

.team-details-wrapper .team-details-contact {
  padding: 20px 30px;
  background-color: var(--white);
  margin-bottom: 30px;
  border-radius: 12px;
  border-radius: 12px;
  border-left: 2px solid #0B6EDA;
  background: #FFF;
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
}

.team-details-wrapper .team-details-contact .team-content-box .team-infobox li {
  color: var(--text);
  font-weight: 600;
  padding: 10px 0;
  border-radius: 32px;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}

.team-details-wrapper .team-details-contact .social {
  margin-top: 24px;
}

.team-details-wrapper .team-details-contact .social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  color: var(--theme-2);
  background-color: var(--white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  margin: 0 3px;
  border: 1px solid var(--border-2);
}

.team-details-wrapper .team-details-contact .social a:hover {
  background: var(--theme-2);
  color: var(--white);
}

.team-skill-wrapper .team-skill-content h3 {
  font-size: 28px;
}

.testimonial-1 {
  position: relative;
}

.testimonial-1 .shape-1 {
  position: absolute;
  left: 0;
  z-index: -1;
  -webkit-animation: zoomBig 6s infinite linear;
  animation: zoomBig 6s infinite linear;
}

.testimonial-1 .shape-2 {
  position: absolute;
  right: 0;
  bottom: -35%;
  z-index: -1;
  -webkit-animation: zoomBig 5s infinite linear;
  animation: zoomBig 5s infinite linear;
}

.testimonial-1 .array-button {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 99;
  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) {
  .testimonial-1 .array-button {
    display: none;
  }
}

.testimonial-1 .array-button .array-prev {
  position: absolute;
  color: var(--black-2);
  border: 1px solid var(--black-2);
  left: 0;
}

.testimonial-1 .array-button .array-prev:hover {
  background-color: var(--black-2);
  color: var(--white);
}

.testimonial-1 .array-button .array-next {
  position: absolute;
  color: var(--black-2);
  border: 1px solid var(--black-2);
  right: 0;
}

.testimonial-1 .array-button .array-next:hover {
  background-color: var(--black-2);
  color: var(--white);
}

.testimonial-1 .testimonial-slide {
  overflow: inherit;
}

.testimonial-1 .signle-testimonial-item {
  background-color: var(--white);
  border-radius: 12px;
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  margin: 0 155px;
  padding: 40px;
  padding-right: 60px;
  gap: 40px;
  position: relative;
  margin-top: 50px;
  margin-bottom: 120px;
}

@media (max-width: 1199px) {
  .testimonial-1 .signle-testimonial-item {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 80px;
  }
}

@media (max-width: 767px) {
  .testimonial-1 .signle-testimonial-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 40px 20px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.testimonial-1 .signle-testimonial-item::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  right: auto;
  background-color: var(--theme);
  left: -5px;
  z-index: -1;
  border-radius: 12px;
}

.testimonial-1 .signle-testimonial-item img {
  width: 191px;
  height: 191px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
}

.testimonial-1 .signle-testimonial-item .content .star {
  color: var(--theme-2);
  padding-bottom: 5px;
}

.testimonial-1 .signle-testimonial-item .content p {
  color: var(--text);
  font-family: "Montserrat", serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: -0.28px;
}

@media (max-width: 767px) {
  .testimonial-1 .signle-testimonial-item .content p {
    font-size: 18px;
    text-align: center;
  }
}

.testimonial-2 {
  position: relative;
}

.testimonial-2 .shape-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 28%;
}

.testimonial-2 .single-testimonial-item {
  position: relative;
  background-color: var(--theme-3);
  padding: 40px 30px 20px 95px;
  max-width: 580px;
  border-radius: 12px;
  float: right;
}

@media (max-width: 1399px) {
  .testimonial-2 .single-testimonial-item {
    max-width: 100%;
    padding-left: 40px;
  }
}

.testimonial-2 .single-testimonial-item .client-img {
  position: absolute;
  width: 112px;
  height: 112px;
  left: -55px;
  top: 35px;
}

@media (max-width: 1399px) {
  .testimonial-2 .single-testimonial-item .client-img {
    position: initial;
    margin-bottom: 20px;
  }
}

.testimonial-2 .single-testimonial-item .client-img img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
}

.testimonial-2 .single-testimonial-item .client-rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.testimonial-2 .single-testimonial-item .client-rating li {
  color: var(--theme);
}

.testimonial-2 .single-testimonial-item .text {
  font-size: 20px;
  font-weight: 600;
  line-height: 32px;
  letter-spacing: -0.2px;
  color: var(--white);
  padding-top: 10px;
  font-family: "Montserrat", serif;
}

.testimonial-2 .single-testimonial-item .client-info {
  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-top: 25px;
}

.testimonial-2 .single-testimonial-item .client-info .content h6 {
  font-size: 16px;
  color: var(--white);
}

.testimonial-2 .single-testimonial-item .client-info .content p {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.testimonial-2 .swiper-dot .swiper-pagination-bullet {
  background-color: var(--white);
}

.testimonial-3 .testimonial-image {
  width: 535px;
  height: 535px;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .testimonial-3 .testimonial-image {
    width: 450px;
    height: 450px;
  }
}

@media (max-width: 575px) {
  .testimonial-3 .testimonial-image {
    width: 100%;
    height: 100%;
  }
}

.testimonial-3 .testimonial-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-3 .testimonial-content .array-button {
  position: absolute;
  bottom: 0;
  left: auto;
  right: 0;
}

.testimonial-3 .testimonial-content .single-testimonial-item {
  padding-top: 45px;
}

.testimonial-3 .testimonial-content .single-testimonial-item .client-rating {
  gap: 5px;
}

.testimonial-3 .testimonial-content .single-testimonial-item .client-rating li {
  color: var(--theme);
}

.testimonial-3 .testimonial-content .single-testimonial-item .text {
  font-family: "Montserrat", serif;
  color: var(--text);
  font-size: 24px;
  font-weight: 600;
  line-height: 41px;
  letter-spacing: -0.24px;
}

.testimonial-3 .testimonial-content .single-testimonial-item .client-info {
  padding-top: 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

.testimonial-3 .testimonial-content .single-testimonial-item .client-info .client-img {
  position: relative;
  width: 65px;
  height: 65px;
}

.testimonial-3 .testimonial-content .single-testimonial-item .client-info .client-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-3 .testimonial-content .single-testimonial-item .client-info .client-img .icon {
  position: absolute;
  color: var(--theme-2);
  font-size: 30px;
  z-index: 11;
  top: -15px;
  right: -10px;
}

.testimonial-4 .single-testimonial-item {
  text-align: center;
  padding: 0 50px;
  border-right: 1px solid var(--border-2);
  position: relative;
}

.testimonial-4 .single-testimonial-item .shape-1 {
  position: absolute;
  left: 70px;
  top: 10px;
  opacity: 9%;
}

.testimonial-4 .single-testimonial-item .client-img {
  width: 78px;
  height: 78px;
  position: relative;
}

.testimonial-4 .single-testimonial-item .client-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-4 .single-testimonial-item .client-img .icon {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 26px;
  color: var(--theme);
}

.testimonial-4 .single-testimonial-item .client-rating {
  padding-top: 25px;
  padding-bottom: 10px;
}

.testimonial-4 .single-testimonial-item .client-rating li {
  color: var(--theme);
  gap: 5px;
}

.testimonial-4 .single-testimonial-item .text {
  font-size: 18px;
  padding-top: 30px;
}

.testimonial-4 .single-testimonial-item .client-info {
  padding-top: 20px;
}

.testimonial-4 .single-testimonial-item .client-info p {
  font-size: 14px;
}

.process-1 {
  position: relative;
}

.process-1 .process-items {
  -ms-grid-columns: auto auto auto;
  grid-template-columns: auto auto auto;
  padding-top: 70px;
}

@media (max-width: 1399px) {
  .process-1 .process-items {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    gap: 30px;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
}

@media (max-width: 991px) {
  .process-1 .process-items {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
}

.process-1 .process-items .single-process-item {
  position: relative;
  z-index: 1;
  width: 372px;
}

.process-1 .process-items .single-process-item .icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  position: absolute;
  top: 25px;
  left: 10px;
  z-index: 1;
}

.process-1 .process-items .single-process-item:nth-child(2) .icon {
  top: 5px;
  left: 15px;
}

@media (max-width: 991px) {
  .process-1 .process-items .single-process-item {
    width: 100%;
  }
}

.process-1 .process-items .single-process-item .image {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 372 333" xmlns="http://www.w3.org/2000/svg"><path d="M0 75.1761C0 68.9789 2.87287 63.1318 7.77841 59.3447L79.2515 4.16861C82.7523 1.46598 87.0503 0 91.473 0H352C363.046 0 372 8.95431 372 20V312.34C372 323.385 363.046 332.34 352 332.34H20C8.95431 332.34 0 323.385 0 312.34V75.1761Z" /></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 372 333" xmlns="http://www.w3.org/2000/svg"><path d="M0 75.1761C0 68.9789 2.87287 63.1318 7.77841 59.3447L79.2515 4.16861C82.7523 1.46598 87.0503 0 91.473 0H352C363.046 0 372 8.95431 372 20V312.34C372 323.385 363.046 332.34 352 332.34H20C8.95431 332.34 0 323.385 0 312.34V75.1761Z" /></svg>');
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  height: 332px;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.process-1 .process-items .single-process-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  object-fit: contain;
}

.process-1 .process-items .single-process-item h4 {
  color: var(--white);
  padding-top: 20px;
}

.process-1 .process-items .single-process-item p {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  line-height: 26px;
  padding: 15px 20px 0 20px;
}

.process-1 .shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 5%;
  -webkit-animation: zoomBig 10s infinite linear;
  animation: zoomBig 10s infinite linear;
}

.process-1 .shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 40%;
  -webkit-animation: topToBottom 5s infinite linear;
  animation: topToBottom 5s infinite linear;
}

.process-1 .shape-3 {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 40%;
  -webkit-animation: leftToRight 5s infinite linear;
  animation: leftToRight 5s infinite linear;
}

.process-1 .shape-4 {
  position: absolute;
  top: 26.5%;
  left: 25.5%;
  -webkit-animation: leftToRight 3s infinite linear;
  animation: leftToRight 3s infinite linear;
}

.process-1 .shape-5 {
  position: absolute;
  bottom: 29.5%;
  left: 49.5%;
  -webkit-animation: leftToRight 3s infinite linear;
  animation: leftToRight 3s infinite linear;
}

.process-2 {
  position: relative;
}

.process-2 .signle-process-item {
  position: relative;
  text-align: center;
  margin-top: 30px;
}

.process-2 .signle-process-item .shape-1 {
  position: absolute;
  right: -130px;
  -webkit-animation: rotateleft2 5s linear infinite;
  animation: rotateleft2 5s linear infinite;
}

@media (max-width: 767px) {
  .process-2 .signle-process-item .shape-1 {
    display: none;
  }
}

.process-2 .signle-process-item .shape-2 {
  position: absolute;
  right: -120px;
  top: 25px;
  -webkit-animation: rotateleft 5s linear infinite;
  animation: rotateleft 5s linear infinite;
}

@media (max-width: 1199px) {
  .process-2 .signle-process-item .shape-2 {
    display: none;
  }
}

.process-2 .signle-process-item .icons {
  display: inline-block;
  position: relative;
  padding-bottom: 35px;
}

.process-2 .signle-process-item .icons .icon-1 {
  width: 111px;
  height: 111px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  -webkit-box-shadow: 7px 11px 50px 50px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 50px rgba(2, 8, 66, 0.03);
  font-size: 37px;
  background: var(--white);
  color: var(--theme);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.process-2 .signle-process-item .icons .icon-2 {
  width: 41px;
  height: 41px;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  background-color: var(--theme-2);
  position: absolute;
  right: -10px;
}

.process-2 .signle-process-item:hover .icon-1 {
  background-color: var(--theme-2);
  color: var(--white);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.video-1 {
  margin-top: -260px;
}

.video-1 .video-image {
  position: relative;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1316 535"  xmlns="http://www.w3.org/2000/svg"><path d="M0 104.971C0 101.788 1.26428 98.7357 3.51472 96.4853L96.4853 3.51472C98.7357 1.26428 101.788 0 104.971 0H1191.66C1194.46 0 1197.18 0.984195 1199.34 2.78134L1311.68 96.4018C1314.42 98.6818 1316 102.059 1316 105.62V523C1316 529.627 1310.63 535 1304 535H12C5.3726 535 0 529.627 0 523V104.971Z" /></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1316 535"  xmlns="http://www.w3.org/2000/svg"><path d="M0 104.971C0 101.788 1.26428 98.7357 3.51472 96.4853L96.4853 3.51472C98.7357 1.26428 101.788 0 104.971 0H1191.66C1194.46 0 1197.18 0.984195 1199.34 2.78134L1311.68 96.4018C1314.42 98.6818 1316 102.059 1316 105.62V523C1316 529.627 1310.63 535 1304 535H12C5.3726 535 0 529.627 0 523V104.971Z" /></svg>');
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  height: 535px;
  border-radius: 30px;
  -webkit-mask-size: cover;
  mask-size: cover;
}

.video-1 .video-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
}

.video-1 .video-image::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(2, 13, 68, 0.44);
}

.video-1 .video-image .icon {
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  color: var(--white);
  position: relative;
  z-index: 2;
  margin: auto;
}

.video-1 .video-image .video-button {
  position: relative;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  width: 100px;
  height: 100px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 11;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.video-1 .video-image .video-button i {
  font-size: 28px;
  color: var(--white);
}

.video-1 .video-image .video-button .video-button-ripple::before,
.video-1 .video-image .video-button .video-button-ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 0 0 rgba(63, 181, 253, 0.6);
  box-shadow: 0 0 0 0 rgba(63, 181, 253, 0.6);
  -webkit-animation: popupVideo 3s infinite;
  animation: popupVideo 3s infinite;
  border-radius: 50%;
}

.video-1 .video-image .video-button .video-button-ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.video-1 .video-image .video-button .video-button-ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.video-1.style-2 .video-image {
  -webkit-mask: none;
  mask: none;
  border-radius: 20px;
}

.video-1.style-2 .video-image::after {
  display: none;
}

.video-1.style-2 .video-image .icon {
  width: 85px;
  height: 85px;
  font-size: 25px;
}

.video-1.video-page {
  margin-top: -220px;
}

@-webkit-keyframes popupVideo {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}

@keyframes popupVideo {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}

.blog-wrapper .blog-details-image {
  width: 100%;
  height: 472px;
}

.blog-wrapper .blog-details-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 10px;
}

.blog-wrapper .single-blog-post {
  margin-bottom: 40px;
  position: relative;
}

.blog-wrapper .single-blog-post .array-button {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 99;
  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;
}

.blog-wrapper .single-blog-post.post-details.format-quote .post-content {
  position: relative;
  background: transparent;
  border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content {
  border: none;
}

.blog-wrapper .single-blog-post.post-details .post-content h3 {
  font-size: 28px;
  font-weight: 700;
}

.blog-wrapper .single-blog-post.post-details .post-content .image-2 {
  height: 254px;
}

.blog-wrapper .single-blog-post.post-details .post-content .image-3 {
  height: 425px;
}

.blog-wrapper .single-blog-post.post-details .post-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-wrapper .single-blog-post.post-details .post-content .single-post-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-wrapper .single-blog-post.post-details .post-content table {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post.post-details .post-content h1 {
    font-size: 28px;
  }

  .blog-wrapper .single-blog-post.post-details .post-content h3 {
    font-size: 20px;
  }
}

.blog-wrapper .single-blog-post.post-details .wp-block-quote {
  background-color: var(--bg);
  padding: 40px 35px;
  margin: 40px 0px;
  position: relative;
  z-index: 1;
}

.blog-wrapper .single-blog-post.post-details .wp-block-quote blockquote {
  color: var(--black-2);
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 39px;
  letter-spacing: -0.28px;
}

.blog-wrapper .single-blog-post.post-details .wp-block-quote .title span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}

.blog-wrapper .single-blog-post.post-details .wp-block-quote .title .icon {
  font-size: 40px;
  color: var(--theme-2);
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb,
.blog-wrapper .single-blog-post.category-video-post .post-featured-thumb {
  z-index: 1;
  position: relative;
}

.blog-wrapper .single-blog-post.format-video .post-featured-thumb::before,
.blog-wrapper .single-blog-post.category-video-post .post-featured-thumb::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: "";
  background-color: #282835;
  opacity: .3;
  z-index: -1;
}

.blog-wrapper .single-blog-post.quote-post .post-content,
.blog-wrapper .single-blog-post.format-quote .post-content {
  position: relative;
  background-color: var(--theme);
  border: none;
}

.blog-wrapper .single-blog-post.quote-post .post-content::before,
.blog-wrapper .single-blog-post.format-quote .post-content::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-image: url(../img/quotepost.html);
  background-repeat: no-repeat;
  background-size: cover;
}

.blog-wrapper .single-blog-post.quote-post .quote-content,
.blog-wrapper .single-blog-post.format-quote .quote-content {
  overflow: hidden;
  padding: 50px;
}

@media (max-width: 585px) {

  .blog-wrapper .single-blog-post.quote-post .quote-content,
  .blog-wrapper .single-blog-post.format-quote .quote-content {
    text-align: center;
    font-size: 24px;
    padding: 30px;
  }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .icon,
.blog-wrapper .single-blog-post.format-quote .quote-content .icon {
  font-size: 70px;
  line-height: 80px;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}

@media (max-width: 585px) {

  .blog-wrapper .single-blog-post.quote-post .quote-content .icon,
  .blog-wrapper .single-blog-post.format-quote .quote-content .icon {
    float: none;
    margin-bottom: 10px;
    margin-right: 0;
    font-size: 50px;
    line-height: 60px;
  }
}

.blog-wrapper .single-blog-post.quote-post .quote-content .quote-text,
.blog-wrapper .single-blog-post.format-quote .quote-content .quote-text {
  overflow: hidden;
}

.blog-wrapper .single-blog-post.quote-post .quote-content h2,
.blog-wrapper .single-blog-post.format-quote .quote-content h2 {
  margin-top: -2px;
  font-size: 36px;
  color: var(--white);
}

.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta {
  margin-top: 10px;
}

.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta span,
.blog-wrapper .single-blog-post.quote-post .quote-content .post-meta i,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta span,
.blog-wrapper .single-blog-post.format-quote .quote-content .post-meta i {
  color: var(--white);
}

.blog-wrapper .single-blog-post:last-child {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-featured-thumb {
  height: 450px;
  width: 100%;
  position: relative;
  margin-bottom: -2px;
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 15px 30px;
  background-color: var(--theme);
  text-align: center;
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 {
  color: var(--white);
}

.blog-wrapper .single-blog-post .post-featured-thumb .post-date h4 span {
  color: var(--white);
  text-transform: uppercase;
  font-size: 15px;
}

@media (max-width: 991px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 280px;
  }
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-featured-thumb {
    height: 230px;
  }
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-button {
  position: relative;
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  width: 100px;
  height: 100px;
  background: var(--white);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 11;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-button i {
  font-size: 28px;
  color: var(--theme-2);
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-button .video-button-ripple::before,
.blog-wrapper .single-blog-post .post-featured-thumb .video-button .video-button-ripple::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 253, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 253, 0.6);
  -webkit-animation: popupVideo 3s infinite;
  animation: popupVideo 3s infinite;
  border-radius: 50%;
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-button .video-button-ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
}

.blog-wrapper .single-blog-post .post-featured-thumb .video-button .video-button-ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
}

.blog-wrapper .single-blog-post .post-content {
  padding-top: 30px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content {
    padding-top: 20px;
  }
}



.blog-wrapper .single-blog-post .post-content h2 a:hover {
  color: var(--theme);
}

.blog-wrapper .single-blog-post .post-content p {
  font-size: 16px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content {
    padding: 30px 10px;
  }
}



.blog-wrapper .single-blog-post .post-content .post-cat a {
  color: var(--white);
  display: inline-block;
  background-color: var(--theme);
  padding: 14px 18px 12px;
  line-height: 1;
  font-size: 16px;
  font-weight: 700;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin-bottom: 20px;
  text-transform: capitalize;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-cat a {
    font-size: 12px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-cat a:hover {
  background-color: var(--black-2);
}

.blog-wrapper .single-blog-post .post-content ul {
  margin-bottom: 0;
  list-style-type: disc;
  margin-top: 35px;
}

.blog-wrapper .single-blog-post .post-content ul ol {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul ul {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ul li {
  line-height: 1.5;
  margin-top: 22px;
  list-style-type: disc;
  color: var(--text-2);
  font-weight: 500;
  position: relative;
  font-size: 18px;
  padding-left: 40px;
}

.blog-wrapper .single-blog-post .post-content ul li::before {
  width: 30px;
  height: 30px;
  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;
  background-color: var(--white);
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 5 Pro";
  content: "\f00c";
  font-size: 14px;
  color: var(--theme);
  border-radius: 50%;
  -webkit-box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.09);
  box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.09);
}

.blog-wrapper .single-blog-post .post-content ol {
  margin-bottom: 0;
  list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content ol ul {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol ol {
  margin-bottom: 0;
}

.blog-wrapper .single-blog-post .post-content ol li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: decimal;
}

.blog-wrapper .single-blog-post .post-content p {
  margin-top: 15px;
}

.blog-wrapper .single-blog-post .post-content .post-meta {
  margin-bottom: 10px;
}

.blog-wrapper .single-blog-post .post-content .post-meta span {
  color: var(--text);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  margin: 0 14px;
}

.blog-wrapper .single-blog-post .post-content .post-meta span:nth-child(1) {
  -webkit-margin-start: 0;
  margin-inline-start: 0;
}

.blog-wrapper .single-blog-post .post-content .post-meta span i {
  margin-right: 5px;
  color: var(--theme);
  font-weight: 700;
}

.blog-wrapper .single-blog-post .post-content .theme-btn i {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.blog-wrapper .single-blog-post .post-content .author-info {
  overflow: hidden;
}

.blog-wrapper .single-blog-post .post-content .author-info .author-img {
  height: 40px;
  width: 40px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #f2f2f2;
  margin-right: 15px;
  float: left;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info .author-img {
    margin-right: 5px;
  }
}

.blog-wrapper .single-blog-post .post-content .author-info h5 {
  display: inline-block;
  line-height: 1;
  font-size: 16px;
  margin-top: 9px;
}

.blog-wrapper .single-blog-post .post-content .author-info h5 a:hover {
  color: var(--theme);
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .author-info h5 {
    font-size: 14px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-link a {
  font-weight: 700;
}

.blog-wrapper .single-blog-post .post-content .post-link a:hover {
  color: var(--theme);
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a {
    font-size: 14px;
  }
}

.blog-wrapper .single-blog-post .post-content .post-link a i {
  margin-right: 5px;
}

@media (max-width: 767px) {
  .blog-wrapper .single-blog-post .post-content .post-link a i {
    margin-right: 3px;
  }
}

@media (min-width: 991px) {
  .news-area .main-sidebar {
    margin-left: 20px;
  }
}

@media (max-width: 991px) {
  .news-area .main-sidebar {
    margin-top: 40px;
  }
}

.news-area .main-sidebar .single-sidebar-widget {
  background-color: var(--bg);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 10px;
}

.news-area .main-sidebar .single-sidebar-widget ul {
  padding-left: 0;
}

.news-area .main-sidebar .single-sidebar-widget ul>li {
  margin-bottom: 10px;
}

.news-area .main-sidebar .single-sidebar-widget ul>li a {
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

.news-area .main-sidebar .single-sidebar-widget ul>li a:hover {
  color: var(--theme);
}

.news-area .main-sidebar .single-sidebar-widget ul ul {
  padding-left: 20px;
}

.news-area .main-sidebar .single-sidebar-widget ul ul li {
  margin-top: 5px;
}

.news-area .main-sidebar .single-sidebar-widget:last-child {
  margin-bottom: 0;
  display: none;
}

.news-area .main-sidebar .single-sidebar-widget .wid-title {
  margin-bottom: 25px;
  padding-left: 5px;
  position: relative;
}

.news-area .main-sidebar .single-sidebar-widget .wid-title::before {
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  height: 21px;
  width: 2px;
  border-radius: 5px;
  position: absolute;
  background-color: var(--theme-2);
}

.news-area .main-sidebar .single-sidebar-widget .wid-title h3 {
  font-size: 18px;
}

.news-area .main-sidebar .single-sidebar-widget .social-link a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 4px;
  background-color: var(--bg);
  font-size: 14px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.news-area .main-sidebar .single-sidebar-widget .social-link a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.search_widget form {
  width: 100%;
  position: relative;
}

.search_widget form input {
  background-color: var(--white);
  font-size: 15px;
  padding: 12px 25px;
  width: 100%;
  border: none;
  text-transform: capitalize;
  color: var(--black-2);
}

.search_widget form button {
  position: absolute;
  right: 0;
  top: 0;
  width: 70px;
  font-size: 18px;
  height: 100%;
  color: var(--black-2);
  text-align: center;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.search_widget form button:hover {
  background-color: var(--black-2);
}

.popular-posts .single-post-item,
.popular_posts .single-post-item {
  overflow: hidden;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.popular-posts .single-post-item:last-child,
.popular_posts .single-post-item:last-child {
  margin-bottom: 0;
  border: none;
  padding-bottom: 0;
}

.popular-posts .single-post-item .thumb,
.popular_posts .single-post-item .thumb {
  height: 85px;
  width: 100px;
  float: left;
  margin-right: 20px;
  border-radius: 4px;
}

.popular-posts .single-post-item .post-content,
.popular_posts .single-post-item .post-content {
  overflow: hidden;
}

.popular-posts .single-post-item .post-content h5,
.popular_posts .single-post-item .post-content h5 {
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 0;
  font-family: "DM Sans", sans-serif;
  text-transform: capitalize;
}

.popular-posts .single-post-item .post-content h5 a,
.popular_posts .single-post-item .post-content h5 a {
  color: var(--text);
}

.popular-posts .single-post-item .post-content h5 a:hover,
.popular_posts .single-post-item .post-content h5 a:hover {
  color: var(--theme-2);
}

.popular-posts .single-post-item .post-content .post-date,
.popular_posts .single-post-item .post-content .post-date {
  color: #959595;
  font-weight: 600;
  font-size: 15px;
  text-transform: capitalize;
}

.popular-posts .single-post-item .post-content .post-date i,
.popular_posts .single-post-item .post-content .post-date i {
  color: var(--theme-2);
  margin-right: 7px;
  font-size: 20px;
}

.widget_categories {
  padding-right: 10px;
}

.widget_categories ul li {
  display: block;
}

.widget_categories ul li:last-child a {
  margin-bottom: 0;
}

.widget_categories ul li a {
  position: relative;
  background: var(--white);
  color: var(--text);
  padding: 18px 20px;
  line-height: 1;
  font-size: 16px;
  display: block;
  margin-bottom: 20px;
  border-radius: 4px;
  font-weight: 600;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 1;
  overflow: hidden;
}

.widget_categories ul li a::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  z-index: -1;
  width: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.widget_categories ul li a:hover {
  color: var(--white) !important;
}

.widget_categories ul li a:hover::after {
  width: 100%;
  opacity: 1;
}

.widget_categories ul li a:hover span {
  color: var(--white);
}

.widget_categories ul li a i {
  margin-right: 10px;
}

.widget_categories ul li a span {
  position: absolute;
  width: 60px;
  line-height: 55px;
  height: 100%;
  content: "";
  right: 0;
  top: 0;
  text-align: center;
  color: var(--text);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.tagcloud a {
  display: inline-block;
  padding: 12px 25px;
  line-height: 1;
  font-weight: 600;
  border: 1px solid #F6F3EE;
  margin-right: 10px;
  text-transform: capitalize;
  margin-bottom: 10px;
  border-radius: 4px;
}

.tagcloud a:last-child {
  margin-right: 0;
}

.tagcloud a:hover {
  background-color: var(--theme-2);
  color: var(--white);
}

.tagcloud-2 a {
  display: inline-block;
  padding: 12px 15px;
  text-align: center;
  line-height: 1;
  font-weight: 500;
  background-color: var(--white);
  margin-right: 12px;
  text-transform: capitalize;
  margin-bottom: 10px;
  border-radius: 4px;
}

.tagcloud-2 a:last-child {
  margin-right: 0;
}

.tagcloud-2 a:hover {
  background-color: var(--theme-2);
  color: var(--white);
}

.widget_categories ul li {
  display: block;
  margin-bottom: 10px;
}

p.sticky-label {
  position: absolute;
  right: 0;
  background: var(--theme);
  color: var(--white);
  padding: 10px 40px;
  z-index: -1;
  top: 0;
  font-weight: 700;
}

.social-share a {
  width: 35px;
  height: 35px;
  background-color: var(--bg);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  margin-left: 10px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.social-share a:hover {
  background-color: var(--theme-2);
  color: var(--white);
}

.tag-share-wrap {
  padding-bottom: 50px;
  padding-top: 60px;
}

.tag-share-wrap h4 {
  margin-right: 15px;
  line-height: 1;
}

@media (max-width: 767px) {
  .tag-share-wrap h4 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .tag-share-wrap .tagcloud {
    margin-bottom: 20px;
  }
}

.comments-section-wrap {
  overflow: hidden;
}

.related-post-wrap,
.comment-form-wrap {
  background-color: #F8F8F9;
  height: 100%;
  padding: 50px;
  padding-right: 65px;
}

@media (max-width: 767px) {

  .related-post-wrap,
  .comment-form-wrap {
    padding: 30px;
  }
}

.related-post-wrap h3,
.comment-form-wrap h3 {
  font-size: 26px;
}

@media (max-width: 767px) {

  .related-post-wrap h3,
  .comment-form-wrap h3 {
    font-size: 20px;
  }
}

.comments-item-list .single-comment-item {
  margin-top: 30px;
}

.comments-item-list .single-comment-item ul {
  margin-bottom: 15px;
}

.comments-item-list .single-comment-item p,
.comments-item-list .single-comment-item span {
  font-size: 16px;
}

.comments-item-list .single-comment-item .author-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  float: left;
  overflow: hidden;
  margin-right: 30px;
}

@media (max-width: 585px) {
  .comments-item-list .single-comment-item .author-img {
    float: none;
    margin-bottom: 20px;
  }
}

.comments-item-list .single-comment-item .author-info-comment {
  overflow: auto;
  padding-bottom: 25px;
}

.comments-item-list .single-comment-item .author-info-comment .info {
  position: relative;
}

.comments-item-list .single-comment-item .author-info-comment .info .reply-btn {
  padding: 10px 18px;
  font-size: 25px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--black-2);
  border-radius: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-shadow: inherit;
  box-shadow: inherit;
  margin-right: 30px;
}

@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .info .reply-btn {
    font-size: 12px;
  }
}

.comments-item-list .single-comment-item .author-info-comment .info .reply-btn:hover {
  color: var(--theme-2) !important;
}

.comments-item-list .single-comment-item .author-info-comment .info h5 {
  margin-bottom: 2px;
}

@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .info h5 {
    font-size: 16px;
  }
}

.comments-item-list .single-comment-item .author-info-comment span {
  color: var(--text);
  font-weight: 600;
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn {
  padding: 7px 18px;
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .comments-item-list .single-comment-item .author-info-comment .theme-btn {
    font-size: 12px;
  }
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn i {
  margin-right: 5px;
}

.comments-item-list .single-comment-item .author-info-comment .theme-btn:hover a {
  color: var(--white);
}

.comments-item-list .single-comment-item .author-info-comment .comment-text {
  margin-top: 15px;
}

.comment-form {
  background-color: #F8F8F9;
  width: 100%;
  margin-top: 30px;
}

.comment-form label {
  margin-bottom: 4px;
}

.comment-form input,
.comment-form textarea {
  margin-bottom: 20px;
  outline: none;
  padding: 20px 30px;
  line-height: 1;
  font-size: 16px;
  width: 100%;
  border: none;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--black-2);
  background-color: var(--white);
}

@media (max-width: 585px) {

  .comment-form input,
  .comment-form textarea {
    padding: 15px;
  }
}

.comment-form textarea {
  height: 200px;
  line-height: 1.3;
  border: none;
}

@media (max-width: 767px) {
  .comment-form textarea {
    height: 120px;
  }
}

.comment-form .theme-btn i {
  margin-right: 10px;
  margin-left: 0;
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.comment ul {
  list-style-type: disc;
}

.comment ul ol {
  margin-bottom: 0;
}

.comment ul li {
  line-height: 1.5;
  margin-top: 10px;
  list-style-type: disc;
}

.comment ol ul {
  margin-bottom: 0;
}

.comment ol ol {
  margin-bottom: 0;
}

.comment ol li {
  line-height: 1.5;
  margin-top: 10px;
}

.site_info_widget .single-contact-info {
  overflow: auto;
  margin-bottom: 20px;
}

.site_info_widget .single-contact-info span {
  display: block;
  color: var(--theme);
}

.site_info_widget .single-contact-info .icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: var(--white);
  background-color: var(--theme);
  float: left;
  text-align: center;
  overflow: hidden;
  font-size: 16px;
  margin-right: 20px;
}

.site_info_widget .single-contact-info:nth-child(2n) .icon {
  background-color: var(--theme);
}

.site_info_widget .single-contact-info:nth-child(3n) .icon {
  background-color: var(--theme);
}

.site_info_widget .social-link {
  margin-top: 35px;
}

.site_info_widget .social-link a {
  margin-right: 8px !important;
}

.blog-author-info .image {
  width: 100px;
  height: 100px;
  margin: 0 auto;
}

.blog-author-info .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}

.blog-author-info .author-social-link a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 4px;
  background-color: var(--white);
  font-size: 14px;
  margin-right: 5px;
  margin-bottom: 5px;
}

.blog-author-info .author-social-link a:hover {
  background-color: var(--theme-2);
  color: var(--white);
}

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.blog-1 {
  position: relative;
}

.blog-1 .shape-1 {
  position: absolute;
  top: 50px;
  left: 60px;
  opacity: 5%;
}

.blog-1 .shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 22%;
}



/* FIX HUGE SPACE */

.blog-1 .blog-inner {
  padding-bottom: 0;
}



/* FIX ROW SPACING */

.blog-1 .blog-inner .row {

  row-gap: 30px;
}



/* CARD */

.blog-1 .blog-inner .single-blog-item {

  padding: 22px;

  background-color: var(--white);

  border-radius: 24px;

  position: relative;

  overflow: hidden;

  height: 100%;

  display: flex;

  flex-direction: column;

  transition: .4s;

  border: 1px solid rgba(0, 0, 0, .04);
}

.blog-1 .blog-inner .single-blog-item:hover {

  transform: translateY(-10px);

  box-shadow: 0 20px 70px rgba(0, 0, 0, .08);
}



/* IMAGE */

.blog-1 .blog-inner .single-blog-item .image {

  position: relative;

  overflow: hidden;

  border-radius: 20px;

  width: 100%;

  height: 230px;

  min-height: 230px;

  background: #F4F7FB;

  -webkit-mask: none;
  mask: none;
}

.blog-1 .blog-inner .single-blog-item .image img {

  width: 100%;

  height: 100%;

  object-fit: contain;

  object-position: center;

  border-radius: 20px;

  transition: .7s;

  background: #F4F7FB;

  padding: 8px;
}



/* SECOND IMAGE */

.blog-1 .blog-inner .single-blog-item .image img:nth-child(2) {

  position: absolute;

  left: 0;
  top: 0;

  width: 100%;
  height: 100%;

  opacity: 0;

  visibility: hidden;

  transform: scale(1.03);

  transition: .7s;
}

.blog-1 .blog-inner .single-blog-item:hover .image img:nth-child(2) {

  opacity: 1;

  visibility: visible;

  transform: scale(1);
}



/* CONTENT */

.blog-1 .blog-inner .single-blog-item .content {

  margin-top: 22px;

  position: relative;

  z-index: 9;

  display: flex;

  flex-direction: column;

  flex: 1;
}



/* CATEGORY */

.blog-1 .blog-inner .single-blog-item .content ul {

  display: flex;

  align-items: center;

  gap: 12px;

  flex-wrap: wrap;

  margin-bottom: 18px;
}

.blog-1 .blog-inner .single-blog-item .content ul li {

  font-size: 15px;

  color: #6B7280;

  font-weight: 500;
}



/* TITLE */

.blog-1 .blog-inner .single-blog-item .content h3 {

  margin-bottom: 18px;

  line-height: 1.35;

}

.blog-1 .blog-inner .single-blog-item .content h3 a {

  font-size: 22px;

  font-weight: 700;

  color: var(--black-2);

  transition: .3s;
}

.blog-1 .blog-inner .single-blog-item .content h3 a:hover {

  color: var(--theme);
}



/* DESCRIPTION */

.blog-1 .blog-inner .single-blog-item .content p {

  font-size: 17px;

  line-height: 1.8;

  color: var(--text);

  margin-bottom: 28px;

  flex-grow: 1;

  display: -webkit-box;

  -webkit-line-clamp: 3;

  -webkit-box-orient: vertical;

  overflow: hidden;
}



/* BUTTON */

.blog-1 .blog-inner .single-blog-item .link-btn {

  margin-top: auto;

  display: inline-flex;

  align-items: center;

  gap: 10px;

  font-size: 17px;

  font-weight: 700;

  color: var(--theme);

  transition: .3s;
}

.blog-1 .blog-inner .single-blog-item .link-btn:hover {

  gap: 16px;
}



/* LARGE */

@media(max-width:1399px) {

  .blog-1 .blog-inner .single-blog-item .image {

    height: 210px;

    min-height: 210px;
  }

  .blog-1 .blog-inner .single-blog-item .content h3 {

    min-height: 110px;
  }

  .blog-1 .blog-inner .single-blog-item .content h3 a {

    font-size: 22px;
  }

}



/* LAPTOP */

@media(max-width:1199px) {

  .blog-1 .blog-inner .single-blog-item {

    padding: 20px;
  }

  .blog-1 .blog-inner .single-blog-item .image {

    height: 200px;

    min-height: 200px;
  }

  .blog-1 .blog-inner .single-blog-item .content h3 {

    min-height: auto;
  }

  .blog-1 .blog-inner .single-blog-item .content h3 a {

    font-size: 22px;
  }

  .blog-1 .blog-inner .single-blog-item .content p {

    font-size: 16px;
  }

}



/* TABLET */

@media(max-width:991px) {

  .blog-1 .blog-inner .row {

    row-gap: 24px;
  }

  .blog-1 .blog-inner .single-blog-item .image {

    height: 240px;

    min-height: 240px;
  }

  .blog-1 .blog-inner .single-blog-item .content h3 a {

    font-size: 20px;
  }

}



/* MOBILE */

@media(max-width:767px) {

  .blog-1 .blog-inner .single-blog-item {

    padding: 18px;

    border-radius: 20px;
  }

  .blog-1 .blog-inner .single-blog-item .image {

    height: 200px;

    min-height: 200px;

    border-radius: 16px;
  }

  .blog-1 .blog-inner .single-blog-item .image img {

    border-radius: 16px;

    padding: 6px;
  }

  .blog-1 .blog-inner .single-blog-item .content {

    margin-top: 18px;
  }

  .blog-1 .blog-inner .single-blog-item .content ul li {

    font-size: 14px;
  }

  .blog-1 .blog-inner .single-blog-item .content h3 a {

    font-size: 18px;
  }

  .blog-1 .blog-inner .single-blog-item .content p {

    font-size: 15px;

    line-height: 1.7;
  }

}



/* SMALL MOBILE */

@media(max-width:575px) {

  .blog-1 .blog-inner .single-blog-item .image {

    height: 180px;

    min-height: 180px;
  }

  .blog-1 .blog-inner .single-blog-item .content h3 a {

    font-size: 16px;
  }

}

.blog-1.style-2 {
  position: relative;
}

.blog-1.style-2 .blog-2-bg {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.blog-1.style-2 .blog-2-bg::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-3);
  opacity: 96%;
}

.blog-1.style-2 .blog-inner {
  padding-bottom: 93px;
}

.blog-1.style-2 .blog-inner .single-blog-item {
  background-color: transparent;
  padding: 0;
}

.blog-1.style-2 .blog-inner .single-blog-item .image {
  position: relative;
  -webkit-mask: none;
  mask: none;
  height: 285px;
  width: 100%;
}

.blog-1.style-2 .blog-inner .single-blog-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-1.style-2 .blog-inner .single-blog-item .image .date {
  width: 75px;
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}

.blog-1.style-2 .blog-inner .single-blog-item .image .date h6 {
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.24px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.blog-1.style-2 .blog-inner .single-blog-item .image .date h6 span {
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 22px;
}

.blog-1.style-2 .blog-inner .single-blog-item .content {
  width: calc(100% - 40px);
  margin: 0 auto;
  background-color: var(--theme-3);
  padding: 20px 10px 5px 30px;
  margin-top: -50px;
  border-radius: 12px;
}

.blog-1.style-2 .blog-inner .single-blog-item .content li i {
  color: var(--white);
}

.blog-1.style-3 .blog-inner {
  padding: 0;
}

.blog-1.style-3 .blog-inner .single-blog-item {
  padding-bottom: 35px;
}

.blog-1.style-3 .blog-inner .single-blog-item .image {
  -webkit-mask: none;
  mask: none;
  height: 285px;
  width: 100%;
}

.blog-1.style-3 .blog-inner .single-blog-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blog-1.style-3 .blog-inner .single-blog-item .trasparent-btn {
  background: transparent;
  border: 1px solid var(--theme);
  color: var(--theme-2);
}

.blog-1.style-3 .blog-inner .single-blog-item .trasparent-btn::before,
.blog-1.style-3 .blog-inner .single-blog-item .trasparent-btn::after {
  background-color: var(--theme);
}

.blog-1.style-3 .blog-inner .single-blog-item .trasparent-btn:hover {
  color: var(--white);
}

.blog-1.blog-page .blog-inner {
  padding-bottom: 0;
}

.blog-2 .single-blog-item {
  margin-top: 30px;
}

.blog-2 .single-blog-item .image {
  width: 100%;
  height: 188px;
}

.blog-2 .single-blog-item .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.blog-2 .single-blog-item .content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding-top: 15px;
  padding-bottom: 10px;
}

.blog-2 .single-blog-item .content ul li {
  font-weight: 500;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.blog-2 .single-blog-item .content ul li:nth-child(2) {
  color: rgba(73, 81, 91, 0.37);
  background: none;
  font-size: 10px;
}

.blog-2 .single-blog-item .content ul li:nth-child(3) {
  color: var(--text);
}

.blog-2 .single-blog-item .content h5 a {
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-2 .single-blog-item .content h5 a:hover {
  color: var(--theme);
  background-size: 100% 1px;
}

.blog-2 .single-blog-item.style-2 {
  position: relative;
}

.blog-2 .single-blog-item.style-2 .image {
  height: 620px;
}

.blog-2 .single-blog-item.style-2 .content {
  position: absolute;
  bottom: 50px;
  left: 50px;
}

.blog-2 .single-blog-item.style-2 .content ul li {
  color: var(--white-3);
}

.blog-2 .single-blog-item.style-2 .content ul li:nth-child(2) {
  color: var(--white-3);
  background: none;
}

.blog-2 .single-blog-item.style-2 .content ul li:nth-child(3) {
  color: var(--white-3);
}

.blog-2 .single-blog-item.style-2 .content h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.blog-2 .single-blog-item.style-2 .content h3 a {
  color: var(--white);
  background: -webkit-gradient(linear, left top, right top, from(currentcolor), to(currentcolor)) 0px 95%/0px 1px no-repeat;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.blog-2 .single-blog-item.style-2 .content h3 a:hover {
  color: var(--theme);
  background-size: 100% 1px;
}

.blog-2 .single-blog-item.style-2 .content a {
  color: var(--white);
}

.blog-2 .single-blog-item.style-2 .content a i {
  margin-top: 2px;
  padding-left: 5px;
}

.pricing-1 .icon-box {
  margin-top: 40px;
  gap: 20px;
}

@media (max-width: 767px) {
  .pricing-1 .icon-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}

.pricing-1 .icon-box .icon {
  font-size: 43px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.pricing-1 .icon-box .title h4 {
  color: var(--white);
  padding-bottom: 10px;
}

.pricing-1 .icon-box .title p {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-1 .single-pricing-item {
  border-radius: 12px;
  background-color: var(--theme-3);
  padding: 40px 50px;
  position: relative;
}

@media (max-width: 1399px) {
  .pricing-1 .single-pricing-item {
    padding: 40px;
  }
}

.pricing-1 .single-pricing-item .header h4 {
  color: var(--white);
  padding-bottom: 10px;
}

.pricing-1 .single-pricing-item .header span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.pricing-1 .single-pricing-item .price {
  padding: 25px 0;
  font-size: 60px;
  font-weight: 800;
  line-height: 69px;
  letter-spacing: -1.2px;
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.pricing-1 .single-pricing-item .price span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  line-height: 26px;
  font-size: 16px;
}

.pricing-1 .single-pricing-item .list {
  margin-top: 30px;
}

.pricing-1 .single-pricing-item .list li {
  color: rgba(255, 255, 255, 0.75);
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  padding-bottom: 12px;
}

.pricing-1 .single-pricing-item .list li i {
  color: var(--theme-2);
  padding-right: 5px;
}

.pricing-1 .single-pricing-item .theme-btn {
  margin-top: 25px;
  width: 100%;
}

.pricing-1.style-2 {
  position: relative;
}

.pricing-1.style-2 .light-shape {
  width: 638px;
  height: 638px;
  position: absolute;
  left: -10%;
  top: -20%;
  border-radius: 50%;
  background-color: rgba(255, 225, 0, 0.26);
  -webkit-filter: blur(250px);
  filter: blur(250px);
}

.pricing-1.style-2 .shape-1 {
  position: absolute;
  left: -5%;
  top: -20%;
  opacity: 13%;
  -webkit-animation: spinner 30s infinite linear;
  animation: spinner 30s infinite linear;
}

.pricing-1.style-2 .single-pricing-item {
  background-color: var(--white);
  padding: 55px 20px;
  padding-bottom: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  margin-top: 30px;
}

.pricing-1.style-2 .single-pricing-item::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--theme-4);
  height: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 4px;
}

.pricing-1.style-2 .single-pricing-item.border-style {
  border: 1px solid var(--theme-4);
  height: 660px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 1199px) {
  .pricing-1.style-2 .single-pricing-item.border-style {
    height: auto;
  }
}

.pricing-1.style-2 .single-pricing-item.border-style:hover::after {
  display: none;
}

.pricing-1.style-2 .single-pricing-item .price-btn {
  background-color: #F2F2F3;
  padding: 5px 13px;
  border: 1px solid var(--black-2);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0.24px;
  position: absolute;
  top: -15px;
  right: 20px;
  cursor: pointer;
}

.pricing-1.style-2 .single-pricing-item .header h4 {
  color: var(--black-2);
  text-align: center;
}

.pricing-1.style-2 .single-pricing-item .header span {
  color: var(--text);
}

.pricing-1.style-2 .single-pricing-item .price {
  border-bottom: none;
}

.pricing-1.style-2 .single-pricing-item .price span {
  color: var(--text);
}

.pricing-1.style-2 .single-pricing-item .list {
  margin-top: 30px;
}

.pricing-1.style-2 .single-pricing-item .list li {
  color: var(--text);
}

.pricing-1.style-2 .single-pricing-item .theme-btn {
  width: calc(100% - 80px);
  text-align: center;
  margin-top: 0;
}

.pricing-1.style-2 .single-pricing-item .price-img {
  width: 100%;
  height: 102px;
  margin-top: 20px;
}

.pricing-1.style-2 .single-pricing-item .price-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
  border-radius: 12px 12px 0px 0px;
}

.pricing-1.style-2 .single-pricing-item:hover::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--theme-4);
  height: 100%;
  opacity: 1;
}

.funfact-1 {
  position: relative;
  margin-top: -110px;
}

.funfact-1 .funfact-inner {
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  padding: 50px 70px;
  border-radius: 20px;
  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) {
  .funfact-1 .funfact-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 991px) {
  .funfact-1 .funfact-inner {
    padding: 50px 30px;
  }
}

.funfact-1 .funfact-inner .title {
  width: 30%;
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  line-height: 38px;
  letter-spacing: -0.28px;
}

@media (max-width: 1399px) {
  .funfact-1 .funfact-inner .title {
    width: 100%;
    text-align: center;
    font-size: 35px;
  }
}

.funfact-1 .funfact-inner .funfact-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
  grid-template-columns: auto auto auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 50px;
}

@media (max-width: 991px) {
  .funfact-1 .funfact-inner .funfact-items {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .funfact-1 .funfact-inner .funfact-items {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
}

.funfact-1 .funfact-inner .funfact-items .single-funfact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
}

@media (max-width: 767px) {
  .funfact-1 .funfact-inner .funfact-items .single-funfact-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

.funfact-1 .funfact-inner .funfact-items .single-funfact-item .icon {
  font-size: 70px;
  color: var(--white);
}

@media (max-width: 1199px) {
  .funfact-1 .funfact-inner .funfact-items .single-funfact-item .icon {
    font-size: 50px;
  }
}

.funfact-1 .funfact-inner .funfact-items .single-funfact-item .count-box {
  position: relative;
  width: 100%;
}

.funfact-1 .funfact-inner .funfact-items .single-funfact-item .count-box h2 {
  width: 100%;
  color: var(--white);
  font-size: 60px;
  font-weight: 700;
  line-height: 69px;
  letter-spacing: -1.2px;
}

@media (max-width: 1199px) {
  .funfact-1 .funfact-inner .funfact-items .single-funfact-item .count-box h2 {
    font-size: 45px;
  }
}

.funfact-1 .funfact-inner .funfact-items .single-funfact-item .count-box p {
  color: var(--white-3);
}

.funfact-2 {
  position: relative;
}

.funfact-2 .shape-1 {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 19%;
  z-index: -1;
}

.funfact-2 .funfact-inner {
  border-radius: 12px;
  border: 1px solid rgba(4, 11, 41, 0.08);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto auto;
  grid-template-columns: auto auto auto auto;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 35px;
}

@media (max-width: 1199px) {
  .funfact-2 .funfact-inner {
    -ms-grid-columns: auto auto auto;
    grid-template-columns: auto auto auto;
    gap: 30px;
  }
}

@media (max-width: 991px) {
  .funfact-2 .funfact-inner {
    -ms-grid-columns: auto auto;
    grid-template-columns: auto auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.funfact-2 .funfact-inner .signle-funfact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  position: relative;
}

@media (max-width: 767px) {
  .funfact-2 .funfact-inner .signle-funfact-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

.funfact-2 .funfact-inner .signle-funfact-item::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  width: 1px;
  height: 164px;
  background-color: rgba(4, 11, 41, 0.08);
  bottom: auto;
  top: -35px;
  right: -50px;
  left: auto;
}

@media (max-width: 1399px) {
  .funfact-2 .funfact-inner .signle-funfact-item::after {
    display: none;
  }
}

.funfact-2 .funfact-inner .signle-funfact-item:nth-child(4)::after {
  content: none;
}

.funfact-2 .funfact-inner .signle-funfact-item .icon {
  width: 92px;
  height: 84px;
  background: #FFF;
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
  font-size: 49px;
}

.funfact-2 .funfact-inner .signle-funfact-item .icon i {
  background: linear-gradient(84deg, #3FB5FD 0%, #0B6EDA 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.funfact-2 .funfact-inner .signle-funfact-item .count-box h2 {
  color: var(--theme-2);
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -0.96px;
}

.funfact-3 {
  position: relative;
}

.funfact-3 .bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -120px;
  z-index: -1;
}

.funfact-3 .shape-text {
  white-space: nowrap;
  min-width: 100%;
  z-index: 1;
  font-size: 150px;
  line-height: 120px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 900;
  letter-spacing: -3px;
  white-space: nowrap;
  text-transform: uppercase;
  -webkit-animation: scroll3 50s linear infinite;
  animation: scroll3 50s linear infinite;
}

.funfact-3 .funfact-inner {
  padding-top: 120px;
}

.funfact-3 .funfact-inner .funfact-content {
  position: relative;
}

.funfact-3 .funfact-inner .funfact-content .funfact-items {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
  grid-template-columns: auto auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 40px;
  row-gap: 70px;
}

.funfact-3 .funfact-inner .funfact-content .funfact-items .signle-funfact-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 25px;
}

@media (max-width: 575px) {
  .funfact-3 .funfact-inner .funfact-content .funfact-items .signle-funfact-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

.funfact-3 .funfact-inner .funfact-content .funfact-items .signle-funfact-item .icon {
  width: 92px;
  height: 84px;
  border: 1px solid rgba(255, 255, 255, 0.87);
  background: rgba(255, 255, 255, 0.33);
  font-size: 50px;
  color: var(--white);
  border-radius: 50%;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 6px;
}

.funfact-3 .funfact-inner .funfact-content .funfact-items .signle-funfact-item h2 {
  color: var(--theme-4);
  font-size: 48px;
  font-weight: 600;
}

.funfact-3 .funfact-inner .funfact-image {
  float: right;
  position: relative;
}

.funfact-3 .funfact-inner .funfact-image .shape-1 {
  position: absolute;
  top: 32px;
  left: -140px;
  z-index: -1;
  -webkit-animation: spinner 30s infinite linear;
  animation: spinner 30s infinite linear;
}

@media (max-width: 991px) {
  .funfact-3 .funfact-inner .funfact-image {
    float: none;
  }
}

.funfact-3 .funfact-inner .funfact-image .image-1 {
  width: 435px;
  height: 580px;
}

@media (max-width: 991px) {
  .funfact-3 .funfact-inner .funfact-image .image-1 {
    width: 100%;
  }
}

.funfact-3 .funfact-inner .funfact-image .image-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.funfact-3 .funfact-inner .funfact-image .image-2 {
  width: 320px;
  height: 354px;
  position: absolute;
  bottom: -30px;
  left: -200px;
  z-index: 1;
}

@media (max-width: 1399px) {
  .funfact-3 .funfact-inner .funfact-image .image-2 {
    left: -100px;
  }
}

.funfact-3 .funfact-inner .funfact-image .image-2::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  top: -12px;
  right: -12px;
  left: auto;
  bottom: auto;
  z-index: -1;
  border-radius: 12px;
}

.funfact-3 .funfact-inner .funfact-image .image-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.faq-1 .faq-content .accordion-item {
  border: 0;
  margin-top: 15px;
  border-radius: 10px;
  background-color: transparent;
  border: 1px solid var(--border);
}

.faq-1 .faq-content .accordion-item .accordion-header .accordion-button {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.18px;
  border: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
  padding: 20px 30px;
  padding-right: 20px;
}

.faq-1 .faq-content .accordion-item .accordion-header .accordion-button::after {
  content: "\f107";
  background: transparent;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  line-height: 1;
  width: auto;
}

.faq-1 .faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f106";
  background: transparent;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  line-height: 1;
}

.faq-1 .faq-content .accordion-item .accordion-collapse .accordion-body {
  padding-top: 0px;
  padding-left: 30px;
  color: var(--white-3);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  margin-top: -10px;
}

.faq-1.style-2 .faq-content .accordion-item {
  border: 1px solid var(--border-2);
}

.faq-1.style-2 .faq-content .accordion-item .accordion-header .accordion-button {
  color: var(--black-2);
}

.faq-1.style-2 .faq-content .accordion-item .accordion-collapse .accordion-body {
  color: var(--black-2);
}

.faq-1.style-2 .faq-images {
  float: right;
  position: relative;
}

@media (max-width: 991px) {
  .faq-1.style-2 .faq-images {
    float: none;
  }
}

.faq-1.style-2 .faq-images .image-1 {
  width: 560px;
  height: 650px;
}

@media (max-width: 1199px) {
  .faq-1.style-2 .faq-images .image-1 {
    width: 100%;
  }
}

.faq-1.style-2 .faq-images .image-1 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
}

.faq-1.style-2 .faq-images .image-2 {
  width: 320px;
  height: 354px;
  position: absolute;
  bottom: -60px;
  left: -60px;
  z-index: 1;
  -webkit-animation: topToBottom 2s linear infinite;
  animation: topToBottom 2s linear infinite;
}

.faq-1.style-2 .faq-images .image-2::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--white);
  top: -12px;
  right: -12px;
  left: auto;
  bottom: auto;
  z-index: -1;
  border-radius: 12px;
}

@media (max-width: 1399px) {
  .faq-1.style-2 .faq-images .image-2 {
    display: none;
  }
}

.faq-1.style-2 .faq-images .image-2 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
}

.gallery-img::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: var(--theme-4);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border-radius: 12px;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}

.gallery-img .gallery-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--white);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.gallery-img .gallery-content h4 {
  color: var(--white);
}

.gallery-img .gallery-content i {
  font-size: 45px;
}

.gallery-img:hover::before {
  opacity: .5;
  visibility: visible;
}

.gallery-img:hover .gallery-content {
  opacity: 1;
  visibility: visible;
}

.cta-1 {
  margin-top: -220px;
}

.cta-1 .cta-inner {
  background-image: url("../img/cta/cta-bg.png");
  height: 440px;
  padding-left: 92px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

@media (max-width: 991px) {
  .cta-1 .cta-inner {
    height: 100%;
    padding-left: 40px;
    padding-top: 20px;
  }
}

.cta-1 .cta-inner .shape-1 {
  position: absolute;
  bottom: 0;
  right: 120px;
  z-index: -1;
}

.cta-1 .cta-inner .shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 30%;
  z-index: -1;
}

.cta-1 .cta-inner .images {
  width: 320px;
  height: 380px;
  margin-top: 60px;
  margin-left: 60px;
}

@media (max-width: 991px) {
  .cta-1 .cta-inner .images {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 500px) {
  .cta-1 .cta-inner .images {
    height: 100%;
  }
}

.cta-1 .cta-inner .images img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-fit: contain;
  object-fit: contain;
}

.cta-2 {
  margin-top: -95px;
  position: relative;
  z-index: 5;
}

.cta-2 .cta-inner {
  width: 100%;
  position: relative;
  padding: 55px 65px 55px 115px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--theme) 0%, var(--theme-2) 100%);
  flex-wrap: wrap;
  gap: 30px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Soft Glow */
.cta-2 .cta-inner::before {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -180px;
  right: -120px;
}

/* Responsive */
@media (max-width: 991px) {
  .cta-2 .cta-inner {
    padding: 70px 35px 40px;
    justify-content: center;
    text-align: center;
  }
}

/* Icon */
.cta-2 .cta-inner .icon {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  font-size: 48px;
  position: absolute;
  left: -55px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

@media (max-width: 991px) {
  .cta-2 .cta-inner .icon {
    left: 50%;
    top: -55px;
    transform: translateX(-50%);
  }
}

.cta-2 .cta-inner .icon i {
  background-image: linear-gradient(135deg, var(--theme) 0%, var(--theme-2) 100%);
  -webkit-background-clip: text;
  color: transparent;
}

/* Content */
.cta-2 .cta-inner .title {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.cta-2 .cta-inner h3 {
  color: var(--white);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: -1px;

}

@media (max-width: 991px) {
  .cta-2 .cta-inner h3 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {
  .cta-2 .cta-inner h3 {
    font-size: 22px;
    line-height: 1.3;
  }
}

.cta-2 .cta-inner p {
  font-size: 17px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin-bottom: 0;
}

.cta-2 .cta-inner p strong {
  color: #fff;
  font-weight: 700;
}

/* Button */
.cta-2 .theme-btn.white-btn {
  background: var(--white);
  color: var(--header);
  border-radius: 14px;
  padding: 18px 34px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.35s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.cta-2 .theme-btn.white-btn:hover {
  transform: translateY(-4px);
  background: #f5f5f5;
  color: #fff;
}

.cta-2.style-2 {
  margin: 0;
}

.cta-2.style-2 .cta-inner {
  padding-left: 40px;
  padding-right: 50px;
}

@media (max-width: 1199px) {
  .cta-2.style-2 .cta-inner {
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.cta-2.style-2 .cta-inner .icon {
  position: initial;
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.cta-2.style-3 {
  margin-bottom: -105px;
}

.cta-2.style-3 .cta-inner {
  background: linear-gradient(135deg, #020b2d 0%, #0d3eb5 100%);
  ;
}

.apps-wrapper {
  position: relative;
}

.apps-wrapper .bg-image {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.apps-wrapper .apps-image {
  width: 560px;
  height: 700px;
  margin-left: -35px;
}

.apps-wrapper .apps-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-fit: contain;
  object-fit: contain;
}

@media (max-width: 767px) {
  .apps-wrapper .apps-content {
    padding-bottom: 80px;
  }
}



.apps-wrapper .apps-content .avater {
  gap: 15px;
}

.apps-wrapper .apps-content .input-form {
  position: relative;
  margin-top: 30px;
}

.apps-wrapper .apps-content .input-form input {
  width: 100%;
  outline: none;
  border: none;
  padding: 19px 22px;
  color: var(--black-2);
  background-color: whitesmoke;
  font-weight: 500;
  border-radius: 4px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.apps-wrapper .apps-content .input-form .theme-btn {
  position: absolute;
  right: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.apps-wrapper .apps-content .button {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 28px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.apps-wrapper .apps-content .button .theme-btn i {
  padding-left: 15px;
  font-size: 22px;
  margin-top: -10px;
}

@media (max-width: 767px) {
  .apps-wrapper .apps-content .button .theme-btn {
    width: 100%;
  }
}

.scrolling-wrap {
  overflow: hidden;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.scrolling-wrap .comm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-animation: scroll 60s linear infinite;
  animation: scroll 60s linear infinite;
  gap: 50px;
  cursor: pointer;
}

.scrolling-wrap .comm .cmn-textslide {
  font-size: 42px;
  font-weight: 700;
  line-height: 55px;
  text-transform: capitalize;
  color: var(--white);
}

.scrolling-wrap .comm .cmn-textslide.color-2 {
  background-image: linear-gradient(135deg, #020b2d 0%, #0d3eb5 100%);
  ;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.scrolling-wrap .comm:nth-child(2) {
  -webkit-animation: scroll2 60s linear infinite;
  animation: scroll2 60s linear infinite;
}

.scrolling-wrap:hover .comm {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

@-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 scroll2 {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

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

  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.marque-wrapper {
  -webkit-transform: rotate(-1deg);
  transform: rotate(-1deg);
}

.marque-wrapper .brand-slide-element {
  width: auto;
  display: inline-block;
}

.marque-wrapper .brand-slide-element .marque-text {
  background-color: var(--theme-3);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 15px 35px;
  border-radius: 4px;
}

.marque-wrapper .brand-slide-element .marque-text h3 {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
}

.marque-wrapper.style-2 .brand-slide-element .marque-text {
  background-color: var(--theme-2);
}

.single-contact-card {
  background-color: var(--white);
  padding: 30px 35px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  gap: 20px;
  -webkit-box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  box-shadow: 7px 11px 50px 52px rgba(2, 8, 66, 0.03);
  border-radius: 12px;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.single-contact-card::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(135deg, #020b2d 0%, #0d3eb5 100%);
  ;
  z-index: -1;
  border-radius: 12px;
  width: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.single-contact-card .icon {
  font-size: 30px;
  color: var(--theme);
}

.single-contact-card:hover::after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}

.single-contact-card:hover .icon {
  color: var(--white) !important;
}

.single-contact-card:hover p,
.single-contact-card:hover span,
.single-contact-card:hover h4 {
  color: #fff;
}

.office-google-map-wrapper iframe {
  width: 100%;
  height: 600px;
}

.footer-widgets-1 .single-footer-widget .widget-head {
  margin-bottom: 25px;
}

.footer-widgets-1 .single-footer-widget .widget-head h4 {
  font-size: 20px;
  font-weight: 600;
  position: relative;
}

.footer-widgets-1 .single-footer-widget .footer-content p {

  margin-bottom: 22px;

}



/* TITLE */

.footer-widgets-1 .single-footer-widget .footer-content h5 {

  color: var(--black-2);

  font-family: "DM Sans", sans-serif;

  font-size: 16px;

  font-weight: 700;

}



/* NEWSLETTER */

.footer-widgets-1 .single-footer-widget .footer-content .footer-input {

  position: relative;

  margin-top: 15px;

}



.footer-widgets-1 .single-footer-widget .footer-content .footer-input input {

  background: var(--bg);

  border: none;

  outline: none;

  padding: 10px 22px;

  width: 100%;

  border-radius: 4px;

  color: var(--text);

}



.footer-widgets-1 .single-footer-widget .footer-content .footer-input input::placeholder {

  color: var(--text);

}



.footer-widgets-1 .single-footer-widget .footer-content .footer-input .newsletter-btn {

  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  right: 5px;

  width: 42px;

  height: 38px;

  border-radius: 5px;

  text-align: center;

  background-color: var(--theme);

  color: var(--white);

}



/* SOCIAL */

.footer-widgets-1 .single-footer-widget .footer-content .social-icon {

  gap: 22px;

  margin-top: 35px;

}



.footer-widgets-1 .single-footer-widget .footer-content .social-icon a {

  font-size: 22px;

  color: var(--text);

  transition: .3s ease;

}



.footer-widgets-1 .single-footer-widget .footer-content .social-icon a:hover {

  color: var(--theme-2);

  transform: translateY(-3px);

}



/* CONTACT AREA */

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area {

  display: flex;

  flex-direction: column;

  gap: 18px;

  margin-top: 12px;

}



/* CONTACT CARD */

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact {

  display: flex;

  align-items: center;

  gap: 13px;


  border-radius: 18px;

  background: rgba(255, 255, 255, .04);

  border: 1px solid rgba(255, 255, 255, .06);

  transition: all .4s ease;

}



.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact:hover {

  transform: translateY(-4px);

  background: rgba(255, 255, 255, .06);

  border-color: rgba(255, 255, 255, .12);

}



/* ICON */

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact .contact-icon {

  width: 58px;

  min-width: 58px;

  height: 58px;

  border-radius: 18px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  font-size: 20px;

  background: linear-gradient(135deg,
      var(--theme) 0%,
      var(--theme-2) 100%);

  color: var(--white);

  box-shadow: 0 10px 30px rgba(0, 0, 0, .15);

  transition: .4s ease;

}



.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact:hover .contact-icon {

  transform: scale(1.06);

}



/* INFO */

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact .contact-infu {

  width: 100%;

}



/* LABEL */

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact .contact-infu span {

  display: inline-block;

  color: var(--theme-2);

  font-size: 13px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: .5px;

  margin-bottom: 5px;

}



/* TEXT */

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact .contact-infu h5 {

  margin: 0;

  font-size: 16px;

  font-family: "DM Sans", sans-serif;

  font-weight: 600;

  line-height: 1.7;

  color: var(--theme-3);

  word-break: break-word;

}



/* LINKS */

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact .contact-infu h5 a {

  color: var(--theme-3);

  transition: .3s ease;

}



.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact .contact-infu h5 a:hover {

  color: var(--theme-2);

}



/* LIST AREA */

.footer-widgets-1 .single-footer-widget .list-area {

  padding-top: 5px;

}



.footer-widgets-1 .single-footer-widget .list-area li {

  margin-bottom: 16px;

}



.footer-widgets-1 .single-footer-widget .list-area li i {

  font-size: 4px;

}



.footer-widgets-1 .single-footer-widget .list-area li a {

  color: var(--theme-2);

  font-style: normal;

  font-weight: 500;

  line-height: 28px;

  display: flex;

  align-items: center;

  gap: 15px;

  transition: all .4s ease-in-out;

}



.footer-widgets-1 .single-footer-widget .list-area li:hover a {

  padding-left: 10px;

}



/* STYLE 2 */

.footer-widgets-1.style-2 .single-footer-widget .footer-content p {

  color: var(--white-3);

}



.footer-widgets-1.style-2 .single-footer-widget .footer-content h5 {

  color: var(--white);

}



.footer-widgets-1.style-2 .single-footer-widget .footer-content .social-icon a {

  color: var(--white-3);

}



.footer-widgets-1.style-2 .single-footer-widget .footer-content .social-icon a:hover {

  color: var(--theme-2);

}



.footer-widgets-1.style-2 .single-footer-widget .list-area li a {

  color: var(--theme-2);

}



.footer-widgets-1.style-2 .single-footer-widget .widget-head h4 {

  color: var(--white);

}



/* MOBILE */

@media (max-width: 767px) {

  .footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact {

    padding: 15px;

    gap: 14px;

  }

  .footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact .contact-icon {

    width: 52px;

    min-width: 52px;

    height: 52px;

    border-radius: 14px;

    font-size: 18px;

  }

  .footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact .contact-infu h5 {

    font-size: 15px;

  }

}


.footer-widgets-1.style-2 .single-footer-widget .footer-content .social-icon a {
  color: var(--white-3);
}

.footer-widgets-1.style-2 .single-footer-widget .footer-content .social-icon a:hover {
  color: var(--theme-2);
}

.footer-widgets-1.style-2 .single-footer-widget .list-area li a {
  color: var(--theme-2);
}

.footer-widgets-1.style-2 .single-footer-widget .widget-head h4 {
  color: var(--white);
}

.footer-widgets-1.style-3 .single-footer-widget .footer-content p {
  color: var(--text-2);
}

.footer-widgets-1.style-3 .single-footer-widget .footer-content h5 {
  color: var(--black-2);
}

.footer-widgets-1.style-3 .single-footer-widget .footer-content .social-icon a {
  color: var(--text);
}

.footer-widgets-1.style-3 .single-footer-widget .list-area li a {
  color: var(--black);
}

.footer-widgets-1.style-3 .single-footer-widget .widget-head h4 {
  color: var(--black-2);
}

.footer-bottom {
  background-color: var(--black-2);
  padding: 10px 0;
}

.footer-bottom .footer-bottom-wrapper p {
  color: var(--white-3);
}

.footer-bottom.style-2 {
  background-color: #0F144B;
}

@media (max-width: 767px) {
  .footer-bottom.style-2 .footer-bottom-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
    text-align: center;
  }
}

.footer-bottom.style-2 .footer-bottom-wrapper .security {
  color: var(--white-3);
}

.footer-bottom.style-2 .footer-bottom-wrapper .security a {
  padding: 0 5px;
  color: var(--white-3);
}

footer .gallery {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto auto;
  grid-template-columns: auto auto auto;
  grid-gap: 10px;
}

footer .gallery .footer-gallery-img {
  width: 100%;
  position: relative;
  overflow: hidden;
}

footer .gallery .footer-gallery-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 5px;
}

@media (max-width: 1199px) {
  footer .gallery .footer-gallery-img img {
    width: 100%;
    display: block;
  }
}

footer .gallery .footer-gallery-img .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: var(--white);
  background: linear-gradient(84deg, rgba(63, 181, 253, 0.5) 0%, rgba(11, 110, 218, 0.5) 100%);
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
  border-radius: 5px;
}

footer .gallery .footer-gallery-img:hover .content {
  -webkit-transform: rotateX(0);
  transform: rotateX(0);
}




.hero-3 {
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* VIDEO */

.video-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  animation: zoomVideo 20s ease-in-out infinite alternate;
  filter: brightness(0.55);
}

/* OVERLAY */

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background:
    linear-gradient(135deg,
      rgba(5, 11, 26, 0.92) 0%,
      rgba(10, 25, 60, 0.82) 45%,
      rgba(47, 107, 255, 0.35) 100%);
}

/* GLOW EFFECT */

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(47, 107, 255, 0.18);
  filter: blur(120px);
  top: -200px;
  right: -100px;
  z-index: 2;
  animation: glowMove 8s ease-in-out infinite alternate;
}

/* CONTENT */

.hero-content {
  position: relative;
  z-index: 5;
}

.hero-content p {
  font-size: 18px;
  line-height: 32px;
  color: rgba(255, 255, 255, 0.75);
  max-width: 650px;
  margin-bottom: 40px;
  animation: fadeUp 1.3s ease;
}

.theme-btn {
  padding: 18px 34px;
  border-radius: 12px;
  background: linear-gradient(135deg, #2F6BFF, #6EA8FF);
  color: #fff;
  font-weight: 600;
  transition: all .4s ease;
  display: inline-block;
  animation: fadeUp 1.6s ease;
}

.theme-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(47, 107, 255, 0.4);
}

/* ANIMATIONS */

@keyframes zoomVideo {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.12);
  }
}

@keyframes glowMove {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(60px);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}



/* تنسيق الكروت لتشبه الصورة التي أرفقتها */
.comparison-card {
  background: #fff;
  padding: 40px 15px;
  border-radius: 20px;
  border: 1px solid #eee;
  position: relative;
  transition: all 0.4s ease;
  text-align: center;
  overflow: hidden;
}

.comparison-card.featured {
  border: 2px solid var(--theme);
  /* لون براندك الأزرق */
  box-shadow: 0 15px 40px rgba(0, 86, 179, 0.1);
  transform: scale(1.05);
}

.best-choice-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--theme);
  color: #fff;
  padding: 5px 15px;
  font-size: 10px;
  font-weight: bold;
  border-radius: 0 0 10px 10px;
}

.card-header h4 {
  font-weight: 700;
  margin-top: 15px;
}

.card-header p {
  font-size: 14px;
  color: #777;
}

.features-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
}

.comparison-card h3 {
  font-size: 20px;
}

.features-list li {
  margin-bottom: 15px;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.features-list li i {
  margin-right: 10px;
  font-size: 16px;
}

.features-list li.good i {

  color: var(--theme);

}

.features-list li.bad i {

  color: rgba(11, 22, 59, .38);

}

.features-list li i {

  width: 28px;
  height: 28px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  margin-right: 12px;

  font-size: 13px;
}

.features-list li.good i {

  background: rgba(31, 87, 244, .12);

  color: var(--theme);

}

.features-list li.bad i {

  background: rgba(11, 22, 59, .06);

  color: rgba(11, 22, 59, .38);

}


.icon-bg {
  font-size: 40px;
  color: var(--theme);
  opacity: 0.8;
}

.template-style .icon-bg {
  color: #777;
}


























/* =========================================
   SOFT CREATION - CREATIVE PORTFOLIO SECTION
   ========================================= */

/* =========================================
   SOFT CREATION - PROFESSIONAL 3D PREVIEW
   ========================================= */




.sc-showcase-section {
  position: relative;

  overflow: hidden;

  padding: 140px 0;

  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #f7f9fc 100%);
}



/* GLOW */

.sc-showcase-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(120px);

  pointer-events: none;
}

.glow-1 {
  width: 500px;
  height: 500px;

  background:
    rgba(39, 37, 112, .08);

  top: -200px;
  left: -120px;
}

.glow-2 {
  width: 420px;
  height: 420px;

  background:
    rgba(59, 173, 74, .08);

  bottom: -150px;
  right: -100px;
}



/* =========================================
   FLOATING SHOWCASE
========================================= */

.sc-floating-showcase {
  position: relative;

  height: 720px;
}



/* CARD */

.floating-card {
  position: absolute;

  overflow: hidden;

  border-radius: 28px;

  background: #fff;

  box-shadow:
    0 25px 80px rgba(15, 23, 42, .12);

  transition: .5s ease;
}

.floating-card img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: top;

  transition: 6s ease;
}

.floating-card:hover img {
  transform:
    translateY(-18%);
}

.floating-card:hover {
  transform:
    translateY(-12px);
}



/* MAIN */

.main-card {
  width: 420px;
  height: 520px;

  left: 40px;
  top: 80px;

  z-index: 3;
}



/* SMALL */

.small-card {
  width: 240px;
  height: 180px;
}



/* CARD 1 */

.card-1 {
  top: 0;
  right: 30px;

  z-index: 2;

  transform:
    rotate(8deg);
}



/* CARD 2 */

.card-2 {
  bottom: 40px;
  right: 0;

  z-index: 2;

  transform:
    rotate(-8deg);
}



/* MOBILE */

.mobile-card {
  width: 170px;
  height: 340px;

  bottom: 100px;
  left: 320px;

  z-index: 4;

  border-radius: 34px;

  border: 8px solid #fff;
}



/* OVERLAY */

.floating-overlay {
  position: absolute;

  inset: 0;

  display: flex;
  align-items: flex-end;

  padding: 24px;

  background:
    linear-gradient(to top,
      rgba(0, 0, 0, .55),
      transparent 55%);
}

.floating-overlay span {
  color: #fff;

  font-size: 22px;
  font-weight: 700;
}



/* =========================================
   CONTENT
========================================= */

.sc-showcase-content h2 {
  font-size: clamp(42px, 5vw, 72px);

  line-height: 1.05;

  letter-spacing: -2px;

  font-weight: 800;

  color: var(--header);

  margin:
    24px 0;
}

.sc-showcase-content p {
  font-size: 18px;

  line-height: 1.9;

  color: #667085;

  margin-bottom: 40px;
}



/* =========================================
   STATS
========================================= */

.sc-showcase-stats {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 20px;

  margin-bottom: 40px;
}



/* STAT */

.stat-box {
  padding: 30px 24px;

  border-radius: 24px;

  background:
    rgba(255, 255, 255, .7);

  backdrop-filter: blur(14px);

  border:
    1px solid rgba(15, 23, 42, .06);

  box-shadow:
    0 12px 40px rgba(15, 23, 42, .04);
}

.stat-box h3 {
  font-size: 42px;

  line-height: 1;

  font-weight: 800;

  color: var(--theme);

  margin-bottom: 14px;
}

.stat-box span {
  font-size: 15px;

  line-height: 1.6;

  color: #667085;
}



/* =========================================
   REVIEW
========================================= */

.mini-review {
  padding: 32px;

  border-radius: 28px;

  background: #fff;

  border:
    1px solid rgba(15, 23, 42, .06);

  box-shadow:
    0 15px 45px rgba(15, 23, 42, .05);
}

.stars {
  display: flex;

  gap: 5px;

  margin-bottom: 20px;

  color: #ffb800;
}

.mini-review p {
  font-size: 18px;

  line-height: 1.8;

  color: #4b5563;

  margin-bottom: 18px;
}

.mini-review h6 {
  font-size: 17px;

  font-weight: 700;

  color: var(--header);

  margin: 0;
}



/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1199px) {

  .sc-floating-showcase {
    height: 620px;
  }

  .main-card {
    width: 360px;
    height: 460px;
  }

  .mobile-card {
    left: 260px;
  }

}



@media(max-width:991px) {

  .sc-showcase-section {
    padding: 100px 0;
  }

  .sc-floating-showcase {
    height: 520px;

    margin-bottom: 50px;
  }

  .main-card {
    width: 320px;
    height: 400px;

    left: 50%;
    transform:
      translateX(-50%);
  }

  .card-1,
  .card-2,
  .mobile-card {
    display: none;
  }

  .sc-showcase-stats {
    grid-template-columns: 1fr;
  }

}



@media(max-width:767px) {

  .sc-showcase-section {
    padding: 85px 0;
  }

  .sc-floating-showcase {
    height: 360px;
  }

  .main-card {
    width: 100%;
    height: 100%;

    left: 0;

    transform: none;
  }

  .sc-showcase-content h2 {
    letter-spacing: -1px;
  }

  .sc-showcase-content p {
    font-size: 16px;
  }

  .stat-box {
    padding: 24px;
  }

  .mini-review {
    padding: 26px;
  }

}




.gallery-wrapper .section-title h2 {
  margin-bottom: 35px;
}


.sc-tech-stack-section {
  position: relative;
  overflow: hidden;
  z-index: 1;
  background:
    linear-gradient(180deg, #f5f9ff 0%, #ffffff 100%);
}

/* =========================================================
   BACKGROUND EFFECTS
========================================================= */

.sc-tech-shape {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  filter: blur(90px);
}

.sc-tech-shape-1 {
  width: 420px;
  height: 420px;
  background: rgba(59, 130, 246, 0.08);
  top: -180px;
  left: -120px;
}

.sc-tech-shape-2 {
  width: 340px;
  height: 340px;
  background: rgba(39, 37, 112, 0.07);
  bottom: -140px;
  right: -100px;
}

.sc-tech-line {
  position: absolute;
  inset: 0;
  z-index: -1;

  background-image:
    radial-gradient(rgba(39, 37, 112, 0.05) 1px, transparent 1px);

  background-size: 28px 28px;
}

/* =========================================================
   SECTION TITLE
========================================================= */

.sc-tech-stack-section .section-title {
  max-width: 920px;
  margin: auto;
}

.sc-tech-stack-section .section-title h2 {
  margin-bottom: 20px;
}

.sc-tech-stack-section .section-title p {
  font-size: 17px;
  line-height: 1.9;
  color: #616b80;
}

/* =========================================================
   TECHNOLOGY WALL
========================================================= */

.sc-tech-wall {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 22px;
}

/* =========================================================
   ITEM
========================================================= */

.sc-tech-item {
  position: relative;

  display: flex;
  align-items: center;
  gap: 18px;

  padding: 22px 24px;

  border-radius: 22px;

  background:
    rgba(255, 255, 255, 0.7);

  backdrop-filter: blur(16px);

  border:
    1px solid rgba(39, 37, 112, 0.06);

  transition: all .35s ease;

  overflow: hidden;
}

/* .sc-tech-item::before {
  position: absolute;
  content: "";

  width: 120px;
  height: 120px;

  border-radius: 50%;

  background:
    rgba(58, 118, 255, 0.05);

  top: -60px;
  right: -60px;

  transition: .4s ease;
} */

.sc-tech-item:hover {
  transform: translateY(-8px);

  border-color:
    rgba(58, 118, 255, 0.15);

  box-shadow:
    0 20px 50px rgba(11, 22, 59, 0.08);
}

.sc-tech-item:hover::before {
  transform: scale(1.2);
}

/* =========================================================
   ICON
========================================================= */

.sc-tech-icon {
  min-width: 72px;
  width: 72px;
  height: 72px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 22px;

  background: #f5f8ff;

  position: relative;
  z-index: 2;

  transition: .35s ease;
}

.sc-tech-item:hover .sc-tech-icon {
  transform: scale(1.06);
}

.sc-tech-icon img {
  max-width: 62px;
  max-height: 62px;
  object-fit: contain;
}

/* =========================================================
   TEXT
========================================================= */

.sc-tech-info {
  position: relative;
  z-index: 2;
}

.sc-tech-info h4 {
  font-size: 20px;
  margin-bottom: 6px;
  color: #0b163b;
}

.sc-tech-info span {
  font-size: 14px;
  color: #5f6980;
  font-weight: 500;
}

.sc-tech-bottom-banner {
  position: relative;
  overflow: hidden;

  margin-top: 90px;

  padding: 50px 55px;

  border-radius: 32px;

  background:
    linear-gradient(135deg,
      #081229 0%,
      #122d78 45%,
      #1b52d1 100%);

  box-shadow:
    0 30px 90px rgba(11, 22, 59, 0.18);

  border: 1px solid rgba(255, 255, 255, 0.08);

  isolation: isolate;
}

/* Glow */
.sc-tech-bottom-banner::before {
  position: absolute;
  content: "";

  width: 420px;
  height: 420px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.05);

  top: -220px;
  right: -160px;

  filter: blur(5px);
}

/* Secondary Glow */
.sc-tech-bottom-banner::after {
  position: absolute;
  content: "";

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.03);

  bottom: -140px;
  left: -100px;
}

.sc-banner-content {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 28px;
}

/* Icon */
.sc-banner-icon {
  min-width: 90px;
  width: 90px;
  height: 90px;

  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    rgba(255, 255, 255, 0.1);

  backdrop-filter: blur(10px);

  border:
    1px solid rgba(255, 255, 255, 0.12);

  font-size: 30px;
  color: #fff;

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.12);
}

.sc-banner-icon i {
  transform: rotate(-8deg);
}

/* Text */
.sc-banner-text {
  max-width: 900px;
}

.sc-banner-text h4 {
  color: #fff;

  font-size: 34px;
  line-height: 1.3;

  margin-bottom: 14px;

  font-weight: 700;

  letter-spacing: -0.5px;
}

.sc-banner-text p {
  margin: 0;

  font-size: 17px;
  line-height: 1.9;

  color:
    rgba(255, 255, 255, 0.78);

  max-width: 850px;
}

/* Responsive */
@media (max-width: 991px) {

  .sc-tech-bottom-banner {
    padding: 40px 28px;
    border-radius: 24px;
  }

  .sc-banner-content {
    flex-direction: column;
    text-align: center;
    gap: 22px;
  }

  .sc-banner-text h4 {
    font-size: 28px;
  }

  .sc-banner-text p {
    font-size: 15px;
    line-height: 1.8;
  }

  .sc-banner-icon {
    width: 82px;
    height: 82px;
    min-width: 82px;
    border-radius: 22px;
  }

}

@media (max-width: 575px) {

  .sc-tech-bottom-banner {
    padding: 35px 22px;
  }

  .sc-banner-text h4 {
    font-size: 24px;
  }

  .sc-banner-text p {
    font-size: 14px;
  }

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1200px) {

  .sc-tech-wall {
    grid-template-columns: repeat(3, 1fr);
  }

}

@media(max-width:991px) {

  .sc-tech-wall {
    grid-template-columns: repeat(2, 1fr);
  }

  .sc-banner-content {
    flex-direction: column;
    text-align: center;
  }

}

@media(max-width:767px) {

  .sc-tech-wall {
    grid-template-columns: 1fr;
  }

  .sc-tech-item {
    padding: 20px;
  }

  .sc-banner-text h4 {
    font-size: 26px;
  }

}




















/* =========================================================
   SOFT CREATION ECOSYSTEM
========================================================= */

.sc-ecosystem-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background:
    linear-gradient(180deg,
      #f3f8ff 0%,
      #ffffff 100%);
}



/* =========================================================
   BACKGROUND
========================================================= */

.sc-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(31, 87, 244, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 87, 244, .04) 1px, transparent 1px);

  background-size: 60px 60px;

  pointer-events: none;
}

.sc-eco-bg {
  position: absolute;

  width: 700px;
  height: 700px;

  border-radius: 50%;

  background:
    rgba(31, 87, 244, .08);

  filter: blur(120px);

  top: -300px;
  right: -250px;

  pointer-events: none;
}



/* =========================================================
   TITLE
========================================================= */

/* .sc-eco-title{
    position: relative;
    z-index: 5;

    max-width: 950px;

    margin: auto;
} */
/* 
.sc-eco-title span{
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 14px 24px;

    border-radius: 16px;

    background:
    rgba(31,87,244,.08);

    color: var(--theme);

    font-size: 15px;
    font-weight: 700;

    margin-bottom: 28px;
}

/* .sc-eco-title h2{
    font-size: 72px;
    line-height: 1.08;

    font-weight: 900;

    color: var(--black-2);

    margin-bottom: 28px;
} */

.section-title p {
  font-size: 18px;
  line-height: 1.9;

  color: var(--text);

  max-width: 850px;

  margin: 10px auto;
}



/* =========================================================
   ORBIT SYSTEM
========================================================= */

.sc-orbit-wrapper {
  position: relative;

  width: 850px;
  height: 850px;

  margin: 110px auto;

  animation:
    orbitRotate 40s linear infinite;
}



/* =========================================================
   CENTER CORE
========================================================= */

.sc-core {
  position: absolute;
  inset: 0;

  margin: auto;

  width: 240px;
  height: 240px;

  z-index: 5;

  animation:
    orbitRotateReverse 40s linear infinite;
}

.sc-core-glow {
  position: absolute;
  inset: 0;

  border-radius: 50%;

  background:
    linear-gradient(135deg,
      var(--theme),
      #5e87ff);

  filter: blur(55px);

  opacity: .2;

  animation:
    pulseGlow 4s infinite;
}

.sc-core-content {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, .95);

  backdrop-filter: blur(20px);

  display: flex;
  align-items: center;
  justify-content: center;

  border:
    1px solid rgba(31, 87, 244, .08);

  box-shadow:
    0 25px 70px rgba(0, 0, 0, .08);
}

.sc-core-content img {
  width: 170px;
  border-radius: 20px;
}



/* =========================================================
   ORBIT RING
========================================================= */

.sc-orbit-ring {
  position: absolute;
  inset: 0;

  margin: auto;

  width: 670px;
  height: 670px;

  border-radius: 50%;

  border:
    1px dashed rgba(31, 87, 244, .18);
}



/* =========================================================
   SERVICE ITEMS
========================================================= */

.sc-service-item {
  position: absolute;

  width: 170px;

  padding: 22px 18px;

  border-radius: 24px;

  background:
    rgba(255, 255, 255, .96);

  backdrop-filter: blur(20px);

  text-align: center;

  cursor: pointer;

  z-index: 5;

  border:
    1px solid rgba(31, 87, 244, .08);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, .06);

  transition: .4s;

  animation:
    orbitRotateReverse 40s linear infinite;
}

.sc-service-item:hover,
.sc-service-item.active {

  transform:
    translateY(-10px);

  border-color:
    rgba(31, 87, 244, .2);

  box-shadow:
    0 30px 70px rgba(31, 87, 244, .14);
}



/* ICON */

.sc-service-item .icon {
  width: 72px;
  height: 72px;

  border-radius: 22px;

  margin: auto auto 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    rgba(31, 87, 244, .08);

  color: var(--theme);

  font-size: 28px;
}



/* TITLE */

.sc-service-item h5 {
  font-size: 18px;
  line-height: 1.5;

  font-weight: 700;

  color: var(--black-2);

  margin: 0;
}



/* =========================================================
   POSITIONS
========================================================= */

[data-service="web"] {
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

[data-service="mobile"] {
  top: 180px;
  right: 0;
}

[data-service="crm"] {
  bottom: 180px;
  right: 0;
}

[data-service="branding"] {
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

[data-service="seo"] {
  bottom: 180px;
  left: 0;
}

[data-service="social"] {
  top: 180px;
  left: 0;
}



/* =========================================================
   PANELS
========================================================= */

.sc-service-panel {
  display: none;

  margin-top: 90px;

  padding: 75px;

  border-radius: 40px;

  background:
    rgba(255, 255, 255, .9);

  backdrop-filter: blur(25px);

  border:
    1px solid rgba(31, 87, 244, .08);

  box-shadow:
    0 30px 90px rgba(0, 0, 0, .06);

  animation:
    panelFade .4s ease;
}

.sc-service-panel.active {
  display: block;
}



/* =========================================================
   PANEL CONTENT
========================================================= */

.mini-title {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  padding: 12px 18px;

  border-radius: 14px;

  background:
    rgba(31, 87, 244, .08);

  color: var(--theme);

  font-size: 14px;
  font-weight: 700;

  margin-bottom: 22px;
}

.sc-panel-content h3 {
  font-size: 52px;
  line-height: 1.15;

  font-weight: 900;

  color: var(--black-2);

  margin-bottom: 24px;
}

.sc-panel-content p {
  font-size: 18px;
  line-height: 1.9;

  color: var(--text);
}



/* =========================================================
   STEPS
========================================================= */

.sc-steps {
  margin-top: 55px;
}

.step-item {
  display: flex;

  gap: 24px;

  margin-bottom: 35px;
}

.step-item .number {
  min-width: 74px;
  height: 74px;

  border-radius: 22px;

  background:
    rgba(31, 87, 244, .08);

  color: var(--theme);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  font-weight: 900;
}

.step-item h5 {
  font-size: 18px;

  font-weight: 700;

  color: var(--black-2);

  margin-bottom: 10px;
}

.step-item p {
  font-size: 16px;
  line-height: 1.8;
}



/* =========================================================
   TERMINAL
========================================================= */

.sc-terminal-box {
  position: sticky;
  top: 120px;

  overflow: hidden;

  border-radius: 36px;

  background:
    linear-gradient(180deg,
      #07112B 0%,
      #050D21 100%);

  border:
    1px solid rgba(255, 255, 255, .04);

  box-shadow:
    0 35px 90px rgba(0, 0, 0, .22);
}

.terminal-header {
  display: flex;

  align-items: center;

  gap: 10px;

  padding: 22px;

  border-bottom:
    1px solid rgba(255, 255, 255, .06);
}

.terminal-header span {
  width: 14px;
  height: 14px;

  border-radius: 50%;
}

.terminal-header span:nth-child(1) {
  background: #ff5f57;
}

.terminal-header span:nth-child(2) {
  background: #febc2e;
}

.terminal-header span:nth-child(3) {
  background: #28c840;
}

.terminal-body {
  padding: 45px;
}

pre {
  color: #00FF9C;

}

.typing-code {
  color: #00FF9C;

  font-size: 17px;
  line-height: 2;

  font-family: monospace;

  white-space: pre-wrap;
}



/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes orbitRotate {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }

}

@keyframes orbitRotateReverse {

  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }

}

@keyframes pulseGlow {

  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }

}

@keyframes panelFade {

  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}



/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px) {

  .sc-orbit-wrapper {

    width: 100%;
    height: auto;

    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 25px;

    animation: none;
  }

  .sc-service-item,
  .sc-core,
  .sc-orbit-ring {

    position: relative;
    inset: auto;

    animation: none;
  }

  .sc-orbit-ring {
    display: none;
  }

  .sc-service-panel {
    padding: 40px;
  }

  .sc-panel-content h3 {
    font-size: 40px;
  }

  .sc-eco-title h2 {
    font-size: 50px;
  }

  .sc-terminal-box {
    position: relative;
    top: auto;
  }

}

@media(max-width:767px) {

  .sc-ecosystem-section {
    padding: 100px 0;
  }

  .sc-eco-title h2 {
    font-size: 36px;
  }

  .sc-eco-title p {
    font-size: 16px;
  }

  .sc-panel-content h3 {
    font-size: 30px;
  }

  .sc-service-panel {
    padding: 28px;
    border-radius: 28px;
  }

  .step-item {
    flex-direction: column;
  }

  .terminal-body {
    padding: 30px;
  }

  .typing-code {
    font-size: 14px;
  }

}



.sc-trusted-brands-section .section-title p {
  margin-bottom: 50px;
}














/* =========================================
   TRUSTED BRANDS SECTION
========================================= */

.sc-trusted-brands-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0;

  background:
    linear-gradient(180deg,
      #ffffff 0%,
      var(--bg) 100%);
}



/* =========================================
   BACKGROUND
========================================= */

.sc-brand-gradient {
  position: absolute;

  width: 550px;
  height: 550px;

  border-radius: 50%;

  background:
    rgba(31, 87, 244, .10);

  filter: blur(120px);

  top: -220px;
  right: -180px;

  pointer-events: none;
}

.sc-brand-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(31, 87, 244, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 87, 244, .03) 1px, transparent 1px);

  background-size: 70px 70px;

  pointer-events: none;
}



/* =========================================
   LOGOS GRID
========================================= */

.sc-logos-wrapper {
  position: relative;
  z-index: 5;

  display: grid;

  grid-template-columns:
    repeat(5, 1fr);

  gap: 28px;

  margin-top: 70px;
}

.sc-logo-item {
  position: relative;

  height: 120px;

  border-radius: 30px;

  background:
    rgba(255, 255, 255, .78);

  backdrop-filter: blur(20px);

  border:
    1px solid rgba(31, 87, 244, .08);

  display: flex;

  align-items: center;
  justify-content: center;

  overflow: hidden;

  transition: .45s;

  box-shadow:
    0 20px 60px rgba(11, 22, 59, .05);
}

.sc-logo-item::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(135deg,
      rgba(31, 87, 244, .08),
      rgba(163, 71, 255, .04));

  opacity: 0;

  transition: .45s;
}

.sc-logo-item:hover {
  transform:
    translateY(-10px);

  border-color:
    rgba(31, 87, 244, .16);

  box-shadow:
    0 35px 90px rgba(31, 87, 244, .12);
}

.sc-logo-item:hover::before {
  opacity: 1;
}

.sc-logo-item img {

    position: relative;

    z-index: 2;

    max-width: 200px;

    max-height: 70px;

    width: 100%;

    height: auto;

    object-fit: contain;

    filter:
        grayscale(100%);

    opacity: .75;

    transition:
        .45s ease;

}



/* =========================================
LARGE DESKTOP
========================================= */

@media (max-width: 1399px) {

    .sc-logo-item img {

        max-width: 185px;

        max-height: 65px;

    }

}



/* =========================================
DESKTOP / LAPTOP
========================================= */

@media (max-width: 1199px) {

    .sc-logo-item img {

        max-width: 170px;

        max-height: 60px;

    }

}



/* =========================================
TABLET
========================================= */

@media (max-width: 991px) {

    .sc-logo-item img {

        max-width: 160px;

        max-height: 60px;

    }

}



/* =========================================
MOBILE
========================================= */

@media (max-width: 767px) {

    .sc-logo-item img {

        max-width: 155px;

        max-height: 60px;

    }

}



/* =========================================
SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .sc-logo-item img {

        max-width: 110px;

        max-height: 42px;

    }

}



/* =========================================
EXTRA SMALL DEVICES
========================================= */

@media (max-width: 399px) {

    .sc-logo-item img {

        max-width: 95px;

        max-height: 36px;

    }

}


.sc-logo-item:hover img {
  filter: grayscale(0);

  opacity: 1;

  transform:
    scale(1.08);
}



/* =========================================
   CTA
========================================= */
.sc-brand-cta {
  position: relative;

  margin-top: 90px;

  padding: 75px 60px;

  border-radius: 38px;

  overflow: hidden;

  background: linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255));

  box-shadow:
    0 35px 100px rgba(31, 87, 244, .18);
}

.sc-brand-cta::before {
  content: "";

  position: absolute;

  width: 480px;
  height: 480px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, .07);

  top: -240px;
  right: -180px;
}

.sc-brand-cta::after {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, .05);

  bottom: -120px;
  left: -100px;
}

.sc-brand-cta h3 {
  position: relative;
  z-index: 2;

  max-width: 1050px;

  margin: auto auto 24px;

  font-size: 62px;

  line-height: 1.12;

  font-weight: 900;

  letter-spacing: -.5px;

  color: var(--white);
}

.sc-brand-cta p {
  position: relative;
  z-index: 2;

  max-width: 920px;

  margin: auto auto 38px;

  font-size: 19px;

  line-height: 1.95;

  color:
    rgba(255, 255, 255, .82);
}

.sc-brand-cta .theme-btn {
  position: relative;
  z-index: 2;

  min-width: 240px;
  height: 64px;

  border-radius: 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  font-size: 18px;
  font-weight: 700;

  background: rgba(255, 255, 255, .14);

  border:
    1px solid rgba(255, 255, 255, .16);

  backdrop-filter: blur(10px);

  transition: .4s;
}

.sc-brand-cta .theme-btn:hover {

  transform:
    translateY(-4px);

  background: rgba(255, 255, 255, .2);
}



/* ==============================
   RESPONSIVE
============================== */

@media(max-width:991px) {

  .sc-brand-cta {
    padding: 60px 40px;
  }

  .sc-brand-cta h3 {
    font-size: 44px;
  }

}

@media(max-width:767px) {

  .sc-brand-cta {
    padding: 50px 28px;
    border-radius: 30px;
  }

  .sc-brand-cta h3 {
    font-size: 32px;
    line-height: 1.25;
  }

  .sc-brand-cta p {
    font-size: 16px;
  }

  .sc-brand-cta .theme-btn {
    width: 100%;
    min-width: 100%;
  }

}


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

  .sc-logos-wrapper {
    grid-template-columns:
      repeat(4, 1fr);
  }

}

@media(max-width:991px) {

  .sc-logos-wrapper {
    grid-template-columns:
      repeat(3, 1fr);
  }

  .sc-brand-cta h3 {
    font-size: 40px;
  }

}

@media(max-width:767px) {

  .sc-trusted-brands-section {
    padding: 100px 0;
  }

  .sc-logos-wrapper {
    grid-template-columns:
      repeat(2, 1fr);

    gap: 18px;
  }

  .sc-logo-item {
    height: 130px;

    border-radius: 22px;
  }

  

  .sc-brand-cta {
    padding: 50px 30px;
  }

  .sc-brand-cta h3 {
    font-size: 30px;
  }

}




















/* =========================================
   CAREER SECTION
========================================= */

.sc-career-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background:
    linear-gradient(180deg,
      #ffffff 0%,
      var(--bg) 100%);
}

.sc-career-bg {
  position: absolute;

  width: 650px;
  height: 650px;

  border-radius: 50%;

  background:
    rgba(31, 87, 244, .08);

  filter: blur(120px);

  top: -250px;
  right: -250px;

  pointer-events: none;
}



/* =========================================
   LEFT CONTENT
========================================= */

.sc-career-content {
  position: relative;
  z-index: 5;
}



.sc-career-content p {

  max-width: 600px;

  font-size: 18px;

  line-height: 1.9;

  color: var(--text);

  margin-bottom: 45px;
}



/* =========================================
   INFO BOXES
========================================= */

.sc-career-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box {

  display: flex;
  align-items: flex-start;
  gap: 18px;

  padding: 26px;

  border-radius: 26px;

  background:
    rgba(255, 255, 255, .78);

  border:
    1px solid rgba(31, 87, 244, .06);

  transition: .4s;

  box-shadow:
    0 15px 45px rgba(11, 22, 59, .04);
}

.info-box:hover {

  transform:
    translateY(-5px);

  border-color:
    rgba(31, 87, 244, .14);

  box-shadow:
    0 25px 60px rgba(31, 87, 244, .08);
}

.info-box .icon {

  min-width: 64px;
  height: 64px;

  border-radius: 20px;

  background:
    linear-gradient(135deg,
      rgba(31, 87, 244, .12),
      rgba(31, 87, 244, .04));

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;

  color: var(--theme);
}

.info-box h5 {

  font-size: 20px;

  font-weight: 700;

  color: var(--black-2);

  margin-bottom: 6px;
}

.info-box p {

  margin: 0;

  font-size: 15px;

  line-height: 1.8;

  color: var(--text);
}



/* =========================================
   FORM BOX
========================================= */

.sc-career-form-box {

  position: relative;

  padding: 50px;

  border-radius: 36px;

  background:
    rgba(255, 255, 255, .88);

  border:
    1px solid rgba(31, 87, 244, .08);

  overflow: hidden;

  box-shadow:
    0 30px 90px rgba(11, 22, 59, .06);
}

.form-glow {

  position: absolute;

  width: 300px;
  height: 300px;

  border-radius: 50%;

  background:
    rgba(31, 87, 244, .08);

  filter: blur(90px);

  top: -120px;
  right: -120px;
}



/* =========================================
   INPUTS
========================================= */

.sc-input-box {
  position: relative;
  z-index: 2;
  width: 100%;

}

.sc-input-box select.form-select {
  width: 100% !important;
}

.sc-input-box label {

  display: block;

  font-size: 15px;

  font-weight: 700;

  color: var(--black-2);

  margin-bottom: 12px;
}

.sc-input-box input,
.sc-input-box select,
.sc-input-box textarea {

  width: 100%;

  border:
    1px solid rgba(31, 87, 244, .08);

  background: #fff;

  border-radius: 18px;

  font-size: 15px;

  color: var(--black-2);

  transition: .35s;
}



/* INPUT + SELECT */

.sc-input-box input,
.sc-input-box select {

  height: 64px;

  padding:
    0 22px;
}



/* SELECT */

.sc-input-box select {

  width: 100% !important;

  min-width: 100%;

  display: block;

  height: 64px;

  border-radius: 18px;

  border:
    1px solid rgba(31, 87, 244, .08);

  background-color: #fff;

  padding:
    0 55px 0 22px;

  font-size: 15px;

  font-weight: 500;

  color: var(--black-2);

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  cursor: pointer;

  transition: .35s;

  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231f57f4' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  background-repeat: no-repeat;

  background-position:
    right 18px center;

  background-size: 15px;
}



/* TEXTAREA */

.sc-input-box textarea {

  height: 180px;

  resize: none;

  padding: 22px;
}



/* PLACEHOLDER */

.sc-input-box input::placeholder,
.sc-input-box textarea::placeholder {

  color: #8B95A7;
}



/* FOCUS */

.sc-input-box input:focus,
.sc-input-box select:focus,
.sc-input-box textarea:focus {

  outline: none;

  border-color:
    rgba(31, 87, 244, .25);

  box-shadow:
    0 0 0 4px rgba(31, 87, 244, .08);
}



/* =========================================
   NOTE BOX
========================================= */

.sc-note-box {

  display: flex;
  align-items: center;
  gap: 14px;

  padding: 20px 22px;

  border-radius: 20px;

  background:
    rgba(37, 211, 102, .08);

  border:
    1px solid rgba(37, 211, 102, .14);
}

.sc-note-box i {

  font-size: 24px;

  color: #25D366;
}

.sc-note-box span {

  font-size: 15px;

  line-height: 1.8;

  color: var(--black-2);

  font-weight: 600;
}



/* =========================================
   BUTTON
========================================= */

.sc-submit-btn {

  width: 100%;

  height: 64px;

  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  font-size: 16px;

  font-weight: 700;

  transition: .35s;
}

.sc-submit-btn:hover {

  transform:
    translateY(-3px);
}



/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px) {

  .sc-career-section {
    padding: 110px 0;
  }

  .sc-career-content {
    margin-bottom: 50px;
  }

  .sc-career-content h2 {

    font-size: 52px;
  }

  .sc-career-form-box {

    padding: 38px;
  }

}

@media(max-width:767px) {

  .sc-career-section {
    padding: 90px 0;
  }

  .sc-career-content h2 {

    font-size: 40px;

    line-height: 1.08;
  }

  .sc-career-content p {

    font-size: 16px;
  }

  .info-box {

    padding: 22px;
  }

  .info-box h5 {

    font-size: 18px;
  }

  .sc-career-form-box {

    padding: 28px;

    border-radius: 28px;
  }

  .sc-input-box input,
  .sc-input-box select {

    height: 58px;
  }

  .sc-submit-btn {

    height: 58px;
  }

}














.sc-case-studies-section {
  position: relative;
  overflow: hidden;

  padding: 130px 0;

  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #f5f7fb 100%);
}



/* =========================================================
   BACKGROUND
========================================================= */

.sc-case-bg {
  position: absolute;

  width: 700px;
  height: 700px;

  border-radius: 50%;

  background:
    rgba(59, 173, 74, 0.06);

  filter: blur(120px);

  top: -280px;
  right: -220px;

  pointer-events: none;
}



/* =========================================================
   HEADER
========================================================= */

.sc-case-grid {
  display: grid;

  grid-template-columns: repeat(3, minmax(0, 1fr));

  gap: 28px;
}


.sc-case-item {
  min-width: 0;
}


.sc-case-card {
  position: relative;

  display: block;

  overflow: hidden;

  border-radius: 34px;

  background: #fff;

  min-width: 0;

  box-shadow:
    0 10px 35px rgba(15, 23, 42, 0.06);

  transition:
    transform .45s ease,
    box-shadow .45s ease;
}

.sc-case-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 28px 70px rgba(15, 23, 42, 0.14);
}



/* =========================================================
   IMAGE
========================================================= */

.sc-case-image {
  position: relative;

  height: auto;

  overflow: hidden;

  border-radius: 34px;

  background: #eef2f7;
}



/* Overlay */

.sc-case-image::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.14),
      transparent 45%);

  pointer-events: none;
}



/* IMAGE */

.sc-case-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: top;

  display: block;

  transition:
    transform 7s ease;
}



/* Smooth Scroll Hover */

.sc-case-card:hover .sc-case-image img {
  transform:
    translateY(-55%);
}



/* =========================================================
   CTA
========================================================= */

.sc-case-cta {
  position: relative;

  overflow: hidden;

  margin-top: 110px;

  padding: 85px 60px;

  border-radius: 42px;

  background:
    linear-gradient(135deg,
      #081028 0%,
      #102d7a 100%);
}



/* Background Circle */

.sc-case-cta::before {
  content: "";

  position: absolute;

  width: 430px;
  height: 430px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.05);

  top: -220px;
  right: -170px;
}



/* CTA TITLE */

.sc-case-cta h3 {
  position: relative;
  z-index: 2;

  color: #fff;

  font-size: 58px;
  line-height: 1.1;
  font-weight: 800;

  margin-bottom: 24px;
}

.sc-case-header p {
  margin-bottom: 75px;
}

/* CTA TEXT */

.sc-case-cta p {
  position: relative;
  z-index: 2;

  max-width: 850px;

  margin:
    0 auto 38px;

  color:
    rgba(255, 255, 255, 0.78);

  font-size: 18px;
  line-height: 1.9;
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1400px) {

  .sc-case-grid {
    grid-template-columns: repeat(3, 1fr);
  }

}



@media (max-width: 1199px) {

  .sc-case-grid {
    grid-template-columns: repeat(2, 1fr);
  }



}



@media (max-width: 991px) {

  .sc-case-studies-section {
    padding: 100px 0;
  }




  .sc-case-image {
    height: 430px;
  }

  .sc-case-card:hover .sc-case-image img {
    transform:
      translateY(-35%);
  }

  .sc-case-cta h3 {
    font-size: 42px;
  }

}



@media (max-width: 767px) {

  .sc-case-studies-section {
    padding: 85px 0;
  }

  .sc-case-grid {
    grid-template-columns: 1fr;

    gap: 24px;
  }


  .sc-case-card {
    border-radius: 24px;
  }

  .sc-case-image {
    height: auto;

    border-radius: 24px;
  }

  .sc-case-card:hover .sc-case-image img {
    transform:
      translateY(-20%);
  }

  .sc-case-cta {
    padding: 60px 28px;

    border-radius: 30px;
  }

  .sc-case-cta h3 {
    font-size: 34px;
  }

  .sc-case-cta p {
    font-size: 16px;
  }

}






.innovation-lab {
  position: relative;
  overflow: hidden;
}



/* =========================================================
   HERO SECTION
========================================================= */

.innovation-lab .innovation-hero-section {
  position: relative;
  overflow: hidden;

  padding: 180px 0 140px;

  background:
    linear-gradient(180deg,
      #ffffff 0%,
      var(--bg) 100%);
}



/* =========================================================
   BACKGROUND
========================================================= */

.innovation-lab .innovation-bg-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(120px);

  pointer-events: none;
}

.innovation-lab .glow-one {
  width: 700px;
  height: 700px;

  background:
    rgba(31, 87, 244, .10);

  top: -280px;
  left: -220px;
}

.innovation-lab .glow-two {
  width: 500px;
  height: 500px;

  background:
    rgba(163, 71, 255, .12);

  right: -120px;
  bottom: -120px;
}



/* GRID */

.innovation-lab .innovation-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(31, 87, 244, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 87, 244, .04) 1px, transparent 1px);

  background-size: 80px 80px;

  mask-image:
    linear-gradient(180deg,
      rgba(0, 0, 0, .7),
      transparent);
}



/* =========================================================
   WRAPPER
========================================================= */

.innovation-lab .innovation-hero-wrapper {
  position: relative;
  z-index: 5;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 80px;
}



/* =========================================================
   LEFT CONTENT
========================================================= */

.innovation-lab .innovation-hero-content {
  max-width: 650px;
}



/* BADGE */

.innovation-lab .innovation-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  height: 54px;

  padding: 0 22px;

  border-radius: 50px;

  background:
    rgba(255, 255, 255, .7);

  border:
    1px solid rgba(31, 87, 244, .08);

  backdrop-filter: blur(14px);

  margin-bottom: 28px;

  font-size: 14px;
  font-weight: 700;

  color: var(--theme);
}

.innovation-lab .innovation-badge span {
  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: var(--theme);

  box-shadow:
    0 0 15px var(--theme);
}




.innovation-lab .innovation-hero-content h1 span {
  background:
    linear-gradient(135deg,
      var(--theme),
      var(--theme-4));

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



/* TEXT */

.innovation-lab .innovation-hero-content p {
  font-size: 18px;

  line-height: 1.9;

  color: var(--text);

  max-width: 620px;

  margin-bottom: 42px;
}



/* =========================================================
   BUTTONS
========================================================= */

.innovation-lab .innovation-buttons {
  display: flex;
  align-items: center;

  gap: 18px;

  margin-bottom: 55px;
}

.innovation-lab .innovation-btn {
  height: 62px;

  padding: 0 34px;

  border-radius: 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 15px;
  font-weight: 700;

  transition: .4s;
}

.innovation-lab .primary-btn {
  background: linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255));

  color: #fff;
}

.innovation-lab .primary-btn:hover {
  transform:
    translateY(-4px);
}

.innovation-lab .secondary-btn {
  border:
    1px solid rgba(31, 87, 244, .10);

  background:
    rgba(255, 255, 255, .7);

  color: var(--black-2);
}

.innovation-lab .secondary-btn:hover {
  background: #fff;

  transform:
    translateY(-4px);
}



/* =========================================================
   MINI STATS
========================================================= */

.innovation-lab .innovation-mini-stats {
  display: flex;
  gap: 50px;
}

س .innovation-lab .mini-stat h4 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--black-2);
  margin-bottom: 10px;
  letter-spacing: -1.2px;
}

.innovation-lab .mini-stat span {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  display: block;
}



/* =========================================================
LARGE DESKTOP
========================================================= */

@media (max-width: 1399px) {

  .innovation-lab .mini-stat h4 {
    font-size: 36px;
    letter-spacing: -1px;
  }

}



/* =========================================================
DESKTOP / LAPTOP
========================================================= */

@media (max-width: 1199px) {

  .innovation-lab .mini-stat h4 {
    font-size: 32px;
    margin-bottom: 8px;
  }

  .innovation-lab .mini-stat span {
    font-size: 14px;
  }

}



/* =========================================================
TABLET
========================================================= */

@media (max-width: 991px) {

  .innovation-lab .mini-stat h4 {
    font-size: 28px;
    line-height: 1.15;
  }

  .innovation-lab .mini-stat span {
    font-size: 14px;
    line-height: 1.55;
  }

}



/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

  .innovation-lab .mini-stat h4 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 7px;
    letter-spacing: -0.6px;
  }

  .innovation-lab .mini-stat span {
    font-size: 13.5px;
    line-height: 1.5;
  }

}



/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

  .innovation-lab .mini-stat h4 {
    font-size: 22px;
    line-height: 1.2;
  }

  .innovation-lab .mini-stat span {
    font-size: 13px;
    line-height: 1.45;
  }

}



/* =========================================================
EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 399px) {

  .innovation-lab .mini-stat h4 {
    font-size: 20px;
    letter-spacing: -0.4px;
  }

  .innovation-lab .mini-stat span {
    font-size: 12.5px;
  }

}




/* =========================================================
   RIGHT VISUAL
========================================================= */

.innovation-lab .innovation-hero-visual {
  position: relative;

  width: 650px;
}



/* MAIN CARD */

.innovation-lab .innovation-main-card {
  position: relative;

  padding: 24px;

  border-radius: 34px;

  background:
    rgba(255, 255, 255, .72);

  border:
    1px solid rgba(31, 87, 244, .08);

  backdrop-filter: blur(18px);

  box-shadow:
    0 40px 120px rgba(11, 22, 59, .10);
}



/* CARD TOP */

.innovation-lab .innovation-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 24px;
}

.innovation-lab .dots {
  display: flex;
  gap: 8px;
}

.innovation-lab .dots span {
  width: 12px;
  height: 12px;

  border-radius: 50%;

  background:
    rgba(31, 87, 244, .2);
}

.innovation-lab .card-label {
  font-size: 14px;
  font-weight: 700;

  color: var(--theme);
}



/* SCREEN */

.innovation-lab .innovation-screen {
  height: 500px;

  border-radius: 28px;

  padding: 35px;

  background:
    linear-gradient(180deg,
      #F9FBFF 0%,
      #EEF4FF 100%);
}



/* HEADER */

.innovation-lab .screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 45px;
}

.innovation-lab .screen-title {
  font-size: 20px;
  font-weight: 800;

  color: var(--black-2);
}

.innovation-lab .screen-badge {
  height: 38px;

  padding: 0 18px;

  border-radius: 50px;

  background:
    rgba(31, 87, 244, .1);

  display: flex;
  align-items: center;

  font-size: 13px;
  font-weight: 700;

  color: var(--theme);
}



/* CHART */

.innovation-lab .chart-wrapper {
  position: relative;

  height: 180px;

  margin-bottom: 40px;
}

.innovation-lab .chart-line {
  position: absolute;
  bottom: 0;

  border-radius: 20px 20px 0 0;
}

.innovation-lab .line-1 {
  left: 0;

  width: 90px;
  height: 120px;

  background:
    linear-gradient(180deg,
      var(--theme),
      transparent);
}

.innovation-lab .line-2 {
  left: 120px;

  width: 90px;
  height: 170px;

  background:
    linear-gradient(180deg,
      var(--theme-4),
      transparent);
}

.innovation-lab .line-3 {
  left: 240px;

  width: 90px;
  height: 140px;

  background:
    linear-gradient(180deg,
      var(--theme-2),
      transparent);
}



/* INFO CARDS */

.innovation-lab .screen-cards {
  display: flex;
  gap: 20px;
}

.innovation-lab .screen-info-card {
  flex: 1;

  padding: 24px;

  border-radius: 22px;

  background:
    rgba(255, 255, 255, .7);

  border:
    1px solid rgba(31, 87, 244, .08);
}

.innovation-lab .screen-info-card span {
  font-size: 14px;

  color: var(--text);
}


.innovation-lab .screen-info-card h5 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black-2);
  margin-top: 12px;
  letter-spacing: -0.5px;
}



/* =========================================================
LARGE DESKTOP
========================================================= */

@media (max-width: 1399px) {

  .innovation-lab .screen-info-card h5 {
    font-size: 24px;
    line-height: 1.32;
  }

}



/* =========================================================
DESKTOP / LAPTOP
========================================================= */

@media (max-width: 1199px) {

  .innovation-lab .screen-info-card h5 {
    font-size: 22px;
    line-height: 1.35;
    margin-top: 10px;
  }

}



/* =========================================================
TABLET
========================================================= */

@media (max-width: 991px) {

  .innovation-lab .screen-info-card h5 {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -0.3px;
  }

}



/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

  .innovation-lab .screen-info-card h5 {
    font-size: 18px;
    line-height: 1.4;
    margin-top: 8px;
    letter-spacing: -0.2px;
  }

}



/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

  .innovation-lab .screen-info-card h5 {
    font-size: 17px;
    line-height: 1.45;
  }

}



/* =========================================================
EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 399px) {

  .innovation-lab .screen-info-card h5 {
    font-size: 16px;
    line-height: 1.45;
    letter-spacing: 0;
  }

}




/* =========================================================
   FLOATING CARDS
========================================================= */

.innovation-lab .floating-ui-card {
  position: absolute;

  display: flex;
  align-items: center;

  gap: 18px;

  padding: 20px 24px;

  border-radius: 24px;

  background:
    rgba(255, 255, 255, .8);

  border:
    1px solid rgba(31, 87, 244, .08);

  backdrop-filter: blur(14px);

  box-shadow:
    0 20px 60px rgba(11, 22, 59, .08);

  animation:
    innovationFloating 5s ease-in-out infinite;
}

.innovation-lab .floating-ui-card i {
  width: 58px;
  height: 58px;

  border-radius: 18px;

  background:
    rgba(31, 87, 244, .08);

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--theme);

  font-size: 22px;
}

.innovation-lab .floating-ui-card h5 {
  font-size: 17px;
  font-weight: 800;

  color: var(--black-2);

  margin-bottom: 5px;
}

.innovation-lab .floating-ui-card span {
  font-size: 14px;
  color: var(--text);
}



/* POSITIONS */

.innovation-lab .card-one {
  top: 120px;
  left: -80px;
}

.innovation-lab .card-two {
  bottom: 40px;
  right: -60px;
}



/* =========================================================
   ANIMATION
========================================================= */

@keyframes innovationFloating {

  0% {
    transform:
      translateY(0px);
  }

  50% {
    transform:
      translateY(-12px);
  }

  100% {
    transform:
      translateY(0px);
  }

}



@media(max-width:1400px) {

  .innovation-lab .innovation-hero-content h1 {
    font-size: 78px;
  }

  .innovation-lab .innovation-hero-visual {
    width: 580px;
  }

}



/* =========================================
   TABLET LARGE
========================================= */

@media(max-width:1200px) {

  .innovation-lab .innovation-hero-section {
    padding: 150px 0 120px;
  }

  .innovation-lab .innovation-hero-wrapper {
    flex-direction: column;

    gap: 70px;
  }

  .innovation-lab .innovation-hero-content {
    max-width: 100%;

    text-align: center;
  }

  .innovation-lab .innovation-buttons {
    justify-content: center;
  }

  .innovation-lab .innovation-mini-stats {
    justify-content: center;
  }

  .innovation-lab .innovation-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .innovation-lab .innovation-hero-visual {
    width: 100%;
    max-width: 750px;
  }

}



/* =========================================
   TABLET
========================================= */

@media(max-width:991px) {

  .innovation-lab .innovation-hero-section {
    padding: 130px 0 100px;
  }

  .innovation-lab .innovation-hero-content h1 {
    font-size: 58px;

    line-height: 1.05;

    letter-spacing: -2px;
  }

  .innovation-lab .innovation-hero-content p {
    font-size: 17px;
  }

  .innovation-lab .innovation-screen {
    height: auto;
    min-height: 420px;
  }

  .innovation-lab .screen-cards {
    flex-direction: column;
  }

  .innovation-lab .floating-ui-card {
    display: none;
  }

  .innovation-lab .innovation-mini-stats {
    gap: 35px;
  }



}



/* =========================================
   MOBILE
========================================= */

@media(max-width:767px) {

  .innovation-lab .innovation-hero-section {
    padding: 120px 0 85px;
  }

  .innovation-lab .innovation-hero-wrapper {
    gap: 50px;
  }

  .innovation-lab .innovation-badge {
    height: 48px;

    padding: 0 18px;

    font-size: 13px;
  }

  .innovation-lab .innovation-hero-content {
    text-align: left;
  }

  .innovation-lab .innovation-hero-content h1 {
    font-size: 42px;

    line-height: 1.1;

    letter-spacing: -1px;

    margin-bottom: 22px;
  }

  .innovation-lab .innovation-hero-content p {
    font-size: 15px;

    line-height: 1.8;

    margin-bottom: 35px;
  }

  .innovation-lab .innovation-buttons {
    flex-direction: column;

    align-items: stretch;

    gap: 14px;

    margin-bottom: 40px;
  }

  .innovation-lab .innovation-btn {
    width: 100%;

    height: 56px;

    font-size: 14px;
  }

  .innovation-lab .innovation-mini-stats {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;
  }

  .innovation-lab .mini-stat {
    padding: 22px;

    border-radius: 22px;

    background:
      rgba(255, 255, 255, .75);

    border:
      1px solid rgba(31, 87, 244, .08);

    backdrop-filter: blur(12px);
  }

  .innovation-lab .mini-stat::before {
    display: none;
  }




  .innovation-lab .innovation-main-card {
    padding: 18px;

    border-radius: 28px;
  }

  .innovation-lab .innovation-screen {
    padding: 24px;

    border-radius: 22px;

    min-height: auto;
  }

  .innovation-lab .screen-header {
    flex-direction: column;

    align-items: flex-start;

    gap: 16px;

    margin-bottom: 35px;
  }

  .innovation-lab .screen-title {
    font-size: 18px;
  }

  .innovation-lab .chart-wrapper {
    height: 140px;

    margin-bottom: 30px;
  }

  .innovation-lab .line-1,
  .innovation-lab .line-2,
  .innovation-lab .line-3 {
    width: 65px;
  }

  .innovation-lab .line-2 {
    left: 85px;
  }

  .innovation-lab .line-3 {
    left: 170px;
  }

}



/* =========================================
   SMALL MOBILE
========================================= */

@media(max-width:575px) {

  .innovation-lab .innovation-hero-content h1 {
    font-size: 36px;
  }

  .innovation-lab .innovation-mini-stats {
    grid-template-columns: 1fr;
  }

  .innovation-lab .mini-stat {
    padding: 20px;
  }



  .innovation-lab .screen-info-card {
    padding: 20px;
  }



}


.innovation-philosophy-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background: #fff;
}



/* =========================================
   BACKGROUND
========================================= */

.innovation-philosophy-section .philosophy-glow {
  position: absolute;

  width: 650px;
  height: 650px;

  border-radius: 50%;

  background:
    rgba(31, 87, 244, .08);

  filter: blur(120px);

  top: -250px;
  right: -220px;
}



/* =========================================
   HEADER
========================================= */

.innovation-philosophy-section .innovation-section-header {
  position: relative;
  z-index: 5;

  max-width: 900px;

  margin: auto auto 80px;
}

.innovation-philosophy-section .innovation-subtitle {
  margin-bottom: 22px;
}

.innovation-philosophy-section .innovation-subtitle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 52px;

  padding: 0 24px;

  border-radius: 50px;

  background:
    rgba(31, 87, 244, .06);

  border:
    1px solid rgba(31, 87, 244, .08);

  font-size: 13px;
  font-weight: 800;

  letter-spacing: 1px;

  color: var(--theme);
}





/* =========================================
   MAIN GRID
========================================= */

.innovation-philosophy-section .innovation-philosophy-grid {
  display: grid;

  grid-template-columns: 1.15fr .85fr;

  gap: 30px;

  align-items: stretch;

  margin-bottom: 30px;
}



/* =========================================
   CARD
========================================= */

.innovation-philosophy-section .innovation-philosophy-card {
  position: relative;

  padding: 42px;

  border-radius: 34px;

  background:
    rgba(255, 255, 255, .75);

  border:
    1px solid rgba(31, 87, 244, .08);

  overflow: hidden;

  transition: .45s;

  box-shadow:
    0 20px 70px rgba(11, 22, 59, .05);

  height: 100%;
}



/* LARGE CARD */

.innovation-philosophy-section .large-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}



/* HOVER */

.innovation-philosophy-section .innovation-philosophy-card:hover {
  transform:
    translateY(-8px);

  box-shadow:
    0 40px 90px rgba(11, 22, 59, .08);
}



/* =========================================
   ICON
========================================= */

.innovation-philosophy-section .card-icon {
  width: 82px;
  height: 82px;

  border-radius: 24px;

  background:
    #F3F8FF;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 32px;

  flex-shrink: 0;
}

.innovation-philosophy-section .card-icon i {
  font-size: 30px;

  color: var(--theme);
}




.innovation-philosophy-section .card-content span {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 1px;
  color: var(--theme);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.innovation-philosophy-section .card-content h3 {
  font-size: 22px;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--black-2);
  margin-bottom: 22px;
}

.innovation-philosophy-section .card-content p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  margin: 0;
}



/* =========================================================
LARGE DESKTOP
========================================================= */

@media (max-width: 1399px) {

  .innovation-philosophy-section .card-content h3 {
    font-size: 21px;
    line-height: 1.22;
  }

  .innovation-philosophy-section .card-content p {
    line-height: 1.85;
  }

}



/* =========================================================
DESKTOP / LAPTOP
========================================================= */

@media (max-width: 1199px) {

  .innovation-philosophy-section .card-content span {
    font-size: 12px;
    margin-bottom: 14px;
  }

  .innovation-philosophy-section .card-content h3 {
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: -0.8px;
    margin-bottom: 18px;
  }

  .innovation-philosophy-section .card-content p {
    font-size: 15.5px;
    line-height: 1.8;
  }

}



/* =========================================================
TABLET
========================================================= */

@media (max-width: 991px) {

  .innovation-philosophy-section .card-content span {
    font-size: 11.5px;
    letter-spacing: 0.8px;
  }

  .innovation-philosophy-section .card-content h3 {
    font-size: 19px;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .innovation-philosophy-section .card-content p {
    font-size: 15px;
    line-height: 1.75;
  }

}



/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

  .innovation-philosophy-section .card-content span {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .innovation-philosophy-section .card-content h3 {
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
  }

  .innovation-philosophy-section .card-content p {
    font-size: 14.5px;
    line-height: 1.7;
  }

}



/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

  .innovation-philosophy-section .card-content h3 {
    font-size: 17px;
    line-height: 1.4;
    letter-spacing: -0.3px;
  }

  .innovation-philosophy-section .card-content p {
    font-size: 14px;
    line-height: 1.65;
  }

}



/* =========================================================
EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 399px) {

  .innovation-philosophy-section .card-content span {
    font-size: 10.5px;
    letter-spacing: 0.5px;
  }

  .innovation-philosophy-section .card-content h3 {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .innovation-philosophy-section .card-content p {
    font-size: 13.5px;
    line-height: 1.6;
  }

}




/* =========================================
   RIGHT SMALL CARDS
========================================= */

.innovation-philosophy-section .innovation-small-cards {
  display: flex;
  flex-direction: column;

  gap: 30px;

  height: 100%;
}

.innovation-philosophy-section .innovation-small-cards .innovation-philosophy-card {
  flex: 1;
}



/* =========================================
   FLOATING BOX
========================================= */

.innovation-philosophy-section .mini-floating-box {
  margin-top: 35px;

  height: 58px;

  padding: 0 22px;

  border-radius: 18px;

  background:
    rgba(255, 255, 255, .9);

  border:
    1px solid rgba(31, 87, 244, .08);

  display: inline-flex;
  align-items: center;

  gap: 12px;

  width: fit-content;

  font-size: 14px;
  font-weight: 700;

  color: var(--black-2);

  box-shadow:
    0 20px 60px rgba(11, 22, 59, .06);
}

.innovation-philosophy-section .mini-floating-box i {
  color: var(--theme);
}



/* =========================================
   BOTTOM GRID
========================================= */

.innovation-philosophy-section .innovation-bottom-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 30px;
}



/* =========================================
   FEATURE BOX
========================================= */

.innovation-philosophy-section .innovation-feature-box {
  position: relative;

  padding: 40px;

  border-radius: 30px;

  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #F8FBFF 100%);

  border:
    1px solid rgba(31, 87, 244, .08);

  transition: .4s;

  overflow: hidden;
}

.innovation-philosophy-section .innovation-feature-box:hover {
  transform:
    translateY(-8px);
}



/* =========================================================
INNOVATION FEATURE BOX
========================================================= */

.innovation-philosophy-section .feature-number {
  font-size: 70px;
  line-height: 1;
  font-weight: 900;
  color: rgba(31, 87, 244, .08);
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.innovation-philosophy-section .innovation-feature-box h4 {
  font-size: 21px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--black-2);
  margin-bottom: 18px;
  letter-spacing: -0.8px;
}

.innovation-philosophy-section .innovation-feature-box p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  margin: 0;
}



/* =========================================================
LARGE DESKTOP
========================================================= */

@media (max-width: 1399px) {

  .innovation-philosophy-section .feature-number {
    font-size: 62px;
    margin-bottom: 22px;
  }

  .innovation-philosophy-section .innovation-feature-box h4 {
    font-size: 20px;
    line-height: 1.25;
  }

  .innovation-philosophy-section .innovation-feature-box p {
    line-height: 1.85;
  }

}



/* =========================================================
DESKTOP / LAPTOP
========================================================= */

@media (max-width: 1199px) {

  .innovation-philosophy-section .feature-number {
    font-size: 56px;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
  }

  .innovation-philosophy-section .innovation-feature-box h4 {
    font-size: 19px;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
  }

  .innovation-philosophy-section .innovation-feature-box p {
    font-size: 15.5px;
    line-height: 1.8;
  }

}



/* =========================================================
TABLET
========================================================= */

@media (max-width: 991px) {

  .innovation-philosophy-section .feature-number {
    font-size: 48px;
    margin-bottom: 18px;
    letter-spacing: -1px;
  }

  .innovation-philosophy-section .innovation-feature-box h4 {
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 15px;
  }

  .innovation-philosophy-section .innovation-feature-box p {
    font-size: 15px;
    line-height: 1.75;
  }

}



/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

  .innovation-philosophy-section .feature-number {
    font-size: 40px;
    margin-bottom: 16px;
    letter-spacing: -0.8px;
  }

  .innovation-philosophy-section .innovation-feature-box h4 {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
  }

  .innovation-philosophy-section .innovation-feature-box p {
    font-size: 14.5px;
    line-height: 1.7;
  }

}



/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

  .innovation-philosophy-section .feature-number {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .innovation-philosophy-section .innovation-feature-box h4 {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
  }

  .innovation-philosophy-section .innovation-feature-box p {
    font-size: 14px;
    line-height: 1.65;
  }

}



/* =========================================================
EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 399px) {

  .innovation-philosophy-section .feature-number {
    font-size: 30px;
    letter-spacing: -0.5px;
  }

  .innovation-philosophy-section .innovation-feature-box h4 {
    font-size: 15px;
    line-height: 1.45;
    letter-spacing: 0;
  }

  .innovation-philosophy-section .innovation-feature-box p {
    font-size: 13.5px;
    line-height: 1.6;
  }

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px) {

  .innovation-philosophy-section .innovation-philosophy-grid {
    grid-template-columns: 1fr;
  }

  .innovation-philosophy-section .innovation-bottom-grid {
    grid-template-columns: 1fr;
  }

}



@media(max-width:991px) {

  .innovation-philosophy-section {
    padding: 110px 0;
  }




}



@media(max-width:767px) {

  .innovation-philosophy-section {
    padding: 90px 0;
  }

  .innovation-philosophy-section .innovation-section-header {
    margin-bottom: 55px;
  }



  .innovation-philosophy-section .innovation-section-header p {
    font-size: 16px;
  }

  .innovation-philosophy-section .innovation-philosophy-card {
    padding: 30px;
  }



  .innovation-philosophy-section .mini-floating-box {
    width: 100%;
    justify-content: center;
  }

  .innovation-philosophy-section .innovation-feature-box {
    padding: 32px;
  }

}


.innovation-stack-section {
  position: relative;
  overflow: hidden;

  padding: 140px 0;

  background:
    linear-gradient(180deg,
      #F8FBFF 0%,
      #ffffff 100%);
}

.innovation-stack-section .stack-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(120px);

  pointer-events: none;
}

.innovation-stack-section .glow-left {
  width: 550px;
  height: 550px;

  background:
    rgba(31, 87, 244, .10);

  top: 0;
  left: -220px;
}

.innovation-stack-section .glow-right {
  width: 500px;
  height: 500px;

  background:
    rgba(163, 71, 255, .10);

  right: -180px;
  bottom: 0;
}

.innovation-stack-section .innovation-stack-grid {
  position: relative;
  z-index: 5;

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 30px;
}

.innovation-stack-section .stack-card {
  position: relative;

  padding: 40px;

  border-radius: 34px;

  background:
    rgba(255, 255, 255, .72);

  border:
    1px solid rgba(31, 87, 244, .08);

  overflow: hidden;

  transition: .45s;

  box-shadow:
    0 20px 70px rgba(11, 22, 59, .04);
}

.innovation-stack-section .large-card {
  grid-column: span 2;
}

.innovation-stack-section .wide-card {
  grid-column: span 2;
}

.innovation-stack-section .stack-card:hover {
  transform:
    translateY(-10px);

  box-shadow:
    0 35px 90px rgba(11, 22, 59, .08);
}

.innovation-stack-section .stack-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 30px;
}

.innovation-stack-section .stack-icon {
  width: 82px;
  height: 82px;

  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 34px;

  position: relative;

  overflow: hidden;
}

.innovation-stack-section .react-bg {
  background: linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255,0.6));
    color: rgb(255, 255, 255);
}

.innovation-stack-section .next-bg {
 background: linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255,0.5));
    color: rgb(255, 255, 255);
}

.innovation-stack-section .spring-bg {
 background: linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255,0.2));
    color: rgb(255, 255, 255);
}

.innovation-stack-section .seo-bg {
  background: linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255,0.1));
    color: rgb(255, 255, 255);
}

.innovation-stack-section .ui-bg {
  background: linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255,0.3));
    color: rgb(255, 255, 255);
}

.innovation-stack-section .ai-bg {
  background: linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255,0.4));
    color: rgb(255, 255, 255);
}

.innovation-stack-section .stack-badge {
  height: 42px;

  padding: 0 18px;

  border-radius: 50px;

  background:
    rgba(31, 87, 244, .06);

  border:
    1px solid rgba(31, 87, 244, .08);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 1px;

  color: var(--theme);
}

.innovation-stack-section .stack-card h3 {
  font-size: 21px;

  line-height: 1.3;

  font-weight: 700;


  color: var(--black-2);

  margin-bottom: 22px;
}

.innovation-stack-section .stack-card p {
  font-size: 16px;

  line-height: 1.9;

  color: var(--text);

  margin-bottom: 0;
}

.innovation-stack-section .stack-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 32px;
}

.innovation-stack-section .stack-tags span {
  height: 42px;

  padding: 0 18px;

  border-radius: 50px;

  background:
    rgba(31, 87, 244, .06);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  font-weight: 700;

  color: var(--black-2);
}

.innovation-stack-section .ui-preview-elements {
  display: flex;
  gap: 18px;

  margin-top: 40px;
}

.innovation-stack-section .ui-preview-elements span {
  flex: 1;

  height: 10px;

  border-radius: 50px;

  background:
    linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255));

  opacity: .7;
}

@media(max-width:1200px) {

  .innovation-stack-section .innovation-stack-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

  .innovation-stack-section .wide-card,
  .innovation-stack-section .large-card {
    grid-column: span 2;
  }

}



@media(max-width:991px) {

  .innovation-stack-section .innovation-stack-grid {
    grid-template-columns: 1fr;
  }

  .innovation-stack-section .wide-card,
  .innovation-stack-section .large-card {
    grid-column: span 1;
  }

  .innovation-stack-section .stack-card h3 {
    font-size: 20px;
  }

}



@media(max-width:767px) {

  .innovation-stack-section {
    padding: 100px 0;
  }

  .innovation-stack-section .stack-card {
    padding: 30px;
  }

  .innovation-stack-section .stack-card h3 {
    font-size: 18px;
  }

  .innovation-stack-section .stack-card-top {
    flex-direction: column;
    align-items: flex-start;

    gap: 20px;
  }

}

.innovation-process-section {
  position: relative;
  overflow: hidden;

  padding: 140px 0;

  background:
    linear-gradient(180deg,
      #ffffff 0%,
      var(--bg) 100%);
}

.innovation-process-section .process-blur {
  position: absolute;

  border-radius: 50%;

  filter: blur(120px);

  pointer-events: none;
}

.innovation-process-section .process-blur-left {
  width: 500px;
  height: 500px;

  background:
    rgba(31, 87, 244, .08);

  top: 0;
  left: -180px;
}

.innovation-process-section .process-blur-right {
  width: 450px;
  height: 450px;

  background:
    rgba(163, 71, 255, .08);

  bottom: -120px;
  right: -150px;
}

.innovation-process-section .innovation-process-wrapper {
  position: relative;

  margin-top: 90px;

  display: flex;
  flex-direction: column;

  gap: 45px;
}

.innovation-process-section .process-line {
  position: absolute;

  left: 34px;
  top: 0;

  width: 3px;
  height: 100%;

  background:
    linear-gradient(to bottom,
      var(--theme),
      rgba(31, 87, 244, .05));

  border-radius: 50px;
}

.innovation-process-section .process-item {
  position: relative;

  display: flex;
  align-items: flex-start;

  gap: 35px;

  z-index: 5;
}

.innovation-process-section .process-number {
  min-width: 70px;
  height: 70px;

  border-radius: 50%;

  background: linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255));

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  font-weight: 900;

  color: #fff;

  box-shadow:
    0 15px 40px rgba(31, 87, 244, .20);
}

.innovation-process-section .process-card {
  position: relative;

  flex: 1;

  padding: 40px;

  border-radius: 30px;

  background:
    rgba(255, 255, 255, .78);

  border:
    1px solid rgba(31, 87, 244, .08);

  transition: .45s;

  overflow: hidden;

  box-shadow:
    0 20px 70px rgba(11, 22, 59, .04);
}

.innovation-process-section .process-card:hover {
  transform:
    translateY(-8px);

  box-shadow:
    0 35px 90px rgba(11, 22, 59, .08);
}

.innovation-process-section .process-icon {
  width: 85px;
  height: 85px;
  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 34px;

  margin-bottom: 28px;
}



/* =========================================================
ICON COLORS
========================================================= */
/* =========================================================
PROFESSIONAL BRAND COLORS
========================================================= */

.innovation-process-section .strategy-icon {
  background: linear-gradient(135deg, rgb(47, 107, 255,0.5), rgb(110, 168, 255));
    color: rgb(255, 255, 255);
}

.innovation-process-section .design-icon {
  background: linear-gradient(135deg, rgb(47, 107, 255,0.4), rgb(110, 168, 255));
    color: rgb(255, 255, 255);
}

.innovation-process-section .coding-icon {
  background: linear-gradient(135deg, rgb(47, 107, 255,0.3), rgb(110, 168, 255));
    color: rgb(255, 255, 255);
}

.innovation-process-section .seo-icon {
  background: linear-gradient(135deg, rgb(47, 107, 255,0.2), rgb(110, 168, 255));
    color: rgb(255, 255, 255);
}

.innovation-process-section .launch-icon {
 background: linear-gradient(135deg, rgb(47, 107, 255,0.1), rgb(110, 168, 255));
    color: rgb(255, 255, 255);
}


/* =========================================================
CARD TITLE
========================================================= */

.innovation-process-section .process-card h3 {
  font-size: 21px;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--black-2);
  margin-bottom: 20px;
}



/* =========================================================
CARD TEXT
========================================================= */

.innovation-process-section .process-card p {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 0;
}



/* =========================================================
LARGE DESKTOP
========================================================= */

@media (max-width: 1399px) {

  .innovation-process-section .process-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
    border-radius: 22px;
    margin-bottom: 24px;
  }

  .innovation-process-section .process-card h3 {
    font-size: 20px;
    line-height: 1.32;
  }

  .innovation-process-section .process-card p {
    line-height: 1.85;
  }

}



/* =========================================================
DESKTOP / LAPTOP
========================================================= */

@media (max-width: 1199px) {

  .innovation-process-section .process-icon {
    width: 74px;
    height: 74px;
    font-size: 30px;
    border-radius: 20px;
    margin-bottom: 22px;
  }

  .innovation-process-section .process-card h3 {
    font-size: 19px;
    line-height: 1.35;
    margin-bottom: 18px;
    letter-spacing: -0.6px;
  }

  .innovation-process-section .process-card p {
    font-size: 15.5px;
    line-height: 1.8;
  }

}



/* =========================================================
TABLET
========================================================= */

@media (max-width: 991px) {

  .innovation-process-section .process-icon {
    width: 68px;
    height: 68px;
    font-size: 27px;
    border-radius: 18px;
    margin-bottom: 20px;
  }

  .innovation-process-section .process-card h3 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 16px;
    letter-spacing: -0.4px;
  }

  .innovation-process-section .process-card p {
    font-size: 15px;
    line-height: 1.75;
  }

}



/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

  .innovation-process-section .process-icon {
    width: 62px;
    height: 62px;
    font-size: 24px;
    border-radius: 16px;
    margin-bottom: 18px;
  }

  .innovation-process-section .process-card h3 {
    font-size: 17px;
    line-height: 1.4;
    margin-bottom: 14px;
    letter-spacing: -0.2px;
  }

  .innovation-process-section .process-card p {
    font-size: 14.5px;
    line-height: 1.7;
  }

}



/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

  .innovation-process-section .process-icon {
    width: 56px;
    height: 56px;
    font-size: 21px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  .innovation-process-section .process-card h3 {
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 12px;
    letter-spacing: 0;
  }

  .innovation-process-section .process-card p {
    font-size: 14px;
    line-height: 1.65;
  }

}



/* =========================================================
EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 399px) {

  .innovation-process-section .process-icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
    border-radius: 12px;
  }

  .innovation-process-section .process-card h3 {
    font-size: 15px;
    line-height: 1.45;
  }

  .innovation-process-section .process-card p {
    font-size: 13.5px;
    line-height: 1.6;
  }

}

@media(max-width:991px) {

  .innovation-process-section {
    padding: 110px 0;
  }



}

@media(max-width:767px) {

  .innovation-process-section {
    padding: 90px 0;
  }

  .innovation-process-section .innovation-process-wrapper {
    gap: 30px;
  }

  .innovation-process-section .process-item {
    gap: 18px;
  }

  .innovation-process-section .process-number {
    min-width: 55px;
    height: 55px;

    font-size: 16px;
  }

  .innovation-process-section .process-line {
    left: 26px;
  }

  .innovation-process-section .process-card {
    padding: 28px;
  }



}

.innovation-lab *,
.innovation-philosophy-section *,
.innovation-stack-section *,
.innovation-process-section * {
  transition:
    transform .45s ease,
    box-shadow .45s ease,
    background .45s ease,
    border-color .45s ease,
    opacity .45s ease;
}

.reveal-up {
  opacity: 0;
  transform: translateY(80px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
}

.reveal-scale {
  opacity: 0;
  transform: scale(.85);
}

.reveal-active {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

.innovation-lab .innovation-hero-content {
  animation:
    heroFadeLeft 1s ease forwards;
}

.innovation-lab .innovation-hero-visual {
  animation:
    heroFadeRight 1.1s ease forwards;
}

@keyframes heroFadeLeft {

  from {
    opacity: 0;
    transform:
      translateX(-80px);
  }

  to {
    opacity: 1;
    transform:
      translateX(0);
  }

}

@keyframes heroFadeRight {

  from {
    opacity: 0;
    transform:
      translateX(80px);
  }

  to {
    opacity: 1;
    transform:
      translateX(0);
  }

}

.innovation-lab .innovation-bg-glow,
.innovation-stack-section .stack-glow,
.innovation-process-section .process-blur,
.innovation-philosophy-section .philosophy-glow {
  animation:
    glowMove 8s ease-in-out infinite alternate;
}

@keyframes glowMove {

  0% {
    transform:
      translate(0px, 0px) scale(1);
  }

  100% {
    transform:
      translate(30px, -20px) scale(1.08);
  }

}

.innovation-lab .floating-ui-card {
  animation:
    floatingCard 5s ease-in-out infinite;
}

@keyframes floatingCard {

  0% {
    transform:
      translateY(0px);
  }

  50% {
    transform:
      translateY(-15px);
  }

  100% {
    transform:
      translateY(0px);
  }

}

.innovation-lab .innovation-main-card:hover {
  transform:
    translateY(-10px) rotateX(2deg) rotateY(-2deg);

  box-shadow:
    0 60px 140px rgba(11, 22, 59, .18);
}

.innovation-process-section .process-card:hover {

  transform:
    translateY(-10px) translateX(10px);

}

.innovation-stack-section .stack-card:hover {

  transform:
    translateY(-12px);

}

.innovation-stack-section .stack-card:hover .stack-icon {

  transform:
    rotate(-8deg) scale(1.08);

}

.innovation-philosophy-section .innovation-philosophy-card:hover {

  transform:
    translateY(-12px);

}

.innovation-philosophy-section .innovation-philosophy-card:hover .card-icon {

  transform:
    scale(1.08) rotate(-6deg);

}

.innovation-philosophy-section .innovation-feature-box:hover {

  transform:
    translateY(-10px);

  box-shadow:
    0 35px 80px rgba(11, 22, 59, .08);

}

.innovation-lab .innovation-btn {
  position: relative;
  overflow: hidden;
}

.innovation-lab .innovation-btn::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 100%;
  height: 100%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .35),
      transparent);

  transition: .7s;
}

.innovation-lab .innovation-btn:hover::before {
  left: 120%;
}

.innovation-lab .chart-line {
  animation:
    chartGrow 1.5s ease forwards;
  transform-origin: bottom;
}

.innovation-lab .line-1 {
  animation-delay: .2s;
}

.innovation-lab .line-2 {
  animation-delay: .4s;
}

.innovation-lab .line-3 {
  animation-delay: .6s;
}

@keyframes chartGrow {

  from {
    transform:
      scaleY(0);
    opacity: 0;
  }

  to {
    transform:
      scaleY(1);
    opacity: 1;
  }

}

.innovation-section-header .section-title {
  animation:
    fadeUp 1s ease forwards;
}

@keyframes fadeUp {

  from {
    opacity: 0;
    transform:
      translateY(60px);
  }

  to {
    opacity: 1;
    transform:
      translateY(0);
  }

}

.innovation-stack-section .stack-card,
.innovation-philosophy-section .innovation-feature-box,
.innovation-process-section .process-item {

  opacity: 0;
  transform: translateY(60px);

}

.innovation-lab .innovation-main-card,
.innovation-stack-section .stack-card,
.innovation-philosophy-section .innovation-philosophy-card {
  will-change: transform;
}

@media(max-width:991px) {

  .innovation-lab .floating-ui-card {
    display: none;
  }

}




.innovation-section-header p {
  margin-bottom: 50px;
}




























.hosting-hero-section {
  position: relative;
  overflow: hidden;
  padding: 180px 0 140px;
}

.hosting-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}

.hosting-hero-section .glow-left {
  width: 650px;
  height: 650px;
  background: rgba(31, 87, 244, .10);
  left: -250px;
  top: -250px;
}

.hosting-hero-section .glow-right {
  width: 500px;
  height: 500px;
  background: rgba(163, 71, 255, .10);
  right: -180px;
  bottom: -120px;
}

.hosting-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 87, 244, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 87, 244, .03) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hosting-hero-wrapper {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.hosting-hero-content {
  max-width: 650px;
}

.hosting-hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hosting-btn {
  height: 62px;
  padding: 0 34px;
  border-radius: 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  font-size: 15px;
  font-weight: 700;

  transition: all .3s ease;
  text-align: center;
  white-space: nowrap;
}

.hosting-btn.primary-btn {
  background: linear-gradient(135deg,
      var(--theme),
      var(--theme-2));

  color: #fff;
}

.hosting-btn.secondary-btn {
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(31, 87, 244, .08);
  color: var(--black-2);
}



/* =========================================================
HOSTING MINI STATS
========================================================= */

.hosting-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 55px;
}

.hosting-mini-card {
  padding: 28px;
  border-radius: 28px;

  background: rgba(255, 255, 255, .75);

  border: 1px solid rgba(31, 87, 244, .08);

  backdrop-filter: blur(14px);
}

.hosting-mini-card h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black-2);
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.hosting-mini-card span {
  display: block;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}



/* =========================================================
LARGE DESKTOP
========================================================= */

@media (max-width: 1399px) {

  .hosting-mini-stats {
    gap: 18px;
  }

  .hosting-mini-card {
    padding: 24px;
  }

  .hosting-mini-card h4 {
    font-size: 22px;
    line-height: 1.32;
  }

  .hosting-mini-card span {
    font-size: 14.5px;
  }

}



/* =========================================================
DESKTOP / LAPTOP
========================================================= */

@media (max-width: 1199px) {

  .hosting-btn {
    height: 58px;
    padding: 0 28px;
    border-radius: 16px;
    font-size: 14px;
  }

  .hosting-mini-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 45px;
  }

  .hosting-mini-card {
    padding: 24px;
    border-radius: 24px;
  }

  .hosting-mini-card h4 {
    font-size: 21px;
    line-height: 1.35;
    margin-bottom: 9px;
  }

  .hosting-mini-card span {
    font-size: 14px;
    line-height: 1.65;
  }

}



/* =========================================================
TABLET
========================================================= */

@media (max-width: 991px) {

  .hosting-hero-buttons {
    gap: 14px;
    margin-top: 35px;
  }

  .hosting-btn {
    height: 56px;
    padding: 0 24px;
    border-radius: 15px;
    font-size: 14px;
  }

  .hosting-mini-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }

  .hosting-mini-card {
    padding: 22px;
    border-radius: 22px;
  }

  .hosting-mini-card h4 {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -0.3px;
  }

  .hosting-mini-card span {
    font-size: 13.5px;
    line-height: 1.6;
  }

}



/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

  .hosting-hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 30px;
  }

  .hosting-btn {
    width: 100%;
    height: 54px;
    padding: 0 20px;
    border-radius: 14px;
    font-size: 14px;
  }

  .hosting-mini-stats {
    margin-top: 35px;
    gap: 14px;
  }

  .hosting-mini-card {
    padding: 20px;
    border-radius: 20px;
  }

  .hosting-mini-card h4 {
    font-size: 19px;
    line-height: 1.4;
    margin-bottom: 8px;
    letter-spacing: -0.2px;
  }

  .hosting-mini-card span {
    font-size: 13px;
    line-height: 1.55;
  }

}



/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

  .hosting-btn {
    height: 52px;
    border-radius: 13px;
    font-size: 13.5px;
  }

  .hosting-mini-card {
    padding: 18px;
    border-radius: 18px;
  }

  .hosting-mini-card h4 {
    font-size: 18px;
    line-height: 1.45;
  }

  .hosting-mini-card span {
    font-size: 12.5px;
    line-height: 1.5;
  }

}



/* =========================================================
EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 399px) {

  .hosting-btn {
    height: 50px;
    padding: 0 16px;
    font-size: 13px;
  }

  .hosting-mini-card {
    padding: 16px;
    border-radius: 16px;
  }

  .hosting-mini-card h4 {
    font-size: 17px;
    line-height: 1.45;
    letter-spacing: 0;
  }

  .hosting-mini-card span {
    font-size: 12px;
    line-height: 1.45;
  }

}



.hosting-screen {
  height: 500px;
  border-radius: 28px;
  padding: 35px;
  background: linear-gradient(180deg, #F9FBFF 0%, #EEF4FF 100%);
}

.server-bars {
  display: flex;
  align-items: flex-end;
  gap: 18px;
  height: 220px;
  margin: 50px 0;
}

.server-bars .bar {
  flex: 1;
  border-radius: 30px 30px 0 0;
}

.server-bars .one {
  height: 120px;
  background: linear-gradient(180deg, var(--theme), transparent);
}

.server-bars .two {
  height: 180px;
  background: linear-gradient(180deg, var(--theme-4), transparent);
}

.server-bars .three {
  height: 150px;
  background: linear-gradient(180deg, var(--theme-2), transparent);
}

.server-bars .four {
  height: 200px;
  background: linear-gradient(180deg, #4ADE80, transparent);
}

.server-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.server-info-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .75);
}

.floating-server-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(31, 87, 244, .08);
  box-shadow: 0 20px 60px rgba(11, 22, 59, .06);
}

.floating-server-card i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(31, 87, 244, .08);
  color: var(--theme);
}

.card-one {
  top: 100px;
  left: -60px;
}

.card-two {
  bottom: 40px;
  right: -50px;
}

/* DOMAIN SEARCH */

.domain-search-section {
  padding: 120px 0;
  background: #fff;
}

.domain-search-box {
  padding: 70px;
  border-radius: 40px;
  background: linear-gradient(180deg, #ffffff 0%, #F8FBFF 100%);
  border: 1px solid rgba(31, 87, 244, .08);
}

.domain-search-form {
  display: flex;
  gap: 20px;
  margin-top: 50px;
}

.domain-search-form input {
  flex: 1;
  height: 72px;
  border-radius: 20px;
  border: 1px solid rgba(31, 87, 244, .08);
  padding: 0 25px;
}

.domain-search-form button {
  width: 220px;
  border: none;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--theme), var(--theme-2));
  color: #fff;
  font-weight: 700;
}

.domain-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 45px;
}

.domain-result-card {
  padding: 26px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(31, 87, 244, .08);
  text-align: center;
}


/* =========================================
   HOSTING TYPES SECTION
========================================= */

.hosting-types-section {
  position: relative;
  overflow: hidden;

  padding: 140px 0;

  background:
    linear-gradient(180deg,
      #F8FBFF 0%,
      #ffffff 100%);
}



/* =========================================
   GRID
========================================= */

.hosting-types-grid {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 24px;

  margin-top: 70px;
}



/* =========================================
   CARD
========================================= */

.hosting-type-card {
  position: relative;

  padding: 34px 30px;

  border-radius: 30px;

  background:
    rgba(255, 255, 255, .88);

  border:
    1px solid rgba(31, 87, 244, .08);

  transition: .4s;

  overflow: hidden;

  box-shadow:
    0 15px 45px rgba(11, 22, 59, .04);
}



/* HOVER */

.hosting-type-card:hover {
  transform:
    translateY(-10px);

  border-color:
    rgba(31, 87, 244, .18);

  box-shadow:
    0 25px 70px rgba(11, 22, 59, .08);
}



/* FEATURED */

.featured-card {
  background:
    linear-gradient(180deg,
      rgba(31, 87, 244, .03) 0%,
      #ffffff 100%);

  border:
    1px solid rgba(31, 87, 244, .18);
}



/* =========================================
   ICON
========================================= */

.hosting-type-icon {
  width: 78px;
  height: 78px;

  border-radius: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;

  margin-bottom: 28px;
}




.shared-bg {

  background:
    rgba(31, 87, 244, .10);

  color:
    var(--theme);

  border:
    1px solid rgba(31, 87, 244, .12);

}



/* =========================================
VPS HOSTING
========================================= */

.vps-bg {

  background:
    rgba(23, 63, 165, .10);

  color:
    var(--theme-2);

  border:
    1px solid rgba(23, 63, 165, .14);

}



/* =========================================
BUSINESS EMAILS
========================================= */

.mail-bg {


  background:
    rgba(23, 63, 165, .10);

  color:
    var(--theme-2);

  border:
    1px solid rgba(23, 63, 165, .14);

}



/* =========================================
CPANEL MANAGEMENT
========================================= */

.cpanel-bg {

  background:
    rgba(31, 87, 244, .06);

  color:
    var(--theme);

  border:
    1px solid rgba(31, 87, 244, .08);

}




/* =========================================
   TITLE
========================================= */

.hosting-type-card h3 {
  font-size: 22px;

  line-height: 1.2;

  font-weight: 700;

  letter-spacing: -.5px;

  color: var(--black-2);

  margin-bottom: 18px;
}



/* =========================================
   TEXT
========================================= */

.hosting-type-card p {
  font-size: 15px;

  line-height: 1.9;

  color: var(--text);

  margin-bottom: 28px;
}



/* =========================================
   LIST
========================================= */

.hosting-type-card ul {
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;

  gap: 14px;

  list-style: none;
}

.hosting-type-card ul li {
  position: relative;

  padding-left: 24px;

  font-size: 15px;
  font-weight: 500;

  color: var(--text);
}

.hosting-type-card ul li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 8px;

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background: linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255));
}



/* =========================================
   FEATURES SECTION
========================================= */

.hosting-features-section {
  position: relative;

  padding: 0 0 140px 0;

  background: #fff;
}



/* =========================================
   FEATURES GRID
========================================= */

.hosting-features-grid {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 24px;

  margin-top: 70px;
}



/* =========================================
   FEATURE CARD
========================================= */

.hosting-feature-card {
  position: relative;

  padding: 40px 34px;

  border-radius: 28px;

  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #F8FBFF 100%);

  border:
    1px solid rgba(31, 87, 244, .08);

  transition: .4s;

  text-align: left;

  overflow: hidden;
}



/* HOVER */

.hosting-feature-card:hover {
  transform:
    translateY(-8px);

  box-shadow:
    0 25px 60px rgba(11, 22, 59, .06);
}



/* ICON */

.hosting-feature-card i {
  width: 72px;
  height: 72px;

  border-radius: 20px;

  background:
    rgba(31, 87, 244, .08);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;

  color: var(--theme);

  margin-bottom: 28px;
}



/* TITLE */
.hosting-feature-card h4 {

  font-size: 21px;

  line-height: 1.2;

  font-weight: 700;

  color: var(--black-2);

  margin-bottom: 18px;

  letter-spacing: -0.6px;

}



/* TEXT */

.hosting-feature-card p {

  font-size: 15px;

  line-height: 1.9;

  color: var(--text);

  margin: 0;

}



/* =========================================
LARGE DESKTOP
========================================= */

@media (max-width: 1399px) {

  .hosting-feature-card h4 {

    font-size: 20px;

    line-height: 1.25;

  }

}



/* =========================================
DESKTOP / LAPTOP
========================================= */

@media (max-width: 1199px) {

  .hosting-feature-card h4 {

    font-size: 19px;

    line-height: 1.3;

    margin-bottom: 16px;

  }

  .hosting-feature-card p {

    font-size: 14.5px;

    line-height: 1.8;

  }

}



/* =========================================
TABLET
========================================= */

@media (max-width: 991px) {

  .hosting-feature-card h4 {

    font-size: 18px;

    line-height: 1.35;

    margin-bottom: 14px;

    letter-spacing: -0.4px;

  }

  .hosting-feature-card p {

    font-size: 14px;

    line-height: 1.75;

  }

}



/* =========================================
MOBILE
========================================= */

@media (max-width: 767px) {

  .hosting-feature-card h4 {

    font-size: 17px;

    line-height: 1.4;

    margin-bottom: 12px;

    letter-spacing: -0.2px;

  }

  .hosting-feature-card p {

    font-size: 13.5px;

    line-height: 1.7;

  }

}



/* =========================================
SMALL MOBILE
========================================= */

@media (max-width: 575px) {

  .hosting-feature-card h4 {

    font-size: 16px;

    line-height: 1.45;

    margin-bottom: 10px;

    letter-spacing: 0;

  }

  .hosting-feature-card p {

    font-size: 13px;

    line-height: 1.65;

  }

}



/* =========================================
EXTRA SMALL DEVICES
========================================= */

@media (max-width: 399px) {

  .hosting-feature-card h4 {

    font-size: 15px;

    line-height: 1.45;

  }

  .hosting-feature-card p {

    font-size: 12.5px;

    line-height: 1.6;

  }

}



/* =========================================
   DOMAIN SEARCH
========================================= */

.domain-search-form input {
  color: #000;
}



/* =========================================
   DOMAIN RESULT
========================================= */

.domain-top-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.domain-extension-label {
  height: 32px;
  padding: 0 14px;

  border-radius: 50px;

  background:
    rgba(31, 87, 244, .08);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  font-weight: 700;

  color: var(--theme);
}



/* =========================================
   DOMAIN PREVIEW
========================================= */

.preview-card {
  opacity: .95;
}

.domain-preview-btn {
  height: 46px;
  padding: 0 22px;

  border: none;
  border-radius: 14px;

  background:
    rgba(31, 87, 244, .08);

  color: var(--theme);

  font-weight: 700;

  cursor: pointer;

  transition: .3s;
}

.domain-preview-btn:hover {
  background:
    rgba(31, 87, 244, .12);
}



/* =========================================
   LOADING
========================================= */

.domain-loading {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 14px;

  padding: 40px;
}

.domain-loader {
  width: 22px;
  height: 22px;

  border-radius: 50%;

  border:
    3px solid rgba(31, 87, 244, .15);

  border-top-color:
    var(--theme);

  animation: spin .8s linear infinite;
}

@keyframes spin {

  to {
    transform: rotate(360deg);
  }

}



/* =========================================
   BUTTONS
========================================= */

.buy-domain-btn {
  height: 48px;
  padding: 0 22px;

  border-radius: 14px;

  background: linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255));

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  font-size: 14px;
  font-weight: 700;

  text-decoration: none;

  transition: .3s;
}

.buy-domain-btn:hover {
  transform:
    translateY(-3px);
}

.domain-unavailable-btn {
  height: 48px;
  padding: 0 22px;

  border: none;
  border-radius: 14px;

  background: #EEF1F7;

  color: #7B849B;

  font-size: 14px;
  font-weight: 700;
}



/* =========================================
   STATUS COLORS
========================================= */

.available-domain {
  color: #22C55E;
}

.taken-domain {
  color: #EF4444;
}



/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1400px) {

  .hosting-types-grid {
    grid-template-columns:
      repeat(2, 1fr);
  }

}



@media(max-width:991px) {

  .hosting-types-section,
  .hosting-features-section {
    padding: 110px 0;
  }

  .hosting-types-grid,
  .hosting-features-grid {
    grid-template-columns: 1fr;
  }

  .hosting-type-card,
  .hosting-feature-card {
    padding: 34px 28px;
  }

  .hosting-type-card h3 {
    font-size: 20px;
  }

  .floating-server-card {
    display: none;
  }

}



@media(max-width:767px) {

  .hosting-types-section,
  .hosting-features-section {
    padding: 90px 0;
  }

  .hosting-types-grid,
  .hosting-features-grid {
    gap: 20px;

    margin-top: 50px;
  }

  .hosting-type-card,
  .hosting-feature-card {
    padding: 28px 24px;

    border-radius: 24px;
  }

  .hosting-type-icon {
    width: 65px;
    height: 65px;

    font-size: 24px;

    margin-bottom: 22px;
  }

  .hosting-type-card h3 {
    font-size: 18px;
  }

  .hosting-type-card p,
  .hosting-type-card ul li {
    font-size: 14px;
  }

}








.hosting-hero-section {
  position: relative;
  overflow: hidden;
}



/* =========================================
   BACKGROUND GLOW
========================================= */

.hosting-bg-glow {
  position: absolute;

  border-radius: 50%;

  filter: blur(120px);

  pointer-events: none;

  animation:
    glowFloat 10s ease-in-out infinite;
}

.glow-left {
  animation-delay: 0s;
}

.glow-right {
  animation-delay: 2s;
}

@keyframes glowFloat {

  0% {
    transform:
      translateY(0px) scale(1);
  }

  50% {
    transform:
      translateY(-30px) scale(1.06);
  }

  100% {
    transform:
      translateY(0px) scale(1);
  }

}



/* =========================================
   GRID BACKGROUND
========================================= */

.hosting-grid {
  position: absolute;

  inset: 0;

  background-image:
    linear-gradient(rgba(31, 87, 244, .04) 1px,
      transparent 1px),
    linear-gradient(90deg,
      rgba(31, 87, 244, .04) 1px,
      transparent 1px);

  background-size: 70px 70px;

  mask-image:
    radial-gradient(circle at center,
      rgba(0, 0, 0, 1),
      transparent 90%);

  animation:
    gridMove 18s linear infinite;
}

@keyframes gridMove {

  0% {
    transform:
      translateY(0px);
  }

  100% {
    transform:
      translateY(70px);
  }

}



/* =========================================
   HERO VISUAL
========================================= */

.hosting-hero-visual {
  position: relative;

  animation:
    visualFloat 7s ease-in-out infinite;
}

@keyframes visualFloat {

  0% {
    transform:
      translateY(0px);
  }

  50% {
    transform:
      translateY(-18px);
  }

  100% {
    transform:
      translateY(0px);
  }

}



/* =========================================
   MAIN CARD
========================================= */

.hosting-main-card {
  position: relative;

  overflow: hidden;
}

.hosting-main-card::before {
  content: "";

  position: absolute;

  top: -120%;
  left: -40%;

  width: 60%;
  height: 300%;

  background:
    linear-gradient(180deg,
      transparent,
      rgba(255, 255, 255, .22),
      transparent);

  transform:
    rotate(20deg);

  animation:
    shineMove 6s linear infinite;
}

@keyframes shineMove {

  0% {
    left: -60%;
  }

  100% {
    left: 130%;
  }

}



/* =========================================
   SERVER BARS
========================================= */

.server-bars {
  display: flex;
  align-items: flex-end;

  gap: 18px;

  height: 180px;
}

.server-bars .bar {
  flex: 1;

  border-radius: 18px 18px 0 0;

  background:
    linear-gradient(180deg,
      var(--theme),
      var(--theme-2));

  position: relative;

  overflow: hidden;

  animation:
    barPulse 2.5s ease-in-out infinite;
}

.server-bars .bar::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, .35),
      transparent);
}

.server-bars .one {
  height: 55%;

  animation-delay: .1s;
}

.server-bars .two {
  height: 80%;

  animation-delay: .3s;
}

.server-bars .three {
  height: 65%;

  animation-delay: .5s;
}

.server-bars .four {
  height: 92%;

  animation-delay: .7s;
}

@keyframes barPulse {

  0% {
    transform: scaleY(.92);
  }

  50% {
    transform: scaleY(1);
  }

  100% {
    transform: scaleY(.92);
  }

}



/* =========================================
   LIVE BADGE
========================================= */

.screen-top span {
  position: relative;

  overflow: hidden;
}

.screen-top span::before {
  content: "";

  position: absolute;

  left: 10px;
  top: 50%;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: #22C55E;

  transform:
    translateY(-50%);

  animation:
    livePulse 1.2s infinite;
}

@keyframes livePulse {

  0% {
    box-shadow:
      0 0 0 0 rgba(34, 197, 94, .5);
  }

  100% {
    box-shadow:
      0 0 0 12px rgba(34, 197, 94, 0);
  }

}



/* =========================================
   FLOATING CARDS
========================================= */

.floating-server-card {
  animation:
    floatingCard 5s ease-in-out infinite;

  backdrop-filter:
    blur(12px);
}

.card-one {
  animation-delay: .3s;
}

.card-two {
  animation-delay: 1.5s;
}

@keyframes floatingCard {

  0% {
    transform:
      translateY(0px);
  }

  50% {
    transform:
      translateY(-12px);
  }

  100% {
    transform:
      translateY(0px);
  }

}



/* =========================================
   MINI STATS
========================================= */



.hosting-mini-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(135deg,
      rgba(31, 87, 244, .08),
      transparent);

  opacity: 0;

  transition: .4s;
}

.hosting-mini-card:hover {
  transform:
    translateY(-8px);
}

.hosting-mini-card:hover::before {
  opacity: 1;
}



/* =========================================
   DOMAIN SEARCH RESULTS
========================================= */

.domain-result-card {
  position: relative;

  overflow: hidden;

  transition: .35s;
}

.domain-result-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(135deg,
      rgba(31, 87, 244, .04),
      transparent);

  opacity: 0;

  transition: .35s;
}

.domain-result-card:hover {
  transform:
    translateY(-6px);
}

.domain-result-card:hover::before {
  opacity: 1;
}



/* =========================================
   BUTTON HOVER
========================================= */

.hosting-btn,
.buy-domain-btn {
  position: relative;

  overflow: hidden;
}

.hosting-btn::before,
.buy-domain-btn::before {
  content: "";

  position: absolute;

  top: 0;
  left: -120%;

  width: 100%;
  height: 100%;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .25),
      transparent);

  transition: .6s;
}

.hosting-btn:hover::before,
.buy-domain-btn:hover::before {
  left: 120%;
}



/* =========================================
   REVEAL ANIMATION
========================================= */

.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;

  transition:
    1s cubic-bezier(.22, .61, .36, 1);
}

.reveal-up {
  transform:
    translateY(80px);
}

.reveal-left {
  transform:
    translateX(-80px);
}

.reveal-right {
  transform:
    translateX(80px);
}

.reveal-active {
  opacity: 1;

  transform:
    translate(0, 0);
}

.domain-result-card {
  animation:
    fadeCard .5s ease;
}

@keyframes fadeCard {

  from {
    opacity: 0;
    transform:
      translateY(18px);
  }

  to {
    opacity: 1;
    transform:
      translateY(0);
  }

}



/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px) {

  .hosting-grid {
    background-size: 45px 45px;
  }

  .floating-server-card {
    display: none;
  }

}



@media(max-width:767px) {

  .server-bars {
    height: 120px;
  }

  .hosting-hero-visual {
    animation: none;
  }

}



.domain-search-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background: #F8FBFF;
}

.domain-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31, 87, 244, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 87, 244, .04) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, transparent, black, transparent);
}

.domain-bg-glow {
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  filter: blur(120px);
}

.glow-one {
  top: -200px;
  left: -200px;
  background: rgba(31, 87, 244, .10);
}

.glow-two {
  bottom: -200px;
  right: -200px;
  background: rgba(163, 71, 255, .12);
}

.domain-search-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
  align-items: start;
}

.domain-search-content {
  padding: 55px;
  border-radius: 38px;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(31, 87, 244, .08);
  box-shadow: 0 25px 80px rgba(11, 22, 59, .06);
}

.domain-search-form {
  display: flex;
  gap: 18px;
  margin-top: 45px;
}

.domain-input-wrapper {
  position: relative;
  flex: 1;
}

.input-icon {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--theme);
  font-size: 18px;
}

.domain-search-form input {
  width: 100%;
  height: 72px;
  padding: 0 24px 0 58px;
  border-radius: 22px;
  border: 1px solid rgba(31, 87, 244, .08);
  background: #fff;
  font-size: 15px;
  font-weight: 600;
  color: #000;
}

.domain-search-form input:focus {
  outline: none;
  border-color: var(--theme);
  box-shadow: 0 0 0 6px rgba(31, 87, 244, .08);
}

.domain-search-form button {
  height: 72px;
  padding: 0 34px;
  border: none;
  border-radius: 22px;
  background: linear-gradient(135deg,
      var(--theme),
      var(--theme-2));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: .35s;
}

.domain-search-form button:hover {
  transform: translateY(-4px);
}

.domain-search-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.domain-feature {
  height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(31, 87, 244, .08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--black-2);
}

.domain-feature i {
  color: var(--theme);
}

.domain-results {
  margin-top: 35px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.domain-result-card {
  padding: 22px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(31, 87, 244, .08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: .35s;
}

.domain-result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(11, 22, 59, .06);
}

.domain-top-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.domain-top-row h4 {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--black-2);
}

.domain-extension-label {
  height: 30px;
  padding: 0 14px;
  border-radius: 50px;
  background: rgba(31, 87, 244, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--theme);
}

.domain-status {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
}

.available-domain {
  color: #22C55E;
}

.taken-domain {
  color: #EF4444;
}

.buy-domain-btn {
  height: 52px;
  padding: 0 24px;
  border-radius: 16px;
  background: linear-gradient(135deg,
      var(--theme),
      var(--theme-2));
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .35s;
}

.buy-domain-btn:hover {
  transform: translateY(-3px);
}

.domain-unavailable-btn {
  height: 52px;
  padding: 0 24px;
  border: none;
  border-radius: 16px;
  background: #EEF2FF;
  color: #718096;
  font-weight: 700;
}

.domain-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 50px;
}

.domain-loader {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 3px solid rgba(31, 87, 244, .12);
  border-top-color: var(--theme);
  animation: spin .8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.domain-side-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.domain-score-card,
.hosting-recommendation-card,
.domain-stat-card {
  padding: 35px;
  border-radius: 32px;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(31, 87, 244, .08);
  box-shadow: 0 20px 70px rgba(11, 22, 59, .05);
}

.score-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: auto auto 24px;
  background: conic-gradient(var(--theme) 0deg,
      var(--theme-2) 300deg,
      rgba(31, 87, 244, .08) 300deg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: rotateCircle 8s linear infinite;
}

.score-circle::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: #fff;
}

.score-circle span {
  position: relative;
  z-index: 2;
  font-size: 28px;
  font-weight: 900;
  color: var(--black-2);
}

@keyframes rotateCircle {
  to {
    transform: rotate(360deg);
  }
}

.domain-score-card {
  text-align: center;
}

.domain-score-card h4 {
  margin-bottom: 10px;
}

.recommendation-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-weight: 800;
}

.recommendation-top i {
  color: var(--theme);
}

.hosting-recommendation-card ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hosting-recommendation-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 600;
}

.hosting-recommendation-card li i {
  color: var(--theme);
}

.domain-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.domain-stat-card {
  text-align: center;
}

.domain-stat-card h4 {
  font-size: 34px;
  margin-bottom: 10px;
  color: var(--theme);
}

@media(max-width:991px) {

  .domain-search-wrapper {
    grid-template-columns: 1fr;
  }

}

@media(max-width:767px) {

  .domain-search-section {
    padding: 100px 0;
  }

  .domain-search-content {
    padding: 30px;
  }

  .domain-search-form {
    flex-direction: column;
  }

  .domain-search-form button {
    width: 100%;
  }

  .domain-result-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .domain-stats-grid {
    grid-template-columns: 1fr;
  }

}


@media (max-width:1200px) {

  .hosting-hero-section .hosting-hero-wrapper {
    gap: 60px;
  }



}



/* =========================================
   TABLET
========================================= */

@media (max-width:991px) {

  .hosting-hero-section {
    padding: 130px 0 100px;
  }

  .hosting-hero-section .hosting-hero-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 70px;
  }

  .hosting-hero-section .hosting-hero-content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }






  .hosting-hero-section .hosting-hero-visual {
    width: 100%;
    max-width: 700px;
  }

  .hosting-hero-section .floating-server-card {
    transform: scale(.92);
  }

}



/* =========================================
   MOBILE
========================================= */

@media (max-width:767px) {

  .hosting-hero-section {
    padding: 110px 0 80px;
  }






  .hosting-hero-section .hosting-mini-card {
    width: 100%;
    text-align: center;
  }

  .hosting-hero-section .hosting-hero-visual {
    width: 100%;
  }

  .hosting-hero-section .hosting-main-card {
    padding: 22px;
    border-radius: 28px;
  }

  .hosting-hero-section .hosting-card-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .hosting-hero-section .hosting-screen {
    padding: 20px;
  }

  .hosting-hero-section .screen-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hosting-hero-section .server-cards {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .hosting-hero-section .floating-server-card {
    position: relative;
    inset: unset;
    width: 100%;
    margin-top: 18px;
  }

}



/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width:575px) {





  .hosting-hero-section .hosting-main-card {
    padding: 18px;
  }

  .hosting-hero-section .hosting-screen {
    padding: 18px;
  }

  .hosting-hero-section .server-info-card h5 {
    font-size: 20px;
  }

  .hosting-hero-section .floating-server-card {
    padding: 16px;
  }

}

































.startup-launch-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background: #F7FAFF;
}



/* =========================================================
   BACKGROUND
========================================================= */

.startup-bg-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 1;
}

.startup-bg-glow.glow-left {
  left: -180px;
  top: -180px;
  background: rgba(31, 87, 244, .12);
}

.startup-bg-glow.glow-right {
  right: -180px;
  bottom: -180px;
  background: rgba(163, 71, 255, .10);
}



/* =========================================================
   HERO WRAPPER
========================================================= */

.startup-hero-wrapper {
  position: relative;
  z-index: 5;

  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}



/* =========================================================
   HERO CONTENT
========================================================= */

.startup-hero-content {
  position: relative;
}

.startup-hero-content h2 {
  max-width: 700px;
}



/* =========================================================
   BUTTONS
========================================================= */

.startup-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
}

.startup-btn {
  height: 60px;
  padding: 0 30px;

  border-radius: 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 15px;
  font-weight: 700;

  text-decoration: none;

  transition: .35s;
}

.startup-btn.primary-btn {
  background: linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255));

  color: #fff;

  box-shadow:
    0 20px 40px rgba(31, 87, 244, .18);
}

.startup-btn.secondary-btn {
  background: #fff;
  border: 1px solid rgba(31, 87, 244, .08);
  color: var(--black-2);
}

.startup-btn:hover {
  transform: translateY(-4px);
}



/* =========================================================
   STATS
========================================================= */

.startup-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;

  margin-top: 50px;
}

.startup-stat-card {
  position: relative;

  padding: 28px;

  border-radius: 28px;

  background: rgba(255, 255, 255, .7);

  border: 1px solid rgba(31, 87, 244, .08);

  backdrop-filter: blur(12px);

  overflow: hidden;

  transition: .35s;
}

.startup-stat-card::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 4px;

  background: linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255));
}

.startup-stat-card:hover {
  transform: translateY(-6px);
}

.startup-stat-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--black);

  margin-bottom: 6px;
}

.startup-stat-card span {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}


.startup-hero-visual {
  position: relative;
}

.startup-main-card {
  position: relative;

  border-radius: 34px;

  background: rgba(255, 255, 255, .72);

  border: 1px solid rgba(31, 87, 244, .08);

  padding: 30px;

  overflow: hidden;

  backdrop-filter: blur(16px);

  box-shadow:
    0 30px 80px rgba(11, 22, 59, .08);

  animation: floatCard 6s ease-in-out infinite;
}

.startup-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 35px;
}

.dots {
  display: flex;
  gap: 8px;
}

.dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dots span:nth-child(1) {
  background: #EF4444;
}

.dots span:nth-child(2) {
  background: #FACC15;
}

.dots span:nth-child(3) {
  background: #22C55E;
}

.startup-label {
  height: 42px;
  padding: 0 18px;

  border-radius: 50px;

  background: rgba(31, 87, 244, .08);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 13px;
  font-weight: 700;

  color: var(--theme);
}

.startup-screen {
  position: relative;

  padding: 30px;

  border-radius: 28px;

  background:
    linear-gradient(180deg,
      #0F172A 0%,
      #111827 100%);

  overflow: hidden;
}

.startup-screen::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, .04),
      transparent);

  animation: screenGlow 4s linear infinite;
}

.startup-screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-bottom: 40px;
}

.startup-screen-top h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.startup-screen-top span {
  height: 36px;
  padding: 0 14px;

  border-radius: 50px;

  background: rgba(34, 197, 94, .12);

  color: #22C55E;

  font-size: 12px;
  font-weight: 700;

  display: flex;
  align-items: center;
  justify-content: center;
}

.startup-chart {
  display: flex;
  align-items: flex-end;
  gap: 18px;

  height: 180px;

  margin-bottom: 35px;
}

.chart-line {
  flex: 1;

  border-radius: 20px 20px 0 0;

  background:
    linear-gradient(180deg,
      var(--theme),
      var(--theme-2));

  animation: chartMove 3s ease-in-out infinite;
}

.chart-line.one {
  height: 90px;
  animation-delay: .2s;
}

.chart-line.two {
  height: 150px;
  animation-delay: .4s;
}

.chart-line.three {
  height: 120px;
  animation-delay: .6s;
}

.startup-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.startup-info-card {
  padding: 24px;

  border-radius: 20px;

  background: rgba(255, 255, 255, .05);

  border: 1px solid rgba(255, 255, 255, .08);
}

.startup-info-card span {
  display: block;

  font-size: 13px;
  color: #CBD5E1;

  margin-bottom: 10px;
}

.startup-info-card h5 {
  font-size: 24px;
  font-weight: 800;

  color: #fff;
}

.startup-services-section {
  padding: 140px 0;
  background: #fff;
}

.startup-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;

  margin-top: 70px;
}

.startup-service-card {
  position: relative;

  padding: 40px 35px;

  border-radius: 34px;

  background:
    linear-gradient(180deg,
      #ffffff 0%,
      #F8FBFF 100%);

  border: 1px solid rgba(31, 87, 244, .08);

  overflow: hidden;

  transition: .4s;
}

.startup-service-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 25px 60px rgba(11, 22, 59, .08);
}

.startup-service-icon {
  width: 82px;
  height: 82px;

  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;

  margin-bottom: 28px;
}

.branding-bg {
  background: linear-gradient(135deg, rgb(47, 107, 255,0.5), rgb(110, 168, 255));

  color:
    var(--white);

  border:
    1px solid rgba(31, 87, 244, .14);
}



/* =========================================
WEB DEVELOPMENT
========================================= */

.web-bg {

    background: linear-gradient(135deg, rgb(47, 107, 255,0.6), rgb(110, 168, 255));

  color:
    var(--white);

  border:
    1px solid rgba(31, 87, 244, .14);

}



/* =========================================
HOSTING
========================================= */

.hosting-bg {


  background: linear-gradient(135deg, rgb(47, 107, 255,0.7), rgb(110, 168, 255));

  color:
    var(--white);

  border:
    1px solid rgba(31, 87, 244, .08);

}



/* =========================================
SEO
========================================= */

.seo-bg {

   background: linear-gradient(135deg, rgb(47, 107, 255,0.8), rgb(110, 168, 255));

  color:
    var(--white);

  border:
    1px solid rgba(31, 87, 244, .08);

}


.startup-service-card h3 {

  font-size: 21px;

  font-weight: 700;

  line-height: 1.3;

  letter-spacing: -0.5px;

  margin-bottom: 18px;

  color: var(--black-2);

}



/* TEXT */

.startup-service-card p {

  margin: 0;

  font-size: 15px;

  line-height: 1.9;

  color: var(--text);

}



/* =========================================
LARGE DESKTOP
========================================= */

@media (max-width: 1399px) {

  .startup-service-card h3 {

    font-size: 20px;

    line-height: 1.32;

  }

}



/* =========================================
DESKTOP / LAPTOP
========================================= */

@media (max-width: 1199px) {

  .startup-service-card h3 {

    font-size: 19px;

    line-height: 1.35;

    margin-bottom: 16px;

  }

  .startup-service-card p {

    font-size: 14.5px;

    line-height: 1.8;

  }

}



/* =========================================
TABLET
========================================= */

@media (max-width: 991px) {

  .startup-service-card h3 {

    font-size: 18px;

    line-height: 1.4;

    letter-spacing: -0.3px;

    margin-bottom: 14px;

  }

  .startup-service-card p {

    font-size: 14px;

    line-height: 1.75;

  }

}



/* =========================================
MOBILE
========================================= */

@media (max-width: 767px) {

  .startup-service-card h3 {

    font-size: 17px;

    line-height: 1.42;

    margin-bottom: 12px;

    letter-spacing: -0.2px;

  }

  .startup-service-card p {

    font-size: 13.5px;

    line-height: 1.7;

  }

}



/* =========================================
SMALL MOBILE
========================================= */

@media (max-width: 575px) {

  .startup-service-card h3 {

    font-size: 16px;

    line-height: 1.45;

    margin-bottom: 10px;

    letter-spacing: 0;

  }

  .startup-service-card p {

    font-size: 13px;

    line-height: 1.65;

  }

}



/* =========================================
EXTRA SMALL DEVICES
========================================= */

@media (max-width: 399px) {

  .startup-service-card h3 {

    font-size: 15px;

    line-height: 1.45;

  }

  .startup-service-card p {

    font-size: 12.5px;

    line-height: 1.6;

  }

}



.startup-roadmap-section {
  padding: 140px 0;
  background: #F7FAFF;
}

.startup-roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;

  margin-top: 70px;
}

.startup-roadmap-card {
  position: relative;

  padding: 40px;

  border-radius: 30px;

  background: #fff;

  border: 1px solid rgba(31, 87, 244, .08);

  text-align: center;

  transition: .35s;
}

.startup-roadmap-card:hover {
  transform: translateY(-8px);
}

.startup-roadmap-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 70px;
  height: 70px;

  border-radius: 50%;

  background: linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255));

  color: #fff;

  font-size: 24px;
  font-weight: 800;

  margin-bottom: 25px;
}

.startup-roadmap-card h4 {
  font-size: 22px;
  font-weight: 700;

  margin-bottom: 16px;

  color: var(--black-2);
}

.startup-roadmap-card p {
  margin: 0;

  line-height: 1.8;

  color: var(--text);
}


.startup-packages-section {
  padding: 140px 0;
  background: #fff;
}

.startup-packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;

  margin-top: 70px;
}

.startup-package-card {
  position: relative;

  padding: 45px;

  border-radius: 36px;

  background: #fff;

  border: 1px solid rgba(31, 87, 244, .08);

  transition: .4s;
}

.startup-package-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 25px 70px rgba(11, 22, 59, .08);
}

.featured-package {
  transform: translateY(-20px);

  border: 2px solid rgba(31, 87, 244, .18);

  box-shadow:
    0 25px 80px rgba(31, 87, 244, .10);
}

.package-badge {
  height: 42px;
  padding: 0 18px;

  border-radius: 50px;

  background: rgba(31, 87, 244, .08);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  font-weight: 800;

  color: var(--theme);
  margin-bottom: 28px;
}

.startup-package-card h3 {
  font-size: 24px;
  font-weight: 800;

  margin-bottom: 16px;

  color: var(--black-2);
}

.startup-package-card p {
  line-height: 1.9;
  color: var(--text);

  margin-bottom: 30px;
}

.startup-package-card ul {
  display: flex;
  flex-direction: column;
  gap: 14px;

  margin: 35px 0;

  padding: 0;

  list-style: none;
}

.startup-package-card ul li {
  min-height: 56px;

  padding: 0 18px;

  border-radius: 18px;

  background:
    rgba(31, 87, 244, .05);

  border:
    1px solid rgba(31, 87, 244, .08);

  display: flex;
  align-items: center;
  gap: 12px;

  font-size: 15px;
  font-weight: 600;

  color: var(--black-2);

  transition: .3s;
}

.startup-package-card ul li::before {
  content: "✓";

  width: 30px;
  height: 30px;

  border-radius: 10px;

  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--theme);

  font-size: 14px;
  font-weight: 900;

  flex-shrink: 0;

  box-shadow:
    0 10px 20px rgba(31, 87, 244, .08);
}

.startup-package-card ul li:hover {
  transform: translateX(5px);

  background:
    rgba(31, 87, 244, .08);
}



/* BUTTON */

.startup-package-btn {
  width: 100%;
  height: 60px;
  margin-top: 15px;
  border-radius: 20px;

  background: linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255));

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  color: #fff;

  font-size: 15px;
  font-weight: 700;

  text-decoration: none;

  transition: .35s;

  box-shadow:
    0 18px 35px rgba(31, 87, 244, .18);
}

.startup-package-btn:hover {
  transform:
    translateY(-4px);

  box-shadow:
    0 24px 45px rgba(31, 87, 244, .24);
}


.startup-cta-section {
  padding: 140px 0;
  background: #F7FAFF;
}

.startup-cta-box {
  position: relative;

  padding: 80px;

  border-radius: 40px;

  overflow: hidden;

  background:
    linear-gradient(135deg,
      #0F172A,
      #111827);

  text-align: center;
}

.startup-cta-box::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(circle at top right,
      rgba(31, 87, 244, .25),
      transparent 40%);
}

.startup-cta-box h2 {
  position: relative;
  z-index: 2;

  font-size: 62px;
  font-weight: 900;

  color: #fff;

  margin-bottom: 24px;
}

.startup-cta-box p {
  position: relative;
  z-index: 2;

  max-width: 760px;

  margin: auto auto 40px;

  line-height: 1.9;

  color: #CBD5E1;
}

.startup-cta-buttons {
  position: relative;
  z-index: 2;

  display: flex;
  justify-content: center;
  gap: 18px;
}



/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes floatCard {

  50% {
    transform: translateY(-14px);
  }

}

@keyframes chartMove {

  50% {
    transform: scaleY(.82);
  }

}

@keyframes screenGlow {

  100% {
    transform: translateX(100%);
  }

}

@media(max-width:1200px) {

  .startup-hero-wrapper,
  .startup-services-grid,
  .startup-roadmap-grid,
  .startup-packages-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media(max-width:991px) {

  .startup-hero-wrapper {
    grid-template-columns: 1fr;
  }

  .startup-services-grid,
  .startup-roadmap-grid,
  .startup-packages-grid,
  .startup-stats-grid {
    grid-template-columns: 1fr;
  }

  .featured-package {
    transform: none;
  }

  .startup-cta-box h2 {
    font-size: 42px;
  }

}

@media(max-width:767px) {

  .startup-launch-section,
  .startup-services-section,
  .startup-roadmap-section,
  .startup-packages-section,
  .startup-cta-section {
    padding: 100px 0;
  }

  .startup-buttons,
  .startup-cta-buttons {
    flex-direction: column;
  }

  .startup-btn {
    width: 100%;
  }

  .startup-main-card {
    padding: 20px;
  }

  .startup-screen {
    padding: 20px;
  }

  .startup-cta-box {
    padding: 50px 30px;
  }

  .startup-cta-box h2 {
    font-size: 34px;
  }

}












.blog-post-details {

  background: #fff;

  border-radius: 24px;

  padding: 35px;

  border: 1px solid rgba(0, 0, 0, .05);

  overflow: hidden;
}



/* IMAGE */

.blog-details-image {

  width: 100%;

  border-radius: 24px;

  overflow: hidden;

  margin-bottom: 35px;
}

.blog-details-image img {

  width: 100%;

  height: 500px;

  object-fit: cover;

  border-radius: 24px;
}



/* META */

.post-meta {

  display: flex;

  align-items: center;

  gap: 14px;

  flex-wrap: wrap;

  margin-bottom: 25px;

  color: #6B7280;

  font-size: 15px;

  font-weight: 500;
}

.post-meta span {

  display: flex;

  align-items: center;

  gap: 8px;
}

.post-meta i {

  color: var(--theme);
}



/* TITLE */

#blogDetailsTitle {

  font-size: 48px;

  line-height: 1.25;

  font-weight: 800;

  color: var(--black-2);

  margin-bottom: 28px;
}



/* DESCRIPTION */

#blogDetailsDesc {

  font-size: 18px;

  line-height: 1.7;

  color: var(--text);

  margin-bottom: 30px;
}



/* CONTENT */

#blogFullContent {

  margin-top: 25px;
}

#blogFullContent p {

  font-size: 18px;

  line-height: 2;

  color: var(--text);

  margin-bottom: 28px;
}



/* BLOCKQUOTE */

.wp-block-quote {

  padding: 40px;

  border-radius: 24px;

  background:
    linear-gradient(135deg,
      rgba(58, 173, 74, .08),
      rgba(39, 37, 112, .08));

  border-left: 5px solid var(--theme);

  margin: 45px 0;
}

.wp-block-quote p {

  font-size: 24px;

  line-height: 1.7;

  font-weight: 600;

  color: var(--black-2);

  margin: 0;
}



/* TAGS */

.tag-share-wrap {

  margin-top: 50px;

  padding-top: 30px;

  border-top: 1px solid rgba(0, 0, 0, .08);
}

.tagcloud {

  gap: 12px;
}

.tagcloud h4 {

  font-size: 18px;

  margin-right: 10px;

  color: var(--black-2);
}

.tagcloud a {

  padding: 10px 18px;

  border-radius: 40px;

  background: #F4F7FB;

  color: var(--black-2);

  font-size: 14px;

  font-weight: 600;

  transition: .3s;
}

.tagcloud a:hover {

  background: var(--theme);

  color: #fff;
}



/* SIDEBAR */

.main-sidebar {

  position: sticky;

  top: 120px;
}



/* SIDEBAR BOX */

.single-sidebar-widget {

  background: #fff;

  border-radius: 24px;

  padding: 30px;

  margin-bottom: 30px;

  border: 1px solid rgba(0, 0, 0, .05);
}



/* SIDEBAR TITLE */

.wid-title {

  margin-bottom: 25px;
}

.wid-title h3 {

  font-size: 28px;

  font-weight: 700;

  color: var(--black-2);
}



/* RECENT POSTS */

.single-post-item {

  display: flex;

  align-items: center;

  gap: 18px;

  margin-bottom: 24px;
}

.single-post-item:last-child {

  margin-bottom: 0;
}



/* THUMB */

.single-post-item .thumb {

  width: 95px;

  min-width: 95px;

  height: 95px;

  border-radius: 18px;

  background-size: contain;

  background-position: center;
}



/* POST DATE */

.single-post-item .post-date {

  font-size: 13px;

  color: #6B7280;

  margin-bottom: 10px;
}



/* POST TITLE */

.single-post-item h5 {

  margin: 0;
}

.single-post-item h5 a {

  font-size: 15px;

  line-height: 1.4;

  font-weight: 700;

  color: var(--black-2);

  transition: .3s;
}

.single-post-item h5 a:hover {

  color: var(--theme);
}



/* CATEGORIES */

.widget_categories ul {

  display: flex;

  flex-direction: column;

  gap: 15px;
}

.widget_categories ul li a {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 16px 20px;

  border-radius: 16px;

  background: #F4F7FB;

  color: var(--black-2);

  font-size: 16px;

  font-weight: 600;

  transition: .3s;
}

.widget_categories ul li a span {

  width: 34px;

  height: 34px;

  border-radius: 50%;

  background: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 13px;
}

.widget_categories ul li a:hover {

  background: var(--theme);

  color: #fff;
}



/* LARGE */

@media(max-width:1399px) {

  #blogDetailsTitle {

    font-size: 42px;
  }

  .blog-details-image img {

    height: 450px;
  }

}



/* LAPTOP */

@media(max-width:1199px) {

  .blog-post-details {

    padding: 28px;
  }

  #blogDetailsTitle {

    font-size: 38px;
  }

  #blogDetailsDesc {

    font-size: 18px;
  }

  .blog-details-image img {

    height: 400px;
  }

}



/* TABLET */

@media(max-width:991px) {

  .main-sidebar {

    position: relative;

    top: 0;

    margin-top: 50px;
  }

  #blogDetailsTitle {

    font-size: 34px;
  }

  .blog-details-image img {

    height: 340px;
  }

}



/* MOBILE */

@media(max-width:767px) {

  .blog-post-details {

    padding: 22px;

    border-radius: 20px;
  }

  .single-sidebar-widget {

    padding: 22px;

    border-radius: 20px;
  }

  .blog-details-image {

    border-radius: 18px;
  }

  .blog-details-image img {

    height: 250px;

    border-radius: 18px;
  }

  #blogDetailsTitle {

    font-size: 28px;

    line-height: 1.4;
  }

  #blogDetailsDesc {

    font-size: 17px;

    line-height: 1.8;
  }

  #blogFullContent p {

    font-size: 16px;

    line-height: 1.9;
  }

  .wp-block-quote {

    padding: 25px;

    border-radius: 18px;
  }

  .wp-block-quote p {

    font-size: 20px;
  }

}



/* SMALL MOBILE */

@media(max-width:575px) {

  #blogDetailsTitle {

    font-size: 24px;
  }

  .blog-details-image img {

    height: 220px;
  }

  .post-meta {

    gap: 10px;

    font-size: 14px;
  }

  .single-post-item {

    gap: 14px;
  }

  .single-post-item .thumb {

    width: 75px;

    min-width: 75px;

    height: 75px;
  }

  .single-post-item h5 a {

    font-size: 15px;
  }

}


.widget-head {

  margin-bottom: 25px;

  overflow: hidden;
}



.widget-head a {

  display: inline-block;

  max-width: 220px;

  width: 100%;
}



.widget-head a img {

  width: 100%;

  max-width: 100%;

  height: auto;

  display: block;

  object-fit: cover;
}



/* TABLET */

@media (max-width: 991px) {

  .widget-head a {

    max-width: 200px;
  }

}



/* MOBILE */

@media (max-width: 767px) {

  .widget-head a {

    max-width: 170px;
  }

}



/* =========================================
   CONTACT SECTION
========================================= */

.sc-contact-card {

  position: relative;

  display: flex;

  align-items: flex-start;

  gap: 20px;

  padding: 20px;

  border-radius: 28px;

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(248, 250, 255, 0.96) 100%);

  border: 1px solid rgba(80, 110, 255, .08);

  overflow: hidden;

  transition: .4s ease;

  height: 100%;
}

.sc-contact-card:hover {

  transform: translateY(-8px);

  box-shadow:
    0 25px 70px rgba(15, 23, 70, 0.08);
}



/* ICON */

.sc-contact-icon {

  min-width: 52px;

  width: 52px;

  height: 52px;

  border-radius: 22px;

  display: flex;

  align-items: center;

  justify-content: center;

  background:
    linear-gradient(135deg,
      var(--theme) 0%,
      var(--theme-2) 100%);

  color: #fff;

  font-size: 20px;

  box-shadow:
    0 12px 30px rgba(59, 173, 74, 0.25);
}



/* CONTENT */

.sc-contact-content span {

  display: inline-block;

  font-size: 14px;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 1px;

  color: var(--theme);

  margin-bottom: 10px;
}

.sc-contact-content h4 {

  font-size: 20px;

  line-height: 1.5;

  font-weight: 600;

  margin-bottom: 8px;
}

.sc-contact-content h4 a {

  color: #0f172a;

  transition: .3s;
}

.sc-contact-content h4 a:hover {

  color: var(--theme);
}

.sc-contact-content p {

  margin-top: 12px;

  font-size: 15px;

  line-height: 1.8;

  color: #64748b;
}



/* MOBILE */

@media(max-width:767px) {

  .sc-contact-card {

    padding: 30px 24px;

    border-radius: 22px;
  }

  .sc-contact-content h4 {

    font-size: 20px;
  }

}



.features-3 .single-feature-item h3 {
  font-size: 16px;
  font-weight: 600;
}

.features-3 .single-feature-item:hover h3 {
  color: #fff;
}


.service-4 .service-inner h3 {
  font-size: 17px;
}

.service-4 .signle-service-item:hover h3 a {
  color: #fff !important;
}

.features-list li {
  line-height: 1.8;
  margin-bottom: 18px;
}


.gallery-wrapper.service-1 .section-description {
  max-width: 750px;
  margin: 10px auto 0;
  font-size: 17px;
  line-height: 1.9;
  color: #5c6574;
  margin-bottom: 50px;
  margin-top: -20px !important;
}

.gallery-wrapper.service-1 .section-description strong {
  color: #272570;
  font-weight: 700;
}





























.blog-1 .section-title p {
  margin-bottom: 60px;
}

.scx-contact-section {
  position: relative;
  overflow: hidden;

  padding: 140px 0;

  background:
    linear-gradient(180deg,
      #F7F9FF 0%,
      #EEF3FF 100%);
}



/* =========================================
BACKGROUND EFFECTS
========================================= */

.scx-contact-blur {
  position: absolute;

  border-radius: 50%;

  filter: blur(120px);

  z-index: 1;
}

.blur-one {
  width: 420px;
  height: 420px;

  top: -150px;
  left: -100px;

  background:
    rgba(59, 173, 74, .10);
}

.blur-two {
  width: 480px;
  height: 480px;

  bottom: -180px;
  right: -120px;

  background:
    rgba(39, 37, 112, .14);
}



/* GRID */

.scx-grid-pattern {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(39, 37, 112, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 37, 112, .03) 1px, transparent 1px);

  background-size: 60px 60px;

  z-index: 1;
}



/* =========================================
HEADER
========================================= */

.scx-contact-heading {
  position: relative;
  z-index: 5;

  max-width: 900px;

  margin: auto auto 80px;
}

.scx-mini-label {
  margin-bottom: 25px;
}


.scx-contact-heading p {
  font-size: 19px;

  line-height: 1.9;

  color: var(--text);
}



/* =========================================
MAIN WRAPPER
========================================= */

.scx-contact-wrapper {
  position: relative;
  z-index: 5;

  display: grid;

  grid-template-columns: 420px 1fr;

  gap: 40px;
}



/* =========================================
LEFT SIDE
========================================= */

.scx-contact-info {
  display: flex;
  flex-direction: column;

  gap: 24px;
}

.scx-info-card {
  padding: 34px;

  border-radius: 30px;

  background: #fff;

  border:
    1px solid rgba(39, 37, 112, .06);

  box-shadow:
    0 20px 60px rgba(11, 22, 59, .05);
}

.scx-icon {
  width: 74px;
  height: 74px;

  border-radius: 24px;

  background: linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255));

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;

  color: #fff;

  margin-bottom: 25px;
}

.scx-info-content span {
  display: block;

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1px;

  color: var(--theme);

  margin-bottom: 14px;
}

.scx-info-content a,
.scx-info-content p {
  display: block;

  font-size: 18px;

  line-height: 1.8;

  font-weight: 600;

  color: var(--header);

  transition: .3s;
}

.scx-info-content a:hover {
  color: var(--theme);
}



/* =========================================
SOCIAL
========================================= */

.scx-social-box {
  padding: 34px;

  border-radius: 30px;

  background: linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255));

  color: #fff;
}

.scx-social-box h5 {
  font-size: 20px;

  margin-bottom: 24px;
  color: #fff;
}

.scx-social-links {
  display: flex;
  align-items: center;

  flex-wrap: wrap;

  gap: 14px;

}

.scx-social-links a {
  width: 58px;
  height: 58px;

  border-radius: 18px;

  background:
    rgba(255, 255, 255, .12);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  font-size: 20px;

  transition: .35s;
}

.scx-social-links a:hover {
  transform:
    translateY(-4px);

  background: #fff;

  color: var(--theme);
}



/* =========================================
FORM AREA
========================================= */

.scx-form-area {
  padding: 50px;

  border-radius: 40px;

  background:
    rgba(255, 255, 255, .75);

  backdrop-filter: blur(20px);

  border:
    1px solid rgba(39, 37, 112, .06);

  box-shadow:
    0 25px 80px rgba(11, 22, 59, .06);
}

.scx-form-top {
  margin-bottom: 40px;
}

.scx-form-top span {
  display: inline-block;

  margin-bottom: 12px;

  color: var(--theme);

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 1px;
}

.scx-form-top h3 {
  font-size: 42px;

  line-height: 1.2;

  font-weight: 800;

  color: var(--header);
}



/* GRID */

.scx-form-grid {
  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 24px;
}

.full-width {
  grid-column: span 2;
}



/* INPUTS */

.scx-input-group label {
  display: block;

  margin-bottom: 12px;

  font-size: 15px;

  font-weight: 700;

  color: var(--header);
}

.scx-input-group input,
.scx-input-group select,
.scx-input-group textarea {
  width: 100%;

  border: none;

  outline: none;

  border-radius: 18px;

  background: #fff;

  padding: 18px 22px;

  font-size: 15px;

  color: var(--header);

  border:
    1px solid rgba(39, 37, 112, .08);

  transition: .35s;
}

.scx-input-group textarea {
  height: 180px;

  resize: none;
}

.scx-input-group input:focus,
.scx-input-group select:focus,
.scx-input-group textarea:focus {
  border-color: var(--theme);

  box-shadow:
    0 0 0 4px rgba(59, 173, 74, .08);
}



/* BUTTON */

.scx-submit-btn {
  margin-top: 34px;

  height: 66px;

  padding: 0 34px;

  border: none;

  border-radius: 20px;

  background: linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255));

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 12px;

  font-size: 16px;

  font-weight: 700;

  color: #fff;

  transition: .35s;
}

.scx-submit-btn:hover {
  transform:
    translateY(-3px);

  box-shadow:
    0 20px 50px rgba(39, 37, 112, .18);
}



/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px) {

  .scx-contact-wrapper {
    grid-template-columns: 1fr;
  }

}



@media(max-width:991px) {

  .scx-contact-section {
    padding: 110px 0;
  }

  .scx-contact-heading h2 {
    font-size: 54px;
  }

  .scx-form-area {
    padding: 40px 30px;
  }

}



@media(max-width:767px) {

  .scx-contact-section {
    padding: 90px 0;
  }

  .scx-contact-heading {
    margin-bottom: 55px;
  }

  .scx-contact-heading h2 {
    font-size: 38px;
  }

  .scx-contact-heading p {
    font-size: 16px;
  }

  .scx-form-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }

  .scx-form-top h3 {
    font-size: 30px;
  }

  .scx-form-area {
    padding: 30px 22px;
    border-radius: 30px;
  }

  .scx-info-card {
    padding: 26px;
  }

}



@media(max-width:575px) {

  .scx-contact-heading h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .scx-mini-label span {
    height: 42px;
    padding: 0 18px;
    font-size: 11px;
  }

  .scx-submit-btn {
    width: 100%;
  }

  .scx-social-links {
    justify-content: center;
  }

}





















/* =========================================
   LIVE PROJECT SECTION
========================================= */
.sc-live-project-section {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background:
    linear-gradient(180deg,
      #f8fbff 0%,
      #f3f6fb 100%);
}



/* =========================================
   CONTAINER
========================================= */

.sc-live-project-section .container {
  position: relative;
  z-index: 2;
}



/* =========================================
   HEADER
========================================= */

.sc-project-header {
  max-width: 900px;
  margin: 0 auto 80px;
}

.sc-project-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;
  padding: 0 24px;

  border-radius: 999px;

  background:
    rgba(39, 37, 112, .06);

  border:
    1px solid rgba(39, 37, 112, .08);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: .8px;
  text-transform: uppercase;

  color: var(--theme);

  margin-bottom: 30px;
}

.sc-project-header h2 {
  font-size: 42px;

  line-height: 1.05;
  letter-spacing: -3px;

  font-weight: 700;

  color: var(--header);

  margin-bottom: 26px;
}

.sc-project-header p {
  max-width: 760px;

  margin: 0 auto;

  font-size: 18px;
  line-height: 1.9;
  font-weight: 500;

  color: #667085;
}



/* =========================================
   PROJECT OVERVIEW
========================================= */

.sc-project-overview {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 24px;

  margin-bottom: 70px;
}

.overview-item {
  padding: 34px;

  border-radius: 28px;

  background: #fff;

  border:
    1px solid rgba(15, 23, 42, .05);

  box-shadow:
    0 15px 40px rgba(15, 23, 42, .04);
}

.overview-item span {

  display: block;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: .8px;
  text-transform: uppercase;

  margin-bottom: 14px;

  background: linear-gradient(135deg,
      rgb(47, 107, 255),
      rgb(110, 168, 255));

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.overview-item h5 {
  font-size: 24px;
  line-height: 1.4;

  font-weight: 700;

  color: var(--header);

  margin: 0;
}



/* =========================================
   LIVE PREVIEW
========================================= */

.sc-live-preview-wrapper {
  position: relative;

  overflow: hidden;

  border-radius: 38px;

  background: #fff;

  border:
    1px solid rgba(15, 23, 42, .05);

  box-shadow:
    0 30px 90px rgba(15, 23, 42, .08);

  margin-bottom: 80px;
}



/* TOPBAR */

.sc-preview-topbar {
  height: 88px;

  padding: 0 32px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 24px;

  border-bottom:
    1px solid rgba(15, 23, 42, .05);

  background:
    rgba(255, 255, 255, .92);
}



/* BROWSER DOTS */

.browser-action {
  display: flex;
  align-items: center;

  gap: 10px;
}

.browser-action span {
  width: 13px;
  height: 13px;

  border-radius: 50%;

  background:
    rgba(39, 37, 112, .18);
}



/* URL */

.browser-url {
  flex: 1;

  height: 56px;

  padding: 0 26px;

  border-radius: 16px;

  background:
    rgba(15, 23, 42, .04);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 600;

  color: #667085;

  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}



/* BUTTON */

.visit-btn {
  height: 56px;

  padding: 0 28px;

  border-radius: 16px;

  background: linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255));

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  font-size: 15px;
  font-weight: 700;

  color: #fff;

  transition: .35s ease;
}

.visit-btn:hover {
  color: #fff;

  transform:
    translateY(-2px);
}



/* =========================================
   PREVIEW FRAME
========================================= */
.sc-preview-frame {
  position: relative;

  padding: 18px;
}

.preview-scroll-area {
  position: relative;

  height: 650px;

  overflow: hidden;

  border-radius: 24px;

  border:
    1px solid rgba(15, 23, 42, .05);

  background: #fff;
}



/* IMAGE */

.preview-scroll-area img {
  width: 100%;

  display: block;

  transition:
    transform 10s linear;

  transform:
    translateY(0);
}

.sc-live-preview-wrapper:hover .preview-scroll-area img {

  transform:
    translateY(-65%);
}



.sc-device-switcher {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 14px;

  margin-top: 28px;
}

.device-btn {
  width: 58px;
  height: 58px;

  border: 1px solid rgba(15, 23, 42, .06);

  border-radius: 18px;

  background: #fff;

  color: var(--header);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;

  cursor: pointer;

  transition: .35s ease;

  box-shadow:
    0 10px 25px rgba(15, 23, 42, .04);
}

.device-btn:hover {
  transform:
    translateY(-3px);

  border-color:
    rgba(39, 37, 112, .12);
}

.device-btn.active {
  background: linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255));


  border-color: transparent;

  color: #fff;

  box-shadow:
    0 15px 35px rgba(39, 37, 112, .18);
}



/* =========================================
   PREVIEW FRAME
========================================= */

.sc-preview-frame {
  position: relative;

  padding: 24px;
}



/* =========================================
   ALL DEVICES
========================================= */

.preview-scroll-area {
  display: none;

  overflow: hidden;

  border-radius: 28px;

  border:
    1px solid rgba(15, 23, 42, .06);

  background: #fff;

  margin-inline: auto;

  box-shadow:
    0 15px 45px rgba(15, 23, 42, .05);

  transition: .4s ease;
}

.preview-scroll-area iframe {
  width: 100%;
  height: 100%;

  border: none;

  display: block;

  background: #fff;
}



/* =========================================
   ACTIVE DEVICE
========================================= */

.preview-scroll-area.active-device {
  display: block;

  animation:
    previewFade .4s ease;
}

@keyframes previewFade {

  from {
    opacity: 0;

    transform:
      translateY(10px);
  }

  to {
    opacity: 1;

    transform:
      translateY(0);
  }

}



/* =========================================
   DESKTOP VIEW
========================================= */

.desktop-view {
  width: 100%;

  height: 760px;
}



/* =========================================
   TABLET VIEW
========================================= */

.tablet-view {
  width: 820px;

  max-width: 100%;

  height: 720px;
}



/* =========================================
   MOBILE VIEW
========================================= */

.mobile-view {
  width: 390px;

  max-width: 100%;

  height: 720px;
}



/* =========================================
   MOBILE FALLBACK IMAGE
========================================= */

.mobile-preview-image {
  display: none;

  overflow: hidden;

  border-radius: 24px;

  border:
    1px solid rgba(15, 23, 42, .06);

  background: #fff;

  box-shadow:
    0 15px 45px rgba(15, 23, 42, .05);
}

.mobile-preview-image img {
  width: 100%;

  display: block;

  object-fit: cover;

  object-position: top;
}



/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px) {

  .desktop-view {
    height: 620px;
  }

  .tablet-view {
    width: 100%;

    height: 620px;
  }

  .mobile-view {
    width: 360px;

    height: 620px;
  }

}



@media(max-width:767px) {

  .sc-preview-frame {
    padding: 16px;
  }

  .preview-scroll-area {
    display: none !important;
  }

  .mobile-preview-image {
    display: block;
  }

  .sc-preview-topbar {
    flex-wrap: wrap;

    height: auto;

    padding: 18px;

    gap: 14px;
  }

  .browser-url,
  .visit-btn {
    width: 100%;
  }

  .sc-device-switcher {
    display: none;
  }

}


/* HOVER SCROLL EFFECT */

.sc-live-preview-wrapper:hover .preview-scroll-area img {

  transform:
    translateY(calc(-100% + 850px));

}

/* =========================================
   CASE STUDY GRID
========================================= */

.sc-case-study-grid {
  display: grid;

  grid-template-columns:
    repeat(2, 1fr);

  gap: 28px;

  margin-bottom: 90px;
}



/* CASE STUDY CARD */

.sc-case-study-card {
  padding: 42px;

  border-radius: 30px;

  background: #fff;

  border:
    1px solid rgba(15, 23, 42, .05);

  box-shadow:
    0 15px 45px rgba(15, 23, 42, .04);
}

.sc-case-study-card span {

  display: inline-block;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: .8px;
  text-transform: uppercase;

  margin-bottom: 18px;

  background: linear-gradient(135deg,
      rgb(47, 107, 255),
      rgb(110, 168, 255));

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.sc-case-study-card h3 {
  font-size: 34px;
  line-height: 1.2;
  font-weight: 700;
  color: var(--header);
  margin-bottom: 20px;
  letter-spacing: -0.8px;
}

.sc-case-study-card p {
  font-size: 17px;
  line-height: 1.9;
  color: #667085;
  margin: 0;
}



/* =========================================================
LARGE DESKTOP
========================================================= */

@media (max-width: 1399px) {

  .sc-case-study-card h3 {
    font-size: 31px;
    line-height: 1.25;
  }

  .sc-case-study-card p {
    font-size: 16px;
    line-height: 1.85;
  }

}



/* =========================================================
DESKTOP / LAPTOP
========================================================= */

@media (max-width: 1199px) {

  .sc-case-study-card h3 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 18px;
  }

  .sc-case-study-card p {
    font-size: 16px;
    line-height: 1.8;
  }

}



/* =========================================================
TABLET
========================================================= */

@media (max-width: 991px) {

  .sc-case-study-card h3 {
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .sc-case-study-card p {
    font-size: 15.5px;
    line-height: 1.75;
  }

}



/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

  .sc-case-study-card h3 {
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 15px;
    letter-spacing: -0.4px;
  }

  .sc-case-study-card p {
    font-size: 15px;
    line-height: 1.7;
  }

}



/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

  .sc-case-study-card h3 {
    font-size: 20px;
    line-height: 1.4;
  }

  .sc-case-study-card p {
    font-size: 14px;
    line-height: 1.65;
  }

}



/* =========================================================
EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 399px) {

  .sc-case-study-card h3 {
    font-size: 18px;
    line-height: 1.4;
  }

  .sc-case-study-card p {
    font-size: 13.5px;
    line-height: 1.6;
  }

}

.sc-features-heading {
  margin-bottom: 20px;
}

.sc-features-heading span {

  display: inline-block;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 0.8px;
  text-transform: uppercase;

  margin-bottom: 18px;

  background: linear-gradient(135deg,
      rgb(47, 107, 255),
      rgb(110, 168, 255));

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}


.sc-features-heading h3 {
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: -2px;
  font-weight: 700;
  color: var(--header);
  margin: 0;
}



/* =========================================================
LARGE DESKTOP
========================================================= */

@media (max-width: 1399px) {

  .sc-features-heading h3 {
    font-size: 38px;
    line-height: 1.12;
    letter-spacing: -1.7px;
  }

}



/* =========================================================
DESKTOP / LAPTOP
========================================================= */

@media (max-width: 1199px) {

  .sc-features-heading h3 {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -1.4px;
  }

}



/* =========================================================
TABLET
========================================================= */

@media (max-width: 991px) {

  .sc-features-heading h3 {
    font-size: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
  }

}



/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

  .sc-features-heading h3 {
    font-size: 26px;
    line-height: 1.28;
    letter-spacing: -0.7px;
  }

}



/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

  .sc-features-heading h3 {
    font-size: 22px;
    line-height: 1.35;
    letter-spacing: -0.5px;
  }

}



/* =========================================================
EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 399px) {

  .sc-features-heading h3 {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: -0.3px;
  }

}



/* =========================================
   HIGHLIGHT CARD
========================================= */

.sc-highlight-card {
  height: 100%;

  padding: 40px;

  border-radius: 30px;

  background: #fff;

  border:
    1px solid rgba(15, 23, 42, .05);

  transition: .35s ease;

  box-shadow:
    0 15px 45px rgba(15, 23, 42, .04);
}

.sc-highlight-card:hover {
  transform:
    translateY(-6px);

  box-shadow:
    0 25px 70px rgba(15, 23, 42, .08);
}

.sc-highlight-card .icon {
  width: 78px;
  height: 78px;
  border-radius: 24px;

  background: linear-gradient(135deg,
      rgb(47, 107, 255),
      rgb(110, 168, 255));

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 30px;
  color: #fff;

  margin-bottom: 28px;

  box-shadow:
    0 18px 40px rgba(47, 107, 255, .18);
}

.sc-highlight-card h4 {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
  color: var(--header);
  margin-bottom: 18px;
  letter-spacing: -0.4px;
}

.sc-highlight-card p {
  font-size: 16px;
  line-height: 1.9;
  color: #667085;
  margin: 0;
}



/* =========================================================
LARGE DESKTOP
========================================================= */

@media (max-width: 1399px) {

  .sc-highlight-card .icon {
    width: 72px;
    height: 72px;
    font-size: 28px;
    border-radius: 22px;
    margin-bottom: 24px;
  }

  .sc-highlight-card h4 {
    font-size: 22px;
  }

  .sc-highlight-card p {
    line-height: 1.85;
  }

}



/* =========================================================
DESKTOP / LAPTOP
========================================================= */

@media (max-width: 1199px) {

  .sc-highlight-card .icon {
    width: 68px;
    height: 68px;
    font-size: 26px;
    border-radius: 20px;
    margin-bottom: 22px;
  }

  .sc-highlight-card h4 {
    font-size: 21px;
    line-height: 1.35;
    margin-bottom: 16px;
  }

  .sc-highlight-card p {
    font-size: 15.5px;
    line-height: 1.8;
  }

}



/* =========================================================
TABLET
========================================================= */

@media (max-width: 991px) {

  .sc-highlight-card .icon {
    width: 62px;
    height: 62px;
    font-size: 24px;
    border-radius: 18px;
    margin-bottom: 20px;
  }

  .sc-highlight-card h4 {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 15px;
  }

  .sc-highlight-card p {
    font-size: 15px;
    line-height: 1.75;
  }

}



/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

  .sc-highlight-card .icon {
    width: 58px;
    height: 58px;
    font-size: 22px;
    border-radius: 16px;
    margin-bottom: 18px;
  }

  .sc-highlight-card h4 {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 14px;
    letter-spacing: -0.2px;
  }

  .sc-highlight-card p {
    font-size: 14.5px;
    line-height: 1.7;
  }

}



/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

  .sc-highlight-card .icon {
    width: 54px;
    height: 54px;
    font-size: 20px;
    border-radius: 14px;
    margin-bottom: 16px;
  }

  .sc-highlight-card h4 {
    font-size: 17px;
    line-height: 1.4;
  }

  .sc-highlight-card p {
    font-size: 14px;
    line-height: 1.65;
  }

}



/* =========================================================
EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 399px) {

  .sc-highlight-card .icon {
    width: 50px;
    height: 50px;
    font-size: 18px;
    border-radius: 12px;
  }

  .sc-highlight-card h4 {
    font-size: 16px;
  }

  .sc-highlight-card p {
    font-size: 13.5px;
    line-height: 1.6;
  }

}



/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:991px) {

  .sc-live-project-section {
    padding: 100px 0;
  }

  .sc-project-header {
    margin-bottom: 60px;
  }

  .sc-project-overview,
  .sc-case-study-grid {
    grid-template-columns: 1fr;
  }

  .sc-project-header h2 {
    letter-spacing: -2px;
  }

}



@media(max-width:767px) {

  .sc-live-project-section {
    padding: 80px 0;
  }



  .sc-project-header p {
    font-size: 16px;
  }

  .overview-item,
  .sc-case-study-card,
  .sc-highlight-card {
    padding: 30px;
  }

  .overview-item h5 {
    font-size: 18px;
  }


  .sc-preview-topbar {
    flex-direction: column;

    height: auto;

    padding: 22px;

    gap: 18px;
  }

  .browser-url,
  .visit-btn {
    width: 100%;
  }

  .sc-preview-frame {
    padding: 18px;
  }

}












.sc-home-projects-grid {

  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 28px;
}



/* ITEM */

.sc-home-project-item {
  width: 100%;
}



/* PROJECT CARD */

.sc-home-project {
  position: relative;

  overflow: hidden;

  border-radius: 26px;

  background: #fff;

  transition:
    transform .4s ease,
    box-shadow .4s ease;

  box-shadow:
    0 12px 40px rgba(15, 23, 42, .06);
}

.sc-home-project:hover {

  transform:
    translateY(-10px);

  box-shadow:
    0 30px 70px rgba(15, 23, 42, .12);
}


.sc-home-project-image {
  display: block;
  position: relative;
  overflow: hidden;
  height: 260px;
  background: #f4f7fb;
  border-radius: 16px;
}

.sc-home-project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 6s ease;
}



/* =========================================================
LARGE DESKTOP
========================================================= */

@media (max-width: 1399px) {

  .sc-home-project-image {
    height: 240px;
  }

}



/* =========================================================
DESKTOP / LAPTOP
========================================================= */

@media (max-width: 1199px) {

  .sc-home-project-image {
    height: 220px;
  }

}



/* =========================================================
TABLET
========================================================= */

@media (max-width: 991px) {

  .sc-home-project-image {
    height: 260px;
  }

}



/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

  .sc-home-project-image {
    height: 230px;
    border-radius: 14px;
  }

}



/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

  .sc-home-project-image {
    height: 200px;
    border-radius: 12px;
  }

}



/* =========================================================
EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 399px) {

  .sc-home-project-image {
    height: 180px;
  }

}


/* HOVER EFFECT */

.sc-home-project:hover img {

  transform:
    translateY(-12%);
}



/* CONTENT */

.sc-home-project-content {

  padding: 24px;
}

.sc-home-project-content span {

  display: inline-block;

  font-size: 13px;
  font-weight: 700;

  letter-spacing: .5px;

  text-transform: uppercase;

  color: var(--theme);

  margin-bottom: 12px;
}

.sc-home-project-content h3 {

  font-size: 24px;

  line-height: 1.3;

  font-weight: 700;

  margin: 0;
}

.sc-home-project-content h3 a {

  color: var(--header);

  transition: .3s ease;
}

.sc-home-project:hover h3 a {

  color: var(--theme);
}



/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:991px) {

  .sc-home-projects-grid {

    grid-template-columns:
      repeat(2, 1fr);
  }

}



@media(max-width:767px) {

  .sc-home-projects-grid {

    grid-template-columns: 1fr;

    gap: 22px;
  }



  .sc-home-project-content {

    padding: 20px;
  }

  .sc-home-project-content h3 {

    font-size: 20px;
  }

}




















/* =========================================
SWEET ALERT CUSTOM STYLE
========================================= */

.sc-swal-popup {

  border-radius: 30px !important;

  padding: 35px 25px !important;
}



/* TITLE */

.swal2-title {

  font-size: 32px !important;

  font-weight: 800 !important;

  color: var(--header) !important;

  padding-bottom: 10px !important;
}



/* INPUTS */

.swal2-input,
.swal2-textarea {

  width: 100% !important;

  border:
    1px solid rgba(15, 23, 42, .08) !important;

  background:
    #f7f9fc !important;

  border-radius: 18px !important;

  font-size: 15px !important;

  color:
    var(--header) !important;

  box-shadow: none !important;

  margin:
    14px 0 !important;
}

.swal2-input {

  height: 58px !important;
}

.swal2-textarea {

  height: 140px !important;

  resize: none !important;
}



/* BUTTON */

.swal2-confirm {

  height: 56px !important;

  padding:
    0 28px !important;

  border-radius:
    16px !important;

  font-size:
    15px !important;

  font-weight:
    700 !important;

  box-shadow:
    0 12px 30px rgba(59, 173, 74, .22) !important;
}

.swal2-cancel {

  height: 56px !important;

  padding:
    0 24px !important;

  border-radius:
    16px !important;

  font-size:
    15px !important;

  font-weight:
    600 !important;
}



/* MOBILE */

@media(max-width:767px) {

  .swal2-title {

    font-size: 24px !important;
  }

  .sc-swal-popup {

    padding:
      28px 18px !important;
  }

}














.sc-client-voices {
  position: relative;

  overflow: hidden;

  padding: 140px 0;

  background:
    linear-gradient(180deg,
      #f8fbff 0%,
      #edf3ff 50%,
      #f4f7ff 100%);
}


.client-voices-blur {
  position: absolute;

  border-radius: 50%;

  filter: blur(160px);

  pointer-events: none;

  opacity: .9;
}

.blur-left {
  width: 480px;
  height: 480px;

  background:
    rgba(31, 87, 244, .12);

  top: -180px;
  left: -120px;
}

.blur-right {
  width: 450px;
  height: 450px;

  background:
    rgba(23, 63, 165, .12);

  bottom: -180px;
  right: -120px;
}



/* =========================================
TOP
========================================= */



.client-voices-stage {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 620px;

  perspective: 2200px;
}


.client-voice-card {
  position: absolute;

  width: 400px;

  padding: 40px;

  border-radius: 34px;

  background:
    rgba(255, 255, 255, .72);

  backdrop-filter: blur(18px);

  border:
    1px solid rgba(255, 255, 255, .55);

  box-shadow:
    0 25px 80px rgba(2, 8, 66, .08);

  transition:
    .7s cubic-bezier(.19, 1, .22, 1);

  overflow: hidden;
}

.voice-glow {
  position: absolute;

  inset: 0;

  background:
    radial-gradient(circle at top right,
      rgba(31, 87, 244, .14),
      transparent 60%);
}

.voice-quote {
  position: relative;

  z-index: 2;

  width: 66px;
  height: 66px;

  border-radius: 20px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 30px;

  background: linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255));

  color: #fff;

  font-size: 22px;

  box-shadow:
    0 14px 35px rgba(31, 87, 244, .22);
}

.voice-content {
  position: relative;

  z-index: 2;
}

.voice-content p {

  font-size: 17px;

  line-height: 1.9;

  font-weight: 500;

  color: #49515B;

  margin-bottom: 34px;
}

.voice-bottom {
  position: relative;

  z-index: 2;

  display: flex;
  align-items: center;

  gap: 16px;
}

.voice-logo {
  width: 68px;
  height: 68px;

  border-radius: 20px;

  overflow: hidden;

  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 10px 25px rgba(2, 8, 66, .06);
}

.voice-logo img {

  width: 100%;
  height: 100%;

  object-fit: contain;

}

.voice-info h4 {

  font-size: 20px;

  font-weight: 700;

  margin-bottom: 4px;

  color: var(--black-2);
}

.voice-info span {

  font-size: 14px;

  color: #7b8494;
}

.active-card {

  z-index: 5;

  transform:
    translateY(-35px) scale(1.05);

  animation:
    activeFloat 6s ease-in-out infinite;
}

.left-card {

  left: 6%;

  z-index: 1;

  opacity: .72;

  transform:
    rotateY(16deg) rotateZ(-6deg) scale(.88);

  filter: blur(1px);
}

.right-card {

  right: 6%;

  z-index: 1;

  opacity: .72;

  transform:
    rotateY(-16deg) rotateZ(6deg) scale(.88);

  filter: blur(1px);
}

.client-voices-stage:hover .left-card {

  opacity: 1;

  filter: blur(0);

  transform:
    translateX(-40px) rotateY(8deg) rotateZ(-4deg) scale(.93);
}

.client-voices-stage:hover .right-card {

  opacity: 1;

  filter: blur(0);

  transform:
    translateX(40px) rotateY(-8deg) rotateZ(4deg) scale(.93);
}

.client-voices-stage:hover .active-card {

  transform:
    translateY(-60px) scale(1.08);

  box-shadow:
    0 45px 120px rgba(2, 8, 66, .12);
}



/* =========================================
STATS
========================================= */

.client-floating-stats {
  display: flex;
  align-items: center;
  justify-content: center;

  flex-wrap: wrap;

  gap: 22px;

  margin-top: 80px;
}

.client-voices-top p {
  margin-bottom: 75px;
}

.floating-stat {
  min-width: 210px;

  padding: 32px 26px;

  text-align: center;

  border-radius: 26px;

  background:
    rgba(255, 255, 255, .72);

  backdrop-filter: blur(18px);

  border:
    1px solid rgba(255, 255, 255, .55);

  box-shadow:
    0 18px 45px rgba(2, 8, 66, .05);

  transition: .35s ease;
}

.floating-stat:hover {

  transform:
    translateY(-8px);

  box-shadow:
    0 24px 55px rgba(2, 8, 66, .08);
}

.floating-stat h3 {

  font-size: 38px;

  font-weight: 800;

  line-height: 1;

  margin-bottom: 10px;

  color: var(--theme-2);

}

.floating-stat span {

  font-size: 15px;

  font-weight: 600;

  color: #667085;
}



/* =========================================
ANIMATION
========================================= */

@keyframes activeFloat {

  0%,
  100% {

    transform:
      translateY(-35px) scale(1.05);
  }

  50% {

    transform:
      translateY(-52px) scale(1.06);
  }
}



/* =========================================
RESPONSIVE
========================================= */

@media(max-width:991px) {

  .sc-client-voices {
    padding: 110px 0;
  }

  .client-voices-stage {

    flex-direction: column;

    min-height: auto;

    gap: 35px;
  }

  .client-voice-card {

    position: relative;

    width: 100%;
    max-width: 550px;

    left: auto !important;
    right: auto !important;

    opacity: 1 !important;

    filter: none !important;

    transform: none !important;

    animation: none !important;
  }

}



@media(max-width:767px) {

  .sc-client-voices {
    padding: 90px 0;
  }

  .client-voices-top {
    margin-bottom: 60px;
  }

  .client-voices-top h2 {

    letter-spacing: -1px;

    line-height: 1.1;
  }

  .client-voices-top p {

    font-size: 16px;
  }

  .client-voice-card {

    padding: 30px;

    border-radius: 26px;
  }

  .voice-content p {

    font-size: 16px;
  }

  .floating-stat {

    width: 100%;
  }

}

.hero-content .text {
  max-width: 620px;
}

.video-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(8 19 124 / 30%);
  z-index: 1;
}

.video-background video {
  position: relative;
  z-index: 0;
}











.hero-content h1 {
  font-size: 57px;
  line-height: 1.08;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -1.8px;
  text-transform: uppercase;
  animation: fadeUp 1s ease;
}

.hero-content .text {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin-bottom: 35px;
}

.hero-content .text strong {
  color: #fff;
  font-weight: 700;
}




.section-title h2,
.sc-project-header h2 {
  color: var(--black-2);
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -1px;
  text-transform: none;
  margin-bottom: 0;
}

@media (max-width: 1399px) {

  .hero-content h1 {
    font-size: 52px;
    line-height: 1.1;
    letter-spacing: -1.5px;
  }

  .hero-content .text {
    font-size: 17px;
    max-width: 680px;
  }

  .section-title h2,
  .sc-project-header h2 {
    font-size: 34px;
    line-height: 1.25;
    letter-spacing: -0.8px;
  }

}

@media (max-width: 1199px) {

  .hero-content h1 {
    font-size: 46px;
    line-height: 1.12;
    letter-spacing: -1.2px;
  }

  .hero-content .text {
    font-size: 17px;
    line-height: 1.8;
    max-width: 620px;
  }

  .section-title h2,
  .sc-project-header h2 {
    font-size: 34px;
    line-height: 1.3;
    letter-spacing: -0.6px;
  }

}

@media (max-width: 991px) {

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: 40px;
    line-height: 1.18;
    letter-spacing: -1px;
    margin-bottom: 20px;
  }

  .hero-content .text {
    font-size: 16px;
    line-height: 1.75;
    max-width: 100%;
    margin-inline: auto;
    margin-bottom: 30px;
  }


  .section-title h2,
  .sc-project-header h2 {
    font-size: 32px;
    line-height: 1.35;
    letter-spacing: -0.4px;
  }

}

@media (max-width: 767px) {

  .hero-content h1 {
    font-size: 32px;
    line-height: 1.22;
    letter-spacing: -0.7px;
    margin-bottom: 18px;
  }



  .hero-content .text {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
  }



  .section-title h2,
  .sc-project-header h2 {
    font-size: 28px;
    line-height: 1.4;
    letter-spacing: 0;
  }

  .about-3 .about-images .experience p {
    font-size: 16px;
    line-height: 1.5;
  }

}

@media (max-width: 575px) {

  .hero-content h1 {
    font-size: 35px;
    line-height: 1.28;
    letter-spacing: -0.5px;
    margin-inline: auto;
  }

  .hero-content .text {
    font-size: 14px;
    line-height: 1.65;
  }

  .section-title h2,
  .sc-project-header h2 {
    font-size: 22px;
    line-height: 1.4;
  }

}

@media (max-width: 409px) {

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.3;
    margin-inline: auto;
  }

}

@media (max-width: 383px) {

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero-content .text {
    font-size: 13.5px;
    line-height: 1.6;
  }

  .section-title h2,
  .sc-project-header h2 {
    font-size: 21px;
  }

}


.cta-wrapper.style-2 .cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-wrapper.style-2 .icon {
  flex-shrink: 0;
}

.cta-wrapper.style-2 .icon i {
  font-size: 70px;
  line-height: 1;
}

.cta-wrapper.style-2 .title {
  flex: 1;
}

.cta-wrapper.style-2 .title h3 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 18px;
}

.cta-wrapper.style-2 .title p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 0;
  max-width: 720px;
}

.cta-wrapper.style-2 .theme-btn {
  flex-shrink: 0;
}



/* =========================================================
LARGE DESKTOP
========================================================= */

@media (max-width: 1399px) {

  .cta-wrapper.style-2 .title h3 {
    font-size: 38px;
  }

}



/* =========================================================
DESKTOP
========================================================= */

@media (max-width: 1199px) {

  .cta-wrapper.style-2 .cta-inner {
    gap: 30px;
  }

  .cta-wrapper.style-2 .icon i {
    font-size: 60px;
  }

  .cta-wrapper.style-2 .title h3 {
    font-size: 25px;
    line-height: 1.25;
  }

  .cta-wrapper.style-2 .title p {
    font-size: 16px;
    line-height: 1.75;
  }

}



/* =========================================================
TABLET
========================================================= */

@media (max-width: 991px) {

  .cta-wrapper.style-2 .cta-inner {
    flex-direction: column;
    text-align: center;

    gap: 25px;
    padding: 50px 40px;
  }

  .cta-wrapper.style-2 .icon i {
    font-size: 55px;
  }

  .cta-wrapper.style-2 .title h3 {
    font-size: 30px;
    line-height: 1.3;
  }

  .cta-wrapper.style-2 .title p {
    font-size: 16px;
    line-height: 1.7;
    max-width: 100%;
  }

}



/* =========================================================
MOBILE
========================================================= */

@media (max-width: 767px) {

  .cta-wrapper.style-2 .cta-inner {
    padding: 40px 25px;
    gap: 22px;
  }

  .cta-wrapper.style-2 .icon i {
    font-size: 48px;
  }

  .cta-wrapper.style-2 .title h3 {
    font-size: 26px;
    line-height: 1.35;
  }

  .cta-wrapper.style-2 .title h3 br {
    display: none;
  }

  .cta-wrapper.style-2 .title p {
    font-size: 15px;
    line-height: 1.7;
  }

  .cta-wrapper.style-2 .theme-btn {
    width: 100%;
    justify-content: center;
  }

}



/* =========================================================
SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

  .cta-wrapper.style-2 .cta-inner {
    padding: 35px 20px;
  }

  .cta-wrapper.style-2 .icon i {
    font-size: 42px;
  }

  .cta-wrapper.style-2 .title h3 {
    font-size: 22px;
    line-height: 1.4;
  }

  .cta-wrapper.style-2 .title p {
    font-size: 14px;
    line-height: 1.65;
  }

}



/* =========================================================
EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 399px) {

  .cta-wrapper.style-2 .title h3 {
    font-size: 20px;
  }

  .cta-wrapper.style-2 .title p {
    font-size: 13.5px;
  }

}



.hosting-solution-btn {

  width: 100%;

  height: 56px;

  border: none;

  border-radius: 18px;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  margin-top: 28px;

  background:
    linear-gradient(135deg, rgb(47, 107, 255), rgb(110, 168, 255));

  color: #fff;

  font-size: 15px;

  font-weight: 700;

  transition: .35s ease;

}

.hosting-solution-btn:hover {

  transform:
    translateY(-4px);

  color: #fff;

  box-shadow:
    0 18px 40px rgba(31, 87, 244, .22);

}

.hosting-solution-btn i {

  font-size: 13px;

  transition: .3s ease;

}

.hosting-solution-btn:hover i {

  transform:
    translateX(4px);

}

.offcanvas__logo {

    display: flex;

    align-items: center;

    max-width: 230px;

}

.offcanvas__logo a {

    display: inline-flex;

    align-items: center;

}

.offcanvas__logo img {

    width: 100%;

    max-width: 200px;

    height: auto;

    object-fit: contain;

}



/* =========================================
TABLET
========================================= */

@media (max-width: 991px) {

    .offcanvas__logo {

        max-width: 180px;

    }

    .offcanvas__logo img {

        max-width: 180px;

    }

}



/* =========================================
MOBILE
========================================= */

@media (max-width: 767px) {

    .offcanvas__logo {

        max-width: 150px;

    }

    .offcanvas__logo img {

        max-width: 150px;

    }

}



/* =========================================
SMALL MOBILE
========================================= */

@media (max-width: 575px) {

    .offcanvas__logo {

        max-width: 135px;

    }

    .offcanvas__logo img {

        max-width: 135px;

    }

}

.seo-connect-btn {

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    width: 100%;
    max-width: 320px;

    height: 58px;

    border: none;
    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );

    color: #fff;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(37,99,235,0.25);

}

.seo-connect-btn:hover {

    transform: translateY(-2px);

    box-shadow:
        0 15px 35px rgba(37,99,235,0.35);

}

.seo-connect-btn i {

    font-size: 18px;

}

.status-dot {

    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: rgba(255,255,255,0.7);

    transition: 0.3s ease;

}

.seo-connect-btn.connected {

    background: linear-gradient(
        135deg,
        #10b981,
        #059669
    );

    cursor: default;

    pointer-events: none;

    box-shadow:
        0 10px 30px rgba(16,185,129,0.25);

}

.seo-connect-btn.connected .status-dot {

    background: #fff;

    box-shadow:
        0 0 10px rgba(255,255,255,0.9);

}

.seo-connect-btn.connected:hover {

    transform: none;

}