/* ----------------------------------------------------------------
                        [  Utilitiea ]
-----------------------------------------------------------------*/

/* Variables */
:root {
  --primary-color: #4452fe;
  --services-bg: #f2f7fc;
  --footer-bg: #f2f2f2;
}

/* Fonts */
@font-face {
  font-family: "DM Sans";
  src: url("./fonts/DMSans-Bold.woff2") format("woff2"),
    url("./fonts/DMSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("./fonts/DMSans-Regular.woff2") format("woff2"),
    url("./fonts/DMSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: Neulis;
  src: url('./fonts/Neulis-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face{
  font-family: Neulis;
  src: url('./fonts/Neulis-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {
  font-family: "DM Sans";
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans";
  box-sizing: border-box;
}

.hidden {
  display: none;
}

.text-right {
  text-align: right;
}

.close {
  vertical-align: middle;
  border: none;
  color: #fff;
  border-radius: 50%;
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
  background-color: transparent !important;
}

/* tines of the X */
.close::before,
.close::after {
  content: " ";
  position: absolute;
  top: 50%;
  left: 50%;
  height: 40px;
  width: 5px;
  background-color: currentColor;
}

.close:hover:after {
  content: " " !important;
}
.close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.no-rocket:hover::after {
  text-decoration: none !important;
  content: " " !important;
}

/* BTN */

.btn {
  padding: 0.675rem 2.75rem !important;
}
.btn-primary {
  background-color: var(--primary-color) !important;
  border: none !important;
  font-size: 17px;
}

.btn-white {
  background-color: #fff !important;
  border: none !important;
  color: var(--primary-color) !important ;
  font-size: 17px;
}

.btn-white:hover {
  background-color: #fff !important;
  border: none !important;
  color: var(--primary-color) !important ;
  border: 1px var(--primary-color);
  font-size: 17px;
}

/* Logo */
.logo {
  width: 150px !important;
}

/* Rocket Hover */
a:hover,
button:hover {
  font-weight: bold;
  text-decoration: none !important;
}

a:hover::after,
button:hover::after {
  text-decoration: none !important;
  content: " 🚀";
  animation: fadeIn ease 1s;
  -webkit-animation: fadeIn ease 1s;
}

/* Sections */
section {
  height: 100%;
  /* overflow-x: hidden; */
}

#landingPage .section-title {
  font-size: 24px !important;
}

#landingPage .section-desc {
  font-size: 32px !important;
}

#mainBody {
  animation: fadeInRight ease 0.5s;
  -webkit-animation: fadeInRight ease 0.5s;
}
.no-element{
  opacity: 0;
  transition: 0.5s all;
}
.no-element .z-img{
  transform: scale(0);
  transition: 1s all;
}
.no-element .service-card{
  transform: scale(0);
  transition: 1s all;
}
.service  .service-card{
  transform: scale(1);
  transition: 1s all;
}
.service p, .service h3 {
  opacity: 1;
  animation: fadeInLeftText 1s ease-out 0s 1;
  transition: 0.5s all;
}
.our-work{
  opacity: 1;
}
.our-work .z-img{
  transform: scale(1);
  transition: 1s all;
}
.our-work p, .our-work h3{
  opacity: 1;
  animation: fadeInLeftText 1s ease-out 0s 1;
  transition: 0.5s all;
}

.no-element .testimonialCard{
  transform: scale(0);
  transition: ease-out 1s all;
}

.testimonial .testimonialCard{
  transform: scale(1);
  transition: linear 1s all;
}

.testimonial{
  opacity: 1;
}
.testimonial .section-desc, .testimonial h3, .testimonial p{
  opacity: 1;
  animation: fadeInLeftText 1s ease-out 0s 1;
  transition: 0.5s all;
}

.subscribe{
  opacity: 1;
}
.subscribe p, .subscribe h3{
  opacity: 1;
  animation: fadeInLeftText 1s ease-out 0s 1;
  transition: 0.5s all;
}

.no-element .news-form{
  transform: scale(0);
  transition: 1s all;
}
.subscribe .news-form{
  /* animation: fadeInRight 1s cubic-bezier(.75,-0.5,0,1.75) 0s 1; */
  transform: scale(1);
  transition: 1s all;
}

.whoWeAre p, .whoWeAre h3{
  opacity: 1;
  animation: fadeInLeftText 1s ease-out 0s 1;
  transition: 0.5s all;
}
.whoWeAre img{
  animation: fadeInRight 1s cubic-bezier(.75,-0.5,0,1.75) 0s 1;
}

.no-banner{
font-weight: 300;
transition: 2s all cubic-bezier(0, 0.12, 1, 1.47);
}
/* .no-value .value-bg{
  transform: rotate(-4deg);
  transition: all 3s cubic-bezier(.75,-0.5,0,1.75);
} */
.our-value .value-bg{
  /* transform: rotate(0deg); */
  /* transition: all 3s cubic-bezier(.75,-0.5,0,1.75); */
  animation: swing 2s ease-in 0s 1  ;
  transform-origin: top center;
}
.no-team{
  background-color: #fff;
  transition: 1s all;
}

.our-team{
  background: url("./images/about/ourTeam.png"), var(--primary-color);
  transition: 1s all;
}
.no-team .outline{
transform: translateX(-1000px);
transition: 1s all;
}
.our-team .outline{
  transition: 1s all;
  animation: fadeInLeft 1s ease-out 0s 1 ;
}

.no-team .team-members img{
  /* opacity: 0; */
  transform: scale(0);
  transition: 0.5s all ease-out;
}
.no-team .team-members h3, .no-team .team-members p{
    opacity: 0;
    transform: translateX(-400px);
    transition: 1s all ease-in;
}

.our-team .team-members h3, .our-team .team-members p{
  opacity: 1;
  transform: translateX(0px);
  transition: 1s all ease-out;
}

.our-team .team-members img{
  /* opacity: 1; */
  transform: scale(1);
  transition: 0.5s all ease-in;
}

.no-element .benefits{
  transform: scale(0);
  transition: 1s ease-out
}
.our-benefits .benefits{
  transform: scale(1);
  transition: 1s ease-out;
}

.engage .engagement{
  animation: grow 2s cubic-bezier(0.25,-0.85, 0.93, 2.07) 0s 1;
}

.our-benefits p{
  animation: grow 1s ease-out 0s 1;
}

.offering .offering-title{
  animation: fadeInLeft 1s ease-out 0s 1;
}

/* .offering p{
  animation: fadeInRight 1s ease-out 0s 1;
}

.offering ul{
  animation: fadeInRight 2s ease-out 0s 1;
} */

.no-element .offering-content{
  /* transform: scale(0); */
  opacity: 0;
  transition: 1s all ease-in;
}

.offering .offering-content{
  /* transform: scale(1); */
  opacity: 1;
  transition: 1s all ease-out;
}

.teamImg{
  border-radius: 10px;
}


.show-white{
  display: none
}
.show-black{
  display: unset;
}


/* ----------------------------------------------------------------
                        [  Animation ]
-----------------------------------------------------------------*/
@keyframes grow{
  0%{
    transform: scale(0);
  }100%{
    transform: scale(1);
  }
}

@keyframes swing{
  0%{
    transform: rotate(-4deg);
  }25%{
    transform: rotate(4deg);
  }75%{
    transform: rotate(-4deg);
  }100%{
    transform: rotate(0deg);
  }
}

@keyframes fadeInLeftText {
  0% {
    opacity: 0;
    transform: translateX(-400px);
  }
  50%{
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeInLeft {
  0% {
    /* opacity: 0; */
    transform: translateX(-1000px);
  }
  100% {
    /* opacity: 0; */
    transform: translateX(0);
  }
}

@keyframes fadeoutLeft {
  0% {
    opacity: 1;
    transform: translateX(-1000px);
  }
  100% {
    opacity: 0;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    /* opacity: 0; */
    transform: translateX(1000px);
  }
  100% {
    /* opacity: 1; */
    transform: translateX(0);
  }
}

.fadeOutLeft {
  animation: fadeoutLeft ease 0.5s;
  -webkit-animation: fadeoutLeft ease 0.5s;
}
/* ----------------------------------------------------------------
                        [  Navbar ]
-----------------------------------------------------------------*/
.sticky {
  position: fixed;
  top: 0;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
}
.header-nav {
  /* position: fixed; */

  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  padding: 15px 60px 10px;
  box-shadow: #eee 0px 1px 4px;
  width: 100%;
  background-color: #fff;
  z-index: 23;
}
.header-menu {
  position: relative;
  z-index: 1;
}

.menu-icon {
  cursor: pointer;
}

.header-menu .nav-link {
  font-size: 18px;
  color: #000;
}
.nav-link {
  font-size: 18px;
}
/* ----------------------------------------------------------------
                        [  MenuBar ]
-----------------------------------------------------------------*/

.menubar {
  width: 100%;
  height: 100%;
  background: url(./images/header-bg.webp), #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 45;
  overflow-y: scroll;
  display: none;
  animation: fadeInRight ease 0.5s;
  -webkit-animation: fadeInRight ease 0.5s;
}

.sidebar {
  font-size: 18px;
  color: white;
  width: 100%;
  /* max-width: 720px; */
  height: 100%;
  /* padding: 10px 70px; */
  background: var(--primary-color);
  background: repeating-linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0) 49.9%,
    var(--primary-color) 50.1%,
    var(--primary-color) 100%
  );

  position: absolute;
  z-index: 46;
}
.sidebar-nav {
  display: flex;
  justify-content: space-between;
  /* overflow: hidden; */
  padding: 15px 60px 10px;
  width: 100%;
  z-index: 48;
}

.sidebar .sidebar-content {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  /* overflow-y: scroll; */
  padding: 10px 70px 80px;
  background-color: var(--primary-color);
}
.sidebar a {
  color: white;
}
.sidebar .socials {
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  color: white;
}

.sidebar .socials a {
  font-size: 16px;
  text-decoration: underline;
  color: white;
}
.sidebar .menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sidebar .menu a {
  font-size: 55px;
  text-decoration: underline;
  color: white;
}

.change {
  display: block !important;
}

/* ----------------------------------------------------------------
                        [  Landing Banner ]
-----------------------------------------------------------------*/

#landing-banner {
  min-height: 100vh;
  margin-top: 50px;
  background: url(./images/header-bg.webp);
}

#landing-banner h1 {
  font-size: 70px;
  font-weight: 500;
}

#landing-banner .banner {
  font-weight: bold;
}
#landing-banner p {
  font-size: 32px;
}

#landing-banner img {
  width: 450px;
  float: right;
  height: auto;
  margin-top: 0px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#landing-banner img:hover {
  transform: scale(1.1);
}

#landing-banner .scroll img {
  width: 20px;
  float: none;
  height: auto;
}

#landing-banner .scroll p {
  font-size: 16px;
  color: var(--primary-color);
}
/* ----------------------------------------------------------------
                        [  Services ]
-----------------------------------------------------------------*/
#services {
  background: var(--services-bg);
  height: 100%;
}

#services .section-title {
  color: #000;
  /* font-size: 24px; */
}

#services .section-desc {
  color: #000;
}

#services .section-desc a {
  color: #000;
}

.service-card {
  height: 400px;
  width: 335px;
  padding: 15px 40px;
  background: url(./images/services/bg-1.webp),
    linear-gradient(to bottom, var(--primary-color), #6923eb);
  background-size: cover;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card .card-title {
  margin-top: 20px;
  font-weight: bold;
  font-size: 28.06px;
  line-height: 1.2;
  color: #fff;
}

.service-card .card-img {
  width: 127px !important;
}

.owl-nav {
  display: flex;
  justify-content: space-between;
}

.owl-carousel .nav-button {
  height: 47px;
  width: 26px;
  cursor: pointer;
}

.owl-btn {
  display: flex;
  justify-content: space-between;
}

.customPreviousBtn {
  transform: rotate(180deg);
  cursor: pointer;
}
.customNextBtn {
  cursor: pointer;
}

/* ----------------------------------------------------------------
                        [  Our Works ]
-----------------------------------------------------------------*/
#ourWork {
  background-image: url(./images/ourWorkbg.webp),
    linear-gradient(to bottom, #1f89ea, #5f65ff);
  background-size: cover;
  background-position: center;
  /* height: 100%; */
  color: white;
}
#ourWork .section-desc a {
  color: #fff;
}

#ourWork .caseTitle {
  font-size: 28px;
  letter-spacing: 0.17px;
}

#ourWork .caseDesc {
  font-size: 38px;
  letter-spacing: 0.2px;
}

#ourWork .caseTag {
  font-size: 20px;
  letter-spacing: 0.17px;
}

/* ----------------------------------------------------------------
                        [  Testimonials ]
-----------------------------------------------------------------*/
#testimonials .testimonialCard {
  width: 550px;
  max-width: 100%;

  height: 378px;
  background-color: #00a6ff;
  color: #fff;
  padding: 30px 50px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

#testimonials .testimonialCard .card-img {
  width: 62px;
  height: 62px;
  border-radius: 55%;
}

#testimonials .testimonialCard .quote {
}

#testimonials .testimonialCard .desc {
  font-size: 24px;
  line-height: 31.5px;
}

#testimonials .testimonialCard .author {
  border-top: #fff 1px solid;
  padding-top: 10px;
  font-size: 16px;
  line-height: 24px;
}

/* ----------------------------------------------------------------
                        [  Work With Us ]
-----------------------------------------------------------------*/

#workWithUs {
  background: var(--services-bg) url(./images/workWithUs.webp);
  background-position: right;
  background-repeat: no-repeat;
  height: 100%;
}

#workWithUs .container {
  padding: 150px 0px;
}

/* ----------------------------------------------------------------
                        [  Work With Us ]
-----------------------------------------------------------------*/
#homeBlog .homeBlogList .homeBlogListItem a {
  color: #000 !important;
  text-decoration: none;
  font-size: 20px;
}

#homeBlog .homeBlogList hr {
  border: #000 2px solid;
}

/* ----------------------------------------------------------------
                        [  Subscribe ]
-----------------------------------------------------------------*/

#subscribe {
  text-align: left;
}
#subscribe #mce-EMAIL {
  color: #5c5c5c !important;
  font-size: 15px !important;
  font-weight: bold !important;
  background-color: #d0d0d0 !important;
  margin-bottom: 20px;
  padding: 0.975rem 2.75rem;
}

#subscribe button {
  width: 100%;
  padding: 0.975rem 2.75rem !important;
}
/* ----------------------------------------------------------------
                        [  footer ]
-----------------------------------------------------------------*/
footer {
  background-color: var(--footer-bg);
  color: #000;
}

footer .nav-link {
  font-size: 16px !important;
  color: #000;
}

footer .social-link {
  margin-top: 20px;
  color: #828282;
  text-decoration: underline;
}

footer .address {
  text-align: right;
}

footer .nav-link:hover::after,
footer .social-link:hover::after {
  text-decoration: none !important;
  content: " " !important;
}
/* ----------------------------------------------------------------
                        [  Contact ]
-----------------------------------------------------------------*/
#contactSection {
  background: url(./images/contact-bg.webp), var(--primary-color);
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
  height: 100%;
  padding: 20px 70px;
  display: none;
  animation: fadeInLeft both 0.5s;
  -webkit-animation: fadeInLeft both 0.5s;
}

#contactSection .title {
  font-size: 70px;
  font-weight: bold;
  color: #fff;
}

#contactSection label {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

#contactSection input {
  background: transparent;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  border: none;
  border-bottom: #fff 1px solid;
  border-radius: 0px !important;
  transition: none !important;
}

#contactSection input:active,
#contactSection input:focus {
  background: transparent;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  border: none;
  border-bottom: #fff 1px solid;
  transition: none !important;
}

#contactSection input::placeholder {
  color: #fff;
  opacity: 0.4;
}

/* ----------------------------------------------------------------
                        [  OOther Psges ]
-----------------------------------------------------------------*/

.section .title {
  color: var(--primary-color);
  font-size: 32px;
  font-weight: bold;
}

.section .desc {
  font-size: 18px;
}

/* ----------------------------------------------------------------
                        [  Landing Banner ]
-----------------------------------------------------------------*/

#about {
  min-height: calc(100vh -  73px);
  max-height: 778px;
  background: url(./images/about/header-bg.webp), var(--primary-color);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain !important;
  position: relative;
  color: #fff;
  background-clip: border-box;
  overflow-y: hidden;
  overflow-x: hidden;
  /* padding: 100px 30px; */
}

#about > * {
  z-index: 3;
}

#about h1 {
  font-size: 70px;
  font-weight: 500;
}

#about .banner {
  font-weight: bold;
  transition: all 1s ease-out;
}
#about p {
  font-size: 32px;
}

#about .subtitle {
  font-size: 28px;
  font-weight: bold;
}

#about .banner-img {
  position: absolute;
  width: 80%;
  /* height: inherit; */
  right: 0;
  bottom: 0;
  z-index: -1;
  object-fit: contain;
}

#about .service-img {
  width: 350px;
}

#about .scroll img {
  width: 20px;
  float: none;
  height: auto;
  overflow-x: hidden;
}

#about .scroll p {
  font-size: 16px;
  color: #fff;
}

/* ----------------------------------------------------------------
                        [  Who we are ]
-----------------------------------------------------------------*/

#whoWeAre {
  background: url(./images/about/whoweare-bg.webp), #f6f9ff;
  background-size: cover;
  z-index: 2;
}

/* ----------------------------------------------------------------
                        [  Who we are ]
-----------------------------------------------------------------*/

#ourStory {
  background: url(./images/about/Our-story-bg.webp);
  background-size: cover;
  position: relative;
  overflow-x: hidden;
}

#ourStory .fixed-image {
  position: absolute;
  top: 0;
}

#ourStory .stats {
  text-align: center;
}

#ourStory .stats .stat-num {
  font-size: 63px;
  margin-bottom: 0;
}

#ourStory .stats .stat-desc {
  font-size: 15.86px;
}

/* ----------------------------------------------------------------
                        [  Our Values ]
-----------------------------------------------------------------*/
#ourValues .title {
}

#ourValues .value-card {
  padding-top: 20px;
  display: block;
}
#ourValues .value-card h3 {
  color: var(--primary-color);

  font-size: 32px;
  font-weight: bold;
  padding-top: 10px;
}
#ourValues .value-card .value-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(./images/about/values/bg.webp), var(--primary-color);
  width: 246px;
  height: 305px;
  max-width: 100%;
  border-radius: 20px;
}

/* ----------------------------------------------------------------
                        [  Out Team ]
-----------------------------------------------------------------*/
#ourTeam {
  color: #fff;
  padding: 5rem 0;
}

#ourTeam .title {
  color: white;
}
#ourTeam .team {
  padding-top: 20px;
  margin-left: auto;
  margin-right: auto;
}
#ourTeam .team .teamName {
  font-size: 24px;
  font-weight: bold;
}

/* ----------------------------------------------------------------
                        [  Our Offerings ]
-----------------------------------------------------------------*/
#ourOfferings {
  background: url(./images/services/offering-bg.webp), #f4f4ff;
  /* overflow-x: auto !important; */
}

#ourOfferings .offering-title {
  font-size: 28px;
  background: -webkit-linear-gradient(var(--primary-color), #6923eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

#ourOfferings p {
  font-size: 24px;
  /* color: white; */
}
#ourOfferings ul {
  list-style: none; /* Remove default bullets */
}

#ourOfferings ul li {
  font-size: 20px;
}

#ourOfferings ul li::before {
  content: "\2022";
  background: -webkit-linear-gradient(var(--primary-color), #6923eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.engagement {
  /* top: 0; */
  position: relative;
  top: -150px;
  background: linear-gradient(var(--primary-color), #6923eb);
  color: #fff;
  border-radius: 10px;
  width: 70%;
  /* height: 100%; */
  text-align: center;
  padding: 4rem 3rem;
  /* margin-bottom: -25%; */
}

.engagement h3 {
  font-size: 28px;
}

.engagement p {
  font-size: 18px;
  font-weight: normal;
}

/* ----------------------------------------------------------------
                        [  Our Benefits ]
-----------------------------------------------------------------*/

.benefits {
  background: url(./images/about/values/bg.webp), var(--primary-color);
  border-radius: 19px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 246px;
  height: 233px;
  max-width: 100%;
  margin-bottom: 20px;
  margin-left: 10px;
}
#benefits > * {
  z-index: 3;
}
.b-image::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  /* left: 0; */
  width: 100%;
  height: 80%;
  background: url(./images/about/values/b-bg.webp);
  background-position: 100% 51%;

  background-size: contain;
  /* background-clip: border-box; */
  background-repeat: no-repeat;
  z-index: -1;
}

#benefits .benefits-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 5px;
}

#benefits p {
  font-size: 24px;
  /* color: white; */
}

#benefits .b-image {
  display: block;
}
