/* @import url("https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@100..900&amp;display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --body: #fff;
  --black: #000;
  --white: #fff;
  --theme: #384BFF;
  --liner: linear-gradient(to right, #fadabd 0%, #3647eb 100%);
  --theme2: #384BFF;
  --header: #000;
  --text: #585858;
  --text-2: #ffffffcc;
  --border: #E3E3E3;
  --border2: #242449;
  --border3: #5262FF;
  --bg: #F3F7FB;
  --bg2: #0e0e3d;
  --bg3: #ffffff33;
  --box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.06);
  --box-shadow-2: 0px 4px 25px rgba(56, 75, 255, 0.1);
  --footer-p: #ffffffcc;
}

body {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  font-weight: normal;
  line-height: 28px;
  color: var(--text);
  background-color: var(--white);
  padding: 0px;
  margin: 0px;
  overflow-x: hidden;
}

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

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Sans", sans-serif;
  margin: 0px;
  padding: 0px;
  color: #3d2828;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out 0s;
}

h1 {
  font-size: 80px;
  font-weight: 700;
  line-height: 112%;
}

h2 {
  font-size: 40px;
  line-height: 125%;
  font-weight: 700;
}

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

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

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

h3 {
  font-size: 22px;
  font-weight: 600;
}

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

h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
}

h5 {
  font-size: 18px;
  font-weight: 500;
}

h6 {
  font-size: 18px;
  font-weight: 500;
  line-height: 143%;
}

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

p {
  margin: 0px;
  transition: all 0.4s ease-in-out 0s;
  font-size: 17px;
  padding-top: 10px;
}

.text-blue {
  color: rgb(56, 75, 255);
}

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

.theme-btn {
  background: var(--liner);
  color: var(--white);
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  padding: 24px 40px;
  border-radius: 0px;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out 0s;
  position: relative;
  z-index: 1;
  line-height: 1;
}

.theme-btn::before {
  content: "";
  background-color: var(--header);
  width: 0px;
  height: 50%;
  position: absolute;
  top: 0px;
  left: 0px;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  z-index: -1;
}

.theme-btn::after {
  content: "";
  background-color: var(--header);
  width: 0px;
  height: 50%;
  position: absolute;
  bottom: 0px;
  right: 0px;
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  z-index: -1;
}

.theme-btn i {
  margin-left: 10px;
}

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

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

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

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

.theme-btn.bg-white {
  background-color: var(--white);
  color: var(--header);
}

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

.theme-btn.border-white {
  border: 1px solid var(--white);
  background-color: transparent;
  padding: 22px 40px;
}

@media (max-width: 767px) {
  .theme-btn.border-white {
    padding: 18px 32px;
  }
}

@media (max-width: 575px) {
  .theme-btn.border-white {
    padding: 16px 30px;
  }
}

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

.theme-btn.border-white:hover {
  color: var(--header) !important;
}

@media (max-width: 767px) {
  .theme-btn {
    padding: 20px 32px;
  }
}

@media (max-width: 575px) {
  .theme-btn {
    padding: 18px 30px;
    font-size: 14px;
  }
}

.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  z-index: 9999999;
}

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

.preloader .animation-preloader .spinner {
  animation: 2s linear 0s infinite normal none running spinner;
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  border-right-color: rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(0, 0, 0, 0.2);
  border-left-color: rgba(0, 0, 0, 0.2);
  border-image: initial;
  border-top-color: var(--theme);
  height: 9em;
  margin: 0px auto 3.5em;
  width: 9em;
}

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

.preloader .animation-preloader .txt-loading {
  font: bold 5em "Noto Sans", sans-serif, "Noto Sans", sans-serif;
  text-align: center;
  user-select: none;
}

@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}

.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme);
  position: relative;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2)::before {
  animation-delay: 0.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3)::before {
  animation-delay: 0.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4)::before {
  animation-delay: 0.6s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5)::before {
  animation-delay: 0.8s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6)::before {
  animation-delay: 1s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7)::before {
  animation-delay: 1.2s;
}

.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8)::before {
  animation-delay: 1.4s;
}

.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: 4s ease 0s infinite normal none running letters-loading;
  color: var(--header);
  content: attr(data-text-preloader);
  left: 0px;
  opacity: 0;
  font-family: "Noto Sans", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}

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

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

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

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

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

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

.preloader.loaded .loader-section .bg {
  width: 0px;
}

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

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

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

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

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

.offcanvas__info {
  background: var(--bg) none repeat scroll 0 0;
  border-left: 2px solid var(--theme2);
  position: fixed;
  right: 0px;
  top: 0px;
  width: 400px;
  height: 100%;
  transform: translateX(calc(100% + 80px));
  transition: transform 0.45s ease-in-out 0s, opacity 0.45s ease-in-out 0s;
  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;
  transform: translateX(0px);
}

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

.offcanvas__logo a img {
  width: 44px;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 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);
  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: 600;
  text-transform: capitalize;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact ul li a {
  color: var(--text);
}

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

.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}

.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button .theme-btn {
  width: 100%;
  padding: 16px 40px;
}

.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;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--text);
  border-radius: 50%;
  transition: all 0.4s ease-in-out 0s;
  text-align: center;
  border: 1px solid var(--border);
}

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

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgb(21, 21, 21);
  z-index: 900;
  top: 0px;
  opacity: 0;
  visibility: hidden;
  right: 0px;
}

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

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

.header-logo {
  width: 200px;
}

@media (max-width: 1899px) {
  .header-2 .main-logo {
    display: none;
  }
}

.header-2 .main-logo {
  position: absolute;
  top: 0px;
  left: -200px;
  z-index: 9;
}

.header-1 .header-main .header-right .header-button {
  margin-right: 50px;
}

.header-1 .header-main .header-right .header-button .theme-btn {
  padding: 22px 30px;
}

@media (max-width: 1899px) {
  .header-1 .header-main .header-right .header-button {
    margin-right: 0px;
  }
}

@media (max-width: 1600px) {
  .header-1 .header-main .header-right .header-button {
    display: none;
  }
}

.sticky.header-1 .header-main .header-right .header-button {
  margin-right: 0px;
}

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

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

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

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

.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
  padding: 20px 0px;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out 0s;
}

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

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

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

.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 500;
  color: rgba(15, 13, 29, 0.9);
  padding: 0px;
  width: 100%;
}

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

.header-main .main-menu ul li .submenu li:hover>a {
  background: transparent;
  color: rgb(56, 75, 255) !important;
}

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

.header-main .main-menu ul li .submenu li:hover>.submenu {
  visibility: visible;
  opacity: 1;
}

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

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

.header-main .main-menu ul li .has-homemenu .homemenu-items {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  justify-content: space-between;
}

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

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

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

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  gap: 10px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out 0s;
  margin-top: 20px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn {
  padding: 14px 20px;
  width: initial;
  font-size: 14px;
  text-align: center;
  color: var(--white) !important;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb .demo-button .theme-btn:hover {
  color: var(--white) !important;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb::before {
  background: linear-gradient(rgba(99, 92, 92, 0) 0%, rgb(94, 94, 246) 100%) center center / cover no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
  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: 0px;
}

.header-main .main-menu ul li .has-homemenu .homemenu-items .homemenu .homemenu-thumb:hover .homemenu-btn {
  opacity: 1;
  visibility: visible;
  bottom: 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;
}

.homemenu-style {
  display: flex;
  align-items: flex-start;
  width: 100%;
  justify-content: space-between;
}

.homemenu-img {
  width: 150px;
}

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

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

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

.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}

.footer-content .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 16px;
  display: block;
  color: var(--white);
  transition: all 0.4s ease-in-out 0s;
  text-align: center;
  background-color: transparent;
  border: 1px solid rgba(227, 227, 227, 0.2);
  margin-left: 20px;
}

.footer-wrapper {
  display: flex;
  justify-content: space-between;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
  margin-top: 40px;
  gap: 15px;
  position: relative;
  z-index: 9;
}

.footer-bottom .scroll-icon {
  position: absolute;
  left: 96%;
  bottom: 10px;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  line-height: 60px;
  background-color: rgba(56, 75, 255, 0.63);
  border-radius: 50%;
  text-align: center;
  color: var(--white);
  border: 5px solid rgba(255, 255, 255, 0);
  display: inline-block;
  z-index: 99;
}

.footer-bottom.style-2 .scroll-icon {
  left: 93%;
}

@media (max-width: 1399px) {
  .footer-bottom.style-2 .scroll-icon {
    left: 50%;
  }

  .footer-bottom .scroll-icon {
    position: absolute;
    left: 89%;
    width: 50px;
    height: 50px;
    bottom: 113px;
  }

  .footer-bottom .scroll-icon i {
    position: relative;
    top: -8px;
  }
}

@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
    margin-top: 20px;
  }
}

.footer-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid transparent;
}

.social-icon {
  display: flex;
}

@media (max-width: 575px) {
  .footer-wrapper {
    display: flex;
    flex-direction: column;
  }

  .social-icon {
    display: flex;
    justify-content: flex-start !important;
  }

  .footer-content .social-icon a {
    margin-left: 0px;
    margin-right: 10px;
  }
}

.header-top-wrapper .top-right .social-icon {
  gap: 15px;
}

.header-top-wrapper .top-right .social-icon span {
  color: var(--white);
  font-weight: 500;
}

.header-top-wrapper .top-right .social-icon a {
  color: var(--white);
}

.header-1 {
  position: relative;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  z-index: 999;
}

@media (max-width: 1899px) {
  .header-1::before {
    display: none !important;
  }
}

.header-1 .container-fluid {
  padding: 0px 130px;
}

@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0px 50px;
  }
}

@media (max-width: 991px) {
  .header-1 .container-fluid {
    padding: 0px 40px;
  }
}

@media (max-width: 575px) {
  .header-1 .container-fluid {
    padding: 15px;
  }
}

@media screen and (max-width: 1025px) {
  .header-1 .header-main .main-menu ul li {
    margin-inline-end: 25px;
  }
}

.header-1 .header-main .main-menu ul li .has-homemenu {
  left: -400px;
}

@media (max-width: 1600px) {
  .header-1 .header-main .main-menu ul li .has-homemenu {
    left: -300px;
  }
}

.header-1 .header-main .header-right {
  gap: 50px;
}

@media (max-width: 991px) {
  .header-1 .header-main .header-right {
    gap: 25px;
  }
}

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

.header-1 .header-main .header-right .header__hamburger {
  margin-right: -70px;
}

@media (max-width: 1899px) {
  .header-1 .header-main .header-right .header__hamburger {
    margin-right: 0px;
  }
}

.header-1 .header-main .header-right .header__hamburger .sidebar__toggle {
  font-size: 24px;
  color: var(--white);
}

@media (max-width: 1899px) {
  .header-1 .header-main .header-right .header__hamburger .sidebar__toggle {
    color: var(--theme);
  }
}

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

.sticky.header-1::before {
  display: none;
}

.sticky.header-1 .header-main .header-right {
  gap: 50px;
}

@media (max-width: 991px) {
  .sticky.header-1 .header-main .header-right {
    gap: 25px;
  }
}

.sticky.header-1 .header-main .header-right .header__hamburger {
  display: none !important;
}

@media (max-width: 991px) {
  .sticky.header-1 .header-main .header-right .header__hamburger {
    display: block !important;
  }
}

.header-top-section .container-fluid {
  padding: 0px 130px;
}

@media (max-width: 1399px) {
  .header-top-section .container-fluid {
    padding: 0px 50px;
  }
}

.fix {
  overflow: visible;
}

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

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

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0px;
  color: var(--header);
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  border: none;
}

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

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

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

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

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

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

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

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

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

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

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

.mean-container .mean-bar,
.mean-container .mean-bar * {
  box-sizing: content-box;
}

.mean-container .mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
}

.mean-container .mean-nav ul li a {
  display: block;
  float: left;
  width: 100%;
  padding: 10px 5%;
  margin: 0px;
  text-align: left;
  text-decoration: none;
  font-weight: 600;
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 0px;
  width: 26px;
  height: 32px;
  text-align: center;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 2;
  font-weight: 700;
  background: transparent;
  font-size: 14px;
  border: none !important;
}

.hero-1 {
  position: relative;
  z-index: 9;
  padding-top: 50px;
}

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

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

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

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

  .homemenu-style {
    padding: 4px 2px 5px 15px;
  }

  .homemenu-title {
    color: rgba(28, 28, 28, 0.78);
    font-weight: 500;
    font-size: 18px;
  }

  .homemenu-mobile-ul {
    padding: 10px;
  }

  .new-a {
    padding: 0px 5% !important;
    font-weight: 400 !important;
  }
}

.hero-1 .dot-shape {
  position: absolute;
  top: 50%;
  left: 42%;
  transform: translate(-50%, -50%);
}

.hero-1 .text-transparent {
  position: absolute;
  top: 50%;
  left: -10%;
  transform: translateY(-50%) rotate(-90deg);
  z-index: 1;
}

.hero-1 .text-transparent h2 {
  font-size: 80px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--text);
  -webkit-text-fill-color: transparent;
  animation: 3s ease 0s infinite normal none running shine;
  mask-image: linear-gradient(-75deg, rgba(56, 75, 255, 0.15) 50%, rgb(56, 75, 255) 50%, rgba(56, 75, 255, 0.15) 100%);
  mask-size: 200%;
}

@media (max-width: 1899px) {
  .hero-1 .text-transparent {
    display: none;
  }
}

.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center center;
  padding: 0px 0px 150px;
  z-index: 0;
  overflow: hidden;
}

.bg-cover-other {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center center;
  padding: 0px;
  z-index: 0;
  overflow: hidden;
}

.hero-1 .hero-content {
  position: relative;
  z-index: 9;
}

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

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

@media (max-width: 575px) {
  .hero-1 .hero-content {
    text-align: center;
    margin: 0px auto;
  }
}

.span-color {
  color: rgb(56, 75, 255);
}

.hero-1 .hero-content h6 {
  font-size: 18px;
  text-transform: uppercase;
  color: rgb(0, 0, 0);
  font-weight: 600;
  margin-bottom: 15px;
  display: inline-block;
  position: relative;
  padding-left: 55px;
}

.hero-1 .hero-content h6::before {
  position: absolute;
  top: 9px;
  left: 0px;
  content: "";
  width: 33px;
  height: 5px;
  background-color: rgb(56, 75, 255);
}

.hero-1 .hero-content h1 {
  text-transform: initial;
  margin-bottom: 30px;
  letter-spacing: 6px;
}

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

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

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

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

@media (max-width: 575px) {
  .hero-1 .hero-content h1 {
    font-size: 32px;
    margin-bottom: 20px;
    letter-spacing: normal;
  }
}

.hero-1 .hero-content p {
  font-size: 18px;
  font-weight: 500;
}

.hero-1 .hero-content .hero-button {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .hero-1 .hero-content .hero-button {
    margin-top: 40px;
  }
}

@media (max-width: 575px) {
  .hero-1 .hero-content .hero-button {
    margin-top: 25px;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.hero-1 .hero-content .hero-button .video-btn {
  background-color: var(--theme);
  color: var(--white);
  display: inline-block;
  font-size: 16px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  position: relative;
}

.hero-1 .hero-content .hero-button .video-btn::before {
  position: absolute;
  inset: 50% 0px 0px 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--theme);
  content: "";
  transform: translate(-50%, -50%);
}

.hero-1 .hero-content .hero-button .button-text span {
  font-size: 16px;
  color: var(--header);
  font-weight: bold;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

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

  100% {
    box-shadow: rgba(244, 68, 56, 0) 0px 0px 0px 0px;
  }
}

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

  100% {
    box-shadow: rgba(244, 68, 56, 0) 0px 0px 0px 0px;
  }
}

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

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

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

@keyframes spinner {
  100% {
    transform: rotateZ(360deg);
  }
}

@-webkit-keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

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

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

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

  100% {
    transform: rotate(0deg);
  }
}

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

  100% {
    width: 100%;
  }
}

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

  100% {
    width: 100%;
  }
}

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

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

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

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

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

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

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

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

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

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

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

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

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

@keyframes shine {
  0% {
    mask-position: 150% center;
  }

  100% {
    mask-position: -50% center;
  }
}

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

  50% {
    transform: translateX(30px);
  }

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

.bounce-x {
  animation: 7s linear 0s infinite normal none running bounce-x;
}

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

.pricing-section .left-shape {
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.pricing-section .right-shape {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: -1;
}

.mt-170 {
  margin-top: 10%;
}

.line-shape {
  position: absolute;
}

.main {
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto !important;
  width: 68% !important;
  margin-left: -68px !important;
}

.dotlottie {
  width: 600px;
  height: 600px;
}

.lottie-frame {
  width: 140%;
  height: auto;
  opacity: 0.2;
}

.hero-img {
  position: absolute;
  top: 21%;
  left: 21%;
}
.hero-img-img{
  width: 158%;


    
}

@media (max-width: 575px) {
  .lottie-frame {
    width: 100%;
    height: auto;
    margin-left: 0px;
  }

  .hero-img {
    position: absolute;
    top: 21%;
    left: 0px;
  }

  .hero-img-img {
    width: 18rem;
  }
}

.features {
  position: relative;
  top: -136px;
  z-index: 9;
  background-color: rgb(255, 255, 255);
  padding: 39px;
  border-radius: 20px;
  box-shadow: rgba(242, 247, 251, 0.63) 0px 10px 20px 10px;
}

.feat-items {
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.video-box {
  position: relative;
  z-index: 0;
  top: 55px;
  left: -56px;
}

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

.section-padding-two {
  padding: 100px 0px;
}

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

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

.about-wrapper .about-image-items {
  position: relative;
}

.about-wrapper .about-image-items .video-box {
  position: absolute;
  top: 50%;
  left: 73%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.about-wrapper .about-image-items .video-box-two {
  position: absolute;
  top: 116px;
  left: 87%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.about-wrapper .about-image-items .video-box .video-buttton {
  width: 142px;
  height: 142px;
  line-height: 142px;
  text-align: center;
  border-radius: 50%;
  background: var(--liner);
  display: inline-block;
  z-index: 9;
  font-size: 24px;
  color: var(--white);
  position: relative;
}

.about-wrapper .about-image-items .video-box .video-buttton .text-circle {
  position: absolute;
  top: 7%;
  left: 7%;
  animation: 10s linear 0s infinite normal none running cir36;
}

.about-wrapper .about-image-items .counter-shape {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  position: absolute;
  top: -30px;
  left: -50px;
  z-index: 1;
}

.about-wrapper .about-image-items .counter-shape-two {
  display: flex;
  align-items: center;
  gap: 21px;
  padding: 24px;
  position: absolute;
  top: 66px;
  left: 145px;
  z-index: 1;
}

.visson {
  display: flex;
  margin-top: 30px;
}

.visson-inner {
  margin-left: 20px;
}

.img-about {
  width: 90%;
}

@media (max-width: 575px) {
  .about-wrapper .about-image-items .counter-shape {
    left: 0px;
    position: relative;
  }

  .about-wrapper .about-image-items .counter-shape-two {
    left: 0px;
    position: relative;
  }

  .img-about {
    width: 100% !important;
  }

  .about-wrapper .about-image-items .video-box {
    top: -7%;
    left: 75%;
  }

  .visson {
    display: flex;
    flex-direction: column;
  }

  .visson-inner {
    margin-left: 0px;
  }

  .about-wrapper .about-image-items .video-box-two {
    left: 73%;
  }

  .section-padding-two {
    padding: 50px 0px;
  }
}

.about-wrapper .about-image-items .counter-shape .content h3 {
  font-size: 28px;
  font-weight: bold;
}

.about-wrapper .about-image-items .about-image-1 {
  max-width: 415px;
  height: 445px;
  position: relative;
}

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

.about-wrapper .about-image-items .about-image-1 .about-image-2 {
  position: absolute;
  bottom: -13%;
  right: -35%;
}

@media (max-width: 1399px) {
  .about-wrapper .about-image-items .about-image-1 .about-image-2 {
    right: -20%;
  }
}

@media (max-width: 1199px) {
  .about-wrapper .about-image-items .about-image-1 .about-image-2 {
    width: 200px;
    bottom: 0px;
    right: -10%;
  }

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

@media (max-width: 991px) {
  .about-wrapper .about-image-items .about-image-1 .about-image-2 {
    bottom: -13%;
    right: -35%;
  }
}

@media (max-width: 575px) {
  .about-wrapper .about-image-items .about-image-1 .about-image-2 {
    width: 140px;
    bottom: initial;
    top: 0px;
    right: 0px;
  }
}

.about-wrapper .about-image-items .about-image-1::after {
  content: "";
  width: 100%;
  height: 88%;
  position: absolute;
  right: -55px;
  top: 20%;
  border: 3px solid var(--theme);
  z-index: -1;
}

@media (max-width: 1199px) {
  .about-wrapper .about-image-items .about-image-1::after {
    right: -30px;
  }
}

@media (max-width: 991px) {
  .about-wrapper .about-image-items .about-image-1::after {
    width: 100%;
    height: 88%;
    right: -55px;
    top: 20%;
  }
}

@media (max-width: 575px) {
  .about-wrapper .about-image-items .about-image-1::after {
    display: none;
  }
}

.about-wrapper .about-content .about-icon-items {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 0px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 40px;
}

@media (max-width: 1399px) {
  .about-wrapper .about-content .about-icon-items {
    flex-wrap: wrap;
    padding-bottom: 30px;
    margin-top: 30px;
  }
}

.about-wrapper .about-content .about-icon-items .icon-items {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 10px;
}

.about-wrapper .about-content .about-icon-items .icon-items .icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(to right, rgb(113, 156, 181) 0%, rgb(54, 71, 235) 100%);
  color: var(--white);
}

.about-wrapper .about-content .about-icon-items .icon-items .content {
  flex-basis: 60%;
}

.about-wrapper .about-content .about-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
}

@media (max-width: 1199px) {
  .about-wrapper .about-content .about-author {
    flex-wrap: wrap;
  }
}

.about-wrapper .about-content .about-author .author-image {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-wrapper .about-content .about-author .author-image .content p {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  margin-top: -2px;
}

.about-wrapper.style-2 .about-image-items .circle-shape {
  position: absolute;
  top: 0px;
  right: 25%;
  animation: 10s linear 0s infinite normal none running cir36;
}

.about-wrapper.style-2 .about-image-items .counter-shape {
  background-color: var(--theme);
  bottom: -70px;
  left: 30px;
}

@media (max-width: 991px) {
  .about-wrapper.style-2 .about-image-items .counter-shape {
    bottom: 20px;
  }
}

.about-wrapper.style-2 .about-image-items .counter-shape .icon {
  filter: grayscale(100%) brightness(300%);
}

.about-wrapper.style-2 .about-image-items .counter-shape .content h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}

.about-wrapper.style-2 .about-image-items .counter-shape .content h3 span {
  font-size: 28px;
  font-weight: bold;
  margin-right: 5px;
}

.about-wrapper.style-2 .about-image-items .counter-shape .content p {
  font-size: 14px;
  color: var(--white);
}

.about-wrapper.style-2 .about-image-items .about-image-1 {
  max-width: 386px;
  height: 415px;
}

@media (max-width: 991px) {
  .about-wrapper.style-2 .about-image-items .about-image-1 {
    max-width: 550px;
    height: 530px;
  }
}

@media (max-width: 767px) {
  .about-wrapper.style-2 .about-image-items .about-image-1 {
    max-width: 450px;
    height: 415px;
  }
}

@media (max-width: 575px) {
  .about-wrapper.style-2 .about-image-items .about-image-1 {
    max-width: 550px;
    height: 500px;
  }
}

.about-wrapper.style-2 .about-image-items .about-image-1 .about-image-2 {
  border: 10px solid var(--white);
  box-shadow: var(--box-shadow);
  right: -40%;
}

@media (max-width: 1199px) {
  .about-wrapper.style-2 .about-image-items .about-image-1 .about-image-2 {
    right: -20%;
  }
}

@media (max-width: 575px) {
  .about-wrapper.style-2 .about-image-items .about-image-1 .about-image-2 {
    right: 0px;
  }
}

.about-wrapper.style-2 .about-image-items .about-image-1::after {
  display: none;
}

.section-title span {
  color: var(--theme);
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  animation: 1s ease-in-out 0s 1 normal forwards running fadeInUp;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

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

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
}

@media (max-width: 767px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}

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

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

.section-title span {
  color: var(--theme);
  margin-bottom: 10px;
  display: inline-block;
  font-weight: 500;
  text-transform: uppercase;
}

.section-title h2 span {
  color: var(--theme);
  font-weight: 700;
  margin-bottom: 0px;
  text-transform: capitalize;
}

.service-wrapper {
  margin-bottom: 187px;
}

.service-wrapper .service-text {
  margin-top: 50px;
  text-align: center;
}

.service-wrapper .service-text h6 {
  font-size: 16px;
}

.service-wrapper .service-text h6 a {
  font-weight: 600;
  color: var(--theme);
  text-decoration: underline;
}

.service-box-items {
  margin-top: 30px;
  background-color: var(--white);
  padding: 15px 20px;
  position: relative;
  z-index: 9;
  text-align: center;
  border: 1px solid rgb(101, 131, 254);
  border-radius: 10px;
  height: 93%;
  width: 122%;
}

.service-box-items-new {
  height: 93%;
  width: 100%;
}

.service-box-items-one {
  border: 1px solid rgb(26, 162, 255);
}

.service-box-items-two {
  border: 1px solid rgb(209, 174, 229);
}

.service-box-items-three {
  border: 1px solid rgb(160, 220, 156);
}

.service-box-items-four {
  border: 1px solid rgb(250, 177, 190);
}

.service-p {
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-align: left;
  color: rgb(115, 120, 135);
  padding: 10px 0px;
}

@media (max-width: 575px) {
  .service-box-items {
    width: 100%;
  }
}

.service-box-items::before {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  content: "";
  border-radius: 9px;
  background: var(--liner);
  transform: scale(1, 0);
  transition: transform 500ms ease 0s;
  transform-origin: center bottom;
  z-index: -1;
}

.service-box-items::after {
  position: absolute;
  top: -50px;
  right: 0px;
  width: 105px;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/line-shape.png");
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
}

.service-box-items .icon {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-left: 0px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.service-box-items .icon-new {
  position: relative;
  z-index: 2;
  display: flex;
  margin-left: 0px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.service-box-items .icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 80px;
  height: 80px;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/line-shape.png");
  z-index: -1;
  transition: all 0.4s ease-in-out 0s;
}

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

.service-box-items .content h4 {
  margin-bottom: 5px;
  font-weight: bold;
}

.service-box-items .content h4 a {
  color: var(--header);
}

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

.service-box-items:hover::before {
  transform: scale(1, 1);
  transform-origin: center top;
}

.service-box-items:hover::after {
  top: 0px;
  visibility: visible;
  opacity: 1;
}

.service-box-items:hover .icon::before {
  filter: grayscale(100%) brightness(300%);
}

.service-box-items:hover .content h4 a {
  color: var(--white);
}

.service-box-items:hover .content p {
  color: var(--white);
}

.service-box-items:hover .content .theme-btn-2 {
  color: var(--white);
}

.service-box-items.active::before {
  transform: scale(1, 1);
  transform-origin: center top;
}

.service-box-items.active::after {
  top: 0px;
  visibility: visible;
  opacity: 1;
}

.service-box-items.active .icon::before {
  filter: grayscale(100%) brightness(300%);
}

.service-box-items.active .content h4 a {
  color: var(--white);
}

.service-box-items.active .content p {
  color: var(--white);
}

.service-box-items.active .content .theme-btn-2 {
  color: var(--white);
}

.testimonial-section {
  position: relative;
}

.testimonial-wrapper {
  padding: 80px;
  position: relative;
  background-color: rgba(242, 212, 191, 0.13);
  border-radius: 30px;
  box-shadow: rgba(242, 247, 251, 0.63) 0px 10px 20px 10px;
  border: 1px solid rgba(242, 212, 191, 0.47);
}

.testimonial-wrapper .swiper-dot-2 {
  position: absolute;
  bottom: 50px;
  right: 80px;
}

@media (max-width: 991px) {
  .testimonial-wrapper .swiper-dot-2 {
    display: none;
  }
}

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

@media (max-width: 575px) {
  .testimonial-wrapper {
    padding: 50px 17px;
  }
}

.testimonial-wrapper .testimonial-items {
  display: flex;
  align-items: center;
  gap: 55px;
  padding-bottom: 20px;
}

@media (max-width: 1199px) {
  .testimonial-wrapper .testimonial-items {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .testimonial-wrapper .testimonial-items {
    gap: 40px;
  }
}

.testimonial-wrapper .testimonial-items .tesimonial-image {
  max-width: 366px;
  flex-basis: 85%;
  height: 311px;
  position: relative;
}

@media (max-width: 1399px) {
  .testimonial-wrapper .testimonial-items .tesimonial-image {
    flex-basis: 100%;
  }
}

.testimonial-wrapper .testimonial-items .tesimonial-image .star {
  padding: 10px 14px;
  border-radius: 30px;
  background-color: var(--white);
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: -7%;
  transform: translateX(-50%);
}

.testimonial-wrapper .testimonial-items .tesimonial-image .star i {
  color: var(--theme);
}

.testimonial-wrapper .testimonial-items .tesimonial-image .star i:nth-last-of-type(1) {
  color: var(--theme);
  opacity: 0.25;
}

.testimonial-wrapper .testimonial-items .testimonial-content p {
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid rgba(56, 75, 255, 0.2);
  padding-bottom: 30px;
}

@media (max-width: 575px) {
  .testimonial-wrapper .testimonial-items .testimonial-content p {
    padding-bottom: 20px;
    font-size: 15px;
    line-height: 20px;
  }
}

.testimonial-wrapper .testimonial-items .testimonial-content .author-details {
  padding-top: 35px;
}

@media (max-width: 575px) {
  .testimonial-wrapper .testimonial-items .testimonial-content .author-details {
    padding-top: 20px;
  }
}

.testimonial-wrapper .testimonial-items .testimonial-content .author-details h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.slick-slider .element {
  border-radius: 5px;
  margin: 0px 10px;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  font-size: 20px;
}

.slick-slider .slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.quote {
  position: absolute;
  left: 77%;
  top: 86%;
  z-index: 1;
}
.quote-w{
  width:150px;
}

.title-inner {
  font-size: 17px !important;
  font-weight: 700 !important;
}

@media (max-width: 575px) {
  .quote {
    position: absolute;
    top: 17%;
    left: 70%;
    z-index: 1;
  }
  .quote-w{
    width:80px;
  }
}

.footer-section {
  position: relative;
}

.footer-bg {
  background-color: transparent;
}

.footer-p {
  color: var(--footer-p);
}

.footer-logo {
  width: 30%;
}

.footer-section .shape-1 {
  position: absolute;
  bottom: 0px;
  left: -5%;
}

.footer-section .shape-2 {
  position: absolute;
  bottom: 0px;
  right: -3%;
}

.footer-section .footer-shape-4 {
  position: absolute;
  top: 0px;
  left: -5%;
}

.footer-widgets-wrapper {
  padding: 136px 0px 20px;
  position: relative;
  z-index: 9;
  margin-top: -4rem;
}

.footer-widgets-wrapper .shape-1 {
  position: absolute;
  bottom: 0px;
  left: 0px;
}

.footer-widgets-wrapper .shape-2 {
  position: absolute;
  top: 0px;
  right: 0px;
}

@media (max-width: 1199px) {
  .footer-widgets-wrapper {
    padding: 60px 0px 90px;
  }
}

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

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

.footer-widgets-wrapper .single-footer-widget .widget-head {
  margin-bottom: 30px;
}

@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .widget-head {
    margin-bottom: 20px;
  }
}

.footer-widgets-wrapper .single-footer-widget .widget-head h3 {
  font-weight: bold;
  color: var(--white);
  font-size: 24px;
  border-bottom: 1px solid var(--white);
  display: inline-block;
  padding-bottom: 20px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content p {
  color: var(--text-2);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
  margin-top: 40px;
  gap: 15px;
  position: relative;
  z-index: 9;
}

@media (max-width: 575px) {
  .footer-widgets-wrapper .single-footer-widget .footer-content .social-icon {
    margin-top: 20px;
  }

  .footer-logo {
    width: 42%;
  }

  .footer-bg {
    background: linear-gradient(rgb(41, 46, 52) 0%, rgb(0, 29, 46) 100%) !important;
  }
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 16px;
  display: block;
  color: var(--white);
  transition: all 0.4s ease-in-out 0s;
  text-align: center;
  background-color: transparent;
  border: 1px solid rgba(227, 227, 227, 0.2);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid transparent;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info {
  margin-top: 20px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li {
  color: var(--footer-p);
  font-size: 15px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li:not(:last-child) {
  margin-bottom: 10px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li i {
  color: var(--footer-p);
  margin-right: 10px;
  font-size: 13px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .contact-info li a {
  color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input {
  position: relative;
  margin-top: 40px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input {
  background: transparent;
  outline: none;
  padding: 18px 20px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input input::placeholder {
  color: rgb(176, 175, 204);
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 60px;
  height: 55px;
  line-height: 70px;
  border-radius: 4px;
  text-align: center;
  background-color: var(--theme);
  color: var(--white);
  bottom: 5px;
}

.footer-widgets-wrapper .single-footer-widget .footer-content .footer-input .newsletter-btn i {
  font-size: 32px;
}

.footer-widgets-wrapper .single-footer-widget .list-area li {
  transition: all 0.4s ease-in-out 0s;
}

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

.footer-widgets-wrapper .single-footer-widget .list-area li a {
  color: var(--text-2);
  font-size: 15px;
}

.footer-widgets-wrapper .single-footer-widget .list-area li a i {
  margin-right: 5px;
  font-size: 11px;
}

.footer-widgets-wrapper .single-footer-widget .list-area li:hover {
  margin-left: 5px;
}

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

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .thumb {
  width: 80px;
  height: 80px;
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .thumb img {
  width: 100%;
  height: 100%;
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content .post-date {
  margin-bottom: 10px;
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content .post-date li {
  color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 {
  font-size: 16px;
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 a {
  color: var(--white);
}

.footer-widgets-wrapper .single-footer-widget .recent-post-area .recent-post-items .content h6 a:hover {
  color: var(--theme);
}

.footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item {
  overflow: hidden;
}

.footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item .thumb {
  width: 80px;
  height: 80px;
  float: left;
  margin-right: 20px;
}

.footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item .post-content .post-date {
  color: var(--theme);
  margin-bottom: 10px;
}

.footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item .post-content .post-date i {
  margin-right: 10px;
}

.footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item .post-content h6 {
  font-size: 16px;
}

.footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item .post-content h6 a {
  color: var(--text);
}

.footer-widgets-wrapper .single-footer-widget .footer-post .single-post-item .post-content h6 a:hover {
  color: var(--theme);
}

@media (min-width: 1200px) {
  .footer-widgets-wrapper .single-footer-widget.style-margin {
    margin-left: 70px;
  }
}

.cta-section {
  position: relative;
}

.cta-section::before {
  position: absolute;
  inset: 50% 0px 0px;
  width: 100%;
  height: 100%;
  content: "";
  background-color: transparent;
  z-index: -1;
}

.cta-wrapper {
  padding: 38px 70px;
  background: linear-gradient(#6a9ce5 0%, rgb(4 42 65) 100%);
  position: relative;
  margin-top: 125px;
  z-index: 10;
  border-radius: 40px;
  max-width: 987px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1199px) {
  .cta-wrapper {
    margin-top: 0px;
  }
}

@media (max-width: 767px) {
  .cta-wrapper {
    padding: 55px;
  }
}

@media (max-width: 575px) {
  .cta-wrapper {
    padding: 45px;
  }
}

.cta-wrapper .mask-shape {
  position: absolute;
  top: 0px;
  opacity: 0.3;
  left: 0%;
}

@media (max-width: 1199px) {
  .cta-wrapper .mask-shape {
    display: none;
  }
}

.cta-wrapper .circle-shape {
  position: absolute;
  bottom: 10px;
  left: 57rem;
  animation: 10s linear 0s infinite normal none running cir36;
}

@media (max-width: 1199px) {
  .cta-wrapper .circle-shape {
    display: none;
  }
}

.cta-wrapper .cta-image {
  position: absolute;
  bottom: 0px;
  left: 100px;
  height: 357px;
  max-width: 393px;
}

@media (max-width: 1399px) {
  .cta-wrapper .cta-image {
    left: 30px;
  }
}

@media (max-width: 1199px) {
  .cta-wrapper .cta-image {
    display: none;
  }
}

.cta-wrapper .cta-image {
  position: absolute;
  bottom: 0px;
  left: 100px;
  height: 357px;
  max-width: 393px;
}

@media (max-width: 1399px) {
  .cta-wrapper .cta-image {
    left: 30px;
  }
}

@media (max-width: 1199px) {
  .cta-wrapper .cta-image {
    display: none;
  }
}

.cta-wrapper .cta-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: 512px;
  position: relative;
  z-index: 9;
}

@media (max-width: 1399px) {
  .cta-wrapper .cta-items {
    margin-left: 350px;
  }
}

@media (max-width: 1199px) {
  .cta-wrapper .cta-items {
    margin-left: 0px;
  }
}

@media (max-width: 767px) {
  .cta-wrapper .cta-items {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .cta-wrapper .cta-items {
    gap: 20px;
  }
}

.cta-wrapper .cta-items h3 {
  font-size: 32px;
  font-weight: bold;
  color: var(--white);
  line-height: 156%;
}

@media (max-width: 767px) {
  .cta-wrapper .cta-items h3 {
    font-size: 28px;
  }
}

@media (max-width: 575px) {
  .cta-wrapper .cta-items h3 {
    font-size: 24px;
  }
}

.content-form {
  width: 100%;
  height: 50px;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 4px 10px;
  border-radius: 60px;
  overflow: hidden;
}

.subscription {
  position: relative;
  width: 100%;
  height: 100%;
}

.subscription .add-email {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 0px 20px;
  color: var(--footer-p);
  background-color: rgb(30, 46, 78);
}

.subscription .submit-email {
  position: absolute;
  top: 0px;
  right: 0px;
  height: calc(100% - 2px);
  width: 131px;
  border: none;
  border-radius: 60px;
  outline: none;
  margin: 1px;
  padding: 0px 20px;
  cursor: pointer;
  background: var(--liner);
  color: rgb(255, 255, 255);
  transition: width 0.35s ease-in-out 0s, background 0.35s ease-in-out 0s;
}

.subscription.done .submit-email {
  width: calc(100% - 2px);
  background: rgb(192, 224, 46);
}

.subscription .submit-email .before-submit,
.subscription .submit-email .after-submit {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 49px;
  transition: visibility 0.35s ease-in-out 0s, opacity 0.35s ease-in-out 0s;
}

.subscription.done .submit-email .before-submit,
.subscription:not(.done) .submit-email .after-submit {
  visibility: hidden;
  opacity: 0;
}

.subscription .submit-email .after-submit {
  transition-delay: 0.35s;
}

.subscription:not(.done) .submit-email .before-submit,
.subscription.done .submit-email .after-submit {
  visibility: visible;
  opacity: 1;
}

.clock {
  width: 10rem;
  height: 10rem;
  position: relative;
  border: 7px solid rgb(13, 4, 33);
  box-shadow: rgba(67, 67, 67, 0.5) -4px -4px 10px, rgba(0, 0, 0, 0.5) 4px 4px 10px inset, rgba(67, 67, 67, 0.5) -4px -4px 10px inset, rgba(0, 0, 0, 0.3) 4px 4px 10px;
  border-radius: 50%;
  margin: 50px auto;
  text-align: center;
}

.outer-clock-face {
  position: relative;
  background: rgb(0 0 0);
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 1px solid rgba(242, 242, 242, 0.16);
}

.outer-clock-face::after {
  transform: rotate(90deg);
}

.outer-clock-face::after,
.outer-clock-face::before,
.outer-clock-face .marking {
  content: "";
  position: absolute;
  width: 3px;
  height: 100%;
  background: rgb(189, 189, 203);
  z-index: 0;
  left: 49%;
}

.outer-clock-face .marking {
  background: rgb(189, 189, 203);
  width: 3px;
}

.outer-clock-face .marking.marking-one {
  transform: rotate(30deg);
}

.outer-clock-face .marking.marking-two {
  transform: rotate(60deg);
}

.outer-clock-face .marking.marking-three {
  transform: rotate(120deg);
}

.outer-clock-face .marking.marking-four {
  transform: rotate(150deg);
}

.inner-clock-face {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 80%;
  height: 80%;
  background: rgb(0 0 0);
  border-radius: 100%;
  z-index: 1;
}

.inner-clock-face::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 10px;
  margin-left: -9px;
  margin-top: -6px;
  background: rgb(77, 75, 99);
  z-index: 11;
}

.hand {
  width: 50%;
  right: 50%;
  height: 3px;
  background: rgb(56, 75, 255);
  position: absolute;
  top: 50%;
  border-radius: 6px;
  transform-origin: 100% center;
  transform: rotate(90deg);
  transition-timing-function: cubic-bezier(0.1, 2.7, 0.58, 1);
}

.hand.hour-hand {
  width: 31%;
  z-index: 3;
}

.hand.min-hand {
  height: 2px;
  z-index: 10;
  width: 44%;
}

.hand.second-hand {
  background: rgb(255, 101, 132);
  width: 45%;
  height: 1px;
}

.border-shape-new {
  position: absolute;
  top: 49px;
  left: 0px;
  transform: rotate(180deg);
}

.breadcrumb-wrapper {
  position: relative;
  overflow: hidden;
}

.breadcrumb-wrapper::before {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(270.07deg, rgb(0, 43, 152) 0.07%, rgb(0, 6, 12) 99.95%);
  opacity: 0.75;
}

.breadcrumb-wrapper .page-heading {
  position: relative;
  padding: 180px 0px;
  text-align: center;
  z-index: 9;
}

@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading {
    padding: 140px 0px;
  }
}

@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    padding: 120px 0px;
  }
}

@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    padding: 100px 0px;
  }
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading {
    padding: 80px 0px;
  }
}

.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 65px;
  position: relative;
  z-index: 9;
}

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

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

.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
  justify-content: center;
}

@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    margin-top: 15px;
  }
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--white);
  text-transform: capitalize;
  font-weight: 600;
}

.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--white);
  transition: all 0.4s ease-in-out 0s;
}

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

.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--white);
}

.breadcrumb-wrapper .border-shape {
  position: absolute;
  top: 20px;
  left: 0px;
}

.breadcrumb-wrapper .line-shape {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
}

.breadcrumb-wrapper .line-shape img {
  width: 100%;
  height: 100%;
}

.contact-wrapper-2 .contact-left-items .contact-info-area-2 {
  padding: 40px;
  background: linear-gradient(rgb(2, 13, 28) 0%, rgb(9, 52, 111) 65%, rgb(9, 60, 130) 100%);
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}

.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 1199px) {
  .contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items {
    flex-wrap: wrap;
  }
}

.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  position: relative;
}

.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .icon::before {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("../img/circle-3.png");
  animation: 10s linear 0s infinite normal none running cir36;
}

.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .content p {
  color: var(--white);
  margin-bottom: 5px;
}

.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .content h3 {
  font-size: 24px;
  color: var(--white);
}

.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items .content h3 a {
  color: var(--white);
}

.contact-wrapper-2 .contact-left-items .contact-info-area-2 .contact-info-items.border-none {
  border: none !important;
}

.contact-wrapper-2 .contact-left-items .video-image {
  position: relative;
}

.contact-wrapper-2 .contact-left-items .video-image img {
  width: 100%;
  height: 100%;
}

.contact-wrapper-2 .contact-left-items .video-image .video-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

.contact-wrapper-2 .contact-left-items .video-image .video-box .video-btn {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
  color: var(--theme);
  background-color: var(--white);
}

.contact-wrapper-2 .contact-left-items .video-image .video-box .ripple::before,
.contact-wrapper-2 .contact-left-items .video-image .video-box .ripple::after {
  box-shadow: rgba(255, 255, 255, 0.8) 0px 0px 0px 0px;
}

.contact-wrapper-2 .contact-content {
  margin-left: 40px;
  padding: 54px 40px 30px 0px;
}

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

.contact-wrapper-2 .contact-content h2 {
  margin-bottom: 10px;
}

.contact-wrapper-2 .contact-content .contact-form-items {
  margin-top: 30px;
}

.contact-wrapper-2 .contact-content .contact-form-items .form-clt span {
  color: var(--header);
  font-weight: 600;
  text-transform: capitalize;
}

.contact-wrapper-2 .contact-content .contact-form-items .form-clt input,
.contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
  border: 1px solid var(--border);
  color: var(--text);
  padding: 18px 20px;
  border-radius: 5px;
}

.contact-wrapper-2 .contact-content .contact-form-items .form-clt input::placeholder,
.contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea::placeholder {
  color: var(--text);
}

.contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
  padding-bottom: 150px;
}

.contact-wrapper .contact-content {
  padding: 0px 60px 80px 0px;
  margin-left: 50px;
  margin-top: 250px;
}

.contact-form-items .form-clt span {
  color: var(--white);
  margin-bottom: 20px;
  display: inline-block;
}

.form-clt-two {
  width: 100%;
  outline: none;
  border: 1px solid rgba(73, 80, 87, 0.18);
  padding: 11px;
  border-radius: 5px;
  margin-top: 10px;
  color: rgb(0, 0, 0) !important;
}

.contact-form-items .form-clt input,
.contact-form-items .form-clt textarea {
  width: 100%;
  outline: none;
  background-color: transparent;
  border: 1px solid rgba(56, 75, 255, 0.12);
  color: rgb(13, 110, 253);
  padding: 11px;
  border-radius: 5px;
}

.contact-wrapper-2 .contact-content .contact-form-items .form-clt span {
  color: var(--header);
  font-weight: 600;
  text-transform: capitalize;
}

.contact-wrapper-2 .contact-content .contact-form-items .form-clt input,
.contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
  border: 1px solid var(--border);
  color: var(--text);
  padding: 18px 20px;
  border-radius: 5px;
}

.contact-wrapper-2 .contact-content .contact-form-items .form-clt input::placeholder,
.contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea::placeholder {
  color: var(--text);
}

.contact-wrapper-2 .contact-content .contact-form-items .form-clt textarea {
  padding-bottom: 150px;
}

.map-style {
  width: 1290px;
  height: 450px;
}

@media (max-width: 767px) {

  .contact-form-items .form-clt input,
  .contact-form-items .form-clt textarea {
    padding: 14px 20px;
  }
}
@media (max-width: 575.98px) {
  .map-style {
    width: 404px !important;
    height: 450px;
}
}

@media (max-width: 575px) {

  .contact-form-items .form-clt input,
  .contact-form-items .form-clt textarea {
    padding: 12px 18px;
  }

  .map-style {
    width: 297px;
    height: 450px;
  }
}

.contact-form-items .form-clt input::placeholder,
.contact-form-items .form-clt textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form-items .form-clt textarea {
  padding-bottom: 70px;
}

.h4-new {
  font-size: 24px;
  text-align: left;
  font-weight: 600;
  color: rgb(255, 255, 255);
}

.inside-info {
  padding: 25px 0px;
}

.h3-new {
  font-size: 19px;
  text-align: left;
  color: rgb(255, 255, 255);
  font-weight: 500;
  text-transform: uppercase;
}

.p-new {
  padding-top: 10px;
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
  text-align: left;
  color: rgb(176, 174, 195);
}

.bg-for-form {
  background-color: rgba(217, 217, 217, 0.11);
  height: 48.7em;
  margin-left: -12px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
}

.con-img {
  position: absolute;
  top: 31%;
  left: 75%;
}

.shape-hexa {
  position: absolute;
  z-index: 0;
  opacity: 0.2;
}

.shape-hexa-two {
  position: absolute;
  top: 122%;
  left: 29%;
  transform: rotate(180deg);
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .contact-wrapper .contact-content {
    margin-top: 210px;
  }
}

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

@media (max-width: 991px) {
  .contact-wrapper .contact-content {
    padding: 50px;
  }
}

@media (max-width: 767px) {
  .contact-wrapper .contact-content {
    padding: 50px 40px;
  }
}

@media (max-width: 575px) {
  .contact-wrapper .contact-content {
    padding: 40px 30px;
  }

  .bg-for-form {
    background-color: rgba(217, 217, 217, 0.11);
    height: auto;
    margin-left: 0px;
    border: none;
  }

  .contact-wrapper-2 .contact-left-items .contact-info-area-2 {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    padding: 16px;
  }

  .shape-hexa-two {
    position: absolute;
    left: 46%;
    top: 190%;
    transform: rotate(180deg);
    z-index: 0;
  }
}

.about-wrapper .about-image-items .counter-shape-three {
  display: flex;
  align-items: center;
  gap: 21px;
  padding: 24px;
  position: absolute;
  top: 66px;
  left: 0%;
  z-index: 1;
}

.about-icon-items-service {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 40px;
  justify-content: flex-start;
}

.lan-icon:hover {
  transform: translateY(-10px);
  transition: all 0.5s ease 0s;
}

.service-btn {
  padding: 19px;
  border-bottom: 1px solid rgb(107, 137, 238);
  color: rgb(93, 151, 208);
}

.service-btn:hover {
  background: -webkit-linear-gradient(top, rgb(249, 184, 125) 13%, rgb(54, 71, 235) 100%) text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

.about-button:hover {
  transform: translateY(-12px);
  transition: all 0.5s ease 0s;
}

@media (max-width: 575px) {
  .about-wrapper .about-image-items .counter-shape-three {
    left: 0px;
    position: relative;
  }

  .about-icon-items-service {
    gap: 15px;
    flex-wrap: wrap;
  }

  .icon-lan {
    width: 50px;
  }
}

.offer-section {
  position: relative;
}

.offer-section .line-shape {
  position: absolute;
  top: -13%;
  left: 0px;
}

.offer-section .line-shape img {
  width: 100%;
  height: 100%;
}

.offer-section .mask-shape {
  position: absolute;
  top: 10%;
  right: 0%;
}

.offer-items {
  margin-top: 65px;
  position: relative;
  text-align: center;
  z-index: 9;
  padding: 8px 10px 22px;
}

.offer-items::before {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0.3;
  border-radius: 8px;
  z-index: -1;
}

.offer-items .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(rgb(60, 114, 252) -210.71%, rgb(0, 6, 12) 100%);
  margin: -35px auto 0px;
  transition: all 0.4s ease-in-out 0s;
}

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

.offer-items .content h5 {
  color: var(--white);
}

.offer-items .shape-top {
  position: absolute;
  top: 50%;
  right: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out 0s;
}

.offer-items .shape-bottom {
  position: absolute;
  bottom: 50%;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out 0s;
}

.offer-items:hover .shape-top {
  top: -1px;
  right: -1px;
  opacity: 1;
  visibility: visible;
}

.offer-items:hover .shape-bottom {
  position: absolute;
  bottom: -1px;
  left: -1px;
  opacity: 1;
  visibility: visible;
}

.offer-items:hover .icon {
  background-image: none;
  background-color: var(--theme);
  transform: rotateY(360deg);
}

.offer-items:hover .icon svg path {
  fill: rgb(255, 255, 255);
}

.offer-items.active .shape-top {
  top: -1px;
  right: -1px;
  opacity: 1;
  visibility: visible;
}

.offer-items.active .shape-bottom {
  position: absolute;
  bottom: -1px;
  left: -1px;
  opacity: 1;
  visibility: visible;
}

.offer-items.active .icon {
  background-image: none;
  background-color: var(--theme);
  transform: rotateY(360deg);
}

.offer-items.active .icon svg path {
  fill: rgb(255, 255, 255);
}

.offer-items .icon-tech {
  text-align: center;
  margin: 0px auto;
  transition: all 0.4s ease-in-out 0s;
}

.tech-head {
  font-size: 25px;
  font-weight: 500;
  text-align: center;
  color: rgb(255, 255, 255);
  padding: 20px;
}

.tech-p {
  font-size: 15px;
  line-height: 21px;
  text-align: justify;
  font-weight: 400;
  color: rgb(115, 120, 135);
  padding: 20px;
}

.p-tag-tech {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  text-align: left;
  color: rgb(176, 175, 204);
}

@media (max-width: 575px) {
  .offer-items {
    margin-top: 65px;
    position: relative;
    text-align: left;
    z-index: 9;
    padding: 8px 5px 10px;
  }

  .tech-head {
    text-align: left;
    padding: 15px 10px;
  }

  .tech-p {
    font-size: 14px;
    text-align: left;
    padding: 13px 10px;
  }
}

.section-title-area-tech {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 9;
}

.tech-p-new {
  padding: 0px 120px;
  font-size: 13px;
  color: rgb(115, 120, 135);
  line-height: 21px;
}

.about-wrapper .about-image-items .counter-shape-code {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  position: absolute;
  top: 40px;
  left: -50px;
  z-index: 1;
}

.service-box-items-new-tech {
  height: 80%;
  width: 100%;
  display: flex;
  align-items: center;
}

.tech-icon {
  width: 150px;
}

@media (max-width: 767px) {
  .section-title-area-tech {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .tech-p-new {
    padding: 0px 10px;
    line-height: 20px;
  }

  .about-wrapper .about-image-items .counter-shape-code {
    left: 0px;
    position: relative;
  }

  .service-box-items-new-tech {
    height: auto;
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}

.service-box-items-career {
  margin-top: 30px;
  background-color: var(--white);
  padding: 15px 20px;
  position: relative;
  z-index: 9;
  text-align: left;
  border: 1px solid rgb(101, 131, 254);
  border-radius: 10px;
  height: 11em;
  width: 100%;
  box-shadow: rgb(231, 231, 231) 10px 10px 10px;
}

.flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media (max-width: 575px) {
  .service-box-items-career {
    width: 100%;
    height: auto;
  }

  .flex {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.app-img {
  width: 80%;
}

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

.project-items .project-image {
  position: relative;
  height: 353px;
}

.project-items .project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-items .project-image .project-content {
  position: absolute;
  bottom: -42px;
  left: 25px;
  right: 25px;
  padding: 20px 30px;
  background-color: var(--white);
  overflow: hidden;
  box-shadow: rgb(157, 169, 187) 0px 0px 10px;
}

.project-items .project-image .project-content::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
  width: 6px;
  height: 58px;
  content: "";
  background-color: var(--theme);
  transition: all 0.4s ease-in-out 0s;
}

.project-items .project-image .project-content p {
  color: var(--theme);
  font-weight: 500;
  margin-bottom: 5px;
}

.project-items .project-image .project-content h4 {
  font-weight: bold;
}

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

.project-items .project-image .project-content .icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  background-color: var(--white);
  box-shadow: var(--box-shadow-2);
  border-radius: 50%;
  text-align: center;
  color: var(--theme);
  position: absolute;
  top: 130px;
  right: 30px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-in-out 0s;
  transform: rotate(-40deg);
}

.project-items .project-image .project-content .icon:hover {
  background-color: var(--theme);
  color: var(--white);
}

.project-items:hover .project-image .project-content::before {
  height: 100%;
}

.project-items:hover .project-image .project-content .icon {
  top: 35px;
  opacity: 1;
  visibility: visible;
  transform: rotate(0deg);
}

.li-mou {
  padding: 10px !important;
}

@media (max-width: 575px) {
  .project-items {
    margin-top: 45px;
  }

  .li-mou {
    padding: 0px 0px 0px 16px !important;
    font-size: 14px !important;
  }
}

.block-img {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.block-img::before {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  content: "";
  background-image: linear-gradient(270.07deg, rgb(0, 43, 152) 0.07%, rgb(0, 6, 12) 99.95%);
  opacity: 0.75;
}

.new-style {
  gap: 61px;
  justify-content: flex-start;
}

.new-style-two {
  gap: 98px;
  justify-content: flex-start;
}

.new-style-new {
  gap: 99px;
  justify-content: flex-start;
}

.new-header-btn {
  width: 70%;
  padding: 12px;
  position: relative;
  top: 20%;
  left: 13%;
  background: rgba(255, 255, 255, 0.68);
  display: inline-block;
  box-shadow: rgb(185, 194, 212) 0px 0px 10px;
}

.btn-a {
  font-size: 16px;
  margin-left: auto;
  margin-right: auto;
  text-transform: capitalize;
  color: rgb(0, 0, 0) !important;
  font-weight: 600 !important;
}

.new-header-btn:hover {
  transition: all 0.5s ease-in-out 0s;
  box-shadow: rgb(185, 194, 212) 0px 0px 0px;
}

.tagline-header {
  font-size: 18px;
  color: rgb(255, 255, 255);
  font-weight: 500;
  padding: 40px 30px 20px;
  position: relative;
  z-index: 9;
  top: 10%;
}

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

.group-form {
  padding: 30px;
  border-radius: 10px;
  box-shadow: rgba(13, 110, 253, 0.11) 0px 0px 15px 2px;
}

.choose-box {
  margin-top: 30px;
  background-color: var(--white);
  padding: 15px 20px;
  position: relative;
  z-index: 9;
  text-align: left;
  border-radius: 10px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.wrapper {
  padding: 70px 0px;
}

.center-slider .slick-slide {
  background-color: rgb(179, 37, 50);
  color: rgb(255, 255, 255);
  height: 500px;
  margin: 0px 15px 0px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  transition: all 0.4s ease-in-out 0s;
  width: 500px !important;
}

.center-slider .slick-slide,
.center-slider .slick-slide[aria-hidden="true"]:not(.slick-cloned)~.slick-cloned[aria-hidden="true"] {
  transform: scale(0.8, 0.8);
  transition: all 0.4s ease-in-out 0s;
}

.center-slider .slick-center,
.center-slider .slick-slide[aria-hidden="true"]:not([tabindex="-1"])+.slick-cloned[aria-hidden="true"] {
  transform: scale(1.1);
  background-color: rgb(0, 0, 0);
}

.center-slider .slick-current.slick-active {
  transform: scale(1.1);
  background-color: rgb(0, 0, 0);
}

.slick-next,
.slick-prev {
  z-index: 5;
}

.slick-next {
  right: 15px;
}

.slick-prev {
  left: 15px;
}

.slick-next::before,
.slick-prev::before {
  color: rgb(0, 0, 0);
  font-size: 26px;
}

.img-team {
  height: 500px;
  width: 500px;
}

.img-3d-new {
  width: 134%;
  position: relative;
  margin-top: -61%;
  left: -16%;
}

.new-img {
  width: 150%;
  margin-left: -86px;
  margin-top: -121px;
}
.iso-mark{
  margin: 17px -32px;
}
.new-vector::before{
  position: absolute;
    inset: 0px;
    width: 100%;
    height: 100%;
    left: 86px;
    content: "";
    background-image: url('../img/Vector(4).png');
    background-repeat: no-repeat;
    opacity: 0.75;
    z-index: 0;
}
.we-hiring img{
  width: 107px;
    height: 107px;
    z-index: 11;
    position: fixed;
    right: 45px;
    top: 0;
    transform-origin: top;
    animation: we-are-hiring infinite linear 2s;
}

 

@media (max-width: 991px){
  .we-hiring {
     display:none;
  }
}
@keyframes we-are-hiring{
  0%{
    transform:rotate(-20deg);
  }
  50%{
    transform:rotate(20deg);
  }
  100%{
    transform:rotate(-20deg);
  }
}

/* Style for success message */
    #success-message {
        display: none;
        padding: 10px;
    font-size: 17px;
    background-color: #19875421;
    border: 1px solid #ddebe5;
    color: #404040;
    margin-bottom: 20px;
    position: relative;
    top: 33px;
    left: 42px;
    box-shadow: 0px 2px 9px #f1d3c0a3;
    width: 91%;
    }
@media (max-width: 575px) {
  .img-team {
    height: 150px;
    width: 150px;
  }
    #success-message {
    position: relative;
    left: 0px !important;
    width: 100% !important;
    }
    
  .center-slider .slick-slide {
    background-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    height: 150px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: all 0.4s ease-in-out 0s;
    width: 150px !important;
  }

  .img-3d {
    width: 100%;
  }

  .img-3d-new {
    width: 100%;
    margin-top: -30%;
    left: 0%;
  }

  .new-img {
    width: 100%;
    margin-left: 0px;
    margin-top: 0px;
  }
  .iso-mark{
    margin: 17px 0px;
  }
  .new-vector::before{
    position: absolute;
      inset: 0px;
      width: 100%;
      height: 100%;
      left: 86px;
      content: "";
      background-image: url('../img/Vector(4).png');
      background-repeat: no-repeat;
      opacity: 0.75;
      z-index: 0;
      display: none;
  }
}

@-webkit-keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}

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

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

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

@keyframes spinner {
  100% {
    transform: rotateZ(360deg);
  }
}