@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

:root {
  /* --primary-color: #ff581f; */
  --primary-color: #2EB62C;
  --secondary-color: #09264a;
  --secondary-color-light: #232220;
  --text-light: #a3a3a3;
  --white: #ffffff;
  --black: #000000;
  --max-width: 1200px;
  --bg: linear-gradient(#2EB62C, #83D475, #57C84D);
  --greeen: #2EB62C;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.section_container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section_header {
  font-size: 2.5rem;
  font-weight: 600;
}

.section_subheader {
  position: relative;
  isolation: isolate;
  margin-bottom: 1rem;
  padding-left: 20px;
  font-size: 1.2rem;
  font-weight: 500;
}

.section_subheader::after {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 45px;
  aspect-ratio: 1;
  background-color: var(--primary-color);
  z-index: -1;
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.75rem 1.5rem;
  outline: none;
  font-size: 1rem;
  color: var(--white);
  border-radius: 5px;
  cursor: pointer;
}

.btn_secondary {
  background-color: transparent;
  border: 1px solid var(--white);
}

.btn_primary {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn span {
  font-size: 1.2rem;
  transition: 0.3s;
}

.btn:hover span {
  transform: translateX(5px);
}

img {
  display: flex;
  width: 100%;
}
a {
  text-decoration: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "poppins", sans-serif;
  color: var(--white);
}

header {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.8)
    ),
    url(Assets/header.jpg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

nav {
  max-width: var(--max-width);
  margin: auto;
  padding: 2rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav_logo {
  width: 10rem;
}
.nav_logo a {
  color: var(--white);
}
.nav_links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.link a {
  padding: 5px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  transition: 0.3s;
}

.link a:hover {
  color: var(--primary-color);
}
.toggle_btn {
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
}

.header_container {
  padding-block: 5rem 12rem;
}
.header_container h1 {
  /* background-color: var(--secondary-color-light); */
  max-width: 900px;
  margin-inline: auto;
  border-radius: 20px;
  margin-bottom: 2rem;
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
}
.header_container .btn {
  margin: auto;
}

.text-animation span {
  position: relative;
  font-size: 70px;
  font-weight: 500;
}
.text-animation span::before {
  content: "Anywhere";
  color: var(--greeen);
  animation: words 20s infinite;
}
.text-animation span::after {
  content: "";
  /* background-color: var(--secondary-color-light); */
  position: absolute;
  width: calc(100% + 8px);
  height: 100%;
  /* border-left: 3px solid var(--secondary-color-light); */
  right: -8px;
  animation: cursor 0.6s infinite, typing 20s steps(14) infinite;
}

@keyframes cursor {
  to {
    border-left: 2px solid var(--main-color);
  }
}
@keyframes words {
  0%,
  20% {
    content: "Anywhere";
  }
  21%,
  40% {
    content: "Everywhere";
  }
  41%,
  60% {
    content: "Anywhere";
  }
  61%,
  80% {
    content: "Everywhere";
  }
  81%,
  100% {
    content: "Anywhere";
  }
}
@keyframes typing {
  10%,
  15%,
  30%,
  35%,
  50%,
  55%,
  70%,
  75%,
  90%,
  95% {
    width: 0;
  }
  5%,
  20%,
  25%,
  40%,
  45%,
  60%,
  65%,
  80%,
  85% {
    width: calc(100% + 8px);
  }
}









.about {
  background: var(--white);
}
.about_container {
  padding-block: 0;
}
.about_grid {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
  background-color: var(--secondary-color-light);
  transform: translateY(-5rem);
  border-radius: 10px;
}
.about_content .section_header {
  margin-bottom: 1rem;
}
.about_content .para {
  color: var(--text-light);
}
.about_list {
  display: grid;
  gap: 2rem;
}
.about_item {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.about_item span {
  padding: 13px 20px;
  font-size: 1.75rem;
  color: var(--primary-color);
  background: var(--white);
  border-radius: 5px;
}
.about_item h4 {
  font-size: 1.2rem;
  font-weight: 600;
}

.team {
  /* background-color: var(--secondary-color); */
  background-color: var(--white);
}
.team_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.team_content .section_subheader {
  color: var(--black);
}
.team_content .section_header {
  margin-bottom: 1rem;
  color: var(--black);
}
.team_content .para {
  margin-bottom: 2rem;
  /* color: var(--text-light); */
  color: var(--black);
}
.team_grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.team_card span {
  font-size: 1.75rem;
  color: var(--primary-color);
}
.team_card h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--black);
}
.team_card p {
  font-weight: 500;
  color: var(--black);
}
.team_image {
  display: grid;
  gap: 2rem;
}
.team_image img {
  max-width: 450px;
  margin: auto;
  border-radius: 5px;
}


.career {
  background-color: var(--secondary-color-light);
}
.career_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.career_grid ul {
  margin-left: 3rem;
}
.explore {
  display: grid;
  font-weight: 500;
  justify-content: center;
  align-items: center;
}
.explore a {
  color: var(--text-light);
  font-weight: 400;
  font-size: 1.3em;
}
.explore a:hover {
  color: var(--primary-color);
  transition: 0.3s ease-in-out;
  font-weight: bold;
}
.career_image {
  display: grid;
  gap: 2rem;
}
.career_image img {
  max-width: 450px;
  margin: auto;
  border-radius: 5px;
}





.banner {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url("Assets/banner.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner_content {
  max-width: 800px;
}
.banner_content .section_header {
  margin-bottom: 1rem;
}
.banner_content .para {
  max-width: 600px;
  margin-bottom: 2rem;
}
.banner_btns {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.media {
  background-color: var(--secondary-color-light);
}
.media_grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.media_card img {
  margin-bottom: 1rem;
  border-radius: 5px;
}
.media_card > div {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.media_card div span {
  font-size: 0.9rem;
  color: var(--text-light);
}
.media_card div span i {
  margin-right: 5px;
  font-size: 1rem;
  color: var(--primary-color);
}
.media_card h4 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.media_card p {
  color: var(--text-light);
}

.invest {
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.6),
      rgba(0, 0, 0, 0.6)
    ),
    url("Assets/subscribe.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.invest_container {
  max-width: 700px;
  text-align: center;
}
.invest_container .section_subheader {
  max-width: fit-content;
  margin-inline: auto;
}
/* .invest_container form {
  margin-block: 2rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.invest_container input {
  flex: 1;
  width: 100%;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  outline: none;
  border: 1px solid var(--white);
  border-radius: 5px;
}
.invest_container .btn {
  flex: 1;
  justify-content: center;
} */

.invest_container .para a {
  color: var(--primary-color);
}
.sec_sub {
  color: var(--primary-color);
}

.contact_container {
  background: rgba(0, 0, 0, 0.8);
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.contact_left {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.contact_input {
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;
}
.contact_left textarea {
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}
.contact_input:focus {
    border: 2px solid var(--primary-color);
}
.contact_input::placeholder {
    color: #a9a9a9;
}
.contact_left button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg, #2EB62C);
    cursor: pointer;
}
.contact_left button:hover {
  padding: 15px 35px;
  transition: 0.3s ease-in-out;
}


.customer {
  background-color: var(--white);
}
.customer_container .section_subheader {
  color: var(--black);
}
.customer_container .section_header {
  color: var(--black);
}
.customer_container .para {
  margin-block: 1rem 4rem;
  color: var(--black);
}
.swiper {
  width: 100%;
  padding-bottom: 4rem;
}
.customer_review .swiper-pagination-bullet-active {
  background-color: var(--primary-color);
}
.customer_review_card {
  position: relative;
  isolation: isolate;
  min-width: 600px;
  margin-inline: auto;
  text-align: center;
}
.customer_review_card span {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 6rem;
  line-height: 4rem;
  color: var(--primary-color);
  opacity: 0.1;
}
.customer_review_card p {
  margin-bottom: 2rem;
  color: var(--black);
}
.customer_review_details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.customer_review_details img {
  max-width: 70px;
  border-radius: 100%;
}
.customer_review_details h4 {
  font-size: 1.2rem;
  font-weight: 500;
}
.customer_review_details h5 {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--black);
}
.scroll_up {
  position: fixed;
  right: 10px;
  top: 90%;
  /* width: 10rem; */
}
.scroll_up img {
  width: 25px;
  height: 25px;
  background-color: var(--primary-color);
  border-radius: 100%;
}
/* .scroll_up a {
  color: var(--white);
} */
.footer {
  background-color: var(--black);
}
.footer_container {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2rem;
}
.footer_col h5 a {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}
.footer_col p {
  margin-bottom: 2rem;
  color: var(--text-light);
}
.footer_socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer_socials a {
  padding: 5px 10px;
  font-size: 1.25rem;
  color: var(--primary-color);
  background-color: var(--secondary-color-light);
  border-radius: 100%;
  cursor: pointer;
  transition: 0.3s;
}
.footer_socials a:hover {
  color: var(--white);
  background-color: var(--primary-color);
}
.footer_col h4 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.footer_links a {
  margin-bottom: 1rem;
  display: flex;
  color: var(--text-light);
  transition: 0.3s;
}
.footer_links a:hover {
  color: var(--primary-color);
}
.footer_bar {
  padding: 1rem;
  font-size: 0.8rem;
  text-align: center;
  color: var(--text-light);
}
.product_container a {
  cursor: default;
}
.product_container h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
}
.product_container p {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
  background-color: var(--secondary-color-light);
  /* transform: translateY(-5rem); */
  border-radius: 10px;
}

.images {
  background-color: #09264a;
}
.images .qimg {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-left: 3rem;
}
.qimg img {
  width: 250px;
  border-radius: 20px;
}

.dropdown_menu {
  display: none;
  list-style: none;
  position: fixed;
  right: 2.5rem;
  top: 60px;
  height: 0;
  width: 300px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  overflow: hidden;
  transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 9999;
}
.dropdown_menu.open {
  height: 295px;
}
.dropdown_menu li {
  padding: 0.7rem;
  display: flex;
  justify-content: center;
}
.linka a {
  display: flex;
  justify-content: center;
  color: var(--white);
  background-color: var(--primary-color);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border: none;
  outline: none;
  border-radius: 20px;
  width: 100%;
}

.list {
  margin-left: 5rem;
}
.sep {
  display: flex;
  /* flex-direction: row; */
  gap: 5rem;
}
.nuq {
  list-style-type: circle;
  margin-left: 1rem;
}

@media (width < 900px) {
  .nav_links {
    display: none;
  }
  .toggle_btn {
    display: block;
  }
  .dropdown_menu {
    display: block;
  }
  .about_grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .stats_container {
    grid-template-columns: repeat(1, 1fr);
  }
  .stats_image {
    grid-area: 1/1/2/2;
    grid-template-columns: repeat(2 1fr);
    gap: 1rem;
  }
  .blog_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1rem;
  }
  .footer_container {
    grid-template-columns: 2fr 1fr;
  }
  .images .qimg {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-left: 3rem;
  }
}

@media (width < 600px) {
  nav {
    position: fixed;
    width: 100%;
    padding: 1rem;
    background-color: var(--black);
    z-index: 99;
  }
  .nav_links {
    position: absolute;
    left: 0;
    top: 68px;
    padding: 2rem;
    width: 100%;
    flex-direction: column;
    transform: scaleX(0);
    transform-origin: top;
    transition: 0.5s;
    background-color: rgba(0, 0, 0, 0.9);
  }
  .nav_links .link a {
    opacity: 0;
  }
  .nav_links.open .link a {
    opacity: 1;
  }
  .nav_links.open {
    transform: scaleY(1);
  }
  /* .nav_menu_btn {
    display: block;
  } */
  .header_container {
    margin-top: 0rem;
    font-size: 3.5rem;
  }
  .stats_image {
    grid-template-columns: repeat(1, 1fr);
  }
  .blog_grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .subscribe_container form {
    flex-direction: column;
  }
  .subscribe_container .btn {
    width: 100%;
  }
}
@media (width < 500px) {
  nav {
    /* position: fixed; */
    width: 430px;
  }
  .media_grid {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  .media_card img {
    margin-bottom: 1rem;
    border-radius: 5px;
  }
  .media_card > div {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  .media_card div span {
    font-size: 0.9rem;
    color: var(--text-light);
  }
  .media_card div span i {
    margin-right: 5px;
    font-size: 1rem;
    color: var(--primary-color);
  }
  .media_card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .customer_review_card p {
    font-size: small;
    width: 400px;
  }
  .customer_review_details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
  }
  .customer_review_details img {
    max-width: 70px;
    border-radius: 100%;
    margin-left: -13rem;
  }
  .customer_review_details h4 {
    font-size: 1rem;
    font-weight: 400;
  }
  .customer_review_details h5 {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
  }
  footer {
    height: 75rem;
  }
  .scroll_up {
    right: 16.5px;
    top: 46%;
  }
.qimg img {
  width: 190px;
}
  .images .qimg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-left: 0.4rem;
}
.sep {
  display: flex;
  /* flex-direction: row; */
  gap: 1rem;
  margin-left: -3.5rem;
}

}

@media (width < 400px) {
  nav {
    width: 390px;
  }
  /* .product_container {
    height: 1950px;
  } */
  .scroll_up {
    right: 16.5px;
    top: 50%;
  }
  .qimg img {
  width: 170px;
}
.product_container p {
  font-size: 13px;
}
.product_container ul li {
  font-size: 13px;
}
.sep {
  display: flex;
  gap: 1rem;
  margin-left: -3.5rem;
}
.contact_input {
    width: 350px;
}
}
