:root {
  --primary: #060c1c;
  --secondary: #2a52c2;
  --tertiary: #017aff;
  --color-1: #d7d5ff;
  --color-2: #5e19b3;
  --color-3: #edeff6;
}

html {
  height: 100%;
  scroll-padding-top: 150px;
}

body {
  font-family: "Inter", sans-serif;
  color: #373f56;
}

.bg-main-primary {
  background-color: var(--primary);
}

.font-sm {
  font-size: 13px;
}

.text-main-secondary {
  color: var(--secondary);
}

.text-main-tertiary {
  color: var(--tertiary);
}

.text-bold {
  font-weight: bold;
}

.pt-100 {
  padding-top: 100px;
}

.rounded-20 {
  border-radius: 20px;
}

.bg-color-1 {
  background-color: var(--color-1);
}

.text-color-2 {
  color: var(--color-2);
}

.hero-heading {
  font-size: 4rem;
}

.bg-color-3 {
  background-color: var(--color-3);
}

.hero-cover {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.flag-icon {
  height: 25px;
  width: 25px;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
}

.icon-size {
  height: 45px;
}

.font-lg {
  font-size: 2.5rem;
}

.text-heading {
  font-size: 2rem;
}

.marquee {
  animation: marquee 10s linear infinite;
}

.text-medium {
  font-weight: 600;
}

.img-box {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.object-fit-cover {
  object-fit: cover;
}

.object-fit-contain {
  object-fit: contain;
}

.object-position-center {
  object-position: center center;
}

.object-position-bottom-center {
  object-position: bottom center;
}

.blur-effect::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px; /* adjust width as needed */
  height: 100%;
  /* Right fade effect using mask */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}

.w-20 {
  width: 20%;
}

.negative-mt {
  margin-top: -90px;
}

.tab-container {
  border: 1px solid #f4f4f4;
}

.tab-container li a {
  text-decoration: none;
  color: #060c1c;
  padding: 10px 15px;
}

.tab-container li a.active {
  text-decoration: none;
  color: #fff;
  border: 1px solid #060c1c;
  padding: 10px 15px;
  border-radius: 10px;
  background-color: var(--primary);
}

.py-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.animate-element {
  animation-name: device;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: linear;
}

.overlay-2 {
  background-image: linear-gradient(#00262b00, rgb(255 255 255));
  position: absolute;
  /* top: 0; */
  right: 0;
  bottom: 0;
  left: 0;
  height: 40%;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes device {
  0% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(45px);
  }
}

@media screen and (max-width: 768px) {
  .hero-heading {
    font-size: 2.5rem;
  }

  /* .tabs-box {
    display: none !important;
  } */

  html {
    height: 100%;
    scroll-padding-top: 300px;
  }

  .accordion-button {
    font-size: 0.8rem;
  }

  .logo {
    height: 20px;
  }

  .negative-mt {
    margin-top: 0px;
  }

  .text-heading {
    font-size: unset;
  }

  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    padding-left: 20px;
    padding-right: 20px;
  }
}
