@import url('https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&family=Jost:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --body: #fff;
  --black: #000;
  --black-2: #171717;
  --white: #fff;
  --stick-white: #fff;
  --white-2: #EAF0FF;
  --white-3: rgba(255, 255, 255, 0.75);
  --white-4: #ebebeb;
  --theme: #FF6600;
  --theme-2: #FC5A0A;
  --theme-3: #393939;
  --theme-4: #A347FF;
  --header: #181818;
  --header-1: #181818;
  --base: #C7D31C;
  --text: #1E1E1E;
  --text-2: #6b7280;
  --border: #eef0f3;
  --border-2: rgba(4, 11, 41, 0.17);
  --ratting: #F8BC26;
  --bg: #F3F8FF;
  --section-bg: #ffe9de;
  ---box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
  --card-bg: #171717;
  --card-text: #ededed;
  --service-bg: #171717;
  --service-text:#171717;
  --ranking-bg: #e5e5e5;
  --white-s: #fff;
  --black-s: #171717;
  --sticky-bg: #eaeef0;
}
html[data-theme="dark"] {
  --body: #171717;
  --stick-white: #fff;
  --card-text: #171717;
  --card-bg: #ededed;
  --black: #fafafa;
  --black-2: #ffffff;
  --white: #171717;
  --section-bg: #171717;
  --white-2: #EAF0FF;
  --white-3: rgba(255, 255, 255, 0.75);
  --white-4: #242424;
  --theme: #FF6600;
  --theme-2: #FC5A0A;
  --theme-3: #393939;
  --theme-4: #A347FF;
  --header-1: #181818;
  --header: #ffffff;
  --base: #C7D31C;
  --text: #ffffff;
  --text-2: #6b7280;
  --border: #eef0f3;
  --border-2: rgba(4, 11, 41, 0.17);
  --ratting: #F8BC26;
  --bg: #F3F8FF;
  ---box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
  --service-bg: #171717;
  --service-text:#171717;
  --ranking-bg: #242424;
  --white-s: #fff;
  --black-s: #171717;
  --sticky-bg: #0e0e0e;
}

.theme-btn {
  position: relative;
  z-index: 2;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: capitalize;
  text-align: center;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  color: var(--stick-white);
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  padding: 18px 20px;
  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(84deg, var(--theme) 0%, var(--theme-4) 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(--black-2);
  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(--white);
}

/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text);
  background-color: var(--body);
  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 30px;
}

@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: "Poppins", sans-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%;
}

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

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

p {
  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;
}



.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: -16px;
  margin-top: -16px;
  width: 40px;
  height: 40px;
  border: 3px 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: var(--card-bg);
  margin-bottom: 15px;
  border-radius: 4px;
}

.section-title .sub-title.sub-title2 {
  background: var(--card-bg);
}

.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: var(--white);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-transform: uppercase;
}

.section-title h2 {
  color: var(--black-2);
  font-size: 30px;
  font-weight: 700;
  line-height: 45px;
  /* letter-spacing: ; */
  text-transform: none;
  margin-bottom: 10px;
}

.section-title p {
  font-size: 18px;
}

@media (max-width: 767px) {
  .section-title h2 {
    font-size: 38px;
  }
}

@media (max-width: 575px) {
  .section-title h2 {
    font-size: 25px;
    line-height: 40px;
  }
}

.section-title h2 span {
  /* color: #ffffff;
  background: #393939;
  padding: 0 10px;
  border-radius: 10px; */
  font-weight: 300;
  font-style: italic;
}

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

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

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

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

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



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

.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 .marquee {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  padding: 10px 0 0;
  animation-name: blink;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes blink {
  0% {
    color: #fff;
  }

  50% {
    color: #3fe5e7;
  }

  100% {
    color: #C7D31C;
  }
}

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

.login .theme-btn {
  background: #fff;
  color: #404040;
  font-size: 14px;
  border: 1px solid #ff6501;
  padding: 12px 16px;
}

.pay .theme-btn {
  font-size: 14px;
  padding: 12px 16px;
}

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

  .topbar .topbar-inner ul {
    display: none;
  }
}

.header-main {
  position: relative;
  z-index: 11;
}
header{
  background: var(--stick-white);
}

.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: 60px;
  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: 20px;
  margin-inline-end: 20px;
}

.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(--header-1);
  padding: 0px 0;
  font-family: "Jost", sans-serif;
  text-align: left;
  position: relative;
  text-align: center;
  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::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--theme);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.header-main .main-menu ul li a:hover::after {
  transform: scaleX(1);
}

.header-main .main-menu ul li a img {
  animation-name: zoom;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes zoom {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

.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: 175%;
  inset-inline-start: 0;
  min-width: 320px;
  background: var(--stick-white);
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  -webkit-transform-origin: top center;
  transform-origin: top center;
  color: var(--header);
  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;
  text-align: left;
  font-weight: 600;
  color: var(--header-1);
  padding: 0 0px;
  padding-bottom: 3px;
  padding-top: 3px;
  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: 1200px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -450px;
  visibility: hidden;
  padding: 30px 30px 30px 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: 10px;
  -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;
    border: 1px solid #fe6401;
    padding: 16px;
    width: 25%;
    border-radius: 17px;
}

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

.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-logo img {
  width: 160px;
}

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



.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: all 0.9s;
  background-color: var(--stick-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;
}


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

.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
  z-index: 9;
  padding: 80px 0;
}

.breadcrumb-wrapper::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #0000006e;
  z-index: -1;
}

.breadcrumb-wrapper .page-heading {
  position: relative;
  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;
  z-index: 99;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-sub-title h5 {
  position: relative;
  z-index: 1;
  font-size: 18px;
  padding-right: 70px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-sub-title h5 {
    text-align: center;
    padding-right: 0;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-sub-title h1 {
  color: #ffffff;
  font-size: 45px;
  position: relative;
  z-index: 9;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-sub-title h1 {
    font-size: 50px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-sub-title h1 {
    font-size: 42px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  display: none;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  font-size: 18px;
  color: #303030;
  font-weight: 500;
  text-transform: capitalize;
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li {
    font-size: 16px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: #303030;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme-2);
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  font-size: 18px;
  color: #303030;
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items li i {
    font-size: 16px;
  }
}

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



.service-1 {
  position: relative;
}

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

.service-1 .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%, #FC5A0A 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-4 {
  position: relative;
  overflow: hidden;
}

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

.service-4 .shape-2 {
  position: absolute;
  top: 36px;
  right: 20%;
  rotate: 90deg;
  opacity: 0.4;
  -webkit-animation: zoomBig 3s infinite linear;
  animation: zoomBig 3s infinite linear;
}

.service-4 .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: 310px; */
  padding: 30px 20px 30px 20px;
  position: relative;
  margin-top: 60px;
  border-radius: 12px;
  text-align: center;
  background-color: var(--card-bg);
  z-index: 1;
}

.service-4 .signle-service-item .img {
  height: 200px;
  overflow: hidden;
  margin-bottom: 10px;
}

.service-4 .signle-service-item .img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.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%, #FC5A0A 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: var(--theme);
}

.service-4 .signle-service-item .infu-btn {
  background: var(--theme);
  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 p {
  font-size: 14px;
  line-height: 23px;
  color: var(--card-text);
}

.service-4 .signle-service-item .service-bg::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: rgba(0, 3, 37, 0.56);
}

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

.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%, #FC5A0A 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-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%, #FC5A0A 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-animation: rotate 5s linear;
  animation: rotate 5s linear;
  animation-iteration-count: infinite;
}


.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: 225px;
  position: relative;
  text-align: center;
  background-color: #fd5d07;
  padding: 35px 20px;
  background-image: none;
  cursor: pointer;
  overflow: hidden;
  border-radius: 12px;
  z-index: 5;
}

.bg-1 {
  background-color: #343434 !important;
}

.bg-2 {
  background-color: #343434 !important;
}

.bg-3 {
  background-color: #fd5d07 !important;
}

.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: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  padding-bottom: 10px;
  -webkit-animation: zoomBig 1s infinite linear;
  animation: zoomBig 1s infinite linear;
}

.choose-us-3 .choose-us-images .single-choose-item h4 {
  color: #fff;
}

.choose-us-3 .choose-us-images .single-choose-item p {
  color: #fff;
  font-size: 14px;
  line-height: 26px;
}

.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 .single-choose-hover.active {
  opacity: 1;
  visibility: visible;
}

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


.work-img img {
  width: 260px;
  /* position: absolute;
  bottom: 0; */
}


.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;
}
.caseStudy .swiper-dot .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  background-color: var(--header-1);
  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(--header);
}

.footer-bg {
  background-color: var(--header);
}

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


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


.blog-wrapper .blog-details-image {
  width: 100%;
  height: 472px;
}

.blog-wrapper .blog-details-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  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(../../assets/img/quotepost.png);
  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 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 15px;
}

@media (max-width: 575px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 28px;
  }
}

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

@media (max-width: 414px) {
  .blog-wrapper .single-blog-post .post-content h2 {
    font-size: 22px;
  }
}

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

.blog-wrapper .single-blog-post .post-content ul {
  margin-bottom: 0;
  list-style-type: disc;
  margin-top: 10px;
  margin-bottom: 20px;
}

.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: 5px;
  list-style-type: disc;
  color: var(--text);
  font-weight: 500;
  position: relative;
  font-size: 16px;
  padding-left: 25px;
}

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

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

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


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

.alignleft {
  float: left;
  margin-right: 1.5em;
  margin-bottom: 1.5em;
}

.blog-1 {
  position: relative;
  background: var(--body);
}

.blog-1 .shape-1 {
  position: absolute;
  top: 50px;
  left: 60px;
  opacity: 5%;
}

.blog-1 .shape-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 22%;
}

.blog-1 .blog-inner {
  /* padding-bottom: 220px; */
}

.blog-1 .blog-inner .single-blog-item {
  margin-top: 40px;
  padding: 25px;
  background-color: var(--card-text);
  border-radius: 12px;
  position: relative;
  border: 1px solid #d45100;
}

.blog-1 .blog-inner .single-blog-item .image {
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 374 282" xmlns="http://www.w3.org/2000/svg"><path d="M0 75.3262C0 69.1175 2.88346 63.2609 7.80428 59.4749L79.7142 4.14868C83.2106 1.45859 87.4984 0 91.9099 0H354C365.046 0 374 8.95431 374 20V262C374 273.046 365.046 282 354 282H20C8.9543 282 0 273.046 0 262V75.3262Z"/></svg>');
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 374 282" xmlns="http://www.w3.org/2000/svg"><path d="M0 75.3262C0 69.1175 2.88346 63.2609 7.80428 59.4749L79.7142 4.14868C83.2106 1.45859 87.4984 0 91.9099 0H354C365.046 0 374 8.95431 374 20V262C374 273.046 365.046 282 354 282H20C8.9543 282 0 273.046 0 262V75.3262Z"/></svg>');
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  height: 255px;
}

.blog-1 .blog-inner .single-blog-item .image img {
    border-radius: 12px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.blog-1 .blog-inner .single-blog-item .image img:nth-child(2) {
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  visibility: hidden;
  height: 100%;
  width: 0;
  -webkit-transition: 1s;
  transition: 1s;
  -webkit-transform: none;
  transform: none;
}

.blog-1 .blog-inner .single-blog-item .content {
  margin-top: 0;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.blog-1 .blog-inner .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: 15px;
}


.blog-1 .blog-inner .single-blog-item .content ul li {
  color: var(--text);
}

.blog-1 .blog-inner .single-blog-item .content h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: -0.22px;
}

.blog-1 .blog-inner .single-blog-item .content h3 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;
}

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

.blog-1 .blog-inner .single-blog-item .content p {
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  padding-bottom: 10px;
  /*display: -webkit-box;*/
  /*-webkit-line-clamp: 2;      */
  /*-webkit-box-orient: vertical;*/
  /*overflow: hidden;*/
}

.blog-1 .blog-inner .single-blog-item .content .link-btn {
  font-weight: 700;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 14px;
}

.blog-1 .blog-inner .single-blog-item .content .link-btn i {
  padding-left: 8px;
}

.blog-1 .blog-inner .single-blog-item:hover .image img:nth-child(2) {
  width: 100%;
  visibility: visible;
  -webkit-transform: none;
  transform: none;
}

.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: "Poppins", 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;
}



.contact-us-1 {
  position: relative;
  background: #171717;
  border-radius: 30px 30px 0 0;
}

.contact-us-1 .shape-1 {
  position: absolute;
  bottom: 0;
  right: -5%;
  opacity: 8%;
  z-index: -1;
}

.contact-us-1 .shape-2 {
  position: absolute;
  top: 0;
  left: -8%;
  opacity: 8%;
  z-index: -1;
  rotate: 250deg;
}

.contact-us-1 .section-title .sub-title {
  background: #fff
}

.contact-us-1 .section-title h4 {
  color: #fff;
  font-size: 26px;
  line-height: 40px;
  font-weight: 600;
}
.contact-us-1 .section-title p{
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  margin-top: 10px;
}

.contact-us-1 .contact-us-content .infu-box {
  padding-bottom: 15px;
  gap: 20px;
}
.portfolio-sidebar {
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
}

.portfolio-sidebar h3 {
  margin-bottom: 20px;
  font-size: 22px;
  color: #333;
}

.project-card {
  margin-bottom: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px;
  text-align: center;
}

.project-card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 10px;
}

.project-card h4 {
  margin: 0;
  font-size: 18px;
  color: #222;
}

.project-card p {
  font-size: 14px;
  color: #666;
}

.project-card a {
  display: inline-block;
  margin-top: 10px;
  color: #ff6600;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 767px) {
  .contact-us-1 .contact-us-content .infu-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
  }
}

.contact-us-1 .contact-us-content .infu-box .icon {
  background: #fe6a20;
  width: 40px;
  text-align: center;
  line-height: 46px;
  /* font-size: 21px; */
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
}

.contact-us-1 .contact-us-content .infu-box .icon i {
  color: #fff;
  font-size: 20px;
}

.contact-us-1 .contact-us-content .infu-box .infu p {
  color: #fe6a20;
  font-size: 14px;
}

.contact-us-1 .contact-us-content .infu-box h3 {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}

.contact-us-1 .contact-us-content .infu-box h3 a {
  color: #fff;
}

.contact-us-1 .contact-right {
  position: relative;
  background-color: #272727;
  border-radius: 12px;
  padding: 50px;
  -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-left: -5px;
}

@media (max-width: 991px) {
  .contact-us-1 .contact-right {
    padding: 50px 20px;
  }
}

.contact-us-1 .contact-right::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  /* background-color: var(--theme); */
  right: -5px;
  left: auto;
  z-index: -1;
  border-radius: 12px;
}

.contact-us-1 .contact-right h3 {
  font-size: 28px;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.28px;
  text-align: center;
  padding-bottom: 30px;
}

.contact-us-1 .contact-right .form-clt {
  position: relative;
}

.contact-us-1 .contact-right .form-clt .icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 35px;
  height: 35px;
  line-height: 32px;
  border-radius: 50%;
  background-color: var(--white);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(34, 34, 34, 0.08);
  box-shadow: 0px 10px 20px 0px rgba(34, 34, 34, 0.08);
  text-align: center;
}

@media (max-width: 575px) {
  .contact-us-1 .contact-right .form-clt .icon {
    top: 15px;
  }
}

.contact-us-1 .contact-right .form-clt .icon i {
  color: var(--header);
  font-size: 14px;
}

.contact-us-1 .contact-right .form-clt input {
  width: 100%;
  outline: none;
  border: none;
  padding: 15px 22px;
  color: #ffffff;
  background-color: #3f3f3f;
  font-weight: 500;
  border: 1px solid #7f7f7f;
  border-radius: 4px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 991px) {
  .contact-us-1 .contact-right .form-clt input {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .contact-us-1 .contact-right .form-clt input {
    font-size: 14px;
    padding: 15px 20px;
  }
}

.contact-us-1 .contact-right .form-clt .nice-select {
  background-color: whitesmoke;
  font-weight: 500;
  border-radius: 4px;
  padding: 15px 22px;
  width: 100%;
  border: none;
}

.contact-us-1 .contact-right .form-clt .nice-select::after {
  height: 10px;
  width: 10px;
  right: 25px;
  border-color: var(--text);
  border-bottom: 2px solid var(--text);
  border-right: 2px solid var(--text);
}

.contact-us-1 .contact-right .form-clt .nice-select span {
  color: var(--text);
}

@media (max-width: 991px) {
  .contact-us-1 .contact-right .form-clt .nice-select {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .contact-us-1 .contact-right .form-clt .nice-select {
    font-size: 14px;
    padding: 15px 20px;
  }
}

.contact-us-1 .contact-right .form-clt .nice-select .list {
  background-color: var(--white);
  width: 100%;
}

.contact-us-1 .contact-right .form-clt .nice-select .list li {
  border: none;
  background-color: transparent;
}

.contact-us-1 .contact-right .form-clt .nice-select .option {
  padding: 8px 10px;
}

.contact-us-1 .contact-right .form-clt-big textarea {
  padding: 10px 22px 105px;
  width: 100%;
  outline: none;
  color: #ffffff;
  background-color: #3f3f3f;
  font-weight: 500;
  border: 1px solid #7f7f7f;
  border-radius: 4px;
}

@media (max-width: 1199px) {
  .contact-us-1 .contact-right .form-clt-big textarea {
    font-size: 15px;
  }
}

.contact-us-1 .contact-right .theme-btn {
  background-color: var(--theme-2);
}


.single-contact-card {
     background-image: url(../img/contactbg.png);
    padding: 20px 20px;
    height: 310px;
    width: 100%;
    background-size: cover;
    background-position: bottom right;
  -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: 20px;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.single-contact-card .title h3{
  color: #fff;
}
.single-contact-card .title p{
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  margin: 10px 0;
}
.single-contact-card .title h6 a {
  color: #fc5a0a;
}
.single-contact-card .icon {
  font-size: 30px;
  color: var(--theme);
  margin-bottom: 40px;
}
.single-contact-card .icon img{
    width: 60px;
    background: #fff;
    padding: 11px;
    border-radius: 10px;
}

.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 h6,
.single-contact-card:hover h6 a {
  color: #fff;
}

.office-google-map-wrapper iframe {
  width: 100%;
  height: 600px;
}

.footer-widgets-1 .single-footer-widget .widget-head {
  margin-bottom: 15px;
}

.footer-widgets-1 .single-footer-widget .widget-head h4 {
  font-size: 20px;
  font-weight: 600;
  position: relative;
  color: #fff;
}

.footer-widgets-1 .single-footer-widget .footer-content p {
  margin-bottom: 22px;
}

.footer-widgets-1 .single-footer-widget .footer-content h5 {
  color: var(--black-2);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.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::-webkit-input-placeholder {
  color: var(--text);
}

.footer-widgets-1 .single-footer-widget .footer-content .footer-input input:-ms-input-placeholder {
  color: var(--text);
}

.footer-widgets-1 .single-footer-widget .footer-content .footer-input input::-ms-input-placeholder {
  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%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 5px;
  width: 42px;
  height: 38px;
  border-radius: 5px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
}

.footer-widgets-1 .single-footer-widget .footer-content .social-icon {
  gap: 25px;
  margin-top: 35px;
}

.footer-widgets-1 .single-footer-widget .footer-content .social-icon a {
  font-size: 26px;
  color: var(--text);
}

.footer-widgets-1 .single-footer-widget .footer-content .social-icon a:hover {
  color: var(--theme-2);
}

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact a {
  width: 55px;
  height: 55px;
  line-height: 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;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  color: var(--white);
}

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact .contact-infu {
  width: 75%;
}

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact .contact-infu h5 {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  line-height: 28px;
}

.footer-widgets-1 .single-footer-widget .footer-content .contact-info-area .contact .contact-infu span {
  color: #05F;
  font-weight: 600;
}

.footer-widgets-1 .single-footer-widget .list-area {
  padding-top: 5px;
}

.footer-widgets-1 .single-footer-widget .list-area li {
  margin-bottom: 5px;
}

.footer-widgets-1 .single-footer-widget .list-area li i {
  font-size: 4px;
}

.footer-widgets-1 .single-footer-widget .list-area li a {
  color: #9ea6b9;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  font-size: 15px;
  letter-spacing: -1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.footer-widgets-1 .single-footer-widget .list-area li:hover a {
  padding-left: 10px;
}

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

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

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


.offcanvas__logo img {
  width: 160px;
}

.pay .theme-btn {
  /* animation-name: zooming; */
  animation-duration: 1s;
  animation-delay: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes zooming {
  0% {
    transform: scale(1);
  }

  25% {
    transform: scale(1);
  }

  50% {
    transform: scale(.6);
  }

  65% {
    transform: scale(.8);
  }

  75% {
    transform: scale(.6);
  }

  100% {
    transform: scale(1);
  }
}


.about-text {
  margin-top: 30px;
}

.animate-border {
  position: relative;
  display: block;
  width: 150px;
  height: 5px;
  left: 45%;
  top: 10px;
  background: #fc5a0a;
  border-radius: 4px;
}

.animate-border:after {
  position: absolute;
  content: "";
  width: 35px;
  height: 5px;
  left: 5%;
  bottom: 0;
  border-left: 10px solid #fff;
  border-right: 10px solid #fff;
  -webkit-animation: animborder 2s linear infinite;
  animation: animborder 2s linear infinite;
}

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

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

.about-gif {
  float: right;
  width: 400px;
  margin-bottom: 10px;
}

.rank img {
  width: 100%;
}

.ranking-sec {
  padding: 60px 0;
  background: var(--ranking-bg);
}

.ranking-sec .text h3 {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 35px;
}
.ranking-sec .text h3 img{
  width: 180px;
  margin-left: 10px;
}
.ranking-sec .text p{
  line-height: 25px;
}
.ranking-sec .text{
  text-align: center;
  margin-bottom: 40px;
}

.sector {
  padding: 40px 0 0;
  background: #ddd
}

.sector img {
  width: 100%;
}

.award-sec {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.portfolio {
  display: block;
  height: 350px;
  overflow: hidden;
  position: relative;
  border: 2px solid #b3b3b3;
  border-radius: 1px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.portfolio img {
  /* bottom: -745px; */
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 0;
  margin: 0;
  padding: 0;
  -webkit-transition: top 11s;
  -moz-transition: top 11s;
  -ms-transition: top 11s;
  -o-transition: top 11s;
  transition: bottom 11s;
}

/* .portfolio:hover img {
  bottom: 0;
  -webkit-transition: all 11s;
  -moz-transition: all 11s;
  -ms-transition: all 11s;
  -o-transition: all 11s;
  transition: all 11s;
} */
.case-study-wrapper .section-title-area {
  margin-bottom: 30px;
}

.brand-slide-element .item {
  box-shadow: 0 0 4px 1px #ddd;
  padding: 18px;
  background: var(--white);
  margin: 10px 0;
  border-radius: 5px;
}

.brand-slide-element .item-testimony {
  text-align: left;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.brand-slide-element .item-testimony .name-sec {
  display: flex;
  gap: 10px;
}

.brand-slide-element .item-testimony .img {
  border-radius: 50%;
  overflow: hidden;
  height: 40px;
  width: 40px;
}

.brand-slide-element .item-testimony .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.brand-slide-element .item-testimony .name h5 {
  margin-bottom: 0px;
  margin-top: 0;
  font-size: 16px;
}

.brand-slide-element .item .name p {
  font-size: 12px;
  line-height: 26px;
  text-align: left;
}

.brand-slide-element .item-testimony .icon img {
  width: 30px;
  height: 30px;
}

.brand-slide-element .item .rating {
  text-align: left;
}

.brand-slide-element .rating i {
  color: #ffd400;
}

.brand-slide-element .item p {
  font-size: 16px;
  line-height: 26px;
  text-align: left;
}

.service-wrapper .section-title {
  margin-bottom: 40px;
}

.marquee-bg {
  position: relative;
  z-index: 0;
}

.faq-img img {
  width: 100%;
}

.footer-wrapper {
  background: #161618;
  padding-top: 30px;
}

.footer-widgets-1 {
  background: #232730;
  padding: 50px 30px 30px;
  border-radius: 60px;
}

.ftr-links {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  margin-top: 18px;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
}

.ftr-links ul li {
  display: inline-block;
  border-right: 1px solid #ddd;
  padding: 0 12px;
}

.ftr-links ul li:last-child {
  border-right: none;
}

.ftr-links ul li a {
  color: #9ea6b9;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  font-size: 15px;
  letter-spacing: -1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.ftr-links ul li a i{
  font-size: 16px;
  height: 35px;
  width: 35px;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  background: #ddd;
}
.ftr-links ul li a .fa-facebook{
  background: #234398;
}
.ftr-links ul li a .fa-instagram{
  background: #ff1447;
}
.ftr-links ul li a .fa-youtube{
  background: #d60505;
}
.ftr-links ul li a .fa-linkedin{
  background: #2f63d5;
}

.single-footer-widget .img img {
  border-radius: 10px;
  width: 50%;
  margin-top: 30px;
  position: relative;
  animation-name: example;
  animation-duration: 4s;
  transform: scale(1);
  animation-iteration-count: infinite;
}

@keyframes example {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(.9);
  }

  100% {
    transform: scale(1);
  }
}

.ftr-awards {
  margin-top: 30px;
}

.ftr-awards ul {
  display: flex;
  justify-content: space-between;
}

.footer-bottom-wrapper {
  margin-top: 30px;
}

.footer-bottom-wrapper p {
  color: #c8c8c8;
  font-weight: 400;
}

.single-case-item .image img {
  width: 100%;
}

.sidebar {
  height: auto;
  width: 0px;
  position: fixed;
  text-align: center;
  top: 35vh;
  padding: 10px;
  z-index: 999;
}

.sidebar p i {
  left: 20px;
  position: relative;
  vertical-align: middle;
  text-align: center;
  font-size: 20px;
}

.sidebar .social p {
  padding: 7px;
  color: #fff;
  text-align: right;
}

.sidebar .social p i {
  color: #fff;
}

.sidebar .social {
  margin-left: -145px;
  width: 180px;
  padding: 0;
  padding-right: 30px;
  display: inline-table;
  border-radius: 10px;
  margin-bottom: 5px;
  height: 0px;
  -moz-transition-property: margin-left;
  -moz-transition-duration: 0.2s;
  -moz-transition-delay: 0.2s;
  -ms-transition-property: margin-left;
  -ms-transition-duration: 0.2s;
  -ms-transition-delay: 0.2s;
  -o-transition-property: margin-left;
  -o-transition-duration: 0.2s;
  -o-transition-delay: 0.2s;
  -webkit-transition-property: margin-left;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s;
  box-shadow: 0px 0px 6px 0px #3E3D3D;
  cursor: pointer;
}

.sidebar .social:hover {
  margin-left: -30px;
  width: 180px;
}

.facebook {
  background-color: #3b5998;
}

.twitter {
  background-color: #4099FF;
}

.linkedin {
  background-color: #396cdd;
}

.instagram {
  background-color: #f00843;
}

.whatsapp {
  background-color: #178618;
}

.about-page-text {
  background: var(--section-bg);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
}

.about-page-text h3 {
  margin-bottom: 20px;
}

.about-page-text span {
  color: #ff6b21;
}

.mission .image img {
  width: 100%;
}

.mission .text-content h3 {
  margin-bottom: 20px;
}

.mission .text-content p {
  margin-bottom: 10px;
}

.mission .text-content ul {
  margin-bottom: 10px;
}

.mission .text-content h3 span {
  color: #ff6b21;
}

.timeline {
  position: relative;
  margin: 50px auto;
  width: 1000px;
  padding: 50px 0;
}

.timeline:before {
  content: '';
  position: absolute;
  height: 100%;
  left: 50%;
  width: 4px;
  top: -20px;
  background: #f6580b;
  z-index: 1;
}

.timeline ul {
  margin: 0;
  padding: 0;
}

.timeline ul li:nth-child(odd) {
  float: left;
  text-align: right;
  clear: both;
}

.timeline ul li {
  list-style: none;
  box-sizing: border-box;
  line-height: normal;
  position: relative;
  width: 50%;
  padding: 0px 30px;
}

.timeline ul li:nth-child(odd):before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgb(252 90 10);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(58, 112, 239, 0.2);
  right: -6px;
  top: 15px;
  z-index: 1;
}

.right_content {
  display: flex;
  margin-top: 50px;
  align-items: center;
}

.right_content img {
  width: 35%;
  border-radius: 10px;
  margin-right: 15px;
}

.timeline ul li:nth-child(odd) .left_content {
  position: absolute;
  top: 0px;
  right: 0;
  background: #494947;
  margin: 0;
  padding: 0px 16px;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(59, 112, 239, 0.3);
  border-radius: 9px;
}

.timeline ul li:nth-child(odd) .left_content h3 {
  margin-bottom: 0;
  color: #fff;
  font-size: 22px;
  line-height: 40px;
}

.timeline ul li:nth-child(even) {
  float: right;
  text-align: left;
  clear: both;
}

.timeline ul li:nth-child(even) .left_content {
  position: absolute;
  top: 0px;
  left: 0;
  background: #494947;
  margin: 0;
  padding: 0px 16px;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(59, 112, 239, 0.3);
  border-radius: 9px;
}

.timeline ul li:nth-child(even) .left_content h3 {
  margin-bottom: 0;
  color: #fff;
  font-size: 22px;
  line-height: 40px;
}

.timeline ul li:nth-child(even):before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgb(252 90 10);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(58, 112, 239, 0.2);
  left: -6px;
  z-index: 99;
  top: 15px;
}

.office .box {
  background: #ffe5bf;
  padding: 18px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.office .box img {
  margin-bottom: 10px;
}

.service-sidebar {
  position: relative;
  z-index: 99;
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 4px 3px #ddd;
}

.service-sidebar h3 {
  background: #ff6b21;
  color: #fff;
  padding: 10px;
}

.service-sidebar form {
  padding: 20px;
}

.service-sidebar form span {
  color: rgba(73, 81, 91, 0.84);
  font-weight: 500;
}

.service-sidebar form .form-clt {
  position: relative;
  margin-top: 0px;
}

.service-sidebar form .form-clt input,
.service-sidebar form .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  padding: 10px 22px;
  color: var(--header);
  background-color: transparent;
  border: 1px solid var(--border-2);
  font-weight: 500;
  border-radius: 4px;
  margin-bottom: 20px;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.service-detail-img {
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
}
.service-detail-img img {
  transition: .5s linear all;
}
.service-detail-img:hover img{
  transform: scale(1.1);
  transition: .5s linear all;
}

.service-detail-text h4,
.service-detail-text h5 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.service-detail-text .list {
  margin-top: 10px;
}

.service-detail-text .list li {
  margin-bottom: 10px;
}

.service-detail-text .list li i {
  color: #fc5a0a;
  margin-right: 10px;
}

.service-detail-text .box {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  margin-top: 40px;
  border: 1px dashed #fc5a0a;
  margin: 0 20px;
  margin-top: 40px;
}

.service-detail-text .box h4 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #161616;
}
.service-detail-text .box  p{
  color: #161616;
}

.list1 {
  margin-top: 35px;
}

.service-detail-text .list1 li i {
  color: #fc5a0a;
  margin-right: 10px;
}

.service-detail-text .list1 li {
  margin-bottom: 10px;
}

.bottom-bx {
  padding: 0  0 40px;
}

.point {
  margin-top: 20px;
  box-shadow: 0 0 10px 1px #ddd;
  padding: 20px;
  border-radius: 10px;
}
.first-point{
  margin-top: 44px;
}

.point h4 {
  margin-top: 0;
  margin-bottom: 10px;
}
.clock-box {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
}
.time-sec{
  border-bottom: 1px solid #ddd;
  margin-bottom: 30px;
  padding-bottom: 10px;
}

.flag {
  font-size: 20px;
  margin-right: 5px;
}

.location {
  font-weight: bold;
  margin-bottom: 5px;
}

.time {
  font-size: 16px;
}
.head-btns{
  display: flex;
  gap: 10px;
}
.meeting-box{
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
}
.meeting-box span{
  width: 100px;
}
.meeting-box input{
  border: 1px solid #ababab;
  padding: 10px;
  border-radius: 10px;
  color: #303030;
}
.partners ul{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
}
.partners ul li{
    width: 100%;
    height: 100px;
    background: #3f3f3f;
    overflow: hidden;
    padding: 20px;
    border-radius: 10px;
}
.partners ul li img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.list-area li img{
  width: 100px;
  border-radius: 5px;
}
.policy-page-text h3{
  margin: 25px 0 5px;
}
.policy-page-text ul{
  padding-left: 20px;
  margin-top: 5px;
}
.policy-page-text ul li{
  list-style-type: auto;
  margin-bottom: 5px;
}
.contact-title h2{
  font-size: 55px;
  font-weight: 400;
}
.view-icon{
  position: absolute;
  bottom: 0;
  right: 0px;
  background: #fc5a0a;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  padding: 10px;
  transition: .5s linear all;
}
.single-contact-card:hover .view-icon{
  background: #1b1b1b;
  transition: .5s linear all;
}
.view-icon img{
  width: 45px;
  filter: invert(1);
}
.contact-right.contact{
  padding: 0;
  padding-left: 20px;
  background: transparent;
  
}
.contact-us-1 .contact-right.contact .form-clt input{
  background-color: transparent;
  border-radius: 50px;
  padding: 10px 22px;
}
.cnt-text{
  color: #fff;
  font-size: 12px;
}
.partners.contact{
  height: 300px;
  overflow-y: scroll;
  padding-right: 10px;
}
.contact-us-1.contact{
  border-radius: 30px ;
  margin-bottom: 50px;
}
.pay-form{
  width: 800px;
  margin: auto;
  padding: 100px 0;
}
.pay-page{
  background-image: url(../img/pay-bg.webp);
  background-size: cover;
  width: 100%;
  height: 100%;
  background-position: center;
  position: relative;
  z-index: 0;
}
.pay-page:before{
      position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: .5;
    z-index: -1;
    top: 0;
    left: 0;
}
.cards{
  display: flex;
  gap: 10px;
}
.cards li{
  width: 50px;
  overflow: hidden;
}
.cards li img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.pay-form .row{
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 0px 9px #ffffff38;
}
.scanner img{
  width: 100%;
  height: 100%;
  padding: 20px 0;
}
.pay-form .logo{
    text-align: center;
    padding: 20px 0;
    background: #ffdccb;
    border-radius: 0 0 10px 10px;
}
.sticky-sidebar {
  position: sticky;
  top: 100px;
  /* adjust this based on your header/nav height */
  z-index: 99;
}
.fullscreen-btn {
  cursor: pointer;
  border: none;
  background: none;
  padding: 5px;
}

.fullscreen-btn svg {
  width: 30px;
  height: 30px;
  fill: var(--theme);
  transition: 0.3s;
}

.fullscreen-btn:hover svg {
  fill: var(--theme);
}
.homemenu .service-icon img{
  width: 50px;
}
.homemenu .service-icon{
  margin-bottom: 20px;
}
.homemenu h3{
  font-size: 17px;
  text-transform: uppercase;
  color: #fe6402;
  margin-bottom: 10px;
}
.homemenu ul li a::after {
  content: "";
  position: absolute;
  display: none;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
}
.hero-text{
  padding: 40px 0 40px;
  background-color: var(--body);
}
.hero-text .text {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.3;
  text-align: center;
  color: transparent;
  margin-top: -85px;
  padding-top: 25px;
  background: var(--white);
  border-radius: 20px;
  position: relative;
  font-family: "PT Serif", serif;;
  z-index: 99;
}
.caseStudy2 .swiper-dot{
  margin-top: 20px;
}

.text {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: left;
  color: transparent;
}

/* Outline Text */
.outline {
  -webkit-text-stroke: 2px var(--theme);
  /* Yellow outline */
  color: transparent;
      font-size: 3rem;
    line-height: 1.2;
    font-weight: 900;
    font-style: italic;
}

/* Filled Animated Gradient Text */
.gradient {
  background: linear-gradient(270deg, #FFD700, #ff4b1f, #ff4e0e);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientMove 6s ease infinite;
      font-size: 3rem;
    line-height: 1.2;
    font-weight: 900;
    font-style: italic;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.theme-toggle {
  --size: 40px;
  width: var(--size);
  height: var(--size);
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--header-1);
  border: 1px solid var(--header-1);
  background: var(--card);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform .2s ease, background-color .3s ease, border-color .3s ease;
}

.theme-toggle:active {
  transform: scale(0.96);
}

.theme-toggle svg {
  width: 22px;
  height: 22px;
}

.eyebrow {
  display: inline-block;
  padding: 6px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  color: var(--stick-white);
  background: var(--stick-white);
  backdrop-filter: blur(6px);
}
.eyebrow span.gradient{
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  /* background: linear-gradient(341deg, #ff7300, #ff5b1d, #ff7a0e); */
}

.title {
  font-weight: 700;
  background: linear-gradient(341deg, #FFD700, #ff5b1d, #ffaa0e);
  -webkit-background-clip: text;
  color: transparent;
  animation: shimmer 6s linear infinite;
  font-size: clamp(28px, 6vw, 56px);
  text-transform: capitalize;
}


@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  color: #dbe2ffbb;
  background: #0d1424aa;
  transition: transform .25s ease, box-shadow .25s ease;
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #0a1020aa;
}

.logo {
  /* width: 18px;
  height: 18px; */
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
}

.logo.wm {
  background: #5b6cff;
}

.logo.crm {
  background: #00c7cc;
}

.logo.dev {
  background: #24d67e;
}

.logo.svc {
  background: #ff5b6c;
}

.card-custom {
  background: #ffffff;
  border-radius: 15px;
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: clip-path 0.7s ease-in-out;

}

.card-bg {
  position: absolute;
  inset: 0;
  background: url(../img/service/service-1.jpg) center/cover no-repeat;
  clip-path: circle(0% at 50% 50%);
  /* pehle hidden */
  transition: clip-path 0.7s ease-in-out;
  z-index: -1;
  opacity: .5;
}
.card-bg.one{
  background: url(../img/service/service-2.jpg) center/cover no-repeat;
}
.card-bg.two {
  background: url(../img/service/service-3.jpg) center/cover no-repeat;
}
.card-bg.three {
  background: url(../img/service/service-4.jpg) center/cover no-repeat;
}
/* .card-custom:hover::before {
  opacity: .9;
  transform: translate(10%, -10%) scale(1.05);
} */
.card-custom:hover .card-bg {
  clip-path: circle(150% at 50% 50%);
}

.card-custom:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: #2b3a55;
  background: #000;
  transition: 0.7s ease-in-out;
}
.card-custom h5 {
  font-size: 30px;
  font-weight: 300;
  color: var(--service-text);
  transition: 0.7s ease-in-out;
}

.card-custom p {
  color: var(--service-text);
  margin-bottom: 10px;
  transition: 0.7s ease-in-out;
}
.mini-logo {
  width: 100px;
  height: 100px;
  margin: auto;
  border-radius: 10px;
}
.mini-logo img{
  width: 100%;
  transition: 0.7s ease-in-out;
}
.mini-logo .m-img{
  display: none;
}
.card-custom:hover .mini-logo .d-img{
  display: none;
  transition: 0.7s ease-in-out;
}
.card-custom:hover .mini-logo .m-img{
  display: block;
  transition: 0.7s ease-in-out;
}
.card-custom:hover h5,
.card-custom:hover p{
  color: #fff;
  transition: 0.7s ease-in-out;
}

.card-custom .theme-btn{
  padding: 12px 15px;
  border-radius: 30px;
}
.service-sec{
    background: var(--body);
    /* margin: 0 20px;
    border-radius: 20px; */
}
.service-sec .container-fluid {
  background: var(--service-bg);
  margin: 0 20px;
  border-radius: 20px;
}


.hero1 {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-img1 {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  left: 0;
  top: 0;
}

.content1 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100vh;
  padding-right: 5%;
  box-sizing: border-box;
}

.text1 {
  max-width: 560px;
  opacity: 0;
  transform: translateY(50px);
}

.text1 h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-weight: 800;
  background: linear-gradient(341deg, #FFD700, #ff5b1d, #ffaa0e);
  -webkit-background-clip: text;
  color: transparent;
}

.text1 p {
  font-size: 1.2rem;
}



 .scroll-section {
   position: relative;
   /* height: 100vh; */
   overflow: hidden;
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   align-items: center;
   background-color: var(--body);
 }

 .scroll-img {
   width: 80%;
   max-width: 1200px;
   transform: scale(2);
   object-fit: cover;
   margin-top: 50px;
 }

 .scroll-text {
   opacity: 0;
    margin-top: 30px;
   padding: 2rem;
   text-align: center;
   font-size: 2rem;
 }
 .scroll-text h2{
  background: linear-gradient(341deg, #FFD700, #ff5b1d, #ffaa0e);
  -webkit-background-clip: text;
  color: transparent;
 }

 @media(max-width:768px) {
   .scroll-img {
     width: 100%;
   }

   .scroll-text {
     font-size: 1.5rem;
     padding: 1rem;
   }
 }

 .desktop{
  display: block;
 }
 .mobile{
  display: none;
 }
 /* Floating WhatsApp Button */
 .whatsapp-float {
   position: fixed;
   bottom: 20px;
   left: 20px;
   background-color: #25D366;
   color: white;
   border: 3px solid #fff;
   width: 60px;
   height: 60px;
   border-radius: 50%;
   text-align: center;
   font-size: 30px;
   box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
   z-index: 1000;
   cursor: pointer;
 }

 .whatsapp-float i {
   line-height: 55px;
 }


 /* Popup Box */
 .whatsapp-popup {
   position: fixed;
   bottom: 10px;
   left: 20px;
   width: 350px;
   background: var(--white);
   border-radius: 25px;
   box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
   display: none;
   z-index: 999999;
 }

 .popup-header {
   background-color: #25D366;
   color: white;
   padding: 10px 20px;
   border-top-left-radius: 25px;
   border-top-right-radius: 25px;
   font-weight: bold;
   font-size: 20px;
 }

 .pop-btn {
   text-align: right;
 }

 .pop-btn a {
   background: #25d366;
   color: #fff;
   padding: 15px 25px;
   font-size: 16px;
   border-radius: 40px;
 }

 .pop-btn a i {
   font-size: 25px;
   margin-left: 10px;
 }

 .popup-body {
   padding: 15px;
   font-size: 14px;
   color: var(--black);
 }

 .popup-close {
   position: absolute;
   top: 8px;
   right: 10px;
   cursor: pointer;
   font-size: 20px;
 }
 

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero:before{
  position: absolute;
  content: " ";
  background: url(../img/grid-white.svg) round fixed;
  background-size: 3rem;
  height: 100%;
  width: 100%;
  inset: 0;
  opacity: .5;
  z-index: 0;
  background-attachment: fixed;
}
.hero:after{
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  opacity: .5;
  left: 0;
  top: 0;
  z-index: -1;
}

.hero-video {
  position: fixed;
  /* video fixed rahenge screen pe */
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
}

.hero-content {
  position: relative;
  color: white;
  text-align: left;
  width: 900px;
  left: 10%;
  top: 40%;
  transform: translateY(-40%);
}

.sentence {
  color: #ffffff;
  font-weight: 800;
  font-size: 75px;
  margin-bottom: 26px;
  text-transform: capitalize;
}

.slidingVertical {
  display: inline;
  text-indent: 8px;
  margin-left: 20px;
}

.slidingVertical span {
  font-weight: 800;
  -webkit-animation: bottomToTop 9s cubic-bezier(0.6, 0.05, 0.4, 1) infinite 0s;
  animation: bottomToTop 6.1s cubic-bezier(0.6, 0.05, 0.4, 1) infinite 0s;
  background: linear-gradient(45deg, #FFD700, #ff4e0e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  font-family: "Crimson Text", serif;
  font-weight: 700;
  font-style: italic;
}
.hero-subtext{
  color: #fff;
  font-size: 22px;
  line-height: 36px;
}

.slidingVertical span:nth-child(2) {
  animation-delay: 2s;

}

.slidingVertical span:nth-child(3) {
  animation-delay: 4s;
}

/*topToBottom Animation*/

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

  5% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }

  10% {
    opacity: 1;
    -webkit-transform: translateY(0px);
  }

  25% {
    opacity: 1;
    -webkit-transform: translateY(0px);
  }

  30% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }

  80% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}


.service-box:not(:last-child) {
  margin-bottom: 30px;
}

.service-box {
  padding: 10px;
  min-height: 323px;
  background: #f6f6f8;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #e7e8ec;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.service-box::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  z-index: 1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: linear-gradient(122deg, rgba(255, 217, 17, 0) 0%, rgba(233, 226, 255, 0.8) 34.54%, #cae1f7 62.5%, rgba(250, 232, 138, 0.56) 100%), radial-gradient(74.51% 50% at 50% 100%, white 24.0899994969%, white 100%);
  background: url(../img/service_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.service-box .service-item {
  position: relative;
  z-index: 2;
  padding: 30px;
  background: var(--white);;
  border: 1px solid #e6e7ec;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.mb-85 {
  margin-bottom: 85px;
}
.service-box .service-item .xb-item--title {
  font-size: 28px;
  letter-spacing: 0em;
  margin-bottom: 10px;
}
.service-box .service-item .xb-item--contact {
  line-height: 26px;
}
.service-box .service-item .xb-item--icon {
  align-items: center;
}

.ul_li_between {
  justify-content: space-between;
}

.ul_li,
.ul_li_right,
.ul_li_center,
.ul_li_between {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.service-box .service-item .xb-item--img {
  margin-left: -10px;
}
.service-box .service-item .xb-item--img img {
  height: 82px;
}
.service-box .xb-overlay {
  z-index: 2;
}

.xb-overlay {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.service-box:hover::before {
  opacity: 1;
}
.choose-us-content{
    position: sticky;
    top: 120px;
}
.xb-item--holder{
  margin-bottom: 20px;
}
.process-left {
  position: sticky;
  top: 200px;
  z-index: 2;
  margin-bottom: 100px;
  margin-top: 100px;
}
.process-left .title {
  font-size: 45px;
  margin-bottom: 30px;
  color: var(--white-s);
  font-weight: 600;
}
.process-left .sec-title span{
  color: var(--white-s);
}
.process-left .sec-title p{
  margin-top: 30px;
}
.f-right {
  float: right;
}
.process-right .process-item {
  top: 140px;
  z-index: 2;
  position: sticky;
  max-width: 470px;
  padding: 0 40px 40px;
  /* margin-bottom: 100px; */
  background: var(--sticky-bg);
  border-radius: 16px;
  -webkit-border-radius: 16px;
  -moz-border-radius: 16px;
  -ms-border-radius: 16px;
  -o-border-radius: 16px;
  box-shadow: 4px 4px 14px 0 #363636;
}
.process-right .process-item .xb-item--number {
  font-weight: 500;
  font-size: 30px;
  text-align: center;
  width: 54px;
  height: 57px;
  padding-top: 12px;
  border-top: none;
  display: inline-block;
  border-radius: 0 0 27px 27px;
  border: 1px solid rgb(76 76 76 / 35%);
}
.process-right .process-item .xb-item--img {
  margin: 14px 0 25px;
  border-radius: 10px;
  overflow: hidden;
}
.process-right .process-item .xb-item--title {
  font-size: 24px;
  letter-spacing: 0em;
  margin-bottom: 10px;
}
.process-right .process-item .xb-item--img img{
  width: 100%;
}
.process{
  background: #171717;
}

/*Pop up */
.popup {
  /* width: 360px;
  max-width: 92%; */
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px 40px;
  box-shadow: 0 12px 30px rgba(7, 17, 23, 0.45);
  position: relative;
  border: 1px solid rgba(2, 8, 12, 0.06);
}

.close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  border: 1px solid #cfcfcf;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 700;
  color: #222;
  background: #fff
}

.stars {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 6px
}

.star {
  font-size: 20px;
  color: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%)
}

.badge {
  width: 100%;
}

.badge img{
  background: linear-gradient(180deg, #fff, #f8f8f8);
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 12px rgba(3, 6, 8, 0.06);
  display: inline-flex;
  align-items: center;
  width: 45%;
  gap: 8px;
}

.cta {
  display: block;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  color: #08242d;
  text-align: center;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin: 6px 0 14px;
  text-decoration: none
}

.box-note {
    background: #282828;
    color: #fff;
    padding: 14px;
    border-radius: 10px;
    text-align: center;
    font-weight: 400;
    line-height: 26px;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 18px;
}

.links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 14px 6px;
  color: #0b2b33
}
.links a i{
  color: #fc5a0a;
}
.links a {
  color: #1b1b1b;
  text-decoration: none;
  font-size: 16px;
  border-right: 1px solid #a3a3a3;
  border-left: 1px solid #a3a3a3;
  padding: 8px 20px;
  border-radius: 10px;
}

.phones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
  color: #0b2b33;
  font-size: 13px
}

.phone-item {
  display: flex;
  align-items: center;
  gap: 8px
}

.phone-item span {
  font-size: 12px;
  color: #0b2b33
}

.secondary-cta {
  display: block;
  background: linear-gradient(84deg, var(--theme) 0%, var(--theme-2) 100%);
  color: #ffffff;
  text-align: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top:30px;
  text-decoration: none
}

.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 13px;
  color: #0b2b33
}

.tick {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #e8f7f1;
  text-align: center;
  line-height: 18px;
  font-size: 12px;
  color: #0b8a63
}
.modal-body{
  padding: 0 !important;
}
#myModal1{
  background: #282828 !important;
  z-index: 999999999 !important;
}
#myModal1 .modal-dialog{
  margin-top: 80px;
}


.review {
  background: var(--ranking-bg);
  margin-bottom: 25px;
  padding: 25px;
  border-radius: 18px;
  border: 1px solid #e6e6e6;
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}


.review:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}


.stars {
  color: gold;
  font-size: 12px;
  margin-bottom: 10px;
  justify-content: left;
  gap: 6px;
}


.name {
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}


.review .text {
  font-size: 15px;
  color: var(--text);
  margin: 10px 0 15px;
  line-height: 1.6;
  font-weight: 500;
}

.review-box {
  display: flex;
  gap: 10px;
}

.review-box .person-icon {
  height: 50px;
  width: 50px;
  overflow: hidden;
}

.review-box .person-icon img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.stats {
  background: linear-gradient(341deg, #FFD700, #ff5b1d, #ffaa0e);
  padding: 40px 0;
}

.stats .stats-box {
  text-align: center;
  margin-bottom: 10px;
}

.stats .stats-box img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.stats .stats-box p {
  color: #fff;
  line-height: 20px;
  margin-top: 10px;
  font-size: 14px;
}

.digistory {
  background-color: var(--white);
  padding: 60px 0;
}

.story-text img {
  width: 300px;
  margin-bottom: 20px;
}

.digistory .partner-logo {
  text-align: center;
}

.digistory .partner-logo img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.digistory .partner-logo p {
  font-size: 14px;
  text-align: center;
  line-height: 20px;
  margin-top: 10px;
}

.award-sec .sub-title {
  background: var(--header-1);
}

.award-sec .sub-title span {
  color: var(--stick-white);
}

.award-sec .section-title h2 {
  color: var(--header-1);
}

.topbar-marquee {
  background: var(--header-1);
}

.topbar-marquee .marquee {
  color: var(--stick-white);
  font-size: 14px;
  padding: 5px;
  line-height: 1.2;
}

.topbar-marquee .marquee a {
  color: #ff6600;
}

.ivr-no {
  position: relative;
}

.ivr-no .number {
  position: absolute;
  width: 300px;
  top: 60px;
  left: -50px;
}

.ivr-no .number a {
  background: #f9f9f9;
  border: 1px dotted #434343;
}

.ivr-no a {
  background: #ffc002;
  color: #292929;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 600;
}
.modal-header .modal-title{
  color: var(--header-1);
}
.meeting-box span{
  color: var(--header-1);
}
.modal-body.contact-left{
  padding-bottom: 20px !important;
  padding-top: 20px !important;
}


/* HERO */
.hero-2 {
  position: relative;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

/* Animated Gradient */
.hero-2::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, #ff6a00, #ffb472, #ff5b1d, #ff7b45);
  background-size: 300% 300%;
  /* animation: gradientMove 12s ease infinite; */
  z-index: -2;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Floating Shapes */
.shape {
  /* position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .5; */
}

.shape1 {
  width: 280px;
  height: 280px;
  background: #ff6a00;
  top: 10%;
  left: 5%;
  /* animation: float 8s ease-in-out infinite; */
}

.shape2 {
  width: 250px;
  height: 250px;
  background: #ff9500;
  bottom: 15%;
  right: 15%;
  /* animation: float 10s ease-in-out infinite; */
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

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

/* Rotating Words */
.rotating {
  height: 70px;
  overflow: hidden;
  display: inline-block;
}

.rotating span {
  display: block;
  animation: rotateWords 8s infinite;
  color: var(#ff6a00);
}

@keyframes rotateWords {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-70px);
  }

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

  75% {
    transform: translateY(-210px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Buttons */
.btn-brand {
  background: linear-gradient(45deg, #ff6a00, #ff8c1a);
  border: none;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  transition: .3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .3);
}

.btn-brand:hover {
  transform: scale(1.08);
  box-shadow: 0 15px 40px rgba(0, 0, 0, .5);
}

.btn-outline-light {
  border-radius: 50px;
  padding: 12px 28px;
  /* border: 1px solid #ff6501; */
  color: #363636;
  background: #fff;
}

/* Glass Cards */
.glass-card {
  backdrop-filter: blur(15px);
  background: rgb(0 0 0 / 0%);
  border-radius: 100px 20px 100px 20px;
  padding: 30px;
  box-shadow: 0 0px 14px rgb(0 0 0 / 20%);
  transition: .3s;
}

.glass-card h2 {
  color: var(#ff6a00);
}

.glass-card:hover {
  transform: translateY(-10px);
}
.display-4{
  -webkit-text-stroke: 2px var(--theme);
  color: transparent;
}
.display-4 .rotating span{
  -webkit-text-stroke: 0px var(--theme);
  color: var(--black-2);;
  text-transform: uppercase;
  font-weight: 900;
}
.btn-gradient {
  background: linear-gradient(45deg, #fe6401, #ffc002);
  border: none;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  transition: .3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .3);
}

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

/* Premium Bootstrap Card */
.stat-card {
  position: relative;
  padding: 40px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  color: white;
  display: flex;
  gap: 15px;
  align-items: center;
}
.stat-card .icon{
  height: 90px;
  width: 90px;
  background: #ddd;
  border-radius: 50%;
  line-height: 90px;
  border: 1px dotted #ff6501;
}

/* Gradient border */
.stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(45deg, #ff6601, #c84d00, #ffc002);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.stat-card .icon img{
  width: 65px;
}
.counter-text .number{
  display: flex;
  align-items: center;
  gap: 5px;
}
.counter-text .number span{
  color: var(--black-2);;
  font-size: 50px;
  font-weight: 700;
}
.stat-card h2 {
  font-size: 48px;
  font-weight: 700;
}

.stat-card p {
  opacity: 0.85;
  font-size: 15px;
  margin: 0;
}


.section-testmonials {
  font-family: Poppins;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 60px 0;
  padding-left: 25px;
  background: var(--body);
}

.column-testmonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 20%;
}

.section-details {
  border-left: 10px solid #fe6203;
  padding-left: 20px;
}


.name-section {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 14px;
  color: #fe6203 !important;
  line-height: 1.2em;
  margin: 0;
}

.title-section b {
  color: #fe6203;
}
.name-icon{
  background: #000000;
  border-radius: 50%;
  height: 60px;
  width: 60px;
  line-height: 60px;
  text-align: center;
}
.name-icon p{
  line-height: 60px;
  font-size: 20px;
  font-weight: 800;
  color: #ff6f19;
}

.title-section {
  color: var(--black);
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.navigation-testmonials {
  display: flex;
  gap: 10px;
}


.swiper-testmonials {
  width: 80%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 768px) {
  .section-testmonials {
    flex-direction: column;
    align-items: flex-start;
  }

  .swiper-testmonials {
    width: 100%;
  }
  .column-testmonials{
    width: 100%;
  }
  .navigation-testmonials{
    justify-content: right;
    margin-right: 20px;
  }
}

.swiper-testmonials .swiper-slide {
  border-radius: 10px;
  background: linear-gradient(341deg, #ff7e00, #ff5b1d, #ff910e);
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transform: scale(0.9) !important;
  filter: blur(1px) grayscale(0.5);
  transition: 0.2s;
}

.swiper-testmonials .swiper-slide * {
  margin: 0;
}

.swiper-testmonials .swiper-slide-active {
  filter: blur(0px) !important;
  transform: scale(1) !important;
}

.card-slide {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.head-slide {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-slide {
  display: flex;
  align-items: center;
  gap: 20px
}

.title-slide h4 {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
}

.title-slide h6 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.text-slide {
  color: #FFF;
  font-family: Poppins;
  font-size: 16px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}

.swiper-button-testmonials-next,
.swiper-button-testmonials-prev {
  cursor: pointer;
}
.message-text h3{
  font-size: 40px;
  font-weight: 300;
}
.message-text ul{
  padding-left: 25px;
  margin-top: 10px;
  margin-bottom: 20px;
}
.message-text ul li {
  list-style-type:circle;
  margin-bottom: 5px;
}
.choose-us-wrapper.choose-us-3{
  background-color: var(--body);
}
.offline, .arcade-mode .interstitial-wrapper{
  background-color: var(--body);
}
.footer-widgets-1 .single-footer-widget .list-area.partner-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
    color: #fff;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 55s linear infinite;
}
.marquee span:hover {
    animation-play-state: paused;
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.video-slide{
  /* margin: 0 10px; */
}
.section-video-testmonials{
  background: var(--white-4);
  padding: 50px 0;
}
.video-slide iframe{
  width:100%;
  height:450px;
}

@media (max-width: 768px) {
  .header-slide svg {
    width: 50px;
  }

  .title-slide h4 {
    font-size: 14px;
  }

  .swiper-testmonials .swiper-slide {
    padding: 20px;
  }
}


/* small adjustments */
@media(max-width:380px) {
  .popup {
    padding: 18px
  }
}

@media screen and (max-width: 767px) {
  .mb-none {
    /* display: none; */
  }
  .head-btns.mb-none .login{
    display: none;
  }
  .head-btns.mb-none .pay{
    display: none;
  }
  .head-btns.mb-none .fullscreen-btn{
    display: none;
  }

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

  .mean-container .mean-nav ul li a {
    display: flex;
    gap: 10px;
  }

  .view-icon {
    bottom: 18px;
    right: 18px;
  }

  .clock-box {
    margin-bottom: 10px;
  }

  .mean-container .mean-nav ul li a img {
    width: 30px;
  }

  .mean-container .mean-nav ul li a p {
    font-size: 14px;
  }

  .mean-container .mean-nav ul li a {
    padding: 10px 0;
    color: #404040;
    font-size: 12px;
  }

  .mean-container .mean-nav ul li a.mean-expand {
    margin-top: 17px;
  }

  .team-1 .shape-2 {
    opacity: 15%;
  }

  .animate-border {
    left: 30%;
  }

  .about-text p {
    text-align: justify;
  }

  .case-study-2 .nav .nav-link {
    font-size: 14px;
    padding: 10px 10px;
  }

  .portfolio {
    height: 220px;
  }

  .work-img {
    display: none;
  }

  .ftr-links ul li {
    margin-bottom: 10px;
    padding: 0 7px;
  }

  .ftr-links ul li a {
    font-size: 14px;
  }

  .ftr-awards ul {
    display: grid;
    justify-content: space-between;
    grid-template-columns: repeat(3, 1fr);
  }

  .ftr-awards ul li img {
    width: 100%;
  }

  .sidebar {
    top: 60vh;
  }

  .timeline {
    width: 100%;
  }

  .timeline:before {
    left: 20px;
  }

  .timeline ul li:nth-child(odd),
  .timeline ul li:nth-child(even) {
    width: 100%;
    text-align: left;
    padding-left: 50px;
    margin-bottom: 50px;
  }

  .timeline ul li:nth-child(odd):before {
    top: -18px;
    left: 16px;
  }

  .right_content {
    display: block;
    margin-top: 35px;
  }

  .timeline ul li:nth-child(odd) .left_content,
  .timeline ul li:nth-child(even) .left_content {
    top: -30px;
    left: 30px;
    right: inherit;
  }

  .timeline ul li:nth-child(even):before {
    top: -18px;
    left: 16px;
  }

  .about-page-text {
    background: var(--section-bg);
    padding: 30px 10px;
    border-radius: 20px;
    text-align: justify;
  }

  .mission {
    margin-bottom: 40px;
  }

  .mb-rev {
    flex-direction: column-reverse;
  }

  .partners ul li {
    height: 70px;
  }
  .btn-gradient{
    padding: 12px 22px;
  }
  .rotating {
    height: 35px;
  }
    @keyframes rotateWords {
      0% {
        transform: translateY(0);
      }
  
      25% {
        transform: translateY(-45px);
      }
  
      50% {
        transform: translateY(-90px);
      }
  
      75% {
        transform: translateY(-130px);
      }
  
      100% {
        transform: translateY(0);
      }
    }
}

@media screen and (max-width: 767px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }
  .hero-content{
    width: auto;
    left: 0;
    padding: 0 10px;
  }
  .sentence{
    font-size: 36px;
  }
  .hero-subtext {
    color: #fff;
    font-size: 18px;
    line-height: 28px;
  }
  .service-sec .container-fluid{
    margin: 0;
  }
  .shapes{
    display: none;
  }
  .shape{
    display: none;
  }
  .service-sec, .ranking-sec, .choose-us-wrapper, .scroll-section.mobile, .award-sec, .service-wrapper.service-1{
    overflow: hidden;
  }
  .process-left{
    margin-top: 0;
  }
  .hero-text .text {
    font-size: 2rem;
    margin-top: -60px;
  }
  .outline, .gradient{
    font-size: 2.3rem;
  }
  .blog-wrapper, .contact-us-wrapper{
    overflow: hidden;
  }
  .hero{
    height: 70vh;
  }
  .header-main .main-menu{
    margin-right: 0;
  }
  .ivr-no .number{
    left: -80px;
  }
}
@media screen and (max-width: 767px) {
  .container-fluid {
    padding: 0 10px;
  }
  .ivr-no a{
    font-size: 12px;
    padding: 10px 14px;
  }
  .header-1 .header-main .header-right{
    gap: 10px;
  }
  .theme-toggle {
    --size: 34px;
  }
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.ellipsis-3 {
  display: -webkit-box;
  -webkit-line-clamp: 2;   /* number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0px;
  height: 60px;
  padding-bottom: 0 !important;
}
.ellipsis-3 h2 {
  display: none;
}
.content {
    padding-top: 10px;
    height: 240px;
    overflow: hidden;
}
.content ul li {
  font-size: 14px;
}



