@import url("helper.css");
@font-face {
  font-family: "cocogoose";
  src: url(../fonts/Cocogoose-Pro-Regular-trial.ttf);
}
@font-face {
  font-family: "cocogoose-light";
  src: url(../fonts/Cocogoose-Pro-Light-trial.ttf);
}
@font-face {
  font-family: "montserrat-bold";
  src: url(../fonts/Montserrat-Bold.otf);
}
@font-face {
  font-family: "montserrat";
  src: url(../fonts/Montserrat-Regular.ttf);
}
*,
* button:focus {
  outline: 0;
}

:root {
  --cr-main: #2dd975;
  --cr-sub: #4825d8;
  --cr-dark1: #05011a;
  --cr-light1: #f0f7e8;
  /* --cr-sub2: #77643d; */
}

.cr-main {
  color: var(--cr-main) !important;
}

.bg-main {
  background-color: var(--cr-main) !important;
  border-color: var(--cr-main) !important;
}

.cr-sub {
  color: var(--cr-sub) !important;
}

.bg-sub {
  background-color: var(--cr-sub) !important;
  border-color: var(--cr-sub) !important;
}

html::-webkit-scrollbar {
  height: 20px;
  width: 10px;
  background: #f1f1f1;
  border-radius: 10px;
}

html::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

html::-webkit-scrollbar-corner {
  background: #999;
  border-radius: 10px;
}

body {
  font-family: "Montserrat", sans-serif;
  /*font-family: "cocogoose-light";*/
  text-decoration: none;
  font-size: 0.9em;
  overflow-x: hidden;
  position: relative;
  background-color: #090427;
  color: var(--cr-light1);
  font-weight: 400;
}

.logo-shap {
    top: 20% !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "montserrat-bold";
  text-transform: uppercase;
  margin: 0;
  line-height: 1.3;
  font-weight: 600;
}

.sub-font {
  font-family: "montserrat-bold";
}

.font-Poppins {
  font-family: "Poppins", sans-serif;
}

body a:hover {
  text-decoration: none;
}

body a:focus {
  outline: 0;
}

body ul {
  list-style-type: none;
  margin: 0;
}

[type=email], [type=number], [type=tel], [type=url] {
  direction: inherit;
}

.btn-default:active,
.btn-default:active:focus,
.btn-default:active:hover,
.btn-default:focus,
.btn-default:hover,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  -webkit-appearance: none;
}

.btn:active,
.btn:active:focus,
.btn:active:hover,
.btn:focus,
.btn:hover,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  transition: all 0.6s ease;
  outline: 0;
}

/* ==================== global style ============================== */
a,
span,
img {
  display: inline-block;
  transition: all 0.3s ease;
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

ul {
  padding: 0;
}

img {
  max-width: 100%;
  max-height: 100%;
}

.img_cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img_contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.text,
.text * {
  font-size: 14px;
  line-height: 1.8;
}

small.text {
  font-size: 12px;
}

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

/* loader
-----------------------------------------------------------------*/
.loader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(73, 38, 212, 0.6588235294);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: var(--cr-light1);
  z-index: 9999;
  transition: all 1s ease;
}
.loader .cont {
  position: relative;
  width: 40vw;
  height: 6px;
}
.loader .cont .progress-loader {
  position: relative;
  width: 40vw;
  height: 6px;
  border-radius: 6px;
  background-color: rgba(45, 217, 117, 0.3333333333);
  overflow: hidden;
}
.loader .cont .progress-loader::before {
  content: "";
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--cr-main), transparent);
  animation: progressFill 5s ease-in-out infinite;
}
.loader .cont .circle {
  position: absolute;
  left: 0;
  top: -8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--cr-main);
  box-shadow: 0 0 20px rgba(79, 70, 229, 0.6);
  animation: circleMove 5s ease-in-out infinite;
}
.loader .cont .load-cir {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #6464FB;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3333333333);
  margin: 30px auto 0;
  border-radius: 50%;
}
.loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 1s ease;
}

@keyframes progressFill {
  0% {
    left: -100%;
  }
  50% {
    left: 0%;
  }
  100% {
    left: 100%;
  }
}
@keyframes circleMove {
  0% {
    left: -10px;
    transform: scale(1);
  }
  50% {
    left: calc(100% - 10px);
    transform: scale(1.2);
  }
  100% {
    left: -10px;
    transform: scale(1);
  }
}
.loader2 {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(73, 38, 212, 0.6588235294);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  color: var(--cr-light1);
  z-index: 9999;
  transition: all 1s ease;
}
.loader2 .load2 {
  width: 25vw;
  height: 25vw;
}
.loader2.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 1s ease;
}

.dropdown .dropdown-menu {
  border-radius: 10px;
  padding: 10px;
  border: 0;
  box-shadow: 15px 15px 30px rgba(24, 25, 27, 0.0666666667);
}
.dropdown .dropdown-menu .dropdown-item {
  font-size: 14px;
  padding: 0.5rem 1rem;
  border-radius: 10px;
}

/* --------------- butn --------------- */
.butn {
  padding: 14px 35px;
  transition: all 0.2s ease;
  position: relative;
  text-align: center;
  font-weight: 500;
  text-transform: capitalize;
  border: 0;
  background-color: var(--cr-dark1);
  color: #fff;
}
.butn.md-butn {
  padding: 10px 25px;
}
.butn.blur-wh-butn {
  background-color: rgba(255, 255, 255, 0.0666666667);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.butn:hover {
  box-shadow: 7px 10px 15px rgba(24, 25, 27, 0.1333333333);
  transform: translateY(-2px);
  color: #fff;
}
.butn.hvr-scale:hover {
  transform: scale(1.1);
}
.butn.hvr-txt-trans {
  position: relative;
  overflow: hidden;
}
.butn.hvr-txt-trans .txt {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}
.butn.hvr-txt-trans .txt::after {
  content: attr(data-text);
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, 100%);
  transition: opacity 0.2s, transform 0.2s;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  white-space: nowrap;
}
.butn.hvr-txt-trans .txt span {
  transition: all 0.3s ease;
}
.butn.hvr-txt-trans:hover .txt span {
  transform: translateY(-150%);
  opacity: 0;
}
.butn.hvr-txt-trans:hover .txt::after {
  transform: translate(-50%, -50%);
  opacity: 1;
}

@media screen and (max-width: 991px) {
  .butn {
    padding: 10px 20px;
  }
  .butn * {
    font-size: 13px !important;
  }
}
/* --------------- navbar --------------- */
.navbar {
  position: fixed;
  top: -1px;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 5px 3vw;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}
.navbar .navbar-brand {
  position: relative;
}
.navbar .navbar-brand img {
  height: 80px;
}
.navbar .butn {
  padding: 12px 25px;
  font-size: 13px;
}
.navbar .navbar-nav .nav-link {
  position: relative;
  font-size: 14px;
  margin: 0 12px;
  font-weight: 600;
  color: #fff;
  text-transform: capitalize;
}
.navbar .navbar-nav .nav-link .nav-icon {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  display: inline-block;
  max-width: unset;
}
.navbar .navbar-nav .nav-link.hvr-txt-trans {
  position: relative;
  overflow: hidden;
}
.navbar .navbar-nav .nav-link.hvr-txt-trans .txt {
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}
.navbar .navbar-nav .nav-link.hvr-txt-trans .txt::after {
  content: attr(data-text);
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}
.navbar .navbar-nav .nav-link.hvr-txt-trans .txt span {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, 100%);
  transition: opacity 0.2s, transform 0.2s;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  white-space: nowrap;
  transition: all 0.3s ease;
}
.navbar .navbar-nav .nav-link.hvr-txt-trans:hover .txt span {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.navbar .navbar-nav .nav-link.hvr-txt-trans:hover .txt::after {
  transform: translateY(-150%);
  opacity: 0;
}
.navbar .btn-dark-light {
  position: relative;
  margin-inline-start: 15px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3333333333);
  font-size: 18px;
}
.navbar .btn-dark-light .icon-dark {
  display: none;
}
.navbar .btn-dark-light.active {
  border-color: var(--cr-dark1);
  color: var(--cr-dark1);
}
.navbar .btn-dark-light.active .icon-dark {
  display: block;
}
.navbar .btn-dark-light.active .icon-light {
  display: none;
}
.navbar .social-links a {
    position: relative;
    font-size: 16px;
    margin-inline-start: 5px;
    width: 40px;
    height: 40px;
    border: 1px solid #fff2;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.navbar .social-links a:hover {
    background-color: var(--cr-main);
    color: #fff !important;
}
/* --------------- header --------------- */
header {
  position: relative;
  padding: 120px 0;
  z-index: 20;
}
header .main-shape-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1;
}
header .info {
  position: relative;
  text-align: center;
  padding: 120px 0 150px;
}
header .info .title-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .info .title-wrapper h1 {
  position: relative;
  font-size: 110px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 3px;
}
header .info .title-wrapper small {
  font-size: 18px;
  opacity: 0.5;
}
header .scroll-lnk {
  position: relative;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
}
header .scroll-lnk .icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--cr-dark1);
  margin-inline-end: 15px;
  flex-shrink: 0;
}
header .social-links a {
  position: relative;
  font-size: 18px;
  margin-inline-start: 30px;
}
header .circles {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
header .circles .circle {
  position: absolute;
  width: 25vw;
  height: 25vw;
  background-color: var(--cr-sub);
  border-radius: 50%;
  left: 0;
  top: 0;
  filter: blur(150px);
  opacity: 0.3;
}
header .circles .circle.circle2, header .circles .circle.circle2 {
  background-color: var(--cr-sub);
}
header .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  z-index: -1;
}
header .pat1 {
  position: absolute;
  left: 3vw;
  top: 120px;
  width: 15vw;
  opacity: 0.3;
  z-index: -1;
}
header .pat2 {
  position: absolute;
  right: 3vw;
  bottom: 3vw;
  width: 15vw;
  opacity: 0.3;
  z-index: -1;
}

/* --------------- about --------------- */
.about {
  position: relative;
  padding: 150px 0;
  overflow: hidden;
  background-color: var(--cr-dark1);
  z-index: 10;
}
.about .main-shape-container {
  position: absolute;
}
.about .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0.5;
  filter: blur(10px);
  z-index: -1;
}

.about p {
    font-size: 16px;
}

/* --------------- section-title --------------- */
.section-title {
  position: relative;
}
.section-title h2,
.section-title h3{
  font-size: 40px;
  margin-bottom: 30px;
}

/* --------------- vision --------------- */
.vision {
  position: relative;
  overflow: hidden;
}
.vision::before {
  position: absolute;
  content: "";
  left: 0;
  top: 25%;
  height: 50%;
  z-index: -1;
}
.vision .vision-card {
  position: relative;
  padding: 60px 50px;
  margin-top: 5px;
  z-index: 10;
  min-height: 500px;
  background-color: var(--cr-dark1);
  background-image: url(../images/light1-1.png);
  background-size: cover;
  border-radius: 20px;
}
.vision .vision-card .text {
  font-size: 16px;
  margin: 10px 0;
}

.vision .vision-card .text *{
  font-size: 16px;
}

/* --------------- services --------------- */
.services {
  position: relative;
  color: #fff;
  background-color: #090427;
  overflow: hidden;
  z-index: 20;
}
.services .services-slider {
  position: relative;
  padding-bottom: 80px;
}
.services .sub-shapes-container {
  position: absolute;
  left: 0;
  top: 20%;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
}
.services .service-card {
  position: relative;
  padding: 10px;
  background-color: rgba(24, 25, 27, 0.1333333333);
  border-radius: 15px;
  margin-top: 30px;
  overflow: hidden;
}
.services .service-card .img {
  position: relative;
  display: block;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
}
.services .service-card .img::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  border-radius: 15px;
  background-image: linear-gradient(to top, #18191b, transparent);
}
.services .service-card .info {
  position: absolute;
  left: 25px;
  bottom: 25px;
  width: calc(100% - 50px);
  border-radius: 15px;
  padding: 20px;
  transform: translateY(calc(100% - 100px));
  transition: all 0.3s ease;
}
.services .service-card .info .card-title {
  font-size: 20px;
}
.services .service-card .info .butn {
  opacity: 0;
}
.services .service-card:hover .info {
  transform: translateY(0);
  background-color: var(--cr-light1);
  color: var(--cr-dark1);
}
.services .service-card:hover .info .butn {
  opacity: 1;
}
.services .circles {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.services .circles .circle {
  position: absolute;
  width: 25vw;
  height: 25vw;
  background-color: var(--cr-main);
  border-radius: 50%;
  left: 0;
  top: 0;
  filter: blur(150px);
  opacity: 0.5;
}
.services .circles .circle.circle2, .services .circles .circle.circle2 {
  background-color: var(--cr-sub);
}
.services .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  z-index: -1;
}

.services .swiper-button-prev, 
.services .swiper-button-next {
    position: relative;
}
.services .swiper-button-prev::after, 
.services .swiper-button-next::after  {
    font-size: 20px;
    transform: rotateY(180deg);
}

/* horizontal scroll */
.horizontal-scoll-wrapper {
  overflow: hidden;
  height: 500px;
}

.horizontal {
  display: flex;
  height: 100%;
}

.horizontal > div {
  display: flex;
  flex-shrink: 0;
  padding: 0 5px;
}

.horizontal > div:first-child {
  padding: 0 5px 0 15px;
}

.horizontal > div:last-child {
  padding: 0 15px 0 5px;
}

.horizontal .card {
  align-items: stretch;
  width: 500px;
}

.service-card {
  width: 400px;
}

/* --------------- proccess --------------- */
.procces {
  position: relative;
  z-index: 15;
  color: #fff;
}
.procces::before {
  position: absolute;
  content: "";
  left: -5%;
  top: 0;
  width: 110%;
  height: 100%;
  background: var(--cr-dark1);
  z-index: -1;
  transform: rotate(-1deg);
}
.procces .cards {
  position: relative;
}
.procces .cards .col-lg-3 {
  position: relative;
  margin: 30px -0.5px 0;
  z-index: 5;
}
.procces .cards .col-lg-3:nth-of-type(odd)::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  z-index: -1;
  border: 1px solid #444;
  border-bottom: 0;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.procces .cards .col-lg-3:nth-of-type(even)::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
  z-index: -1;
  border: 1px solid #444;
  border-top: 0;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.procces .cards .col-lg-3:nth-of-type(even) .procces-card {
  flex-direction: column-reverse;
}
.procces .procces-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 50px;
}
.procces .procces-card .numb {
  font-size: 18px;
  height: 50px;
  width: 50px;
  display: inline-flex;
  align-items: center;
  border-radius: 10px;
  letter-spacing: 5px;
}
.procces .procces-card h3 {
  font-weight: 100;
  letter-spacing: 3px;
  text-transform: capitalize;
  margin: 30px 0;
}
.procces .procces-card .icon {
  position: relative;
  opacity: 0.5;
}
.procces .procces-card .icon img {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(104deg) brightness(103%) contrast(103%);
}

/* --------------- procces --------------- */
.procces-st2 {
  position: relative;
}
.procces-st2::before {
  position: absolute;
  content: "";
  left: -5%;
  top: 0;
  width: 110%;
  height: 100%;
  background-color: var(--cr-dark1);
  z-index: -1;
  transform: rotate(-1deg);
}
.procces-st2 .cards {
  position: relative;
}
.procces-st2 .cards .procces-card {
  position: relative;
  display: flex;
  min-height: 400px;
}
.procces-st2 .cards .procces-card .numb {
  position: relative;
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-2deg);
  font-size: 25px;
  font-weight: bold;
  background-color: #0f0f0f;
  background-image: linear-gradient(to top, rgba(45, 217, 117, 0.1333333333), transparent 80%);
  flex-shrink: 0;
  z-index: 10;
  margin-top: 15px;
}
.procces-st2 .cards .procces-card .numb .txt {
  transform: rotate(2deg);
}
.procces-st2 .cards .procces-card .cont {
  position: relative;
  padding: 50px;
  z-index: 10;
}
.procces-st2 .cards .procces-card .cont::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #0f0f0f;
  background-image: linear-gradient(to top, rgba(72, 37, 216, 0.1333333333), transparent 80%);
  z-index: -1;
  transform: rotate(-2deg);
}
.procces-st2 .cards .pin-spacer:nth-of-type(2) .procces-card .numb {
  top: 70px;
}
.procces-st2 .cards .pin-spacer:nth-of-type(3) .procces-card .numb {
  top: 140px;
}
.procces-st2 .cards .pin-spacer:nth-of-type(4) .procces-card .numb {
  top: 210px;
}
.procces-st2 .cards .pin-spacer:nth-of-type(5) .procces-card .numb {
  top: 280px;
}
.procces-st2 .cards .pin-spacer:nth-of-type(6) .procces-card .numb {
  top: 350px;
}

/* --------------- procces --------------- */
.procces-st3 {
  position: relative;
}
.procces-st3::before {
  position: absolute;
  content: "";
  left: -5%;
  top: 0;
  width: 110%;
  height: 100%;
  background-color: var(--cr-dark1);
  background-image: url(../images/light1-1.png);
  background-size: cover;
  z-index: -1;
  transform: rotate(-1deg);
}
.procces-st3 .slider-content {
  position: relative;
  padding-top: 30px;
}
.procces-st3 .slider-content .swiper-pagination-progressbar-fill {
  background: linear-gradient(135deg, #4825d8, #2dd975);
}
.procces-st3 .slider-content .swiper-slide {
  height: auto;
}
.procces-st3 .process-card {
  position: relative;
  background-color: var(--cr-dark1);
  background-size: cover;
  padding: 30px;
  border-radius: 15px;
  z-index: 20;
  height: 170px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.procces-st3 .process-card::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, #2dd975, transparent 80%);
  z-index: -1;
  border-radius: 15px;
  opacity: 0.1;
}
.procces-st3 .process-card .title {
  position: relative;
  display: flex;
}
.procces-st3 .process-card .title h3, .procces-st3 .process-card .title h6 {
  font-family: "montserrat";
}
.procces-st3 .process-card .title .num {
  width: 55px;
  height: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(45, 217, 117, 0.3333333333);
  color: var(--cr-main);
  font-size: 20px;
  border-radius: 10px;
  margin-inline-end: 20px;
  flex-shrink: 0;
  margin-top: 8px;
}
.procces-st3 .process-card .text {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.procces-st3 .process-card:hover {
  height: 250px;
}
.procces-st3 .process-card:hover .text {
  opacity: 1;
  visibility: visible;
}
.procces-st3 .arrows {
  position: relative;
  height: 55px;
  display: flex;
  align-items: center;
}
.procces-st3 .arrows .swiper-pagination {
  position: relative;
  width: 100%;
  margin: 0 4vw;
}
.procces-st3 .arrows .swiper-button-next,
.procces-st3 .arrows .swiper-button-prev {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.procces-st3 .arrows .swiper-button-next::after,
.procces-st3 .arrows .swiper-button-prev::after {
  font-size: 13px;
}

.swiper-button-prev,
.swiper-button-next {
  width: 55px;
  height: 55px;
  border: 1px solid rgba(45, 217, 117, 0.3333333333);
  color: var(--cr-main);
  border-radius: 10px;
  margin: 0;
  top: 0;
  bottom: 0;
  opacity: 1;
  transition: all 0.3s ease;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: var(--cr-main);
}
.swiper-button-prev:hover::after,
.swiper-button-next:hover::after {
  color: #fff;
}

.modal .modal-content {
  background-color: var(--cr-dark1);
  background-image: url(../images/light1.png);
  padding: 30px;
  border-radius: 30px;
  z-index: 20;
  outline: 3px solid rgba(45, 217, 117, 0.3333333333);
  outline-offset: -10px;
  overflow: hidden;
}
.modal .modal-content .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0.4;
  z-index: -1;
  transform: scaleY(5);
}
.modal .modal-content .shap {
  position: absolute;
  right: 0;
  top: 0;
  height: 120px;
  opacity: 0.2;
  z-index: -1;
}
.modal .modal-content .cls {
  position: absolute;
  right: 15px;
  top: 8px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
}

.modal-backdrop {
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px) !important;
          backdrop-filter: blur(10px) !important;
}
.modal-backdrop.show {
  opacity: 1;
}

.form {
  position: relative;
  display: block;
}
.form .form-group {
  position: relative;
  display: block;
  margin-bottom: 20px;
}
.form .form-group .float-icon {
  position: absolute;
  right: 15px;
  bottom: 12px;
  z-index: 5;
  color: var(--cr-main);
  pointer-events: none;
}

.form .form-group input[type="date"] ~ .float-icon {
    right: 22px;
}

.form .form-control {
  position: relative;
  min-height: 45px;
  border-radius: 8px;
  background-color: rgba(25, 40, 30, 0.6392156863);
  border: 0;
  margin-top: 10px;
  color: #fff;
  box-shadow: none;
  padding: 10px 20px;
  font-size: 14px;
  font-family: "montserrat";
}
.form .form-control:focus {
  border-color: rgba(45, 217, 117, 0.3333333333);
}
.form .form-control::-moz-placeholder {
  color: #999;
}
.form .form-control::placeholder {
  color: #999;
}

.jop-pg .content {
  position: relative;
  background-color: var(--cr-dark1);
  background-image: url(../images/light1.png);
  background-size: cover;
  padding: 60px;
  border-radius: 30px;
  z-index: 20;
  outline: 1px solid rgba(45, 217, 117, 0.2666666667);
  outline-offset: -10px;
  overflow: hidden;
}
.jop-pg .content .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0.4;
  z-index: -1;
  transform: scaleY(5);
}
.jop-pg .content .shap {
  position: absolute;
  right: 0;
  top: 0;
  height: 120px;
  opacity: 0.2;
  z-index: -1;
}
.jop-pg .content .line-txt {
  position: relative;
  margin-top: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1333333333);
}
.jop-pg .content .tags {
  position: relative;
  display: flex;
  gap: 5px;
  margin-top: 5px;
  flex-wrap: wrap;
}
.jop-pg .content .tags .tag {
  position: relative;
  padding: 10px 20px;
  border-radius: 30px;
  margin-top: 15px;
  font-size: 13px;
  text-transform: capitalize;
  background-color: rgba(255, 255, 255, 0.1333333333);
  background-image: linear-gradient(45deg, rgba(72, 37, 216, 0.2666666667), transparent);
}
.jop-pg .content .req-list {
  position: relative;
}
.jop-pg .content .req-list li {
  position: relative;
  margin-top: 10px;
  font-size: 13px;
}
.jop-pg .content .form {
  position: relative;
  padding: 50px;
  border-radius: 20px;
  background-color: #090427;
}
.jop-pg .content .form .up-group {
  position: relative;
}
.jop-pg .content .form .up-group .up-input {
  position: relative;
}
.jop-pg .content .form .up-group .up-input .up-txt {
  position: absolute;
  left: 0;
  top: 2px;
  width: 120px;
  height: 40px;
  background-color: var(--cr-main);
  padding: 10px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* --------------- partners --------------- */
.partners {
  position: relative;
  background-color: var(--cr-dark1);
  border-radius: 0 0 50px 50px;
  z-index: 35;
  overflow: hidden;
  margin-top: -2px;
}
.partners::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, var(--cr-dark1), transparent, transparent, transparent, var(--cr-dark1));
  z-index: 10;
  pointer-events: none;
}
.partners .logos-slider {
  position: relative;
}
.partners .logos-slider .swiper-wrapper {
  transition-timing-function: linear !important;
  position: relative;
  pointer-events: none;
}
.partners .partner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.0666666667);
  border-radius: 15px;
}
.partners .partner img {
  max-height: 35px;
  max-width: 70%;
}
.partners .lines {
  margin-top: -5px;
}
.partners .partners-slider {
  position: relative;
  padding: 30px 0;
  background-color: var(--cr-dark1);
  transform: rotate(-3deg);
  overflow: hidden;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.6);
  z-index: 2;
}
.partners .partners-slider:last-of-type {
  transform: rotate(0);
  z-index: 1;
}
.partners .partners-slider .swiper-wrapper {
  transition-timing-function: linear !important;
  position: relative;
}
.partners .partners-slider .partner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}
.partners .partners-slider .partner img {
  height: 40px;
}

/* --------------- portfolio --------------- */
.portfolio {
  position: relative;
  z-index: 15;
  color: #fff;
}
.portfolio::before {
  position: absolute;
  content: "";
  left: -5%;
  top: 0;
  width: 110%;
  height: 100%;
  background: var(--cr-dark1);
  z-index: -1;
  transform: rotate(-1deg);
}
.portfolio .content {
  position: relative;
  z-index: 10;
}
.portfolio .work-card {
  position: relative;
  display: flex;
  margin-top: 15px;
}
.portfolio .work-card .icon {
  position: relative;
  width: 130px;
  min-height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 15px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.0666666667);
  border: 1px solid transparent;
}
.portfolio .work-card .icon img {
  height: 50px;
  opacity: 0.5;
}
.portfolio .work-card .cont {
  position: relative;
  background-color: rgba(255, 255, 255, 0.0666666667);
  padding: 30px;
  width: 100%;
  border: 1px solid transparent;
}
.portfolio .work-card.active .icon {
  background-color: #242424;
}
.portfolio .work-card.active .cont {
  background-color: #242424;
}
.portfolio .play-wrapper {
  position: relative;
  text-align: center;
}
.portfolio .play-wrapper .play-btn {
  position: relative;
  width: 120px;
  height: 120px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  outline: 1px solid rgba(255, 255, 255, 0.3333333333);
  outline-offset: 10px;
}
.portfolio .play-wrapper .play-btn img {
  height: 25px;
}
.portfolio .play-wrapper .txt {
  font-size: 14px;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: 30px;
}
.portfolio .bg-videos {
  position: absolute;
  left: -5%;
  top: 0;
  width: 110%;
  height: 100%;
  z-index: 0;
  transform: rotate(-1deg);
  overflow: hidden;
}
.portfolio .bg-videos .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.portfolio .bg-videos .video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}


.portfolio-st2 {
  position: relative;
  color: #fff;
}
.portfolio-st2 .portfolio-slider {
  position: relative;
  padding-top: 90px;
  overflow: hidden;
  padding-bottom: 50px;
}
.portfolio-st2 .portfolio-slider::before {
  position: absolute;
  content: "";
  top: 30px;
  left: 5%;
  width: 90%;
  height: 50%;
  background-color: #000;
  background-image: linear-gradient(to bottom, rgba(45, 217, 117, 0.062745098), transparent 80%);
  border-radius: 30px 30px 0 0;
  z-index: -1;
}
.portfolio-st2 .portfolio-slider::after {
  position: absolute;
  content: "";
  top: 60px;
  left: 3%;
  width: 94%;
  height: 50%;
  background-color: #000;
  background-image: linear-gradient(to bottom, rgba(45, 217, 117, 0.1333333333), transparent 80%);
  border-radius: 30px 30px 0 0;
  z-index: -1;
}
.portfolio-st2 .portfolio-card {
  position: relative;
  background-color: var(--cr-dark1);
  background-image: url(../images/light1-1.png);
  background-size: cover;
  padding: 50px;
  border-radius: 30px;
  z-index: 20;
}
.portfolio-st2 .portfolio-card .info h2 {
    font-size: 35px;
    margin-bottom: 15px;
}
.portfolio-st2 .portfolio-card .info h6 {
  font-weight: 200;
  letter-spacing: 5px;
}
.portfolio-st2 .portfolio-card .info .text {
  font-size: 18px;
  margin-top: 30px;
}
.portfolio-st2 .portfolio-card .img {
  position: relative;
  height: 500px;
  border-radius: 30px;
  overflow: hidden;
  outline: 1px solid rgba(45, 217, 117, 0.3333333333);
  outline-offset: -15px;
}
.portfolio-st2 .portfolio-card .pat {
  position: absolute;
  left: 40%;
  bottom: 50px;
  height: 150px;
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}
.portfolio-st2 .circles {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.portfolio-st2 .circles .circle {
  position: absolute;
  width: 25vw;
  height: 25vw;
  background-color: var(--cr-main);
  border-radius: 50%;
  left: 0;
  top: 0;
  filter: blur(100px);
  opacity: 0.5;
}
.portfolio-st2 .circles .circle.circle2, .portfolio-st2 .circles .circle.circle2 {
  background-color: var(--cr-sub);
}

.swiper-pagination {
  bottom: 0;
}
.swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--cr-main);
  opacity: 0.3;
  outline: 1px solid rgba(255, 255, 255, 0.4);
  outline-offset: 5px;
  margin: 0 15px !important;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

/* --------------- blog --------------- */
.blog {
  position: relative;
  z-index: 15;
  filter: drop-shadow(-10px -10px 30px rgba(0, 0, 0, 0.6));
}
.blog::before {
  position: absolute;
  content: "";
  left: -5%;
  top: 0;
  width: 110%;
  height: 100%;
  background: var(--cr-dark1);
  z-index: -1;
  transform: rotate(-1deg);
}
.blog .swiper-slide {
  height: auto;
}
.blog .post {
  position: relative;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.1333333333);
  padding: 40px;
  min-height: 100%;
}
.blog .post .img {
  position: relative;
  height: 200px;
}
.blog .post .arrow {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(153, 153, 153, 0.2);
  margin-inline-start: auto;
  margin-top: 30px;
  font-size: 21px;
}
.blog .post .title {
  position: relative;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-size: 30px;
  margin-bottom: 50px;
  font-size: 22px;
  min-height: 60px;
  display: flex;
  align-items: center;
}
.blog .post .num {
  position: relative;
  font-size: 50px;
  font-weight: bold;
  color: transparent;
  -webkit-text-stroke: 1px var(--cr-main);
  line-height: 1;
  margin-bottom: 50px;
  opacity: 0.4;
}
.blog .post .inf .text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog .post:hover {
  border-color: rgba(45, 217, 117, 0.6);
}
.blog .post:hover .arrow {
  border-color: rgba(45, 217, 117, 0.6);
  color: var(--cr-main);
}

/* --------------- contact --------------- */
.contact {
  position: relative;
  z-index: 20;
  color: #fff;
  filter: drop-shadow(-10px -10px 30px rgba(0, 0, 0, 0.6));
}
.contact::before {
  position: absolute;
  content: "";
  left: -5%;
  top: 0;
  width: 110%;
  height: 100%;
  background-color: var(--cr-dark1);
  background-image: url(../images/light1-1.png);
  background-size: cover;
  z-index: -1;
  transform: rotate(-1deg);
}
.contact .title-wrapper {
  position: relative;
}
.contact .title-wrapper h3 {
  font-size: 50px;
}
.contact .title-wrapper h2 {
  position: relative;
  font-size: 70px;
  margin-top: 120px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 7px 7px 0 rgba(0, 0, 0, 0.1333333333);
}
.contact .contact-card {
  position: relative;
  padding: 20px 40px;
  color: var(--cr-dark1);
}
.contact .contact-card::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cr-light1);
  z-index: -1;
  transform: rotate(-1deg);
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
}
.contact .contact-card .item {
  position: relative;
  margin: 20px 0;
}
.contact .contact-card .social-links {
  position: relative;
  margin-top: 30px;
}
.contact .contact-card .social-links a {
    position: relative;
    font-size: 16px;
    margin-inline-start: 5px;
    width: 40px;
    height: 40px;
    border: 1px solid #9993;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.contact .contact-card .social-links a:hover {
    background-color: var(--cr-main);
    color: #fff !important;
}
.contact .floor {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: rotate(-1deg) translateY(25%);
  filter: brightness(1000%);
  opacity: 0.15;
  z-index: -1;
}

/* --------------- footer --------------- */
.footer {
  position: relative;
  color: #fff;
  z-index: 30;
  filter: drop-shadow(-10px -10px 30px rgba(0, 0, 0, 0.6));
}
.footer::before {
  position: absolute;
  content: "";
  left: -5%;
  top: 0;
  width: 110%;
  height: 100%;
  background-color: var(--cr-dark1);
  z-index: -1;
  transform: rotate(-1deg);
}
.footer .main-footer {
  position: relative;
  padding: 120px 0 0;
}
.footer .main-footer .lg-txt {
  font-size: 160px;
  color: #fff;
  opacity: 0.05;
  position: absolute;
  right: 5%;
  bottom: 0;
  line-height: 1;
  transform: translateY(35%);
  font-weight: 300;
}
.footer .main-footer .foot-shapes {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer .main-footer .fav-line {
  position: absolute;
  top: 0;
  left: calc((100% - 1320px) / 2);
  width: 30vw;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer .form-group {
  position: relative;
}
.footer .form-group .form-control {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1333333333);
  border-radius: 0;
  padding: 10px 0;
  color: #fff;
  font-family: "montserrat";
}
.footer .form-group .form-control::-moz-placeholder {
  color: #999;
}
.footer .form-group .form-control::placeholder {
  color: #999;
}
.footer .form-group .form-control:focus {
  box-shadow: none;
}
.footer .form-group button {
  position: absolute;
  right: 0;
  bottom: 15px;
  background-color: transparent;
  border: 0;
  transform: rotate(-45deg);
}
.footer .links-wrapper {
  position: relative;
}
.footer .links-wrapper .contact-links a {
  font-size: 18px;
  font-weight: 500;
  margin: 5px 0;
  letter-spacing: 5px;
  text-transform: uppercase;
}
.footer .links-wrapper .contact-links a:hover {
  color: var(--cr-orange1);
}
.footer .links-group .links a {
  font-size: 14px;
  opacity: 0.6;
  margin-bottom: 10px;
}
.footer .links-group .links a:hover {
  opacity: 1;
}
.footer .text-slider {
  position: relative;
  margin-top: 50px;
}
.footer .text-slider::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, var(--cr-dark1), transparent);
  z-index: 5;
  pointer-events: none;
}
.footer .text-slider .swiper-wrapper {
  transition-timing-function: linear !important;
  position: relative;
  pointer-events: none;
}
.footer .text-slider .swiper-wrapper .swiper-slide {
  width: -moz-max-content !important;
  width: max-content !important;
}
.footer .text-slider .item {
  font-size: 90px;
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  line-height: 0.8;
  opacity: 0.3;
  font-weight: bold;
}
.footer .foot {
  position: relative;
  padding: 30px 0;
  background-color: #03000b;
}
.footer .foot .foot-links a {
  font-size: 14px;
  margin-inline-start: 30px;
}

/* ---------------------------------------------
                    about page 
--------------------------------------------- */
/* --------------- about --------------- */
.ab-about {
  position: relative;
  padding: 250px 0 150px;
  overflow: hidden;
  background-color: var(--cr-dark1);
  z-index: 10;
}
.ab-about .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.ab-about h1 {
  font-size: 70px;
  margin-bottom: 30px;
}
.ab-about h1 .grad-txt {
  position: relative;
  display: block;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  background: linear-gradient(135deg, #2dd975, rgba(72, 37, 216, 0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ab-about .text-item {
  font-size: 18px;
  margin-top: 20px;
  line-height: 2;
}
.ab-about .video-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  margin-top: 100px;
}
.ab-about .video-wrapper .bg {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  pointer-events: none;
  z-index: 5;
}
.ab-about .video-wrapper .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  z-index: 5;
}
.ab-about .video-wrapper .main-video {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* --------------- ab-vision --------------- */
.ab-vision {
  position: relative;
  padding: 80px 0;
  z-index: 20;
}
.ab-vision h4 {
  position: relative;
  line-height: 2;
  margin-bottom: 20px;
}
.ab-vision .tags {
  position: relative;
  display: flex;
  gap: 5px;
  margin-top: 15px;
}
.ab-vision .tags .tag {
  position: relative;
  padding: 10px 20px;
  border-radius: 30px;
  margin-top: 15px;
  font-size: 13px;
  text-transform: capitalize;
  background-color: rgba(255, 255, 255, 0.1333333333);
  background-image: linear-gradient(45deg, rgba(72, 37, 216, 0.2666666667), transparent);
}
.ab-vision .dot-list {
  position: relative;
}
.ab-vision .dot-list li {
  position: relative;
  display: flex;
  line-height: 2;
  margin-top: 15px;
}
.ab-vision .dot-list li i {
  font-size: 10px;
  margin-inline-end: 15px;
  flex-shrink: 0;
  margin-top: 10px;
}
.ab-vision .img {
  position: relative;
  height: 350px;
}
.ab-vision .img::after {
  position: absolute;
  content: "";
  top: 15px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 30px);
  border: 1px solid var(--cr-main);
  border-radius: 15px;
  z-index: 1;
  opacity: 0.3;
}
.ab-vision .img img {
  border-radius: 15px;
}

/* --------------- ab-services --------------- */
.ab-services {
  position: relative;
}
.ab-services .card-item {
  position: relative;
  padding: 30px;
  background-color: rgba(45, 217, 117, 0.0823529412);
  border-radius: 15px;
  text-align: center;
  margin-top: 10px;
  height: calc(100% - 10px);
}
.ab-services .card-item .icon {
  height: 50px;
  margin-bottom: 20px;
  opacity: 0.6;
}
.ab-services .text-content {
  position: relative;
  margin-top: 80px;
  text-align: center;
}
.ab-services .circles {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  opacity: 0.5;
}
.ab-services .circles .circle {
  position: absolute;
  width: 25vw;
  height: 25vw;
  background-color: var(--cr-main);
  border-radius: 50%;
  left: 0;
  top: 0;
  filter: blur(100px);
  opacity: 0.5;
}
.ab-services .circles .circle.circle2, .ab-services .circles .circle.circle2 {
  background-color: var(--cr-sub);
}

/* --------------- ab-footer --------------- */
.ab-footer {
  position: relative;
  padding: 100px 0;
  background-color: rgba(255, 255, 255, 0.0666666667);
}
.ab-footer .item {
  position: relative;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  height: calc(100% - 20px);
  min-height: 120px;
  background-image: url(../images/light1-1.png);
  background-size: cover;
  background-position: bottom left;
  font-size: 21px;
  display: flex;
  align-items: center;
  box-shadow: 3px 3px 0 rgba(45, 217, 117, 0.3333333333);
}

/* ---------------------------------------------
                    post page 
--------------------------------------------- */
/* --------------- post-det --------------- */
.post-det {
  position: relative;
  padding: 200px 0 150px;
  z-index: 20;
}
.post-det .post-title {
  position: relative;
  font-size: 50px;
}
.post-det .main-img {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 50px;
  max-height: 100vw;
}
.post-det .text-content {
  position: relative;
  margin-top: 50px;
}
.post-det .text-content .text {
  font-size: 20px;
  margin-top: 20px;
  opacity: 0.7;
}

/* ---------------------------------------------
                    portfolio page 
--------------------------------------------- */
/* --------------- portfolio --------------- */
.portfolio-st2 {
  position: relative;
  padding-top: 250px;
}

.gallery .img-item {
  position: relative;
  display: block;
}
.gallery .img-item .img {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 20px;
}
.gallery .img-item .float-info {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: calc(100% - 20px);
  padding: 20px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.0666666667);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.gallery .img-item .float-info .text {
  font-size: 14px;
  opacity: 0.7;
  margin-top: 8px;
}
.gallery .img-item .gallery-imgs-slider {
  position: relative;
  overflow: hidden;
}
.gallery .img-item .gallery-imgs-slider .swiper-button-prev,
.gallery .img-item .gallery-imgs-slider .swiper-button-next {
  top: calc(50% - 20px);
  width: 40px;
  height: 40px;
}
.nav-pills {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  background-color: rgba(255, 255, 255, 0.0666666667);
  border-radius: 50px;
}
.nav-pills .nav-item {
  flex-grow: 1;
  flex: 1;
}
.nav-pills .nav-item .nav-link {
  display: block;
  width: 100%;
  text-align: center;
  padding: 15px 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}
.nav-pills .nav-item .nav-link.active {
  background-color: var(--cr-main);
}

/* ---------------------------------------------
                    single-project page 
--------------------------------------------- */
/* --------------- single-project --------------- */
.single-project {
  position: relative;
  padding-top: 250px;
}
.single-project .text {
  font-size: 18px;
}
.single-project .grid-imgs {
  position: relative;
}
.single-project .grid-imgs .lg-img {
  height: 610px;
  margin: 10px 0;
}
.single-project .grid-imgs .lg-img .img-cover {
    /*object-fit: contain;*/
    
}
.single-project .grid-imgs .md-img {
  height: 380px;
  margin: 10px 0;
}
.single-project .grid-imgs .sm-img {
  height: 220px;
  margin: 10px 0;
}
.single-project .card-item {
  position: relative;
  padding: 30px;
  background-color: rgba(45, 217, 117, 0.0823529412);
  border-radius: 15px;
  text-align: center;
  margin-top: 24px;
  height: calc(100% - 24px);
}
.single-project .card-item .icon {
  height: 50px;
  margin-bottom: 20px;
  opacity: 0.6;
}
.single-project .card-item .text {
  font-size: 14px;
}
.single-project .result-card {
  position: relative;
  padding: 50px;
  border-radius: 30px;
  text-align: center;
  background-image: url(../images/light1-1.png);
}

/* ---------------------------------------------
                    services page 
--------------------------------------------- */
.services-pg {
  position: relative;
}
.services-pg .services-head {
  position: relative;
  padding: 100px 0;
}
.services-pg .services-head .pat1 {
  position: absolute;
  left: 3vw;
  top: 0;
  width: 15vw;
  opacity: 0.3;
  z-index: -1;
}
.services-pg .services-head .pat2 {
  position: absolute;
  right: 3vw;
  bottom: 30%;
  width: 15vw;
  opacity: 0.3;
  z-index: -1;
}
.services-pg .services-head .pg-title,
.services-pg .services-head .pg-title *{
  position: relative;
  font-size: 100px;
  text-transform: uppercase;
  color: transparent;
  line-height: 1.1;
  background-image: url(../images/light1-2.png);
  background-size: 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: moveBackground 5s linear infinite;
}

.services-pg .services-head .pg-title {
    margin-bottom: 30px;
}

@keyframes moveBackground {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.services-pg .cards {
  position: relative;
  padding: 120px 0;
  border-radius: 50px 50px 0 0;
  background-color: rgba(45, 217, 117, 0.0823529412);
  background-image: url(../images/light1.png);
  background-size: cover;
  background-position: top;
}
.services-pg .cards .row .col-lg-11:nth-of-type(even) .ser-card .row {
  flex-direction: row-reverse;
}
.services-pg .ser-card {
  position: relative;
  display: block;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1333333333);
  border-radius: 15px;
  margin-bottom: 30px;
}
.services-pg .ser-card .img {
  position: relative;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  min-height: 100%;
}
.services-pg .ser-card .info {
  position: relative;
  padding: 15px;
}
.services-pg .ser-card .chick-list {
  position: relative;
}
.services-pg .ser-card .chick-list li {
  position: relative;
  font-size: 13px;
  margin: 8px 0;
  display: flex;
  opacity: 0.7;
}
.services-pg .ser-card .chick-list li i {
  margin-top: 3px;
  margin-inline-end: 15px;
  flex-shrink: 0;
  color: var(--cr-main);
}

/* ---------------------------------------------
                    careers page 
--------------------------------------------- */
.careers-pg {
  position: relative;
}
.careers-pg .title-wrapper .search-side {
  position: relative;
  display: flex;
  align-items: flex-end;
}
.careers-pg .title-wrapper .search-group {
  position: relative;
}
.careers-pg .title-wrapper .search-group .form-group {
  position: relative;
  border: 1px solid rgba(45, 217, 117, 0.3333333333);
  border-radius: 10px;
  padding: 5px;
  display: flex;
  margin-top: 15px;
}
.careers-pg .title-wrapper .search-group .form-group .form-control {
  position: relative;
  border: 0;
  background-color: transparent;
  color: #fff;
  min-height: 45px;
  box-shadow: none;
}
.careers-pg .title-wrapper .search-group .form-group .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.2666666667);
}
.careers-pg .title-wrapper .search-group .form-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.2666666667);
}
.careers-pg .title-wrapper .search-group .form-group button {
  position: relative;
  width: 45px;
  height: 45px;
  border-radius: 8px;
  background-color: var(--cr-main);
  color: #fff;
  border: 0;
}
.careers-pg .title-wrapper .list-grid-btns {
  position: relative;
  padding-inline-start: 10px;
}
.careers-pg .title-wrapper .list-grid-btns a {
  position: relative;
  width: 55px;
  height: 55px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.0666666667);
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-inline-start: 5px;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.careers-pg .title-wrapper .list-grid-btns a.active {
  background-color: #fff;
  color: #000;
}
.careers-pg .careers-cards {
  position: relative;
  padding-top: 50px;
}
.careers-pg .careers-cards .title-item {
  position: relative;
  background: linear-gradient(90deg, rgba(45, 217, 117, 0.3333333333), var(--cr-main), rgba(45, 217, 117, 0.3333333333));
  border-radius: 10px;
}
.careers-pg .careers-cards .title-item .tit {
  position: relative;
  font-size: 18px;
  padding: 15px 30px;
}
.careers-pg .careers-cards .jop-item {
  position: relative;
  border-radius: 10px;
  margin-top: 10px;
  border: 1px solid rgba(45, 217, 117, 0.3333333333);
}
.careers-pg .careers-cards .jop-item .item {
  position: relative;
  font-size: 14px;
  padding: 15px 30px;
  text-transform: capitalize;
}
.careers-pg .careers-cards .jop-item .item .closed_badge {
    position: relative;
    padding: 10px 20px;
    /*background-color: rgba(45, 217, 117, 0.2666666667);*/
    display: inline-flex;
    align-items: center;
    border-radius: 8px;
    background-color: var(--cr-main) !important;
    color: #fff !important ;
}
.careers-pg .careers-cards .jop-item .h-txt {
  display: none;
  margin-inline-end: 10px;
  opacity: 0.7;
}
.careers-pg .careers-cards .jop-item .apply-btn {
  position: relative;
  padding: 10px 20px;
  background-color: rgba(45, 217, 117, 0.2666666667);
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
}
.careers-pg .careers-cards .jop-item .apply-btn:hover {
  background-color: var(--cr-main);
}
.careers-pg .careers-cards.grid .title-item {
  display: none;
}
.careers-pg .careers-cards.grid .jop-item {
  margin-top: 15px;
}
.careers-pg .careers-cards.grid .jop-item .row {
  display: block;
}
.careers-pg .careers-cards.grid .jop-item .h-txt {
  display: inline-block;
}
.careers-pg .careers-cards.grid .jops {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 1%;
}
.careers-pg .careers-cards.grid .jops .jop-item {
  width: 32%;
  padding: 15px 10px;
}
.careers-pg .careers-cards.grid .jops .jop-item .col-lg-2,
.careers-pg .careers-cards.grid .jops .jop-item .col-lg-5 {
  width: 100%;
}

/* ---------------------------------------------
                    about page 
--------------------------------------------- */
/* --------------- to_top --------------- */
/* ======== */
@media screen and (max-width: 991px) {
  .navbar {
    padding: 10px 0;
    background-color: var(--cr-dark1);
  }
  .navbar .navbar-brand img {
    height: 70px;
  }
    .navbar  .nav-side {
          justify-content: space-between;
          display: block !important;
  }
  .navbar  .nav-side .social-links {
      text-align: start !important;
        margin: 15px 0;
  }
  header {
    overflow: hidden;
  }
  header .info {
    padding: 100px 0 20px;
  }
  header .info .title-wrapper {
    display: block;
  }
  header .info .title-wrapper h1 {
    transform: none !important;
    font-size: 35px;
    margin: 15px 0;
  }
  .sub-shapes-container {
    height: 100vh;
  }
  .section-title {
    margin-top: 0 !important;
    margin-bottom: 30px !important;
  }
  .section-title h2,
  .section-title h3{
    font-size: 30px !important;
  }
  .fsz-50 {
    font-size: 25px !important;
  }
  .about {
    padding: 80px 0;
  }
  .ab-about h1 {
    font-size: 35px;
  }
  .vision .vision-card::before {
    transform: rotate(0);
  }
  .services .service-card .img {
    height: 400px;
  }
  .services-pg .services-head .pg-title {
    font-size: 35px;
    margin-bottom: 35px !important;
  }
  .procces .procces-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 30px;
    flex-direction: column !important;
  }
  .procces .procces-card::after, .procces .procces-card::before {
    display: none;
  }
  .portfolio .work-card .icon {
    display: none;
  }
  .portfolio .play-wrapper {
    margin-top: 50px;
  }
  .blog .post {
    padding: 20px;
  }
  .blog .post .inf {
    margin-top: 20px;
  }
  .blog .post .arrow {
    display: none;
  }
  .contact {
    overflow: hidden;
  }
  .contact .title-wrapper h3 {
    font-size: 25px;
  }
  .contact .title-wrapper h2 {
    font-size: 50px;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .footer {
    overflow: hidden;
  }
  .footer .links-wrapper .contact-links a {
    font-size: 12px;
    letter-spacing: 2px;
  }
  .services {
    overflow: hidden;
  }
  .procces {
    overflow: hidden;
  }
  main {
    overflow: hidden;
  }
  .portfolio-st2 .portfolio-card {
    padding: 30px;
  }
  .portfolio-st2 .portfolio-card .info h2 {
    font-size: 25px;
    height: 65px;
    overflow: hidden;
  }
  .portfolio-st2 .portfolio-card .info h6 {
      height: 42px;
      overflow: hidden;
  }
  .portfolio-st2 .portfolio-card .info .text {
    font-size: 14px;
  }
  .portfolio-st2 .portfolio-card .img {
    height: 300px;
    margin-bottom: 20px;
  }
 
  .vision .vision-card {
    padding: 30px 20px;
  }
  .procces-st2 {
    overflow: hidden;
  }
  .procces-st2 .cards .procces-card {
    min-height: -moz-max-content;
    min-height: max-content;
  }
  .procces-st2 .cards .procces-card .numb {
    display: none;
  }
  .procces-st2 .cards .procces-card .cont {
    padding: 30px 20px;
  }
  .procces-st2 .cards .procces-card .cont::before {
    transform: none;
  }
  .portfolio-st2 {
    padding-top: 150px;
  }
  .horizontal-scoll-wrapper {
    height: -moz-max-content;
    height: max-content;
  }
  .horizontal {
    display: block;
  }
  .services .service-card {
    margin-top: 0;
  }
  .services .service-card .info {
    transform: translateY(0);
    background-color: var(--cr-light1);
    color: var(--cr-dark1);
  }
  .services .service-card .info .butn {
    opacity: 1;
  }
  .careers-pg .careers-cards .jop-item,
  .careers-pg .careers-cards.grid .jop-item {
    margin-top: 15px;
  }
  .careers-pg .careers-cards .jop-item .row,
  .careers-pg .careers-cards.grid .jop-item .row {
    display: block;
  }
  .careers-pg .careers-cards .jop-item .h-txt,
  .careers-pg .careers-cards.grid .jop-item .h-txt {
    display: inline-block;
  }
  .careers-pg .careers-cards .jops,
  .careers-pg .careers-cards.grid .jops {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
  }
  .careers-pg .careers-cards .jops .jop-item,
  .careers-pg .careers-cards.grid .jops .jop-item {
    width: 100%;
    padding: 15px 10px;
  }
  .careers-pg .careers-cards .jops .jop-item .col-lg-2,
  .careers-pg .careers-cards .jops .jop-item .col-lg-5,
  .careers-pg .careers-cards.grid .jops .jop-item .col-lg-2,
  .careers-pg .careers-cards.grid .jops .jop-item .col-lg-5 {
    width: 100%;
  }
  .careers-pg .title-item{
    display: none;
  }
  
  .portfolio-st2 .section-title  .text{
      font-size: 13px !important ;
  }
   .portfolio-st2 .nav-pills .nav-item .nav-link {
    padding: 15px 5px;
    font-size: 10px;
  }
  
  .order_md_1 ,
  .portfolio-st2 .portfolio-card .col-lg-5 {
      order: -1 !important ;
  }
    .single-project {
        padding-top: 0px;
    }
    .single-project .result-card {
        padding: 0;
    }
    .ltspc-4 {
        letter-spacing: 1px !important;
    }
    
    .jop-pg .content .tags .tag {
        padding: 10px 7px;
        font-size: 10px;
    }
    .jop-pg .content {
        padding: 20px;
    }
    .jop-pg .content .form {
        padding: 20px;
    }
    
    .procces-st3 .process-card .title h3, 
    .procces-st3 .process-card .title h6 {
        font-size: 14px !important;
    }
    
    .procces-st3 .process-card:hover {
        height: 100% ;
    }
    
    .contact .contact-card .item h5 {
        font-size: 14px !important ;
    }
    .post-det {
        padding: 150px 0;
    }
    .post-det .post-title {
        font-size: 25px;
    }
    
    .portfolio-st2 .nav-pills {
        display: block;
    }

}
/* ======= */
html[dir=ltr] {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
html[dir=ltr] body {
  direction: ltr;
  font-family: "Poppins", sans-serif;
}

.light-mode {
  background-color: #fff;
  color: var(--cr-dark1);
}
.light-mode .navbar .navbar-nav .nav-link {
  color: var(--cr-dark1);
}
.light-mode .about {
  background-color: var(--cr-light1);
}
.light-mode .services,
.light-mode .vision-card {
  background-color: #fff;
  color: var(--cr-dark1);
}
.light-mode .partners {
  background-color: var(--cr-light1);
}
.light-mode .partners::after {
  background-image: linear-gradient(to right, var(--cr-light1), transparent, transparent, transparent, var(--cr-light1));
}
.light-mode .partners .partner {
  background-color: var(--cr-dark1);
}
.light-mode .portfolio-st2 {
  color: var(--cr-dark1);
}
.light-mode .portfolio-st2 .portfolio-slider::before,
.light-mode .portfolio-st2 .portfolio-slider::after {
  background-color: var(--cr-light1);
}
.light-mode .portfolio-st2 .portfolio-card {
  background-color: #fff;
}
.light-mode .procces-st3::before {
  background-color: #fff;
}
.light-mode .procces-st3 .process-card {
  background-color: #fff;
}
.light-mode .swiper-button-prev, .light-mode .swiper-button-next {
  border-color: var(--cr-dark1);
}
.light-mode .swiper-button-prev::after, .light-mode .swiper-button-next::after {
  color: var(--cr-dark1);
}
.light-mode .blog::before {
  background-color: var(--cr-light1);
}
.light-mode .blog .post {
  border-color: rgba(153, 153, 153, 0.3333333333);
}
.light-mode .contact {
  color: var(--cr-dark1);
}
.light-mode .contact::before {
  background-color: #fff;
}
.light-mode .footer {
  background-color: #fff;
  color: var(--cr-dark1);
}
.light-mode .footer::before {
  background-color: #fff;
}
.light-mode .footer .links-wrapper.contact-links a {
  color: var(--cr-dark1);
}
.light-mode .footer .text-slider::after {
  background-image: linear-gradient(to top, #fff, transparent);
}
.light-mode .footer .text-slider .item {
  -webkit-text-stroke: 1px var(--cr-dark1);
}
.light-mode .footer .foot {
  background-color: var(--cr-light1);
}
.light-mode .footer .form-group .form-control {
  border-bottom: 1px solid rgba(153, 153, 153, 0.3333333333);
  color: var(--cr-dark1);
}
.light-mode .text-white {
  color: var(--cr-dark1) !important;
}
.light-mode .modal .modal-content {
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  .light-mode .navbar .navbar-nav .nav-item .nav-link {
    color: #fff;
  }
  .light-mode .navbar .btn-dark-light.active {
    border-color: #fff;
    color: #fff;
  }
}/*# sourceMappingURL=style.css.map */

.logo-shap {
    position: fixed;
    top: 20%;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    opacity: 0.5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-shap img {
    height: 20vw;
}

.sub-shapes-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 100vw;
    height: 150vh;
    opacity: 0.2;
    transform: scale(1.2);
    display: none !important;
}

canvas {
    display: block;
    width: 100vw;
    height: 100vh;
}

#video-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    background: #000;
}

/* Hide body content until intro ends */
.body-content {
    opacity: 0;
    visibility: hidden;
}

body.content-ready .body-content {
    opacity: 1;
    visibility: visible;
    transition: opacity 1.2s ease;
}

#black-overlay {
    position: fixed;
    inset: 0;
    background: #000;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 2s ease;
}
#black-overlay.visible {
    opacity: 1;
    transition: none;
    pointer-events: auto;
}
#black-overlay.fadeout {
    opacity: 0;
    transition: opacity 2s ease;
}

.scroll-circle {
    position: fixed;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 1px solid #fff3;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    font-size: 12px;
    padding: 15px;
    line-height: 2;
    color: #fff9;
    transition: opacity 0.6s ease;
    opacity: 1;
    pointer-events: none;
}

.scroll-circle.hide {
    opacity: 0;
}




.single-project .grid-imgs .lg-img .play-btn {
  position: absolute;
  top: calc(50% - 60px);
  left: calc(50% - 60px);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0003;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);i
  outline: 1px solid var(--cr-main);
  outline-offset: -7px;
  color: var(--cr-main);
  font-size: 20px;
}

.single-project .grid-imgs .lg-img .play-btn:hover {
  outline-offset: -15px;
}

header {
    position: relative;
}

header .bg-video {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    opacity: 0.1;
}

/*.lity-container {*/
/*    height: 80vh;*/
/*    width: 65vw;*/
/*}*/