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

body {
  background-color: #edf0f7;
}

@font-face {
  font-family: "MotionControl-BoldItalic";
  src: url("../fonts/MotionControl-BoldItalic.otf");
}

@font-face {
  font-family: "Gilroy-Black";
  src: url("../fonts/Gilroy-Black.ttf");
}

@font-face {
  font-family: "Gilroy-Bold";
  src: url("../fonts/Gilroy-Bold.ttf");
}

@font-face {
  font-family: "Gilroy-Light";
  src: url("../fonts/Gilroy-Light.ttf");
}

@font-face {
  font-family: "Gilroy-Medium";
  src: url("../fonts/Gilroy-Medium.ttf");
}

@font-face {
  font-family: "Gilroy-Regular";
  src: url("../fonts/Gilroy-Regular.ttf");
}

@font-face {
  font-family: "Gilroy-SemiBold";
  src: url("../fonts/Gilroy-SemiBold.ttf");
}

@font-face {
  font-family: "Khand-Bold";
  src: url("../fonts/Khand-Bold.ttf");
}

.btn:focus {
  box-shadow: none;
}

.background {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  padding: 50px 0px;
}

/* Header Start */
header {
  padding: 30px 0px;
  position: absolute;
  top: 0px;
  width: 100%;
  z-index: 11;
}

header .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo img {
  width: 160px;
  height: auto;
}

.header-btn .btn {
  background-color: #F2F2F2;
  color: #414141;
  /* font-family: "MotionControl-BoldItalic"; */
  border-radius: 10px;
  padding: 8px 20px;
  font-size: 25px;
  text-transform: capitalize;
  font-weight: 700;
}

/* Header End */

/* Home Start */
.home {
  background-image: url("../images/home-bg.png");
  padding: 150px 0px 50px;
  position: relative;
}

.home-content h1 {
  font-weight: 700;
  font-size: 75px;
  line-height: 70px;
  text-transform: uppercase;
  color: #FF6041;
  /* font-family: "MotionControl-BoldItalic"; */
}

.home-content h4 {
  font-size: 28px;
  color: #333333;
  /* font-family: "MotionControl-BoldItalic"; */
  font-weight: 700;
  text-transform: uppercase;
}

.home-btn {
  margin-top: 50px;
}

.home-btn .btn {
  background-color: #0F0785;
  color: #F3F3F3;
  /* font-family: "MotionControl-BoldItalic"; */
  border-radius: 10px;
  padding: 12px 40px;
  font-size: 30px;
  text-transform: capitalize;
  font-weight: 700;
}

.home-image img {
  width: 100%;
  height: auto;
}

/* Home End */

/* About Start */
/* About End */

/* Step Start */
.step {
  background-image: url("../images/stpe-bg.png");
}

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

.step .title h2 {
  font-size: 60px;
  color: #0F0785;
  font-family: "Gilroy-Bold";
  text-transform: uppercase;
}

.step .title h2 span {
  font-family: "Gilroy-Black";
}

.step .title h2 img {
  width: 50px;
  height: auto;
  cursor: pointer;
}

.step .item ul {
  padding: 0px;
  list-style-type: none;
  margin: 0px;
}

.step .item ul li {
  font-size: 22px;
  color: #3A3A3A;
  position: relative;
  font-family: "Gilroy-SemiBold";
  position: relative;
  padding-left: 40px;
  margin-bottom: 20px;
}

.step .item ul li:last-child {
  margin-bottom: 0px;
}

.step .item ul li::after {
  position: absolute;
  left: 0px;
  top: 12px;
  height: 5px;
  background-color: #FB582E;
  width: 25px;
  content: '';
}

.step .item ul li span {
  font-family: "Gilroy-Bold";
  text-transform: capitalize;
}

.step .item .item-btn {
  margin-top: 100px;
}

.step .item .item-btn img {
  width: 200px;
  height: auto;
}

.item-image img {
  width: 100%;
  height: auto;
}

/* Step End */

/* Game Start */
.game {
  background-image: url("../images/game-bg.png");
}

.game-content h2 {
  font-size: 50px;
  text-transform: uppercase;
  color: #fff;
  font-family: "Gilroy-Medium";
}

.game-content h2 span {
  font-family: "Gilroy-Bold";
}

.game-content h4 {
  font-size: 30px;
  color: #FFFF11;
  font-family: "Gilroy-Medium";
  text-transform: uppercase;
  margin: 30px 0px 50px;
  position: relative;
}

.game-content h4::after {
  position: absolute;
  left: 0px;
  bottom: -10px;
  height: 1px;
  background-color: #fff;
  width: 200px;
  content: '';
}

.game-btn img {
  width: 300px;
  height: auto;
}

.game-image img {
  width: 100%;
  height: auto;
}

/* Game End */

/* Features Start */
.features {
  background-color: #edf0f7;
  padding: 50px 0px;
}

.features h2 {
  text-align: center;
  font-size: 50px;
  color: #0F0785;
  font-family: "Gilroy-Bold";
  text-transform: uppercase;
  position: relative;
  margin-bottom: 50px;
}

.features h2::after {
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  height: 3px;
  background-color: #FF7351;
  width: 200px;
  content: '';
}

.features .item {
  padding: 20px 40px;
  border: 1px solid #211A8A;
  border-radius: 10px;
  text-align: center;
  height: 100%;
}

.features .item .image img {
  width: auto;
  height: 150px;
}

.features .item .content h4 {
  font-size: 22px;
  color: #211A8A;
  text-transform: uppercase;
  font-family: "Khand-Bold";
  margin: 15px 0px 10px;
}

.features .item .content p {
  font-size: 18px;
  color: #3A3A3A;
  font-family: "Gilroy-Medium";
}

.features-btn {
  text-align: center;
  margin-top: 50px;
}

.features-btn .btn {
  background-color: #0F0785;
  color: #F3F3F3;
  /* font-family: "MotionControl-BoldItalic"; */
  border-radius: 10px;
  padding: 12px 40px;
  font-size: 30px;
  text-transform: capitalize;
  font-weight: 700;
}

/* Features End */

/* Footer Start */
footer {
  background-image: url("../images/footer-bg.png");
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  padding: 60px 0px 50px;
}

.top {
  display: grid;
  grid-gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

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

.top .logo img {
  width: 250px;
  height: auto;
}

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

.footer-btn .btn {
  background-color: #F2F2F2;
  color: #414141;
  /* font-family: "MotionControl-BoldItalic"; */
  border-radius: 10px;
  padding: 12px 40px;
  font-size: 30px;
  text-transform: capitalize;
  font-weight: 700;
}

.top .services {
  text-align: end;
}

.top .services img {
  width: 100px;
  height: auto;
  margin-bottom: 10px;
}

.top .services p {
  font-size: 20px;
  color: #fff;
  font-family: "Gilroy-SemiBold";
}

.bottom ul,
.social ul {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.social ul li img {
  width: 35px;
  height: auto;
}

.bottom ul {
  justify-content: space-between;
  margin-top: 50px;
  position: relative;
}

.bottom ul li {
  font-size: 22px;
  color: #fff;
  font-family: "Gilroy-Medium";
}

.bottom ul li span {
  position: relative;
}

.bottom ul::after {
  position: absolute;
  height: 2px;
  background-color: #fff;
  content: '';
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  width: 650px;
}

/* Footer End */

/* Responsive Start */
@media (max-width:1200px) {
  .home-content h1 {
    font-size: 50px;
    line-height: 50px;
  }

  .home-content h4 {
    font-size: 25px;
  }

  .footer-btn .btn {
    padding: 12px 20px;
    font-size: 30px;
  }
}

@media (max-width:1199px) {
  .features .item {
    height: inherit;
    margin-bottom: 25px;
  }

  .top {
    grid-template-columns: repeat(2, 1fr);
  }

  .bottom ul::after {
    display: none;
  }

  .bottom ul {
    margin-top: 20px;
  }
}

@media (max-width:767px) {
  .top .logo img {
    width: 200px;
  }

  .footer-btn .btn {
    font-size: 22px;
  }
}

@media (max-width:576px) {
  header .logo img {
    width: 130px;
  }

  .header-btn .btn {
    padding: 8px 20px;
    font-size: 20px;
  }

  .home-content h1 {
    font-size: 40px;
    line-height: 40px;
  }

  .home-content h4 {
    font-size: 22px;
  }

  .features-btn .btn,
  .home-btn .btn {
    padding: 12px 20px;
    font-size: 22px;
  }

  .step .title h2 {
    font-size: 40px;
  }

  .step .title h2 img {
    width: 30px;
  }

  .step .item .item-btn {
    margin-top: 40px;
  }

  .game-content h2 {
    font-size: 32px;
  }

  .game-content h4 {
    font-size: 24px;
    margin: 20px 0px 35px;
  }

  .game-btn img {
    width: 250px;
  }

  .features h2 {
    font-size: 35px;
    margin-bottom: 40px;
  }

  .features-btn {
    margin-top: 0px;
  }

  .top {
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
  }

  .top .services {
    text-align: center;
    margin: 20px 0px;
  }

  .bottom ul {
    flex-direction: column;
    gap: 5px;
  }

  footer {
    background-size: cover;
  }
}

/* Responsive End */