@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
:root {
  --primary-clr: #00aeef;
  --primary-rgb-clr: 0, 174, 239;
  --secondary-clr: #004b93;
  --secondary-rgb-clr: 0, 75, 147;
  --light-primary-clr1: #e4edff;
  --border-clr: #828282;
  --font-quicksand: "Quicksand", sans-serif;
  --section-padding: 100px 0;
  --heading-clr: #101010;
  --black-btn-clr: #101010;
  --anker-hover-clr: #101010;
}

.primary-bg {
  background: var(--primary-clr) !important;
}

.primary-text {
  color: var(--primary-clr) !important;
}

.primary-anchor {
  color: var(--primary-clr) !important;
}
.primary-anchor:hover {
  color: var(--anker-hover-clr) !important;
}

.secondary-anchor {
  color: var(--secondary-clr) !important;
}
.secondary-anchor:hover {
  color: var(--primary-clr) !important;
}

.secondary-bg {
  background: var(--secondary-clr) !important;
}

.secondary-text {
  color: var(--secondary-clr) !important;
}

.dark-anchor {
  color: #4f4f4f !important;
}
.dark-anchor:hover {
  color: var(--secondary-clr) !important;
}

.active-btn {
  background: var(--primary-clr) !important;
  color: white !important;
}

.active-text {
  color: var(--primary-clr) !important;
}

.font-quicksand {
  font-family: var(--font-quicksand);
}

.hero-section {
  position: relative;
}
.hero-section .shaps img {
  width: 200px;
  position: absolute;
}
.hero-section .shaps img:nth-child(1) {
  top: 20% !important;
  left: 0;
  width: 85px;
}
.hero-section .shaps img:nth-child(2) {
  bottom: -24% !important;
  left: 18%;
  width: 30px;
}
.hero-section .shaps img:nth-child(3) {
  bottom: -13%;
  left: 12%;
  width: 39px;
}
.hero-section .shaps img:nth-child(4) {
  top: 20% !important;
  right: 0;
  width: 100px;
}
.hero-section .shaps img:nth-child(5) {
  bottom: -15% !important;
  right: 10%;
  width: 70px;
}

.hero-content h3 {
  color: white;
  font-weight: 300;
}
.hero-content h1 {
  position: relative;
  font-size: clamp(1rem, 10vw, 4rem);
  font-family: var(--font-quicksand);
  letter-spacing: 1px;
  background-position: 400%;
  background-image: linear-gradient(252.98deg, #c244a0 23.44%, #f0394a 30.54%, #f46a28 37.37%, #f8b957 43.92%, #f47a24 57.03%, #4b97cb 62.77%, #418ee3 69.87%, #7e4dcb 75.88%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200%;
  -webkit-animation: textanimate 7s infinite alternate;
          animation: textanimate 7s infinite alternate;
}
@-webkit-keyframes textanimate {
  0% {
    background-position: left;
  }
  100% {
    background-position: right;
  }
}
@keyframes textanimate {
  0% {
    background-position: left;
  }
  100% {
    background-position: right;
  }
}
.hero-content h1[data-text]::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: white;
  -webkit-text-stroke: 5px transparent;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-content p {
  color: white;
  font-size: 24px;
  font-weight: 300;
}

.about-img {
  background: #fff url(assets/images/about/bg1.png) no-repeat center/cover;
  position: relative;
}
.about-img .shaps img {
  width: 90px;
  position: absolute;
}
.about-img .shaps img:nth-child(1) {
  top: 10%;
  right: 0;
}
.about-img .shaps img:nth-child(2) {
  bottom: 0%;
  right: 5%;
}
.about-img .cover-img {
  position: relative;
  z-index: 1;
}
.about-img .cover-img img:nth-child(1) {
  width: 374px;
  margin-bottom: 7vw;
}
.about-img .cover-img img:nth-child(2) {
  width: 498px;
  position: absolute;
  bottom: -10px;
  right: 0;
}
.about-img .cover-img::before {
  content: "";
  width: 150px;
  height: 80px;
  position: absolute;
  bottom: 80px;
  left: -26px;
  background: url(assets/images/about/dots.png) no-repeat center/cover;
  z-index: -1;
}

div#particles-js {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.ready-package a.primary-btn {
  padding-block: 15px;
  gap: 15px;
}

.project-grid-v1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: repeat(5, 1fr);
  gap: 12px;
}
.project-grid-v1 .box {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  overflow: hidden;
}
.project-grid-v1 .box img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.project-grid-v1 .box:nth-child(2) {
  grid-column: span 2;
  grid-row: span 2;
}
.project-grid-v1 .box:nth-child(4) {
  grid-row: span 2;
}
.project-grid-v1 .box:nth-child(5) {
  grid-row: span 2;
}
.project-grid-v1 .box:nth-child(6) {
  grid-row: span 1;
}
.project-grid-v1 .box:nth-child(7) {
  grid-row: span 1;
}
.project-grid-v1 .box:nth-child(8) {
  grid-column: span 2;
  grid-row: span 2;
}
.project-grid-v1 .box:nth-child(9) {
  grid-column: span 2;
  grid-row: span 2;
}

.cover-porfolio-filter .porfolio-filter {
  margin: 5vw 0;
}
.cover-porfolio-filter .porfolio-filter button {
  border: 1px solid transparent;
  padding: 4px 20px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 50px;
}
.cover-porfolio-filter .porfolio-filter button.active-text {
  border: 1px solid var(--primary-clr);
}
.cover-porfolio-filter .porfolio-filter button:hover {
  color: var(--primary-clr);
}
.cover-porfolio-filter .porfolio_listing .listing-item {
  padding: 10px 10px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .cover-porfolio-filter .porfolio_listing .listing-item {
    width: 33.3333333333%;
    height: 300px;
  }
}
.cover-porfolio-img {
  background: linear-gradient(180deg, rgba(0, 75, 147, 0) 9.9%, rgba(0, 75, 147, 0.7) 61.46%);
  overflow: hidden;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}
 .cover-porfolio-img img {
  height: 100%;
  mix-blend-mode: multiply;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  -o-object-fit: cover;
     object-fit: cover;
}
.cover-porfolio-img .overlay-text {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 20px;
  right: 20px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.cover-porfolio-img .overlay-text h3 {
  color: white;
  font-weight: 500;
  font-size: 24px;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.cover-porfolio-img .overlay-text h5 {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  position: absolute;
  bottom: -50%;
  left: 0;
  font-size: 16px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  transition-delay: 0s;
}
 .cover-porfolio-img:hover img {
  transform: scale(1.09);
  -webkit-transform: scale(1.09);
  -moz-transform: scale(1.09);
  -ms-transform: scale(1.09);
  -o-transform: scale(1.09);
}

.cover-porfolio-img:hover .overlay-text h3 {
  bottom: -50%;
}
 .cover-porfolio-img:hover .overlay-text h5 {
  bottom: 0;
  transition-delay: 0.1s;
}

.cover-slider img {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}

.project-detail-card h6 {
  padding-left: 25px;
  position: relative;
  margin-bottom: 0;
  font-weight: 600;
}
.project-detail-card h6::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: var(--primary-clr);
}
.project-detail-card p {
  color: var(--primary-clr);
  margin: 0;
}
.project-detail-card ul li:not(:last-child) {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #bdbdbd;
}

.portfolio-slider .slidepreview .swiper-slide .overlay-btn {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: white;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.portfolio-slider .slidepreview .swiper-slide .overlay-btn a {
  background: var(--primary-clr);
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
}
.portfolio-slider .slidepreview .swiper-slide .overlay-btn a:hover {
  opacity: 0.8;
}
.portfolio-slider .slidepreview .swiper-slide:hover .overlay-btn {
  opacity: 1;
  visibility: visible;
}

.slidepreview {
  height: 500px;
  width: 100%;
}

.thumb-preview {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.thumb-preview .swiper-slide {
  width: 25%;
  height: 20%;
  opacity: 0.4;
}

.thumb-preview .swiper-slide-thumb-active {
  opacity: 1;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.related-slider .swiper-slide img {
    height: 178px;
}
.why-choose-title h1 {
  font-size: clamp(2rem, 10vw, 6rem);
  color: var(--primary-clr);
  font-weight: 600;
}
.why-choose-title p {
  font-size: 40px;
  color: var(--primary-clr);
  text-transform: capitalize;
  line-height: 50px;
}

.Methodology-boxs .box {
  text-align: center;
  width: 20%;
  height: 259px;
  background: red;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  padding: 45px;
}
.Methodology-boxs .box h5 {
  font-weight: 600;
}
.Methodology-boxs .box p {
  font-size: 14px;
  line-height: 20px;
}
.Methodology-boxs .box .cover-img {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background: black;
  margin: auto;
  margin-bottom: 10px;
  margin-top: -5rem;
}
.Methodology-boxs .box .cover-img img {
  width: 60px;
  margin: auto;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.Methodology-boxs .box:hover .cover-img img {
  transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -ms-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
}
.Methodology-boxs .box:nth-child(1) {
  background: rgba(82, 151, 192, 0.2);
}
.Methodology-boxs .box:nth-child(1) h5 {
  color: #5297C0;
}
.Methodology-boxs .box:nth-child(1) .cover-img {
  background: #5297C0;
}
.Methodology-boxs .box:nth-child(2) {
  background: rgba(219, 149, 40, 0.2);
  margin-inline: -40px;
}
.Methodology-boxs .box:nth-child(2) h5 {
  color: #DB9528;
}
.Methodology-boxs .box:nth-child(2) .cover-img {
  background: #DB9528;
}
.Methodology-boxs .box:nth-child(3) {
  background: rgba(68, 172, 172, 0.2);
}
.Methodology-boxs .box:nth-child(3) h5 {
  color: #44ACAC;
}
.Methodology-boxs .box:nth-child(3) .cover-img {
  background: #44ACAC;
}
.Methodology-boxs .box:nth-child(4) {
  background: rgba(136, 90, 132, 0.2);
  margin-inline: -40px;
}
.Methodology-boxs .box:nth-child(4) h5 {
  color: #885A84;
}
.Methodology-boxs .box:nth-child(4) .cover-img {
  background: #885A84;
}
.Methodology-boxs .box:nth-child(5) {
  background: rgba(104, 138, 93, 0.2);
}
.Methodology-boxs .box:nth-child(5) h5 {
  color: #688A5D;
}
.Methodology-boxs .box:nth-child(5) .cover-img {
  background: #688A5D;
}

.our-mission-vission {
  background: #f4f4f4;
}
.our-mission-vission .cover-img {
  margin-top: -7rem;
}
.our-mission-vission .cover-img img {
  height: 489px;
  -o-object-fit: cover;
     object-fit: cover;
}
.our-mission-vission h2 {
  font-weight: 700;
  color: var(--primary-clr);
  position: relative;
}
.our-mission-vission h2::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--primary-clr);
  position: absolute;
  bottom: 0;
  left: 7%;
}

.white-outline-btn, .white-btn, .black-outline-btn, .black-btn, .secondary-outline-btn, .secondary-btn, .primary-outline-btn, .primary-btn {
  padding: 12px 15px;
  background: var(--primary-clr);
  color: white;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 5px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border: 1px solid var(--primary-clr);
  white-space: nowrap;
}
.white-outline-btn i, .white-btn i, .black-outline-btn i, .black-btn i, .secondary-outline-btn i, .secondary-btn i, .primary-outline-btn i, .primary-btn i {
  font-size: 20px;
}
.white-outline-btn svg, .white-btn svg, .black-outline-btn svg, .black-btn svg, .secondary-outline-btn svg, .secondary-btn svg, .primary-outline-btn svg, .primary-btn svg {
  font-size: 20px;
}
.white-outline-btn:hover, .white-btn:hover, .black-outline-btn:hover, .black-btn:hover, .secondary-outline-btn:hover, .secondary-btn:hover, .primary-outline-btn:hover, .primary-btn:hover {
  color: white;
  border: 1px solid var(--black-btn-clr);
  background: var(--black-btn-clr);
}
.white-outline-btn:hover svg, .white-btn:hover svg, .black-outline-btn:hover svg, .black-btn:hover svg, .secondary-outline-btn:hover svg, .secondary-btn:hover svg, .primary-outline-btn:hover svg, .primary-btn:hover svg {
  fill: var(--primary-clr);
}

.right-icon i {
  margin-right: -7px;
}

.left-icon i {
  margin-left: -7px;
}

button {
  display: inline-flex !important;
  align-items: center !important;
  cursor: pointer;
  transition: 0.5s !important;
  -webkit-transition: 0.5s !important;
  -moz-transition: 0.5s !important;
  -ms-transition: 0.5s !important;
  -o-transition: 0.5s !important;
}

.primary-btn:hover {
  background: transparent;
  color: var(--primary-clr);
  border: 1px solid var(--primary-clr);
}
.primary-btn svg {
  fill: white;
}

.primary-outline-btn {
  background: transparent;
  border: 1px solid var(--primary-clr);
  color: var(--primary-clr);
}
.primary-outline-btn:hover {
  background: var(--primary-clr);
  border: 1px solid var(--primary-clr);
}

.secondary-btn {
  background: var(--secondary-clr);
  border: 1px solid var(--secondary-clr);
  color: white;
}
.secondary-btn:hover {
  background: transparent;
  border: 1px solid var(--secondary-clr);
  color: var(--secondary-clr);
}

.secondary-outline-btn {
  background: transparent;
  border: 1px solid var(--secondary-clr);
  color: var(--secondary-clr);
}
.secondary-outline-btn:hover {
  background: var(--secondary-clr);
  border: 1px solid var(--secondary-clr);
}

.black-btn {
  border: 1px solid var(--black-btn-clr);
  background: var(--black-btn-clr);
}
.black-btn:hover {
  border: 1px solid var(--primary-clr);
  background: var(--primary-clr);
}

.black-outline-btn {
  background: transparent;
  color: var(--black-btn-clr);
  border: 1px solid var(--black-btn-clr);
}
.black-outline-btn:hover {
  color: white;
  background: var(--black-btn-clr);
}

.white-btn {
  background: white;
  border: 1px solid white;
  color: var(--primary-clr);
}

.white-outline-btn {
  background: transparent;
  color: white;
  border: 1px solid white;
}
.white-outline-btn:hover {
  color: white;
  background: var(--primary-clr);
}

.gradient-btn {
  padding: 12px 15px;
  color: white;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  gap: 5px;
  white-space: nowrap;
  background: linear-gradient(90deg, var(--secondary-clr) 0%, var(--primary-clr) 100%);
  border: none !important;
  background-size: 150%;
  background-position: left;
  transition: background-position 1s;
}
.gradient-btn i {
  font-size: 20px;
}
.gradient-btn svg {
  font-size: 20px;
}
.gradient-btn:hover {
  color: white;
  background-position: right;
}

.checkbox-btn {
  position: relative;
  overflow: hidden;
}
.checkbox-btn input[type=radio] {
  -webkit-appearance: none;
  border: none !important;
  margin: auto;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
  left: 0px;
  width: 100%;
  height: 100%;
}
.checkbox-btn input[type=radio]:checked ~ label {
  background: var(--primary-clr);
  border: 1px solid var(--primary-clr);
  color: white;
}
.checkbox-btn label {
  cursor: pointer;
  color: #4F4F4F;
  font-weight: 400;
  padding: 10px 15px;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  text-align: center;
  width: 100%;
  font-size: 14px;
}
.checkbox-btn label:hover {
  background: var(--primary-clr);
  color: white;
}

.extra-btn-padding-15 {
  padding: 12px 15px;
}

.extra-btn-padding-20 {
  padding: 12px 20px;
}

.extra-btn-padding-25 {
  padding: 12px 25px;
}

.extra-btn-padding-30 {
  padding: 12px 30px;
}

.extra-btn-padding-35 {
  padding: 12px 35px;
}

.extra-btn-padding-40 {
  padding: 12px 40px;
}

.extra-btn-padding-45 {
  padding: 12px 45px;
}

.extra-btn-padding-50 {
  padding: 12px 50px;
}

.extra-btn-padding-55 {
  padding: 12px 55px;
}

.extra-btn-padding-60 {
  padding: 12px 60px;
}

.extra-btn-padding-65 {
  padding: 12px 65px;
}

.extra-btn-padding-70 {
  padding: 12px 70px;
}

.extra-btn-padding-75 {
  padding: 12px 75px;
}

.extra-btn-padding-80 {
  padding: 12px 80px;
}

.preloader {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
}

ul .dropdown-menu.dropdown-menus {
  padding: 11px 20px;
  border: 0;
  text-align: left;
}
ul .dropdown-menu.dropdown-menus a {
  margin-left: 0;
  line-height: 24px;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 500;
  color: black !important;
  padding: 0;
}
ul .dropdown-menu.dropdown-menus a:hover {
  background-color: transparent !important;
}

.my-toggler {
  border: 0 !important;
  background: transparent;
}
.my-toggler span {
  width: 25px;
  height: 2px;
  background-color: #222222;
  display: block;
}
.my-toggler span:nth-child(1) {
  margin: 3px auto;
}
.my-toggler span:nth-child(2) {
  width: 18px;
  margin-left: auto;
}

.nav-fixed {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  position: fixed !important;
  right: 0;
  left: 0;
  top: 0;
  z-index: 1041;
  -webkit-animation-fill-mode: none;
          animation-fill-mode: none;
  animation: slideInDown 1s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-animation: slideInDown 1s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-fixed .navbar {
  background: white;
}
.nav-fixed .navbar .navbar-brand img:first-child {
  display: none;
}
.nav-fixed .navbar .navbar-brand img:last-child {
  display: block;
  width: 120px;
}
.nav-fixed .navbar .nav-item .nav-link:not(.active) {
  color: black;
}
.nav-fixed .cover-topbar {
  display: none !important;
}

.cover-topbar .container {
  border-bottom: 1px solid white;
}
.cover-topbar p {
  margin: 0;
  color: white;
  font-size: 15px;
}
.cover-topbar svg {
  fill: white;
}
.cover-topbar .cover-topbar-social ul li a:not(.quotes-btn) {
  border-left: 1px solid white;
  padding: 13px 16px;
  color: white;
  display: inline-block;
}
.cover-topbar .cover-topbar-social ul li a:not(.quotes-btn):hover i {
  transform: rotate(10deg);
  -webkit-transform: rotate(10deg);
  -moz-transform: rotate(10deg);
  -ms-transform: rotate(10deg);
  -o-transform: rotate(10deg);
}
.cover-topbar .cover-topbar-social ul li:nth-child(2) a {
  border-left: 0;
}
.cover-topbar .cover-topbar-social ul li a.quotes-btn {
  border-radius: 0;
  background: var(--primary-clr);
  padding: 10px 15px;
  color: white;
  height: 100%;
  display: inline-flex;
  align-items: center;
}
.cover-topbar .cover-topbar-social ul li a.quotes-btn:hover {
  opacity: 0.9;
}

.cover-navbar {
  z-index: 10;
}
.cover-navbar .navbar-toggler i {
  color: white;
}
.cover-navbar .navbar-brand img {
  width: 200px;
}
.cover-navbar .navbar-brand img:last-child {
  display: none;
}
.cover-navbar .navbar-nav {
  gap: 20px;
}
.cover-navbar .navbar-nav .nav-item .nav-link {
  color: white;
  font-size: 15px;
  position: relative;
  text-transform: uppercase;
  font-weight: 600;
}
.cover-navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--primary-clr);
}
.cover-navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--primary-clr);
}

.nav-fixed .navbar-toggler i {
  color: black;
}

.footer-bg {
  background: #000000;
}
.footer-bg p {
  font-weight: 300;
}
.footer-bg ul li {
  font-weight: 300;
}
.footer-bg .cover-footer-logo img {
  width: 200px;
}
.footer-bg .footer-title {
  color: white;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
}
.footer-bg .footer-title::before {
  content: "";
  width: 45px;
  height: 3px;
  background: white;
  position: absolute;
  bottom: -14px;
  left: 0;
}
.footer-bg .footer-contact ul li {
  display: flex;
  align-items: start;
  gap: 10px;
  color: white;
}
.footer-bg .footer-contact ul li:not(:last-child) {
  margin-bottom: 20px;
}
.footer-bg .footer-contact ul li img {
  width: 20px;
}
.footer-bg .cover-footer-links ul li a {
  color: white;
  display: inline-block;
  font-size: 18px;
  font-weight: 300;
  line-height: 37px;
}
.footer-bg .cover-footer-links ul li a:hover {
  color: var(--primary-clr);
}
.footer-bg .cover-footer-icons-links ul {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-bg .cover-footer-icons-links ul li a {
  color: white;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-bg .cover-footer-icons-links ul li a i {
  font-size: 18px;
}
.footer-bg .cover-footer-icons-links ul li a:hover {
  color: #f2f3f7;
}
.footer-bg .cover-footer-icons-links ul li:nth-child(1) a {
  background: #3b5999;
}
.footer-bg .cover-footer-icons-links ul li:nth-child(2) a {
  background: #0077b5;
}
.footer-bg .cover-footer-icons-links ul li:nth-child(3) a {
  background: #1769ff;
}
.footer-bg .cover-footer-icons-links ul li:nth-child(4) a {
  background: #e4405f;
}
.footer-bg .cover-footer-icons-links ul li:nth-child(5) a {
  background: #55acee;
}

.cover-subscribtion-form {
  margin-top: 30px;
}
.cover-subscribtion-form p {
  color: white;
  line-height: 26px;
  font-size: 16px;
}
.cover-subscribtion-form input {
  border-radius: 0;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  min-height: auto !important;
  border: none;
}
.cover-subscribtion-form button {
  color: white;
  padding: 10px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  border: none;
  background: var(--secondary-clr);
}

.cover-copyright p {
  color: white;
  margin-bottom: 0;
  font-weight: 400;
  letter-spacing: 1px;
}
.cover-copyright p a {
  color: inherit;
}
.cover-copyright p a:hover {
  color: var(--primary-clr);
}

.tabs-v1 .nav {
  flex-basis: 25%;
}
.tabs-v1 .nav button {
  background: var(--light-primary-clr1);
  text-align: start;
  padding-block: 14px;
  color: var(--heading-clr);
  position: relative;
  font-weight: 500;
}
.tabs-v1 .nav button::before {
  content: "east";
  font-family: "Material Icons";
  font-size: 20px;
  position: absolute;
  top: 50%;
  right: 10px;
  color: var(--primary-clr);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%) translateX(-5px);
  -webkit-transform: translateY(-50%) translateX(-5px);
  -moz-transform: translateY(-50%) translateX(-5px);
  -ms-transform: translateY(-50%) translateX(-5px);
  -o-transform: translateY(-50%) translateX(-5px);
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.tabs-v1 .nav button.active {
  background: var(--primary-clr);
}
.tabs-v1 .nav button.active::before {
  color: white;
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0px);
  -webkit-transform: translateY(-50%) translateX(0px);
  -moz-transform: translateY(-50%) translateX(0px);
  -ms-transform: translateY(-50%) translateX(0px);
  -o-transform: translateY(-50%) translateX(0px);
}
.tabs-v1 .nav button:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0px);
  -webkit-transform: translateY(-50%) translateX(0px);
  -moz-transform: translateY(-50%) translateX(0px);
  -ms-transform: translateY(-50%) translateX(0px);
  -o-transform: translateY(-50%) translateX(0px);
}
.tabs-v1 .tab-content {
  flex-basis: 75%;
}

.pricing-bg {
  position: absolute;
  width: 200%;
  top: 120px;
  left: -50%;
  background: url(assets/images/pricing-bg.png) no-repeat center/cover;
  height: 696px;
  transform: rotate(-8deg);
}
.pricing-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #9523b9 0%, #7c51cd 20%, #267ce2 40%, #3097e5 60%, #f69a2a 80.01%, #f47323 100.01%);
  background-size: auto;
  background-size: 400%;
  position: absolute;
  opacity: 0.65;
  z-index: -1;
  -webkit-animation: gradientloop 10s infinite alternate;
          animation: gradientloop 10s infinite alternate;
}

.pricing-shap img {
  position: absolute;
  width: 100px;
  bottom: 0;
  right: 0;
}

.pricing-card {
  background: white;
  padding-bottom: 1.6rem;
  box-shadow: 2px 1px 10px rgba(0, 0, 0, 0.6);
  position: relative;
  border-radius: 30px;
}
.pricing-card .top-rated {
  position: absolute;
  top: -45px;
  right: -45px;
  width: 110px;
  height: 110px;
  z-index: 1;
}
.pricing-card .cover-header {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.pricing-card .cover-header .pricing-header {
  height: 247px;
  padding: 1.5rem;
  background: linear-gradient(90deg, var(--secondary-clr) 0%, var(--primary-clr) 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 75%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 75%, 0 100%);
}
.pricing-card .cover-header .pricing-header h2 {
  color: white;
  font-weight: 700;
  margin: 0;
}
.pricing-card .cover-header .pricing-header p {
  color: white;
  font-size: 16px;
  font-weight: 400;
}
.pricing-card .cover-header .pricing-header::before {
  content: "$";
  position: absolute;
  bottom: 45px;
  left: 2.5rem;
  color: white;
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-quicksand);
}
.pricing-card .cover-header .pricing-ball {
  --ball-width: 168px;
  background: linear-gradient(90deg, var(--secondary-clr) 0%, var(--primary-clr) 100%);
  width: var(--ball-width);
  height: var(--ball-width);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  z-index: 3;
}
.pricing-card .cover-header .pricing-ball::before {
  content: "";
  width: calc(var(--ball-width) - 40px);
  height: calc(var(--ball-width) - 40px);
  background: linear-gradient(90deg, var(--primary-clr) 0%, var(--secondary-clr) 100%);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  z-index: -1;
}
.pricing-card .cover-header .pricing-ball h3 {
  margin: 0;
  font-weight: 700;
  font-size: 48px;
  color: white;
  font-family: var(--font-quicksand);
}
.pricing-card .cover-header::before {
  content: "";
  width: 120%;
  height: 7px;
  background: linear-gradient(139.4deg, #bbbbbb 38%, rgba(20, 20, 20, 0) 50%), linear-gradient(90deg, #004b93 42%, #00b1f2 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  transform-origin: 1% center;
  transform: rotate(-20deg);
  
  z-index: 2;
}
/*.pricing-card .pricing-content {*/
/*  margin-top: 48px;*/
/*}*/
.pricing-card .pricing-content ul.features-points {
  margin-block: 40px !important;
      margin-top: 17px !important;
          margin-bottom: 30px !important;
  height: 240px;
  overflow: hidden;
  overflow-y: auto;
}
.pricing-card .pricing-content ul.features-points::-webkit-scrollbar {
  width: 9px;
  background: #fafafa;
}
.pricing-card .pricing-content ul.features-points::-webkit-scrollbar-thumb {
  background: #929292;
  height: 56px;
  border-radius: 8px;
  border: 2px solid transparent;
  background-clip: content-box;
}
.pricing-card .pricing-content ul.features-points li {
  position: relative;
  font-weight: 400;
  color: #4f4f4f;
  padding-left: 33px;
}
.pricing-card .pricing-content ul.features-points li::before {
  content: "";
  width: 30px;
  height: 20px;
  background: url(assets/images/check.png) no-repeat center;
  position: absolute;
  top: 0;
  left: 0px;
}
.pricing-card .pricing-content ul.features-points li:not(:last-child) {
  margin-bottom: 14px;
}

.pricing-heading {
  position: absolute;
  top: 262px;
  left: 0;
  width: 375px;
}
.pricing-heading .heading-shap::before {
  width: 160px;
  height: 160px;
}

.target-pricing-card .col-md-6:nth-child(1) {
  margin-top: 27rem;
}
.target-pricing-card .col-md-6:nth-child(1) .pricing-card {
  background: white url(assets/images/pricing-bg/1.png) no-repeat center/cover;
}
.target-pricing-card .col-md-6:nth-child(2) {
  margin-top: 15rem;
}
.target-pricing-card .col-md-6:nth-child(2) .pricing-card {
  background: white url(assets/images/pricing-bg/2.png) no-repeat center/cover;
}
.target-pricing-card .col-md-6:nth-child(3) .pricing-card {
  background: white url(assets/images/pricing-bg/3.png) no-repeat center/cover;
}

.target-pricing-card-detail .col-md-6:nth-child(1) .pricing-card, .target-pricing-card-detail .col-md-6:nth-child(4) .pricing-card {
  background: white url(assets/images/pricing-bg/1.png) no-repeat center/cover;
}
.target-pricing-card-detail .col-md-6:nth-child(2) .pricing-card, .target-pricing-card-detail .col-md-6:nth-child(5) .pricing-card {
  background: white url(assets/images/pricing-bg/2.png) no-repeat center/cover;
}
.target-pricing-card-detail .col-md-6:nth-child(3) .pricing-card {
  background: white url(assets/images/pricing-bg/3.png) no-repeat center/cover;
}

.pages-shap img {
  width: 50px;
  position: absolute;
}
.pages-shap img:nth-child(1) {
  top: 70px;
  right: 0;
}
.pages-shap img:nth-child(2) {
  top: 50%;
  left: 10px;
}
.pages-shap img:nth-child(3) {
  width: 100px;
  bottom: 20px;
  right: 10px;
}

.services-card {
  position: relative;
  background: white;
  padding: 2rem;
  border-top-left-radius: 10px;
  border-bottom-right-radius: 10px;
  height: 100%;
}
.services-card .cover-img img {
  width: 60px;
  height: 60px;
  margin-left: auto;
}
.services-card h4 {
  margin-bottom: 0.7rem;
}
.services-card p {
  margin-bottom: 4rem;
}
.services-card .ribbon {
  position: absolute;
  width: 72px;
  height: 116px;
  top: -10px;
  left: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-card .ribbon::before {
  content: attr(data-text);
  width: 100%;
  height: 100%;
  background: var(--secondary-clr);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 75%, 0% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 75%, 0% 100%);
  font-size: 2rem;
  color: white;
  font-weight: 600;
  z-index: 1;
}
.services-card .ribbon::after {
  content: "";
  width: 100%;
  height: 10px;
  background: #03729a;
  position: absolute;
  top: 0px;
  left: 5px;
  transform: skewX(45deg);
  -webkit-transform: skewX(45deg);
  -moz-transform: skewX(45deg);
  -ms-transform: skewX(45deg);
  -o-transform: skewX(45deg);
}
.services-card .ribbon h5 {
  font-size: 40px;
  font-weight: 500;
  color: white;
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}
.services-card ul li {
  position: absolute;
  width: 100%;
  bottom: 2rem;
  left: 2rem;
  width: 40px;
  height: 40px;
  background: rgba(var(--secondary-rgb-clr), 0.2);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: end;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  padding: 9px;
}
.services-card ul li i {
  color: var(--primary-clr);
  font-size: 20px;
}
.services-card:hover ul li {
  width: calc(100% - 3.7rem);
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.03);
}

.services-card-v2 {
  position: relative;
}
.services-card-v2 .cover-img {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.08);
}
.services-card-v2 .cover-img img {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}
.services-card-v2 h5 {
  font-size: 20px;
  font-weight: 600;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  color: var(--heading-clr);
  text-transform: uppercase;
}
.services-card-v2:hover .cover-img img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.services-card-v2:hover h5 {
  color: var(--primary-clr);
}

.service-bg {
  background: url(assets/images/services-bg.png) no-repeat center/cover;
}

.services-card-v3 {
  padding: 2rem;
  box-shadow: 2px 2px 5px 2px rgba(31, 31, 31, 0.1803921569);
  border-radius: 20px 0px;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
  background: white;
}
.services-card-v3 img {
  width: 102px;
  height: 102px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
}
.services-card-v3 h3 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
}
.services-card-v3:hover {
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(0, 75, 147, 0.6901960784) 0%, rgba(0, 177, 242, 0.6509803922) 100%);
}
.services-card-v3:hover h3 {
  color: white;
}

.info-card-v1 {
  padding: 2rem;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.07);
}
.info-card-v1 .cover-img {
  width: 110px;
  height: 110px;
  background: var(--secondary-clr);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 1rem;
}
.info-card-v1 .cover-img i {
  font-size: 50px;
  color: white;
}
.info-card-v1 img {
  width: 90px;
}

.info-card-big-img .cover-img {
  width: 190px;
  height: 190px;
}
.info-card-big-img .cover-img img {
  width: 140px;
}

.cover-counter {
  text-align: center;
}
.cover-counter * + * {
  margin-top: 12px;
  margin-bottom: 0;
  line-height: normal;
}
.cover-counter h1 {
  color: white;
  font-size: 45px;
  margin: 0;
}
.cover-counter img {
  width: 80px;
  display: block;
  margin: auto;
}
.cover-counter p {
  color: white;
  font-size: 20px;
}
.cover-counter span {
  color: white;
  font-size: 45px;
  margin: 0;
}

.counter-bg {
  padding-block: 5.5rem;
  margin-top: 4rem;
  background: url(assets/images/shaps/wave-shap.png) no-repeat center/cover;
  position: relative;
}
.counter-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #9523b9 0%, #7c51cd 20%, #267ce2 40%, #3097e5 60%, #f69a2a 80.01%, #f47323 100.01%);
  background-size: 400%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-animation: gradientloop 10s infinite alternate;
          animation: gradientloop 10s infinite alternate;
}

@-webkit-keyframes gradientloop {
  to {
    background-position: left;
  }
  from {
    background-position: right;
  }
}

@keyframes gradientloop {
  to {
    background-position: left;
  }
  from {
    background-position: right;
  }
}
.contact-sidebar {
  padding: 3rem 2rem;
  background: linear-gradient(180deg, rgba(32, 83, 181, 0.75) 0%, #2053b5 83.33%), url("assets/images/contact-bg1.jpg") no-repeat center/cover;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
.contact-sidebar h2 {
  color: white;
  font-weight: 600;
  font-size: 27px;
}
.contact-sidebar ul li small {
  color: white;
  opacity: 0.5;
}
.contact-sidebar ul li i {
  width: 40px;
  height: 40px;
  background: var(--secondary-clr);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}
.contact-sidebar ul li a {
  color: white;
}
.contact-sidebar ul li a:hover {
  opacity: 0.7;
}
.contact-sidebar ul li:not(:last-child) {
  margin-bottom: 2rem;
}

.contact-form .form-group {
  position: relative;
}
.contact-form .form-group i {
  position: absolute;
  top: 12px;
  right: 10px;
  
  color: var(--primary-clr);
}

.cover-quote-form {
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.06);
}
.cover-quote-form label {
  margin-bottom: 10px;
}

.small-shap {
  position: absolute;
  top: -25px;
  left: 0;
  background: linear-gradient(225deg, #c244a0 0%, #f0394a 13.54%, #f46a28 26.56%, #f8b957 39.06%, #f47a24 64.06%, #4b97cb 75%, #418ee3 88.54%, #7e4dcb 100%);
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.small-shap::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: white;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
}
.small-shap.largeHeadingShap {
  width: 114px;
  height: 114px;
}
.small-shap .shaplayer {
  position: absolute;
  top: 16px;
  right: 0px;
  bottom: 16px;
  background: white;
  width: 10px;
}

.swiper-pagination-bullet {
  background: var(--primary-clr);
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  background: var(--primary-clr);
  width: 20px;
  border-radius: 50px;
  opacity: 1;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  position: absolute;
  font-family: "Material Icons";
  font-size: 17px;
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
  background: rgba(var(--secondary-rgb-clr), 0.4);
  color: black;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
}

.swiper-button-next::after {
  content: "arrow_forward_ios";
}

.swiper-button-prev::after {
  content: "arrow_back_ios";
}

.cover-swiper-slider [aria-disabled=false]::after {
  background: var(--primary-clr);
  color: white;
}
.cover-swiper-slider [aria-disabled=true] {
  opacity: 1;
}

.check-items li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.check-items li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  background: url(assets/images/icons/check.png) no-repeat center/cover;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}

.devlopment-shap {
  background: url(assets/images/webdevelopmentbg.png) no-repeat center/cover;
}
.devlopment-shap .circle2 {
  position: absolute;
  bottom: -84px;
  right: -80px;
  width: 220px;
  -webkit-animation: rotate360 20s linear infinite;
          animation: rotate360 20s linear infinite;
}
.devlopment-shap .shap {
  position: relative;
}
.devlopment-shap .shap .shap1 {
  width: 100px;
  position: absolute;
  top: -100px;
  right: 0;
}
.devlopment-shap .shap .red-box {
  width: 50px;
  position: absolute;
  top: -100px;
  left: 0;
}

@-webkit-keyframes rotate360 {
  to {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  from {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
  }
}

@keyframes rotate360 {
  to {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
  }
  from {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
  }
}
.heading-shap::before {
  content: "";
  width: 114px;
  height: 114px;
  background: url(assets/images/heading-shap.png) no-repeat center/cover;
  position: absolute;
  top: -27px;
  left: 0;
}

.project-shap {
  position: relative;
}
.project-shap .shap .circle2 {
  width: 169px;
  position: absolute;
  top: -4%;
  right: -5%;
  -webkit-animation: rotate360 20s linear infinite;
          animation: rotate360 20s linear infinite;
}
.project-shap .shap .shap1 {
  width: 100px;
  position: absolute;
  top: 18%;
  left: -50px;
  transform: rotate(250deg);
}
.project-shap .shap .shap2 {
  width: 100px;
  position: absolute;
  top: 50%;
  right: -50px;
}
.project-shap .shap .dots {
  width: 100px;
  position: absolute;
  bottom: 165px;
  right: -16px;
  z-index: -1;
}
.project-shap .shap .wave {
  width: 100px;
  position: absolute;
  bottom: 150px;
  left: 20px;
  z-index: 1;
}
.project-shap .shap .shap1-1 {
  width: 100px;
  position: absolute;
  bottom: -64px;
  left: 436px;
  transform: rotate(1deg);
}
.project-shap .shap .rectangle1 {
  width: 51px;
  position: absolute;
  bottom: 38px;
  right: 349px;
}

.banner-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.banner-img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.banner-img .shaps img {
  width: 200px;
  position: absolute;
}
.banner-img .shaps img:nth-child(1) {
  top: -20%;
  left: 0;
  width: 85px;
}
.banner-img .shaps img:nth-child(2) {
  bottom: -105%;
  left: 18%;
  width: 30px;
}
.banner-img .shaps img:nth-child(3) {
  bottom: -13%;
  left: 12%;
  width: 39px;
}
.banner-img .shaps img:nth-child(4) {
  top: -40%;
  right: 0;
  width: 100px;
}
.banner-img .shaps img:nth-child(5) {
  bottom: -80%;
  right: 10%;
  width: 70px;
}

.banner-img-v2 {
  background-color: rgba(0, 0, 0, 0.5);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: multiply;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ready-package {
  background: url(assets/images/banner/3.jpg) no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 637px;
  -webkit-animation: filteranimate 10s linear infinite;
          animation: filteranimate 10s linear infinite;
}
.ready-package h1 {
  font-size: 54px;
  color: white;
  font-weight: 700;
  margin-bottom: 40px;
}
.ready-package ul {
  margin-bottom: 40px !important;
}
.iti__selected-flag{
    height: 45px;
}
.ready-package p {
  color: white;
  font-size: 20px;
  margin: 0;
  text-transform: capitalize;
}
.ready-package p a {
  display: inline-block;
  color: white;
}
.ready-package p a:hover {
  opacity: 0.8;
}
@-webkit-keyframes filteranimate {
  0% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.5);
  }
  100% {
    filter: saturate(1);
  }
}
@keyframes filteranimate {
  0% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.5);
  }
  100% {
    filter: saturate(1);
  }
}

.map-bg {
  background: #f4f4f4 url(assets/images/map-bg.png) no-repeat center/cover;
  background-attachment: fixed;
}

.cover-testimonial {
  width: calc(50% + 500px);
  margin: auto;
  position: relative;
  padding-inline: 17vw;
  margin-top: 3rem;
}
.cover-testimonial .cover-testimonial-card .cover-img {
  width: 183px;
  margin: auto;
  margin-bottom: 20px;
}
.cover-testimonial .cover-testimonial-card .cover-img img {
  border-radius: 50%;
}
.cover-testimonial .cover-testimonial-card p {
  padding-top: 3rem;
}
.cover-testimonial img.side-image1,
.cover-testimonial img.side-image2 {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80px;
  height: 80px;
}
.cover-testimonial img.side-image2 {
  top: 10%;
  left: inherit;
  right: 10%;
}
.cover-testimonial .dotsanimate {
  position: absolute;
  top: 30%;
  left: 20%;
  background: #b4171d;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  box-shadow: 220px -130px 0 1px black, 320px -146px 0 -1px #ed1c24, 450px -730px 0 1px #ed1c24, 20px -419px 0 -1px black;
  -webkit-animation: dostsanimte 20s linear infinite;
          animation: dostsanimte 20s linear infinite;
}
@-webkit-keyframes dostsanimte {
  0% {
    transform: rotate(0deg) translateY(0);
    -webkit-transform: rotate(0deg) translateY(0);
    -moz-transform: rotate(0deg) translateY(0);
    -ms-transform: rotate(0deg) translateY(0);
    -o-transform: rotate(0deg) translateY(0);
    filter: hue-rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateY(-10px);
    -webkit-transform: rotate(360deg) translateY(-10px);
    -moz-transform: rotate(360deg) translateY(-10px);
    -ms-transform: rotate(360deg) translateY(-10px);
    -o-transform: rotate(360deg) translateY(-10px);
    filter: hue-rotate(360deg);
  }
}
@keyframes dostsanimte {
  0% {
    transform: rotate(0deg) translateY(0);
    -webkit-transform: rotate(0deg) translateY(0);
    -moz-transform: rotate(0deg) translateY(0);
    -ms-transform: rotate(0deg) translateY(0);
    -o-transform: rotate(0deg) translateY(0);
    filter: hue-rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateY(-10px);
    -webkit-transform: rotate(360deg) translateY(-10px);
    -moz-transform: rotate(360deg) translateY(-10px);
    -ms-transform: rotate(360deg) translateY(-10px);
    -o-transform: rotate(360deg) translateY(-10px);
    filter: hue-rotate(360deg);
  }
}

.according-style-2 .accordion-item {
  border: 0;
  border-bottom: 1px solid var(--border-clr);
  background-color: transparent;
}
.according-style-2 .accordion-item .accordion-header {
  padding: 0;
  border: 0;
}
.according-style-2 .accordion-item .accordion-header button {
  background-color: transparent;
  position: relative;
  color: var(--secondary-clr);
  font-weight: normal;
  padding: 20px 30px;
  display: block;
  line-height: normal;
  font-weight: 400;
  font-size: 20px;
}
.according-style-2 .accordion-item .accordion-header button[aria-expanded=true] {
  background: linear-gradient(90deg, #9523b9 0%, #7c51cd 20%, #267ce2 40%, #3097e5 60%, #f69a2a 80.01%, #f47323 100.01%);
  color: var(--primary-clr);
}
.according-style-2 .accordion-item .accordion-header button::after {
  content: "add";
  font-family: "Material Icons";
  font-size: 28px;
  font-weight: normal;
  position: absolute;
  right: 30px;
  top: 50%;
  text-align: center;
  line-height: 1.25rem;
  background-image: none;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.according-style-2 .accordion-item .accordion-header button[aria-expanded=false]::after {
  content: "remove";
}
.according-style-2 .accordion-item .accordion-header button:not(.collapsed) {
  box-shadow: none;
}
.according-style-2 .accordion-item .accordion-header:hover button {
  color: var(--primary-clr);
}
.according-style-2 .accordion-item .accordion-body {
  border-top: 0;
}
.according-style-2 .accordion-item .accordion-body p {
  margin-bottom: 0;
  line-height: 32px;
  color: black;
}
.according-style-2 .accordion-item .collapse {
  transition: 0.15s;
  background: linear-gradient(90deg, #9523b9 0%, #7c51cd 20%, #267ce2 40%, #3097e5 60%, #f69a2a 80.01%, #f47323 100.01%);
}
.according-style-2 .accordion-item .collapse p {
  color: white;
}

.sidebarfixed {
  width: auto;
  position: fixed;
  top: 50%;
  right: -400px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 10;
  transition: 0.5s cubic-bezier(0.42, 0.97, 0.52, 1.49);
}
.sidebarfixed.active-sidebarfixed {
  right: 0;
}
.sidebarfixed.active-sidebarfixed .fixed-sidebtn i {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}
.sidebarfixed .sidebarcontact {
  width: 400px;
  background: white;
  padding: 30px;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.05);
}
.sidebarfixed .fixed-sidebtn {
  -ms-writing-mode: tb-lr;
      writing-mode: vertical-lr;
  transform: scale(-1);
}
.sidebarfixed .fixed-sidebtn a {
  display: flex;
  border-radius: 10px !important;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  -ms-border-radius: 10px !important;
  -o-border-radius: 10px !important;
  overflow: hidden;
}
.sidebarfixed .fixed-sidebtn a p {
  background: black;
  color: white;
  padding: 12px 20px;
  white-space: nowrap;
  font-size: 25px;
  margin: 0;
}
.sidebarfixed .fixed-sidebtn a i {
  width: auto;
  height: 55px;
  background: var(--primary-clr);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}

.star-colors li i {
  color: #f9c81b;
  font-size: 18px;
}

.cover-reviews {
  position: relative;
  background: #dceaff;
  padding: 2rem;
  z-index: 1;
  margin-bottom: 15rem;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
}
.cover-reviews span:nth-child(1)::before {
  content: "";
  position: absolute;
  left: 0;
  width: 10px;
  top: -50px;
  bottom: -50px;
  background: linear-gradient(180.04deg, #0272a7 -1.7%, #00659f 18.19%, #005c9a 37.65%, #005998 51.66%, #163962 96.41%);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  display: inline-block;
}
.cover-reviews span:nth-child(1)::after {
  content: "";
  position: absolute;
  left: -17px;
  width: 10px;
  top: 50px;
  bottom: -80px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  background: linear-gradient(180.14deg, #0272a7 0.11%, #00659f 18.39%, #005c9a 36.28%, #005998 49.16%, #163962 90.3%);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  display: inline-block;
}
.cover-reviews span:nth-child(2)::before {
  content: "";
  position: absolute;
  height: 10px;
  bottom: 0;
  left: -30px;
  right: -30px;
  background: linear-gradient(270deg, #0272a7 -3.45%, #00659f 17.22%, #005c9a 37.45%, #005998 52.01%, #163962 98.53%);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  display: inline-block;
  z-index: -1;
}
.cover-reviews span:nth-child(2)::after {
  content: "";
  position: absolute;
  height: 10px;
  bottom: -17px;
  left: -80px;
  right: 50px;
  background: linear-gradient(90.14deg, #0272a7 0.1%, #00659f 18.38%, #005c9a 36.28%, #005998 49.16%, #163962 90.32%);
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  display: inline-block;
}
.cover-reviews span:nth-child(3)::before {
  content: "";
  position: absolute;
  top: -6px;
  right: -30px;
  left: 50%;
  height: 6px;
  background: linear-gradient(270.14deg, #0272a7 0.1%, #00659f 18.37%, #005c9a 36.27%, #005998 49.15%, #163962 90.29%);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  display: inline-block;
}
.cover-reviews span:nth-child(3)::after {
  content: "";
  position: absolute;
  top: -18px;
  right: -50px;
  left: 70%;
  height: 6px;
  background: linear-gradient(90deg, #0272a7 -10.62%, #00659f 11.1%, #005c9a 32.35%, #005998 47.65%, #163962 96.52%);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  display: inline-block;
  z-index: 1;
}
.cover-reviews span:nth-child(4)::before {
  content: "";
  position: absolute;
  top: -40px;
  right: 0px;
  bottom: 120px;
  width: 6px;
  transition: 0.2s;
  -webkit-transition: 0.2s;
  -moz-transition: 0.2s;
  -ms-transition: 0.2s;
  -o-transition: 0.2s;
  background: linear-gradient(180.02deg, #0272a7 -2.79%, #00659f 17.43%, #005c9a 37.22%, #005998 51.47%, #163962 96.99%);
  border-radius: 50px;
  -webkit-border-radius: 50px;
  -moz-border-radius: 50px;
  -ms-border-radius: 50px;
  -o-border-radius: 50px;
  display: inline-block;
}
.cover-reviews:hover span:nth-child(1)::after {
  transform: translateY(-130px);
}
.cover-reviews:hover span:nth-child(2)::after {
  transform: translateX(130px);
}
.cover-reviews:hover span:nth-child(4)::before {
  transform: translateY(150px);
}

.process-padding {
  padding-bottom: 15rem;
}

.process {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-block: 5rem;
  background: url(assets/images/process/bg.svg) no-repeat center/cover;
}
.process .parent-box {
  -webkit-animation: process 25s ease-in-out infinite;
          animation: process 25s ease-in-out infinite;
}
@-webkit-keyframes process {
  0%, 40%, 100% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.1);
  }
}
@keyframes process {
  0%, 40%, 100% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.1);
  }
}
.process .parent-box:nth-child(1) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
.process .parent-box:nth-child(1) .box {
  transform: translateY(-10px) translateX(-10px);
}
.process .parent-box:nth-child(1) .box .arrow-shap1 {
  width: 159px;
  position: absolute;
  top: -67px;
  left: 13px;
}
.process .parent-box:nth-child(2) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}
.process .parent-box:nth-child(2) .box .cover-img {
  width: 170px;
  height: 170px;
  margin-top: 20px;
}
.process .parent-box:nth-child(3) {
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}
.process .parent-box:nth-child(3) .box {
  transform: translateY(175px);
}
.process .parent-box:nth-child(3) .box .cover-img {
  width: 170px;
  height: 170px;
}
.process .parent-box:nth-child(3) .box .arrow-shap2 {
  width: 159px;
  position: absolute;
  bottom: -67px;
  left: 13px;
}
.process .parent-box:nth-child(4) {
  -webkit-animation-delay: 20s;
          animation-delay: 20s;
}
.process .parent-box:nth-child(4) .box {
  transform: translateY(79px) translateX(123px);
}
.process .parent-box:nth-child(4) .box .cover-img {
  width: 170px;
  height: 170px;
}
.process .parent-box:nth-child(4) .box .arrow-shap3 {
  width: 25px;
  position: absolute;
  top: -184px;
  left: -135px;
}
.process .parent-box:nth-child(5) {
  -webkit-animation-delay: 25s;
          animation-delay: 25s;
}
.process .parent-box:nth-child(5) .box {
  transform: translateY(-139px) translateX(10px);
}
.process .parent-box:nth-child(5) .box .arrow-shap4 {
  width: 21px;
  position: absolute;
  bottom: -175px;
  left: 100px;
}
.process .parent-box .box {
  position: relative;
  text-align: center;
  transition: 0.5s;
}
.process .parent-box .box .cover-img {
  width: 200px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 20px;
  position: relative;
  padding: 7px;
  background: white;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.process .parent-box .box .cover-img img {
  width: 100%;
}
.process .parent-box .box .cover-img::before {
  content: "";
  width: 100%;
  height: 100%;
  border: 2px dashed #101010;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  position: absolute;
  top: 0px;
  left: 0px;
  -webkit-animation: borderrotate 20s linear infinite;
          animation: borderrotate 20s linear infinite;
}
@-webkit-keyframes borderrotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes borderrotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.brandslider {
  padding-block: 5.5rem;
  margin-top: 4rem;
  background: url(assets/images/shaps/wave-shap.png) no-repeat center/cover;
  position: relative;
}
.brandslider::before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #9523b9 0%, #7c51cd 20%, #267ce2 40%, #3097e5 60%, #f69a2a 80.01%, #f47323 100.01%);
  background-size: 400%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-animation: gradientloop 10s infinite alternate;
          animation: gradientloop 10s infinite alternate;
}
.brandslider .brand-box {
  background: white;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 10px;
}
.brandslider .brand-box img {
  height: 207px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
}

.data-container ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.thumb-preview .swiper-slide img {
    height: 75px;
}
.data-container ul li {
  width: calc(33.3333333333% - 40px);
  padding: 30px;
  background: #fafafa;
}/*# sourceMappingURL=main.css.map */