/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --first-color: #182b51;
  --first-color-lighten: hsl(220, 68%, 97%);
  --title-color: hsl(220, 48%, 28%);
  --text-color: hsl(220, 12%, 45%);
  --body-color: hsl(220, 100%, 99%);
  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;
  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}
@media screen and (min-width: 1024px) {
  :root {
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}


/*=============== BASE ===============*/
html {
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  /* background-color: var(--body-color); */
  /* background-color:hsl(0, 0%, 98%); */
  background-color: hsl(0deg 0% 100%);
  color: var(--text-color);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}
.row{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.relative {
  position: relative;
}
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgb(255, 255, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

.loader {
  width: 80px;
  display: flex;
  justify-content: space-evenly;
}

.ball {
  list-style: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.ball:nth-child(1) {
  animation: bounce .8s ease-in-out infinite;
  background-color: #BD1E23;
}

.ball:nth-child(2) {
  animation: bounce .8s ease-in-out 0.3s infinite;
  background-color: #00234B;

}

.ball:nth-child(3) {
  animation: bounce .8s ease-in-out 0.6s infinite;
  background-color: #F9B11F;

}

@keyframes bounce {
  50% {
    transform: translateY(-20px);
  }
}