* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif !important;
  background-color: #030303;
}

/* Targeting scrollbar */
::-webkit-scrollbar {
  width: 8px; /* Width of the scrollbar */
}

/* Track (background) */
::-webkit-scrollbar-track {
  background: #171f23; /* Match your theme */
  border-radius: 4px;
}

/* Thumb (the draggable part) */
::-webkit-scrollbar-thumb {
  background: #888; /* Color of thumb */
  border-radius: 4px;
}

/* Thumb on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.bg-gray {
  background-color: #202529;
}

.text-color {
  color: #bfbfbf;
}

.text-primary {
  color: #15009a !important;
}

.text-secondary {
  color: #85006d !important;
}

.bg-primary {
  background-color: #15009a !important;
}

.bg-secondary {
  background-color: #85006d !important;
}

.primary-btn {
  background: linear-gradient(to left, #15009a, #85006d);
  color: #ffffff !important;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s all;
}
.primary-btn:hover {
  background: linear-gradient(to right, #15009a, #85006d);
}

.secondary-btn {
  background-color: #85006d;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s all;
}
.secondary-btn:hover {
  color: #ffffff;
  background-color: #15009a;
}

.primary-bg {
  background-color: #15009a;
}

.primary-text {
  color: #15009a;
}

.secondary-bg {
  background-color: #85006d;
}

.secondary-text {
  color: #85006d;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

canvas {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

header {
  position: relative;
}

.navbar {
  background: #60676c;
  padding: 0px;
  box-sizing: border-box;
  transition: all 0.4s ease;
  z-index: 9999;
  position: relative;
}
.navbar::before {
  position: absolute;
  content: "";
  background: url(../images/nav-footer.svg);
  width: 100%;
  height: 16.9px;
  left: 0;
  bottom: -16px;
  background-size: 100%;
  background-repeat: no-repeat;
}
.navbar.open .menu-icon::before {
  transform: rotate(45deg);
  top: 9px;
}
.navbar.open .menu-icon span {
  opacity: 0;
}
.navbar.open .menu-icon::after {
  transform: rotate(-45deg);
  bottom: 9px;
}
.navbar.open .navbar-menu {
  margin-top: 50px;
  max-height: 500px;
  opacity: 1;
  overflow: auto;
}
.navbar .navbar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .navbar-header .logo-area img {
  transition: 0.4s all;
}
.navbar .navbar-header .logo-area img:nth-child(2) {
  opacity: 0;
  display: none;
  transition: 0.4s all;
}
.navbar .navbar-header .logo-area:hover img:nth-child(1) {
  opacity: 0;
  display: none;
  transition: 0.4s all;
}
.navbar .navbar-header .logo-area:hover img:nth-child(2) {
  opacity: 1;
  display: block;
  transition: 0.4s all;
}
.navbar .navbar-header .button {
  transition: 0.3s all;
  padding: 37px 30px 22px;
}
.navbar .logo-area {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.navbar .menu-icon {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 35px;
  height: 20px;
  position: relative;
}
.navbar .menu-icon:hover span {
  background: #15009a;
}
.navbar .menu-icon:hover::before {
  background: #15009a;
}
.navbar .menu-icon:hover::after {
  background: #15009a;
}
.navbar .menu-icon span, .navbar .menu-icon::before, .navbar .menu-icon::after {
  display: block;
  background: #ffffff;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  transition: 0.4s;
}
.navbar .menu-icon::before {
  content: "";
  top: 0;
}
.navbar .menu-icon span {
  top: 9px;
}
.navbar .menu-icon::after {
  content: "";
  bottom: 0;
}
.navbar .navbar-menu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.4s ease;
}
.navbar .navbar-menu .number {
  width: 100px;
  display: inline-block;
}
.navbar .navbar-menu-item {
  padding: 15px;
  border-top: 1px dotted #ccc;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #030303;
  color: #ffffff;
}
.navbar .navbar-menu-item:hover {
  background-color: #15009a;
}
.navbar .navbar-menu-item span {
  font-weight: bold;
  transition: transform 0.3s ease;
}
.navbar .navbar-menu-item span::after {
  content: "+";
  font-size: 1.8rem;
}
.navbar .navbar-menu-item.open {
  background-color: #85006d;
}
.navbar .navbar-menu-item.open span {
  transform: rotate(180deg);
}
.navbar .navbar-menu-item.open span::after {
  content: "-";
}
.navbar .navbar-menu-item.open + .submenu {
  height: 100%;
}
.navbar .submenu {
  height: 0;
  overflow-y: auto;
  transition: height 0.3s ease;
  font-size: 1.2rem;
  line-height: 2;
  background-color: #030303;
}
.navbar .submenu a {
  text-decoration: none;
  display: block;
  color: #ffffff;
  padding: 3px 20px;
}
.navbar .submenu a:hover {
  color: #15009a;
}
.navbar .navbar-footer {
  background: #85006d;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  position: sticky;
  bottom: 0;
}
.navbar .navbar-footer span {
  text-transform: uppercase;
  font-size: 14px;
}
.navbar .navbar-footer .arrow {
  font-size: 24px;
}

.x-small {
  font-size: 0.7rem;
}

small {
  font-size: 1rem;
}

.title-sec {
  height: 100vh;
  background: url(../images/title-bg.webp) center center/cover;
  position: relative;
  z-index: 1;
}
.title-sec::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #030303, transparent);
  z-index: -1;
}
.title-sec video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}

.about-title {
  background: inherit;
}

.devops-title {
  background: url(../images/devops-title.jpg);
  background-size: 100%;
}

.socialmedia-title {
  background: url(../images/social-media.jpg);
  background-size: 100%;
}

.seo-title {
  background: url(../images/seo.jpg);
  background-size: 100%;
}

.lead-title {
  background: url(../images/lead-generation-title.jpg);
  background-size: 100%;
}

.googlead-title {
  background: url(../images/google-ads.webp);
  background-size: 100%;
}

.blockchain-title {
  background: url(../images/blockchain.jpg);
  background-size: 100%;
}

.aimachine-title {
  background: url(../images/ai.jpg);
  background-size: 100%;
}

.analytics-title {
  background: url(../images/analytics.jpg);
  background-size: 100%;
}

.api-title {
  background: url(../images/API&Microservices.webp);
  background-size: 100%;
}

.business-title {
  background: url(../images/BusinessTechnologyConsulting.webp);
  background-size: 100%;
}

.app-title {
  background: inherit;
}

.itstaff-title {
  background: url(../images/it-staff.webp);
  background-size: 100%;
}

.data-title {
  background: url(../images/DataEngineering.jpg);
  background-size: 100%;
}

.cyber-title {
  background: url(../images/cyber-img.jpg);
  background-size: 100%;
}

.software-title {
  background: url(../images/software.jpg);
  background-size: 100%;
}

.cloud-title {
  background: url(../images/cloud.jpg);
  background-size: 100%;
}

.web-title {
  background: inherit;
}

.qa-title {
  background: url(../images/qa.jpg);
  background-size: 100%;
}

.support-title {
  background: url(../images/support.jpg);
  background-size: 100%;
}

.product-title {
  background: url(../images/products.jpg);
  background-size: 100%;
}

.hero-sec {
  position: relative;
  height: 100vh;
}
.hero-sec video {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-sec .package-btn {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}

.counter-number {
  transition: all 0.3s ease-in-out;
}

.services-sec {
  position: relative;
  overflow: hidden;
}
.services-sec video {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -2;
  filter: blur(5px);
  -o-object-fit: cover;
     object-fit: cover;
}
.services-sec .ser-box {
  position: relative;
  color: #ffffff;
  transition: 0.3s all;
}
.services-sec .ser-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, #85006d, #15009a);
}
.services-sec .ser-box a {
  color: #ffffff;
  transition: 0.3s all;
  font-size: 1.2rem;
}
.services-sec .ser-box a:hover {
  color: #85006d;
  letter-spacing: 0.5px;
  font-weight: bold !important;
  text-shadow: 0px 0px 10px #85006d;
}

.tools-sec .tools-btn button {
  background-color: #202529;
  color: #ffffff;
}
.tools-sec .tools-btn .active {
  background: linear-gradient(to left, #15009a, #85006d);
}

.choosus h4 {
  text-shadow: 0px 0px 10px #85006d;
}

.service-sec {
  position: sticky;
  top: 0;
  height: 100vh;
  transition: height 0.8s ease, transform 0.8s ease;
  border-top: 1px dashed #85006d;
  z-index: 1;
  overflow: hidden;
  background-color: #030303;
}
.service-sec:nth-last-child(1) {
  height: 100%;
}
.service-sec:nth-last-child(1) .ser-img {
  height: 100%;
}
.service-sec .ser-img {
  background-color: #202529;
  height: 125%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-sec .ser-img img {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
  filter: brightness(0) invert(1);
}

#particle2 {
  z-index: -1;
  height: 100%;
}

.tools .item {
  flex: 0 0 auto;
  width: 100%;
  background-color: #ffffff;
  padding: 12px 0px;
  text-align: center;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tools .item img {
  width: 50%;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}

.blogs .blog-img {
  height: 200px;
}
.blogs .blog-img:hover img {
  transform: scale(1.3);
}
.blogs img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  transition: 0.3s all;
}

.anim-text {
  overflow: hidden;
  position: relative;
}
.anim-text .anim-word {
  display: inline-block;
  transform: translateX(0);
  will-change: transform;
  transition: transform 0.05s linear;
}
.anim-text span {
  font-size: clamp(55px, 13.8888888889vw, 13.8888888889vw);
  font-weight: 500;
  line-height: 90%;
  text-transform: uppercase;
}

.sponser {
  background: linear-gradient(130deg, #202529, black);
}
.sponser .sponser-img img {
  width: 100%;
}

.site-footer {
  position: relative;
  font-size: 15px;
  overflow: hidden;
}
.site-footer video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  z-index: -1;
}
.site-footer .link-widget li {
  position: relative;
  display: block;
  line-height: 30px;
}
.site-footer .link-widget li a {
  color: #fff;
  position: relative;
  transition: all 0.3s ease-in-out;
  font-size: 1.1rem;
  font-weight: 400;
  width: 100%;
  background-color: transparent;
  text-decoration: none;
  text-align: left;
}
.site-footer .link-widget li a:hover {
  color: #85006d;
}
.site-footer .address {
  position: relative;
}
.site-footer .address h4 {
  border-bottom: 1px dashed white;
}

.mytestmonial .video-box {
  height: 300px;
}
.mytestmonial .video-box video {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
.mytestmonial .profile-img img {
  width: 60px;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100px;
}
.mytestmonial .testmonial-footer::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: linear-gradient(to left, #000000, #ffffff, #000000);
}
.mytestmonial .rating .rating-box::before {
  position: absolute;
  top: 0;
  right: -100%;
  content: "";
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #000000, #ffffff, #000000);
}
.mytestmonial .rating .rating-box:nth-last-child(1)::before {
  display: none;
}

.embrace .counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 250px;
  width: 250px;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
}

.counter-box {
  background: linear-gradient(to right, #202529, #030303);
}

.industry .industry-btn .active {
  background: linear-gradient(to right, #85006d, #030303);
}
.industry .industry-btn .active img:nth-child(1) {
  display: block;
}
.industry .industry-btn .active img:nth-child(2) {
  display: none;
}
.industry .industry-btn button {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  background: linear-gradient(to right, #202529, #030303);
  color: #ffffff;
  border: 0;
}
.industry .industry-btn button img {
  width: 50px;
  display: block;
  margin: 0 auto;
}
.industry .industry-btn button img:nth-child(1) {
  display: none;
}
.industry .industry-content {
  background-color: #202529;
}
.industry .industry-content .industry-footer {
  background: linear-gradient(to left, #15009a, #85006d);
  text-align: center;
  padding: 25px;
  color: #ffffff;
}
.industry .industry-img {
  width: 40%;
  height: 350px;
}
.industry .industry-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.industry .industry-txt {
  width: 60%;
}

.faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #eaeaea;
  position: relative;
  padding-left: 40px;
  background-color: transparent;
}
.faq-accordion .accordion-item:nth-last-child(1) {
  border-bottom: 0;
}
.faq-accordion .accordion-item::before {
  content: attr(data-number);
  position: absolute;
  left: 0;
  top: 22px;
  font-size: 2rem;
  font-weight: 700;
  color: #ccc;
  line-height: 1;
}
.faq-accordion .accordion-item .accordion-button {
  font-weight: 600;
  padding: 30px 0px;
  background-color: transparent;
  box-shadow: none;
  color: #ffffff;
}
.faq-accordion .accordion-item .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: transparent;
}
.faq-accordion .accordion-item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='black' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.faq-accordion .accordion-item .accordion-body {
  font-size: 1rem;
  color: #ffffff;
  padding: 0 0 30px 0;
}

.form-wrapper {
  background: linear-gradient(to right, #202529, #030303);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.form-wrapper .select2-container {
  width: 100% !important;
}
.form-wrapper .select2-container .select2-selection--single {
  height: 37px;
  background-color: transparent;
}
.form-wrapper .select2-container .select2-selection--single .select2-selection__rendered {
  color: #ffffff !important;
  line-height: 35px;
}

.form-wrapper h2 {
  font-weight: 700;
}
.form-wrapper h2 span {
  color: #15009a;
}

.budget-option {
  border: 1px solid #ced4da;
  padding: 8px 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.2s;
  color: #ffffff;
}

.budget-option.active {
  background: linear-gradient(to left, #15009a, #85006d);
}

.budget-option:hover {
  background: linear-gradient(to left, #15009a, #85006d);
}

.form-control {
  background-color: transparent;
  color: #ffffff;
}
.form-control::-moz-placeholder {
  color: #ffffff;
}
.form-control::placeholder {
  color: #ffffff;
}
.form-control:focus {
  background: linear-gradient(to left, #202529, #030303);
  box-shadow: none;
  border-color: transparent;
  color: #ffffff;
}

.form-select {
  background-color: #030303;
  color: #ffffff;
}
.form-select:focus {
  background: linear-gradient(to left, #202529, #030303);
  box-shadow: none;
  border-color: transparent;
}
.form-select option {
  background-color: black;
}

.form-check-input:checked {
  background-color: #85006d;
  border-color: #15009a;
  color: #ffffff;
}

.packages .package-box {
  background: linear-gradient(to right, #202529, #030303);
  margin-bottom: 25px;
}

.portfolio a .portfolio-box .portfolio-img {
  height: 200px;
}
.portfolio a .portfolio-box .portfolio-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.portfolio a .portfolio-box span {
  color: #ffffff;
  transition: 0.3s all;
}
.portfolio a .portfolio-box span i {
  rotate: 45deg;
  color: #85006d;
  transition: 0.3s all;
}
.portfolio a:hover span {
  color: #85006d;
}
.portfolio a:hover span i {
  color: #15009a;
  rotate: 90deg;
}
.portfolio .nav-item .nav-link {
  background-color: transparent;
  border: 0.5px solid #202529;
  padding: 13px 38px;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: #ffffff;
}
.portfolio .nav-item .active {
  background: linear-gradient(to left, #15009a, #85006d);
}

.allservices a .portfolio-box .portfolio-img {
  height: 200px;
}
.allservices a .portfolio-box .portfolio-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.allservices a .portfolio-box span {
  color: #ffffff;
  transition: 0.3s all;
}
.allservices a .portfolio-box span i {
  rotate: 45deg;
  color: #85006d;
  transition: 0.3s all;
}
.allservices a:hover span {
  color: #85006d;
}
.allservices a:hover span i {
  color: #15009a;
  rotate: 90deg;
}
.allservices .nav-item .nav-link {
  background-color: transparent;
  border: 0.5px solid #202529;
  padding: 13px 38px;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: #ffffff;
}
.allservices .nav-item .active {
  background: linear-gradient(to left, #15009a, #85006d);
}

.aboutsec .video-img {
  width: 100%;
  height: 500px;
  position: relative;
}
.aboutsec .video-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutsec .video-wave-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.aboutsec .video-wave-button .btn-play {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  background-color: #85006d;
  border-radius: 50%;
  text-align: center;
  line-height: 80px;
  color: #fff;
  font-size: 32px;
  text-decoration: none;
  z-index: 1;
  transition: transform 0.3s ease;
}
.aboutsec .video-wave-button .btn-play:hover {
  transform: scale(1.05);
}
.aboutsec .video-wave-button .btn-play .play-icon {
  position: relative;
  z-index: 2;
}
.aboutsec .video-wave-button .btn-play::before, .aboutsec .video-wave-button .btn-play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%) scale(1);
  z-index: 0;
  animation: wave 1.8s infinite ease-out;
}
.aboutsec .video-wave-button .btn-play::after {
  animation-delay: 0.9s;
}
@keyframes wave {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  70% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.5);
    opacity: 0;
  }
}

.story .story-box {
  background: linear-gradient(to right, #202529, #030303);
}
.story .story-box:nth-child(2) {
  background: linear-gradient(to left, #202529, #030303);
}

.payment-method {
  background: linear-gradient(to right, #202529, #030303);
  border-radius: 10px;
  padding: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}
.payment-method:hover, .payment-method.active {
  border-color: #0d6efd;
  background: linear-gradient(to right, #15009a, #85006d);
}
.payment-method .img {
  background-color: #ffffff;
  border-radius: 100px;
  padding: 10px;
  margin-bottom: 10px;
  width: 100px;
  margin: 0 auto;
}

.form-section {
  display: none;
}
.form-section label {
  color: #ffffff;
}
.form-section.active {
  display: block;
  background-color: #202529;
  padding: 20px;
  border-radius: 20px;
}

.crypto-section .crypto-icons .crypto-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 165px;
  padding: 15px;
  transition: transform 0.3s ease;
  background: linear-gradient(to right, #202529, #030303);
  border-radius: 10px;
}
.crypto-section .crypto-icons .crypto-item img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 8px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}
.crypto-section .crypto-icons .crypto-item span {
  font-size: 0.9rem;
  color: #555;
}

.affiliate .affiliate-box {
  background: linear-gradient(to right, #202529, #030303);
}

.custom-navigation {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translate(0%, -50%);
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
  padding: 10px 20px;
  background: linear-gradient(to right, #202529, transparent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.swiper-button-next-custom {
  background: linear-gradient(to left, #202529, transparent);
  border-radius: 0px 15px 15px 0px;
}
.swiper-button-next-custom:hover {
  background: linear-gradient(to left, #15009a, transparent);
}

.swiper-button-prev-custom {
  border-radius: 15px 0px 0px 15px;
}
.swiper-button-prev-custom:hover {
  background: linear-gradient(to right, #15009a, transparent);
}

.blogs-pg .blogs-box {
  background: linear-gradient(to right, #202529, #030303);
}

.blog-detail .blog-detail-content .blog-detail-img {
  height: 400px;
}
.blog-detail .blog-detail-content .blog-detail-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-detail .authr-media a {
  background-color: #85006d;
  width: 40px;
  display: inline-block;
  padding: 10px;
  border-radius: 100px;
  color: #ffffff;
  transition: 0.3s all;
  font-size: 0.8rem;
}
.blog-detail .authr-media a:hover {
  background-color: #15009a;
}
.blog-detail .list a {
  background-color: #030303;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 5px;
}
.blog-detail .list a i {
  margin-right: 3px;
}
.blog-detail .list a:hover {
  color: #85006d;
}

.all-packages .nav-item .nav-link {
  background-color: transparent;
  border: 0.5px solid #202529;
  padding: 13px 10px;
  width: 100%;
  text-align: center;
  color: #ffffff;
}
.all-packages .complete-package .nav-item .nav-link {
  background-color: transparent;
  border: 0.5px solid #202529;
  padding: 13px 20px;
  width: 100%;
  text-align: center;
  color: #ffffff;
}
.all-packages .package-box h5 {
  background: linear-gradient(to right, #15009a, #85006d);
}

.porfolio-detail .port-img {
  height: 500px;
}
.porfolio-detail .port-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.porfolio-detail .port-content .list-box {
  background: linear-gradient(to right, #15009a, #85006d);
}
.porfolio-detail .technologies {
  background: linear-gradient(to right, #15009a, #85006d);
}

.myImage .port-img {
  height: 200px;
}
.myImage .port-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 767px) {
  .industry .industry-img {
    width: 100%;
    height: 200px;
  }
  .industry .industry-txt {
    width: 100%;
  }
  .blog-detail .blog-detail-content .blog-detail-img {
    height: 250px;
  }
}
@media (max-width: 1024px) {
  .inner-header {
    gap: 12px !important;
  }
  .logo-area img {
    width: 70px !important;
  }
  .x-small {
    font-size: 0.6rem;
  }
  .mytestmonial .rating .rating-box::before {
    display: none;
  }
  .title-sec {
    height: 100%;
  }
  .site-footer video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: -1;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
  .navbar .navbar-menu .number {
    width: 35px;
  }
  .navbar .submenu a {
    font-size: 0.9rem;
  }
  .title-sec {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .industry .industry-btn button {
    padding: 11px;
  }
  .all-packages .nav-item .nav-link {
    background-color: transparent;
    border: 0.5px solid #202529;
    padding: 13px 10px;
    width: 100%;
    text-align: center;
    font-size: 0.7rem;
    color: #ffffff;
  }
}
@media (min-width: 1025px) and (max-width: 2000px) {
  .packages .package-box {
    height: 100%;
  }
}/*# sourceMappingURL=style.css.map */