@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

h1 {
  font-weight: 600;
}

.special-margin {
  margin-top: -2rem;
}

.video {
  width: 100%;
  height: 100vh;
  position: fixed;
  background-color: rgba(17, 17, 17, 0.5);
  top: 0;
  left: 0;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  z-index: 10029292;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.video__close {
  position: absolute;
  top: 5%;
  right: 2.5%;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
}

.video__content {
  width: 60%;
  height: auto;
  border-radius: 2rem;
}

.pointer__true {
  pointer-events: all;
}

.slide__in {
  left: 0% !important;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.opacity__full {
  opacity: 1 !important;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

body {
  font-family: "Poppins", sans-serif;
  width: 100%;
  min-height: 100vh;
  background: #e7e7e7;
  background: radial-gradient(circle, #e7e7e7 0%, #fcfdff 100%);
}

.full__navbar {
  height: 5rem;
  width: 100%;
  padding: 0 2rem;
  border-bottom: 2px solid rgba(12, 12, 12, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}

.full__navbar__logo img {
  height: 3rem;
  width: auto;
}

.full__navbar__menu {
  height: 2.5rem;
  width: 3rem;
  cursor: pointer;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.full__navbar__menu .line {
  height: 4px;
  border-radius: 2px;
  background-color: #111;
}

.full__navbar__menu .line:not(:last-child) {
  margin-bottom: 0.5rem;
}

.big__nav {
  background-color: #fff;
  height: 100vh;
  width: 100%;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  position: fixed;
  top: 0;
  left: -100%;
  padding: 2rem;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.big__nav__link {
  opacity: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.big__nav__link a {
  text-decoration: none;
  color: #111;
  font-size: 2rem;
}

.big__nav__link__button {
  padding: 0.7rem 2rem;
  border-radius: 10px;
  background-color: #6735f3;
  color: #fff !important;
  font-size: 1.6rem !important;
}

.big__nav__cross {
  height: 2.5rem;
  width: 2.5rem;
  position: absolute;
  top: 3rem;
  right: 3rem;
  opacity: 0;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

.big__nav__cross .line {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background-color: #111;
}

.big__nav__cross .line:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.big__nav__cross .line:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: -4px;
}

.nav {
  height: 5rem;
  width: 100%;
  padding: 0 2rem;
  border-bottom: 2px solid rgba(12, 12, 12, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav .logo img {
  height: 3rem;
  width: auto;
}

.nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

.nav ul li {
  margin: 0 1rem;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.nav ul li:hover a {
  color: #6735f3;
  border-bottom: 5px solid #6735f3;
}

.nav ul li a {
  text-decoration: none;
  font-weight: 500;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
  color: #111;
}

.nav__button {
  padding: 0.6rem 1rem;
  border-radius: 0.3rem;
  background-color: #6735f3;
  font-weight: 500;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.nav__button:hover {
  -webkit-box-shadow: 0 10px 20px 0px rgba(12, 12, 12, 0.2);
          box-shadow: 0 10px 20px 0px rgba(12, 12, 12, 0.2);
  -webkit-transform: translateY(-2px) scale(1.01);
          transform: translateY(-2px) scale(1.01);
}

.nav__button a {
  text-decoration: none;
  color: #fff;
}

.header {
  min-height: calc(100vh - 5rem);
  width: 95%;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.header__left {
  width: 60%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 2rem;
}

.header__left__thin {
  font-size: 1.75rem;
  font-weight: 400;
  opacity: 0.7;
}

.header__left__heading {
  font-size: 3rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 1rem;
}

.header__left__heading .wrapper {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.header__left__heading .wrapper .static__text {
  font-weight: 600;
  color: #111;
}

.header__left__heading .wrapper .dynamic {
  margin-left: 15px;
  height: 90px;
  line-height: 80px;
  overflow: hidden;
}

.header__left__heading .wrapper .dynamic li {
  list-style: none;
  font-weight: 600;
  color: #6735f3;
  position: relative;
  top: 0;
  -webkit-animation: slide 5.1s steps(3) infinite;
          animation: slide 5.1s steps(3) infinite;
  margin-bottom: 1rem;
}

.header__left__heading .wrapper .dynamic li span {
  position: relative;
}

.header__left__heading .wrapper .dynamic li span::after {
  content: "";
  left: 0;
  position: absolute;
  height: 105%;
  width: 100%;
  background-color: #f9fafc;
  border-left: 4px solid #6735f3;
  -webkit-animation: typing 1.7s steps(10) infinite;
          animation: typing 1.7s steps(10) infinite;
}

.header__left__paragraph {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-top: -4rem;
}

.header__left__inputgroup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 2rem;
}

.header__left__inputgroup input {
  border: 2px solid rgba(17, 17, 17, 0.2);
  outline: none;
  height: 2.8rem;
  border-radius: 5px;
  width: 15rem;
  background-color: transparent;
  padding: 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.header__left__inputgroup input:focus, .header__left__inputgroup input:active {
  border: 2px solid rgba(103, 53, 243, 0.5);
}

.header__left__inputgroup input::-webkit-input-placeholder {
  font-weight: 600;
  color: rgba(1, 1, 1, 0.3);
}

.header__left__inputgroup input:-ms-input-placeholder {
  font-weight: 600;
  color: rgba(1, 1, 1, 0.3);
}

.header__left__inputgroup input::-ms-input-placeholder {
  font-weight: 600;
  color: rgba(1, 1, 1, 0.3);
}

.header__left__inputgroup input::placeholder {
  font-weight: 600;
  color: rgba(1, 1, 1, 0.3);
}

.header__left__inputgroup button {
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  border: none;
  background-color: #6735f3;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  margin-left: 2rem;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.header__left__inputgroup button:hover {
  -webkit-box-shadow: 0 10px 20px 0px rgba(12, 12, 12, 0.2);
          box-shadow: 0 10px 20px 0px rgba(12, 12, 12, 0.2);
  -webkit-transform: translateY(-2px) scale(1.01);
          transform: translateY(-2px) scale(1.01);
}

.header__left__inputgroup .signup__button {
  width: 100%;
  display: block;
  padding: 1rem 3rem;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #6735f3;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

.header__left__inputgroup .signup__button:hover {
  -webkit-box-shadow: 0 10px 20px 0px rgba(12, 12, 12, 0.2);
          box-shadow: 0 10px 20px 0px rgba(12, 12, 12, 0.2);
  -webkit-transform: translateY(-2px) scale(1.01);
          transform: translateY(-2px) scale(1.01);
}

.header__right {
  width: 40%;
  height: 100%;
  padding: 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.header__right img {
  height: 100%;
}

.header__right__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  background-color: #6735f3;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 1.3rem;
  -webkit-transition: height 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), width 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: height 1s cubic-bezier(0.175, 0.885, 0.32, 1.275), width 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header__right__play i {
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s;
  transition: -webkit-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s;
  transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s, -webkit-transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.3s;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.header__right__play:hover {
  height: 8rem;
  width: 8rem;
}

.header__right__play:hover i {
  -webkit-transform: rotate(260deg) scale(1.3);
          transform: rotate(260deg) scale(1.3);
}

.content {
  min-height: 80vh;
  padding: 1rem 2rem;
  width: 95%;
  margin: 0 auto;
}

.content__heading {
  font-size: 3rem;
  font-weight: 600;
  color: #111;
  text-align: center;
  margin-bottom: 2rem;
}

.content__text {
  font-weight: 500;
  font-size: 1.1rem;
  text-align: center;
}

.content__boxrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 10rem;
  min-height: 10rem;
  position: relative;
}

.content__boxrow__box {
  width: 10rem;
  height: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 2rem;
  margin-right: 2rem;
  border-radius: 10px;
}

.content__boxrow__box .icon {
  height: 7rem;
  width: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 10px 30px -5px rgba(68, 68, 68, 0.17);
          box-shadow: 0px 10px 30px -5px rgba(68, 68, 68, 0.17);
  border-radius: 1rem;
}

.content__boxrow__box .icon i {
  font-size: 3rem;
}

.content__boxrow__box p {
  font-size: 1.2rem;
  font-weight: 500;
}

.content__boxrow__box:nth-child(1) .icon {
  background-color: #bcebe2;
  color: #068b75;
}

.content__boxrow__box:nth-child(1) .icon i {
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}

.content__boxrow__box:nth-child(1) p {
  color: #068b75;
}

.content__boxrow__box:nth-child(2) .icon {
  background-color: #ece48b;
  color: #998d05;
}

.content__boxrow__box:nth-child(2) .icon i {
  -webkit-transform: rotate(-2deg);
          transform: rotate(-2deg);
}

.content__boxrow__box:nth-child(2) p {
  color: #998d05;
}

.content__boxrow__box:nth-child(3) .icon {
  background-color: #eaa8ec;
  color: #990b9e;
}

.content__boxrow__box:nth-child(3) .icon i {
  -webkit-transform: rotate(2deg);
          transform: rotate(2deg);
}

.content__boxrow__box:nth-child(3) p {
  color: #990b9e;
}

.content__boxrow__box:nth-child(4) .icon {
  background-color: #a8ecb3;
  color: #035e12;
}

.content__boxrow__box:nth-child(4) .icon i {
  -webkit-transform: rotate(-5deg);
          transform: rotate(-5deg);
}

.content__boxrow__box:nth-child(4) p {
  color: #035e12;
}

.content__boxrow__box:nth-child(5) .icon {
  background-color: #ecc9a8;
  color: #914c0c;
}

.content__boxrow__box:nth-child(5) .icon i {
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}

.content__boxrow__box:nth-child(5) p {
  color: #914c0c;
}

.free {
  width: 95%;
  min-height: 40vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.5rem;
  font-weight: 600;
  border-radius: 2rem;
  background: url(../assets/abstract4.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 3rem auto;
  color: #fff;
}

.works {
  width: 100%;
  margin: 0 auto;
  padding: 4rem 0;
  padding-bottom: 0;
  -webkit-clip-path: polygon(0% 10%, 100% 0%, 100% 90%, 0% 100%, 0% 0%);
          clip-path: polygon(0% 10%, 100% 0%, 100% 90%, 0% 100%, 0% 0%);
  min-height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
}

.works .works__video video {
  height: 12rem;
  width: auto;
}

.works__heading {
  font-size: 3rem;
  font-weight: 600;
  text-align: center;
}

.works__content {
  min-height: 70vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.works__content__work {
  width: 15rem;
  height: 17rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
}

.works__content__work div {
  text-align: center;
}

.works__content .arrow-right {
  font-size: 2rem;
  padding: 1rem;
}

.extra {
  min-height: 100vh;
  padding: 3rem 0;
  padding-top: 0;
  width: 95%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.extra__heading {
  font-size: 3rem;
  text-align: center;
  font-weight: 600;
  margin: 1rem 0;
}

.extra__paragraph {
  font-size: 1.1rem;
  width: 84%;
  margin: 0 auto;
  text-align: center;
}

.extra__content {
  width: 84%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 4rem;
}

.extra__content__card {
  width: 40%;
  height: 90vh;
  background-color: #fff;
  border-radius: 1rem;
  margin: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.extra__content__card .heading {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  padding: 2rem 2rem 0 2rem;
}

.extra__content__card .image {
  width: 70%;
  height: 60%;
  margin-top: auto;
  background-color: #068b75;
  border-radius: 0.5rem 0.5rem 0rem 0rem;
  position: relative;
}

.extra__content__card p {
  text-align: center;
  opacity: 0.7;
  padding: 0 2rem;
}

.extra__content__card:nth-child(1) {
  margin-top: 8rem;
  -webkit-box-shadow: 7px 7px 30px -8px rgba(17, 17, 17, 0.18);
          box-shadow: 7px 7px 30px -8px rgba(17, 17, 17, 0.18);
}

.extra__content__card:nth-child(1) .image {
  background: url(../assets/High-impactconversationalforms.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.extra__content__card:nth-child(2) .image {
  background: url(../assets/AnswerAnalytics.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.extra__content__card:nth-child(3) .image {
  background: url(../assets/Becomeamulti-tasker.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.extra__content__card:nth-child(4) {
  margin-top: -6rem;
  -webkit-box-shadow: 7px 7px 30px -8px rgba(17, 17, 17, 0.18);
          box-shadow: 7px 7px 30px -8px rgba(17, 17, 17, 0.18);
}

.extra__content__card:nth-child(4) .image {
  background: url(../assets/Organizeddata.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.pricing {
  width: 95%;
  min-height: 40vh;
  background: url(../assets/abstract3.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 3rem auto;
  text-align: center;
  color: #fff;
  border-radius: 2rem;
}

.pricing h1 {
  font-size: 3.5rem;
}

.contact {
  width: 95%;
  margin: 0 auto;
  min-height: 60vh;
  padding: 3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.contact__left {
  height: 100%;
  width: 50%;
}

.contact__left__heading {
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 2rem;
}

.contact__left p {
  margin: 1rem 0;
}

.contact__left p a {
  color: #111;
}

.contact__right {
  padding: 2rem 6rem;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}

.contact__right input,
.contact__right textarea {
  width: 100%;
  margin-bottom: 1rem;
  border-radius: 5px;
  border: 2px solid rgba(17, 17, 17, 0.2);
  background-color: transparent;
  padding: 0 0.5rem;
  outline: none;
  font-size: 1rem;
}

.contact__right input:focus, .contact__right input:active,
.contact__right textarea:focus,
.contact__right textarea:active {
  border: 2px solid rgba(103, 53, 243, 0.5);
}

.contact__right input::-webkit-input-placeholder,
.contact__right textarea::-webkit-input-placeholder {
  font-weight: 600;
  color: rgba(1, 1, 1, 0.3);
}

.contact__right input:-ms-input-placeholder,
.contact__right textarea:-ms-input-placeholder {
  font-weight: 600;
  color: rgba(1, 1, 1, 0.3);
}

.contact__right input::-ms-input-placeholder,
.contact__right textarea::-ms-input-placeholder {
  font-weight: 600;
  color: rgba(1, 1, 1, 0.3);
}

.contact__right input::placeholder,
.contact__right textarea::placeholder {
  font-weight: 600;
  color: rgba(1, 1, 1, 0.3);
}

.contact__right input {
  height: 2.7rem;
}

.contact__right textarea {
  padding: 0.5rem;
}

.contact__right button {
  height: 2.7rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background-color: #6735f3;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}

.contact__right button:hover {
  -webkit-box-shadow: 0 10px 20px 0px rgba(12, 12, 12, 0.2);
          box-shadow: 0 10px 20px 0px rgba(12, 12, 12, 0.2);
  -webkit-transform: translateY(-2px) scale(1.01);
          transform: translateY(-2px) scale(1.01);
}

@media only screen and (max-width: 800px) {
  .full__navbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav {
    display: none;
  }
  html {
    font-size: 14px;
  }
  .video__close {
    right: 10%;
  }
  .video__content {
    width: 95%;
    border-radius: 0.5rem;
  }
  .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 97.5%;
  }
  .header__left {
    width: 100%;
    height: 60%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__left__heading {
    font-size: 2.5rem;
    margin-top: 2rem;
    text-align: center;
  }
  .header__left__thin {
    font-size: 1rem;
    text-align: center;
  }
  .header__right {
    width: 50%;
    height: 40%;
  }
  .content {
    width: 97.5%;
    padding: 1rem 0.5rem;
  }
  .content__heading {
    font-size: 2.5rem;
  }
  .content__text {
    font-size: 0.9rem;
  }
  .content__boxrow {
    margin-top: 4rem;
    height: 60vh;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .content__boxrow__box {
    min-height: 10rem;
    width: 45%;
    margin-bottom: 2rem;
    margin-right: 0rem;
  }
  .free {
    margin: 1rem 0;
    font-size: 2.5rem;
    text-align: center;
  }
  .extra__heading {
    font-size: 2rem;
  }
  .pricing {
    width: 97.5%;
    min-height: 30vh;
  }
  .pricing h1 {
    font-size: 2.5rem;
  }
  .contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact__left {
    height: 20%;
    width: 100%;
  }
  .contact__left__heading {
    font-size: 2.5rem;
    text-align: center;
  }
  .contact__left p {
    display: none;
  }
  .contact__right {
    width: 100%;
    padding: 1rem;
  }
  .contact__right input,
  .contact__right textarea {
    margin-bottom: 1rem;
  }
}

@media only screen and (max-width: 550px) {
  .nav {
    display: none;
  }
  html {
    font-size: 14px;
  }
  .header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 97.5%;
  }
  .header__left {
    width: 100%;
    height: 60%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__left__heading {
    font-size: 2rem;
    margin-top: 2rem;
    text-align: center;
  }
  .header__left__paragraph {
    display: none;
  }
  .header__right {
    width: 50%;
    height: 40%;
  }
  .content {
    width: 97.5%;
    padding: 1rem 0.5rem;
  }
  .content__heading {
    font-size: 2rem;
  }
  .content__text {
    font-size: 0.8rem;
  }
  .content__boxrow {
    margin-top: 4rem;
    height: 70vh;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .content__boxrow__box {
    min-height: 10rem;
    width: 45%;
    margin-bottom: 0;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 2rem;
  }
  .free {
    margin: 1rem 0;
    font-size: 2rem;
    text-align: center;
  }
  .works {
    -webkit-clip-path: polygon(0% 2%, 100% 0%, 100% 98%, 0% 100%, 0% 0%);
            clip-path: polygon(0% 2%, 100% 0%, 100% 98%, 0% 100%, 0% 0%);
  }
  .works__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .works__content .arrow-right {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .extra__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 97.5%;
  }
  .extra__content__card {
    width: 100%;
    padding: 2rem 0.5rem;
    margin: 1rem 0;
    height: 70vh;
  }
  .extra__content__card:nth-child(1) {
    margin-top: 3rem;
  }
  .extra__content__card:nth-child(4) {
    margin-top: 1rem;
  }
  .pricing {
    width: 97.5%;
    min-height: 30vh;
  }
  .pricing h1 {
    font-size: 2rem;
  }
  .contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .contact__left {
    height: 20%;
    width: 100%;
  }
  .contact__left__heading {
    font-size: 2rem;
    text-align: center;
  }
  .contact__left p {
    display: none;
  }
  .contact__right {
    width: 100%;
    padding: 1rem;
  }
  .contact__right input,
  .contact__right textarea {
    margin-bottom: 1rem;
  }
}

@-webkit-keyframes typing {
  100% {
    left: 100%;
    margin: 0 -35px 0 35px;
  }
}

@keyframes typing {
  100% {
    left: 100%;
    margin: 0 -35px 0 35px;
  }
}

@-webkit-keyframes slide {
  100% {
    top: -290px;
  }
}

@keyframes slide {
  100% {
    top: -290px;
  }
}
/*# sourceMappingURL=style.css.map */