/* Font Family ***********************************************************************/
@font-face {
  font-family: "impact";
  src: url("../fonts/impact/impact.ttf");
  font-display: swap;
}
@font-face {
  font-family: "PoltawskiNowy-Medium";
  src: url("../fonts/Poltawski_Nowy/PoltawskiNowy-Medium.ttf");
  font-display: swap;
}
@font-face {
  font-family: "PoltawskiNowy-SemiBold";
  src: url("../fonts/Poltawski_Nowy/PoltawskiNowy-SemiBold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Poppins-Bold";
  src: url("../fonts/Poppins/Poppins-Bold.ttf");
  font-display: swap;
}
@font-face {
  font-family: "Inter-SemiBold";
  src: url("../fonts/Inter/Inter-SemiBold.ttf");
  font-display: swap;
}

:root {
  --white: #ffffff;
  --sky-blue: #229ed9;
  --golden: #ffbf55;
}

body, html {
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.hero {
  position: relative;
  height: 100vh;
  background: url("../images/banner-bg.png") no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
.heading1 {
  font-size: 48px;
  color: var(--white);
  margin-top: -70px;
  margin-bottom: 0;
  font-family: "impact";
}
h4 {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 10px;
}
ul {
  list-style: none;
}
.points {
  color: var(--white);
  margin-top: 0;
}
.points ul {
  list-style-type: none;
  padding: 0;
}
.points ul li {
  font-size: 24px;
  margin-bottom: 20px;
  font-family: "PoltawskiNowy-Medium";
}
.points ul li.poppins {
  font-family: "Poppins-Bold";
}
.points ul li.inter {
  font-family: "Inter-SemiBold";
}
.button {
  margin-top: 10px;
}
.button {
  font-size: 20px;
  letter-spacing: 1.3px;
  color: var(--white);
  padding: 10px 20px;
  font-family: "PoltawskiNowy-SemiBold";
  text-transform: uppercase;
  background-color: var(--sky-blue);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  outline: none;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  text-decoration: none;
}
.wrap.tp a {
  animation: zoom 2s ease-in-out infinite;
}

@keyframes zoom {
  0% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.1, 1.1);
  }

  100% {
    transform: scale(1, 1);
  }
}

.up {
  margin-top: 20px;
}
.tp {
  margin-top: 15px;
}
.marginbt {
  margin-bottom: 15px;
  font-family: "PoltawskiNowy-Medium";
}
.marginbt img {
  vertical-align: bottom;
  margin-bottom: -6px;
}
.free-join span.gold {
  color: var(--golden);
  margin: 0 3px;
  width: 30px;
  display: inline-block;
}
.points ul li img {
  vertical-align: middle;
  width: 28px;
  height: 28px;
}
.heading1 img {
  width: 44px;
  height: 44px;
}

.btm-up {
  margin-top: 30px;
}

.gold {
  animation: blink 1s infinite;
}

@keyframes blink {
  50% {
    color: red;
  }
}

/*Mobile Responsive ************************************************/
@media (max-width: 991px) {
  .heading1 {
    font-size: 40px;
  }
  .points ul li {
    font-size: 20px;
  }
  .button {
    font-size: 18px;
  }
  .heading1 img {
    width: 34px;
    height: 34px;
  }
  .points ul li img {
    width: 22px;
    height: 22px;
  }
}

@media (max-width: 575px) {
  .heading1 {
    font-size: 30px;
  }
  .points ul li {
    font-size: 18px;
  }
  .button {
    font-size: 16px;
    padding: 8px 14px;
  }
}

@media (max-width: 479px) {
  .heading1 {
    font-size: 22px;
  }
  .heading1 img {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 375px) {
  .up {
    margin-top: 10px;
  }
  .tp {
    margin-top: 5px;
  }
  .button {
    font-size: 14px;
    padding: 6px 12px;
  }
}

@media (max-width: 320px) {
  .heading1 {
    font-size: 21px;
  }
  .points ul li {
    font-size: 16px;
  }
  .button {
    padding: 6px 4px;
  }
  .button img {
    max-width: 10%;
    width: 100%;
  }
}
