@import url("https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

nav {
  height: 80px;
  padding: 20px 8%;
  background-color: #ffffff8b;
  box-shadow: 0 25px 45px rgb(79 86 101 / 8%);
  position: fixed;
  right: 0;
  left: 0;
  z-index: 1030;
  top: 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
}

.navbar ul {
  list-style-type: none;
}

.logo {
  font-size: 25px;
}

.logo a {
  text-decoration: none;
  font-weight: 900;
}

.nav__items li {
  font-weight: 600;
  display: inline-block;
}

.nav__items li a {
  text-decoration: none;
  margin-right: 15px;
  color: #242f51;
  transition: 0.7s;
  padding: 5px 0;
}

.nav__items li a:hover {
  color: #fcae61;
  border-bottom: 3px solid #2500f9;
}

.nav__items ul button {
  margin-left: 30px;
}

.logo__title {
  color: #fcae61;
}

nav input {
  display: none;
}

nav label {
  font-size: 25px;
  color: #242f51;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
}

.brand__button {
  padding: 10px 40px;
  border-radius: 20px;
  color: #f5f7fa;
  background-color: #2500f9;
  border: 3px solid #2500f9;
  cursor: pointer;
  font-weight: 800;
  transition: 1.5s;
  text-transform: uppercase;
  outline: 0;
}

.brand__button:hover {
  border: 3px solid #2500f9;
  background-color: #f5f7fa;
  color: #2500f9;
  transform: translateY(-5px);
}

/* banner css */

#banner__container {
  padding: 50px 8%;
  background-image: url("../images/illustrations/banner-bg.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ranking__area {
  display: flex;
  align-items: center;
  width: 270px;
  background-color: #e2eaed;
  border-radius: 20px;
}

.ranking__area h6 {
  font-size: 13px;
  margin-left: 15px;
  font-weight: 900;
  color: #242f51;
}

.banner__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner__content h1 {
  font-size: 60px;
  font-weight: 700;
  color: #242f51;
  margin-bottom: 10px;
}

.banner__content p {
  font-size: 19px;
  color: #737579;
  word-spacing: 5px;
  width: 80%;
}

.banner__buttons {
  padding-top: 20px;
}

.banner__image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.banner__image img {
  width: 80%;
  animation: float 3s linear infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateX(0px);
  }

  50% {
    transform: translateX(-60px);
  }
}

.demo__button {
  margin-left: 30px;
  padding: 10px 40px;
  border-radius: 20px;
  border: 3px solid #2500f9;
  background-color: #f5f7fa;
  color: #2500f9;
  cursor: pointer;
  font-weight: 800;
  transition: 1.5s;
  text-transform: uppercase;
  outline: 0;
}

.demo__button:hover {
  transform: translateY(-5px);
  color: #f5f7fa;
  background-color: #2500f9;
  border: 3px solid #2500f9;
}

/* companies css */

main {
  background-color: #dfe8ec;
}

.companies__container {
  padding: 70px 8%;
}

.companies__container h6 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.companies__area {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.companies__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* app features css */

.app__features__container {
  padding: 70px 8%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.app__features__image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.app__features__image img {
  width: 100%;
}

.app__features__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app__features__content h1 {
  color: #242f51;
  font-size: 40px;
  line-height: 43px;
  margin-bottom: 25px;
}

.app__features__content p {
  font-size: 19px;
  color: #737579;
  width: 75%;
  text-align: justify;
}

.about__features {
  margin: 30px 0px;
}

.single__feature {
  display: flex;
  margin: 30px 0px;
  background-color: #f5f7fa;
  padding: 20px;
  border-radius: 25px;
  transition: 0.5s;
}

.single__feature:hover {
  cursor: context-menu;
  box-shadow: 2px 2px 20px gray;
}

.single__features__image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.single__features__content {
  margin-left: 30px;
}

.single__feature:nth-child(1) h4 {
  color: #f66a78;
  font-weight: 700;
  font-size: 20px;
}

.single__feature:nth-child(2) h4 {
  color: #4425fa;
  font-weight: 700;
  font-size: 20px;
}

.single__feature:nth-child(3) h4 {
  color: #40975f;
  font-weight: 700;
  font-size: 20px;
}

.single__features__content p {
  color: #737579;
}

/* smart jackpot css */

.smart__jackpot__container {
  padding: 70px 8%;
}

.smart__jackpot__heading {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.smart__jackpot__heading h1 {
  font-size: 50px;
  width: 80%;
  font-weight: 700;
  color: #242f51;
}

.smart__jackpot__heading p {
  font-size: 19px;
  color: #737579;
  word-spacing: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: justify;
}

.smart__jackpot__cards {
  margin-top: 50px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.single__jackpot__card {
  background-color: #f5f7fa;
  padding: 20px;
  border-radius: 25px;
  transition: 0.5s;
}

.single__jackpot__card:hover {
  cursor: context-menu;
  box-shadow: 2px 2px 20px gray;
}

.single__jackpot__card:nth-child(1) h4 {
  color: #f66a78;
  font-weight: 700;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.single__jackpot__card:nth-child(2) h4 {
  color: #4425fa;
  font-weight: 700;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.single__jackpot__card:nth-child(3) h4 {
  color: #40975f;
  font-weight: 700;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.jackpot__content p {
  color: #737579;
  text-align: justify;
}

/* design & build css */

#design__and__build__container {
  padding: 70px 8%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.design__and__build__image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.design__and__build__image img {
  width: 90%;
}

.design__and__build__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.design__and__build__content h1 {
  color: #242f51;
  font-size: 40px;
  line-height: 47px;
  margin-bottom: 25px;
  width: 80%;
}

.design__and__build__content p {
  font-size: 19px;
  color: #737579;
  width: 75%;
  margin-bottom: 25px;
  text-align: justify;
}

/* about us css */

#about__us__container {
  padding: 70px 8%;
}

#about__us__container h1 {
  color: #242f51;
  font-size: 40px;
  line-height: 47px;
  width: 47%;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 20px;
}

.about__header__content {
  font-size: 19px;
  color: #737579;
  width: 60%;
  text-align: center;
  margin: 0 auto;
}

.about__us__cards {
  margin-top: 50px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.single__about__card {
  background-color: #f5f7fa;
  padding: 20px;
  border-radius: 25px;
  transition: 0.5s;
}

.single__about__card:hover {
  cursor: context-menu;
  box-shadow: 2px 2px 20px gray;
}

.about__icon {
  margin: 0 auto;
  text-align: center;
}

.single__about__card:nth-child(1) h4 {
  text-align: center;
  color: #f66a78;
  font-weight: 700;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.single__about__card:nth-child(2) h4 {
  color: #40975f;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.single__about__card:nth-child(3) h4 {
  color: #f66a78;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.single__about__card:nth-child(4) h4 {
  color: #40975f;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.single__about__card:nth-child(5) h4 {
  color: #f66a78;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.single__about__card:nth-child(6) h4 {
  color: #40975f;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.single__about__card p {
  color: #737579;
  text-align: center;
}

/* ultimate feature css */

#ultimate__feature__container {
  padding: 70px 8%;
}

#ultimate__feature__container h1 {
  color: #242f51;
  font-size: 40px;
  line-height: 47px;
  width: 40%;
  margin-bottom: 20px;
}

.ultimate__feature__header {
  font-size: 19px;
  color: #737579;
  width: 50%;
}

.ultimate__feature__area {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.ultimate__feature__cards {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.single__ultimate__feature {
  background-color: #f5f7fa;
  padding: 20px;
  border-radius: 25px;
  transition: 0.5s;
}

.single__ultimate__feature:hover {
  cursor: context-menu;
  box-shadow: 2px 2px 20px gray;
}

.single__ultimate__feature:nth-child(1) h4 {
  color: #f66a78;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}

.single__ultimate__feature:nth-child(2) h4 {
  color: #40975f;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}

.single__ultimate__feature:nth-child(3) h4 {
  color: #40975f;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}

.single__ultimate__feature:nth-child(4) h4 {
  color: #f66a78;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
}

.ultimate__content p {
  color: #737579;
  text-align: justify;
}

#ultimate__feature__container button {
  margin-top: 30px;
}

.ultimate__feature__image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ultimate__feature__image img {
  width: 100%;
}

/* package css */

#package__container {
  padding: 70px 8%;
}

#package__container h1 {
  color: #242f51;
  font-size: 40px;
  line-height: 47px;
  margin-bottom: 20px;
  text-align: center;
  width: 47%;
  margin: 0 auto;
}

.package__header__content {
  font-size: 19px;
  color: #737579;
  text-align: center;
  width: 60%;
  margin: 20px auto;
}

.package__cards {
  padding: 50px 10%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.single__package__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.single__package {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  transition: 0.7s;
}

.single__package:hover {
  cursor: context-menu;
  box-shadow: 2px 2px 20px gray;
}

.package__price {
  font-size: 40px;
  font-weight: 800;
  color: #242f51;
}

.single__package h3 {
  color: #242f51;
  font-weight: 800;
  margin: 10px 0px;
}

.single__package p {
  color: #737579;
  text-align: center;
}

.single__package button {
  margin-top: 30px;
}

.single__package__header {
  padding: 50px;
  background-color: #f5f7fa;
  text-align: center;
  width: 100%;
}

.package__offer__list {
  padding: 50px;
}

.package__offer__list ul {
  list-style-type: none;
}

.package__offer__list ul li {
  color: #737579;
  line-height: 3;
  font-size: 16px;
}

.right__icon {
  color: green;
  margin-right: 10px;
}

.wrong__icon {
  color: red;
  margin-right: 10px;
}

/* faq area css */

#faq__container {
  padding: 70px 8%;
}

#faq__container h1 {
  width: 60%;
  margin: 0 auto;
  color: #242f51;
  font-size: 40px;
  text-align: center;
}

.faq__header__content {
  width: 70%;
  margin: 0 auto;
  font-size: 19px;
  color: #737579;
  text-align: center;
}

.accordion__container {
  padding: 70px 8%;
}

.accordion__tabs {
  margin-top: 20px;
  background-color: #f5f7fa;
  border-radius: 10px;
}

.accordion__tabs > label {
  padding: 12px 40px 12px 20px;
  color: #242f51;
  font-size: 21px;
  line-height: 24px;
  font-weight: 700;
  position: relative;
  display: block;
  cursor: pointer;
}

.accordion__tabs > label:after {
  content: "\f149";
  font-family: fontawesome;
  position: absolute;
  top: 13px;
  right: 20px;
  transform: rotate(90deg);
  transition: transform 0.8s;
}

.accordion__tabs > .accordion__toggle:checked ~ label:after {
  transform: rotate(0deg);
}

.accordion__tabs .accordion__content {
  max-height: 0;
  overflow: hidden;
  border-top: 4px solid #dfe8ec;
  transition: 0.7s;
}

.accordion__tabs .accordion__toggle {
  display: none;
}

.accordion__tabs > .accordion__toggle:checked ~ .accordion__content {
  max-height: 100vh;
}

.accordion__content p {
  font-size: 19px;
  color: #737579;
  text-align: justify;
  padding: 20px;
  transition: 0.5s;
}

/* download area css */

#download__container {
  padding: 50px 8%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.download__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.download__content h1 {
  color: #242f51;
  font-size: 40px;
}

.download__content p {
  font-size: 19px;
  color: #737579;
  text-align: justify;
  margin: 20px 0px;
}

.download__content img {
  width: 35%;
}

.download__image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.download__image img {
  width: 100%;
}

/* testimonial css */

#testimonial__container {
  padding: 70px 8%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonial__image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.testimonial__image img {
  width: 100%;
}

.testimonial__content h1 {
  font-size: 40px;
  color: #242f51;
}

.testimonial__content p {
  font-size: 19px;
  color: #737579;
  margin: 20px 0px;
}

.testimonial {
  background-color: #f5f7fa;
  border-radius: 20px;
  padding: 30px;
  transition: 0.7s;
}

.testimonial:hover {
  cursor: context-menu;
  box-shadow: 2px 2px 20px gray;
}

.stars i {
  color: #ffc107;
}

.testimonial h5 {
  color: #242f51;
  margin-top: 10px;
  font-size: 21px;
}

.client__area {
  display: flex;
  justify-content: space-between;
}

.client {
  display: flex;
}

.client__image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.client__image img {
  width: 80%;
}

.client__name {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.client__name h6 {
  color: #242f51;
  font-size: 15px;
}

.testimonial__arrow {
  display: flex;
  align-items: center;
}

.testimonial__arrow i {
  font-size: 30px;
  color: #e6edf0;
}

.testimonial__arrow i:nth-child(1) {
  margin-right: 10px;
}

/* footer css */

footer {
  background-color: #242f51;
  padding: 100px 8%;
}

footer h3 {
  font-size: 25px;
  font-weight: 900;
  text-align: center;
  color: #d2d6de;
}

.footer {
  list-style-type: none;
  text-align: center;
  margin: 20px 0px;
}

.footer li {
  font-weight: 600;
  display: inline-block;
}

.footer li a {
  text-decoration: none;
  margin-right: 15px;
  color: #d2d6de;
  transition: 0.7s;
  padding: 5px 0;
}

.footer li a:hover {
  color: #fcae61;
}

footer p {
  margin-top: 20px;
  text-align: center;
  color: #d2d6de;
}

footer p a {
  color: #fcae61;
  text-decoration: none;
}

.social__link {
  text-align: center;
}

.social__link a:nth-child(1) {
  color: #eceafa;
  font-size: 25px;
  transition: 1.5s;
  margin-right: 15px;
}

.social__link a:nth-child(1):hover {
  color: #007bff;
  cursor: pointer;
}

.social__link a:nth-child(2) {
  color: #eceafa;
  font-size: 25px;
  transition: 1.5s;
  margin-right: 15px;
}

.social__link a:nth-child(2):hover {
  color: #17a2b8;
  cursor: pointer;
}

.social__link a:nth-child(3) {
  color: #eceafa;
  font-size: 25px;
  transition: 1.5s;
  margin-right: 15px;
}

.social__link a:nth-child(3):hover {
  color: #343a40;
  cursor: pointer;
}

.social__link a:nth-child(4) {
  color: #eceafa;
  font-size: 25px;
  transition: 1.5s;
  margin-right: 15px;
}

.social__link a:nth-child(4):hover {
  color: #ffc107;
  cursor: pointer;
}

.social__link a:nth-child(5) {
  color: #eceafa;
  font-size: 25px;
  transition: 1.5s;
  margin-right: 15px;
}

.social__link a:nth-child(5):hover {
  color: #dc3545;
  cursor: pointer;
}

.social__link a:nth-child(6) {
  color: #eceafa;
  font-size: 25px;
  transition: 1.5s;
  margin-right: 15px;
}

.social__link a:nth-child(6):hover {
  color: #6c757d;
  cursor: pointer;
}
