@font-face {
  font-family: Roboto;
  src: url(../fonts/Roboto-Bold.ttf);
}
@font-face {
  font-family: Mukta;
  src: url(../fonts/Mukta-Regular.ttf);
}
h1 {
  font-family: Arial;
}

body {
  margin: 0;
  margin-top: 60px;
  font-family: Mukta;
}

#content {
  min-height: 100vh;
}

@media screen and (max-width: 768px) {
  .language-switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: fit-content;
    margin: auto;
  }
}
@media screen and (min-width: 769px) {
  .language-switcher {
    display: flex;
    align-items: right;
    gap: 10px;
    max-width: fit-content;
    margin: 0 2vw 0 auto;
  }
}
.m-auto {
  margin: auto;
}

.m-0 {
  margin: 0;
}

.flex {
  display: flex;
}

.justify-content-center {
  justify-content: center;
}

.justify-content-right {
  justify-content: right;
}

.justify-content-around {
  justify-content: space-around;
}

.flex-row {
  flex-direction: row;
}

.loader-wrapper {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  width: 100%;
  min-width: 300px;
  min-height: 300px;
  display: block;
  z-index: 30000;
}
.loader-wrapper .loader {
  position: absolute;
  top: 50%;
  left: 40%;
  margin-left: 10%;
  transform: translate3d(-50%, -50%, 0);
}
.loader-wrapper--9 .loader .square {
  width: 20px;
  height: 20px;
  margin: 5px;
  display: inline-block;
  animation: translateSquares 1s infinite;
}
.loader-wrapper--9 .loader .square:nth-child(6n+1) {
  background: #8360c3;
  animation-delay: 0.33s;
}
.loader-wrapper--9 .loader .square:nth-child(6n+2) {
  background: #7274b9;
  animation-delay: 0.66s;
}
.loader-wrapper--9 .loader .square:nth-child(6n+3) {
  background: #6087af;
  animation-delay: 0.99s;
}
.loader-wrapper--9 .loader .square:nth-child(6n+4) {
  background: #4e9aa4;
  animation-delay: 1.32s;
}
.loader-wrapper--9 .loader .square:nth-child(6n+5) {
  background: #40ac9c;
  animation-delay: 1.65s;
}
.loader-wrapper--9 .loader .square:nth-child(6n+6) {
  background: #2ebf91;
  animation-delay: 1.98s;
}

@keyframes translateSquares {
  0% {
    transform: translate(0px, 0px);
  }
  25% {
    opacity: 0.3;
    transform: translate(0px, 5px);
  }
  75% {
    transform: translate(0, 0px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
.navbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
}
.navbar .nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.navbar .nav-links li {
  margin: 0 10px;
}
.navbar .nav-links li a {
  text-decoration: none;
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
}
.navbar .nav-links li a:hover {
  color: #43B01F;
  transition: 0.3s ease-in-out;
}

.navbar-brand {
  font-family: Roboto;
  font-size: 1rem;
}

/* Partners page */
.partners-map {
  display: flex;
  justify-content: space-between;
  height: 70vh !important;
  margin: 0 2vw;
}

.partners-main {
  padding-top: 5vh;
}

/* Services page */
.icons-service {
  display: flex;
  width: 45px;
  height: 45px;
  background-color: lightblue;
  padding: 1%;
  border-radius: 20%;
}

.world-map-vue {
  height: 100%;
  position: relative;
}
.world-map-vue .map-overlay {
  position: absolute;
  top: unset;
  bottom: 2%;
  left: 0;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
}
.world-map-vue .map-overlay .map-overlay-content {
  padding: 1rem;
  display: block;
  min-width: 30%;
  max-width: 80%;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 0.6rem;
  box-shadow: 0 0 1px rgba(0, 5, 10, 0.25), 0 0.2rem 1rem rgba(0, 5, 10, 0.15);
}
.world-map-vue .map-overlay.map-overlay-top {
  top: 2%;
  bottom: unset;
}

#map-svg {
  height: 100%;
}

#color_bar {
  width: 100%;
  height: 5%;
  margin: auto;
}
#color_bar::before {
  position: relative;
  top: 100%;
  left: 5%;
  content: "Low";
}
#color_bar::after {
  position: relative;
  top: 100%;
  left: 85%;
  content: "High";
}

.partnerservice-card {
  min-width: 75vw;
}

@media screen and (min-width: 576px) {
  .services-mezo {
    background-image: url("../img/IMG_1460.jpg");
    height: 60vh;
    width: 100vw;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .services-mobile {
    background-image: url("../img/mobilerepairstock.webp");
    height: 60vh;
    width: 100vw;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .services-controlcentre {
    background-image: url("../img/stockcc.png");
    height: 60vh;
    width: 100vw;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
@media screen and (max-width: 576px) {
  .services-mezo {
    background-image: url("../img/IMG_1460.jpg");
    height: 40vh;
    width: 100vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .services-mobile {
    background-image: url("../img/mobilerepairstock.webp");
    height: 40vh;
    width: 100vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .services-controlcentre {
    background-image: url("../img/stockcc.png");
    height: 40vh;
    width: 100vw;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
}
#main-welcome {
  background-image: url("../img/IMG_1460-blur.jpg");
  height: 100vh;
  width: 100vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}

#parts-index {
  height: 100vh;
}

.form-signin {
  margin: 15vh 0;
}

#main-seeder {
  height: 40vh;
  background-color: black;
  position: relative;
  overflow: hidden;
}

.seeder-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  transform: translateY(var(--off, 0));
  will-change: transform;
}

.main-seeder-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  color: white;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 10;
}

.product-index-card {
  position: relative;
  border: 1px solid grey;
  border-radius: 1rem;
  padding: 1rem 1rem 5rem;
  background: grey;
  overflow: hidden;
  min-height: 220px;
}

.product-card-text {
  position: relative;
  z-index: 2;
}

.product-card-img {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: clamp(120px, 50%, 180px);
  height: auto;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

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

.highlight-box {
  border-left: 5px solid;
  padding: 20px;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.altipus-card .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.section-title {
  border-left: 8px solid;
  padding-left: 15px;
}

#hero-list-nav .list-group-item-action {
  border: none;
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
  padding: 0.75rem 1rem;
}

#hero-list-nav .list-group-item-action:last-child {
  border-bottom: none;
}

#hero-list-nav .list-group-item-action img {
  height: 50px;
  width: 70px;
  object-fit: cover;
}

#hero-list-nav .list-group-item-action h6 {
  font-weight: 600;
  color: #212529;
  margin-bottom: 0;
}

#hero-list-nav .list-group-item-action.active {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}

#hero-list-nav .list-group-item-action.active h6,
#hero-list-nav .list-group-item-action.active small {
  color: #fff;
}

.hero-carousel-images {
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: 4/3;
}

.hero-carousel-images .carousel-item {
  height: 100%;
}

.hero-carousel-images .carousel-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  filter: brightness(0.7);
}

.hero-carousel-images .carousel-caption {
  bottom: 10%;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 1rem;
  border-radius: 0.5rem;
}

.hero-carousel-images .carousel-caption h5 {
  font-weight: 700;
  font-size: 1.5rem;
}

/*# sourceMappingURL=tass.css.map */
