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

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: 0;
  outline: 0;
}

*::selection {
  background-color: #f83292;
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

/* navbar css star */

nav {
  height: 60px;
  box-shadow: 10px 2px 30px gray;
  background-color: #fff;
  padding: 20px 8%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

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

.logo {
  list-style-type: none;
}

.logo li {
  display: inline-block;
}

.logo li a {
  font-size: 20px;
  font-weight: 600;
  color: #333333;
}

.nav__items {
  list-style-type: none;
}

.nav__items li {
  display: inline-block;
}

.nav__items li a {
  font-size: 17px;
  font-weight: 500;
  color: #333333;
  margin-left: 25px;
  transition: 0.8s;
}

.nav__items li a:hover {
  background-image: linear-gradient(90deg, #814096, #f83292);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.navbar__icon i {
  font-size: 20px;
}

nav label,
nav label i,
nav input {
  display: none;
  cursor: pointer;
}

/* navbar css end */

/* banner area css start */

#banner {
  margin-top: 60px;
  background-image: url("../images/banner-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

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

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

.banner__content h1 {
  width: 60%;
  font-size: 40px;
  font-weight: 800;
  color: #333333;
}

.banner__content p {
  font-size: 18px;
  text-align: justify;
  color: #666;
  margin: 20px 0;
}

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

.banner__image img {
  width: 90%;
  animation: 3s animated linear infinite;
}

@keyframes animated {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-60px);
  }
}

.brand__color {
  background-image: linear-gradient(90deg, #814096, #f83292);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.container {
  width: 83%;
  margin: 0 auto;
  padding: 50px 0px;
}

.brand__button {
  padding: 13px 50px 13px 30px;
  border-radius: 35px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(to right, #814096, #f83292);
  transition: all 0.8s;
  display: inline-block;
  position: relative;
}

.brand__button:hover {
  background-image: linear-gradient(to right, #f83292, #814096);
  letter-spacing: 1.5px;
}

#banner .brand__button::after {
  position: absolute;
  content: "\f019";
  font-family: "Font Awesome 5 Free";
  right: 20px;
  top: 14px;
}

/* banner area css end */

/* app feature section css start  */

.section__heading {
  font-size: 35px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 30px;
  background-image: linear-gradient(90deg, #814096, #fb097e, #814096);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.cards__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.single__card {
  border: 2px solid transparent;
  border-radius: 15px;
  box-shadow: 0 14px 16px rgb(0 0 0 / 20%);
  background-color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: 0.5s;
}

.single__card:hover {
  transform: translateY(-10px);
  border: 2px solid #814096;
}

.card__image {
  height: 150px;
  display: block;
  width: 150px;
  object-fit: contain;
  margin: 0 auto;
}

.card__heading {
  background-image: linear-gradient(90deg, #814096, #f83292);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  text-align: center;
  margin: 20px 0px 10px 0px;
  font-size: 20px;
}

.card__content {
  text-align: justify;
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.single__card button {
  margin: 0 auto;
  display: inline-block;
}

.single__card .brand__button::after {
  position: absolute;
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  right: 20px;
  top: 14px;
}

/* app feature section css end  */

/* about section css start */

#about {
  background-image: url("../images/about-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

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

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

.about__content h3 {
  font-size: 30px;
  font-weight: 800;
  color: rgb(117 112 112);
}

.about__content p {
  font-size: 18px;
  text-align: justify;
  color: #666;
  margin: 20px 0;
}

.about__buttons {
  display: flex;
  justify-content: space-around;
  width: 70%;
}

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

.about__image img {
  width: 90%;
}

#about .brand__button::after {
  position: absolute;
  content: "\f179";
  font-family: "fontawesome";
  right: 20px;
  top: 14px;
}

/* about section css end */

/* subscribe section css start */

#subscribe {
  background-image: url("../images/subscribe-bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#subscribe h2 {
  color: #fff;
}

#subscribe p {
  color: #fff;
  width: 80%;
  text-align: center;
  margin: 0 auto 50px auto;
}

.email__form {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#email {
  margin-top: 30px;
  display: inline-block;
  width: 100%;
  margin: 0 auto;
  border: 2px solid #fff;
  border-radius: 30px;
  padding: 15px 30px;
  background-color: transparent;
  color: #fff;
  letter-spacing: 1.5px;
  font-family: inherit;
}

#email::placeholder {
  color: #fff;
}

.submit__button {
  position: absolute;
  right: 40px;
  padding: 10px 25px;
  background-color: aliceblue;
  color: #f83292;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

/* subscribe section css end */

/* PEOPLE'S REVIEW section css start  */

#review .single__card {
  position: relative;
}

#review .single__card .bg__icon {
  position: absolute;
  right: 17px;
  top: 17px;
  font-size: 65px;
  opacity: 0.3;
  color: #f83292;
}

#review img {
  border-radius: 50%;
}

.starts {
  margin-bottom: 20px;
  text-align: center;
}

.starts .review__icon {
  color: #ffc107;
  text-align: center;
}

/* PEOPLE'S REVIEW section css end  */

/* price section css start */

#pricing .single__card {
  position: relative;
}

#pricing .pricing__icon {
  position: absolute;
  right: 17px;
  top: 17px;
  font-size: 65px;
  opacity: 0.3;
  color: #f83292;
}

.price {
  font-size: 30px;
}

#pricing h3 {
  margin-bottom: 10px;
}

#pricing p {
  text-align: center;
  margin-bottom: 30px;
}

#pricing ul {
  list-style-type: none;
  margin-bottom: 30px;
}

#pricing ul li {
  margin-left: 20px;
  margin-bottom: 30px;
}

.right__icon {
  color: #008000;
}

.wrong__icon {
  color: #ff0000;
}

/* price section css end */

/* contact css start */

.contact {
  margin: 70px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

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

.contact__image img {
  width: 90%;
}

.contact__form {
  width: 70%;
  margin: 0 auto;
  box-shadow: 0 14px 16px rgb(0 0 0 / 20%), 0 -6px 10px rgb(0 0 0 / 20%);
  border-radius: 20px;
}

.contact__form h2 {
  margin-bottom: 0;
  margin-top: 20px;
}

form {
  padding: 30px;
  margin: 0 auto;
}

.input {
  margin: 0 auto;
  margin-top: 10px;
  width: 100%;
  border-bottom: 1px solid #8080809c;
  padding: 20px 10px;
  font-family: inherit;
}

input::-webkit-inner-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* contact css end */

/* footer part css start */

footer {
  background-image: url("../images/footer-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

#footer h3 {
  margin-bottom: 30px;
  color: #fff;
  display: inline-block;
  border-bottom: 2px solid #fff;
}

.about__us > p {
  text-align: justify;
  color: #d8cfcf;
  width: 90%;
}

#footer ul {
  list-style-type: none;
}

#footer ul li {
  margin-bottom: 10px;
}

#footer ul li a {
  color: #d8cfcf;
  transition: 0.7s;
}

#footer ul li a:hover {
  color: #0be010;
}

.phone {
  margin-bottom: 20px;
}

.mail {
  margin-bottom: 20px;
}

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

.flex__area i {
  background-color: #fff;
  color: #814096;
  padding: 10px;
  border-radius: 50%;
}

.flex__area p {
  color: #d8cfcf;
  margin-left: 20px;
}

.copyright {
  padding: 30px 0;
  text-align: center;
  color: #d8cfcf;
}

/* footer part css end */
