@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
}
button,
input,
textarea {
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}
/* Navbar Start */

:root {
  --primary: #99e5fd;
  --secondary: #011e4a;
  --black: #000000;
  --white: #fff;
  --yellow: #ffd678;
  --btn: #0dda93;
}
.main {
  width: 100%;
}
/* ------------ Navbar  ------------*/
.navbar {
  position: fixed;
  width: 100%;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.225);
  z-index: 99;
  padding: 10px 0px;
  background: linear-gradient(
    108.46deg,
    rgba(255, 255, 255, 0.264) 0%,
    rgba(255, 255, 255, 0.066) 100%
  );
  backdrop-filter: blur(10px);
  top: 0;
}
.navbar_wrapper {
  max-width: 1200px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  height: 50px;
}
.navbar_left {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 10px 0px;
  user-select: none;
}
.navbar_logo {
  position: relative;
  width: 120px;
  height: 100%;
}
.navbar_logo > img {
  width: 100%;
  height: 100%;
}
.navbar_right {
  flex: 3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
.navbar_menu > ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: relative;
  gap: 20px;
}
.navbar_menu > ul > li,
.navbar_menu > ul > a > li {
  position: relative;
  padding: 0 12px;
  color: var(--black);
  font-size: 14px;
  cursor: pointer;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
}

.navbar_menu > ul > a > li::after {
  content: "";
  position: absolute;
  width: 90%;
  height: 3px;
  border-radius: 100px;
  background-color: var(--black);
  left: 6px;
  bottom: -27px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s ease-in-out;
}

.active > li::before {
  content: "";
  position: absolute;
  width: 90%;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 10px;
  left: 6px;
  bottom: -21px;
  transform: scaleX(1);
  transform-origin: left;
  transition: 0.5s ease-in-out;
}

.navbar_menu > ul > a > li:hover {
  color: var(--secondary);
}

.navbar_menu > ul > a > li:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.handburger-menu {
  display: none;
}
.handburger-menu-wrapper {
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bar {
  width: 20px;
  height: 2px;
  border-radius: 10px;
  background-color: #292d32;
  transition: 0.5s transform ease;
}

.bar:nth-child(1) {
  width: 25px;
  transform: translateY(-5px);
}

.bar:nth-child(3) {
  width: 25px;
  transform: translateY(5px);
}

/* Active */
.navbar_active .navbar_menu {
  left: 0px !important;
  transition: 0.3s;
}
.navbar_active .handburger-menu .handburger-menu-wrapper .bar {
  width: 25px;
  height: 2px;
  background-color: #fff;
}
.navbar_active .handburger-menu .handburger-menu-wrapper .bar:nth-child(1) {
  transform: translateY(2px) rotate(45deg);
}

.navbar_active .handburger-menu .handburger-menu-wrapper .bar:nth-child(2) {
  scale: 0;
}

.navbar_active .handburger-menu .handburger-menu-wrapper .bar:nth-child(3) {
  transform: translateY(-2px) rotate(-45deg);
}
.navbarActive {
  background-color: black;
}
.navbarSticky {
  position: fixed;
  animation: stickyNavbar 0.5s ease;
  background-color: var(--primary);
  top: 0;
}
@keyframes stickyNavbar {
  0% {
    top: -100px;
  }
  100% {
    top: 0;
  }
}
/* Media Screen */
@media screen and (max-width: 700px) {
  .navbar_menu {
    position: absolute;
    width: 100%;
    min-height: 100vh;
    max-height: 100%;
    background-color: var(--secondary);
    top: 0px;
    left: -1100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
  }
  .navbar_menu::after {
    content: "";
    position: absolute;
    width: 486px;
    height: 166px;
    left: -250px;
    top: 146px;
    background: #d225ac;
    filter: blur(250px);
  }
  .navbar_menu::before {
    content: "";
    position: absolute;
    width: 486px;
    height: 166px;
    right: -250px;
    bottom: 140px;
    background: #0dda93;
    filter: blur(250px);
  }
  .navbar_menu > ul > a > li::after {
    bottom: -10px;
  }
  .navbar_menu > ul {
    flex-direction: column;
    gap: 26px;
  }
  .navbar_menu > ul > a {
    color: var(--white);
    font-size: 1.3rem;
  }
  .navbar_menu > ul > a > li {
    color: var(--white);
    font-size: 1.3rem;
  }
  .navbar_menu > ul > a > li::after {
    background-color: var(--primary);
  }

  .navbar_menu > ul > a > li:hover {
    color: var(--primary);
  }

  .navbar_menu > ul > a > li:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .handburger-menu {
    display: block;
  }
}
/* Hero  */

.hero {
  position: relative;
  width: 100%;
  height: 980px;
  background-color: var(--primary);
  padding-top: 220px;
  overflow: hidden;
}
.hero-wrapper {
  position: relative;
  max-width: 1200px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.elipse_left {
  position: absolute;
  width: 534px;
  height: 534px;
  left: -80px;
  top: 30px;
  background: #1a30ff;
  opacity: 0.5;
  filter: blur(250px);
  animation: ellipse_left 30s ease infinite;
}
@keyframes ellipse_left {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(180%);
  }
  50% {
    transform: translateX(180%) translateY(100%);
  }
  75% {
    transform: translateX(0%) translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.elipse_right {
  position: absolute;
  width: 534px;
  height: 534px;
  right: -250px;
  top: 400px;
  background: #0dda94;
  opacity: 0.5;
  filter: blur(250px);
  animation: ellipse_right 30s ease infinite;
}
@keyframes ellipse_right {
  0% {
    transform: translateX(0%);
  }
  25% {
    transform: translateX(-220%);
  }
  50% {
    transform: translateX(-220%) translateY(-100%);
  }
  75% {
    transform: translateX(0%) translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}

.hero-wrapper > h1 {
  width: 70%;
  font-style: normal;
  font-weight: 800;
  font-size: 2.6rem;
  line-height: 54px;
  margin-bottom: 26px;
  color: var(--black);
  z-index: 2;
}
.hero-wrapper > p {
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 24px;
  width: 60%;
  margin-bottom: 60px;
  color: #0c131c;
  z-index: 2;
}
.hero_content {
  position: relative;
  background: #fafafa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  width: 430px;
  height: 60px;
  padding: 6px 10px 6px 10px;
  z-index: 2;
}
.hero_content .hero_input {
  all: initial;
  width: 100%;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  padding: 0px 16px;
}
.hero_content .hero_input::placeholder {
  color: var(--black);
}
.btn {
  border: none;
  outline: none;
  padding: 13px 22px;
  color: var(--white);
  background: #18181b;
  border-radius: 10px;
  text-transform: capitalize;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 24px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 0.1s ease;
}
.btn:hover {
  background-color: var(--secondary);
}
.fist_image {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  padding: 0px 40px;
  z-index: 1;
}
.fist_image > img {
  width: 85%;
}
/* MacBook */
.macbook {
  position: relative;
  width: 100%;
  background-color: var(--secondary);
  height: 600px;
  overflow-x: clip;
}
.macbook_wrapper {
  position: relative;
  max-width: 1200px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.macbook_image {
  position: absolute;
  width: 80%;
  /* height: 600px; */
  top: -230px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.macbook_image::before {
  content: "";
  position: absolute;
  width: 650px;
  height: 210px;
  background: #d225ac;
  opacity: 0.9;
  bottom: -150px;
  filter: blur(250px);
  z-index: -1;
}
.macbook_image > img {
  width: 100%;
  height: 100%;
}
.macbook_icons {
  position: absolute;
  top: 0;
  left: -70px;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: orange; */
}
.macbook_icon {
  position: absolute;
}
.first {
  transform: translate(-320px, -210px);
}
.secound {
  transform: translate(-340px, 100px);
}
.third {
  transform: translate(150px, 310px);
}
.fourth {
  transform: translate(520px, 120px);
}
.fifth {
  transform: translate(500px, -210px);
}
.sixth {
  transform: translate(100px, -340px);
}
/* explore */
.explore {
  position: relative;
  width: 100%;
  background-color: var(--secondary);
  height: 780px;
  overflow-x: clip;
}
.explore_wrapper {
  position: relative;
  max-width: 1200px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.explore_wrapper > h4 {
  position: relative;
  z-index: 2;
  color: var(--yellow);
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 22px;
  margin-bottom: 21px;
}
.explore_wrapper > h1 {
  font-style: normal;
  position: relative;
  z-index: 2;
  font-weight: 700;
  font-size: 3rem;
  line-height: 54px;
  color: var(--white);
  margin-bottom: 21px;
}
.explore_wrapper > p {
  font-weight: 400;
  position: relative;
  z-index: 2;
  font-size: 0.9rem;
  line-height: 24px;
  color: #e9e9e9;
  width: 60%;
  margin-bottom: 50px;
}
.explore_wrapper > button {
  border: none;
  position: relative;
  z-index: 2;
  outline: none;
  padding: 15px 30px;
  color: var(--black);
  background: var(--btn);
  font-family: "Inter", sans-serif;
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  line-height: 24px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 0.1s ease;
  margin-bottom: 30px;
  cursor: pointer;
}
.explore_image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.explore_image > img {
  width: 100%;
  height: 100%;
}
.explore_Subimage {
  position: absolute;
  top: 170px;
  left: 0;
  z-index: 1;
}
.explore_Subimage > img {
  width: 100%;
  height: 100%;
}
/* Focus  */
.focus {
  position: relative;
  width: 100%;
  background-color: var(--secondary);
  padding-bottom: 250px;
  overflow-x: clip;
}
.focus::after {
  content: "";
  position: absolute;
  width: 486px;
  height: 166px;
  left: 0px;
  top: 106px;
  background: #d225ac;
  filter: blur(250px);
}
.focus::before {
  content: "";
  position: absolute;
  width: 486px;
  height: 166px;
  right: 100px;
  top: 336px;
  background: #0dda93;
  filter: blur(250px);
}
.focus_wrapper {
  max-width: 1200px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.focus_Box {
  position: relative;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
}
.focus_Box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 6px solid #e5e5e5;
  border-radius: 20px;
  opacity: 0.1;
}
.focus_content {
  position: relative;
  border-radius: 10px;
  background-color: #001c42;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 120px;
  opacity: 1;
  padding: 70px 60px;
  z-index: 2;
  overflow: hidden;
}

.focus_Box_left {
  flex: 2;
}
.focus_Box_left > h1 {
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 44px;
  color: #ffffff;
  margin-bottom: 21px;
}
.focus_Box_left > p {
  font-size: 0.9rem;
  line-height: 24px;
  color: #e9e9e9;
}
.focus_Box_right {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.focus_Box_right > img {
  width: 100%;
  height: 100%;
}
.focus_Box_logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.focus_Box_dots {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Analysis  */
.analysis {
  position: relative;
  width: 100%;
  background-color: var(--secondary);
  padding-bottom: 370px;
  overflow-x: clip;
}
.analysis::after {
  content: "";
  position: absolute;
  width: 486px;
  height: 166px;
  left: 55px;
  top: 300px;
  background: #0dda93;
  filter: blur(250px);
}
.analysis::before {
  content: "";
  position: absolute;
  width: 486px;
  height: 166px;
  right: 155px;
  top: 160px;
  background: #d225ac;
  filter: blur(250px);
}
.analysis_wrapper {
  max-width: 1200px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.analysis_Box {
  position: relative;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
  margin-top: 10px;
}
.analysis_Box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 6px solid #e5e5e5;
  border-radius: 20px;
  opacity: 0.1;
}
.analysis_content {
  position: relative;
  border-radius: 10px;
  background-color: #001c42;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 60px;
  opacity: 1;
  padding: 70px 60px 70px 16px;
  z-index: 2;
}

.analysis_Box_left {
  flex: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.analysis_Box_left > img {
  width: 100%;
  height: 100%;
}
.analysis_Box_right {
  flex: 2;
}
.analysis_Box_right > h1 {
  font-weight: 500;
  font-size: 2.2rem;
  line-height: 44px;
  color: #ffffff;
  margin-bottom: 21px;
}
.analysis_Box_right > p {
  font-size: 0.9rem;
  line-height: 24px;
  color: #e9e9e9;
}
.analysis_Box_logo {
  position: absolute;
  left: 0;
  top: 0;
}
.analysis_Box_logo > img {
  width: 100%;
  height: 100%;
}
.analysis_Box_dots {
  position: absolute;
  bottom: 0px;
  right: 0;
  width: 100%;
}
.analysis_Box_dots > img {
  width: 100%;
  height: 100%;
}
/* waiting */
.waiting {
  width: 100%;
  background-color: var(--secondary);
  overflow-x: clip;
  padding-bottom: 150px;
}
.waiting_wrapper {
  position: relative;
  max-width: 1200px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.waiting_wrapper > h1 {
  font-style: normal;
  font-weight: 500;
  font-size: 2.2rem;
  width: 80%;
  line-height: 54px;
  color: var(--white);
  margin-bottom: 50px;
}

.waiting_wrapper > button {
  border: none;
  outline: none;
  padding: 15px 60px;
  color: var(--black);
  background: var(--btn);
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 24px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: 0.1s ease;
  margin-bottom: 80px;
}
.waiting_image {
  margin-top: 30px;
  width: 80%;
  height: 100%;
}
.waiting_image > img {
  width: 100%;
  height: 100%;
}

.faq {
  position: relative;
  width: 100%;
  background-color: var(--secondary);
  overflow-x: clip;
  padding-bottom: 100px;
  user-select: none;
}

.faq::after {
  position: absolute;
  content: "";
  width: 486px;
  height: 166px;
  top: 170px;
  left: -350px;
  background: #d225ac;
  filter: blur(250px);
  z-index: 1;
}

.faq::before {
  position: absolute;
  content: "";
  width: 486px;
  height: 166px;
  right: -350px;
  bottom: -150px;
  background: #0dda93;
  filter: blur(250px);
}

.faq_wrapper {
  position: relative;
  max-width: 1200px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
  z-index: 2;
}
.faq_wrapper_title {
  padding: 20px 0px;
  text-align: center;
  margin-bottom: 60px;
}
.faq_wrapper_title > h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 2rem;
  line-height: 44px;
  color: #ffffff;
}

.faq_wrapper_title > p {
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  color: #e9e9e9;
}

.faq_wrapper_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  width: 100%;
  user-select: none;
}
.faq_wrapper_content_box {
  max-width: 700px;
  padding: 10px;
  border-bottom: 1px solid #123d80;
  user-select: none;
}
.faq_wrapper_content_box_question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.faq_wrapper_content_box_question > h3 {
  font-weight: 500;
  font-size: 1rem;
  line-height: 28px;
  color: #ffffff;
}

.faq_icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  padding: 3px;
  border: 1.5px solid var(--primary);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--primary);
}
.faq_icon::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 2px;
  background-color: var(--primary);
  transition: 0.3s ease;
}
.faq_icon::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background-color: var(--primary);
  transition: 0.3s ease;
}

.faq_wrapper_content_box_answer {
  padding-right: 50px;
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.faq_wrapper_content_box_answer > p {
  font-weight: 300;
  font-size: 0.8rem;
  color: #e9e9e9;
}

/* Faq Active  */

.faq_wrapper_content_box.active .faq_wrapper_content_box_answer {
  max-height: 300px;
  transition: max-height 1.4s ease;
  animation: fade 1s ease-in-out;
}
.faq_wrapper_content_box.active .faq_icon::after {
  scale: 0;
}
.faq_wrapper_content_box.active .faq_icon::before {
  transform: rotate(90deg);
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Us */
.contactUs {
  width: 100%;
  background-color: var(--secondary);
  padding: 60px 0px 120px;
  overflow-x: clip;
}
.contactUs_wrapper {
  position: relative;
  max-width: 1200px;
  padding-left: 30px;
  padding-right: 30px;
  margin-left: auto;
  margin-right: auto;
}
.contactUs_title {
  padding: 20px 0px;
  text-align: center;
}
.contactUs_title > h5 {
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 24px;
  color: #ffd678;
  margin-bottom: 10px;
}
.contactUs_title > h1 {
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 44px;
  color: #ffffff;
  margin-bottom: 16px;
}
.contactUs_title > p {
  font-weight: 300;
  font-size: 14px;
  line-height: 30px;
  color: #e9e9e9;
}
.contactUs_content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contactUs_form {
  width: 600px;
  padding: 20px 0px;
}
.contactUs_content_input {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 21px;
}
.contactUs_content_input > label {
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 20px;
  color: #ffffff;
}

.contactUs_content_input > input {
  background: #123162;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 6px;
  border: none;
  padding: 12px 16px;
  outline: none;
  color: #fff;
  font-size: 0.9rem;
}

.contactUs_content_input > textarea {
  background: #123162;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 6px;
  border: none;
  padding: 12px 16px;
  outline: none;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  min-height: 120px;
  resize: vertical;
}
.contactUs_content_input > input::placeholder,
.contactUs_content_input > textarea::placeholder {
  color: #7f91b4;
  font-size: 0.9rem;
}
.contactUs_content_checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0px 3px;
  margin-bottom: 50px;
}
.contactUs_content_checkbox > input {
  border: 1px solid #d0d5dd;
  border-radius: 6px;
  background-color: #fff;
}
.contactUs_content_checkbox > span {
  color: #fff;
  font-size: 0.9rem;
}
.contactUs_action {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contactUs_action > button {
  padding: 12px 120px;
  background: #0dda93;
  border: 1px solid #0dda93;
  box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
  border-radius: 6px;
  color: #111;
  font-weight: 500;
  cursor: pointer;
}

/* Footer */
.footer {
  width: 100%;
  background-color: var(--secondary);
  overflow-x: clip;
}
.footer_wrapper {
  position: relative;
  max-width: 1200px;
  padding: 40px 30px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_left {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
}
.footer_logo {
  width: 110px;
  height: 40px;
}
.footer_logo > img {
  width: 100%;
  height: 100%;
}
.footer_right {
  flex: 3;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  gap: 80px;
  padding: 2px 0px;
}
.footer_content > h6 {
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 17px;
  color: #ffffff;
}
.footer_content > span {
  font-weight: 300;
  font-size: 0.85rem;
  line-height: 17px;
  color: #ffffff;
}
.footer_icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer_icon {
  transition: 0.3s ease;
}
.footer_icon:hover {
  cursor: pointer;
  transform: translateY(-3px) scale(1.1);
}

/* Media Qyery */
@media screen and (max-width: 1100px) {
  .hero {
    height: 900px;
  }
  .focus_content {
    padding: 70px 40px;
    gap: 60px;
  }
  .focus_Box_left > h1 {
    font-size: 1.9rem;
    line-height: 35px;
  }
  .focus_Box_left > p {
    font-size: 0.85rem;
  }
  .macbook_icons {
    left: -70px;
  }
  .macbook_image {
    top: -170px;
  }
  .first {
    transform: translate(-300px, -210px);
  }
  .secound {
    transform: translate(-320px, 100px);
  }
  .third {
    transform: translate(140px, 250px);
  }
  .fourth {
    transform: translate(470px, 120px);
  }
  .fifth {
    transform: translate(460px, -210px);
  }
  .sixth {
    transform: translate(90px, -340px);
  }
}
@media screen and (max-width: 1000px) {
  .hero-wrapper > h1 {
    font-size: 2.3rem;
    line-height: normal;
  }
  .hero-wrapper > p {
    width: 67%;
  }
  .explore_wrapper > h1 {
    font-size: 2.6rem;
  }
  .explore_wrapper > p {
    width: 68%;
  }
  .waiting_wrapper > h1 {
    font-size: 2rem;
    width: 90%;
  }
  .macbook_icon {
    position: absolute;
  }
}
@media screen and (max-width: 900px) {
  .explore_Subimage {
    top: 250px;
  }
  .focus_Box_left > h1,
  .analysis_Box_right > h1 {
    font-size: 1.6rem;
    line-height: 35px;
  }
  .focus_Box_left > p,
  .analysis_Box_right > p {
    font-size: 0.8rem;
  }
  .macbook_image {
    top: -140px;
  }
  .first {
    transform: translate(-280px, -210px);
  }
  .secound {
    transform: translate(-280px, 100px);
  }
  .third {
    transform: translate(100px, 200px);
  }
  .fourth {
    transform: translate(410px, 120px);
  }
  .fifth {
    transform: translate(400px, -210px);
  }
  .sixth {
    transform: translate(90px, -300px);
  }
  .hero {
    height: 870px;
  }
}

@media screen and (max-width: 800px) {
  .explore_wrapper > h4 {
    font-size: 1.1rem;
  }
  .explore_wrapper > h1 {
    font-size: 2.5rem;
  }
  .explore_wrapper > p {
    font-size: 0.8rem;
  }
  .hero-wrapper > h1 {
    width: 90%;
  }
  .hero-wrapper > p {
    width: 90%;
  }
  .first {
    transform: translate(-250px, -150px);
  }
  .secound {
    transform: translate(-240px, 100px);
  }
  .third {
    transform: translate(80px, 170px);
  }
  .fourth {
    transform: translate(360px, 120px);
  }
  .fifth {
    transform: translate(370px, -170px);
  }
  .sixth {
    transform: translate(90px, -270px);
  }
  .macbook {
    height: 500px;
  }
}
@media screen and (max-width: 750px) {
  .explore {
    height: 650px;
  }
  .focus,
  .analysis {
    padding-bottom: 160px;
  }
  .focus_Box,
  .analysis_Box {
    min-height: 550px;
    height: auto;
  }
  .analysis_Box_logo {
    display: none;
  }
  .focus_Box_dots {
    bottom: -170px;
  }
  .focus_Box_right > img {
    width: 80%;
    height: 80%;
  }
  .focus_content {
    flex-direction: column;
  }
  .analysis_content {
    flex-direction: column-reverse;
    padding: 70px 40px;
  }
  .focus_Box_logo {
    left: auto;
    right: 26%;
  }
  .waiting_wrapper > h1 {
    font-size: 1.7rem;
  }
  .macbook_image::before {
    width: 450px;
    height: 150px;
    bottom: -90px;
  }
}
@media screen and (max-width: 700px) {
  .first {
    transform: translate(-180px, -150px);
  }
  .secound {
    transform: translate(-180px, 100px);
  }
  .third {
    transform: translate(70px, 170px);
  }
  .fourth {
    transform: translate(310px, 110px);
  }
  .fifth {
    transform: translate(320px, -150px);
  }
  .sixth {
    transform: translate(90px, -220px);
  }
  .macbook {
    height: 500px;
  }
}

@media screen and (max-width: 600px) {
  .hero {
    padding-top: 180px;
    height: 720px;
  }
  .hero-wrapper {
    text-align: left;
    align-items: flex-start;
  }
  .hero-wrapper > h1 {
    width: 90%;
    font-size: 28px;
    line-height: 34px;
  }
  .hero-wrapper > p {
    width: 90%;
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 36px;
  }
  .hero_content {
    width: 90%;
    padding: 3px 10px;
    height: 50px;
  }
  .hero_content .hero_input {
    font-size: 0.9rem;
  }
  .hero_content .btn {
    padding: 8px 22px;
    font-size: 0.9rem;
  }
  .macbook_image::before {
    width: 350px;
    height: 120px;
    bottom: -80px;
  }
  .explore {
    height: 700px;
  }
  .explore_wrapper {
    align-items: flex-start;
    text-align: left;
  }
  .explore_wrapper > h4 {
    width: 100%;
  }
  .explore_wrapper > h1 {
    width: 100%;
  }
  .explore_wrapper > p {
    width: 100%;
  }
  .explore_wrapper > button {
    width: 100%;
  }
  .explore_Subimage {
    top: 360px;
  }
  .focus {
    padding-bottom: 100px;
  }
  .focus_Box_logo {
    left: auto;
    right: 40%;
  }
  .focus_Box_logo > img {
    width: 200%;
  }
  .waiting_wrapper {
    text-align: left;
  }
  .waiting_wrapper > h1 {
    width: 100%;
    font-size: 1.5rem;
    line-height: normal;
  }
  .waiting_image {
    width: 100%;
  }
  .waiting_wrapper > button {
    width: 100%;
  }
  .contactUs_title {
    text-align: left;
  }
  .faq_wrapper_title {
    text-align: left;
  }
  .footer_wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .footer_logo {
    width: 180px;
    height: 70px;
  }
  .footer_right {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 80px;
  }
  .first {
    transform: translate(-140px, -150px);
  }
  .secound {
    transform: translate(-130px, 100px);
  }
  .third {
    transform: translate(70px, 140px);
  }
  .fourth {
    transform: translate(280px, 110px);
  }
  .fifth {
    transform: translate(280px, -150px);
  }
  .sixth {
    transform: translate(90px, -200px);
  }
  .macbook {
    height: 350px;
  }
}

@media screen and (max-width: 500px) {
  .first {
    transform: translate(-90px, -95px);
  }
  .secound {
    transform: translate(-100px, 50px);
  }
  .third {
    transform: translate(80px, 110px);
  }
  .fourth {
    transform: translate(240px, 50px);
  }
  .fifth {
    transform: translate(230px, -100px);
  }
  .sixth {
    transform: translate(90px, -140px);
  }
  .macbook {
    height: 300px;
  }
  .macbook_image::before {
    width: 218.95px;
    height: 70.69px;
    left: 53.67px;
    top: 181.31px;
    opacity: 0.9;
    filter: blur(81.8182px);
  }
  .macbook_image {
    top: -120px;
  }
}

@media screen and (max-width: 450px) {
  .hero_content {
    height: 44px;
  }
  .hero_content .btn {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
  .focus_Box_left > h1,
  .analysis_Box_right > h1 {
    font-size: 1.2rem;
    line-height: normal;
  }
  .focus_Box_left > p,
  .analysis_Box_right > p {
    font-size: 0.7rem;
  }
  .faq_wrapper_title > h1 {
    font-size: 1.8rem;
    margin-bottom: 6px;
  }
  .explore_wrapper > h4 {
    font-size: 0.9rem;
  }
  .explore_wrapper > h1 {
    font-size: 1.3rem;
    line-height: normal;
  }
  .waiting_wrapper > h1 {
    font-size: 1.25rem;
  }
  .contactUs_title > h1 {
    font-size: 1.8rem;
  }
  .contactUs_title > h5 {
    font-size: 0.8rem;
  }
  .contactUs_title > p {
    font-size: 0.8rem;
  }
  .contactUs_action > button {
    padding: 12px 80px;
    white-space: nowrap;
  }
  .contactUs_form {
    width: 100%;
  }
  .macbook {
    height: 220px;
  }
  .explore {
    height: 650px;
  }
  .macbook_image {
    top: -100px;
  }
}

@media screen and (max-width: 370px) {
  .first {
    transform: translate(-55px, -70px);
  }
  .secound {
    transform: translate(-60px, 50px);
  }
  .third {
    transform: translate(80px, 80px);
  }
  .fourth {
    transform: translate(200px, 50px);
  }
  .fifth {
    transform: translate(200px, -80px);
  }
  .sixth {
    transform: translate(90px, -130px);
  }
  .macbook {
    height: 180px;
  }
  .explore_wrapper > h1 {
    font-size: 1.1rem;
  }
  .explore_wrapper > h4 {
    font-size: 0.85rem;
  }
}
