@font-face {
  font-family: "Roboto", sans-serif;
  src: url(../fonts/Roboto-Thin.ttf);
  font-weight: 100;
}

@font-face {
  font-family: "Roboto", sans-serif;
  src: url(../fonts/Roboto-Light.ttf);
  font-weight: 300;
}

@font-face {
  font-family: "Roboto", sans-serif;
  src: url(../fonts/Roboto-Regular.ttf);
  font-weight: 400;
}

@font-face {
  font-family: "Roboto", sans-serif;
  src: url(../fonts/Roboto-Medium.ttf);
  font-weight: 500;
}

@font-face {
  font-family: "Roboto", sans-serif;
  src: url(../fonts/Roboto-Bold.ttf);
  font-weight: 700;
}

@font-face {
  font-family: "Roboto", sans-serif;
  src: url(../fonts/Roboto-Black.ttf);
  font-weight: 900;
}

:root {
  --primary-clr: #335aff;
  --secondary-clr: #1e2460;
}

::-webkit-scrollbar {
  width: 8px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: #e9e9e9;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-clr);
  border-radius: 8px;
}

::selection {
  background-color: var(--secondary-clr);
  color: #fff;
  -webkit-text-fill-color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-padding-top: 80px;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
}

.cursor-pointer {
  cursor: pointer;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.primary-bg {
  background-color: var(--primary-clr);
}

.primary-color {
  color: var(--primary-clr);
}

.secondary-bg {
  background-color: var(--secondary-clr);
}

.secondary-color {
  color: var(--secondary-clr);
}

.text-wide {
  letter-spacing: 1px;
}

.text-wide-2 {
  letter-spacing: 2px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a,
.nav-link {
  text-decoration: none;
  transition: 0.2s linear;
  color: var(--secondary-clr);
}

.primary-btn {
  font-size: 18px;
  font-weight: 500;
  border-radius: 12px;
  padding: 12px 24px;
  color: var(--primary-clr);
  background: transparent;
  border: 1px solid var(--primary-clr);
  transition: 0.2s linear;
  display: inline-block;
  line-height: 1.2;
}

.primary-btn:hover {
  background-color: var(--primary-clr);
  border-color: transparent;
  color: #fff;
  transition: 0.2s linear;
}

.primary-btn i {
  width: 16px;
}

.primary-btn:hover i::before {
  content: "\f061";
  transition: 0.2s linear;
}

.primary-fill-btn {
  color: #fff;
  background: var(--primary-clr);
  border: 1px solid var(--primary-clr);
}

.primary-fill-btn:hover {
  color: var(--primary-clr);
  background: transparent;
  border: 1px solid var(--primary-clr);
  transition: 0.2s linear;
}

.linear-text {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, var(--secondary-clr), var(--primary-clr));
}

.linear-text-dark {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to right, #fff, var(--primary-clr));
}

.inner-gap {
  padding: 80px 0;
}

.outer-gap {
  margin: 80px 0;
}

.fs-12 {
  font-size: 12px;
}

.fs-14 {
  font-size: 14px;
}

.list-desc {
  padding-left: 18px;
  list-style: disc;
}

/* loader */
.loader-wrapper {
  z-index: 9999;
  display: flex;
}

.loader {
  aspect-ratio: 1;
  box-shadow: 0 0 0 0 var(--secondary-clr);
  animation: loader-animation 1.5s infinite linear;
}

.loader:before,
.loader:after {
  content: "";
  background: var(--primary-clr);
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 var(--secondary-clr);
  animation: inherit;
  animation-delay: -0.5s;
}

.loader:after {
  animation-delay: -1s;
}

@keyframes loader-animation {
  100% {
    box-shadow: 0 0 0 40px #0000
  }
}

/* Footer */
.f-logo {
  width: 200px;
}

.footer-link {
  color: #596982;
}

.footer-link:hover {
  color: var(--primary-clr);
}

/* Header */
header .nav-link,
header .nav-item.dropdown .nav-link,
header .dropdown .sc-mega-menu .dropdown-submenu-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  position: relative;
  transition-duration: 0.1s;
  padding: 12px 0;
  border-bottom: 2px solid rgba(0, 0, 255, 0);
}

header .nav-link:hover,
header .nav-item.dropdown .nav-link:hover,
header .dropdown .sc-mega-menu .dropdown-submenu-link:hover {
  border-color: var(--primary-clr);
}

header .dropdown .sc-mega-menu .dropdown-submenu-link i {
  width: 20px;
  text-align: center;
}

header .sc-mega-menu {
  width: 720px;
  backdrop-filter: blur(60px);
}

header .dropdown-menu {
  transform: translate(-45%, 0) rotateX(0);
}

.navbar-brand img {
  height: 46px;
}

.navbar-toggler {
  height: 28px;
}

.navbar-toggler-bars {
  width: 32px;
  display: block;
  background: var(--primary-clr);
  height: 4px;
  margin: auto;
  position: relative;
  transform: rotate(45deg);
  transition: 0.1s;
  border-radius: 4px;
}

.navbar-toggler-bars::before,
.navbar-toggler-bars::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: var(--secondary-clr);
  left: 0;
  top: -10px;
  opacity: 0;
  transition: 0.1s;
  border-radius: 4px;
}

.navbar-toggler-bars::after {
  top: auto;
  transform: rotate(-90deg);
  bottom: 0;
  opacity: 100;
  transition: 0.1s;
}

.navbar-toggler.collapsed .navbar-toggler-bars {
  transform: rotate(0);
  transition: 0.1s;
}

.navbar-toggler.collapsed .navbar-toggler-bars::before,
.navbar-toggler.collapsed .navbar-toggler-bars::after {
  opacity: 100%;
  transition: 0.1s;
}

.navbar-toggler.collapsed .navbar-toggler-bars::after {
  transform: rotate(00deg);
  bottom: -10px;
  transition: 0.1s;
}

/* call-to-action */
.call-to-action {
  background: url(../../assets/images/call-to-action-bg.jpg) center center no-repeat;
  background-size: cover;
  /* background-attachment: fixed; */
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
  background: var(--primary-clr);
}

.nav-link:focus,
.nav-link:hover {
  color: var(--primary-clr);
}

.job-card {
  transition: 0.2s linear;
}

.job-card:hover {
  box-shadow: 0px 30px 50px 0px rgb(52 64 92 / 20%);
  transition: 0.2s linear;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper.pathSwiper {
  padding: 40px 0 0 0;
}

.swiper.pathSwiper .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  top: 0 !important;
  bottom: auto !important;
}

.swiper.pathSwiper .swiper-pagination::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 99%;
  background-color: #fff;
}

.swiper.pathSwiper .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  opacity: 1;
  background: rgba(255, 255, 255, 1);
  z-index: 9;
  margin: 0 !important;
}

.swiper.pathSwiper .swiper-pagination-bullet.active-before,
.swiper.pathSwiper .swiper-pagination-bullet-active {
  color: #fff;
  background: var(--primary-clr);
}

.swiper.pathSwiper.swiper-horizontal .swiper-pagination-bullets .swiper-pagination-bullet::before {
  background: transparent;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  background: var(--primary-clr);
}

.swiper.darkPathSwiper .swiper-pagination::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 99%;
  background-color: var(--secondary-clr);
}

.swiper.darkPathSwiper .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  opacity: 1;
  background: var(--secondary-clr);
  z-index: 9;
  margin: 0 !important;
}

.list-style {
  list-style: circle;
}

.accordion-button:not(.collapsed) {
  color: var(--primary-clr);
}

.blog-card {
  transition: 0.2s linear;
}

.blog-img span {
  left: 24px;
  bottom: 0;
  color: #Fff;
  background-color: var(--secondary-clr);
  transition: 0.2s linear;
  transform: translateY(50%);
}

.blog-img img {
  height: 240px;
}

.blog-content p {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card:hover,
.blog-card:hover a {
  background-color: var(--secondary-clr);
  color: #fff;
  transition: 0.2s linear;
}

.blog-card:hover .blog-img span {
  color: var(--secondary-clr);
  background-color: #fff;
  transition: 0.2s linear;
}

.breath-text span:nth-child(1) {
  animation: bts 1600ms infinite linear;
}

.breath-text span:nth-child(2) {
  animation: bts 1600ms infinite linear 200ms;
}

.breath-text span:nth-child(3) {
  animation: bts 1600ms infinite linear 400ms;
}

.breath-text span:nth-child(4) {
  animation: bts 1600ms infinite linear 600ms;
}

.breath-text span:nth-child(5) {
  animation: bts 1600ms infinite linear 800ms;
}

.breath-text span:nth-child(6) {
  animation: bts 1600ms infinite linear 1000ms;
}

.breath-text span:nth-child(7) {
  animation: bts 1600ms infinite linear 1200ms;
}

.breath-text span:nth-child(8) {
  animation: bts 1600ms infinite linear 1400ms;
}

.breath-text span:nth-child(9) {
  animation: bts 1600ms infinite linear 1600ms;
}

@keyframes bts {
  form {
    font-weight: 100;
  }

  50% {
    font-weight: 900;
  }

  to {
    font-weight: 100;
  }

}

/* partner */
.partner-slider {
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 77px;
  width: 100%;
  white-space: nowrap;
}

.partner-slider-inner {
  width: 200%;
  position: absolute;
  animation: marquee 20s linear infinite;

  &:hover {
    animation-play-state: paused;
  }
}

.partner img {
  max-height: 77px;
  max-width: inherit;
  mix-blend-mode: screen;
}

@keyframes marquee {
  0% {
    left: 0;
  }

  100% {
    left: -100%;
  }
}

/* Responsive CSS */

@media (min-width: 992px) {
  .navbar-nav li:hover>.dropdown-menu {
    display: block;
  }
}

@media (min-width: 1500px) {}

@media (min-width: 1200px) {}

@media (max-width: 1400px) {}

@media (max-width: 1199px) {}

@media (max-width: 991px) {

  header .dropdown-menu {
    transform: unset;
  }

  header .navbar-nav {
    margin-top: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #ffffff69;
    border-top: 1px solid #ffffff69;
  }

  header .primary-btn.secondary-btn {
    width: 100%;
  }

  header .sc-mega-menu {
    width: 100%;
  }

  .inner-gap {
    padding: 60px 0;
  }

  .outer-gap {
    margin: 60px 0;
  }
}

@media (max-width: 767px) {
  .fs-5 {
    font-size: 18px !important;
  }
}

@media (max-width: 575px) {
  .inner-gap {
    padding: 40px 0;
  }

  .outer-gap {
    margin: 40px 0;
  }

  .fs-5 {
    font-size: 16px !important;
  }

  .fs-6 {
    font-size: 14px !important;
  }

  .primary-btn {
    font-size: 16px;
    padding: 10px 20px;
  }
}

@media (max-width: 420px) {}