/* google fonts  */
@import url("https://fonts.googleapis.com/css2?family=Jost:wght@100;200;300;400;500;600;700&family=Overpass:wght@200;300;400;500;600;700;800&display=swap");

@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Jost", sans-serif;
  width: 100vw;
  overflow-x: hidden;
}

input,
label,
textarea,
button {
  font-family: "Jost", sans-serif;
}

h1,
h2,
h3,
h4,
h5 {
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: var(--text-dark);
}

ul,
li {
  list-style: none;
  color: var(--text-dark);
}


p,
a,
span,
li,
button {
  color: var(--text-medium);
  line-height: 1.5rem;
  font-size: 15px;
}

i {
  font-size: 18px;
  cursor: pointer;
  color: var(--text-dark);
}

img {
  width: 100%;
}
.section-center {
  margin-inline: auto;
  max-width: 1200px;
  padding-inline: 20px;
}

:root {
  /* navbar background color  */
  --nav-bg: #eaecee;

  /* background color dark and light  */
  --bg-light: #f7f9f9;
  --bg-dark: #4a5ef9;
  /* --bg-dark: #3b69ff; */

  /* text colors  */
  --text-light: #f7f9f9;
  --text-medium: #2c3e50;
  --text-dark: #1c2833;

  /* slider heading highlight color  */
  --slider-hightlight: #ffff;

  --loading-grey: #ededed;
}

/* image animation  */
.img-loading {
  background-color: var(--loading-grey);
  background: linear-gradient(
      100deg,
      rgba(255, 255, 255, 0) 40%,
      rgba(255, 255, 255, 0.5) 50%,
      rgba(255, 255, 255, 0) 60%
    )
    var(--loading-grey);
  background-size: 200% 100%;
  background-position-x: 180%;
  animation: 1s loading ease-in-out infinite;
}

@keyframes loading {
  to {
    background-position-x: -20%;
  }
}

.loader{

}