@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

:root {
  --bg-dark: black;
  --bg-blue: blue;
  --bg-red: red;
  --text-color: #111111;
}


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Google Sans", sans-serif;
  font-weight: 400;
  color: var(--text-color);
  transition: 0.3s ease;
}

p {
  line-height: 22px;
}

p,
a,
li,
ul,
section,
div {
  font-size: 15px;
}


a {
  text-decoration: none;
  display: inline-block;
}

i {
  font-size: 16px;
}

h1 {
  font-size: 2.5rem;
  font-weight: 500;
}

h2 {
  font-size: 2rem;
  font-weight: 500;
}

h3 {
  font-size: 1.5rem;
  font-weight: 500;
}

h4 {
  font-size: 1rem;
  font-weight: 500;
}


h1>span {
   background: #000000;
  background: linear-gradient(90deg, #ff0000 0%, #9e1000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

h2>span {
   background: #000000;
  background: linear-gradient(90deg, #ff0000 0%, #9e1000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

h3>span {
  background: #000000;
  background: linear-gradient(90deg, #ff0000 0%, #9e1000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

h4>span {
  background: #000000;
  background: linear-gradient(90deg, #ff0000 0%, #9e1000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}

p>span {
  color: var(--bg-red);
  font-weight: 500;
}
img {
  width: 100%;
}



/* *************** swiper css ***************  */
.swiper-button-prev {
  color: var(--bg-red);
}

.swiper-button-next {
  color: var(--bg-red);
}

.swiper-pagination-bullet-active {
  background-color: var(--bg-red) !important;
}

