@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;600;700&display=swap');

:root {
  --body-font: 'Plus Jakarta Sans';
  --addition-font: 'Plus Jakarta Sans';
  --white-color: rgb(254, 242, 238);
  --red-color: rgb(228, 58, 54);
  --red-dark-color: rgba(128, 0, 32, 1);
  --card-color: rgb(250, 190, 169);
  --pastel-orange-color: rgb(254, 242, 238);
  --font-color: rgb(117, 95, 87);
}

* {
  padding: 0;
  margin: 0;
  font-family: var(--addition-font);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  color: var(--font-color);
}

h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  font-weight: 700 !important;
  font-size: 40px;
}

h3 span {
  color: var(--red-color);
}

h4 {
  font-size: 32px;
  font-weight: 600;
}

h5 {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 700 !important;
}

p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}

.justify-center {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.text-center {
  text-align: center;
}

.gradient-color {
  background: linear-gradient(270deg, #c5312d 0%, #e43a46 100%);
  transform: rotate(0.09deg);
}

.padding-v {
  padding: 20px 0;
}

.loader-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 90vh;
  background: #e43a46;
}

.loader {
  position: relative;
}

.loader-wheel {
  animation: spin 1s infinite linear;
  border: 2px solid rgba(226, 226, 226, 0.8);
  border-left: 4px solid var(--white-color);
  border-radius: 50%;
  height: 50px;
  margin-bottom: 10px;
  width: 50px;
}

.loader-text {
  color: white;
}

.loader-text::after {
  content: 'Loading';
  animation: load 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes load {
  0% {
    content: 'Loading';
  }
  33% {
    content: 'Loading.';
  }
  67% {
    content: 'Loading..';
  }
  100% {
    content: 'Loading...';
  }
}

@media only screen and (max-width: 992px) {
  h1 {
    font-size: 42px;
    line-height: 1.2;
  }

  h2 {
    font-size: 36px;
  }

  p {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 24px;
  }

  p {
    font-size: 16px !important;
  }
}

@media only screen and (max-width: 320px) {
  h1 {
    font-size: 28px;
  }
}

a.custom_link:visited {
  color: white !important;
}
