/* @font-face {
  font-family: "lamaSens";
  src: url("../fonts/lamaSens/LamaSans-Regular.woff2");
  font-weight: 500;
}

@font-face {
  font-family: "lamaSens";
  src: url("../fonts/lamaSens/LamaSans-Medium.woff2");
  font-weight: 700;
}

@font-face {
  font-family: "lamaSens";
  src: url("../fonts/lamaSens/LamaSans-Bold.woff2");
  font-weight: 900;
} */
/*-------------- 29ltbukrabold font -------------------*/
@font-face {
  font-family: "lamaSens";
  src: url("../fonts/ltbukra/29ltbukraregular.otf");
  font-weight: 500;
}

@font-face {
  font-family: "lamaSens";
  src: url("../fonts/ltbukra/29lt-bukra-medium.otf");
  font-weight: 700;
}

@font-face {
  font-family: "lamaSens";
  src: url("../fonts/ltbukra/29ltbukrabold.otf");
  font-weight: 900;
}


/*-------------- New font -------------------*/
/* @font-face {
  font-family: "lamaSens";
  src: url("../fonts/helvetica/HelveticaNeueRoman.otf");
  font-weight: 500;
}

@font-face {
  font-family: "lamaSens";
  src: url("../fonts/helvetica/HelveticaNeueMedium.otf");
  font-weight: 700;
}

@font-face {
  font-family: "lamaSens";
  src: url("../fonts/helvetica/HelveticaNeueBold.otf");
  font-weight: 900;
} */


* {
  margin: 0px;
  box-sizing: border-box;
  font-family: "lamaSens", sans-serif;
  scroll-behavior: smooth;
}

*::-moz-selection {
  background-color: #1D77B8;
  color: #fff;
}

*::selection {
  background-color: #1D77B8;
  color: #fff;
}

*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background-color: #1D77B8;
}

*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #755192, #1D77B8);
  border-radius: 8px;
}

*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #1D77B8, #755192);
}

.contain {
  background-position: center;
  background-size: cover;
}

.overflowNone {
  overflow: hidden;
}

.btn:focus,
button:focus,
input:focus,
.form-control:focus {
  outline-width: 0px !important;
  outline-color: transparent !important;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

a {
  text-decoration: none !important;
}

ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.owl-theme .owl-dots .owl-dot span {
  width: 35px;
  height: 4px;
  border-radius: 4px;
  background-color: #fff;
  opacity: 0.5;
  transition: all 0.5s linear;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: #fff;
  opacity: 1;
}

.overflowNone {
  overflow: hidden;
}

button {
  outline: none;
  border: 0px;
}
.owl-carousel{
  direction: ltr !important;
}
.owl-carousel.owl-projects{
 direction: ltr !important;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@-webkit-keyframes pulse-shadow {
  100% {
    box-shadow: 0 0 0 10px rgba(117, 81, 146, 0.06), 0 0 0 20px rgba(117, 81, 146, 0.06);
  }
}

@keyframes pulse-shadow {
  100% {
    box-shadow: 0 0 0 10px rgba(117, 81, 146, 0.06), 0 0 0 20px rgba(117, 81, 146, 0.06);
  }
}

@-webkit-keyframes pulse-shadow-primary {
  100% {
    box-shadow: 0 0 0 10px rgba(0, 100, 173, 0.06), 0 0 0 20px rgba(0, 100, 173, 0.06);
  }
}

@keyframes pulse-shadow-primary {
  100% {
    box-shadow: 0 0 0 10px rgba(0, 100, 173, 0.06), 0 0 0 20px rgba(0, 100, 173, 0.06);
  }
}

@-webkit-keyframes shadow {
  0% {
    box-shadow: 0px 0px 35px -4px rgba(255, 255, 255, 0.5);
    opacity: 0 !important;
  }

  100% {
    box-shadow: 0px 0px 35px -4px rgba(255, 255, 255, 0);
  }
}

@keyframes shadow {
  0% {
    box-shadow: 0px 0px 35px -4px rgba(255, 255, 255, 0.5);
    opacity: 0 !important;
  }

  100% {
    box-shadow: 0px 0px 35px -4px rgba(255, 255, 255, 0);
  }
}

@-webkit-keyframes pulsecust {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0;
    transform: scale(1.5);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulsecust {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0;
    transform: scale(1.5);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@-webkit-keyframes zooming {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes zooming {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
  }
}

@-webkit-keyframes translateY {

  0%,
  100% {
    transform: translateY(2px);
  }

  50% {
    transform: translateY(-2px);
  }
}

@keyframes translateY {

  0%,
  100% {
    transform: translateY(2px);
  }

  50% {
    transform: translateY(-2px);
  }
}

:root {
  --primary-color: #5745B2;
  --secondary-color: #004A76;
  --secondarys-color: #5745B2;
  --third-color: #471a7d;
  --light-color: #fff;
  --dark-color: #000;
  --gray-color: #9E9E9E;
  --head-green: #80ffdb;
  --primary-filter: invert(26%) sepia(96%) saturate(1430%) hue-rotate(185deg) brightness(91%) contrast(101%);
  --third-filter: invert(39%) sepia(15%) saturate(1685%) hue-rotate(230deg) brightness(86%) contrast(87%);
  --light-filter: invert(95%) sepia(95%) saturate(19%) hue-rotate(318deg) brightness(104%) contrast(106%);
}

html[dir=ltr] .contact-us-form .form-contain .form-group img {
  left: unset;
  right: 14px;
}

html[dir=ltr] .contact-us-form .form-contain .form-group.select-options::before {
  right: unset !important;
  left: 14px;
}

html[dir=ltr] .navbar .content .navbar-nav li .nav-link.arrow-contain::before {
  right: 0px !important;
  left: unset !important;
}

html[dir=ltr] .about-repotic .about-list li::after,
html[dir=ltr] .blogs .blog-box .hover-section .hover-contain .date::after,
html[dir=ltr] .blogs .blog-box .contain .date::after,
html[dir=ltr] .about-serivce .service-list-contain li::after {
  right: unset !important;
  left: 0px;
}

html[dir=ltr] .blogs .blog-box .hover-section .hover-contain .date,
html[dir=ltr] .blogs .blog-box .contain .date {
  -webkit-padding-end: 34px;
  padding-inline-end: 34px;
}

html[dir=ltr] .custom-btn img {
  transform: rotate(366deg);
}

html[dir=ltr] .custom-btn:hover img {
  transform: translateX(300%) rotate(366deg) !important;
}

html[dir=ltr] .service-header .image-content img {
  -o-object-position: left !important;
  object-position: left !important;
}

html[dir=ltr] header::after {
  transform: scaleX(-1);
}

html[dir=ltr] header .owl-dots,
html[dir=ltr] header .contain .buttons-contain {
  justify-content: flex-start !important;
}

html[dir=ltr] header .contain {
  padding: 0px 20px;
}

html[dir=ltr] .services .box-contain:nth-child(1) .box::before {
  transform: scaleX(-1);
  right: -30px;
  left: unset;
}

html[dir=ltr] .services .box-contain:nth-child(1) .box:hover::before {
  transform: scaleX(-1) translateY(44px) rotate(40deg) translateX(-18px);
}

html[dir=ltr] .services .box-contain:nth-child(2) .box::before {
  right: unset !important;
  left: -30px;
  transform: rotate(0deg);
}

html[dir=ltr] .services .box-contain:nth-child(2) .box:hover::before {
  transform: rotate(33deg) translateX(-42px) translateY(38px);
}

html[dir=ltr] .services .box-contain:nth-child(3) .box::before {
  left: unset !important;
  right: -30px;
  transform: rotate(192deg);
}

html[dir=ltr] .services .box-contain:nth-child(3) .box:hover::before {
  transform: rotate(214deg) translateX(-30px) translateY(35px);
}

html[dir=ltr] .services .box-contain:nth-child(4) .box::before {
  right: unset !important;
  left: -30px;
  transform: rotate(93deg);
}

html[dir=ltr] .services .box-contain:nth-child(4) .box:hover::before {
  transform: rotate(57deg) translateX(33px) translateY(-39px);
}

html[dir=ltr] .blogs .blog-box .hover-section .hover-contain .custom-btn {
  flex-direction: row-reverse !important;
}

html[dir=ltr] .portfolio.testimonails .portfolio-box .contain .arrow-shape img {
  transform: rotate(180deg) !important;
}

html[dir=ltr] .single-product .product-list::after {
  left: unset;
  right: 20px;
}

.general-section {
  width: 100%;
  /* padding: 100px 0px; */
  position: relative;
  z-index: 9;
}

about-serivce .general-section .prod {
  margin: 100px 0 !important;
}

.heading-contain {
  width: 100%;
  position: relative;
}

.about-rep h2 {

  font-size: 20px;
  font-weight: 500;
  color: #292929;
  text-align: center;
  line-height: 1.8;
}

.heading-contain .see-more {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: 0px;
  right: 0;
  z-index: 9;
}

.heading-contain .see-more img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
  filter: var(--primary-filter);
}

.heading-contain .see-more span {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 900;
}

.heading-contain .see-more:hover img {
  filter: var(--third-filter);
  -webkit-animation: tada 0.2s linear both;
  animation: tada 0.2s linear both;
}

.heading-contain .see-more:hover span {
  background: -webkit-linear-gradient(180deg, #0064AD, #755192);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.custom-btn {
 width: 250px;
    height: 50px;
    position: relative;
    border-radius: 25px;
    background-color: var(--primary-color);
    display: flex;
    gap: 10px;
    align-items: center;
    align-content: center;
    justify-content: center;
    transition: all 0.3s linear;
    overflow: hidden;
    z-index: 9;
    flex-direction: row-reverse;
}

.project-contain .btn-pro {
  width: 150px;
  height: 50px;
  position: relative;
  border-radius: 25px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  transition: all 0.3s linear;
  overflow: hidden;
  z-index: 9;
  color: white;
}

.project-contain .custom-ptn-pro {
  display: flex;
  gap: 10px;
}

.custom-btn::after,
.custom-btn::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  transition: all 0.3s linear;
}

.custom-btn::after {
  width: 0%;
  background: linear-gradient(90deg, #755192, #1D77B8);
  z-index: -2;
}

.custom-btn::before {
  width: 100%;
    background: url(../images/navbar/Logo2.png) center / 90px 30px no-repeat;
    transform: translateY(100%);
    z-index: -1;
}

.custom-btn img {
  width: 24px !important;
  height: 24px !important;
  display: inline !important;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-margin-end: 8px;
  margin-inline-end: 8px;
  transition: all 0.3s linear;
}

.custom-btn span {
  font-size: 13px;
  font-weight: 700;
  color: var(--light-color);
  transition: all 0.3s linear;
}

.custom-btn:hover::after {
  width: 100%;
}

.custom-btn:hover::before {
  transform: translateY(0px);
}

.custom-btn:hover img {
  transform: translateX(-300%);
}

.custom-btn:hover span {
  transform: translateY(-300%);
}

.heading {
  width: 100%;
  text-align: center;
  margin-bottom: 75px;
}

.heading h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.heading h2 span {
  color: var(--primary-color);
  font-size: 30px;
  font-weight: 700;
}

.heading h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
}

.heading h1 span {
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 700;
}

.heading h1.no-margin {
  margin: 0px !important;
}

.heading p {
  color: var(--gray-color);
  font-size: 20px;
  font-weight: 500;
  margin: 20px;
}

.navbar {
  width: 100%;
  padding: 20px 0px;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  transition: all 0.3s linear;
  background-color: var(--light-color);
}

.navbar.scrolled {
  padding: 15px 0px;
  box-shadow: 0px 0px 10px rgba(117, 81, 146, 0.07);
}

.navbar.scrolled .brand-name img {
  height: 40px !important;
}

.navbar .content {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}

.navbar .content .hamburger {
  display: none;
}

.navbar .content .hamburger .line {
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, #0064AD, #755192);
  display: block;
  margin: 8px auto;
  transition: all 0.3s ease-in-out;
}

.navbar .content .hamburger.active {
  transition: all 0.3s ease-in-out;
  transition-delay: 0.6s;
  transform: rotate(45deg);
}

.navbar .content .hamburger.active .line:nth-child(2) {
  width: 0px;
}

.navbar .content .hamburger.active .line:nth-child(1),
.navbar .content .hamburger.active .line:nth-child(3) {
  transition-delay: 0.3s;
}

.navbar .content .hamburger.active .line:nth-child(1) {
  transform: translateY(6.5px);
}

.navbar .content .hamburger.active .line:nth-child(3) {
  transform: translateY(-15px) rotate(90deg);
}

.navbar .content .brand-name img {
  width: 120px;
  height: 57px;
  -o-object-fit: contain;
  object-fit: contain;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  transition: all 1s;
}

/* .navbar .content .brand-name:hover img{
  transform: scale(1.5,1.5);
} */
.navbar .content .overlay {
  display: none;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.navbar .content .navbar-nav {
  flex-direction: row;
}

.navbar .content .navbar-nav .close-navbar {
  width: 40px;
  height: 40px;
  background-color: var(--secondary-color);
  border-radius: 10px;
  display: none;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: absolute;
  top: 10px;
  right: 15px;
}

.navbar .content .navbar-nav .close-navbar img {
  width: 18px;
  height: 18px;
  -o-object-fit: contain;
  object-fit: contain;
  filter: var(--light-filter);
}

.navbar .content .navbar-nav li {
  -webkit-margin-end: 20px;
  margin-inline-end: 15px;
}

.navbar .content .navbar-nav li:last-child {
  -webkit-margin-end: 0px;
  margin-inline-end: 0px;
}

.navbar .content .navbar-nav li .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-color);
  position: relative;
  z-index: 9;
}

.navbar .content .navbar-nav li .nav-link.arrow-contain {
  -webkit-padding-end: 28px;
  padding-inline-end: 28px;
}

.navbar .content .navbar-nav li .nav-link.arrow-contain::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: url("../images/icons/down_arrow.svg") center/contain no-repeat;
  top: calc(50% - 10px);
  right: 0px;
  z-index: -1;
  transition: all 0.3s linear;
}

.navbar .content .navbar-nav li .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(10px);
  opacity: 0;
  width: 100%;
  height: 10px;
  background: url("../images/navbar/nav_shape.png") bottom center/contain no-repeat;
  z-index: -1;
  transition: all 0.3s linear;
}

.navbar .content .navbar-nav li .nav-link:hover {
  color: var(--third-color);
}

.navbar .content .navbar-nav li .nav-link:hover::after {
  transform: translateY(0px);
  opacity: 1;
}

.navbar .content .navbar-nav li .service-drop-list {
  width: 100%;
  position: absolute;
  padding: 40px 0px 20px 0px;
  background-color: var(--primary-color);
  top: 80px;
  right: 0;
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: all 0.3s linear;
}

.navbar .content .navbar-nav li .service-drop-list #particles-js {
  width: 100%;
  height: 100%;
  pointer-events: none;
  position: absolute;
  top: 0;
  opacity: 0.15;
  right: 0;
  z-index: -1;
}

.navbar .content .navbar-nav li .service-drop-list .box {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  transition: all 0.3s linear;
}

.navbar .content .navbar-nav li .service-drop-list .box .image-content {
  width: 120px;
  height: 120px;
  overflow: hidden;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.navbar .content .navbar-nav li .service-drop-list .box .image-content img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}

.navbar .content .navbar-nav li .service-drop-list .box .contain {
  width: calc(100% - 144px);
}

.navbar .content .navbar-nav li .service-drop-list .box .contain p {
  color: var(--light-color);
  margin: 0px;
  font-size: 14px;
  font-weight: 700;
}

.navbar .content .navbar-nav li .service-drop-list .box:hover {
  transform: translateY(-10px);
}

.navbar .content .navbar-nav li .service-drop-list .box:hover .image-content img {
  -webkit-animation: fadeInLeft 0.4s linear;
  animation: fadeInLeft 0.4s linear;
}

.navbar .content .navbar-nav li.drop-list:hover .service-drop-list {
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
  display: block;
  overflow-y: auto;
  max-height: 500px;
}

.navbar .content .navbar-nav li.drop-list:hover .nav-link.arrow-contain::before {
  transform: rotate(180deg);
}

.navbar .content .buttons-contain {
  display: flex;
  align-content: center;
  align-items: center;
}

.navbar .content .buttons-contain .lang {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s linear;
  position: relative;
  z-index: 9;
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
}

.navbar .content .buttons-contain .lang::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #1D77B8, #755192);
  top: 0;
  right: 0;
  z-index: -1;
  border-radius: 50%;
  transition: all 0.3s linear;
  transform: scale(0);
}

.navbar .content .buttons-contain .lang span {
  font-size: 16px;
  font-weight: 700;
  transition: all 0.3s linear;
  color: var(--light-color);
}

.navbar .content .buttons-contain .lang:hover::after {
  transform: scale(1);
}

.navbar .content .buttons-contain .lang:hover span {
  -webkit-animation: fadeInLeft 0.3s linear;
  animation: fadeInLeft 0.3s linear;
}

header {
  width: 100%;
  /* padding: 286px 0px 50px; */
  position: relative;
  /* background: #461A7B; */
}

/* header::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/background/s1.webp");
  top: 0;
  left: 0;
  z-index: -1;
} */

/* header .owl-stage {
  padding-bottom: 169px;
} */

header .contain {
  width: 100%;
  padding: 100px 0px 30px;
  height: 100vh;
  background-image: url(../images/img/repsite.png);
  background-repeat: no-repeat !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

header .contain .image {
  width: 100%;
}

header .contain .image img {
  max-width: 500px !important;
}


.owl-header .owl-dots {
  margin-top: 0px !important;
  padding-bottom: 20px !important;
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
}

header .contain h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--light-color);
}

header .contain h2 {
  font-size: 25px !important;
  /* font-weight: 900!important; */
  color: var(--head-green) !important;
  line-height: 1.5 !important;
  margin-bottom: 30px !important;
}

header .contain p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
  margin: 45px 0px;
  text-align: justify;
}

.main-slide {
  margin-left: auto;
  margin-right: auto;
}

header .contain .buttons-contain {
  display: flex;
  align-items: center;
  justify-content: left;
  /* gap: 20px; */
}

header .contain .buttons-contain .video-icon {
  width: 50px;
  height: 50px;
  outline: 1px solid var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
  z-index: 9;
  -webkit-margin-start: 15px;
  margin-inline-start: 15px;
}

header .contain .buttons-contain .video-icon img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
  transform: rotate(185 deg);
}

header .contain .buttons-contain .video-icon::after,
header .contain .buttons-contain .video-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  right: 0;
}

header .contain .buttons-contain .video-icon::before {
  background-color: var(--secondarys-color);
  z-index: -2;
  animation: pulsecust 2s linear infinite alternate-reverse;
}

header .contain .buttons-contain .video-icon::after {
  background-color: var(--primary-color);
  z-index: -1;
  animation: pulsecust 3s linear infinite alternate-reverse;
}

header .owl-dots {
  display: flex;
  justify-content: flex-start !important;
  align-items: center;
  align-content: center;
  margin: 0px;
}

.services {
  width: 100%;
  /* position: relative; */
  padding: 50px 0;
}

.services .box-contain .box {
  width: 100%;
  padding: 30px;
  border-radius: 100px;
  background-color: var(--light-color);
  box-shadow: 0px 15px 30px rgba(29, 119, 184, 0.04);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  position: relative;
}

.services .box-contain .box::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  z-index: -1;
  transition: all 0.4s linear;
}

.services .box-contain .box .image-content {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  background-color: rgba(0, 100, 173, 0.06);
  z-index: 9;
  position: relative;
}

.services .box-contain .box .image-content::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  border-radius: 50%;
}

.services .box-contain .box .image-content img {
  width: 68px;
  height: 68px;
  -o-object-fit: contain;
  object-fit: contain;
}

.services .box-contain .box .contain {
  width: calc(100% - 200px);
}

.service-header .contain h1 {
  font-size: 40px;
  font-weight: 700;
  color: var(--light-color);
  margin: 40px 0px 30px;
}

.services .box-contain .box .contain h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0px;
  /* text-align: center; */
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.services .box-contain .box:hover .image-content::after {
  -webkit-animation: pulse-shadow 1.5s linear infinite alternate;
  animation: pulse-shadow 1.5s linear infinite alternate;
}

.services .box-contain .box:hover .image-content img {
  -webkit-animation: tada 1s linear;
  animation: tada 1s linear;
}

.services .box-contain .box:hover h2 {
  background: -webkit-linear-gradient(180deg, #0064AD, #755192);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.services .box-contain:nth-child(1) .box::before {
  background: url("../images/services/subtraction.png") top left/contain no-repeat;
  top: -30px;
  left: -30px;
}

.services .box-contain:nth-child(1) .box:hover::before {
  transform: translateY(44px) rotate(40deg) translateX(-18px);
}

.services .box-contain:nth-child(2) .box::before {
  background: url("../images/services/subtraction.png") bottom left/contain no-repeat;
  top: -30px;
  right: -30px;
  transform: rotate(270deg);
}

.services .box-contain:nth-child(2) .box:hover::before {
  transform: rotate(229deg) translateX(32px) translateY(-52px);
}

.services .box-contain:nth-child(3) .box::before {
  background: url("../images/services/subtraction.png") bottom left/contain no-repeat;
  bottom: -30px;
  left: -30px;
  transform: rotate(90deg);
}

.services .box-contain:nth-child(3) .box:hover::before {
  transform: rotate(45deg) translateX(32px) translateY(-52px);
}

.services .box-contain:nth-child(4) .box::before {
  background: url("../images/services/subtraction.png") bottom right/contain no-repeat;
  bottom: -30px;
  right: -30px;
  transform: rotate(180deg);
}

.services .box-contain:nth-child(4) .box:hover::before {
  transform: rotate(223deg) translateX(-62px) translateY(24px);
}

.services .box-contain:nth-child(even) .box {
  flex-direction: row-reverse;
}

.services .service-contain {
  width: 100%;
  position: relative;
  z-index: 9;
}

.services .service-contain::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  background: var(--secondarys-color) url("../images/navbar/PP.jpg") center/100px 70px no-repeat;
  top: calc(50% - 80px);
  right: calc(50% - 80px);
  z-index: 9;
  pointer-events: none;
  -webkit-animation: pulse-shadow 1s linear infinite alternate;
  animation: pulse-shadow 1s linear infinite alternate;
  border-radius: 50%;
  background-size: contain;
}

.projects {
  overflow: hidden;
}

.projects .nav.nav-tabs {
  border: 0px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  overflow-x: scroll;
  overflow-y: hidden;
  flex-wrap: nowrap;
  margin-bottom: 50px;
  padding-bottom: 10px;
}

.projects .nav.nav-tabs::-webkit-scrollbar-track,
.projects .nav.nav-tabs::-webkit-scrollbar {
  width: 4px !important;
  height: 4px !important;
}

.projects .nav.nav-tabs::-webkit-scrollbar-track {
  background-color: var(--light-color) !important;
}

.projects .nav.nav-tabs::-webkit-scrollbar-thumb {
  width: 50px !important;
  background: linear-gradient(90deg, #755192, #1D77B8);
}

.projects .nav.nav-tabs li {
  -webkit-margin-end: 18px;
  margin-inline-end: 18px;
}

.projects .nav.nav-tabs li:last-child {
  -webkit-margin-end: 0px;
  margin-inline-end: 0px;
}

.projects .nav.nav-tabs li a {
  min-width: 170px;
  height: 70px;
  padding: 0px 10px !important;
  background-color: rgba(0, 74, 118, 0.06);
  border-radius: 35px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  z-index: 9;
  overflow: hidden;
  border: 0px !important;
}

.projects .nav.nav-tabs li a::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background-color: var(--primary-color);
  top: -50%;
  right: -50%;
  z-index: -1;
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.3s linear;
}

.projects .nav.nav-tabs li a:hover,
.projects .nav.nav-tabs li a.active {
  color: var(--light-color);
}

.projects .nav.nav-tabs li a:hover::after,
.projects .nav.nav-tabs li a.active::after {
  transform: skewX(45deg) scale(1, 1);
}

.projects .project-box {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  background-color: var(--light-color);
  border-radius: 30px;
  transition: all 0.3s linear;
  box-shadow: 0px 0px 30px rgba(0, 100, 173, 0.04);
}

.projects .project-box.project-cloumn {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.projects .project-box.project-cloumn .image-content {
  width: 100% !important;
}

.projects .project-box.project-cloumn .image-content .project-logo {
  top: unset !important;
  bottom: -85px !important;
  right: calc(50% - 85px) !important;
}

.projects .project-box.project-cloumn .project-contain {
  width: 100%;
  padding: 100px 30px 30px !important;
  text-align: center;
}

.projects .project-box.project-cloumn .project-contain .technology {
  justify-content: center;
}

.projects .project-box.project-cloumn .project-contain .custom-btn {
  margin: auto;
}

.projects .project-box .image-content {
  width: 400px;
  height: 350px;
  position: relative;
}

.projects .project-box .image-content .project-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 30px;
}

.projects .project-box .image-content .project-logo {
  width: 170px;
  height: 170px;
  background-color: var(--light-color);
  border-radius: 30px;
  box-shadow: 0px 0px 20px rgba(20, 106, 163, 0.04);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 85px);
  right: -85px;
  z-index: 9;
  animation: translateY 1s linear infinite alternate-reverse;
}

.projects .project-box .image-content .project-logo img {
  width: 116px;
  height: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}

.projects .project-box .project-contain {
  width: calc(100% - 535px);
  -webkit-padding-end: 85px;
  padding-inline-end: 85px;
}

.projects .project-box .project-contain h2 {
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 900;
  margin: 0px;
}

.projects .project-box .project-contain .technology {
  display: flex;
  align-items: center;
  align-content: center;
  margin: 30px 0px;
}

.projects .project-box .project-contain .technology li {
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
}

.projects .project-box .project-contain .technology li:last-child {
  -webkit-margin-end: 0px;
  margin-inline-end: 0px;
}

.projects .project-box .project-contain .technology li a {
  width: 80px;
  height: 40px;
  display: flex;
  transition: all 0.3s linear;
}

.projects .project-box .project-contain .technology li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.projects .project-box .project-contain .technology li a:hover {
  transform: translateY(-10px);
}

.projects .project-box .project-contain p {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 30px;
  margin-top: 30px;
  
}

.projects .project-box .project-contain h3 {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: bold;
  margin: 20px 0;
}

.projects .project-box:hover {
  transform: translateY(-10px);
}

.projects .project-box:hover h2 {
  background: -webkit-linear-gradient(180deg, #0064AD, #755192);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.projects .owl-theme .owl-dots .owl-dot span,
.projects .owl-theme .owl-dots .owl-dot.active span,
.projects .owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--primary-color);
}

.projects .owl-stage {
  padding: 12px 0px 37px;
}

.projects .tab-pane.fade {
  transition: opacity 0.1s linear, -webkit-animation 0.2s linear;
  transition: opacity 0.1s linear, animation 0.2s linear;
  transition: opacity 0.1s linear, animation 0.2s linear, -webkit-animation 0.2s linear;
  overflow: hidden;
}

.projects .tab-pane.fade.show.active {
  -webkit-animation: fadeInUp 0.5s ease-in-out;
  animation: fadeInUp 0.5s ease-in-out;
}

.projects .item {
  margin: 0px 10px;
}

.project-wait {
  width: 100%;
  padding: 70px 0px;
  background-color: var(--third-color);
  position: relative;
  z-index: 9;
}

.project-wait::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/wait/pattern.svg") center/cover no-repeat;
  top: 0;
  right: 0;
  pointer-events: none;
  z-index: -1;
}

.project-wait .project-contain {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}

.project-wait .project-contain .image-content {
  /* width: 120px; */
  width: 150px;
  height: 121px;
}

.project-wait .project-contain .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.project-wait .project-contain .contain {
  width: calc(100% - 215px);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}

.project-wait .project-contain .contain .data {
  width: calc(100% - 265px);
  display: flex;
  flex-direction: column;
  text-align: center;
}

.project-wait .project-contain .contain .data h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--light-color);
  margin-bottom: 20px;
}

.project-wait .project-contain .contain .data p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
  text-align: center;
}

.project-wait .project-contain .contain .custom-btn {
  width: 170px;
  outline: 1px solid var(--light-color);
}

.project-wait .box {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
  transition: all 0.3s linear;
}

.project-wait .box .image-box {
  width: 120px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  border-radius: 50%;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.project-wait .box .image-box img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
}

.project-wait .box .box-contain {
  width: calc(100% - 132px);
  display: flex;
  flex-direction: column;
}

.project-wait .box .box-contain p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
}

.project-wait .box .box-contain h2 {
  font-size: 25px;
  font-weight: 700;
  color: var(--light-color);
  margin: 10px 20px 0px;
}

.project-wait .box:hover {
  transform: translateY(-10px);
}

.project-wait .box:hover .image-box {
  -webkit-animation: pulse-shadow-primary 1.5s linear infinite alternate;
  animation: pulse-shadow-primary 1.5s linear infinite alternate;
}

.project-wait .box:hover h2 {
  background: -webkit-linear-gradient(90deg, #fff, #755192);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.portfolio.padding-shape {
  padding-bottom: 70px;
}

.portfolio .nav.nav-tabs {
  border: 0px;
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  overflow-x: hidden;
  overflow-y: scroll;
  flex-wrap: nowrap;
  -webkit-padding-end: 10px;
  padding-inline-end: 10px;
  -webkit-padding-start: 35% !important;
  padding-inline-start: 35% !important;
}

.portfolio .nav.nav-tabs::-webkit-scrollbar-track,
.portfolio .nav.nav-tabs::-webkit-scrollbar {
  width: 4px !important;
  height: 4px !important;
}

.portfolio .nav.nav-tabs::-webkit-scrollbar-track {
  background-color: var(--light-color) !important;
}

.portfolio .nav.nav-tabs::-webkit-scrollbar-thumb {
  width: 50px !important;
  background: linear-gradient(90deg, #755192, #1D77B8);
}

.portfolio .nav.nav-tabs li {
  -webkit-margin-after: 18px;
  margin-block-end: 18px;
  width: 100%;
}

.portfolio .nav.nav-tabs li:last-child {
  -webkit-margin-after: 0px;
  margin-block-end: 0px;
}

.portfolio .nav.nav-tabs li a {
  width: 100%;
  height: 70px;
  padding: 0px 10px !important;
  background-color: rgba(0, 74, 118, 0.06);
  border-radius: 35px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  position: relative;
  z-index: 9;
  overflow: hidden;
  border: 0px !important;
}

.portfolio .nav.nav-tabs li a::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background-color: var(--primary-color);
  top: -50%;
  right: -50%;
  z-index: -1;
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.3s linear;
}

.portfolio .nav.nav-tabs li a:hover,
.portfolio .nav.nav-tabs li a.active {
  color: var(--light-color);
}

.portfolio .nav.nav-tabs li a:hover::after,
.portfolio .nav.nav-tabs li a.active::after {
  transform: skewX(45deg) scale(1, 1);
}

.portfolio .portfolio-box {
  width: 100%;
  height: 344px;
  border-radius: 30px;
  position: relative;
  z-index: 9;
  overflow: hidden;
  transition: all 0.3s linear;
}

.portfolio .portfolio-box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0px;
  bottom: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), #000000);
  transition: all 0.3s linear;
  z-index: 9;
}

.portfolio .portfolio-box .image-content {
  width: 100%;
  height: 100%;
}

.portfolio .portfolio-box .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.portfolio .portfolio-box .contain {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 99;
  display: flex;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: flex-end;
  padding: 40px;
  flex-direction: column;
}

.portfolio .portfolio-box .contain .project-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.portfolio .portfolio-box .contain h2 {
  color: var(--light-color);
  font-size: 22px;
  font-weight: 900;
  margin: 20px 0px;
  transform: translateX(-20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.portfolio .portfolio-box .contain .data {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 15px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  color: var(--light-color);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  transform: translateX(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.portfolio .portfolio-box .contain .flex-data {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}

.portfolio .portfolio-box .contain p {
  width: calc(100% - 55px);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin: 20px 0px 0px;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.portfolio .portfolio-box .contain .arrow-shape {
  width: 47px;
  height: 47px;
  display: flex;
  transform: translateX(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.portfolio .portfolio-box .contain .arrow-shape img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  filter: var(--light-filter);
}

.portfolio .portfolio-box .contain .arrow-shape:hover img {
  -webkit-animation: tada 0.3s linear both;
  animation: tada 0.3s linear both;
  filter: var(--primary-filter);
}

.portfolio .portfolio-box:hover {
  transform: translateY(-10px);
}

.portfolio .portfolio-box:hover .contain .project-icon,
.portfolio .portfolio-box:hover .contain .arrow-shape,
.portfolio .portfolio-box:hover .contain h2,
.portfolio .portfolio-box:hover .contain p,
.portfolio .portfolio-box:hover .contain .data {
  transform: translate(0px, 0px);
  opacity: 1;
  visibility: visible;
}

.portfolio .portfolio-box:hover::after {
  height: 100%;
}

.portfolio .owl-stage {
  padding: 15px 0px 30px;
}

.portfolio .item {
  margin: 0px 10px;
}

.portfolio .owl-theme .owl-dots .owl-dot span,
.portfolio .owl-theme .owl-dots .owl-dot.active span,
.portfolio .owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--primary-color);
}

.portfolio .testimonails-item {
  width: 100%;
  padding: 26px 0px;
  background-color: rgba(20, 106, 163, 0.06);
  border-radius: 60px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
  z-index: 9;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-color);
  overflow: hidden;
}

.portfolio .testimonails-item::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background-color: var(--primary-color);
  top: -50%;
  right: -50%;
  z-index: -1;
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.3s linear;
}

.portfolio .testimonails-item:hover,
.portfolio .testimonails-item.active {
  color: var(--light-color);
}

.portfolio .testimonails-item:hover::after,
.portfolio .testimonails-item.active::after {
  transform: skewX(45deg) scale(1, 1);
}

.portfolio .owl-theme .owl-nav {
  width: 100%;
  margin: 0px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.portfolio .owl-theme .owl-nav .owl-next,
.portfolio .owl-theme .owl-nav .owl-prev {
  position: absolute;
  width: 48px;
  height: 48px;
  top: calc(50% - 30px);
  margin: 0px;
  background: transparent url("../images/icons/slider_arrow.svg") center/contain no-repeat;
}

.portfolio .owl-theme .owl-nav .owl-next:hover,
.portfolio .owl-theme .owl-nav .owl-next:focus,
.portfolio .owl-theme .owl-nav .owl-next:active,
.portfolio .owl-theme .owl-nav .owl-prev:hover,
.portfolio .owl-theme .owl-nav .owl-prev:focus,
.portfolio .owl-theme .owl-nav .owl-prev:active {
  outline: none;
}

.portfolio .owl-theme .owl-nav .owl-next span,
.portfolio .owl-theme .owl-nav .owl-prev span {
  color: transparent !important;
}

.portfolio .owl-theme .owl-nav .owl-prev {
  left: -50px;
}

.portfolio .owl-theme .owl-nav .owl-next {
  right: -50px;
  transform: rotate(180deg);
}

.blogs {
  background-color: #FBFBFB;
}

.blogs .blog-box {
  width: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  z-index: 9;
  background-color: var(--light-color);
  outline: 1px solid rgba(18, 53, 185, 0.04);
  transition: all 0.3s linear;
}

.blogs .blog-box .image-content {
  width: 100%;
  height: 260px;
  border-radius: 30px;
  overflow: hidden;
}

.blogs .blog-box .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.blogs .blog-box .contain {
  width: 100%;
  padding: 30px 28px;
}

.blogs .blog-box .contain h2 {
  font-size: 20px;
  font-weight: 900;
  color: var(--dark-color);
  margin: 0px;
}

.blogs .blog-box .contain .date {
  position: relative;
  -webkit-padding-start: 34px;
  padding-inline-start: 34px;
  color: var(--gray-color);
  font-size: 13px;
  font-weight: 500;
  z-index: 9;
  margin: 25px 0px;
}

.blogs .blog-box .contain .date::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/blog/time.svg") center/contain no-repeat;
  top: calc(50% - 12px);
  left: 0;
  z-index: -1;
}

.blogs .blog-box .contain .desc {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-color);
  margin: 0px;
}

.blogs .blog-box .hover-section {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 9;
}

.blogs .blog-box .hover-section::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  bottom: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), #000000);
  transition: all 0.3s linear;
  z-index: 9;
}

.blogs .blog-box .hover-section .blog-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 8;
  transform-origin: bottom left;
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.86, 0, 0.07, 1);
}

.blogs .blog-box .hover-section .hover-contain {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  z-index: 99;
  transform: translateX(-40px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear;
}

.blogs .blog-box .hover-section .hover-contain h2 {
  font-size: 20px;
  font-weight: 900;
  color: var(--light-color);
  margin: 0px;
}

.blogs .blog-box .hover-section .hover-contain .date {
  position: relative;
  -webkit-padding-start: 34px;
  padding-inline-start: 34px;
  color: var(--gray-color);
  font-size: 13px;
  font-weight: 500;
  z-index: 9;
  margin: 25px 0px;
}

.blogs .blog-box .hover-section .hover-contain .date::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/blog/time.svg") center/contain no-repeat;
  top: calc(50% - 12px);
  left: 0;
  z-index: -1;
}

.blogs .blog-box .hover-section .hover-contain .custom-btn {
  width: 170px;
}

.blogs .blog-box:hover {
  transform: translateY(-10px);
}

.blogs .blog-box:hover .hover-section::after {
  height: 100% !important;
}

.blogs .blog-box:hover .hover-section .blog-image {
  transform: scale(1);
  transform-origin: top right;
}

.blogs .blog-box:hover .hover-section .hover-contain {
  transform: translate(0px);
  opacity: 1;
  visibility: visible;
}

.blogs .owl-stage {
  padding: 15px 0px 30px;
}

.blogs .item {
  margin: 0px 10px;
}

.blogs .owl-theme .owl-dots .owl-dot span,
.blogs .owl-theme .owl-dots .owl-dot.active span,
.blogs .owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--primary-color);
}

.clients .item {
  margin: 0px 10px;
}

.clients .item img {
  width: 100%;
  height: 60px;
  opacity: 0.4;
  transition: all 0.3s linear;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  cursor: pointer;
}

.clients .item img:hover {
  transform: translateY(-10px);
  opacity: 1;
}

.clients .owl-stage {
  padding: 10px 0px 10px;
}

.clients .owl-theme .owl-dots .owl-dot span,
.clients .owl-theme .owl-dots .owl-dot.active span,
.clients .owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--primary-color) !important;
}

.contact-us {
  width: 100%;
  position: relative;
  z-index: 100;
  margin-bottom: -50px;
}

@media (max-width:441px) {
  .contact-us {
    margin-bottom: -23px;
  }
}

.contact-us.no-margin {
  padding-bottom: 90px !important;
  margin-bottom: 0px !important;
}

.contact-us .contain {
  width: 100%;
  padding: 30px 80px;
  position: relative;
  z-index: 9;
  outline: 1px solid rgba(18, 53, 185, 0.06);
  border-radius: 30px;
  background: var(--light-color) url("../images/contact/pattern.webp") center bottom/cover no-repeat;
}

.contact-us .contain .contact-box {
  -webkit-border-end: 1px solid rgba(0, 100, 173, 0.1);
  border-inline-end: 1px solid rgba(0, 100, 173, 0.1);
}

.contact-us .contain .contact-box:last-child {
  -webkit-border-end: 0px;
  border-inline-end: 0px;
}

.contact-us .contain .box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  align-content: center;
}

.contact-us .contain .box img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
  object-fit: contain;
  transition: all 0.3s linear;
}

.contact-us .contain .box span {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 900;
  margin: 15px 0px;
}

.contact-us .contain .box p {
  font-size: 16px;
  font-weight: 900;
  color: var(--dark-color);
  margin: 0px;
}

.contact-us .contain .box:hover img {
  transform: translateY(-10px);
}

.contact-us .contain .box:hover p {
  background: -webkit-linear-gradient(180deg, #0064AD, #755192);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* footer {
  width: 100%;
  padding: 186px 0px 20px;
  background: var(--third-color);
  position: relative;
  z-index: 8;
}
.footer .footer-text{
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
  font-family: "lamaSens";
}
.footer .footer-text h2{
  font-family:"lamaSens";
  color: #FFF;
  font-size: 18px;
  margin-bottom: 20px;
}
.footer .footer-text p{
  font-family:"lamaSens";
  color: #FFF;
  font-size: 16px;
  margin-bottom: 10px;
}
.footer .head-foot h6 {
  margin-top: 30px;
  font-family:"lamaSens";
  color: #FFF;
  font-size: 18px;
  margin-right: 33px;
  margin-bottom: 20px;
}
.footer .Titles h6 {
  margin-top: 30px;
  font-family:"lamaSens";
  color: #FFF;
  font-size: 18px;
  margin-bottom: 20px;
}
.footer .links-foot-cotch{
  margin-top: 6rem !important;
  font-family:"lamaSens";
  color: #FFF!important;
  font-size: 20px;
  margin-right: 30px;
  margin-bottom: 30px;
}
.footer .link{
 display: flex;
  justify-content: center;
  align-items: center;
}
.footer .link-social{
  width: fit-content;
}
.footer .links-foot-cotch a{
  color: #eee;
}
.links-foot li {
  font-family:"lamaSens";
  color: #fff;
  font-size: 20px;
  margin-right: 30px;
}
.links-foot-cotch li {
  font-family:"lamaSens";
  color: #fff;
  font-size: 20px;
  margin-left: 1px;
}

.links-foot li a {
  color: #fff;
  font-size: 16px;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
}
.links-foot-cotch li a {
  color: #fff;
  font-size: 16px;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
}

.links-foot li a:hover,
.links-foot-cotch a:hover {
  color: #49D38E;
}
.communicate a{
  text-decoration: none;
  color: #eee;
}
.communicate a i{
  margin-left: 5px;
}
.communicate li {
  color: #FFf;
  font-family:"lamaSens";
  font-size: 20px;
  line-height: 22px;
  margin-top: 11px;
}
.communicate a span{
  font-size: 16px;
}
.footer .footerDown .copyrights{
  font-family:"lamaSens";
  font-size: 18px;
} */

/* footer.small-footer {
  padding-top: 70px !important;
}

footer::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../images/footer/footer_pattern.png") top right/cover no-repeat;
  top: 0;
  left: 0;
  opacity: 0.2;
  z-index: -1;
}

footer .contain {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}

footer .contain .brand-name img {
  width: 190px;
  height: 65px;
  -o-object-fit: contain;
  object-fit: contain;
}

footer .contain p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  margin: 40px 0px;
}

footer .contain .socail-media {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-bottom: 70px;
}

footer .contain .socail-media li {
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
}

footer .contain .socail-media li:last-child {
  -webkit-margin-end: 0px;
  margin-inline-end: 0px;
}

footer .contain .socail-media li a {
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
  z-index: 9;
  overflow: hidden;
}

footer .contain .socail-media li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  left: 0;
  transform: scale(0);
  background-color: var(--light-color);
  transition: all 0.3s linear;
  z-index: -1;
}

footer .contain .socail-media li a img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
  filter: var(--light-filter);
  transition: all 0.3s linear;
}

footer .contain .socail-media li a:hover::after {
  transform: scale(1);
}

footer .contain .socail-media li a:hover img {
  -webkit-animation: fadeInLeft 0.4s linear both;
  animation: fadeInLeft 0.4s linear both;
  filter: var(--primary-filter);
}

footer .copyrights {
  width: 100%;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
} */

/* footer .copyrights p {
  margin: 0px;
  font-size: 15px;
  font-weight: 500;
  color: var(--light-color);
} */

.service-header {
  width: 100%;
  padding: 190px 0px 130px;
  background-color: var(--third-color);
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-position: center; */
  z-index: 9;
  overflow: hidden;
}

.service-header.erp::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 69, 178, 0.8);
  /* background-color: hsla(246, 87%, 50%, 0.2); */
  z-index: -1;
  transition: background-color 0.5s ease-in-out;
}

.service-header #single-particles-js {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.15;
  top: 0;
  right: 0;
  z-index: -1;
  pointer-events: none;
}

.service-header .contain {
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.service-header .contain .service-img {
  width: 100px;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 20px;
}

.service-header .contain p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 40px;
  width: 100%;
  /* max-width: 80%; */
}

.service-header .contain pheader .contain .serv {
  width: 100% !important;
}

.service-header .image-content {
  width: 100%;
  height: 365px;
}

.service-header .image-content.image-animate {
  -webkit-animation: translateY 2s linear infinite;
  animation: translateY 2s linear infinite;
}

.service-header .image-content img {
  max-width: 500px;
  width: 100%;
  height: 100%;
  border-radius: 40px;
}

.sub-header {
  width: 100%;
  padding: 165px 0px 66px;
  background-color: var(--third-color);
  position: relative;
  z-index: 9;
  overflow: hidden;
}

.sub-sub-header {
  padding: 66px 0px 66px;
}

.sub-header #single-particles-js {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

.sub-header #single-particles-jss {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

.sub-header #single-particles-jsss {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

.sub-header .contain {
  width: 100%;
  text-align: center;
}

.sub-header .contain h1 {
  color: var(--light-color);
  font-size: 40px;
  font-weight: 900;
  margin-bottom: 20px;
}

.sub-header .contain h2 {
  color: var(--light-color);
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.sub-header .contain p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
}

.sub-header .contain .breadcrumb-header {
  display: flex;
  align-items: center;
  align-content: center;
  width: 100%;
  justify-content: center;
}

.sub-header .contain .breadcrumb-header li {
  padding: 0px 22px;
  position: relative;
  z-index: 9;
}

.sub-header .contain .breadcrumb-header li a,
.sub-header .contain .breadcrumb-header li span {
  color: var(--light-color);
  font-size: 16px;
  font-weight: 500;
}

.sub-header .contain .breadcrumb-header li a {
  opacity: 0.6;
}

.sub-header .contain .breadcrumb-header li::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/icons/solid_arrow.svg") center/contain no-repeat;
  top: calc(50% - 12px);
  left: -12px;
  z-index: -1;
  transform: rotate(180deg);
}

.sub-header .contain .breadcrumb-header li:first-child {
  -webkit-padding-start: 0px;
  padding-inline-start: 0px;
}

.sub- .breadcrumb-header li:first-child::after {
  display: none;
}

.sub-header .contain .breadcrumb-header li:last-child {
  -webkit-padding-end: 0px;
  padding-inline-end: 0px;
}

.sub-header .contain .breadcrumb-header li:last-child::After {
  background-image: url("../images/icons/slider_arrow.svg");
}

.sub-header.large-header {
  padding-bottom: 212px;
}

.about-serivce .image-content {
  width: 100%;
  /* height: 385px; */
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.about-serivce .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.about-serivce .service-list-contain {
  width: 100%;
  padding: 60px;
  background-color: var(--light-color);
  border-radius: 30px;
  box-shadow: 0px 0px 30px rgba(18, 53, 185, 0.04);
}

.about-serivce .service-list-contain.no-arrow li::after {
  display: none;
}

.about-serivce .service-list-contain p {
  color: #292929;
  font-size: 18px;
  font-weight: 700;
}
.about-serivce .service-list-contain h2{
  font-size: 25px;
    font-weight: 700;
    color: var(--primary-color);
    padding-block: 10px;
    margin: 0px;
}
.about-serivce .service-list-contain li {
  width: 100%;
  -webkit-padding-start: 40px;
  padding-inline-start: 40px;
  position: relative;
  z-index: 9;
  font-size: 16px;
  font-weight: 500;
  color: #292929;
  -webkit-margin-after: 10px;
  margin-block-end: 10px;
  line-height: 1.8;
 
}

.about-serivce .service-list-contain li span {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
}

.about-serivce .service-list-contain li:last-child {
  -webkit-margin-after: 0px !important;
  margin-block-end: 0px !important;
}

.about-serivce .service-list-contain li::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/single_serivces/check.svg") center/contain no-repeat;
  top: 3px;
  left: 0px;
  z-index: -1;
}

.service-features {
  width: 100%;
  padding: 40px 0px 70px 0px;
  position: relative;
  z-index: 9;
}

.service-features .box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  transition: all 0.3s linear;
}

.service-features .box .image-content {
  width: 170px;
  height: 170px;
  background-color: rgba(29, 119, 184, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  overflow: hidden;
}

.service-features .box .image-content img {
  width: 75px;
  height: 70px;
  -o-object-fit: contain;
  object-fit: contain;
}

.service-features .box .contain {
  width: 100%;
  padding: 37px 0px 0px;
  text-align: center;
}

.service-features .box .contain h2 {
  font-size: 19px;
  font-weight: 700;
  color: #292929;
  margin-bottom: 20px;
}

.service-features .box .contain p {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
}

.service-features .box:hover {
  transform: translateY(-10px);
}

.service-features .box:hover .contain h2 {
  background: -webkit-linear-gradient(180deg, #0064AD, #755192);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-features .web-serv {
  display: flex;
  justify-content: center;
}

.more-service-feature {
  background-color: #FBFBFB;
  padding-bottom: 40px !important;
}

.more-service-feature .image-content {
  width: fit-content;
  height: 376px;
  position: relative;
  overflow: hidden;
}

.ripple {
  position: absolute;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  animation: ripple-animation 3s linear infinite;
  pointer-events: none;
  height: 130px;
  width: 130px;
  right: 35%;
  top: 35%;
  transform: translate(50%, -50%);

}

@keyframes ripple-animation {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  25% {
    transform: scale(1);
    opacity: 0.75;
  }

  50% {
    transform: scale(2);
    opacity: 0.5;
  }

  75% {
    transform: scale(3);
    opacity: 0.25;
  }

  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.more-service-feature .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}

.more-service-feature .contain {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.more-service-feature .contain h2 {
  color: #292929;
  font-size: 25px;
  font-weight: 700;
  margin: 0px;
  line-height: 1.5;
}

.more-service-feature .contain h2 span {
  color: var(--primary-color);
  font-size: 25px;
  font-weight: 700;
}

.more-service-feature .contain p {
  color: #292929;
  font-size: 16px;
  font-weight: 500;
  margin: 25px 0px;
  line-height: 1.8;
}

.contact-us-form {
  width: 100%;
  padding: 0px 0px 70px 0px;
  position: relative;
  z-index: 9;
}

.contact-us-form.contact-us-now {
  padding-top: 90px !important;
}

.contact-us-form .image-content {
  width: 100%;
  height: 440px;
}

.contact-us-form .image-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
}

.contact-us-form .contact-head {
  width: 100%;
  margin-bottom: 45px;
}

.contact-us-form .contact-head p {
  font-size: 20px;
  font-weight: 900;
  color: var(--gray-color);
  margin-bottom: 20px;
}

.contact-us-form .contact-head h1 {
  color: #292929;
  font-size: 40px;
  font-weight: 900;
  margin: 0px;
}

.contact-us-form .contact-head h1 span {
  color: var(--primary-color);
  font-size: 40px;
  font-weight: 900;
}

.contact-us-form .form-contain .form-group {
  width: 100%;
  height: 47px;
  position: relative;
  margin-bottom: 18px;
  z-index: 9;
}

.contact-us-form .form-contain .form-group.select-options::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/icons/down_arrow.svg") center/contain no-repeat;
  top: calc(50% - 12px);
  right: 15px;
  z-index: 9;
  pointer-events: none;
  transition: all 0.3s linear;
}

.contact-us-form .form-contain .form-group.select-options .form-control {
  color: var(--gray-color) !important;
}

.contact-us-form .form-contain .form-group.text-area {
  height: 100px;
}

.contact-us-form .form-contain .form-group.text-area img {
  top: 14px !important;
}

.contact-us-form .form-contain .form-group.text-area .form-control {
  padding-top: 17px;
  border-radius: 20px !important;
}

.contact-us-form .form-contain .form-group img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
  position: absolute;
  top: calc(50% - 12px);
  left: 15px;
  transition: all 0.3s linear;
}

.contact-us-form .form-contain .form-group .form-control {
  width: 100%;
  height: 100%;
  -webkit-padding-start: 49px;
  padding-inline-start: 49px;
  border-radius: 60px;
  border: 1px solid rgba(0, 100, 173, 0.06);
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 500;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
}

.contact-us-form .form-contain .form-group .form-control::-moz-placeholder {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
}

.contact-us-form .form-contain .form-group .form-control:-ms-input-placeholder {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
}

.contact-us-form .form-contain .form-group .form-control::placeholder {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
}

.contact-us-form .form-contain .form-group .form-control:hover,
.contact-us-form .form-contain .form-group .form-control:focus {
  border-color: rgba(0, 100, 173, 0.5);
}

.contact-us-form .form-contain .form-group:hover img {
  -webkit-animation: tada 0.3s linear both;
  animation: tada 0.3s linear both;
}

.contact-us-form .form-contain .form-group:hover::before {
  transform: rotate(180deg);
}

.contact-us-form .form-contain .form-button {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin-top: 8px;
}

.contact-us-form .form-contain .form-button .custom-btn {
  width: 170px !important;
}

.single-project {
  width: 100%;
  position: relative;
  z-index: 99;
  margin-top: -147px;
}

.single-project .contain {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background-color: var(--light-color);
  box-shadow: 0px 0px 20px rgba(18, 53, 185, 0.2);
}

.single-project .contain .flex-data {
  width: 100%;
  padding: 40px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: space-between;
}

.single-project .contain .flex-data .project-logo {
  width: 135px;
  height: 135px;
  border-radius: 50%;
}

.single-project .contain .flex-data .project-logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.single-project .contain .flex-data .data-contain {
  width: calc(100% - 175px);
  height: 100%;
  display: flex;
  justify-content: space-between;
}

.single-project .contain .flex-data .data-contain .project-description {
  height: 100%;
}

.single-project .contain .flex-data .data-contain .project-description h1 {
  color: #1E1E1E;
  font-size: 25px;
  font-weight: 900;
  margin: 0px;
}

.single-project .contain .flex-data .data-contain .project-description p {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
  margin: 24px 0px;
}

.single-project .contain .flex-data .data-contain .project-technology {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  -webkit-padding-start: 40px;
  padding-inline-start: 40px;
  -webkit-border-start: 1px solid rgba(33, 75, 235, 0.06);
  border-inline-start: 1px solid rgba(33, 75, 235, 0.06);
}

.single-project .contain .flex-data .data-contain .project-technology h2 {
  color: #292929;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 30px;
}

.single-project .contain .flex-data .data-contain .project-technology .techology-list {
  display: flex;
  align-items: center;
  align-content: center;
}

.single-project .contain .flex-data .data-contain .project-technology .techology-list li {
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
}

.single-project .contain .flex-data .data-contain .project-technology .techology-list li a {
  width: 110px;
  height: 40px;
  display: flex;
}

.single-project .contain .flex-data .data-contain .project-technology .techology-list li a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  transition: all 0.3s linear;
}

.single-project .contain .flex-data .data-contain .project-technology .techology-list li a:hover img {
  transform: translateY(-10px);
}

.single-project .contain .client-info {
  width: 100%;
  padding: 18px 0px;
  -webkit-padding-start: 40px;
  padding-inline-start: 40px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
}

.single-project .contain .client-info li {
  -webkit-margin-end: 50px;
  margin-inline-end: 50px;
}

.single-project .contain .client-info li:last-child {
  -webkit-margin-end: 0;
  margin-inline-end: 0;
}

.single-project .contain .client-info li a {
  display: flex;
  align-content: center;
  align-items: center;
}

.single-project .contain .client-info li a img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}

.single-project .contain .client-info li a span {
  color: var(--light-color);
  font-size: 17px;
  font-weight: 500;
}

.single-project .contain .client-info li a span.name {
  margin: 0px 10px;
}

.single-blog {
  width: 100%;
  position: relative;
  z-index: 99;
  margin-top: -147px;
  padding-bottom: 75px;
}

.single-blog .blog-image {
  width: 100%;
  height: 450px;
  border-radius: 30px;
  overflow: hidden;
}

.single-blog .blog-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.single-blog .blog-heading {
  width: 100%;
  padding: 40px 0px;
  background-color: rgba(18, 53, 185, 0.02);
  border-radius: 30px;
  overflow: hidden;
  text-align: center;
  margin: 75px 0px 60px 0px;
}

.single-blog .blog-heading h1 {
  font-size: 40px;
  font-weight: 900;
  color: #292929;
  margin-bottom: 24px;
}

.single-blog .blog-heading .blog-data {
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.single-blog .blog-heading .blog-data li {
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
}

.single-blog .blog-heading .blog-data li:last-child {
  -webkit-margin-end: 0px;
  margin-inline-end: 0px;
}

.single-blog .blog-heading .blog-data li a {
  min-width: 170px;
  padding: 12px 10px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--light-color);
  border-radius: 50px;
}

.single-blog .blog-heading .blog-data li:last-child a {
  background-color: var(--light-color);
  color: var(--primary-color);
}

.single-blog .blog-contain {
  width: 100%;
  padding: 60px 50px;
  background-color: var(--light-color);
  border-radius: 30px;
  border: 1px solid rgba(18, 53, 185, 0.06);
}

.single-blog .blog-contain p {
  color: #292929;
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
}

.single-blog .blog-contain .share {
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: flex-start;
  margin-top: 40px;
}

.single-blog .blog-contain .share .custom-btn {
  -webkit-margin-end: 40px;
  margin-inline-end: 40px;
}

.single-blog .blog-contain .share .blog-share {
  display: flex;
  align-items: center;
  align-content: center;
}

.single-blog .blog-contain .share .blog-share li {
  -webkit-margin-end: 13px;
  margin-inline-end: 13px;
}

.single-blog .blog-contain .share .blog-share li:last-child {
  -webkit-margin-end: 0px !important;
  margin-inline-end: 0px !important;
}

.single-blog .blog-contain .share .blog-share li .socail-link {
  width: 45px;
  height: 45px;
  background-color: rgba(255, 255, 255, 0.1);
  outline: 1px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  position: relative;
  z-index: 9;
  overflow: hidden;
}

.single-blog .blog-contain .share .blog-share li .socail-link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  right: 0;
  transform: scale(0);
  background-color: var(--primary-color);
  transition: all 0.3s linear;
  z-index: -1;
}

.single-blog .blog-contain .share .blog-share li .socail-link img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
  filter: var(--primary-filter);
}

.single-blog .blog-contain .share .blog-share li .socail-link:hover::after {
  transform: scale(1);
}

.single-blog .blog-contain .share .blog-share li .socail-link:hover img {
  -webkit-animation: fadeInLeft 0.4s linear both;
  animation: fadeInLeft 0.4s linear both;
  filter: var(--light-filter);
}

.about-repotic .about-contain {
  width: 100%;
  padding: 60px;
  /* background: #292929 url("../images/about/about.webp") center/cover no-repeat; */
  position: relative;
  z-index: 9;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-content: center;
  background-color: var(--third-color);
}

.about-repotic .about-contain #single-particles-jssss {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

.about-repotic .about-contain .image-content {
  width: 180px;
  height: 180px;
  background-color: var(--light-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
  -webkit-animation: pulse-shadow-primary 1s linear infinite alternate;
  animation: pulse-shadow-primary 1s linear infinite alternate;
}

.about-repotic .about-contain .image-content img {
  width: 189px;
  height: 194px;
  -o-object-fit: contain;
  /* object-fit: contain; */
  border-radius: 50%
}

.about-repotic .about-contain .contain {
  width: calc(100% - 220px);
}

.about-repotic .about-contain .contain h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--light-color);
  margin: 0px;
}

.about-repotic .about-contain .contain h2 span {
  color: var(--primary-color);
  font-weight: 900;
  font-size: 30px !important;
}

.about-repotic .nav {
  width: 100%;
  flex-direction: column;
  border-radius: 0px;
  border: 0px;
}

.about-repotic .nav li {
  width: 100%;
  margin-bottom: 18px;
}

.about-repotic .nav li:last-child {
  margin-bottom: 0px !important;
}

.about-repotic .nav li a {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  overflow: hidden;
  align-content: center;
  justify-content: center;
  position: relative;
  z-index: 9;
  background-color: rgba(0, 100, 173, 0.06);
  border-radius: 100px;
  border: 0px;
}

@media (max-width: 500px) {
  .about-repotic .nav li a {
    width: 100%;
    height: 90px;
    display: flex;
    align-items: center;
    overflow: hidden;
    align-content: center;
    justify-content: center;
    position: relative;
    z-index: 9;
    background-color: rgba(0, 100, 173, 0.06);
    border-radius: 100px;
    border: 0px;
  }
}

.about-repotic .nav li a img {
  width: 24px;
  height: 24px;
  filter: var(--primary-filter);
  -webkit-margin-end: 11px;
  margin-inline-end: 11px;
}

.about-repotic .nav li a span {
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 500;
}

.about-repotic .nav li a::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background-color: var(--primary-color);
  top: -50%;
  right: -50%;
  z-index: -1;
  transform: skewX(45deg) scale(0, 1);
  transition: all 0.3s linear;
}

.about-repotic .nav li a:hover,
.about-repotic .nav li a.active {
  border: 0px;
}

.about-repotic .nav li a:hover img,
.about-repotic .nav li a.active img {
  filter: var(--light-filter);
  -webkit-animation: tada 0.3s linear;
  animation: tada 0.3s linear;
}

.about-repotic .nav li a:hover span,
.about-repotic .nav li a.active span {
  color: var(--light-color);
}

.about-repotic .nav li a:hover::after,
.about-repotic .nav li a.active::after {
  transform: skewX(45deg) scale(1, 1);
}

.about-repotic .tab-pane.fade {
  transition: opacity 0.1s linear, -webkit-animation 0.2s linear;
  transition: opacity 0.1s linear, animation 0.2s linear;
  transition: opacity 0.1s linear, animation 0.2s linear, -webkit-animation 0.2s linear;
  overflow: hidden;
  padding: 10px;
}

.about-repotic .tab-pane.fade.show.active {
  -webkit-animation: translateY 0.5s ease-in-out;
  animation: translateY 0.5s ease-in-out;
}

.about-repotic .message-contain {
  width: 100%;
  height: 100%;
  padding: 44px 48px;
  background-color: var(--light-color);
  border-radius: 30px;
  box-shadow: 0px 0px 30px rgba(18, 53, 185, 0.04);
}

.about-repotic .message-contain p {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-repotic .message-contain p:last-child {
  margin-bottom: 0px !important;
}

.about-repotic .project-wait {
  padding: 45px !important;
  border-radius: 30px;
}

.about-repotic .project-wait .custom-btn {
  background-color: var(--secondary-color) !important;
  outline: 0px !important;
}

.about-repotic .image-data-content {
  width: 100%;
  /* height: 320px; */
  height: 100%;
  overflow: hidden;
}

.about-repotic .image-data-content img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: left;
  object-position: left;
  border-radius: 30px;
}

.about-repotic .about-list {
  width: 100%;
}

.about-repotic .about-list li {
  width: 100%;
  -webkit-padding-start: 40px;
  padding-inline-start: 40px;
  position: relative;
  z-index: 9;
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 700;
  -webkit-margin-after: 10px;
  margin-block-end: 10px;
  line-height: 1.8;
}

.about-repotic .about-list li:last-child {
  -webkit-margin-after: 0px !important;
  margin-block-end: 0px !important;
}

.about-repotic .about-list li::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: url("../images/single_serivces/check.svg") center/contain no-repeat;
  top: 3px;
  left: 0px;
  z-index: -1;
}

.about-repotic .video-image {
  width: 100%;
  padding: 124px 0px;
  background: url("../images/intro/intro.webp") center left/cover no-repeat;
  border-radius: 30px;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.about-repotic .video-image .contain {
  text-align: center;
}

.about-repotic .video-image .contain .video-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  margin: 0px auto;
  -webkit-animation: pulse-shadow-primary 1.5s linear infinite alternate;
  animation: pulse-shadow-primary 1.5s linear infinite alternate;
  border-radius: 50%;
}

.about-repotic .video-image .contain .video-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-animation: zooming 1.5s linear infinite alternate;
  animation: zooming 1.5s linear infinite alternate;
}

.about-repotic .video-image .contain h2 {
  color: var(--light-color);
  font-size: 35px;
  font-weight: 900;
  margin: 20px 0px;
}

.about-repotic .video-image .contain p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
}

.single-product .product-list {
  width: 100%;
  padding: 20px 30px;
  -webkit-padding-start: 64px !important;
  padding-inline-start: 64px !important;
  position: relative;
  z-index: 9;
  border-radius: 10px;
  box-shadow: 0px 0px 30px rgba(18, 53, 185, 0.04);
  transition: all 0.3s linear;
  margin-bottom: 18px;
}

.single-product .product-list::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 20px;
  width: 24px;
  height: 24px;
  background: url("../images/single_serivces/check.svg") center/contain no-repeat;
  z-index: -1;
}

.single-product .product-list p {
  color: var(--dark-color);
  font-size: 16px;
  font-weight: 500;
  margin: 0px;
}

.single-product .product-list:hover {
  transform: translateY(-10px);
}

.customer-segment {
  width: 100%;
}

.customer-segment .customer-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  transition: all 0.3s linear;
}

.customer-segment .customer-box .customer-img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  margin-bottom: 37px;
}

.customer-segment .customer-box p {
  color: #292929;
  font-size: 22px;
  font-weight: 900;
  margin: 0px;
}

.customer-segment .customer-box:hover {
  transform: translateY(-10px);
}

.customer-segment .customer-box:hover p {
  color: var(--primary-color);
}

.product-screen .owl-stage {
  padding: 20px 0px 52px;
}

.product-screen .item .screen-img {
  width: 100%;
  height: 420px;
  -o-object-fit: contain;
  object-fit: contain;
  transition: all 0.3s linear;
}

.product-screen .item .screen-img:hover {
  transform: translateY(-10px);
}

.product-screen .owl-theme .owl-dots .owl-dot span,
.product-screen .owl-theme .owl-dots .owl-dot.active span,
.product-screen .owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--primary-color);
}

.partners .partner-box {
  width: 100%;
  height: 178px;
  padding: 16px;
  border-radius: 15px;
  box-shadow: 0px 0px 30px rgba(18, 53, 185, 0.04);
  transition: all 0.3s linear;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

.partners .partner-box img {
  width: 100%;
  height: 90px;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
}

.partners .partner-box:hover {
  transform: translateY(-10px);
}

@media (max-width: 1300px) and (min-width: 1000px) {
  header {
    background-size: 100% 100% !important;
  }
}

@media (max-width: 999px) {
  .navbar .buttons-contain .custom-btn {
    display: none;
  }

  .navbar .buttons-contain .lang {
    -webkit-margin-end: 0px !important;
    margin-inline-end: 0px !important;
  }

  .navbar .hamburger {
    display: block !important;
  }

  .navbar .service-drop-list,
  .navbar .nav-link.arrow-contain::before {
    display: none;
  }

  .navbar .nav-contain {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
  }

  .navbar .nav-contain .overlay {
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
  }

  .navbar .nav-contain .navbar-nav {
    width: 100%;
    height: 100%;
    background-color: var(--light-color);
    position: absolute;
    padding: 40px 15px;
    top: 0;
    left: -100%;
    z-index: 9;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s linear;
  }

  .navbar .nav-contain .navbar-nav::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: url("../images/navbar/Logo1.png") bottom left/150px 100px no-repeat;
    opacity: 0.5;
    bottom: 60px;
    right: -30px;
    z-index: -1;
  }

  .navbar .nav-contain .navbar-nav .close-navbar {
    display: flex !important;
  }

  .navbar .nav-contain .navbar-nav li {
    width: 100%;
    padding: 10px 0px;
    border-bottom: 1px solid #ddd;
  }

  .navbar .nav-contain .navbar-nav li:last-child {
    border-bottom: 0px;
  }

  .navbar .nav-contain .navbar-nav li a {
    width: 100%;
  }

  .navbar .nav-contain .navbar-nav li a::after {
    background-position: top left !important;
  }

  .navbar .nav-contain.active-nav {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .navbar .nav-contain.active-nav .overlay {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .navbar .nav-contain.active-nav .navbar-nav {
    left: 0px !important;
  }

  .services .box-contain .box {
    flex-direction: column !important;
    justify-content: center;
    border-radius: 20px !important;
    transition: all 0.3s linear;
  }

  .services .box-contain .box::before {
    display: none;
  }

  .services .box-contain .box .contain {
    width: 100%;
    margin-top: 10px;
    display: flex;
    justify-content: center;
  }

  .services .box-contain .box:hover {
    transform: translateY(-10px);
  }

  .services .service-contain::before {
    display: none;
  }

  .projects .project-box {
    flex-direction: column;
  }

  .projects .project-box .image-content {
    width: 100% !important;
    height: 250px !important;
  }

  .projects .project-box .image-content .project-logo {
    top: unset !important;
    bottom: -85px;
    right: calc(50% - 85px) !important;
  }

  .projects .project-box .project-contain {
    width: 100%;
    padding: 120px 20px 20px;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .service-header
  {
    padding-top: 150px;
  }
  header{
    padding-top: 100px !important;
  }
  .service-header .owl-stage,
  header .owl-stage {
    padding-bottom: 25px !important;
  }

  .project-wait .project-contain {
    flex-direction: column !important;
    justify-content: center !important;
  }

  .project-wait .project-contain .contain {
    width: 100% !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
  }

  .project-wait .project-contain .contain .data {
    width: 100% !important;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .heading-contain {
    margin-bottom: 50px;
  }

  .heading-contain .see-more {
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    position: relative !important;
    float: left;
    margin-left: 25px;
  }
}

.heading-contain .heading {
  margin-bottom: 10px;
}

.portfolio .nav.nav-tabs {
  flex-direction: row !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap !important;
  overflow-x: scroll;
  padding: 0px 0px 10px !important;
  height: -webkit-fit-content !important;
  height: -moz-fit-content !important;
  height: fit-content !important;
}

.portfolio .nav.nav-tabs li {
  margin-bottom: 0px !important;
  -webkit-margin-end: 18px;
  margin-inline-end: 18px;
}

.portfolio .nav.nav-tabs li a {
  min-width: 170px !important;
}

.contact-us .contain {
  padding: 40px 30px;
}

.contact-us .contain .contact-box {
  -webkit-border-end: 0px !important;
  border-inline-end: 0px !important;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 100, 173, 0.1) !important;
}

.contact-us .contain .contact-box:last-child {
  border-bottom: 0px !important;
  padding-bottom: 0px !important;
}

/* .services {
    padding-top: 50px !important;
  } */

.general-section {
  padding: 50px 0px;
}
.general-section .about-list h2{
  font-size: 25px;
  font-weight: 700;
  color: var(--primary-color);
  padding-block: 10px;
  margin: 0px;
}
.general-section .entity {
  padding: 10px 0;
}

.heading {
  margin-bottom: 40px;
}

.service-header {
  padding-bottom: 50px !important;
}

/* .service-header h1 {
    font-size: 30px !important;
  } */

.service-header .image-content {
  /* height: 250px !important; */
}

.about-serivce .image-content {
  margin-top: 0;
}

.about-serivce .image-content img {
  -o-object-position: center;
  object-position: center;
}

.about-serivce .service-list-contain {
  padding: 20px 10px !important;
  border-radius: 20px !important;
}

.service-features {
  padding-bottom: 40px !important;
  padding-top: 50px;
}

.contact-us-form .image-content,
.more-service-feature .image-content {
  height: 300px;
  /* height: 100%; */
}

.contact-us-form .image-content img,
.more-service-feature .image-content img {
  /* -o-object-position: center;
    object-position: center; */

  border-top-right-radius: 8% !important;
  border-top-left-radius: 8% !important;
  border-bottom-left-radius: 8% !important;
  border-bottom-right-radius: 8% !important;
}

/* .more-service-feature .image-content .e-commer{
    width: 445px;
    border-radius: 8% !important;
  } */
.contact-us-form .image-content {
  height: 100%;
}

.portfolio .owl-theme .owl-nav {
  position: relative;
  margin: 0px !important;
  top: unset;
  transform: translate(0px, 0px);
}

.portfolio .owl-theme .owl-nav .owl-next,
.portfolio .owl-theme .owl-nav .owl-prev {
  position: relative;
  top: unset;
  right: unset;
  left: unset;
}

.portfolio.testimonails .owl-stage {
  padding: 0px 0px 10px;
}

.portfolio.testimonails .testimonails-item {
  padding: 20px 0px !important;
}

.portfolio.testimonails .owl-testimonials {
  margin-bottom: 40px;
}

.single-project .contain .flex-data {
  flex-direction: column;
  padding: 30px 20px;
  justify-content: center;
}

.single-project .contain .flex-data .data-contain {
  width: 100% !important;
  flex-direction: column;
}

.single-project .contain .flex-data .data-contain .project-description {
  margin: 20px 0px;
}

.single-project .contain .flex-data .data-contain .project-technology {
  width: 100%;
  -webkit-padding-start: 0px;
  padding-inline-start: 0px;
  -webkit-padding-before: 20px;
  padding-block-start: 20px;
  -webkit-border-start: 0px !important;
  border-inline-start: 0px !important;
  border-top: 1px solid rgba(33, 75, 235, 0.06);
}

.single-project .contain .client-info {
  flex-direction: column;
  -webkit-padding-start: 20px;
  padding-inline-start: 20px;
}

.single-project .contain .client-info li {
  -webkit-margin-end: 0px;
  margin-inline-end: 0px;
  width: 100%;
}

.single-project .contain .client-info li:first-child {
  margin-bottom: 20px;
}

.single-project .contain .client-info li a {
  justify-content: flex-start !important;
  width: 100%;
}

/* .heading h1 {
    font-size: 35px !important;
  } */

.single-blog .blog-image {
  height: 250px;
}

.single-blog .blog-heading {
  padding: 20px 15px;
  margin: 30px 0px;
}

.single-blog .blog-heading h1 {
  font-size: 25px;
}

.single-blog .blog-heading .blog-data {
  flex-direction: column;
  align-items: flex-start;
  align-items: flex-start;
}

.single-blog .blog-heading .blog-data li {
  -webkit-margin-end: 0px;
  margin-inline-end: 0px;
  margin-bottom: 10px;
}

.single-blog .blog-contain {
  padding: 20px 15px;
}

.single-blog .blog-contain .share {
  flex-direction: column;
  align-items: flex-start;
  align-content: flex-start;
}

.single-blog .blog-contain .share .custom-btn {
  -webkit-margin-end: 0px !important;
  margin-inline-end: 0px !important;
  margin-bottom: 20px;
}

.about-repotic .about-contain {
  padding: 20px 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
}

.about-repotic .about-contain .contain {
  width: 100%;
  padding: 20px;
}

.about-repotic .about-contain .contain h1,
.about-repotic .about-contain .contain span {
  font-size: 30px !important;
  margin-top: 20px;
}

.about-repotic .message-contain {
  padding: 20px 10px !important;
}

.about-repotic .video-image {
  padding: 80px 0px;
}

.about-repotic .nav {
  justify-content: center;
  gap: 10px;
}

.about-repotic .nav li {
  margin-bottom: 0px;
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
  width: 380px;
}

.about-repotic .nav li:last-child {
  -webkit-margin-end: 0px;
  margin-inline-end: 0px;
}

.about-repotic .nav li a {
  width: 100%;
  border-radius: 5px;
  flex-direction: column;
  text-align: center;
}

.about-repotic .nav li a img {
  -webkit-margin-end: 0px !important;
  margin-inline-end: 0px !important;
  margin-bottom: 4px;
}

.about-repotic .project-wait {
  padding: 20px 10px !important;
}

.about-repotic .project-wait h1 {
  margin-bottom: 20px !important;
}

.customer-segment .customer-box .customer-img {
  width: 140px;
  height: 140px;
}

.partners .partner-box {
  height: 110px;
}

html[dir=ltr] .navbar .nav-contain .navbar-nav {
  left: unset !important;
  right: -100%;
}

html[dir=ltr] .navbar .nav-contain .navbar-nav .close-navbar {
  left: 15px !important;
  right: unset !important;
}

html[dir=ltr] .navbar .nav-contain .navbar-nav::after {
  background-position: bottom left !important;
}

html[dir=ltr] .active-nav .navbar-nav {
  left: unset !important;
  right: 0px !important;
}


/*# sourceMappingURL=style.css.map */
/*----my testimonials page----------*/


/*======================
       breadGlobal
  ======================*/
.breadGlobal {
  margin-top: 30px;
}

.my-top {
  margin-top: 15px;
}

.breadGlobal .details .titleBread {
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
  font-size: 40px;
}

.breadGlobal .details .list li {
  margin-bottom: 35px;
  padding-left: 45px;
  position: relative;
  font-size: 14px;
  color: #fff;
}

.breadGlobal .details .list li .icon {
  position: absolute;
  left: 0;
  top: -5px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #3d9886;
  text-align: center;
  line-height: 28px;

}

.breadGlobal .details .list li .icon img {
  display: inline-block;
}

.breadGlobal .counters {
  float: right;
  width: 400px;
  max-width: 100%;
  padding: 0;
}

.counters .itemCount .icon {
  display: block;
  margin-bottom: 25px;
  height: 50px;
  line-height: 89px;
}

.breadGlobal .counters .itemCount {
  background: none;
  padding: 0 15px;
  margin: 10px 0 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.breadGlobal .counters .itemCount .titleCount {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
}

.breadGlobal .counters .itemCount .counter {
  font-weight: 700;
  font-size: 30px;
  color: #3d9886;
  display: block;
  margin-bottom: 5px;
}

@media (max-width: 991px) {
  .breadGlobal .details .list.Right {
    width: 250px;
    text-align: left;
    margin: auto;
  }

  .breadGlobal .details .list li {
    padding-left: 0;
    margin-bottom: 20px;
  }

  .breadGlobal .details .list li .icon {
    position: static;
    display: inline-block;
    margin-right: 10px;
  }
}

@media (max-width: 479px) {
  .breadGlobal .counters .itemCount {
    padding: 0;
  }

  .breadGlobal .counters .itemCount .titleCount {
    font-size: 15px;
  }
}

/*======================
       ourclients
  ======================*/
.ourClients {
  overflow: hidden;
  padding: 90px 0 85px;
  text-align: center;
  position: relative;
  z-index: 1;
  background-color: #bdd0d8;
}

.ourClients .BgMoveCloud {
  background-image: url(../images/background/bgCloudClients.png);
  bottom: auto;
  top: 84px;
  height: 295px;
  -moz-animation: move-clouds-back 600s linear infinite;
  -ms-animation: move-clouds-back 600s linear infinite;
  -o-animation: move-clouds-back 600s linear infinite;
  -webkit-animation: move-clouds-back 600s linear infinite;
  animation: move-clouds-back 600s linear infinite;
  position: absolute;
  bottom: 75px;
  left: 0;
  width: 100%;
  height: 333px;
  z-index: -1;
}

.ourClients .titleStyle {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  line-height: 60px;
  max-width: 788px;
  margin: 0 auto 30px;
}

@media (max-width: 767px) {
  .ourClients .titleStyle {
    font-size: 60px;
  }
}

@media (max-width: 479px) {
  .ourClients .titleStyle {
    font-size: 25px;
    line-height: 35px;
  }
}

.ourClients .desc {
  max-width: 1016px;
  margin: 0 auto;
  color: #000;
  line-height: 35px;
  font-size: 16px;
  text-align: justify;
  text-align-last: center;

}

@keyframes move-clouds-back {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: left 10000px top 0;
  }
}

/*=========================
          projects
  =========================*/
.projects {
  padding-top: 50px;
  padding-bottom: 50px;
}

.projects .tabs {
  overflow: hidden;
  position: relative;
  min-height: 400px;
}

.projects .tabs .projectItem {
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
  /* height: 580px; */
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
}

.projectItem .img {
  display: block;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.projectItem:hover .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);
}

.projects .tabs .projectItem .img img {
  max-width: 100%;
}

.projectItem:hover .img:after {
  height: 100%;
}

.projectItem .img:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  z-index: 1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  background: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.65) 15%, rgba(0, 0, 0, 0.65) 36%, rgba(0, 0, 0, 0.19) 67%, rgba(0, 0, 0, 0) 80%);
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.65) 15%, rgba(0, 0, 0, 0.65) 36%, rgba(0, 0, 0, 0.19) 67%, rgba(0, 0, 0, 0) 80%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 15%, rgba(0, 0, 0, 0.65) 36%, rgba(0, 0, 0, 0.19) 67%, rgba(0, 0, 0, 0) 80%);
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#a6000000', endColorstr='#00000000', GradientType=0);
}

.projectItem .content {
  position: absolute;
  bottom: -1px;
  left: -1px;
  max-width: 70%;
  padding: 40px;
  z-index: 2;
  background-color: #f4f9fb;
  height: 250px;
}

.projectItem .content:before {
  content: "";
  position: absolute;
  right: 100%;
  top: calc(50% - 75px);
  height: 150px;
  width: 6px;
  background-color: #3d9886;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.projectItem:hover .content:before {
  height: 50px;
  animation: aniLine 3s infinite;
  -webkit-animation: aniLine 3s infinite;
}

.projectItem .content .titleProject {
  font-size: 28px;
  font-weight: 900;
  color: #000;
  margin-bottom: 15px;
  display: inline-block;
  cursor: pointer;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.projectItem .content .descProject {
  line-height: 30px;
  font-size: 16px;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.projectItem .content .apps {
  position: absolute;
  left: calc(100% + 35px);
  top: 70%;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.projectItem:hover .content .apps {
  top: calc(50% - 75px);
  opacity: 1;
}

.projectItem .content .apps li:not(:last-of-type) {
  margin-bottom: 30px;
}

.apps li a {
  width: 60px;
  height: 60px;
  border-radius: 2px;
  background-color: #fff;
  text-align: center;
  line-height: 55px;
  display: block;
}

@media (max-width: 1200px) {
  .projects .projectItem .content {
    padding-left: 26px;
    padding-right: 26px;
  }
}

@media (min-width: 991px) {
  .projects .tabs .projectItem .img img {
    height: 600px;
  }
}

@media (max-width: 991px) {
  .projectItem {
    height: auto;
  }

  .projectItem .content {
    padding: 20px;
    height: 170px
  }
}

@media (max-width: 479px) {
  .projectItem .content {
    position: relative;
    max-width: 100%;
    background-color: #e3eef2;
  }

  .projectItem .content .titleProject {
    font-size: 25px;
  }

  .projectItem .content .apps {
    left: 15px;
    top: auto !important;
    bottom: calc(100% + 15px);
  }
}

/*=========================
       featuresClients
  =========================*/
.featuresClients {
  padding-bottom: 147px;
}

.tabletStyle {
  padding: 60px 50px 130px;
  border: 2px solid #e1eaee;
  border-radius: 40px;
  position: relative;
  overflow: hidden;
}

.tabletStyle .tabletDots,
.tabletStyle .tabletDots:before,
.tabletStyle .tabletDots:after {
  position: absolute;
  left: 40px;
  top: 30px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #e1eaee;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.tabletStyle .tabletDots:before {
  content: "";
  position: absolute;
  left: calc(100% + 20px);
  top: 0;
}

.tabletStyle .tabletDots:after {
  content: "";
  position: absolute;
  left: calc(100% + 50px);
  top: 0;
}

.features .content {
  display: flex;
}

.features .content .details {
  width: 50%;
  padding-right: 40px;
  display: flex;
  align-items: center;
}

.features .content .details .title {
  max-width: 434px;
  line-height: 55px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #3d9886;
  font-size: 40px;
}

.features .content .details .desc {
  max-width: 415px;
  line-height: 35px;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 40px;
  text-align: justify;
}

.features .content .featureItems {
  width: 50%;
  padding-right: 30px;
  height: 582px;
  direction: ltr;
  -ms-overflow-style: none;
  scrollbar-width: thin;
  scrollbar-color: #e6f2f6 transparent;
  overflow-y: scroll;
}

.features .content .featureItems::-webkit-scrollbar-track {
  background-color: #fff;
}

.features .content .featureItems .item:not(:last-of-type) {
  margin-bottom: 40px;
}

.features .content .featureItems .item {
  background-color: #e6f2f6;
  padding: 40px;
}

.features .content .featureItems .item .icon {
  display: block;
  margin-bottom: 15px;
  width: 10%;
}

.features .content .featureItems .item .title {
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 10px;
}

.features .content .featureItems .item .desc {
  line-height: 30px;
  color: #000;
  max-width: 365px;
  text-align: justify;
}

.tabletStyle .tabletBtn {
  position: absolute;
  bottom: 30px;
  right: calc(50% - 22.5px);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #f4f9fb;
  border: 2px solid #e1eaee;
  background-clip: content-box;
  padding: 3px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

@media (max-width: 1200px) {
  .tabletStyle {
    padding-right: 30px;
  }

  .features .content .details .title {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .features .content {
    display: block;
  }

  .features .content .details {
    display: block;
    padding: 20px 0 30px;
    text-align: center;
    width: 100%;
  }

  .features .content .details .title,
  .features .content .details .desc {
    max-width: none;
  }

  .features .content .featureItems {
    padding-right: 0;
    display: block;
    width: 100%;
  }
}

@media (max-width: 767px) {
  .features .content .details .title {
    font-size: 30px;
  }
}

@media (max-width: 479px) {
  .features .content .details .title {
    font-size: 18px;
    line-height: 35px;
  }

  .features .content .details .desc {
    font-size: 16px;
  }

  .features .content .featureItems .item {
    padding: 20px;
  }

  .features .content .featureItems .item .title {
    line-height: 35px;
  }
}

/*=========================
         helpYou
  =========================*/
.helpYou {
  padding: 70px 0;
  text-align: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(../images/background/bgHelp.svg) center no-repeat;
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
}

.helpYou:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 14, 29, 0.6);
  z-index: -1;
}

.helpYou .title {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  min-height: 70px;
  margin-bottom: 20px;
  position: relative;
}

.console-underscore {
  display: inline-block;
  position: relative;
  top: -0.14em;
  color: #fff;
  right: 10px;
}

.hidden {
  display: none !important;
}

.helpYou .desc {
  font-size: 25px;
  color: #fff;
  margin-bottom: 25px;
}

.helpYou .btnContact {
  width: 250px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  font-size: 16px;
  border-radius: 30px;
  background-color: var(--primary-color);
  display: block;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.globalHover3 {
  position: relative;
  z-index: 1;
  overflow: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}


.helpYou .btnContact.globalHover3:before {
  background: linear-gradient(90deg, #755192, #1D77B8);
}

.globalHover3:before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  right: -28px;
  top: 0;
  z-index: -1;
  background: linear-gradient(90deg, #755192, #1D77B8);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform: skew(-37deg);
  -webkit-transform: skew(-37deg);
  -moz-transform: skew(-37deg);
  -ms-transform: skew(-37deg);
  -o-transform: skew(-37deg);
}

.btnDots {
  width: 5px;
  position: relative;
  height: 5px;
  margin: 0 13px;
  background-color: #fff;
  border-radius: 5px;
  display: inline-block;
  top: -1.7px;
  right: -3px;
  animation: dotsToggle 1s infinite;
  -webkit-animation: dotsToggle 1s infinite;
}

@keyframes dotsToggle {
  0% {
    background: rgba(255, 255, 255, 0.5);
  }

  50% {
    background: rgba(255, 255, 255, 1);
  }

  100% {
    background: rgba(255, 255, 255, 0.5);
  }
}


.btnDots:before {
  content: "";
  width: 5px;
  position: absolute;
  height: 5px;
  margin: 0 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  top: 0;
  right: 0;
}

.btnDots:before {
  animation: dotsToggle 2s infinite;
  -webkit-animation: dotsToggle 2s infinite;
}

/* .btnDots:after {
  animation: dotsToggle 1.5s infinite;
  -webkit-animation: dotsToggle 1.5s infinite;
  left: auto;
  right: 0;
} */

/* .globalHover3:after {
  left: auto;
  right: -28px;
  transform: skew(-37deg);
  -webkit-transform: skew(-37deg);
  -moz-transform: skew(-37deg);
  -ms-transform: skew(-37deg);
  -o-transform: skew(-37deg);
} */

.globalHover3:hover:before {
  background: linear-gradient(90deg, #755192, #1D77B8);
  ;
  opacity: 1;
  width: 100%;
}

@media (max-width: 991px) {
  .helpYou .title {
    font-size: 35px;
  }

  .helpYou .desc {
    font-size: 20px;
  }
}

@media (max-width: 479px) {
  .helpYou .title {
    font-size: 25px;
  }
}

/*=========================
         footer
  =========================*/
/* .font-special {
  font-family: "lamaSens";
}

.footer {
  padding: 60px 0 0px;
  background-color: #471a7d;
  position: relative;
  z-index: 16;
  overflow: hidden;
} */



a {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.arrowsSvg {
  width: 60px;
  height: 72px;
  position: absolute;
  left: 50%;
  margin-right: -30px;
  bottom: 20px;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.activearrow {
  visibility: visible;
}

.arrowsSvg.activearrow svg {
  opacity: 1;
  bottom: 103px;
  visibility: visible;
}

.arrowsSvg svg {
  width: 60px;
  height: 72px;
  position: fixed;
  right: 20px;
  bottom: -100%;
  visibility: hidden;
  opacity: 0;
  transform: rotate(180deg);
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.arrowsSvg path {
  stroke: #3d9886;
  fill: transparent;
  stroke-width: 1px;
  animation: arrowsSvg 2s infinite;
  -webkit-animation: arrowsSvg 2s infinite;
}

@keyframes arrowsSvg {
  0% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

.arrowsSvg path.a1 {
  animation-delay: -1s;
  -webkit-animation-delay: -1s;
}

.arrowsSvg path.a2 {
  animation-delay: -0.5s;
  -webkit-animation-delay: -0.5s;
}

.arrowsSvg path.a3 {
  animation-delay: 0s;
  -webkit-animation-delay: 0s;
}

.BgMoveCloud {
  background: url(../images/background/cloudFooter.png) bottom;
  -moz-animation: move-clouds-back 600s linear infinite;
  -ms-animation: move-clouds-back 600s linear infinite;
  -o-animation: move-clouds-back 600s linear infinite;
  -webkit-animation: move-clouds-back 600s linear infinite;
  animation: move-clouds-back 600s linear infinite;
  position: absolute;
  bottom: 75px;
  left: 0;
  width: 100%;
  height: 333px;
  z-index: -1;
}

@keyframes move-clouds-back {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: left 10000px top 0;
  }
}




/*---------footartest----------*/
.footer {
  width: 100%;
  padding: 30px 0px 10px;
  background: var(--third-color);
  position: relative;
  z-index: 8;
  overflow: hidden;
}

.footer .footer-text {
  color: #fff;
  margin-top: 20px;
}

.footer .footer-text .img-logo {
  width: 60%;
}

.footer .footer-text h2 {
  font-size: 25px;
  margin-bottom: 10px;
  font-weight: 700;
}

.footer .footer-text p {
  font-size: 16px;
  margin-top: 20px;
  font-weight: 500 !important;
  
}

.footer .socialFooter {
  color: #bac8d3;
  font-size: 12px;
  margin-top: 50px;
}

.footer .socialFooter .socialList li {
  display: inline-block;
  cursor: default;
  margin-left: 10px;

}

.footer .socialfooter .sociallist li a:hover {
  transform: rotate(360deg);
}

.footer .socialFooter .socialList li a {
  width: 35px;
  height: 35px;
  border: 2px solid #fff;
  background-color: #374758;
  text-align: center;
  line-height: 32px;
  font-size: 17px;
  color: #fff;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  transition: transform 0.6s;
}

.footer .socialFooter .socialList li .special-icon {
  width: 35px;
  height: 35px;
  border: 2px solid #fff;
  background-color: #374758;
  text-align: center;
  line-height: 32px;
  font-size: 17px;
  color: #fff;
  position: relative;
  z-index: 1;
  margin-top: 5px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: inline-block;
}

.footer .socialFooter .socialList li .special-icon .special-twitter {
  margin-bottom: -2px;
}

.footer .socialFooter .socialList li a span {
  color: #666;
  position: absolute;
  bottom: 0;
  font-family: "Poppins", sans-serif;
  right: -25px;
  left: -25px;
  padding: 5px 7px;
  z-index: -1;
  font-size: 13px;
  border-radius: 2px;
  background: #fff;
  visibility: hidden;
  opacity: 0;
  -o-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -moz-transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.footer .socialFooter .socialList li a:hover span {
  bottom: 50px;
  visibility: visible;
  opacity: 1;
}

.footer .socialFooter .socialList li a span:before {
  content: "";
  width: 0;
  height: 0;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 5px solid #fff;
  position: absolute;
  bottom: -5px;
  right: 40px;
}

.footer .socialFooter .socialList li a:hover {
  background-color: #3d9886;
  border-color: #3d9886;
}

.footer .link {
  justify-content: center;
  align-items: center;
  color: #eee;
  margin-top: 10px;
}

@media (max-width: 500px) {
  .footer .link-sociel {
    display: flex;
    justify-content: space-between;
  }

  .project-contain .custom-ptn-pro {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    justify-content: center;
  }

  .project-wait .box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    row-gap: 20px;
  }

  .about-repotic .nav {
    width: 100%;
    flex-direction: row;
    border-radius: 0px;
    border: 0px;
  }

  .service-header .contain p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
  }
}

.footer .link-sociel {
  display: flex;
  justify-content: space-between;
}

.footer .link-social h2 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
}

/* .footer .link-social h2::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  top: 70px;
  right: 156px;
  background-color: #3d9886;
  width: 45px;
  height: 3px;
} */
/* @media (max-width: 500px) {
  .footer .link-social h2::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    top: 70px;
    right: 15px;
    background-color: #3d9886;
    width: 45px;
    height: 3px;
  }
} */
.footer .link-social .links-foot {
  margin-top: 20px;
}

.footer .link-social .links-foot li {
  font-family: "lamaSens";
  font-size: 16px;
  margin-top: 5px;
}

.footer .link-social .links-foot li a {
  color: #fff;
  font-size: 13px;
  margin-bottom: 20px;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
}

.footer .link-social .links-foot li a i {
  margin: 0 10px;
  font-size: 14px;
  transform: rotate(180deg);
}

.footer .socialFooter .socialList li .special-icon {
  width: 35px;
  height: 35px;
  border: 2px solid #fff;
  background-color: #374758;
  text-align: center;
  line-height: 32px;
  font-size: 17px;
  color: #fff;
  position: relative;
  z-index: 1;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: inline-block;
}

/* .footer .link-social .links-foot li a:hover i{
  margin-left: 5px;
  color: #00FFC1;
} */
.footer .link-social .links-foot li :hover {
  color: #49D38E;
}

.footer .title {
  margin-top: 33px;
}

.footer .title h2 {
  font-size: 20px;
  margin: 10px 0 20px;
  color: #fff;
  font-weight: 700;
}

/* .footer .title h2::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  top: 60px;
  right: 15px;
  background-color: #3d9886;
  width: 45px;
  height: 3px;
} */
.footer .title .communicate a {
  color: #eee;
}

.footer .title .communicate a i {
  margin-right: 5px;
  font-size: 20px;
  direction: ltr;
}

.footer .title .communicate li {
  color: #FFf;
  font-family: "lamaSens";
  font-size: 18px;
  line-height: 22px;
  margin-top: 20px;
}

.footer .title .communicate li :hover {
  color: #49D38E;
}

.footer .title .communicate a span {
  font-size: 16px;
}

.CallMenu {
  position: fixed;
  bottom: 5px;
  right: 50px;
  z-index: 9999;
}

@media (max-width: 500px) {
  .CallMenu {
    position: fixed;
    bottom: 50px;
    right: 14px;
    z-index: 9999
  }

}

.CallMenu>ul>li {
  position: relative;
}

.CallMenu>ul li a {
  color: #fff;
  font-size: 30px;
  display: block;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  background-color: #3d9886;
  border-radius: 100%;
  position: relative;
  -moz-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

.CallMenu>ul li a i {
  position: relative;
  z-index: 99999;
  padding-top: 8px;
}

.CallMenu>ul>li>ul {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  display: none;
  margin: auto;
  text-align: center;
}

.CallMenu>ul>li>ul>li {
  display: inline-block;
}

.CallMenu>ul>li>ul>li>a {
  margin-bottom: 10px;
  width: 45px;
  height: 45px;
  line-height: 45px;
  -moz-transition: 0.4s all ease-in-out;
  -o-transition: 0.4s all ease-in-out;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

.footerDown .copyrights {
  /* padding-top: 40px; */
  font-size: 14px;
}

.footer .img-payment {
  text-align: right;
  margin-right: 10px;
  /* margin-top: -40px !important; */
}

.footer .img-payment img {
  width: 70%;
}

.footer .img-payment .vision {
  width: 100px;
}

.footer .socialFooter {
  color: #bac8d3;
  font-size: 12px;
  margin: 20px 0;
  display: flex;
  text-align: center;
  /* justify-content: center; */
}

/*----------footertest------------*/
#single-particles-fs {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

.zadk {
  margin-bottom: 100px;
}

/*----------------------------*/
.cont-txt {
  font-size: 30px !important;
}

.p-cont {
  margin: 20px 0px !important;
  font-size: 16px;
  font-weight: 500;
  color: #292929;
}

.data-cont h2 {
  font-size: 25px;
  font-weight: 700;
  color: var(--light-color);
  /* margin-bottom: 40px; */
}
.data-cont span{
    font-size: 18px;
    font-weight: 700;
}
 .settle{
    font-size: 16px;
    font-weight: 500;
    color: #292929;
    -webkit-margin-after: 10px;
    margin-block-end: 10px;
    text-align: justify;
    line-height: 1.8;
}
.data-cont p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  font-weight: 500;
  padding-block: 10px;
  text-align: center;
  margin: 0px;
}

.image-data-content-two {
  display: flex;
  align-items: center;
  height: 100%;
}

.image-data-content-two img {
  width: 100%;
  height: 700px;
}

.about-repotic .image-data-cont img {
  width: 100%;
  height: 100%;
  -o-object-position: left;

}

.message-contain p {
  text-align: justify;
}

.about-repotic .nav li .speciel-list {
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  overflow: hidden;
  align-content: center;
  justify-content: flex-start;
  position: relative;
  z-index: 9;
  background-color: rgba(0, 100, 173, 0.06);
  border-radius: 100px;
  border: 0px;
}

.about-repotic .about-list .lists {
  width: 100%;
    -webkit-padding-start: 40px;
    padding-inline-start: 40px;
    position: relative;
    z-index: 9;
    font-size: 16px;
    font-weight: 500;
    color: #292929;
    -webkit-margin-after: 10px;
    margin-block-end: 10px;
    text-align: justify;
    line-height: 1.8;
}
.about-repotic .about-list .lists span {
  color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
}

@media (max-width: 999px) {
  .about-repotic .link-serv {
    width: 100%;
    border-radius: 5px;
    flex-direction: column;
  }

  .about-repotic .link-serv li {
    width: 100%;
    margin-bottom: 10px;
  }

  .about-repotic .link-serv li a span {
    font-size: 16px;
  }

  .about-repotic .link-serv li a {
    flex-direction: row !important;
  }

  .about-repotic .link-serv li a img {
    margin-inline-end: 11px !important;
  }

  .footer .img-payment {
    text-align: center;
  }
}

@media (max-width: 999px) {
  .data-cont h1 {
    text-align: center;
    font-size: 20px;
  }

  .data-cont p {
    text-align: center;
  }
}

.owl-carousel.owl-loaded {
  padding: 20px 0 !important;
}

.owl-screens .owl-item .item {
  opacity: 0.5;
}

.main-header-home {
  padding-top: 50px;

}

.owl-screens .owl-item .item.last-visible {
  opacity: 1;
  transform: translateY(-30px);
  z-index: 10000000000 !important;
}


/* .owl-carousel.owl-drag .owl-item.active:last-child .item{
  opacity: 1;
 } */


/* Start Gallery */
section.gallery {}

:has(.mode:checked) section.gallery {
  background-color: #252525;
}

section.gallery .gallery-head {
  font-family: var(--font-secondary);
  text-align: center;
  padding: 50px;
}

section.gallery .gallery-head.core-head h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-color);
}

section.gallery .gallery-head.core-head h2 span {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--primary-color);
}

section.gallery .gallery-head.core-head p {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
  margin: 20px;
}

/* Masonry Layout */
.gallery .gallery-imags {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 60.8125rem;
  gap: 1.25rem;
}

@media (max-width: 1400px) {
  .gallery .gallery-imags {
    height: 1000px;
  }
}

@media (max-width: 1200px) {
  .gallery .gallery-imags {
    height: 845px;
  }
}

@media (max-width: 992px) {
  .gallery .gallery-imags {
    height: 1405px;
  }
}

@media (max-width: 768px) {
  .gallery .gallery-imags {
    height: auto;
  }
}

.gallery .gallery-imags picture {
  width: calc((100% - 40px) / 3);
  border: 4px solid #fff;
  position: relative;
  overflow: hidden;
}

@media (max-width: 992px) {
  .gallery .gallery-imags picture {
    width: calc((100% - 40px) / 2);
  }

  .gallery .gallery-imags .supp {
    order: 1;
  }

  .gallery .gallery-imags .app {
    order: 2;
  }

  .gallery .gallery-imags .emp {
    order: 3;
  }

  .gallery .gallery-imags .erp {
    order: 4;
  }

  .gallery .gallery-imags .test {
    order: 5;
  }

  .gallery .gallery-imags .mob {
    order: 6;
  }

  .order-slider {
    order: -1;
  }

  .main-header-home {
    padding-top: 0px;
    padding-bottom: 50px;
  }
}

@media (max-width: 768px) {
  .gallery .gallery-imags picture {
    width: 100%;
  }

  .more-service-feature .contain h2 {
    color: #292929;
    font-size: 20px;
    font-weight: 700;
    margin: 0px;
  }

  .more-service-feature .contain h2 span {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
  }

  .more-service-feature .image-content {
    height: 100%;
  }
}

.gallery .gallery-imags picture img {
  width: 100%;
  transition: scale 0.4s;
  position: relative;
}

.gallery .gallery-imags .app img {
  height: 400px;
}

.gallery .gallery-imags .emp img {}

.gallery .gallery-imags .erp img {}

.gallery .gallery-imags .mob img {
  height: 330px;
}

.gallery .gallery-imags .supp img {
  height: 320px;
}

.gallery .gallery-imags .test img {
  height: 530px;
}

.gallery .gallery-imags a.text {
  position: absolute;
  top: 10px;
  left: 28px;
  right: 0;
  bottom: 0;
  color: #000;
  z-index: 99999999;
  font-size: 20px;
  font-weight: 7000;
}

.gallery .gallery-imags picture .overlayer {
  position: absolute;
  top: 100%;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #00000096;
  color: #fff;
  padding: 0.9375rem;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: top 0.4s;
}

.gallery .gallery-imags picture .overlayer p {
  color: #ddd;
  text-align: center;
}

.gallery .gallery-imags picture .overlayer a {
  color: #ddd;
  text-align: center;
  font-size: 24px;
}

.gallery .gallery-imags picture:hover .overlayer {
  top: 0;
}

.gallery .gallery-imags picture:hover img {
  scale: 1.1;
}

/* End Gallery */


.modal-dialog {
  max-width: 1000px;
  margin: 30px auto;
}



.modal-body {
  position: relative;
  padding: 0px;
  z-index: 1;
  color: #fff;
  top: 5px;
  right: auto;
}

.modal .modal-header button {
  position: absolute;
  top: 5px;
  left: 20px;
  right: auto;
}

.modal-backdrop {
  width: 100% !important;
  height: 100% !important;
}
.footer .communicate {
  gap: 15px;
}
.footer .communicate a .imam{
  color: #818181;
  margin-left: 25px;
  margin-top: 5px;
}
@media (max-width: 567px) {
  header .contain {
    width: 100%;
    padding: 50px 0px !important;
    height: 100%;
    background-repeat: no-repeat !important;
    background-size: cover;
    /* background-size: auto 50% !important; */
    display: flex;
    /* text-align: center; */
    align-items: center;
    justify-content: center;
    /* background-position:50px top !important; */
  }

  header .contain h1 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--light-color);
  }

  header .contain .image img {
    order: 1;
  }

  header .contain .image {
    width: 100%;
    margin-top: 25px !important;
  }

  .project-wait .project-contain .contain .data h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--light-color);
    margin: 20px 0;
  }

  .heading-contain .see-more span {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
  }
  .modal-body.head {
    position: relative;
    padding: 0px;
    z-index: 1;
    color: #fff;
    top: 15px;
    right: auto;
  }
  .modal {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
  }

  .modal-dialog {
    width: 100%;
    max-width: 455px !important;
    padding-inline: 10px !important;
    max-height: 768px !important;
    text-align: center;
    align-items: center;
    display: flex;
    position: absolute;
    top: 15%;
  }
  header{
    padding-top: 100px !important;
  }
  header .contain .buttons-contain {
    display: flex;
    align-items: center;
    justify-content: center !important;
    /* gap: 20px; */
  }

  .projects .project-box .project-contain h3 {
    color: var(--dark-color);
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0;
  }

  .modal-dialog .modal-body video {
    height: 350px;
  }

  .zadk {
    margin-bottom: 20px;
  }

  .general-section {
    padding: 25px 0px;
  }
  
  section.gallery .gallery-head {
    font-family: var(--font-secondary);
    text-align: center;
    padding: 10px;
}
  .service-header .contain h1 {
    font-size: 25px;
    font-weight: 700;
    color: var(--light-color);
    margin: 40px 0px 30px;
    line-height: 1.5;
  }

  .heading h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-color);
  }

  .heading h2 span {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
  }

  .service-header {
    width: 100%;
    padding: 190px 0px 130px;
    background-color: var(--third-color);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* background-size: 100% 100%;
    background-position: center; */
    z-index: 9;
    overflow: hidden;
  }

  .service-header .contain {
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    display: flex;
  }

  .about-repotic .about-contain .contain h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--light-color);
    margin: 0px;
  }

  .about-repotic .about-contain .contain h2 span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 20px !important;
  }

  .about-repotic .about-contain .contain {
    width: 100%;
    padding: 20px 0;
  }

  .sub-header .contain h2 {
    color: var(--light-color);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .sub-header .contain h1 {
    color: var(--light-color);
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 20px;
  }

  .courses .modal-body img {
    /* width: fit-content !important; */
    height: 500px !important;
  }

  .slider .owl-item .img-box {
    padding-block: 150px !important;
  }

  .image-slider .item .img-box img {
    width: 100%;
    max-width: 300px !important;
    margin: auto;
  }

  .servic-serv .servic-text {
    display: flex;
    flex-direction: column-reverse;
  }

  .gallery .gallery-imags picture .overlayer a {
    color: #ddd;
    text-align: center;
    font-size: 20px;
  }

  .madal-content h2 {
    font-size: 20px;
  }

  .madal-content p {
    font-size: 15px;
  }

  .navbar .content .navbar-nav li .service-drop-list {
    width: 100%;
    position: absolute;
    padding: 40px 0px 20px 0px;
    background-color: var(--primary-color);
    top: 220px;
    right: 0;
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
    transition: all 0.3s linear;
  }

  .about-serivce .service-list-contain li {
    width: 100%;
    -webkit-padding-start: 40px;
    padding-inline-start: 40px;
    position: relative;
    z-index: 9;
    font-size: 16px;
    font-weight: 500;
    color: #292929;
    -webkit-margin-after: 10px;
    margin-block-end: 10px;
    text-align: left;
    line-height: 1.8;
  }

  .about-repotic .about-list li {
    width: 100%;
    -webkit-padding-start: 40px;
    padding-inline-start: 40px;
    position: relative;
    z-index: 9;
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    -webkit-margin-after: 10px;
    margin-block-end: 10px;
    text-align: left;
    line-height: 1.8;
  }
 
  .general-section .about-list li span {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
  }
  .footer .footer-text p {
    font-size: 16px;
    margin-top: 20px;
    font-weight: 500 !important;
    text-align: unset;
  }

  .projects .project-box .project-contain p {
    color: var(--dark-color);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 30px;
    margin-top: 10px;
    text-align: center;
  }

  .servic-serv .servic-box p {
    color: var(--gray-color);
    font-size: 16px;
    font-weight: 500;
    padding: 20px 0;
    text-align: left !important;
  }
  .modal-body .head {
    position: relative;
    padding: 0px;
    z-index: 1;
    color: #fff;
    top: -60px;
    right: auto;
  }
  .browse {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    animation: browse-animation 3s linear infinite;
    pointer-events: none;
    height: 130px;
    width: 130px;
    right: 35%;
    top: 35%;
    transform: translate(50%, -50%);
  
  }
  
  @keyframes browse-animation {
    0% {
      transform: scale(0);
      opacity: 1;
    }
  
    25% {
      transform: scale(0.75);
      opacity: 0.75;
    }
  
    50% {
      transform: scale(1.5);
      opacity: 0.5;
    }
  
    75% {
      transform: scale(2.25);
      opacity: 0.25;
    }
  
    100% {
      transform: scale(3);
      opacity: 0;
    }
  }
  .data-cont h2 {
    font-size: 25px;
    font-weight: 700;
    color: var(--light-color);
    /* margin-bottom: 40px; */
    text-align: center;
    line-height: 2;
  }
}



/* ----- Start courses -----*/
.courses {
  padding: 50px 0;
  background-color: #f4f7f9;
  position: relative;
}

.courses:before {
  content: ' ';
  display: block;
  position: absolute;
  z-index: 1;
  right: 50%;
  top: 0;
  width: 3em;
  height: 2.8em;
  /* background-color: #fff; */
  margin: -1.4em -1.3em 0 0;
  -webkit-transform: rotate(35deg) skewX(-20deg);
  -moz-transform: rotate(35deg) skewX(-20deg);
  transform: rotate(35deg) skewX(-20deg);
}

.courses .courses-head h2 {
  margin-bottom: 20px;
  color: #222222;
  font-size: 3em;
  font-weight: 100;
  font-family:
    "HelveticaNeueThin 100";
}

.courses .cours-box {
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.courses .card {
  position: relative;
  overflow: hidden;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  max-width: 300px;
  width: 100%;
  /* box-shadow: -4px 3px 0px 0px rgba(0, 0, 0, 0.2); */

}

.courses .card .overlay {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: all 0.3s linear;
  z-index: 3;
  transition: all 0.3s ease-in-out;
  padding: 20px;
  opacity: 0;
}

.courses .card:hover .overlay {
  opacity: 1;
  transition-delay: 0.2s;
}

.courses .card .overlay h2 {
  font-size: 22px;
  margin-bottom: 30px;
  font-family: "lamaSens";
}

.courses .card .overlay p {
  font-size: 15px;
  margin-bottom: 30px;
}

.courses .card .overlay .button-card {
  display: flex;
}

.courses .card .overlay button {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  margin: 0 0 0 15px;
  color: #e05100;
  box-shadow: 4px 3px 0px 0px rgba(0, 0, 0, 0.2);
}

.courses .card .overlay button:hover {
  background-color: #FFB20E;
  transition: all .3s linear;
  color: #fff;
}

.courses .card img {
  height: auto;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  max-width: 100%;
  width: 100%;
}

.courses .card .card-body {
  background-color: var(--primary-color);
  width: 100%;
  height: fit-content;
  display: flex;
  align-items: center;
  flex: 0;
}

.courses .card .card-footer {
  margin: 0px 0;
  /* position: absolute; */
  bottom: 0px;
  width: fit-content;
  /* width: 100%; */
  background-color: #fff;
}

.courses .card .card-footer span {
  margin-top: 20px;
  color: #1eaace;
  font-family: "lamaSens";
}

.courses .card .footer-contact p {
  color: #222222;
  font-size: 15px;
  font-family: "lamaSens";
  font-weight: 500;
}

.courses .card .footer-contact a {
  color: #222222;
  font-size: 15px;
  font-family: "lamaSens";
  font-weight: 500;
}

.courses .card .card-body h2 {
  color: #fff;
  font-size: 14px;
  font-family: "lamaSens";
  font-weight: 700;
  line-height: 1.5;
}

.footer-contact {
  display: flex;
  position: relative;
}

.courses .card .card-box .card-footer .button-card {
  display: none;
  flex-direction: column;
  justify-content: left;
  row-gap: 10px;
  position: absolute;
  bottom: 112px;
  right: 10px;
  transition: all 0.3s linear;
}

.courses .card .card-box:hover .card-footer .button-card {
  display: flex;
}

.courses .card .card-footer .button-card a {
  padding: 10px 10px;
  border-radius: 5px;
  justify-content: center;
  border: none;
  background-color: #1dbb90;
  /* box-shadow: -4px 3px 0px 0px rgba(0, 0, 0, 0.2); */
}

.courses .modal-body .button-modal {
  position: absolute;
  background: transparent;
  box-shadow: none;
  top: 15px;
  left: 15px;
  right: auto;
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: transparent;
  background-clip: padding-box;
  border: 0px;
  border-radius: 1.3rem;
  outline: 0;
  max-height: 550px;
  height: 100%;
}
.scale{
  transform: scaleX(-1);
}
.courses .modal-body .button-modal span {
  font-size: 35px;
}

.courses .modal-body img {
  width: -webkit-fill-available;
  height: 800px;
}

.courses .button-cours {
  display: block;
  margin-inline: auto;
}

.courses button a {
  color: #fff;
}

.courses button a svg {
  margin-inline: 10px;
}

.courses button:hover {
  background-color: #FFB20E;
  transition: all .3s linear;
}

/* ----- End courses -----*/


.owl-stage-outer {
  min-height: 250px;
  padding-block: 50px !important;
}

.slider .owl-item .img-box {
  opacity: .5;
  position: relative;
  padding-block: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider-web .owl-item .img-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.slider .owl-item.active.center .img-box {
  opacity: 1 !important;
  z-index: 1;
  transform: scale(1.4);
  transition: .5s;
}

.slider .owl-item.center {
  z-index: 2 !important;
}

.owl-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.slider.owl-carousel .owl-nav button.owl-next,
.slider.owl-carousel .owl-nav button.owl-prev {

  background-color: tomato !important;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}

/* @media  (max-width:786px) {
  .owl-stage-outer{
      min-height: 390px;
      padding-top: 10px;
  
  }
} */


.servic-serv {
  padding: 100px 0;
}

.servic-serv .servic-box a {
  color: var(--dark-color);
  font-size: 25px;
  font-weight: 700;
  padding: 20px 0;
}

.servic-serv .servic-box p {
  color: var(--gray-color);
  font-size: 16px;
  font-weight: 500;
  padding: 20px 0;
}

.servic-serv .service-image img {
  border-radius: 50%;

}

.servic-serv .serv-content {
  display: contents;
}

/* #pcontent{
  position: absolute;
    bottom: 10%;
    transform: translateX(-50%);
    inset-inline-end: 50%;
    width: 100%;
    text-align: center;
    font-size: 20px;
} */

.madal-content {
  width: 100%;
  position: absolute;
  bottom: 15%;
  transform: translate(0, 50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: none !important;
}

.image-slider .item .img-box img {
  width: 100%;
  max-width: 350px;
}
.image-slider .slider-web .item .img-box img {
  width: 100%;
  max-width: 600px;
}
.modal .modal-body .card-button {
  top: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-inline: 10px;
}

.modal .modal-body .card-button button {
  border-radius: 50%;
}

.modal .modal-body .card-button button:hover {
  background-color: #1dbb90;
  border: transparent;
  transition: all .3slinear;
}

.modal .modal-body img {
  border-radius: 30px;
}
/* .owl-carousel.owl-rtl{
  direction: ltr;
} */
@media (max-width: 1200px) {
  .project-wait .box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    transition: all 0.3slinear;
  }

  .project-wait .box .box-contain {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  .about-repotic .nav {
    width: 100%;
    flex-direction: row;
    border-radius: 0px;
    border: 0px;
  }

  .project-contain .custom-ptn-pro {
    display: flex;
    gap: 10px;
    flex-direction: column;
  }
}


/* .slider .owl-item .img-box img{
  width: 243px;
  height: 137px;
} */